/* Ajándékutalvány – Tisza Garden Park
   ============================================ */

/* =========================================================
   AJÁNDÉKUTALVÁNY – STATIKUS HERO (SZOLGÁLTATÁSOK STÍLUS)
   ========================================================= */

.hero--voucher {
  margin-bottom: 2.5rem;
}

/* Csak az ajándékutalvány hero-jára vonatkozzon */
.hero--voucher .hero-subhero {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  height: 620px;
  background: #e5e7eb;
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.18);
}

.hero--voucher .hero-subhero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  filter: brightness(0.8);
}

.hero--voucher .hero-subhero-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
  padding: 2.4rem 2.7rem;
  color: #f9fafb;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.hero--voucher .hero-subhero-content h1 {
  font-size: 1.8rem;
  line-height: 1.25;
}

.hero--voucher .hero-subhero-content p {
  font-size: 1rem;
  max-width: 32rem;
  opacity: 0.95;
}

/* Badge-ek a hero szöveg alatt */
.hero--voucher .voucher-badges {
  display: flex;
  flex-wrap: nowrap; /* desktop + tablet: egy sor */
  gap: 0.45rem;
  margin-top: 0.8rem;
}

.hero--voucher .voucher-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
  font-size: 0.9rem;
}

.hero--voucher .voucher-badge {
  white-space: nowrap; /* ne törje a szöveget */
}

/* =========================================================
   RESZPONZÍV – HERO
   ========================================================= */

@media (max-width: 900px) {
  .hero--voucher .hero-subhero {
    height: 360px;
  }

  .hero--voucher .hero-subhero-content {
    padding: 2rem 1.6rem;
    max-width: 30rem;
  }

  .hero--voucher .hero-subhero-content h1 {
    font-size: 1.5rem;
  }
}

@media (max-width: 640px) {
  .hero--voucher .hero-subhero {
    height: auto;
    min-height: 320px;
    box-shadow: 0 10px 18px rgba(15, 23, 42, 0.18);
  }

  .hero--voucher .hero-subhero-content {
    padding: 2rem 1.3rem 2.1rem;
    max-width: 22rem;
    margin: 0 auto;
    text-align: left;
    align-items: flex-start;
  }

  .hero--voucher .hero-subhero-content h1 {
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
  }

  .hero--voucher .hero-subhero-content p {
    font-size: 0.9rem;
    line-height: 1.55;
    margin: 0 0 0.7rem;
  }

  .hero--voucher .voucher-badges {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.3rem 0.45rem;
  }

  .hero--voucher .voucher-badge {
    font-size: 0.78rem;
    padding: 0.25rem 0.65rem;
  }
}

/* =========================================================
   SECTION + KÁRTYÁK
   ========================================================= */

.voucher-section {
  margin: 1.25rem auto 2.5rem;
}

.voucher-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.voucher-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 1.05rem 1.1rem;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
}

.voucher-card--highlight {
  background: #f9fafb;
  border-color: #d1d5db;
}

.voucher-card__title {
  margin: 0 0 0.6rem;
  font-size: 1.15rem;
  color: #1e293bf2;
}

.voucher-text {
  margin: 0 0 0.75rem;
  line-height: 1.6;
  color: #374151;
}

.voucher-text--muted {
  color: #6b7280;
}

.voucher-text--fine {
  margin-top: 0.85rem;
  font-size: 0.9rem;
  color: #6b7280;
}

.voucher-list {
  margin: 0;
  padding-left: 1.05rem;
  line-height: 1.7;
  color: #374151;
}

.voucher-list li {
  margin: 0.15rem 0;
}

/* =========================================================
   LÉPÉSEK BLOKK
   ========================================================= */

.voucher-steps {
  margin: 0;
  padding-left: 1.1rem;
  color: #374151;
}

.voucher-steps li {
  margin: 0.6rem 0;
}

.voucher-steps__title {
  font-weight: 700;
  color: #1e293bf2;
  margin-bottom: 0.12rem;
}

.voucher-steps__text {
  color: #374151;
  line-height: 1.55;
}

/* =========================================================
   KIHANGSÚLYOZOTT CALL-OUT (TELEFON / INFÓ)
   ========================================================= */

.voucher-callout {
  margin-top: 0.6rem;
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  background: #fff;
}

