/* ═══════════════════════════════════════════════════════════
   LILLYKAY — Design System  (v2 — minimal / premium)
   ═══════════════════════════════════════════════════════════ */

:root {
  --pink:        #D4156B;
  --pink-light:  #f0539a;
  --pink-dark:   #a50e53;
  --pink-soft:   #FCEDF4;
  --gold:        #C9956A;
  --gold-light:  #e8c4a0;
  --cream:       #FBF7F4;
  --cream-dark:  #F3EAE4;
  --ink:         #181318;
  --ink-soft:    #5A525A;
  --line:        #ECE5E1;
  --white:       #FFFFFF;

  --font: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --r-sm:   10px;
  --r-md:   18px;
  --r-lg:   28px;
  --r-xl:   36px;
  --r-full: 9999px;

  --sh-xs:   0 1px 3px rgba(24,19,24,.04);
  --sh-sm:   0 4px 16px rgba(24,19,24,.06);
  --sh-md:   0 12px 36px rgba(24,19,24,.08);
  --sh-lg:   0 28px 70px rgba(24,19,24,.12);
  --sh-pink: 0 10px 30px rgba(212,21,107,.22);

  --ease: cubic-bezier(.22,.61,.36,1);
  --t:    .35s var(--ease);
  --header-h: 76px;
}

/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a   { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
ul  { list-style: none; }

/* ─── Typography ────────────────────────────────────────── */
h1, h2, h3, h4 { font-weight: 800; line-height: 1.12; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.05rem; font-weight: 700; letter-spacing: -0.01em; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }

/* ─── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 30px;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: 0.94rem;
  letter-spacing: -0.01em;
  transition: var(--t);
  cursor: pointer;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--ink);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--pink);
  transform: translateY(-2px);
  box-shadow: var(--sh-pink);
}

.btn-pink {
  background: var(--pink);
  color: var(--white);
  box-shadow: var(--sh-pink);
}
.btn-pink:hover { background: var(--pink-dark); transform: translateY(-2px); }

.btn-ghost {
  background: var(--white);
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }

/* ─── Section scaffolding ───────────────────────────────── */
.section { padding: 96px 0; }
.section-head { text-align: center; max-width: 600px; margin: 0 auto 60px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 18px;
}
.eyebrow::before { content: ''; width: 22px; height: 1.5px; background: var(--pink); border-radius: 2px; }
.eyebrow.center::after { content: ''; width: 22px; height: 1.5px; background: var(--pink); border-radius: 2px; }
.section-head h2 { color: var(--ink); margin-bottom: 16px; }
.section-head p  { color: var(--ink-soft); font-size: 1.02rem; }

/* ─── Header ─────────────────────────────────────────────── */
.site-header {
  position: fixed;
  inset: 14px 0 auto 0;
  z-index: 1000;
  transition: var(--t);
}
.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 24px;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: var(--r-full);
  box-shadow: var(--sh-sm);
  transition: var(--t);
}
.site-header.scrolled { inset: 0 0 auto 0; }
.site-header.scrolled .container { max-width: 100%; padding: 0; transition: var(--t); }
.site-header.scrolled .header-inner {
  height: var(--header-h);
  border-radius: 0;
  border-color: transparent;
  border-bottom: 1px solid var(--line);
  background: rgba(251,247,244,.85);
  box-shadow: none;
  padding: 0 32px;
}

/* Logo */
.logo { display: flex; align-items: center; }
.logo-img {
  display: block;
  height: 34px;
  width: auto;
  transition: var(--t);
}
.logo:hover .logo-img { transform: scale(1.03); }

/* Nav */
.main-nav { display: flex; align-items: center; gap: 36px; }
.main-nav a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
  position: relative;
  transition: color var(--t);
}
.main-nav a::after {
  content: ''; position: absolute; left: 0; bottom: -5px;
  width: 0; height: 2px; background: var(--pink); border-radius: 2px;
  transition: width var(--t);
}
.main-nav a:hover { color: var(--pink); }
.main-nav a:hover::after { width: 100%; }

/* Header right */
.header-right { display: flex; align-items: center; gap: 14px; }

