.decoy-pricing-buttons {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.decoy-pricing-option {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.decoy-pricing-option:hover {
    border-color: #2271b1;
}

.decoy-pricing-option.active {
    border-color: #2271b1;
    background-color: #f0f7ff;
}

.decoy-pricing-option .quantity {
    font-weight: bold;
    margin-right: 15px;
    min-width: 80px;
}

.decoy-pricing-option .price {
    font-size: 1.2em;
    font-weight: bold;
    color: #2271b1;
    margin-right: 10px;
}

.decoy-pricing-option .discount {
    color: #28a745;
    font-size: 0.9em;
}

/* Stiluri moderne pentru decoy pricing */
.decoy-pricing-modern {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 24px;
}
.decoy-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 2px solid #eee;
  border-radius: 9px;
  padding: 10px 28px;
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
  min-height: 60px;
  height: 80px;
  box-sizing: border-box;
  width: 100%;
}

.decoy-card.selected {
  border-color: #1976d2;
  box-shadow: 0 2px 16px rgba(25,118,210,0.08);
}

.decoy-card input[type="radio"] {
  display: none;
}

.decoy-card-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.decoy-card-col-left {
  flex: 1 1 0;
  align-items: flex-start;
  min-width: 90px;
}
.decoy-card-col-img {
  flex: 0 0 80px;
  align-items: center;
  justify-content: center;
  display: flex;
}
.decoy-card-col-right {
  flex: 1 1 0;
  align-items: flex-end;
  min-width: 90px;
}
.decoy-card-title {
  font-weight: 700;
  font-size: 1.15rem;
  color: #222;
  margin-bottom: 1px;
}
.decoy-card-save {
  font-size: 0.98rem;
  color: #1bbf5c;
  font-weight: 500;
  margin-bottom: 1px;
}
.decoy-card-price-main {
  font-size: 1.25rem;
  color: #222;
  font-weight: 700;
}
.decoy-card-price-old {
  font-size: 1rem;
  color: #aaa;
  text-decoration: line-through;
}

.decoy-card-img {
  display: block;
  margin: 0 auto;
  max-width: 60px;
  max-height: 60px;
  object-fit: contain;
}

.decoy-card[data-quantity="3"] {
    position: relative;
}

.decoy-badge-popular {
    position: absolute;
    top: 1px;
    right: -17.36px;
    background: #2e9e4c;
    color: #fff;
    font-weight: bold;
    font-size: 0.882rem;
    padding: 0.294rem 0.735rem;
    border-radius: 2.94px;
    box-shadow: 0 2.94px 11.76px rgba(0,0,0,0.08);
    letter-spacing: 1px;
    text-align: center;
    z-index: 11;
    text-shadow: 0 1.47px 0 #21803a;
    white-space: nowrap;
    max-width: 117.6px;
    overflow: visible;
    text-overflow: ellipsis;
    clip-path: polygon(
        0% 0%, 100% 0%, 
        95% 50%, 100% 100%, 
        0% 100%, 5% 50%
    );
    display: flex;
    align-items: center;
    transform: translateY(-50%) rotate(6deg);
}
.decoy-badge-popular::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    border-top: 23.52px solid transparent;
    border-bottom: 23.52px solid transparent;
    border-right: 23.52px solid #2e9e4c;
    z-index: 1;
}
.decoy-badge-text {
    position: relative;
    z-index: 2;
    display: inline-block;
}

@media (max-width: 600px) {
  .decoy-pricing-modern {
    gap: 10px;
  }
  .decoy-card {
    padding: 5px 4px;
    min-height: 40px;
    height: 50px;
    min-width: 320px;
    width: 100%;
    box-sizing: border-box;
  }
  .decoy-card-col-left {
    min-width: 60px;
  }
  .decoy-card-col-img {
    flex: 0 0 44px;
  }
  .decoy-card-img {
    max-width: 38px;
    max-height: 38px;
  }
  .decoy-card-col-right {
    min-width: 60px;
  }
  .decoy-card-title {
    font-size: 0.805rem;
  }
  .decoy-card-price-main {
    font-size: 0.875rem;
  }
  .decoy-card-price-old {
    font-size: 0.7rem;
  }
  .decoy-card-save {
    font-size: 0.686rem;
  }
  .decoy-badge-popular {
    font-size: 0.5rem;
    padding: 0.15rem 0.4rem;
    max-width: 60px;
    top: 0px;
  }
  .decoy-card::before {
    width: 10px;
    height: 10px;
    top: -3px;
    left: -3px;
  }
  .decoy-card.selected::after {
    width: 3px;
    height: 6px;
    top: 1px;
    left: 3px;
  }
} 