.voucher-callout__label {
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 0.25rem;
}

.voucher-callout__value {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 800;
  color: #1e293bf2;
  text-decoration: none;
}

.voucher-callout__value:hover {
  text-decoration: underline;
}

.voucher-callout__hint {
  margin-top: 0.25rem;
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.45;
}

/* =========================================================
   RESPONSIVE – GRID + CALL-OUT
   ========================================================= */

@media (max-width: 900px) {
  .voucher-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .voucher-callout__value {
    font-size: 1.1rem;
  }
}

/* =========================================================
   AJÁNDÉKUTALVÁNY – ŰRLAP (szép, modern)
   ========================================================= */

.voucher-form {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.voucher-form label {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  color: #1e293bf2;
  margin-top: 0.2rem;
}

.voucher-form input[type="text"],
.voucher-form input[type="email"],
.voucher-form input[type="number"],
.voucher-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  background: #fff;
  color: #1e293bf2;
  font-size: 0.95rem;
  outline: none;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}

.voucher-form textarea {
  min-height: 110px;
  resize: vertical;
}

.voucher-form input::placeholder,
.voucher-form textarea::placeholder {
  color: #9ca3af;
}

.voucher-form input:focus,
.voucher-form textarea:focus {
  border-color: #1e293bf2;
  box-shadow: 0 0 0 4px rgba(17, 24, 39, 0.12);
}

/* Checkbox sor (ne legyen szétcsúszva) */
.voucher-form label:has(input[type="checkbox"]),
.voucher-form .voucher-checkbox {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  margin-top: 0.35rem;
}

.voucher-form input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #1e293bf2;
}

/* Gomb – egységes, szép */
.voucher-form button[type="submit"] {
  margin-top: 0.4rem;
  width: 100%;
  padding: 0.85rem 1rem;
  border: 0;
  border-radius: 999px;
  background: #1e293bf2;
  color: #fff;
  font-weight: 800;
  font-size: 0.98rem;
  cursor: pointer;
  box-shadow: 0 14px 26px rgba(17, 24, 39, 0.2);
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease,
    opacity 0.12s ease;
}

.voucher-form button[type="submit"]:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 30px rgba(17, 24, 39, 0.24);
}

.voucher-form button[type="submit"]:active {
  transform: translateY(0);
  opacity: 0.95;
}

/* Mobilon még levegősebb */
@media (max-width: 560px) {
  .voucher-form input[type="text"],
  .voucher-form input[type="email"],
  .voucher-form input[type="number"],
  .voucher-form textarea {
    border-radius: 14px;
  }
}

/* =========================================================
   UTALVÁNY KÉPEK – "Beváltás" blokk
   ========================================================= */

.voucher-vouchers {
  margin: 0.75rem 0 0.9rem;
  display: grid;
  grid-template-columns: 1fr; /* egymás alatt */
  gap: 0.85rem;
}

.voucher-voucher {
  margin: 0;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
}

.voucher-voucher img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.voucher-voucher figcaption {
  padding: 0.55rem 0.7rem;
  font-weight: 800;
  color: #1e293bf2;
  text-align: center;
}

@media (max-width: 560px) {
  .voucher-vouchers {
    grid-template-columns: 1fr;
  }

  .voucher-voucher img {
    height: 160px;
  }
}

/* Utalvány képek – kisebb kijelzőn ne vágjuk le a széleit */
@media (max-width: 900px) {
  .voucher-voucher img {
    height: auto; /* ne legyen fix 180px, így a teljes kép látszik */
  }
}

/* =========================================================
   UTALVÁNY ÖSSZEG VÁLASZTÓ
   ========================================================= */

.voucher-amounts {
  display: flex;
  flex-direction: column; /* egymás alatt */
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.voucher-amount {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  background: #fff;
  cursor: pointer;
  font-weight: 700;
  color: #1e293bf2;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
}

.voucher-amount input[type="radio"] {
  accent-color: #1e293bf2;
  width: 18px;
  height: 18px;
}

.voucher-amount:hover {
  background: #f9fafb;
}

.voucher-amount input[type="radio"]:checked + span {
  font-weight: 800;
}

.voucher-amount:has(input[type="radio"]:checked) {
  border-color: #1e293bf2;
  box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.12);
}
