/* =============================================
   MARISHAIR Beauty World — styles
   Mobile-first. Tokens live in variables.css,
   fonts in fonts.css (all local, no CDN).
   ============================================= */

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--sans);
  color: var(--ink-soft);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ================ PAGE VIEWS ================
   One [data-view] section shown at a time (js/main.js toggles the
   native `hidden` attribute on nav clicks) — content stays in the
   page source either way, so nothing is lost to search/AI crawlers. */
[data-view][hidden] { display: none !important; }
[data-view].view-active { animation: viewIn 0.45s ease both; }
@keyframes viewIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  [data-view].view-active { animation: none; }
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--pink-deep); }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--pink); outline-offset: 2px; }

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

/* ================ TYPOGRAPHY ================ */
h1, h2, h3 { font-family: var(--serif); line-height: 1.12; letter-spacing: -0.01em; color: var(--ink); }
h1 { font-size: clamp(2.5rem, 5.4vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.5rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.75rem); font-weight: 500; }
h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.16em; font-family: var(--sans); font-weight: 700; color: var(--ink); }
p { color: var(--ink-soft); }

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-weight: 700;
  color: var(--pink-deep);
  margin-bottom: 12px;
  padding: 6px 14px;
  background: var(--pink-tint);
  border-radius: var(--radius-pill);
}

/* ================ BUTTONS ================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .25s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn--lg { padding: 16px 36px; font-size: 1rem; }
.btn--sm { padding: 10px 18px; font-size: 0.85rem; }
.btn--xs { padding: 6px 12px; font-size: 0.78rem; }
.btn--block { width: 100%; }

/* Primary — black */
.btn--dark { background: var(--black); color: var(--white); }
.btn--dark:hover { background: var(--ink-soft); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--dark:disabled { opacity: .45; cursor: not-allowed; transform: none; box-shadow: none; }

/* Secondary — pink */
.btn--pink {
  background: linear-gradient(120deg, var(--pink) 0%, var(--pink-deep) 100%);
  color: var(--white);
  box-shadow: var(--shadow-pink);
}
.btn--pink:hover { background: linear-gradient(120deg, var(--pink-deep) 0%, var(--pink) 100%); color: var(--white); transform: translateY(-2px); }
.btn--pink:disabled { opacity: .45; cursor: not-allowed; transform: none; box-shadow: none; }

/* Outline — white (for pink hero) */
.btn--outline-white {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn--outline-white:hover { background: var(--white); color: var(--pink-deep); }

/* Ghost — neutral outline */
.btn--ghost {
  background: var(--white);
  border-color: var(--line-strong);
  color: var(--ink);
}
.btn--ghost:hover { border-color: var(--ink); color: var(--ink); }

/* WhatsApp accent */
.btn--wa {
  background: #eafff1;
  border-color: #25d366;
  color: #128c4b;
}
.btn--wa:hover { background: #25d366; color: var(--white); }

.honeypot { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ================ ANNOUNCEMENT BAR ================ */
.announce {
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  padding: 10px 0;
  font-size: 0.82rem;
  font-weight: 500;
}
.announce__track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 28s linear infinite;
  padding-left: 60px;
}
.announce:hover .announce__track { animation-play-state: paused; }
.announce__track span { display: inline-flex; align-items: center; gap: 6px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ================ NAV ================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: all .3s ease;
  padding: 14px 0;
}
.nav.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); padding: 10px 0; }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}
.nav__brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-mark {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--black);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-pink);
}
.brand-mark svg { fill: currentColor; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.brand-text em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--pink-deep);
}

.nav__links { display: flex; gap: 26px; }
.nav__links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--pink);
  transition: width .25s ease;
}
.nav__links a:hover { color: var(--pink-deep); }
.nav__links a:hover::after { width: 100%; }
.nav__links a.is-active { color: var(--pink-deep); }
.nav__links a.is-active::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 10px; }
.nav__cta { padding: 10px 18px; font-size: 0.85rem; }
.nav__cta svg { fill: currentColor; }

/* Cart button */
.cart-btn {
  position: relative;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  background: var(--white);
  display: grid;
  place-items: center;
  transition: all .2s ease;
}
.cart-btn:hover { border-color: var(--pink); color: var(--pink-deep); }
.cart-btn svg { stroke: currentColor; }
.cart-btn__count {
  position: absolute;
  top: -5px; right: -5px;
  min-width: 20px; height: 20px;
  padding: 0 5px;
  border-radius: var(--radius-pill);
  background: var(--pink);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  display: none;
  place-items: center;
}
.cart-btn__count.bump { animation: bump .4s ease; }
@keyframes bump { 30% { transform: scale(1.4); } }

.nav__toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: all .25s ease; }
.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); }

/* ================ HERO ================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 60px 0 90px;
  overflow: hidden;
  background: linear-gradient(135deg, #FF1493 0%, #FF69B4 50%, #FFB6C1 100%);
  color: var(--white);
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__bg::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.25) 0%, transparent 65%);
}
.hero__bg::after {
  content: '';
  position: absolute;
  bottom: -160px; left: -120px;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,0,0,0.10) 0%, transparent 65%);
}
.hero__sparkle {
  position: absolute;
  color: rgba(255,255,255,0.9);
  animation: twinkle 3s ease-in-out infinite;
  pointer-events: none;
}
.hero__sparkle--1 { top: 18%; left: 6%; font-size: 1.6rem; }
.hero__sparkle--2 { top: 12%; right: 12%; font-size: 1.1rem; animation-delay: .7s; }
.hero__sparkle--3 { bottom: 22%; left: 14%; font-size: 1rem; animation-delay: 1.3s; }
.hero__sparkle--4 { bottom: 30%; right: 6%; font-size: 1.4rem; animation-delay: 1.9s; }
@keyframes twinkle {
  0%, 100% { opacity: .3; transform: scale(.8); }
  50% { opacity: 1; transform: scale(1.15); }
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__content { animation: rise 1s ease .1s both; }
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.55);
  color: var(--white);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}
.hero__title { color: var(--white); margin-bottom: 20px; text-shadow: 0 2px 20px rgba(0,0,0,0.12); }
.hero__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--black);
}
.hero__lede {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.94);
  max-width: 520px;
  margin-bottom: 36px;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero__trust {
  display: flex;
  gap: 36px;
  list-style: none;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255,255,255,0.35);
  flex-wrap: wrap;
}
.hero__trust li { display: flex; flex-direction: column; }
.hero__trust strong {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--white);
  font-weight: 700;
  line-height: 1;
}
.hero__trust span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.85);
  margin-top: 4px;
}

/* Hero visual — designed SVG mannequins */
.hero__visual { position: relative; animation: rise 1s ease .3s both; }
.hero__card {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  padding: 32px 24px 12px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.hero__card-title {
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: 0.14em;
  font-size: 1.1rem;
  color: var(--white);
}
.hero__card-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 10px;
}
.hero__wigs { display: flex; justify-content: center; gap: 8px; }
.hero__wig-slot { width: 46%; max-width: 200px; }
.hero__wigs svg { width: 100%; filter: drop-shadow(0 14px 24px rgba(0,0,0,0.25)); }
.hero__wig-slot img {
  width: 100%;
  aspect-ratio: 200 / 230;
  object-fit: cover;
  border-radius: var(--radius);
  filter: drop-shadow(0 14px 24px rgba(0,0,0,0.25));
}