/* Language switcher */
.lang-switcher {
  display: flex; gap: 2px;
  background: rgba(24,19,24,.06);
  border-radius: var(--r-full);
  padding: 3px;
}
.lang-btn {
  padding: 6px 12px;
  border-radius: var(--r-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  transition: var(--t);
}
.lang-btn.active { background: var(--ink); color: var(--white); box-shadow: var(--sh-xs); }

/* Mobile toggle */
.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.menu-toggle span {
  width: 22px; height: 2px; border-radius: 2px;
  background: var(--ink); transition: var(--t);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO — contained split banner ─────────────────────── */
.hero {
  padding-top: calc(var(--header-h) + 32px);
  padding-bottom: 24px;
}
.hero-banner {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  background: var(--white);
}
.hero-track {
  display: flex;
  transition: transform .7s var(--ease);
}
.hero-slide {
  position: relative;
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 500px;
}
/* text side */
.hero-text {
  position: relative;
  padding: 72px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: radial-gradient(120% 120% at 0% 0%, var(--white) 0%, var(--cream) 45%, var(--pink-soft) 100%);
  overflow: hidden;
}
.hero-text::before {
  content: '';
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,21,107,.1) 0%, transparent 70%);
  bottom: -90px; left: -70px;
}
.hero-eyebrow {
  position: relative;
  display: inline-flex; align-items: center; gap: 8px;
  align-self: flex-start;
  padding: 7px 15px 7px 12px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(212,21,107,.15);
  border-radius: var(--r-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 22px;
}
.hero-eyebrow::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--pink); box-shadow: 0 0 0 3px rgba(212,21,107,.15);
}
.hero-title { position: relative; color: var(--ink); margin-bottom: 18px; max-width: 15ch; line-height: 1.08; }
.hero-sub { position: relative; color: var(--ink-soft); font-size: 1.06rem; margin-bottom: 36px; max-width: 36ch; }
.hero-actions { position: relative; display: flex; gap: 14px; flex-wrap: wrap; }
/* image side */
.hero-photo {
  position: relative;
  overflow: hidden;
  background: var(--cream-dark);
}
.hero-photo::before {
  content: '';
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(100deg, var(--pink-soft) 0%, rgba(252,237,244,0) 14%);
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

/* hero controls */
.hero-nav {
  position: absolute;
  bottom: 28px; right: 28px;
  display: flex; gap: 10px;
  z-index: 5;
}
.hero-arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  display: grid; place-items: center;
  color: var(--ink);
  box-shadow: var(--sh-sm);
  transition: var(--t);
}
.hero-arrow:hover { background: var(--ink); color: var(--white); transform: translateY(-2px); }
.hero-arrow svg { width: 20px; height: 20px; }
.hero-dots {
  position: absolute;
  bottom: 40px; left: 60px;
  display: flex; gap: 7px;
  z-index: 5;
}
.hero-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(24,19,24,.18); transition: var(--t);
}
.hero-dot.active { width: 26px; border-radius: var(--r-full); background: var(--pink); }

/* ─── Trust / features (floating card) ──────────────────── */
.trust {
  position: relative;
  z-index: 6;
  margin-top: 8px;
}
.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-md);
  overflow: hidden;
}
.trust-item {
  display: flex; align-items: center; gap: 15px;
  padding: 24px 26px;
  background: var(--white);
  transition: background var(--t);
}
.trust-item:hover { background: var(--cream); }
.trust-ico {
  width: 46px; height: 46px;
  border-radius: var(--r-md);
  background: var(--pink-soft);
  color: var(--pink);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.trust-ico svg { width: 23px; height: 23px; }
.trust-item b { display: block; font-size: 0.92rem; font-weight: 700; color: var(--ink); margin-bottom: 1px; }
.trust-item span { font-size: 0.79rem; color: var(--ink-soft); line-height: 1.3; }

/* ─── Catalog ────────────────────────────────────────────── */
.catalog { background: var(--cream); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.product-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-xs);
  border: 1px solid var(--line);
  transition: var(--t);
  display: flex;
  flex-direction: column;
  animation: rise .5s var(--ease) both;
}
.product-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--sh-md);
  border-color: transparent;
}
.product-media {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--cream-dark);
}
.product-media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  transition: transform .6s var(--ease);
}
.product-card:hover .product-media img { transform: scale(1.05); }
.product-tag {
  position: absolute; top: 14px; left: 14px;
  padding: 6px 13px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-radius: var(--r-full);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--pink);
}
.product-body {
  padding: 20px;
  display: flex; flex-direction: column; gap: 8px;
  flex: 1;
}
.product-name { font-size: 1rem; font-weight: 700; color: var(--ink); line-height: 1.3; }
.product-desc { font-size: 0.84rem; color: var(--ink-soft); line-height: 1.5; flex: 1; }
.btn-order {
  margin-top: 8px;
  width: 100%;
  padding: 13px;
  border-radius: var(--r-md);
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
  font-size: 0.88rem;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: var(--t);
}
.btn-order svg { width: 16px; height: 16px; }
.btn-order:hover { background: var(--pink); }

