/**
 * REATS · שוברי מתנה (/gift-vouchers)
 * mobile-first · premium gift landing
 */
.page-gift-vouchers {
  --gv-gold: #c9a227;
  --gv-gold-light: #e8d48a;
  --gv-hero-overlay: linear-gradient(135deg, rgba(11, 48, 26, 0.88) 0%, rgba(12, 60, 30, 0.75) 50%, rgba(8, 40, 22, 0.9) 100%);
}

.gv-page {
  --gv-pad: clamp(14px, 4vw, 28px);
  --gv-site-width: 95%;
  width: 100%;
  max-width: none;
  margin: 0;
  box-sizing: border-box;
}

/* מתחת ל-Hero בלבד — 95% כמו שאר האתר */
.gv-page > :not(.gv-hero) {
  width: var(--gv-site-width);
  max-width: min(1216px, 95%);
  margin-inline: auto;
  box-sizing: border-box;
}

/* Hero */
.gv-hero {
  position: relative;
  min-height: clamp(420px, 72vh, 560px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  width: 100%;
}

.gv-hero__bg {
  position: absolute;
  inset: 0;
  background:
    var(--gv-hero-overlay),
    url('https://images.unsplash.com/photo-1506126613408-eca07ce68773?w=1600&q=80') center / cover no-repeat;
}

.gv-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-inline: auto;
  padding: clamp(48px, 12vw, 80px) var(--gv-pad);
  box-sizing: border-box;
}

.gv-kicker {
  display: inline-block;
  margin: 0 0 12px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(201, 162, 39, 0.25);
  border: 1px solid rgba(232, 212, 138, 0.45);
  font-size: clamp(0.75rem, 2.2vw, 0.85rem);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.gv-hero__title {
  margin: 0 0 16px;
  font-size: clamp(1.65rem, 5.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
}

.gv-hero .gv-kicker {
  color: #fff;
}

.gv-hero__lead {
  margin: 0 auto 24px;
  max-width: 36em;
  font-size: clamp(1rem, 2.8vw, 1.15rem);
  line-height: 1.55;
  opacity: 0.95;
  color: #fff;
}

.gv-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
}

.gv-hero__cta .btn {
  min-height: 48px;
  white-space: normal;
  line-height: 1.3;
}

.gv-hero__cta-ghost {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.55) !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

.gv-hero__trust {
  margin: 0;
  font-size: clamp(0.8rem, 2.2vw, 0.9rem);
  opacity: 0.85;
  color: #fff;
}

.gv-stars {
  color: var(--gv-gold-light);
  letter-spacing: 2px;
}

/* Sections */
.gv-section {
  padding: clamp(40px, 8vw, 72px) var(--gv-pad);
  box-sizing: border-box;
}

.gv-section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(28px, 5vw, 40px);
}