.hero__badge {
  position: absolute;
  bottom: -20px; left: -20px;
  width: 118px; height: 118px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-md);
  display: grid;
  place-items: center;
  text-align: center;
  transform: rotate(-8deg);
  border: 3px solid var(--black);
  z-index: 2;
}
.hero__badge strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--pink-deep);
  display: block;
  line-height: 1;
  font-weight: 800;
}
.hero__badge em {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--ink);
  font-weight: 700;
  margin-top: 5px;
}

@keyframes rise { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }

/* ================ BENEFITS ================ */
.benefits { background: var(--black); color: var(--white); padding: 28px 0; }
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.benefit { display: flex; gap: 14px; align-items: center; }
.benefit > span {
  font-size: 1.6rem;
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  flex-shrink: 0;
}
.benefit strong { display: block; font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.benefit em { font-style: normal; font-size: 0.8rem; color: rgba(255,255,255,0.7); }

/* ================ SECTIONS ================
   Every section carries a colour wash (never plain white) plus two soft
   glow blobs, so each page — now shown one at a time — reads as its own
   branded space instead of a plain white card, and blends at its edges
   into whatever's next. */
.section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--pink-tint) 0%, var(--white) 35%, var(--white) 65%, var(--pink-tint) 100%);
}
.section::before {
  content: '';
  position: absolute;
  top: -12%; right: -8%;
  width: 440px; height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--pink-glow) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.section::after {
  content: '';
  position: absolute;
  bottom: -16%; left: -10%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,20,147,0.14) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.section > .container { position: relative; z-index: 1; }
.section--dark {
  background: linear-gradient(180deg, var(--white) 0%, var(--black) 14%, var(--ink) 50%, var(--black) 86%, var(--white) 100%);
  color: var(--white);
}
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark p { color: rgba(255,255,255,0.75); }
.section--dark .eyebrow { background: rgba(255,20,147,0.2); color: var(--pink-soft); }
.section--soft {
  background: linear-gradient(180deg, var(--pink-cream) 0%, var(--pink-tint) 30%, var(--pink-tint) 70%, var(--pink-cream) 100%);
}

.section__head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section__head h2 em, .about__content h2 em {
  font-style: italic;
  background: linear-gradient(120deg, var(--pink-deep), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section--dark .section__head h2 em { background: linear-gradient(120deg, var(--pink-soft), var(--pink-mid)); -webkit-background-clip: text; background-clip: text; }
.section__lede { margin-top: 16px; font-size: 1.05rem; }

/* ================ COLLECTIONS ================ */
.collections {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  grid-auto-rows: 240px;
  gap: 16px;
}
.collection {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: transform .35s ease, box-shadow .35s ease;
  isolation: isolate;
  cursor: pointer;
}
.collection::before { content: ''; position: absolute; inset: 0; z-index: -2; transition: transform .5s ease; }
.collection::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.72) 100%);
  z-index: -1;
}
.collection img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform .5s ease;
}
.collection:hover { transform: translateY(-6px); color: var(--white); box-shadow: var(--shadow-md); }
.collection:hover::before, .collection:hover img { transform: scale(1.08); }
.collection:hover .collection__arrow { opacity: 1; transform: translateX(0); }
.collection__title { font-family: var(--serif); font-size: 1.45rem; font-weight: 700; margin-bottom: 4px; }
.collection__meta { font-size: 0.83rem; color: rgba(255,255,255,0.88); }
.collection__arrow {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--white);
  color: var(--pink-deep);
  display: grid;
  place-items: center;
  font-weight: 800;
  opacity: 0;
  transform: translateX(-6px);
  transition: all .3s ease;
}
.collection__play {
  position: absolute;
  top: 20px; left: 20px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: var(--pink-deep);
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  z-index: 1;
}
.collection__play:hover { background: var(--white); transform: scale(1.08); }
/* gradient fallback when a collection has no photo yet — same palette as
   product cards (grad 1-8), picked per collection, not by position */