/* ─── About ──────────────────────────────────────────────── */
.about { background: var(--white); overflow: hidden; }
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.about-visual {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--sh-lg);
}
.about-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.about-badge {
  position: absolute; bottom: 22px; left: 22px; right: 22px;
  padding: 18px 22px;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(16px);
  border-radius: var(--r-md);
  display: flex; align-items: center; gap: 14px;
}
.about-badge .about-badge-icon { width: 42px; height: 42px; object-fit: contain; flex-shrink: 0; }
.about-badge b { font-size: 0.95rem; font-weight: 800; color: var(--ink); display: block; }
.about-badge span { font-size: 0.8rem; color: var(--ink-soft); }

.about-copy h2 { margin-bottom: 20px; }
.about-copy > p { color: var(--ink-soft); font-size: 1.05rem; line-height: 1.8; margin-bottom: 36px; }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 28px; }
.feature {
  display: flex; align-items: flex-start; gap: 14px;
}
.feature-ico {
  width: 46px; height: 46px;
  border-radius: var(--r-sm);
  background: var(--pink-soft);
  color: var(--pink);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.feature-ico svg { width: 23px; height: 23px; }
.feature b { font-size: 0.94rem; font-weight: 700; color: var(--ink); display: block; margin-bottom: 2px; }
.feature span { font-size: 0.83rem; color: var(--ink-soft); line-height: 1.45; }

/* ─── CTA band ───────────────────────────────────────────── */
.cta-band { padding: 0 0 96px; }
.cta-inner {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(120deg, var(--pink) 0%, var(--pink-dark) 100%);
  padding: 70px 60px;
  text-align: center;
  color: var(--white);
}
.cta-inner::before, .cta-inner::after {
  content: ''; position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.cta-inner::before { width: 320px; height: 320px; top: -140px; right: -80px; }
.cta-inner::after  { width: 240px; height: 240px; bottom: -130px; left: -60px; }
.cta-inner h2 { color: var(--white); margin-bottom: 14px; position: relative; }
.cta-inner p { color: rgba(255,255,255,.85); font-size: 1.05rem; margin-bottom: 32px; position: relative; }
.cta-inner .btn { position: relative; background: var(--white); color: var(--pink); }
.cta-inner .btn:hover { background: var(--ink); color: var(--white); transform: translateY(-2px); }

/* ─── Popup ──────────────────────────────────────────────── */
.popup-overlay {
  position: fixed; inset: 0; z-index: 2000;
  display: grid; place-items: center; padding: 20px;
  opacity: 0; visibility: hidden;
  transition: opacity var(--t), visibility var(--t);
}
.popup-overlay.open { opacity: 1; visibility: visible; }
.popup-backdrop {
  position: absolute; inset: 0;
  background: rgba(24,19,24,.55);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.popup-modal {
  position: relative; z-index: 1;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 46px 42px;
  width: 100%; max-width: 460px;
  box-shadow: var(--sh-lg);
  transform: scale(.94) translateY(16px);
  transition: transform var(--t);
}
.popup-overlay.open .popup-modal { transform: none; }
.popup-close {
  position: absolute; top: 18px; right: 18px;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--cream-dark); color: var(--ink-soft);
  display: grid; place-items: center; transition: var(--t);
}
.popup-close svg { width: 18px; height: 18px; }
.popup-close:hover { background: var(--pink); color: var(--white); transform: rotate(90deg); }
.popup-ico {
  width: 60px; height: 60px; border-radius: var(--r-md);
  background: var(--pink); color: var(--white);
  display: grid; place-items: center; margin: 0 auto 20px;
  box-shadow: var(--sh-pink);
}
.popup-ico svg { width: 28px; height: 28px; }
.popup-modal h3 { text-align: center; font-size: 1.42rem; font-weight: 800; margin-bottom: 6px; }
.popup-product-label { text-align: center; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }
.popup-product-name { text-align: center; font-size: 1rem; font-weight: 700; color: var(--pink); margin-bottom: 26px; }
.order-form { display: flex; flex-direction: column; gap: 15px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 0.84rem; font-weight: 700; color: var(--ink); }
.form-group input {
  padding: 14px 17px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  font-family: var(--font); font-size: 0.95rem; font-weight: 500;
  color: var(--ink); background: var(--cream);
  transition: var(--t); outline: none;
}
.form-group input:focus { border-color: var(--pink); background: var(--white); box-shadow: 0 0 0 4px var(--pink-soft); }
.form-group input::placeholder { color: #b8b0b8; font-weight: 400; }
.popup-error {
  display: none; padding: 12px 16px;
  background: var(--pink-soft); border-radius: var(--r-md);
  font-size: 0.84rem; color: var(--pink-dark); text-align: center; font-weight: 600;
}
.popup-submit { margin-top: 6px; padding: 16px; font-size: 0.98rem; }
.popup-submit.loading { opacity: .7; pointer-events: none; }
.popup-submit.loading::after {
  content: ''; width: 15px; height: 15px;
  border: 2px solid rgba(255,255,255,.4); border-top-color: #fff;
  border-radius: 50%; animation: spin .7s linear infinite;
}
.popup-success {
  display: none; flex-direction: column; align-items: center; text-align: center;
  gap: 18px; padding: 16px 0;
}
.success-check {
  width: 70px; height: 70px; border-radius: 50%;
  background: #16a34a; display: grid; place-items: center;
  animation: pop .45s cubic-bezier(.34,1.56,.64,1);
}
.success-check svg { width: 32px; height: 32px; }
.popup-success p { font-size: 1.02rem; color: var(--ink); line-height: 1.6; }
.shake { animation: shake .4s ease; }

/* ─── Footer ─────────────────────────────────────────────── */
.site-footer { background: var(--ink); color: var(--white); padding: 64px 0 30px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo-img { height: 32px; }
.footer-brand p { margin-top: 16px; color: rgba(255,255,255,.55); font-size: 0.92rem; line-height: 1.7; max-width: 300px; }
.footer-col h4 { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 18px; }
.footer-col p, .footer-col a { display: block; font-size: 0.9rem; color: rgba(255,255,255,.6); line-height: 2; transition: color var(--t); }
.footer-col a:hover { color: var(--pink-light); }
.social-links { display: flex; gap: 11px; margin-top: 6px; }
.footer-col a.social-link {
  width: 44px; height: 44px; border-radius: var(--r-sm);
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.75);
  display: inline-flex; align-items: center; justify-content: center;
  line-height: 0;
  transition: var(--t);
}
.footer-col a.social-link svg { display: block; width: 19px; height: 19px; }
.footer-col a.social-link:hover { background: var(--pink); color: var(--white); transform: translateY(-3px); }
.footer-bottom { padding-top: 26px; text-align: center; font-size: 0.8rem; color: rgba(255,255,255,.32); }

/* ─── How to order (steps) ──────────────────────────────── */
.steps { background: var(--white); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  counter-reset: step;
}
.step {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 38px 32px 34px;
  transition: var(--t);
  overflow: hidden;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: transparent; }
.step-num {
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1;
  color: var(--pink-soft);
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}
.step-ico {
  position: absolute; top: 34px; right: 30px;
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--pink);
  display: grid; place-items: center;
}
.step-ico svg { width: 24px; height: 24px; }
.step h3 { font-size: 1.18rem; margin-bottom: 9px; color: var(--ink); }
.step p { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.6; }

/* ─── Reviews ────────────────────────────────────────────── */
.reviews { background: var(--cream); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.review {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 30px;
  display: flex; flex-direction: column;
  transition: var(--t);
}
.review:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: transparent; }
.review-stars { display: flex; gap: 3px; margin-bottom: 16px; color: #F5A623; }
.review-stars svg { width: 18px; height: 18px; }
.review-text { font-size: 0.98rem; color: var(--ink); line-height: 1.7; flex: 1; margin-bottom: 22px; }
.review-author { display: flex; align-items: center; gap: 13px; }
.review-ava {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink) 0%, var(--gold) 100%);
  color: var(--white); display: grid; place-items: center;
  font-weight: 800; font-size: 1.05rem; flex-shrink: 0;
}
.review-author b { display: block; font-size: 0.94rem; font-weight: 700; color: var(--ink); }
.review-author span { font-size: 0.82rem; color: var(--ink-soft); }

/* ─── FAQ ────────────────────────────────────────────────── */
.faq { background: var(--white); }
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  margin-bottom: 14px;
  overflow: hidden;
  transition: var(--t);
  background: var(--cream);
}
.faq-item.open { border-color: rgba(212,21,107,.3); box-shadow: var(--sh-sm); background: var(--white); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 22px 26px;
  font-size: 1.02rem; font-weight: 700; color: var(--ink);
  text-align: left;
}
.faq-icon {
  flex-shrink: 0;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--pink);
  transition: var(--t);
}
.faq-item.open .faq-icon { background: var(--pink); color: var(--white); border-color: var(--pink); transform: rotate(45deg); }
.faq-icon svg { width: 16px; height: 16px; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease);
}
.faq-a-inner { padding: 0 26px 24px; color: var(--ink-soft); font-size: 0.95rem; line-height: 1.7; }