.gv-section__head h2 {
  margin: 8px 0 12px;
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  color: var(--ink-0, #0c3c1e);
}

.gv-section__head p {
  margin: 0;
  color: var(--ink-2, #3d5c45);
  line-height: 1.5;
}

.gv-pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--bg-2, #ecf4dd);
  color: var(--ink-1, #1a5c32);
  font-size: 0.85rem;
  font-weight: 600;
}

.gv-muted {
  color: var(--ink-2, #3d5c45);
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  line-height: 1.5;
}

/* Product cards */
.gv-cards {
  display: grid;
  gap: clamp(16px, 3vw, 24px);
  grid-template-columns: 1fr;
}

@media (min-width: 540px) {
  .gv-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .gv-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gv-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(18px, 4vw, 24px);
  border-radius: var(--radius-lg, 20px);
  background: #fff;
  border: 1px solid rgba(12, 60, 30, 0.08);
  box-shadow: 0 4px 24px rgba(11, 48, 26, 0.06);
  transition: transform var(--t, 0.2s), box-shadow var(--t, 0.2s);
}

.gv-card:hover,
.gv-card.is-selected {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(11, 48, 26, 0.1);
  border-color: rgba(26, 92, 50, 0.2);
}

.gv-card--featured {
  border-color: rgba(201, 162, 39, 0.45);
}

.gv-card__badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 8px;
  text-align: center;
  background: linear-gradient(90deg, #b8921f, var(--gv-gold));
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: var(--radius-lg, 20px) var(--radius-lg, 20px) 0 0;
}

.gv-card--featured .gv-card__visual {
  margin-top: 28px;
}

.gv-card__visual {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--accent, #1a5c32);
  background: var(--bg-1, #f6faf0);
}

.gv-card__title {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.gv-card__desc {
  margin: 0 0 12px;
  flex: 1;
  font-size: 0.92rem;
  color: var(--ink-2);
  line-height: 1.45;
}

.gv-card__price {
  margin: 0 0 12px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ink-0);
}

.gv-card__features {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  font-size: 0.85rem;
  color: var(--ink-2);
}

.gv-card__features li::before {
  content: "✓ ";
  color: var(--accent);
}

.gv-card__btn {
  width: 100%;
  min-height: 44px;
}

/* Purchase */
.gv-purchase__grid {
  display: grid;
  gap: clamp(24px, 5vw, 40px);
}

@media (min-width: 900px) {
  .gv-purchase__grid {
    grid-template-columns: 1fr 1.1fr;
    align-items: start;
  }
}

.gv-voucher-preview {
  margin-top: 20px;
  padding: clamp(20px, 4vw, 28px);
  border-radius: 20px;
  min-height: 200px;
  color: #fff;
  background: linear-gradient(145deg, #1a5c32, #0c3c1e);
}

.gv-voucher-preview--zen {
  background: linear-gradient(145deg, #4a6fa5, #2c4a6e);
}

.gv-voucher-preview--celebration {
  background: linear-gradient(145deg, #8b4513, #c9a227);
}

.gv-voucher-preview--minimal {
  background: linear-gradient(145deg, #2d3436, #636e72);
}

.gv-voucher-preview__brand {
  font-weight: 800;
  letter-spacing: 0.08em;
  opacity: 0.9;
}

.gv-voucher-preview__amount {
  margin: 16px 0 0;
  font-size: 2rem;
  font-weight: 800;
}

.gv-form {
  padding: clamp(18px, 4vw, 28px);
  border-radius: var(--radius-lg, 20px);
}

.gv-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.gv-field span,
.gv-field legend {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink-0);
}

.gv-field input,
.gv-field select,
.gv-field textarea {
  width: 100%;
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid rgba(12, 60, 30, 0.15);
  border-radius: 12px;
  font-size: max(16px, 1rem);
  font-family: inherit;
}

.gv-form__row {
  display: grid;
  gap: 14px;
}

@media (min-width: 600px) {
  .gv-form__row {
    grid-template-columns: 1fr 1fr;
  }
}

.gv-amount-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gv-chip {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(12, 60, 30, 0.2);
  background: #fff;
  font-weight: 600;
  cursor: pointer;
}

.gv-chip.is-active {
  background: var(--accent, #1a5c32);
  color: #fff;
  border-color: var(--accent);
}

.gv-designs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.gv-design {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 0.85rem;
}

.gv-design input {
  position: absolute;
  opacity: 0;
}

.gv-design__swatch {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 2px solid transparent;
}

.gv-design input:checked + .gv-design__swatch {
  border-color: var(--ink-0);
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--accent);
}

.gv-design__swatch--nature { background: linear-gradient(135deg, #1a5c32, #0c3c1e); }
.gv-design__swatch--zen { background: linear-gradient(135deg, #4a6fa5, #2c4a6e); }
.gv-design__swatch--celebration { background: linear-gradient(135deg, #c9a227, #8b4513); }
.gv-design__swatch--minimal { background: linear-gradient(135deg, #636e72, #2d3436); }

.gv-radio {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  margin-bottom: 4px;
}

.gv-divider {
  border: none;
  border-top: 1px solid rgba(12, 60, 30, 0.1);
  margin: 20px 0;
}

.gv-form__sub {
  margin: 0 0 12px;
  font-size: 1.1rem;
}

.gv-submit {
  width: 100%;
  min-height: 52px;
  margin-top: 8px;
}

.gv-flash {
  padding: 12px 16px;
  border-radius: 12px;
  margin-bottom: 16px;
}

.gv-flash--error {
  background: #fde8e8;
  color: #8b1a1a;
}

/* Benefits */
.gv-benefits__grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

@media (min-width: 540px) {
  .gv-benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .gv-benefits__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gv-benefit {
  padding: clamp(16px, 3vw, 22px);
  border-radius: 16px;
}

.gv-benefit__icon {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 8px;
}

.gv-benefit h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.gv-benefit p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-2);
}

/* Ideas carousel */
.gv-ideas__bucket {
  margin-bottom: 28px;
}

.gv-ideas__bucket-title {
  margin: 0 0 12px;
  font-size: 1.1rem;
}

.gv-ideas__track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}

.gv-idea-card {
  flex: 0 0 clamp(200px, 42vw, 260px);
  scroll-snap-align: start;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(12, 60, 30, 0.08);
  text-decoration: none;
  color: inherit;
}

.gv-idea-card img,
.gv-idea-card__ph {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--bg-2);
}

.gv-idea-card__body {
  display: block;
  padding: 10px 12px;
}

.gv-idea-card__type {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
}

.gv-idea-card__title {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.35;
}

/* FAQ */
.gv-faq__item {
  margin-bottom: 10px;
  padding: 0;
  border-radius: 14px;
  overflow: hidden;
}

.gv-faq__item summary {
  padding: 16px 18px;
  font-weight: 600;
  cursor: pointer;
  min-height: 44px;
  list-style: none;
}

.gv-faq__item summary::-webkit-details-marker {
  display: none;
}

.gv-faq__item p {
  margin: 0;
  padding: 0 18px 16px;
  color: var(--ink-2);
  line-height: 1.5;
}

/* Bottom CTA */
.gv-cta-bottom {
  padding: clamp(32px, 6vw, 56px) var(--gv-pad) clamp(48px, 8vw, 80px);
  max-width: 800px;
  margin: 0 auto;
}

.gv-cta-bottom__inner {
  text-align: center;
  padding: clamp(28px, 5vw, 40px);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(236, 244, 221, 0.9), rgba(255, 255, 255, 0.95));
}

.gv-cta-bottom h2 {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 4vw, 1.75rem);
}

.gv-cta-bottom p {
  margin: 0 0 20px;
  color: var(--ink-2);
}

/* Thank you */
.gv-thankyou {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--gv-pad);
}

.gv-thankyou__card {
  max-width: 520px;
  width: 100%;
  padding: clamp(24px, 5vw, 36px);
  text-align: center;
  border-radius: 24px;
}

.gv-thankyou__code {
  font-size: clamp(1.25rem, 4vw, 1.75rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin: 12px 0 20px;
}

.gv-thankyou__meta {
  text-align: right;
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.gv-thankyou__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gv-thankyou__actions .btn {
  min-height: 48px;
}

/* PDF */
.gv-pdf-body {
  padding: 24px;
}

.gv-pdf-sheet {
  max-width: 520px;
  margin: 0 auto;
  padding: 40px 32px;
  border-radius: 20px;
  color: #fff;
  text-align: center;
  background: linear-gradient(145deg, #1a5c32, #0c3c1e);
}

.gv-pdf-sheet--zen { background: linear-gradient(145deg, #4a6fa5, #2c4a6e); }
.gv-pdf-sheet--celebration { background: linear-gradient(145deg, #c9a227, #8b4513); }
.gv-pdf-sheet--minimal { background: linear-gradient(145deg, #636e72, #2d3436); }

.gv-pdf-logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.gv-pdf-amount {
  font-size: 3rem;
  font-weight: 800;
  margin: 20px 0;
}

.gv-pdf-code {
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

.gv-pdf-print {
  text-align: center;
  margin-top: 24px;
}

.gv-pdf-print button {
  min-height: 44px;
  padding: 0 24px;
  border-radius: 999px;
  border: none;
  background: var(--accent, #1a5c32);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

@media print {
  .gv-pdf-print { display: none; }
  body { background: #fff; }
}

@media (prefers-reduced-motion: reduce) {
  .gv-card {
    transition: none;
  }
}
