/* =====================================================================
   Kskin B5 Serum - Giveaway Landing Page
   Design system: Playfair Display (headlines) + Inter (body/UI)
   ===================================================================== */

:root {
  --ink:        #241B2E;   /* primary text */
  --body:       #6B6275;   /* secondary text */
  --lavender:   #F3EEFA;   /* soft section bg */
  --lavender-2: #FBF8FF;   /* lighter section bg */
  --purple:     #7E33A6;   /* accent */
  --purple-lt:  #CB93E6;   /* light accent (on dark) */
  --plum:       #2B2036;   /* conversion / dark sections */
  --plum-2:     #241B2E;
  --circle:     #3C2E4C;   /* social icon circles */
  --border:     #E6D8F5;   /* card borders */
  --gold:       #E0A100;   /* stars */
  --grad:       linear-gradient(135deg, #9A4FC4 0%, #CB93E6 100%);
  --shadow-sm:  0 4px 16px rgba(46, 20, 66, .08);
  --shadow-md:  0 14px 40px rgba(46, 20, 66, .14);
  --radius:     18px;
  --maxw:       1180px;
  --header-h:   72px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

.section { padding: 64px 0; }

h1, h2, h3 { font-family: "Playfair Display", Georgia, serif; line-height: 1.12; margin: 0; color: var(--ink); }

.accent { color: var(--purple); }

.eyebrow {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--purple);
  margin: 0 0 12px;
}
.eyebrow--center { text-align: center; }

.section__title { font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 700; }
.section__title.center { text-align: center; max-width: 760px; margin: 0 auto; }

/* -------- Buttons -------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  font-family: "Inter", sans-serif; font-weight: 600; font-size: .95rem;
  text-decoration: none; cursor: pointer; border: none;
  padding: 13px 26px; border-radius: 999px;
  transition: transform .15s ease, box-shadow .2s ease, opacity .2s ease;
}
.btn--primary { background: var(--grad); color: #fff; box-shadow: 0 8px 22px rgba(154, 79, 196, .35); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(154, 79, 196, .45); }
.btn--lg { padding: 16px 34px; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* =====================================================================
   0. RIBBON
   ===================================================================== */
   
   
   
.ribbon {
  display: block; background: var(--grad); color: #fff;
  text-decoration: none; text-align: center;
}
.ribbon__inner {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  max-width: var(--maxw); margin: 0 auto; padding: 9px 18px;
  font-size: .9rem; font-weight: 500; letter-spacing: .01em;
}
.ribbon strong { font-weight: 700; }
.ribbon__icon { width: 18px; height: 18px; fill: #fff; flex: none; }
.ribbon__short { display: none; }
.ribbon:hover .ribbon__full,
.ribbon:hover .ribbon__short { text-decoration: underline; }

/* =====================================================================
   1. HEADER
   ===================================================================== */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid rgba(126, 51, 166, .08);
  transition: box-shadow .25s ease;
}
.header.is-scrolled { box-shadow: 0 6px 20px rgba(46, 20, 66, .08); }
.header__bar { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }
.header__logo img { height: 42px; width: auto; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav__link { text-decoration: none; font-weight: 500; font-size: .95rem; color: var(--ink); transition: color .15s ease; }
.nav__link:hover { color: var(--purple); }
.nav__cta { margin-left: 6px; }

.nav__toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav__toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================================================================
   2. HERO
   ===================================================================== */
.hero { background: var(--lavender); overflow: hidden; }

/* Mobile: landscape banner; the IMG defines the height at ratio 1076:642;
   eyebrow + headline are overlaid absolutely so they can't stretch the banner. */
.hero__banner { position: relative; overflow: hidden; height: 0; padding-bottom: 59.66%; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: right top; display: block; }
.hero__banner::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(95deg, var(--lavender) 0%, var(--lavender) 42%, rgba(243,238,250,.55) 54%, rgba(243,238,250,0) 66%);
}
.hero__banner > .container { position: absolute; inset: 0; z-index: 2; display: flex; align-items: flex-start; }
.hero__head { max-width: 62%; padding: 14.6vw 0 0; }
.hero__eyebrow { display: flex; align-items: center; font-weight: 700; font-size: 2.4vw; letter-spacing: .1em; text-transform: uppercase; color: var(--purple); margin: 0 0 4vw; }
.tag-new { background: #E23B3B; color: #fff; font-size: 2.1vw; font-weight: 700; letter-spacing: .06em; padding: 0.7vw 1.5vw; border-radius: 1.2vw; margin-right: 2vw; }
.hero__title { font-size: 7vw; line-height: 1.0; font-weight: 800; }

.hero__body { background: var(--lavender); }
.hero__content { max-width: 560px; padding: 22px 0 46px; }
.hero__sub { color: var(--body); font-size: 1.05rem; margin: 0; max-width: 480px; }

/* prize card */
.prize {
  display: flex; align-items: center; gap: 16px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 18px 20px; margin: 24px 0 26px; box-shadow: var(--shadow-md);
}
.prize__icon {
  flex: none; width: 52px; height: 52px; border-radius: 14px;
  background: var(--grad); display: grid; place-items: center;
}
.prize__icon svg { width: 28px; height: 28px; fill: #fff; }
.prize__text { display: flex; flex-direction: column; line-height: 1.25; flex: 1 1 auto; }
.prize__tag { font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--purple); }
.prize__head { font-family: "Playfair Display", serif; font-size: 1.3rem; font-weight: 700; color: var(--ink); margin: 2px 0; }
.prize__note { font-size: .82rem; color: var(--body); }
.prize__value {
  flex: none; text-align: center; padding-left: 18px;
  border-left: 1px solid var(--border); display: flex; flex-direction: column;
}
.prize__price { font-family: "Playfair Display", serif; font-size: 1.9rem; font-weight: 800; color: var(--purple); }
.prize__label { font-size: .66rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--body); }

.hero__actions { display: flex; }
.hero__fine { font-size: .82rem; color: var(--body); margin: 12px 0 0; }

/* Desktop hero = full-bleed banner; eyebrow + headline + body stacked over left scrim */
@media (min-width: 920px) {
  .hero { position: relative; min-height: clamp(640px, 51vw, 800px); display: flex; flex-direction: column; justify-content: center; }
  .hero .container { max-width: none; margin: 0; padding-left: 7.8%; padding-right: 22px; }
  .hero__banner { position: static; min-height: 0; height: auto; padding-bottom: 0; overflow: visible; display: block; aspect-ratio: auto; }
  .hero__banner::before { display: none; }
  .hero__media { position: absolute; inset: 0; z-index: 0; display: block; }
  .hero__media img { width: 100%; height: 100%; aspect-ratio: auto; object-fit: cover; object-position: right top; }
  .hero::before {
    content: ""; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(90deg, var(--lavender) 0%, var(--lavender) 34%, rgba(243,238,250,.85) 50%, rgba(243,238,250,0) 64%);
  }
  .hero__banner > .container, .hero__body { position: relative; z-index: 2; }
  .hero__banner > .container { display: block; }
  .hero__head { max-width: 470px; padding: 0; }
  .hero__eyebrow { font-size: .82rem; letter-spacing: .12em; margin: 0 0 18px; }
  .tag-new { font-size: .64rem; padding: 4px 9px; border-radius: 5px; margin-right: 10px; letter-spacing: .08em; }
  .hero__title { font-size: 3.45rem; line-height: 1.08; }
  .hero__body { background: transparent; }
  .hero__content { padding: 0; }
  .hero__sub { max-width: 540px; margin: 30px 0 0; }
  .prize { margin: 30px 0 28px; }
  .hero__fine { margin: 18px 0 0; }
  .hero__br { display: none; }
}

/* =====================================================================
   3. BARRIER (problem → promise)
   ===================================================================== */
.barrier { background: var(--lavender-2); }
.barrier .eyebrow, .barrier .section__title { margin-bottom: 8px; }
.barrier__grid { display: grid; grid-template-columns: 1fr; gap: 22px; margin-top: 36px; }
.barrier__card {
  margin: 0; background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); position: relative;
}
.barrier__badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px; color: #fff;
}
.barrier__badge--problem { background: #9A8AA6; }
.barrier__badge--promise { background: var(--purple); }
.barrier__img { aspect-ratio: 16 / 11; overflow: hidden; background: #f2eef7; }
.barrier__img img { width: 100%; height: 100%; object-fit: cover; }
.barrier__card figcaption { padding: 20px 22px 24px; }
.barrier__card h3 { font-size: 1.3rem; font-weight: 700; }
.barrier__card p { color: var(--body); margin: 8px 0 0; font-size: .97rem; }

@media (min-width: 760px) {
  .barrier__grid { grid-template-columns: 1fr 1fr; gap: 26px; }
}

/* =====================================================================
   4. BENEFITS
   ===================================================================== */
.benefits__grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 40px; }
.benefit {
  background: var(--lavender); border-radius: var(--radius); padding: 30px 26px;
  border: 1px solid var(--border);
}
.benefit__num {
  display: inline-block; font-family: "Playfair Display", serif; font-weight: 800;
  font-size: 1.6rem; color: var(--purple); opacity: .55; margin-bottom: 10px;
}
.benefit h3 { font-size: 1.35rem; font-weight: 700; }
.benefit p { color: var(--body); margin: 10px 0 0; }
@media (min-width: 820px) { .benefits__grid { grid-template-columns: repeat(3, 1fr); } }

/* =====================================================================
   5. RESULTS
   ===================================================================== */
.results { background: var(--lavender-2); }
.results__grid { display: grid; grid-template-columns: 1fr; gap: 30px; margin-top: 40px; align-items: center; }
.ba { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ba__item { margin: 0; position: relative; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-sm); }
.ba__item img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.ba__item figcaption {
  position: absolute; left: 10px; bottom: 10px;
  background: rgba(36, 27, 46, .82); color: #fff; font-size: .78rem; font-weight: 600;
  padding: 4px 12px; border-radius: 999px;
}
.ba__item figcaption span { opacity: .8; font-weight: 500; }

.testimonial {
  margin: 0; background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 30px 26px; box-shadow: var(--shadow-sm);
}
.stars { display: flex; gap: 3px; margin-bottom: 14px; }
.stars svg { width: 20px; height: 20px; fill: var(--gold); }
.testimonial__quote { font-family: "Playfair Display", serif; font-size: 1.35rem; line-height: 1.4; color: var(--ink); margin: 0; }
.testimonial__by { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 14px; margin-top: 18px; }
.testimonial__by cite { font-style: normal; font-weight: 700; }
.testimonial__link { color: var(--purple); font-size: .9rem; font-weight: 600; text-decoration: none; background: none; border: none; padding: 0; cursor: pointer; font-family: inherit; }
.testimonial__link:hover { text-decoration: underline; }

/* Vertical YouTube Short: own row, centered below the before/after + testimonial */
.results { overflow: hidden; }                 /* contain the decorative graphics */
.results__video { display: flex; justify-content: center; margin-top: 48px; }

/* Decoration stage around the video */
.vstage { position: relative; width: 300px; max-width: 100%; }
.vstage::before {                              /* soft purple glow behind the card */
  content: ""; position: absolute; z-index: 0; left: 50%; top: 52%;
  width: 150%; height: 114%; transform: translate(-50%, -50%);
  background: radial-gradient(closest-side, rgba(154, 79, 196, .34), rgba(203, 147, 230, .14) 58%, transparent 74%);
  filter: blur(14px); pointer-events: none;
}
.vstage .vshort { position: relative; z-index: 1; }

.vdeco { position: absolute; z-index: 0; line-height: 0; pointer-events: none; }
.vdeco svg { display: block; width: 100%; height: 100%; }
/* soft circles (echo the ingredient bubbles) + a ring outline */
.vdeco--dot { border-radius: 50%; }
.vdeco--dot1 { width: 16px; height: 16px; background: var(--purple); top: -12px; left: -18px; opacity: .92; }
.vdeco--dot2 { width: 10px; height: 10px; background: var(--purple-lt); top: 26%; right: -24px; }
.vdeco--dot3 { width: 13px; height: 13px; background: var(--purple-lt); bottom: 36px; left: -22px; opacity: .9; }
.vdeco--ring { border-radius: 50%; border: 3px solid rgba(126, 51, 166, .35); }
.vdeco--ring1 { width: 30px; height: 30px; bottom: -16px; right: -16px; }
.vdeco--hex { color: rgba(126, 51, 166, .16); }
.vdeco--hex1 { width: 56px; height: 56px; top: -28px; right: -20px; transform: rotate(12deg); }
.vdeco--hex2 { width: 40px; height: 40px; bottom: -22px; right: 26px; transform: rotate(-8deg); }
.vchip {
  position: absolute; z-index: 2; top: -16px; right: -14px;
  display: flex; align-items: center; gap: 5px;
  background: #fff; color: var(--ink); font-weight: 700; font-size: .84rem;
  padding: 7px 12px; border-radius: 999px; box-shadow: var(--shadow-md);
  transform: rotate(6deg); pointer-events: none;
}
.vchip svg { width: 14px; height: 14px; fill: var(--gold); }
.vshort {
  position: relative; width: 100%; max-width: 300px; aspect-ratio: 9 / 16;
  border-radius: 22px; overflow: hidden; background: #15101c; box-shadow: var(--shadow-md);
}
.vshort__play { position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; border: none; background: none; cursor: pointer; display: block; }
.vshort__poster { width: 100%; height: 100%; object-fit: cover; display: block; }
.vshort__btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 62px; height: 62px; border-radius: 50%; background: rgba(126, 51, 166, .92);
  display: grid; place-items: center; box-shadow: 0 8px 24px rgba(0, 0, 0, .35);
  transition: transform .15s ease, background .15s ease;
}
.vshort__btn svg { width: 26px; height: 26px; fill: #fff; margin-left: 3px; }
.vshort:hover .vshort__btn, .vshort__play:focus-visible .vshort__btn { transform: translate(-50%, -50%) scale(1.08); background: var(--purple); }
.vshort__label {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 28px 16px 14px; text-align: left;
  color: #fff; font-weight: 600; font-size: .92rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, .78));
}
.vshort iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

@media (min-width: 860px) { .results__grid { grid-template-columns: 1fr 1fr; gap: 44px; } }

/* =====================================================================
   6. KEY ACTIVES
   ===================================================================== */
.actives__grid { display: grid; grid-template-columns: 1fr; gap: 30px; margin-top: 44px; }
.active { text-align: center; }
.active__sphere {
  width: 130px; height: 130px; margin: 0 auto 18px;
  display: grid; place-items: center;
  filter: drop-shadow(0 12px 22px rgba(46, 20, 66, .16));
}
.active__sphere img { width: 100%; height: 100%; object-fit: contain; }
.active h3 { font-size: 1.25rem; font-weight: 700; }
.active p { color: var(--body); margin: 8px auto 0; max-width: 300px; }
@media (min-width: 820px) { .actives__grid { grid-template-columns: repeat(3, 1fr); } }

/* =====================================================================
   7. TRUST BAR
   ===================================================================== */
.trust { background: var(--grad); color: #fff; padding: 40px 0; }
.trust__inner { display: flex; flex-direction: column; align-items: center; gap: 22px; text-align: center; }
.trust__title { color: #fff; font-size: clamp(1.6rem, 4vw, 2.2rem); font-weight: 700; }
.trust__title .accent { color: #fff; text-decoration: underline; text-decoration-color: rgba(255,255,255,.6); text-underline-offset: 5px; }
.trust__list { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 26px; margin: 0; padding: 0; }
.trust__list li { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: .98rem; }
.trust__list svg { width: 18px; height: 18px; fill: #fff; flex: none; }

/* =====================================================================
   8. GIVEAWAY + FORM
   ===================================================================== */
.giveaway { background: var(--plum); color: #fff; padding: 70px 0; }
.giveaway__grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start; }
.giveaway__tag {
  display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--purple-lt); border: 1px solid rgba(203, 147, 230, .4); border-radius: 999px;
  padding: 6px 14px; margin-bottom: 18px;
}
.giveaway__title { color: #fff; font-size: clamp(1.9rem, 4.5vw, 2.8rem); font-weight: 700; }
.giveaway__title .accent { color: var(--purple-lt); }
.giveaway__lead { color: rgba(255,255,255,.78); margin: 16px 0 0; max-width: 460px; }
.giveaway__product { margin: 28px 0 0; }
.giveaway__product img {
  width: 100%; max-width: 280px; border-radius: 16px;
  background: rgba(255,255,255,.04); padding: 8px;
}

/* form */
.form {
  background: #fff; color: var(--ink); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow-md);
}
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .86rem; font-weight: 600; margin-bottom: 6px; }
.field input, .field textarea {
  width: 100%; font: inherit; color: var(--ink);
  padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 11px;
  background: #FCFAFF; transition: border-color .15s ease, box-shadow .15s ease;
  resize: vertical;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--purple); box-shadow: 0 0 0 3px rgba(126, 51, 166, .12);
}
.field.invalid input, .field.invalid textarea { border-color: #D6406A; background: #FFF5F8; }

.check { display: flex; align-items: flex-start; gap: 10px; font-size: .86rem; color: var(--body); margin: 12px 0; cursor: pointer; }
.check input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--purple); flex: none; }
.check a { color: var(--purple); }
.check.invalid span { color: #D6406A; }

.form__fine { font-size: .78rem; color: var(--body); text-align: center; margin: 14px 0 0; }
.form .btn { margin-top: 6px; }

.form__success {
  margin-top: 18px; padding: 16px 18px; border-radius: 12px;
  background: #F3EAFB; border: 1px solid var(--border); display: flex; flex-direction: column; gap: 4px;
}
.form__success strong { font-size: 1.05rem; }
.form__success span { font-size: .9rem; color: var(--body); }

@media (min-width: 900px) {
  .giveaway__grid { grid-template-columns: 1fr 1fr; gap: 60px; }
  .giveaway__product { margin-top: 36px; }
  .giveaway__product img { width: 100%; max-width: 440px; }
}

/* =====================================================================
   9. FOOTER
   ===================================================================== */
.footer { background: var(--plum-2); color: #fff; padding: 48px 0 28px; }
.footer__inner { display: flex; flex-direction: column; gap: 26px; align-items: flex-start; }
.footer__logo { height: 40px; width: auto; }
.footer__tagline { color: rgba(255,255,255,.65); font-size: .92rem; margin: 12px 0 0; }

.social { list-style: none; display: flex; gap: 12px; margin: 0; padding: 0; }
.social a {
  width: 42px; height: 42px; border-radius: 50%; background: var(--circle);
  display: grid; place-items: center; transition: background .18s ease, transform .18s ease;
}
.social a:hover { background: var(--purple); transform: translateY(-2px); }
.social svg { width: 20px; height: 20px; fill: #fff; }

.footer__bottom {
  display: flex; flex-direction: column; gap: 8px;
  border-top: 1px solid rgba(255,255,255,.12); margin-top: 30px; padding-top: 22px;
  font-size: .82rem; color: rgba(255,255,255,.55);
}
.footer__bottom a { color: rgba(255,255,255,.7); text-decoration: none; }
.footer__bottom a:hover { color: #fff; text-decoration: underline; }

@media (min-width: 720px) {
  .footer__inner { flex-direction: row; justify-content: space-between; align-items: center; }
  .footer__bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* =====================================================================
   MOBILE NAV
   ===================================================================== */
@media (max-width: 860px) {
  .nav {
    position: fixed; top: var(--header-h); right: 0; left: 0;
    background: #fff; flex-direction: column; align-items: stretch; gap: 0;
    padding: 8px 22px 22px; border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transform: translateY(-130%); transition: transform .28s ease; visibility: hidden;
  }
  .nav.is-open { transform: translateY(0); visibility: visible; }
  .nav__link { padding: 14px 0; border-bottom: 1px solid var(--lavender); }
  .nav__cta { margin: 14px 0 0; }
  .nav__toggle { display: flex; }
}

/* Show short ribbon copy on small screens */
@media (max-width: 560px) {
  .ribbon__full { display: none; }
  .ribbon__short { display: inline; }
  .ribbon__inner { font-size: .82rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}

/* =====================================================================
   WordPress theme: giveaway form placeholder
   (replace the .form--placeholder block in front-page.php with your form
   plugin shortcode; this styling just frames the empty slot)
   ===================================================================== */
.form--placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; min-height: 440px;
  border: 2px dashed var(--border); background: rgba(255, 255, 255, .55);
}
.form__placeholder { font-family: "Playfair Display", serif; font-size: 1.4rem; color: var(--ink); margin: 0 0 10px; }
.form--placeholder .form__fine { max-width: 320px; margin: 0; }
.form--placeholder code { background: #efe7f7; padding: 1px 5px; border-radius: 4px; }



/* =====================================================================
   THANK YOU PAGE
   ===================================================================== */
.thanks {
  position: relative;
  overflow: hidden;
  padding: 76px 0 92px;
  background: radial-gradient(120% 90% at 50% -8%, var(--lavender) 0%, var(--lavender-2) 46%, #fff 82%);
}
.thanks__inner { max-width: 720px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }

.thanks__badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 88px; height: 96px; margin: 0 auto 22px; position: relative;
  filter: drop-shadow(0 14px 26px rgba(126, 51, 166, .28));
}
.thanks__badge .hex { position: absolute; inset: 0; width: 100%; height: 100%; }
.thanks__badge .check { position: relative; width: 38px; height: 38px; fill: #fff; }

.thanks__title { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; margin: 0 0 14px; }
.thanks__lead { color: var(--body); font-size: 1.08rem; max-width: 560px; margin: 0 auto; }

.thanks__prize {
  display: inline-flex; align-items: center; gap: 9px;
  margin: 24px auto 0; padding: 10px 18px; border-radius: 999px;
  background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  font-weight: 600; font-size: .95rem; color: var(--ink);
}
.thanks__prize svg { width: 18px; height: 18px; fill: var(--purple); flex: none; }
.thanks__prize strong { color: var(--purple); }

.thanks__steps {
  list-style: none; margin: 36px auto 0; padding: 0; max-width: 600px;
  display: grid; gap: 14px; text-align: left;
}
.thanks__step {
  display: flex; gap: 14px; align-items: flex-start;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 16px 18px; box-shadow: var(--shadow-sm);
}
.thanks__step .n {
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--grad); color: #fff; font-weight: 700; font-size: .9rem;
}
.thanks__step h3 { font-family: "Inter", sans-serif; font-size: 1rem; font-weight: 700; margin: 3px 0 4px; color: var(--ink); }
.thanks__step p { margin: 0; color: var(--body); font-size: .92rem; line-height: 1.5; }

.thanks__actions { margin-top: 36px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn--ghost { background: #fff; color: var(--purple); border: 1.5px solid var(--border); }
.btn--ghost:hover { border-color: var(--purple-lt); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

.thanks__follow { margin-top: 44px; }
.thanks__follow p { color: var(--body); font-size: .9rem; margin: 0 0 14px; }
.thanks .social { display: flex; gap: 12px; justify-content: center; list-style: none; margin: 0; padding: 0; }
.thanks .social a {
  width: 42px; height: 42px; border-radius: 50%; background: var(--lavender);
  display: inline-flex; align-items: center; justify-content: center; transition: .2s;
}
.thanks .social a:hover { background: var(--purple-lt); transform: translateY(-2px); }
.thanks .social svg { width: 18px; height: 18px; fill: var(--purple); }
.thanks .social a:hover svg { fill: #fff; }

.thanks__deco { position: absolute; z-index: 1; color: var(--border); }
.thanks__deco svg { width: 100%; height: 100%; display: block; }
.thanks__deco--1 { width: 72px; height: 72px; top: 12%; left: 7%; opacity: .8; }
.thanks__deco--2 { width: 48px; height: 48px; bottom: 16%; right: 9%; color: var(--purple-lt); opacity: .5; }
.thanks__deco--3 { width: 30px; height: 30px; top: 26%; right: 16%; color: var(--purple-lt); opacity: .45; }

@media (max-width: 768px) {
  .thanks__deco--1, .thanks__deco--3 { display: none; }
}
@media (max-width: 480px) {
  .thanks { padding: 52px 0 64px; }
  .thanks__actions .btn { width: 100%; }
}


  /* ---- Thank-you: share the giveaway ---- */
.thanks__share { margin-top: 42px; padding-top: 38px; border-top: 1px solid var(--border); }
.thanks__share-q {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem; font-weight: 700; color: var(--ink);
  margin: 0 0 18px; line-height: 1.3;
}
.js-share-native svg { width: 18px; height: 18px; fill: #fff; }
.thanks__share-net { display: flex; gap: 12px; justify-content: center; margin-top: 18px; }
.share-ic {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--border); background: #fff; color: var(--purple);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; transition: .2s; text-decoration: none;
}
.share-ic svg { width: 20px; height: 20px; fill: currentColor; }
.share-ic:hover { background: var(--purple-lt); color: #fff; border-color: var(--purple-lt); transform: translateY(-2px); }
.thanks__share-toast {
  display: inline-block; margin-top: 16px;
  font-size: .85rem; font-weight: 600; color: var(--purple);
}



/* ---- Giveaway key dates callout (hero + near form) ---- */
.gdates {
  display: grid; gap: 9px;
  margin: 20px 0 0; padding: 14px 16px;
  background: #fff; border: 1px solid var(--border);
  border-radius: 14px; box-shadow: var(--shadow-sm);
  text-align: left; max-width: 460px;
}
.gdates__line {
  margin: 0; display: flex; gap: 9px; align-items: flex-start;
  font-size: .9rem; line-height: 1.45; color: var(--ink);
}
.gdates__line strong { color: var(--purple); font-weight: 700; }
.gdates__emoji { flex: none; font-size: 1rem; line-height: 1.4; }
.gdates--ondark { box-shadow: 0 12px 30px rgba(0, 0, 0, .18); }



/* Sticky nav bar — header follows on scroll */
.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
}
/* keep the sticky nav clear of the WordPress admin bar when logged in */
.admin-bar .header { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .header { top: 46px; } }



