/* 🎁 Ajándékkártya Box Stílus – Pilisi Alkotó Stúdió */

#wgc-giftcard-box {
  background: #ffffff;
  border: 1px solid #e6f0f2;
  border-radius: 12px;
  padding: 24px 28px;
  margin-top: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  max-width: 420px;
  font-family: 'Lato', 'Helvetica Neue', sans-serif;
}

/* Cím */
#wgc-giftcard-box strong {
  font-size: 18px;
  font-weight: 700;
  color: #009fb8;
  display: block;
  margin-bottom: 10px;
}

/* Rádiógombok (típus választás) */
#wgc-giftcard-box input[type="radio"] {
  accent-color: #00bcd4; /* modern böngészők */
}

#wgc-giftcard-box label {
  display: inline-block;
  font-size: 15px;
  color: #333;
  margin-right: 10px;
  cursor: pointer;
}

/* Select mező */
#wgc-giftcard-box select {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #cfe9ec;
  border-radius: 8px;
  background: #f9fdfd;
  font-size: 14px;
  color: #333;
  margin-bottom: 12px;
  transition: all 0.2s ease;
}

#wgc-giftcard-box select:focus {
  border-color: #00bcd4;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.2);
}

/* Input mező (ajándékozott neve) */
#wgc-giftcard-box input[type="text"] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #cfe9ec;
  border-radius: 8px;
  font-size: 15px;
  color: #333;
  background: #ffffff;
  transition: all 0.2s ease;
}

#wgc-giftcard-box input[type="text"]:focus {
  border-color: #00bcd4;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.2);
}

/* Végösszeg megjelenítése */
#wgc-total {
  display: block;
  text-align: right;
  margin-top: 10px;
  font-weight: 600;
  color: #009fb8;
  font-size: 16px;
}

/* Gombok (Kosárba teszem) */
.single_add_to_cart_button {
  background-color: #00bcd4 !important;
  color: #fff !important;
  font-weight: 600;
  font-size: 16px !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 12px 20px !important;
  width: 100%;
  text-align: center;
  transition: background 0.25s ease;
}

.single_add_to_cart_button:hover {
  background-color: #009fb8 !important;
  transform: translateY(-1px);
}

/* Reszponzív */
@media (max-width: 600px) {
  #wgc-giftcard-box {
    padding: 20px;
    max-width: 100%;
  }
}