/* ─── Instagram ──────────────────────────────────────────── */
.insta { background: var(--cream); }
.insta-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 36px; flex-wrap: wrap; }
.insta-head .eyebrow { margin-bottom: 12px; }
.insta-head h2 { color: var(--ink); }
.insta-handle {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 12px 22px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-full);
  font-weight: 700; font-size: 0.92rem; color: var(--ink);
  transition: var(--t);
}
.insta-handle:hover { background: var(--ink); color: var(--white); transform: translateY(-2px); }
.insta-handle svg { width: 19px; height: 19px; }
.insta-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.insta-cell {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--cream-dark);
}
.insta-cell img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .6s var(--ease); }
.insta-cell::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(212,21,107,0);
  display: grid; place-items: center;
  transition: background var(--t);
}
.insta-cell::before {
  content: '';
  position: absolute; inset: 0; z-index: 2; margin: auto;
  width: 30px; height: 30px; opacity: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M12 2.16c3.2 0 3.58.01 4.85.07 3.25.15 4.77 1.69 4.92 4.92.06 1.27.07 1.65.07 4.85 0 3.2-.01 3.58-.07 4.85-.15 3.23-1.66 4.77-4.92 4.92-1.27.06-1.64.07-4.85.07-3.2 0-3.58-.01-4.85-.07-3.26-.15-4.77-1.7-4.92-4.92-.06-1.27-.07-1.64-.07-4.85 0-3.2.01-3.58.07-4.85.15-3.23 1.66-4.77 4.92-4.92C8.42 2.17 8.8 2.16 12 2.16ZM12 0C8.74 0 8.33.01 7.05.07 2.7.27.27 2.69.07 7.05.01 8.33 0 8.74 0 12s.01 3.67.07 4.95c.2 4.36 2.62 6.78 6.98 6.98C8.33 23.99 8.74 24 12 24s3.67-.01 4.95-.07c4.35-.2 6.78-2.62 6.98-6.98.06-1.28.07-1.69.07-4.95s-.01-3.67-.07-4.95c-.2-4.35-2.62-6.78-6.98-6.98C15.67.01 15.26 0 12 0Zm0 5.84a6.16 6.16 0 1 0 0 12.32 6.16 6.16 0 0 0 0-12.32ZM12 16a4 4 0 1 1 0-8 4 4 0 0 1 0 8Zm6.41-11.85a1.44 1.44 0 1 0 0 2.88 1.44 1.44 0 0 0 0-2.88Z'/></svg>") no-repeat center / contain;
  transition: opacity var(--t);
}
.insta-cell:hover::after { background: rgba(212,21,107,.55); }
.insta-cell:hover::before { opacity: 1; }
.insta-cell:hover img { transform: scale(1.08); }