.collection--grad-1::before { background: linear-gradient(135deg, #4a1020 0%, #7a1830 50%, #b03050 100%); }
.collection--grad-2::before { background: linear-gradient(135deg, #0e0e12 0%, #2a1a24 60%, #5a3a44 100%); }
.collection--grad-3::before { background: linear-gradient(135deg, #6a4a20 0%, #c9a24a 60%, #f4e0a8 100%); }
.collection--grad-4::before { background: linear-gradient(135deg, #1a1010 0%, #3a2020 60%, #6a4030 100%); }
.collection--grad-5::before { background: linear-gradient(135deg, #0e0e12 0%, #2a1a24 60%, #4a2a34 100%); }
.collection--grad-6::before { background: linear-gradient(135deg, #7a5a20 0%, #d4b060 60%, #f8ecc0 100%); }
.collection--grad-7::before { background: linear-gradient(135deg, #2a1a10 0%, #4a2a1a 60%, #7a4a30 100%); }
.collection--grad-8::before { background: linear-gradient(135deg, #16161a 0%, #30202a 60%, #503040 100%); }

/* ================ PRODUCTS ================ */
.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .3s ease;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.product:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.product__media {
  position: relative;
  aspect-ratio: 1 / 1.1;
  overflow: hidden;
  background-size: cover;
  background-position: center top;
}
/* mannequin bust hint for gradient placeholders */
.product__media:not(.product__media--img)::before {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 68%; height: 78%;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(242,200,168,0.85) 0%, rgba(242,200,168,0.15) 20%, transparent 24%),
    radial-gradient(ellipse at 50% 62%, rgba(0,0,0,0.32) 0%, transparent 55%);
  border-radius: 50% 50% 30% 30% / 40% 40% 30% 30%;
  filter: blur(1px);
}
.product__media--1 { background-image: linear-gradient(135deg, #4a1020 0%, #7a1830 50%, #b03050 100%); }
.product__media--2 { background-image: linear-gradient(135deg, #0e0e12 0%, #2a1a24 60%, #5a3a44 100%); }
.product__media--3 { background-image: linear-gradient(135deg, #6a4a20 0%, #c9a24a 60%, #f4e0a8 100%); }
.product__media--4 { background-image: linear-gradient(135deg, #1a1010 0%, #3a2020 60%, #6a4030 100%); }
.product__media--5 { background-image: linear-gradient(135deg, #0e0e12 0%, #2a1a24 60%, #4a2a34 100%); }
.product__media--6 { background-image: linear-gradient(135deg, #7a5a20 0%, #d4b060 60%, #f8ecc0 100%); }
.product__media--7 { background-image: linear-gradient(135deg, #2a1a10 0%, #4a2a1a 60%, #7a4a30 100%); }
.product__media--8 { background-image: linear-gradient(135deg, #16161a 0%, #30202a 60%, #503040 100%); }

.product__tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--white);
  color: var(--ink);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  z-index: 2;
}
.product__tag--sale { background: var(--pink); color: var(--white); }
.product__tag--hot { background: var(--black); color: var(--pink-soft); }

.product__heart {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.88);
  color: var(--ink);
  font-size: 1.05rem;
  transition: all .2s ease;
  z-index: 2;
  line-height: 1;
}
.product__heart:hover { background: var(--pink); color: var(--white); transform: scale(1.1); }
.product__heart[data-active="true"] { background: var(--pink); color: var(--white); }

.product__body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.product__body h3 { font-size: 1.05rem; margin-bottom: 4px; font-weight: 600; }
.product__meta { font-size: 0.82rem; color: var(--ink-mid); margin-bottom: 8px; }
.product__rating { font-size: 0.82rem; color: var(--ink-mid); margin-bottom: 8px; }
.product__rating span { color: var(--pink); letter-spacing: 2px; }
.product__price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ink);
  margin: auto 0 14px;
}
.product__price .was {
  font-weight: 500;
  color: var(--ink-mid);
  text-decoration: line-through;
  margin-right: 8px;
  font-size: 0.92rem;
}
.product__actions { display: grid; grid-template-columns: 1.4fr 1fr; gap: 8px; }
.product__actions--single { grid-template-columns: 1fr; }

.shop__cta { text-align: center; margin-top: 56px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ================ ABOUT + PACKAGING ILLUSTRATION ================ */
.about {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__content h2 { margin: 12px 0 24px; }
.about__content p { margin-bottom: 16px; font-size: 1.02rem; }
.about__content strong { color: var(--ink); font-weight: 700; }
.about__points {
  list-style: none;
  margin: 32px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}
.about__points li { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; color: var(--ink); }
.about__points span {
  display: grid; place-items: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}

.about__media {
  position: relative;
  display: grid;
  place-items: center;
  padding: 20px 0;
}
.packaging {
  position: relative;
  width: 82%;
  max-width: 380px;
  aspect-ratio: 5 / 6;
  filter: drop-shadow(0 30px 50px rgba(255,20,147,0.28)) drop-shadow(0 8px 20px rgba(17,17,20,0.12));
}
.packaging__bag {
  position: relative;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #ff2a9d 0%, var(--pink) 45%, var(--pink-deep) 100%);
  border-radius: 6px 6px 14px 14px;
  overflow: hidden;
}
.packaging__bag::before {
  content: '';
  position: absolute;
  top: 0; left: 8px; right: 8px; height: 12px;
  background: rgba(0,0,0,0.12);
  border-radius: 0 0 12px 12px;
}
.packaging__bag::after {
  content: '';
  position: absolute;
  top: 12px; left: 0;
  width: 30%; height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0.28), transparent);
  pointer-events: none;
}
.packaging__handle {
  position: absolute;
  top: -30px; left: 50%;
  transform: translateX(-50%);
  width: 62%; height: 68px;
  border: 4px solid var(--black);
  border-bottom: none;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  z-index: 3;
}
.packaging__front {
  position: absolute;
  inset: 14% 8% 8% 8%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--black);
  z-index: 2;
}
.packaging__logo {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: var(--pink-deep);
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}
.packaging__logo svg { fill: currentColor; }
.packaging__name { font-weight: 800; font-size: clamp(1rem, 2vw, 1.35rem); letter-spacing: 0.12em; }
.packaging__sub { font-family: var(--serif); font-style: italic; font-size: clamp(.85rem, 1.6vw, 1rem); margin-bottom: 6px; }
.packaging__tag { font-family: var(--serif); font-style: italic; font-size: clamp(.62rem, 1.2vw, .76rem); color: rgba(0,0,0,0.72); margin-bottom: 14px; }
.packaging__line { width: 40%; height: 1px; background: rgba(0,0,0,0.35); margin-bottom: 14px; }
.packaging__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: clamp(.6rem, 1.1vw, .72rem);
  font-weight: 600;
  color: rgba(0,0,0,0.72);
}
.packaging__sparkle { position: absolute; color: var(--pink); font-size: 1.6rem; animation: twinkle 3s ease-in-out infinite; }
.packaging__sparkle--1 { top: 4%; right: -6%; }
.packaging__sparkle--2 { bottom: 8%; left: -8%; animation-delay: 1.2s; font-size: 1.2rem; }

.about__badge {
  position: absolute;
  top: 16px; right: 4px;
  width: 104px; height: 104px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 1.1rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  line-height: 1.15;
  font-weight: 700;
  z-index: 3;
  transform: rotate(10deg);
}

/* ================ STEPS ================ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 40px; left: 16%; right: 16%;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(255,20,147,0.4) 0 8px, transparent 8px 18px);
}
.step { text-align: center; padding: 0 12px; position: relative; z-index: 1; }
.step__num {
  display: inline-grid;
  place-items: center;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-deep) 100%);
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 22px;
  box-shadow: 0 12px 30px rgba(255,20,147,0.4);
}
.step h3 { color: var(--white); margin-bottom: 12px; }
.step p { color: rgba(255,255,255,0.72); max-width: 280px; margin: 0 auto; }

/* ================ REVIEWS ================ */
.stars { display: flex; flex-direction: column; align-items: center; gap: 6px; margin-top: 12px; }
.stars span { color: var(--pink); font-size: 1.4rem; letter-spacing: 4px; }
.stars em { font-style: normal; font-size: 0.85rem; color: var(--ink-mid); font-weight: 500; }

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px 28px;
  border: 1px solid var(--line);
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial::before {
  content: '"';
  position: absolute;
  top: -5px; left: 18px;
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--pink);
  line-height: 1;
  opacity: 0.35;
}
.testimonial__stars { color: var(--pink); letter-spacing: 3px; margin-bottom: 10px; font-size: .9rem; }
.testimonial p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 20px;
}
.testimonial footer { border-top: 1px solid var(--line); padding-top: 14px; }
.testimonial strong { display: block; font-weight: 700; color: var(--ink); margin-bottom: 2px; font-size: 0.95rem; }
.testimonial footer span { font-size: 0.8rem; color: var(--ink-mid); }

/* ================ SOCIAL TILES ================ */
.social-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 180px;
  gap: 14px;
}
.tile {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  transition: transform .3s ease, box-shadow .3s ease;
  isolation: isolate;
}
.tile::before { content: ''; position: absolute; inset: 0; z-index: -1; transition: transform .5s ease; }
.tile::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,0.55) 100%);
  z-index: -1;
}
.tile:hover { transform: translateY(-4px); color: var(--white); box-shadow: var(--shadow-md); }
.tile:hover::before { transform: scale(1.1); }
.tile__icon { font-size: 1.8rem; margin-bottom: auto; align-self: flex-start; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)); }
.tile__label { font-weight: 700; font-size: 1rem; }
.tile__meta { font-size: 0.8rem; color: rgba(255,255,255,0.85); margin-top: 2px; }

.tile--1 { grid-column: span 2; grid-row: span 2; }
.tile--2, .tile--3, .tile--4, .tile--5, .tile--6 { grid-column: span 2; }
.tile--1::before { background: linear-gradient(135deg, #ff1493 0%, #d10077 100%); }
.tile--2::before { background: linear-gradient(135deg, #0e0e12 0%, #4a1a30 100%); }
.tile--3::before { background: linear-gradient(135deg, #25d366 0%, #128c7e 100%); }
.tile--4::before { background: linear-gradient(135deg, #ffb6c1 0%, #ff1493 100%); }
.tile--5::before { background: linear-gradient(135deg, #2a1a2a 0%, #ff1493 100%); }

/* ================ FAQ ================ */
.faq {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.faq__intro h2 { margin: 12px 0 20px; }
.faq__intro p { font-size: 1.02rem; margin-bottom: 24px; }
.faq__intro a { color: var(--pink-deep); font-weight: 600; border-bottom: 1px solid var(--pink); }

.faq__list { display: grid; gap: 12px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: all .25s ease;
}
.faq-item[open] { box-shadow: var(--shadow-sm); border-color: var(--pink); }
.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--pink);
  line-height: 1;
  transition: transform .25s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 24px 20px; font-size: 0.95rem; }

/* ================ CONTACT ================ */
.contact {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: start;
}
.contact__intro h2 { margin: 12px 0 20px; }
.contact__intro > p { margin-bottom: 32px; font-size: 1.02rem; }

.contact__list { list-style: none; display: grid; gap: 16px; }
.contact__list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--pink-cream);
  border: 1px solid var(--line);
}
.contact__list li > span {
  font-size: 1.3rem;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--white);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.contact__list strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-mid);
  margin-bottom: 6px;
  font-weight: 700;
}
.contact__list a { color: var(--ink); font-weight: 600; }
.contact__list a:hover { color: var(--pink-deep); }
.contact__list small { color: var(--ink-mid); font-size: 0.85rem; font-weight: 400; }

.contact__form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 20px;
}
.contact__form h3 { font-size: 1.5rem; }

.field { display: grid; gap: 6px; }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.field input, .field select, .field textarea {
  font-family: var(--sans);
  font-size: 0.98rem;
  color: var(--ink);
  padding: 14px 16px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--pink-cream);
  transition: all .2s ease;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--pink);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255,20,147,0.12);
}
.field input.error, .field select.error, .field textarea.error {
  border-color: #d13030;
  background: #fff5f5;
}
.field textarea { resize: vertical; min-height: 100px; }

.form-note { font-size: 0.85rem; text-align: center; color: var(--ink-mid); min-height: 20px; }
.form-note.error { color: #b03030; }
.form-note.success { color: var(--pink-deep); font-weight: 600; }

/* ================ STAR RATING PICKER ================ */
.star-picker { display: flex; gap: 4px; }
.star-picker__star {
  font-size: 1.8rem;
  line-height: 1;
  color: var(--line-strong);
  transition: color .15s ease, transform .15s ease;
}
.star-picker__star:hover,
.star-picker__star:focus-visible { transform: scale(1.1); }
.star-picker__star.is-on { color: var(--pink); }

/* ================ NEWSLETTER ================ */
.newsletter {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-deep) 100%);
  color: var(--white);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.newsletter::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -150px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.newsletter__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.newsletter h2 { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 8px; }
.newsletter p { color: rgba(255,255,255,0.88); }
.newsletter small { display: block; margin-top: 8px; color: rgba(255,255,255,0.65); font-size: .78rem; }
.newsletter__form {
  display: flex;
  gap: 10px;
  background: var(--white);
  padding: 8px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
}
.newsletter__form input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 18px;
  font-family: var(--sans);
  font-size: 0.95rem;
  background: transparent;
  color: var(--ink);
  min-width: 0;
}

/* ================ FOOTER ================ */
.footer {
  background: linear-gradient(180deg, var(--white) 0%, var(--black) 10%, var(--ink) 60%, var(--black) 100%);
  color: rgba(255,255,255,0.72);
  padding: 80px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: 60px;
  padding-bottom: 40px;
}
.footer__brand-head { display: flex; gap: 14px; align-items: center; margin-bottom: 18px; }
.footer__brand-head strong { display: block; font-weight: 800; font-size: 1.05rem; color: var(--white); letter-spacing: 0.06em; }
.footer__brand-head em { font-family: var(--serif); font-style: italic; color: var(--pink-soft); font-size: 0.9rem; }
.footer__tagline {
  font-family: var(--serif);
  font-style: italic;
  color: var(--pink-soft);
  font-size: 1rem;
  margin-bottom: 20px;
  max-width: 280px;
}
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  transition: all .25s ease;
}
.footer__social a:hover { background: var(--pink); color: var(--white); transform: translateY(-2px); }

.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer__cols h4 { color: var(--pink-soft); font-size: 0.78rem; letter-spacing: 0.18em; margin-bottom: 18px; }
.footer__cols a, .footer__cols p {
  display: block;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  margin-bottom: 10px;
  line-height: 1.7;
}
.footer__cols a:hover { color: var(--pink-soft); }

.footer__payments {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__payments > span { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.16em; color: rgba(255,255,255,0.55); }
.pay-icons { display: flex; gap: 8px; flex-wrap: wrap; }
.pay-icons span {
  padding: 8px 14px;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--white);
}

.footer__base { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; }
.footer__base-inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  align-items: center;
}
.footer__base-inner a { color: rgba(255,255,255,0.5); }
.footer__base-inner a:hover { color: var(--pink-soft); }
.footer__legal { display: flex; gap: 16px; flex-wrap: wrap; }

/* ================ CART DRAWER ================ */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(17,17,20,0.5);
  backdrop-filter: blur(2px);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.cart-overlay.show { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(430px, 100vw);
  background: var(--white);
  z-index: 201;
  transform: translateX(105%);
  transition: transform .35s cubic-bezier(.22,.9,.35,1);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}
.cart-drawer__head h3 { font-size: 1.3rem; }
.cart-drawer__close {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--pink-tint);
  color: var(--ink);
  font-size: 1rem;
}
.cart-drawer__close:hover { background: var(--pink); color: var(--white); }

.cart-drawer__body { flex: 1; overflow-y: auto; padding: 16px 24px; }

.cart__empty {
  text-align: center;
  padding: 60px 0;
  display: grid;
  gap: 12px;
  justify-items: center;
}
.cart__empty span { font-size: 2.6rem; }

.cart__item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.cart__thumb {
  width: 64px; height: 72px;
  border-radius: var(--radius-sm);
  background-size: cover;
  background-position: center top;
}
.cart__info { display: grid; gap: 3px; }
.cart__info strong { font-size: 0.88rem; color: var(--ink); line-height: 1.3; }
.cart__info > span { font-size: 0.82rem; color: var(--ink-mid); }
.cart__qty { display: flex; align-items: center; gap: 8px; margin-top: 4px; }
.cart__qty button {
  border: 1.5px solid var(--line-strong);
  background: var(--white);
  border-radius: 6px;
  width: 26px; height: 26px;
  font-weight: 700;
  line-height: 1;
}
.cart__qty button:hover { border-color: var(--pink); color: var(--pink-deep); }
.cart__qty em { font-style: normal; font-weight: 700; min-width: 18px; text-align: center; color: var(--ink); }
.cart__qty .js-remove {
  width: auto;
  border: none;
  font-size: 0.75rem;
  color: var(--ink-mid);
  text-decoration: underline;
  font-weight: 500;
  margin-left: 4px;
}
.cart__qty .js-remove:hover { color: #b03030; }
.cart__line-total { font-weight: 800; color: var(--ink); font-size: 0.92rem; }

.cart-drawer__foot {
  padding: 20px 24px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 12px;
  background: var(--pink-cream);
}
.cart__subtotal {
  display: flex;
  justify-content: space-between;
  font-weight: 800;
  color: var(--ink);
  font-size: 1.1rem;
}
.cart__delivery-note {
  font-size: 0.82rem;
  color: var(--pink-deep);
  font-weight: 600;
  text-align: center;
}

/* ================ CHECKOUT MODAL ================ */
.checkout {
  position: fixed; inset: 0;
  background: rgba(17,17,20,0.55);
  backdrop-filter: blur(3px);
  z-index: 210;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  overflow-y: auto;
}
.checkout.show { opacity: 1; pointer-events: auto; }
.checkout__box {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 720px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  padding: 36px;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.checkout__close {
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--pink-tint);
}
.checkout__close:hover { background: var(--pink); color: var(--white); }
.checkout__box h3 { font-size: 1.6rem; margin-bottom: 6px; }
.checkout__box > p { margin-bottom: 20px; font-size: .92rem; }

.co__summary {
  background: var(--pink-cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 24px;
  display: grid;
  gap: 8px;
}
.co__row { display: flex; justify-content: space-between; gap: 16px; font-size: 0.9rem; color: var(--ink-soft); }
.co__row--total {
  border-top: 1px solid var(--line-strong);
  padding-top: 10px;
  font-weight: 800;
  color: var(--ink);
  font-size: 1.05rem;
}

.checkout__form { display: grid; gap: 18px; }

.pay-options { display: grid; gap: 10px; }
.pay-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all .2s ease;
  background: var(--white);
}
.pay-option:hover { border-color: var(--pink); }
.pay-option input { margin-top: 4px; accent-color: var(--pink); }
.pay-option strong { display: block; color: var(--ink); font-size: 0.95rem; }
.pay-option small { color: var(--ink-mid); font-size: 0.8rem; line-height: 1.4; display: block; }
.pay-option.disabled { opacity: .55; cursor: not-allowed; background: var(--pink-cream); }
.pay-option .soon {
  display: inline-block;
  background: var(--black);
  color: var(--pink-soft);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  margin-left: 6px;
  vertical-align: middle;
}

.order-success { text-align: center; padding: 30px 10px; display: grid; gap: 14px; justify-items: center; }
.order-success[hidden] { display: none !important; }
.order-success__icon {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--pink-deep));
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 2.2rem;
  box-shadow: var(--shadow-pink);
}
.order-success h3 { font-size: 1.5rem; }
.order-success p { max-width: 420px; }
.order-success strong { color: var(--pink-deep); }

/* ================ ADMIN PANEL ================ */
.admin {
  position: fixed; inset: 0;
  background: rgba(17,17,20,0.6);
  backdrop-filter: blur(3px);
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.admin.show { opacity: 1; pointer-events: auto; }
.admin__box {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 860px;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.admin__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 28px;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 2;
}
.admin__head h3 { font-size: 1.3rem; }
.admin__close {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--pink-tint);
}
.admin__close:hover { background: var(--pink); color: var(--white); }

.admin__login {
  padding: 40px 28px;
  display: grid;
  gap: 14px;
  max-width: 380px;
  margin: 0 auto;
  text-align: center;
}
.admin__login[hidden] { display: none !important; }
.admin__login input {
  padding: 13px 16px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm);
  font-size: 1rem;
}
.admin__login input:focus { outline: none; border-color: var(--pink); }
.admin__err { color: #b03030; font-size: 0.85rem; font-weight: 600; }

.admin__body { padding: 20px 28px 32px; }
.admin__note {
  background: var(--pink-tint);
  border: 1px solid var(--pink-soft);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.85rem;
  margin-bottom: 16px;
}
.admin__note code { background: var(--white); padding: 1px 6px; border-radius: 4px; font-size: .8rem; }
.admin__actions { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }

.admin__list { display: grid; gap: 14px; }
.admin__row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  background: var(--pink-cream);
}
.admin__thumb {
  width: 96px; height: 110px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #2a1a24, #5a3a44);
  background-size: cover;
  background-position: center top;
  display: grid;
  place-items: center;
}
.admin__thumb span { color: rgba(255,255,255,0.7); font-size: 0.68rem; }
.admin__fields { display: grid; gap: 8px; }
.admin__fields label {
  display: grid;
  gap: 3px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-mid);
}
.admin__fields input, .admin__fields select {
  padding: 8px 10px;
  border: 1.5px solid var(--line-strong);
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 500;
  background: var(--white);
}
.admin__fields input:focus, .admin__fields select:focus { outline: none; border-color: var(--pink); }
.admin__row-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.admin__row-actions { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }

/* ================ TOAST ================ */
.toast {
  position: fixed;
  bottom: 100px; left: 50%;
  transform: translate(-50%, 20px);
  background: var(--black);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
  z-index: 250;
  opacity: 0;
  pointer-events: none;
  transition: all .3s ease;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ================ FLOATING ================ */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  padding: 12px 20px 12px 14px;
  border-radius: var(--radius-pill);
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 30px rgba(37,211,102,0.45);
  z-index: 99;
  font-weight: 700;
  font-size: 0.92rem;
  transition: transform .25s ease;
}
.wa-float:hover { transform: scale(1.05); color: #fff; }
.wa-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: var(--radius-pill);
  background: rgba(37,211,102,0.35);
  z-index: -1;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.12); opacity: 0; }
}

.to-top {
  position: fixed;
  bottom: 96px; right: 30px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--black);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  z-index: 98;
  opacity: 0;
  transform: translateY(10px);
  transition: all .25s ease;
  pointer-events: none;
}
.to-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.to-top:hover { background: var(--pink-deep); }

/* ================ REVEAL ================ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ================ RESPONSIVE ================ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; gap: 48px; }
  .hero__visual { max-width: 480px; margin: 0 auto; width: 100%; }
  .hero__cta, .hero__trust { justify-content: center; }
  .hero__lede { margin-left: auto; margin-right: auto; }
  .hero__badge { left: -10px; bottom: -14px; width: 100px; height: 100px; }

  .products { grid-template-columns: repeat(3, 1fr); }
  .benefits__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  .social-grid { grid-template-columns: repeat(4, 1fr); }
  .tile--1 { grid-column: span 2; grid-row: span 2; }

  .section { padding: 80px 0; }
}

@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__links.open {
    display: flex;
    position: absolute;
    top: calc(100% + 10px); left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px 20px;
    border-radius: var(--radius);
    gap: 0;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--line);
    z-index: 50;
  }
  .nav__links.open a { padding: 13px 8px; border-bottom: 1px solid var(--line); }
  .nav__links.open a:last-child { border-bottom: none; }

  .products { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .about, .faq, .contact { grid-template-columns: 1fr; gap: 48px; }
  .about__media { max-width: 380px; margin: 0 auto; }
  .about__points { grid-template-columns: 1fr; }

  .steps { grid-template-columns: 1fr; gap: 40px; }
  .steps::before { display: none; }

  .newsletter__inner { grid-template-columns: 1fr; text-align: center; }

  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
  .footer__payments { flex-direction: column; align-items: flex-start; }

  .collections { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }

  .social-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .tile--1 { grid-column: span 2; grid-row: span 2; }
  .tile--2, .tile--3, .tile--4, .tile--5, .tile--6 { grid-column: span 1; grid-row: auto; }

  .admin__row { grid-template-columns: 1fr; }
  .admin__row-grid { grid-template-columns: repeat(2, 1fr); }
  .checkout__box { padding: 26px 20px; }

  .section { padding: 70px 0; }
}

@media (max-width: 520px) {
  h1 { font-size: 2.3rem; }
  .btn--lg { padding: 14px 24px; font-size: 0.92rem; }
  .hero { min-height: auto; }
  .hero__trust { gap: 20px; }
  .hero__trust strong { font-size: 1.3rem; }
  .products { grid-template-columns: 1fr; }
  .product__actions { grid-template-columns: 1fr; }
  .contact__form { padding: 24px; }
  .row { grid-template-columns: 1fr; }
  .wa-float span { display: none; }
  .wa-float { padding: 14px; border-radius: 50%; }
  .announce { font-size: 0.72rem; }
  .to-top { right: 20px; bottom: 84px; }
  .newsletter__form { flex-direction: column; padding: 14px; border-radius: var(--radius); }
  .newsletter__form input { text-align: center; }
  .section { padding: 60px 0; }
}

/* ================ PRODUCT MEDIA EXTRAS ================ */
.product__media--img { cursor: zoom-in; }
.product__media--img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.product__stock {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--pink);
  margin: 4px 0 10px;
}
.product__stock--out { color: var(--ink-mid); }
.product__count {
  position: absolute;
  bottom: 12px; left: 12px;
  background: rgba(0,0,0,0.55);
  color: var(--white);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  z-index: 2;
  backdrop-filter: blur(3px);
}
.product__play {
  position: absolute;
  bottom: 10px; right: 10px;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255,20,147,0.92);
  color: var(--white);
  font-size: 0.95rem;
  z-index: 2;
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
  transition: transform .2s ease, background .2s ease;
  padding-left: 3px;
}
.product__play:hover { transform: scale(1.12); background: var(--pink-deep); }

/* ================ LIGHTBOX (photos + video) ================ */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(10,10,12,0.92);
  z-index: 400;
  display: grid;
  grid-template-columns: 64px 1fr 64px;
  grid-template-rows: 1fr auto;
  align-items: center;
  justify-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.lightbox.show { opacity: 1; pointer-events: auto; }
.lightbox__stage {
  grid-column: 2;
  grid-row: 1;
  max-width: 100%;
  max-height: 82vh;
  display: grid;
  place-items: center;
}
.lightbox__stage img,
.lightbox__stage video {
  max-width: 100%;
  max-height: 82vh;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.lightbox__close {
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-size: 1.1rem;
  z-index: 2;
}
.lightbox__close:hover { background: var(--pink); }
.lightbox__nav {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1;
  grid-row: 1;
}
.lightbox__nav:hover { background: var(--pink); }
.lightbox__nav--prev { grid-column: 1; }
.lightbox__nav--next { grid-column: 3; }
.lightbox__caption {
  grid-column: 1 / -1;
  grid-row: 2;
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  padding-top: 14px;
  text-align: center;
}

/* ================ SOCIAL SHOWCASE TILE ================ */
.tile__layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.1s ease;
  z-index: -1;
}
.tile__layer.show { opacity: 1; }
.tile--live::after { background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.72) 100%); }
.tile__viewpost {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--pink-soft);
  margin-top: 4px;
}

/* ================ ADMIN EXTRAS ================ */
.admin__head-actions { display: flex; gap: 10px; align-items: center; }
.admin__subhead { margin: 32px 0 10px; font-size: 1.15rem; }
.admin__subhead small { font-family: var(--sans); font-size: 0.78rem; color: var(--ink-mid); font-weight: 500; }
.admin__status { font-size: 0.78rem; font-weight: 600; color: var(--pink-deep); }
.admin__row.dirty { border-color: var(--pink); box-shadow: 0 0 0 3px rgba(255,20,147,0.12); }
.admin__vid-flag { position: absolute; bottom: 4px; right: 6px; font-style: normal; }

.admin__gallery {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.admin__g-thumb {
  position: relative;
  width: 72px; height: 84px;
  border-radius: var(--radius-sm);
  background-size: cover;
  background-position: center top;
  background-color: #2a1a24;
  flex-shrink: 0;
}
.admin__g-thumb em {
  position: absolute;
  bottom: 3px; left: 3px;
  background: var(--pink);
  color: var(--white);
  font-style: normal;
  font-size: 0.56rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 1px 6px;
  border-radius: var(--radius-pill);
}
.admin__g-thumb button {
  position: absolute;
  top: -6px; right: -6px;
  width: 20px; height: 20px;
  border-radius: 50%;
  border: none;
  background: var(--black);
  color: var(--white);
  font-size: 0.62rem;
  line-height: 1;
}
.admin__g-thumb button:hover { background: #b03030; }
.admin__g-add {
  width: 72px; height: 84px;
  border: 2px dashed var(--line-strong);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  color: var(--ink-mid);
  cursor: pointer;
  transition: all .2s ease;
}
.admin__g-add:hover { border-color: var(--pink); color: var(--pink-deep); }

/* ================ ADMIN: Collections / Services / Hero ================ */
.admin__cms-list { display: grid; gap: 14px; margin-bottom: 24px; }
.admin__cms-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.admin__cms-photo { flex-shrink: 0; }
.admin__cms-fields { flex: 1; display: grid; gap: 10px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.admin__cms-fields label { display: grid; gap: 4px; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink-mid); }
.admin__cms-fields input {
  padding: 9px 10px;
  border: 1.5px solid var(--line-strong);
  border-radius: 6px;
  font-size: 0.85rem;
  font-family: var(--sans);
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  color: var(--ink);
}
.admin__cms-fields input:focus { outline: none; border-color: var(--pink); }
.admin__cms-row--hero { align-items: center; }

.admin__feed { display: grid; gap: 4px; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-mid); margin-bottom: 12px; }
.admin__feed input {
  padding: 9px 10px;
  border: 1.5px solid var(--line-strong);
  border-radius: 6px;
  font-size: 0.85rem;
  background: var(--white);
}
.admin__feed input:focus { outline: none; border-color: var(--pink); }
.admin__soc-list { display: grid; gap: 8px; margin-bottom: 12px; }
.admin__soc-row {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 10px;
  align-items: center;
}
.admin__soc-row .admin__g-thumb { width: 52px; height: 52px; }
.admin__soc-row input {
  padding: 9px 10px;
  border: 1.5px solid var(--line-strong);
  border-radius: 6px;
  font-size: 0.85rem;
  background: var(--white);
}
.admin__soc-row input:focus { outline: none; border-color: var(--pink); }

.admin-quick {
  position: fixed;
  bottom: 24px; left: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: var(--radius-pill);
  border: none;
  background: var(--black);
  color: var(--white);
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: var(--shadow-md);
  z-index: 97;
  transition: all .25s ease;
}
.admin-quick:hover { background: var(--pink-deep); transform: translateY(-2px); }

@media (max-width: 520px) {
  .lightbox { grid-template-columns: 40px 1fr 40px; padding: 12px; }
  .lightbox__nav { width: 38px; height: 38px; font-size: 1.3rem; }
  .admin-quick span { display: none; }
  .admin-quick { padding: 12px; border-radius: 50%; }
  .admin__soc-row { grid-template-columns: 44px 1fr auto; }
}

/* ================ LEGAL PAGES ================ */
.legal-page { background: var(--pink-cream); }
.legal-page .nav { position: static; }
.legal {
  max-width: 760px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 48px clamp(24px, 5vw, 56px);
  margin: 40px auto 60px;
}
.legal h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 6px; }
.legal__updated { font-size: 0.82rem; color: var(--ink-mid); margin-bottom: 28px; }
.legal h2 { font-size: 1.2rem; margin: 30px 0 10px; font-family: var(--sans); font-weight: 700; }
.legal p, .legal li { font-size: 0.96rem; color: var(--ink-soft); margin-bottom: 10px; line-height: 1.7; }
.legal ul, .legal ol { padding-left: 22px; margin-bottom: 12px; }
.legal a { color: var(--pink-deep); font-weight: 600; }
.legal a:hover { text-decoration: underline; }
.legal__links {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

/* ================ NAIRA APPROX PRICE ================ */
.product__naira {
  display: block;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--ink-mid);
  margin-top: 2px;
}
.co__naira { font-size: 0.8rem; color: var(--ink-mid); font-weight: 500; }

/* admin currency bar */
.admin__currency {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  background: var(--pink-tint);
  border: 1px solid var(--pink-soft);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  margin-bottom: 16px;
  font-size: 0.85rem;
}
.admin__currency strong { font-size: 0.85rem; }
.admin__cur-toggle { display: flex; align-items: center; gap: 6px; font-weight: 600; cursor: pointer; }
.admin__cur-toggle input { accent-color: var(--pink); width: 16px; height: 16px; }
.admin__cur-rate { display: flex; align-items: center; gap: 6px; font-weight: 600; }
.admin__cur-rate input {
  width: 90px;
  padding: 6px 8px;
  border: 1.5px solid var(--line-strong);
  border-radius: 6px;
  font-size: 0.85rem;
}
.admin__cur-rate input:focus { outline: none; border-color: var(--pink); }

/* legal links: meet the 44px tap-target guideline on touch screens */
.footer__legal a {
  display: inline-block;
  padding: 11px 4px;
  min-height: 44px;
  line-height: 22px;
}
@media (min-width: 800px) {
  .footer__legal a { padding: 4px; min-height: 0; }
}

/* honest empty state when there are no real reviews yet */
.reviews-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 24px;
  display: grid;
  gap: 14px;
  justify-items: center;
  background: var(--white);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
}
.reviews-empty span { font-size: 2.2rem; }
.reviews-empty p { max-width: 420px; }

/* admin: reviews management (mirrors social showcase rows) */
.admin__rev-row {
  display: grid;
  grid-template-columns: 1fr 90px 90px auto;
  gap: 10px;
  align-items: start;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.admin__rev-row:last-child { border-bottom: none; }
.admin__rev-row textarea,
.admin__rev-row input {
  padding: 8px 10px;
  border: 1.5px solid var(--line-strong);
  border-radius: 6px;
  font-size: 0.85rem;
  background: var(--white);
  width: 100%;
  font-family: var(--sans);
}
.admin__rev-row textarea { min-height: 60px; resize: vertical; grid-column: 1 / -1; }
.admin__rev-row input:focus, .admin__rev-row textarea:focus { outline: none; border-color: var(--pink); }
.admin__rev-meta { display: grid; gap: 6px; }
.admin__rev-meta label { font-size: 0.66rem; font-weight: 700; text-transform: uppercase; color: var(--ink-mid); }
.admin__live-auth { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; margin-bottom: 16px; }
.admin__live-auth[hidden] { display: none !important; }
.admin__live-auth input {
  padding: 8px 10px;
  border: 1.5px solid var(--line-strong);
  border-radius: 6px;
  font-size: 0.85rem;
  min-width: 220px;
}

/* ================ CHECKOUT: card-first layout ================ */
.checkout__divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0;
  color: var(--ink-mid);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.checkout__divider::before,
.checkout__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line-strong);
}

