/* Gift voucher landing page - built on top of the shared ../styles.css tokens */

.vc-hero {
  padding-block: 44px 56px;
  display: grid;
  grid-template-columns: 1.3fr 300px;
  gap: 32px;
  align-items: center;
  position: relative;
}
.vc-hero::before, .vc-hero::after {
  content: ""; position: absolute; z-index: -1; border-radius: 50%;
  filter: blur(40px); opacity: .55;
}
.vc-hero::before { width: 260px; height: 260px; background: var(--blush); top: -60px; left: 10%; }
.vc-hero::after { width: 200px; height: 200px; background: var(--cream-2); bottom: -40px; right: 8%; }
.vc-hero-copy { min-width: 0; }
.vc-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .78rem; font-weight: 700; color: var(--accent-dark);
  background: var(--blush); padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
}
.vc-hero h1 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); line-height: 1.25; margin-bottom: 16px; text-wrap: balance; }
.vc-hero-sub { color: var(--ink-soft); font-size: 1.08rem; max-width: 54ch; margin-bottom: 22px; }
.vc-hero .hero-values { margin-bottom: 26px; }
.vc-hero-media { max-width: 300px; }
@media (max-width: 900px) {
  .vc-hero { grid-template-columns: 1fr; padding-block: 28px 36px; gap: 24px; text-align: center; }
  .vc-hero-media { order: -1; max-width: 240px; margin: 0 auto; }
  .vc-hero-sub { margin-inline: auto; }
  .vc-hero .hero-values { justify-content: center; }
}

/* Certificate design */
.vc-cert {
  position: relative;
  background: linear-gradient(160deg, var(--white) 0%, var(--cream) 100%);
  border: 1.5px solid var(--accent);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 8px;
  overflow: hidden;
}
.vc-cert-inner {
  position: relative;
  border: 1px dashed rgba(198,120,86,.5);
  border-radius: 12px;
  padding: 30px 22px;
  text-align: center;
  background-image: radial-gradient(rgba(198,120,86,.12) 1px, transparent 1px);
  background-size: 14px 14px;
}
.vc-cert-logo { display: block; margin-bottom: 14px; }
.vc-cert-logo .logo-word { font-size: 1.3rem; }
.vc-cert-kicker {
  font-family: "Suez One", serif;
  font-size: 1.4rem;
  color: var(--accent-dark);
  margin: 0 0 16px;
}
.vc-cert-to, .vc-cert-from { font-size: .82rem; color: var(--ink-soft); margin: 0 0 8px; }
.vc-cert-to strong, .vc-cert-from strong { color: var(--ink); }
.vc-cert-amount { font-size: 1.6rem; font-weight: 800; color: var(--accent-dark); margin: 0; font-variant-numeric: tabular-nums; }
.vc-cert-divider { display: flex; justify-content: center; color: var(--accent); opacity: .6; margin: 12px 0; }
.vc-cert-msg {
  font-size: .88rem; color: var(--ink); font-style: italic;
  line-height: 1.5; margin: 0 0 16px;
  min-height: 2.6em;
}
.vc-cert-fine {
  font-size: .68rem; color: var(--ink-soft); opacity: .75;
  margin: 14px 0 0; padding-top: 12px;
  border-top: 1px dashed rgba(58,47,44,.16);
  font-variant-numeric: tabular-nums;
}
.vc-cert-preview { opacity: .96; transform: rotate(-1.5deg); }

.vc-who { text-align: center; padding: 8px 0 12px; }
.vc-who-sub { color: var(--ink-soft); font-size: .98rem; margin: 8px 0 0; }
.vc-who-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 30px;
}
.vc-who-card {
  background: var(--white); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm);
  padding: 24px 16px; transition: transform .2s ease, box-shadow .2s ease;
}
.vc-who-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.vc-who-icon {
  display: flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%; margin: 0 auto 14px;
  background: var(--blush); color: var(--accent-dark);
}
.vc-who-icon svg { width: 20px; height: 20px; }
.vc-who-card p { margin: 0; font-size: .88rem; font-weight: 600; color: var(--ink); line-height: 1.45; }
@media (max-width: 760px) {
  .vc-who-grid { grid-template-columns: repeat(2, 1fr); }
}

.vc-section { padding: 56px 0; }
.vc-section-head { text-align: center; max-width: 62ch; margin: 0 auto 8px; }

.vc-order-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 36px;
}
@media (max-width: 900px) {
  .vc-order-grid { grid-template-columns: 1fr; gap: 28px; }
  .vc-live-preview { order: -1; max-width: 320px; margin: 0 auto; }
}

.vc-form {
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  padding: 28px 26px;
}
.vc-label { font-weight: 800; font-size: .94rem; color: var(--ink); margin: 0 0 10px; }
.vc-field-group { margin-bottom: 20px; }
.vc-amount-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 14px; }
.vc-chip {
  flex: 1 1 auto; min-width: 70px;
  border: 1.5px solid rgba(58,47,44,.14); background: var(--cream);
  color: var(--ink); font-weight: 700; font-size: .95rem;
  padding: 10px 14px; border-radius: 12px; cursor: pointer;
  transition: border-color .15s ease, background .15s ease, color .15s ease;
}
.vc-chip:hover { border-color: var(--accent); }
.vc-chip-selected { background: var(--accent-dark); border-color: var(--accent-dark); color: var(--white); }
@media (max-width: 500px) {
  .vc-amount-chips .vc-chip { flex: 1 1 calc(50% - 5px); font-size: 1rem; padding: 12px 10px; }
}
.vc-custom-amount { display: flex; flex-direction: column; gap: 6px; }
.vc-custom-amount label { font-size: .84rem; color: var(--ink-soft); }
.vc-custom-amount-input { display: flex; align-items: center; gap: 8px; }
.vc-custom-amount-input input {
  flex: 1; padding: 10px 14px; border-radius: 10px;
  border: 1.5px solid rgba(58,47,44,.14); font-size: .95rem; font-family: inherit;
}
.vc-custom-amount-input span { color: var(--ink-soft); font-weight: 700; }
.vc-amount-note { font-size: .76rem; color: var(--ink-soft); margin: 4px 0 0; }

.vc-delivery-choice { display: flex; flex-wrap: wrap; gap: 10px; }
.vc-delivery-choice .vc-chip { flex: 1 1 auto; min-width: 160px; }

.vc-form-divider { border-top: 1px dashed rgba(58,47,44,.16); margin: 22px 0 18px; }
.vc-form-submit { width: 100%; margin-top: 16px; }
.vc-form-note { font-size: .82rem; color: var(--ink-soft); margin: 0 0 14px; text-align: center; line-height: 1.5; }
.vc-pay-note { text-align: center; }
.vc-pay-note .pay-logos { border-top: none; padding-top: 0; justify-content: center; }

.vc-live-preview { position: sticky; top: 90px; }
.vc-live-preview-label {
  text-align: center; font-size: .82rem; font-weight: 700;
  color: var(--ink-soft); margin: 0 0 12px;
}

.vc-final-cta-section { padding-bottom: 64px; }
.vc-final-cta {
  text-align: center; background: var(--blush); border-radius: var(--radius);
  padding: 48px 30px; margin: 8px 0;
}
.vc-final-cta h2 { margin-bottom: 10px; }
.vc-final-cta p { color: var(--ink-soft); max-width: 50ch; margin: 0 auto 24px; }