/* ─── Accessibility / SEO helper ─────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ─── Scroll reveal ──────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ─── Keyframes ──────────────────────────────────────────── */
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pop  { from { transform: scale(0); } to { transform: scale(1); } }
@keyframes shake { 0%,100%{transform:translateX(0)} 20%{transform:translateX(-8px)} 40%{transform:translateX(8px)} 60%{transform:translateX(-5px)} 80%{transform:translateX(5px)} }

/* ─── Responsive ─────────────────────────────────────────── */

/* Tablet landscape */
@media (max-width: 1080px) {
  .container { padding: 0 24px; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .insta-grid { grid-template-columns: repeat(4, 1fr); }
  .hero-slide { grid-template-columns: 1fr 0.9fr; }
  .hero-text { padding: 56px 44px; }
  .about-grid { gap: 48px; }
}

/* Tablet — stack hero, two-column blocks */
@media (max-width: 900px) {
  .hero { padding-top: calc(var(--header-h) + 26px); }
  .hero-slide { grid-template-columns: 1fr; min-height: 0; }
  .hero-photo { order: -1; aspect-ratio: 3/2; }
  .hero-photo img { object-position: center 20%; }
  .hero-photo::before { background: linear-gradient(0deg, var(--pink-soft) 0%, rgba(252,237,244,0) 22%); }
  .hero-text { padding: 38px 36px 44px; text-align: center; align-items: center; }
  .hero-eyebrow { align-self: center; }
  .hero-title, .hero-sub { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-text::before { display: none; }
  .hero-dots { bottom: auto; top: 16px; left: 50%; transform: translateX(-50%); }
  .hero-nav { bottom: auto; top: 14px; right: 16px; }
  .hero-arrow { width: 40px; height: 40px; background: rgba(255,255,255,.85); }

  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { aspect-ratio: 4/5; max-width: 420px; margin: 0 auto; width: 100%; }
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .reviews-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* Mobile */
@media (max-width: 768px) {
  :root { --header-h: 60px; }
  .site-header { inset: 10px 0 auto 0; }
  .site-header .header-inner { height: 56px; padding: 0 18px; }
  .main-nav {
    position: fixed; inset: 78px 14px auto 14px;
    flex-direction: column; gap: 0;
    background: var(--white); padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-lg);
    transform: translateY(-12px); opacity: 0; visibility: hidden;
    transition: var(--t);
    z-index: 999;
  }
  .main-nav.open { transform: none; opacity: 1; visibility: visible; }
  .main-nav a { padding: 13px 16px; width: 100%; color: var(--ink) !important; font-size: 1rem; border-radius: var(--r-md); }
  .main-nav a:hover { background: var(--cream); }
  .main-nav a::after { display: none; }
  .site-header.scrolled .main-nav { inset: 68px 14px auto 14px; }
  .menu-toggle { display: flex; }

  .section { padding: 60px 0; }
  .section-head { margin-bottom: 36px; }
  .hero-text { padding: 32px 26px 38px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .feature-list { grid-template-columns: 1fr 1fr; gap: 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: auto; }
  .cta-inner { padding: 48px 26px; }
  .cta-inner::before, .cta-inner::after { display: none; }
  .popup-modal { padding: 34px 24px; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1; }
  .insta-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .step { padding: 30px 26px; }
  .step-num { font-size: 2.8rem; }
}

/* Phones — single column catalog */
@media (max-width: 600px) {
  .product-grid { grid-template-columns: 1fr; gap: 16px; max-width: 420px; margin: 0 auto; }
  .product-media { aspect-ratio: 4/3; }
  .product-name { font-size: 1.05rem; }
  .product-desc { font-size: 0.88rem; }
  .btn-order { padding: 13px; font-size: 0.9rem; }
}

/* Small phones */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-photo { aspect-ratio: 4/3; }
  .hero-title { font-size: 1.75rem; }
  .product-media { aspect-ratio: 1/1; }
  .trust-inner { grid-template-columns: 1fr; }
  .trust-item { padding: 18px 22px; }
  .feature-list { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .insta-handle { width: 100%; justify-content: center; }
  .faq-q { padding: 17px 18px; font-size: 0.94rem; gap: 12px; }
  .faq-a-inner { padding: 0 18px 20px; }
  .review { padding: 26px 24px; }
  .reviews-grid { max-width: 100%; }
}