.checkout__alt {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.checkout__alt summary {
  padding: 14px 18px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink-soft);
  list-style: none;
  background: var(--pink-cream);
}
.checkout__alt summary::-webkit-details-marker { display: none; }
.checkout__alt summary::before { content: '▸ '; color: var(--pink); }
.checkout__alt[open] summary::before { content: '▾ '; }
.checkout__alt .checkout__form { padding: 18px; gap: 16px; }

#payCardBtn { font-size: 1.05rem; padding: 18px; }
#payCardNote { margin-top: 8px; }

/* ================ SERVICES / BOOKING ================ */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 56px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .3s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card__media {
  aspect-ratio: 1 / 0.8;
  position: relative;
  overflow: hidden;
}
.service-card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.service-card__media--grad-1 { background: linear-gradient(135deg, #4a1020 0%, #7a1830 50%, #b03050 100%); }
.service-card__media--grad-2 { background: linear-gradient(135deg, #0e0e12 0%, #2a1a24 60%, #5a3a44 100%); }
.service-card__media--grad-3 { background: linear-gradient(135deg, #6a4a20 0%, #c9a24a 60%, #f4e0a8 100%); }
.service-card__media--grad-4 { background: linear-gradient(135deg, #1a1010 0%, #3a2020 60%, #6a4030 100%); }
.service-card__media--grad-5 { background: linear-gradient(135deg, #0e0e12 0%, #2a1a24 60%, #4a2a34 100%); }
.service-card__media--grad-6 { background: linear-gradient(135deg, #7a5a20 0%, #d4b060 60%, #f8ecc0 100%); }
.service-card__media--grad-7 { background: linear-gradient(135deg, #2a1a10 0%, #4a2a1a 60%, #7a4a30 100%); }
.service-card__media--grad-8 { background: linear-gradient(135deg, #16161a 0%, #30202a 60%, #503040 100%); }
.service-card__body { padding: 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.service-card__body h3 { font-size: 1.1rem; }
.service-card__body p { font-size: 0.88rem; color: var(--ink-mid); flex: 1; }
.service-card__price { font-weight: 700; color: var(--pink-soft); font-size: 0.85rem !important; }
.section--dark .service-card__price { color: var(--pink-soft); }

.booking__form-wrap {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--ink-soft);
}
.booking__form-wrap h3 { color: var(--ink); margin-bottom: 6px; }
.booking__form-wrap .contact__form { display: grid; gap: 18px; }

@media (max-width: 640px) {
  .booking__form-wrap { padding: 26px 20px; }
}
