/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:          #fdf5f9;
  --bg-2:        #f5e6f0;
  --ink:         #1a0d1e;
  --ink-soft:    #3d2047;
  --ink-mute:    #8a6b96;
  --pink:        #d63384;
  --pink-dark:   #a0226b;
  --pink-light:  #fce4f0;
  --gold:        #c9a84c;
  --glass:       rgba(255,255,255,0.55);
  --glass-2:     rgba(255,255,255,0.30);
  --line:        rgba(214,51,132,0.15);
  --sans:        'Inter', system-ui, sans-serif;
  --serif:       'Cormorant Garamond', Georgia, serif;
  --ease-out:    cubic-bezier(0.16,1,0.3,1);
  --ease-soft:   cubic-bezier(0.25,0.46,0.45,0.94);
  --ease-bounce: cubic-bezier(0.34,1.56,0.64,1);
  --radius:      16px;
  --gutter:      clamp(1.25rem, 5vw, 4rem);
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1,h2,h3,h4 { text-wrap: balance; line-height: 1.1; letter-spacing: -0.02em; font-family: var(--serif); font-weight: 600; }
::selection { background: var(--pink); color: #fff; }
:focus-visible { outline: 2px solid var(--pink); outline-offset: 3px; border-radius: 4px; }

/* skip link */
.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: .5rem 1rem; background: var(--pink); color: #fff;
  border-radius: 8px; font-weight: 500; transition: top .2s;
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   3. Background mesh
   ============================================================= */
.bg-mesh {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 15% 20%, rgba(214,51,132,.14) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 75%, rgba(160,34,107,.10) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(201,168,76,.06) 0%, transparent 50%);
  animation: meshDrift 28s ease-in-out infinite;
}
@keyframes meshDrift {
  0%,100% { transform: scale(1) rotate(0deg); }
  33%     { transform: scale(1.06) rotate(2deg); }
  66%     { transform: scale(1.03) rotate(-1.5deg); }
}

/* =============================================================
   4. Cursor
   ============================================================= */
.cursor { position: fixed; top:0; left:0; pointer-events: none; z-index:9999; display:none; opacity:0; transition: opacity .25s var(--ease-out); mix-blend-mode: difference; }
.cursor.is-ready { opacity: 1; }
@media (hover:hover) and (pointer:fine) { .cursor { display: block; } }
.cursor-dot, .cursor-ring { position: fixed; top:0; left:0; pointer-events:none; will-change:transform; }
.cursor-dot { width:5px; height:5px; margin:-2.5px; background:#fff; border-radius:50%; }
.cursor-ring { width:32px; height:32px; margin:-16px; border:1.5px solid #fff; border-radius:50%; transition: width .35s var(--ease-out), height .35s var(--ease-out), margin .35s var(--ease-out); }
.cursor.is-interactive .cursor-ring { width:52px; height:52px; margin:-26px; }
.has-cursor, .has-cursor a, .has-cursor button { cursor: none; }

/* =============================================================
   5. Buttons
   ============================================================= */
.btn-primary {
  display: inline-flex; align-items: center; gap: .4rem;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: #fff; border: none;
  padding: .85rem 2rem; border-radius: 40px;
  font-size: .9rem; font-weight: 600; letter-spacing: .02em;
  box-shadow: 0 4px 20px rgba(214,51,132,.35);
  transition: transform .45s var(--ease-soft), box-shadow .45s var(--ease-soft);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(214,51,132,.45); }
.btn-primary:active { transform: translateY(-1px); transition-duration: .12s; }
.btn-primary.full { width:100%; justify-content:center; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: .4rem;
  background: transparent; color: var(--pink);
  border: 1.5px solid var(--pink);
  padding: .82rem 1.9rem; border-radius: 40px;
  font-size: .9rem; font-weight: 600;
  transition: background .3s var(--ease-soft), color .3s;
}
.btn-ghost:hover { background: var(--pink); color: #fff; }
.btn-ghost.small { padding: .55rem 1.2rem; font-size: .8rem; }

/* =============================================================
   6. Glass card
   ============================================================= */
.glass-card {
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: var(--radius);
  /* solid fallback */
  background: rgba(255,255,255,.75);
}
@supports (backdrop-filter: blur(20px)) {
  .glass-card { background: var(--glass); }
}

/* =============================================================
   7. NAV
   ============================================================= */
.nav {
  position: fixed; top:0; inset-inline:0; z-index:100;
  display: flex; align-items: center; gap: 1.5rem;
  padding: .9rem var(--gutter);
  transition: background .4s var(--ease-out), box-shadow .4s var(--ease-out), backdrop-filter .4s;
}
.nav.is-scrolled {
  background: rgba(253,245,249,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
}
.nav-logo { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.nav-logo-img { height: 44px; width: 44px; object-fit: contain; border-radius: 50%; background: var(--pink-light); padding: 2px; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-name { font-family: var(--serif); font-size: 1rem; font-weight: 600; color: var(--ink); }
.nav-logo-pro { font-size: .6rem; font-weight: 700; letter-spacing: .12em; color: var(--pink); text-transform: uppercase; }

.nav-links { display: none; flex: 1; justify-content: center; gap: 2rem; }
@media (min-width: 960px) { .nav-links { display: flex; } }
.nav-link { font-size: .85rem; font-weight: 500; color: var(--ink-soft); position: relative; padding: .2rem 0; }
.nav-link::after { content:''; position:absolute; left:0; right:0; bottom:-2px; height:1px; background:var(--pink); transform:scaleX(0); transform-origin:right; transition:transform .4s var(--ease-soft); }
.nav-link:hover { color: var(--pink); }
.nav-link:hover::after { transform:scaleX(1); transform-origin:left; }

.nav-actions { display: flex; align-items: center; gap: .75rem; margin-left: auto; }
.nav-search-wrap { position: relative; }
.nav-search { padding: .55rem 1rem .55rem 2.2rem; border: 1.5px solid var(--line); border-radius: 30px; font-size: .82rem; background: rgba(255,255,255,.7); outline: none; width: 180px; transition: border-color .2s, width .3s var(--ease-soft); }
.nav-search:focus { border-color: var(--pink); width: 220px; }
.nav-search-icon { position:absolute; left:.7rem; top:50%; transform:translateY(-50%); font-size:.9rem; pointer-events:none; color: var(--ink-mute); }
.btn-cart { display: flex; align-items: center; gap: .35rem; background: var(--pink); color: #fff; padding: .5rem 1rem; border-radius: 30px; font-size: .85rem; font-weight: 600; transition: background .2s; }
.btn-cart:hover { background: var(--pink-dark); }
.btn-cart-count { background: rgba(255,255,255,.25); border-radius: 50%; width: 18px; height: 18px; display: grid; place-items: center; font-size: .7rem; font-weight: 700; }

.nav-burger { display: flex; flex-direction: column; gap: 5px; padding: .4rem; }
@media (min-width: 960px) { .nav-burger { display: none; } }
.nav-burger span { display: block; width: 22px; height: 1.5px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease-soft), opacity .3s; }
.nav-burger.is-open span:first-child { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.is-open span:last-child  { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: 0; z-index: 90;
  background: var(--ink); color: #fff;
  display: grid; place-items: center;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .6s var(--ease-soft);
}
.nav-mobile[aria-hidden="false"] { clip-path: inset(0); }
.nav-mobile nav { display: flex; flex-direction: column; gap: 2rem; text-align: center; }
.nav-mobile a { font-family: var(--serif); font-size: 2rem; font-weight: 600; color: #fff; transition: color .2s; }
.nav-mobile a:hover { color: var(--pink); }

/* =============================================================
   8. Cart drawer
   ============================================================= */
.cart-drawer {
  position: fixed; right:0; top:0; bottom:0; width: min(380px,100vw);
  background: #fff; z-index:200; display:flex; flex-direction:column;
  padding: 1.5rem;
  transform: translateX(100%);
  transition: transform .4s var(--ease-soft);
  box-shadow: -8px 0 40px rgba(0,0,0,.12);
}
.cart-drawer[aria-hidden="false"] { transform: translateX(0); }
.cart-overlay { position:fixed; inset:0; z-index:199; background:rgba(0,0,0,.35); opacity:0; pointer-events:none; transition:opacity .4s; }
.cart-overlay.is-open { opacity:1; pointer-events:auto; }

/* =============================================================
   8.1 Product detail modal
   ============================================================= */
.product-modal {
  border: none; border-radius: 20px; padding: 0;
  width: min(880px, 92vw); max-height: 88vh;
  background: #fff; box-shadow: 0 30px 80px rgba(46,20,35,.35);
  overflow: hidden;
}
.product-modal::backdrop { background: rgba(20,10,16,.55); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.product-modal-close {
  position: absolute; top: 1rem; right: 1rem; z-index: 2;
  width: 2.2rem; height: 2.2rem; border-radius: 50%;
  background: rgba(255,255,255,.85); border: 1px solid var(--line);
  font-size: 1rem; line-height: 1; cursor: pointer;
}
.product-modal-body { display: flex; flex-direction: column; max-height: 88vh; overflow-y: auto; }
@media (min-width: 720px) {
  .product-modal-body { flex-direction: row; }
}
.product-modal-img {
  position: relative; flex: 0 0 auto;
  width: 100%; aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--pink-light), #fff);
  font-size: 5rem; overflow: hidden;
}
@media (min-width: 720px) { .product-modal-img { width: 46%; aspect-ratio: auto; align-self: stretch; } }
.product-modal-img img { width: 100%; height: 100%; object-fit: cover; }
.product-modal-img .product-img-fallback { display: none; }
.product-modal-img.is-missing img { display: none; }
.product-modal-img.is-missing .product-img-fallback { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.product-modal-info { flex: 1; padding: 2rem; display: flex; flex-direction: column; gap: .3rem; }
.product-modal-name { font-family: var(--serif); font-size: 1.7rem; font-weight: 600; margin: .2rem 0 .5rem; }
.product-modal-price { font-family: var(--serif); font-size: 1.6rem; font-weight: 600; color: var(--pink); margin: .3rem 0 1rem; }
.product-modal-desc { color: var(--ink-soft); line-height: 1.6; margin-bottom: 1.5rem; }
.product-modal-qty {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem;
}
.product-modal-qty .qty-btn {
  width: 2.2rem; height: 2.2rem; border-radius: 50%; border: 1px solid var(--line);
  background: #fff; font-size: 1.1rem; cursor: pointer; color: var(--ink);
}
.product-modal-qty span { font-family: var(--serif); font-size: 1.15rem; min-width: 1.5rem; text-align: center; }
.product-modal-actions { display: flex; flex-direction: column; gap: .75rem; margin-top: auto; }
.cart-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:1.25rem; }
.cart-title { font-family:var(--serif); font-size:1.4rem; }
.cart-close { font-size:1.2rem; color:var(--ink-mute); transition:color .2s; }
.cart-close:hover { color:var(--pink); }
.cart-items { flex:1; overflow-y:auto; }
.cart-empty { color:var(--ink-mute); text-align:center; padding:2rem 0; font-size:.9rem; }
.cart-item { display:flex; justify-content:space-between; align-items:center; padding:.75rem 0; border-bottom:1px solid var(--line); font-size:.87rem; }
.cart-item-name { font-weight:500; margin-bottom:.15rem; }
.cart-item-price { color:var(--pink); font-weight:700; }
.cart-item-rm { color:var(--ink-mute); font-size:1rem; transition:color .2s; }
.cart-item-rm:hover { color:var(--pink); }
.cart-footer { margin-top:1.25rem; }
.cart-total-line { font-size:1rem; margin-bottom:.75rem; }
#cart-total { color:var(--pink); }
.cart-pay-methods { font-size:.78rem; color:var(--ink-mute); text-align:center; margin-top:.6rem; }
#cart-checkout-btn:disabled { opacity:.65; cursor:wait; }

/* =============================================================
   9. Hero
   ============================================================= */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  text-align: center;
  padding: calc(5rem + 72px) var(--gutter) 4rem;
  gap: 3rem;
  position: relative;
  overflow: hidden;
}
@media (min-width: 960px) {
  .hero {
    grid-template-columns: 1fr auto auto;
    text-align: left;
    justify-items: start;
  }
}
.hero-inner { max-width: 580px; }

.hero-brandlist { max-width: 220px; }
.hero-brandlist-title {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: 1rem;
}
.hero-brandlist-items {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: .5rem;
}
.hero-brandlist-items .brand-pill { height: 2.1rem; padding: .35rem .8rem; }
.hero-brandlist-items .brand-pill img { max-width: 88px; }
.hero-brandlist-items .brand-pill-text { font-size: .82rem; }

.hero-side { display: flex; flex-direction: column; align-items: center; gap: 2.25rem; }

.hero-logo-main { display: flex; align-items: center; justify-content: center; }
.hero-logo-main-img {
  width: min(320px, 30vw);
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(46,20,35,.25));
  animation: heroFloat 8s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

@media (max-width: 539px) {
  .hero-logo-main-img { width: min(220px, 60vw); }
  .hero-brandlist { max-width: 100%; text-align: center; }
  .hero-brandlist-items { justify-content: center; }
}
.hero-kicker {
  display: inline-block;
  background: var(--pink); color: #fff;
  padding: .3rem .9rem; border-radius: 20px;
  font-size: .78rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1.25rem;
  line-height: 1.05;
}
.hero-title em { color: var(--pink); font-style: italic; }
.hero-sub { font-size: 1.05rem; color: var(--ink-soft); max-width: 460px; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-badges { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 960px) { .hero-badges { align-self: center; } }
.hero-badge {
  background: rgba(255,255,255,.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: var(--radius);
  padding: 1.2rem 1.6rem;
  min-width: 150px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(214,51,132,.10);
}
.hero-badge--dark { background: var(--ink); }
.badge-num { display: block; font-family: var(--serif); font-size: 2rem; font-weight: 600; color: var(--pink); line-height: 1; }
.badge-num.gold { color: var(--gold); }
.hero-badge--dark .badge-label { color: #aaa; }
.badge-label { font-size: .75rem; color: var(--ink-mute); margin-top: .3rem; display: block; }

/* =============================================================
   10. Trust strip
   ============================================================= */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: var(--ink);
}
@media (min-width: 720px) { .trust-strip { grid-template-columns: repeat(4, 1fr); } }
.trust-item {
  display: flex; align-items: center; gap: .9rem;
  padding: 1.4rem var(--gutter);
  border-right: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.trust-item span { font-size: 1.6rem; flex-shrink: 0; }
.trust-item strong { display: block; color: #fff; font-size: .85rem; margin-bottom: .15rem; }
.trust-item p { color: #777; font-size: .75rem; margin: 0; }

/* =============================================================
   10b. Brands strip
   ============================================================= */
.brands-strip { padding: 2.5rem var(--gutter); text-align: center; }
.brands-strip-label { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 1.1rem; }
.brands-strip-track { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; }
.brand-pill {
  padding: .5rem 1.1rem; border-radius: 30px;
  background: rgba(255,255,255,.7); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  height: 2.6rem;
  transition: transform .3s var(--ease-soft), box-shadow .3s var(--ease-soft);
}
.brand-pill:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(214,51,132,.15); }
.brand-pill img { max-height: 100%; max-width: 110px; width: auto; height: auto; object-fit: contain; display: block; }
.brand-pill-text { font-family: var(--serif); font-size: .95rem; font-weight: 600; color: var(--ink); white-space: nowrap; }

/* =============================================================
   11. Section utilities
   ============================================================= */
.section-head { text-align: center; margin-bottom: 2.5rem; }
.section-tag { font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--pink); margin-bottom: .5rem; }
.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--ink);
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: ''; display: block;
  width: 48px; height: 3px; border-radius: 2px;
  background: var(--pink);
  margin: .6rem auto 0;
}
.catalog-note { margin-top: 1.1rem; font-size: .82rem; color: var(--ink-mute); }

/* =============================================================
   12. Catalog
   ============================================================= */
.catalog-section { padding: 5rem var(--gutter); }
.cat-filters { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-bottom: 2.5rem; }
.cat-btn {
  padding: .5rem 1.2rem; border-radius: 30px; font-size: .82rem; font-weight: 500;
  border: 1.5px solid var(--line); color: var(--ink-soft);
  transition: all .25s var(--ease-soft);
}
.cat-btn:hover, .cat-btn.active { background: var(--pink); border-color: var(--pink); color: #fff; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}
.product-card {
  background: rgba(255,255,255,.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(214,51,132,.07);
  transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft);
  --rx: 0deg; --ry: 0deg;
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
}
.product-card:hover {
  box-shadow: 0 20px 50px rgba(214,51,132,.18), 0 0 0 1px rgba(214,51,132,.2);
}
.product-img {
  position: relative;
  height: 160px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
  background: linear-gradient(135deg, var(--pink-light), #fff);
  overflow: hidden;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-img-fallback { display: none; }
.product-img.is-missing img { display: none; }
.product-img.is-missing .product-img-fallback { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.product-body { padding: 1.1rem; }
.product-cat { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--pink); margin-bottom: .4rem; }
.product-name { font-size: .92rem; font-weight: 600; line-height: 1.35; margin-bottom: .35rem; color: var(--ink); }
.product-ref { font-size: .72rem; color: var(--ink-mute); margin-bottom: .35rem; }
.product-ref s { text-decoration: line-through; }
.product-badge { display: inline-block; background: #e8f5e9; color: #2e7d32; font-size: .68rem; font-weight: 700; padding: .1rem .5rem; border-radius: 20px; margin-left: .3rem; vertical-align: middle; }
.product-price { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; color: var(--pink); margin: .2rem 0 .9rem; }
.product-actions { display: flex; flex-direction: column; gap: .5rem; }
.btn-mp {
  display: flex; align-items: center; justify-content: center;
  background: #009ee3; color: #fff; border-radius: 40px;
  padding: .7rem 1rem; font-size: .85rem; font-weight: 600;
  transition: background .25s var(--ease-soft);
}
.btn-mp:hover { background: #0087c2; }

/* =============================================================
   12b. Nail services
   ============================================================= */
.nails-section { padding: 5rem var(--gutter); background: rgba(255,255,255,.5); }
.nails-lead { max-width: 520px; margin: .75rem auto 0; color: var(--ink-mute); font-size: .95rem; }
.nails-grid { display: grid; gap: 2rem; max-width: 1100px; margin: 0 auto; }
@media (min-width: 960px) { .nails-grid { grid-template-columns: 1fr 1.2fr; align-items: start; } }

.nails-price-list { list-style: none; display: flex; flex-direction: column; gap: .9rem; }
.nail-price-item {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: rgba(255,255,255,.8); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.7); border-radius: var(--radius);
  padding: 1rem 1.25rem; box-shadow: 0 4px 20px rgba(214,51,132,.07);
}
.nail-price-name { font-weight: 600; font-size: .92rem; display: block; }
.nail-price-desc { font-size: .78rem; color: var(--ink-mute); margin-top: .2rem; }
.nail-price-item strong { font-family: var(--serif); font-size: 1.1rem; color: var(--pink); white-space: nowrap; }

.nails-video-wrap { padding: 1.75rem; text-align: center; height: fit-content; }
.nails-video-title { font-family: var(--serif); font-size: 1.3rem; margin-bottom: 1rem; }
.nails-video { width: 100%; border-radius: 12px; display: block; background: #000; }

.nails-cta { text-align: center; margin-top: 3rem; }

/* =============================================================
   13. How it works
   ============================================================= */
.how-section { padding: 5rem var(--gutter); background: rgba(255,255,255,.5); }
.steps {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; flex-wrap: wrap; margin-top: 3rem;
}
.step {
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  max-width: 230px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(214,51,132,.07);
}
.step-num { font-family: var(--serif); font-size: 3rem; font-weight: 600; color: var(--pink-light); line-height: 1; margin-bottom: .75rem; }
.step h3 { font-size: 1rem; margin-bottom: .5rem; }
.step p { font-size: .85rem; color: var(--ink-mute); }
.step-arrow { font-size: 1.6rem; color: var(--pink); opacity: .4; }
@media (max-width: 719px) { .step-arrow { transform: rotate(90deg); } }

/* =============================================================
   13b. Testimonials
   ============================================================= */
.testimonials-section { padding: 5rem var(--gutter); }
.testimonials-grid {
  display: grid; gap: 1.5rem; max-width: 1100px; margin: 3rem auto 0;
  grid-template-columns: 1fr;
}
@media (min-width: 720px)  { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) { .testimonials-grid { grid-template-columns: repeat(4, 1fr); } }
.testimonial-card { padding: 1.5rem; display: flex; flex-direction: column; gap: .75rem; }
.testimonial-stars { color: var(--gold); font-size: .9rem; letter-spacing: .1em; }
.testimonial-text { font-size: .88rem; color: var(--ink-soft); line-height: 1.6; flex: 1; }
.testimonial-name { font-family: var(--serif); font-weight: 600; font-size: .9rem; color: var(--pink); }

/* =============================================================
   14. Appointment
   ============================================================= */
.apt-section {
  padding: 5rem var(--gutter);
  background: var(--ink);
  color: #fff;
}
.apt-inner {
  display: grid; gap: 3rem;
  max-width: 1100px; margin: 0 auto;
  align-items: start;
}
@media (min-width: 960px) { .apt-inner { grid-template-columns: 1fr 1fr; } }
.apt-info .section-tag { color: var(--pink); }
.apt-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 1rem; }
.apt-title em { color: var(--pink); font-style: italic; }
.apt-desc { color: rgba(255,255,255,.6); font-size: .95rem; margin-bottom: 1.5rem; }
.apt-perks { list-style: none; }
.apt-perks li { padding: .5rem 0; font-size: .9rem; color: rgba(255,255,255,.7); border-bottom: 1px solid rgba(255,255,255,.07); }

.apt-form-wrap { padding: 2rem; }
.apt-form-title { font-family: var(--serif); font-size: 1.4rem; color: var(--ink); margin-bottom: 1.5rem; }
.field { position: relative; margin-bottom: 1rem; }
.field input, .field select {
  width: 100%; padding: 1.1rem 1rem .5rem;
  border: 1.5px solid rgba(214,51,132,.2);
  border-radius: 10px; font-size: .9rem;
  background: rgba(255,255,255,.8); color: var(--ink);
  outline: none; transition: border-color .2s;
}
.field input:focus, .field select:focus { border-color: var(--pink); }
.field label {
  position: absolute; left: 1rem; top: 50%; transform: translateY(-50%);
  pointer-events: none; font-size: .85rem; color: var(--ink-mute);
  transition: all .22s var(--ease-out);
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field select:valid + label {
  top: .35rem; transform: none; font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; color: var(--pink);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }

/* =============================================================
   15. Location
   ============================================================= */
.location-section { padding: 5rem var(--gutter); }
.location-grid { display: grid; gap: 2rem; margin-top: 3rem; max-width: 1100px; margin-left: auto; margin-right: auto; }
@media (min-width: 720px) { .location-grid { grid-template-columns: 1fr 1fr; } }
.location-cards { display: flex; flex-direction: column; gap: 1rem; }
.info-card { display: flex; align-items: flex-start; gap: 1rem; padding: 1.1rem 1.25rem; transition: box-shadow .3s; }
.info-card:hover { box-shadow: 0 8px 28px rgba(214,51,132,.12); }
.info-icon { font-size: 1.4rem; flex-shrink: 0; }
.info-card strong { display: block; font-size: .85rem; font-weight: 600; margin-bottom: .25rem; }
.info-card p { font-size: .82rem; color: var(--ink-mute); margin: 0; line-height: 1.5; }
.map-wrap { display: flex; align-items: center; justify-content: center; min-height: 280px; border: 2px dashed rgba(214,51,132,.25); background: var(--pink-light) !important; }
.map-placeholder { text-align: center; padding: 2.5rem; }
.map-pin { font-size: 3rem; display: block; margin-bottom: 1rem; }
.map-placeholder strong { font-family: var(--serif); font-size: 1.1rem; display: block; margin-bottom: .35rem; }
.map-placeholder p { font-size: .85rem; color: var(--ink-mute); margin-bottom: 1.25rem; }

/* =============================================================
   16. Contact
   ============================================================= */
.contact-section { padding: 5rem var(--gutter); background: var(--ink); text-align: center; }
.contact-inner { max-width: 560px; margin: 0 auto; }
.contact-title { font-family: var(--serif); font-size: clamp(1.8rem,4vw,3rem); color: #fff; margin-bottom: .75rem; }
.contact-sub { color: rgba(255,255,255,.55); font-size: .95rem; margin-bottom: 2rem; }
.contact-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.contact-section .btn-ghost { color: rgba(255,255,255,.7); border-color: rgba(255,255,255,.25); }
.contact-section .btn-ghost:hover { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.4); }

/* =============================================================
   17. Footer
   ============================================================= */
.footer { background: #0f0b12; color: #fff; }
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 3rem;
  padding: 4rem var(--gutter) 2.5rem;
}
@media (min-width: 720px) { .footer-inner { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-logo { height: 54px; width: 54px; object-fit: contain; border-radius: 50%; background: rgba(255,255,255,.06); padding: 4px; margin-bottom: .75rem; }
.footer-tagline { color: #666; font-size: .82rem; line-height: 1.65; }
.footer-col { display: flex; flex-direction: column; gap: .6rem; }
.footer-col strong { color: #fff; font-size: .82rem; font-weight: 600; margin-bottom: .3rem; letter-spacing: .04em; }
.footer-col a { color: #666; font-size: .8rem; transition: color .2s; }
.footer-col a:hover { color: var(--pink); }
.footer-contact p { color: #666; font-size: .8rem; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 1.1rem var(--gutter);
  color: #444; font-size: .78rem;
}
.footer-top-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  display: grid; place-items: center;
  font-size: 1rem; color: #666;
  transition: border-color .2s, color .2s;
}
.footer-top-btn:hover { border-color: var(--pink); color: var(--pink); }

/* =============================================================
   17b. WhatsApp floating button
   ============================================================= */
.whatsapp-float {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 150;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; box-shadow: 0 8px 28px rgba(37,211,102,.45);
  transition: transform .4s var(--ease-soft), box-shadow .4s var(--ease-soft);
  animation: floatBob 3s ease-in-out infinite;
}
.whatsapp-float:hover { transform: translateY(-4px) scale(1.06); box-shadow: 0 14px 36px rgba(37,211,102,.55); }
@keyframes floatBob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@media (prefers-reduced-motion: reduce) { .whatsapp-float { animation: none; } }

/* =============================================================
   18. Scroll reveals
   ============================================================= */
[data-reveal] {
  opacity: 0; transform: translateY(32px);
  transition: opacity .8s var(--ease-soft), transform .8s var(--ease-soft);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }

/* split word placeholder */
.split-word { display: inline-block; overflow: hidden; }

/* =============================================================
   19. Magnetic
   ============================================================= */
.has-magnetic { display: inline-flex; position: relative; isolation: isolate; }
.magnetic-inner { display: inline-flex; align-items: center; justify-content: center; gap: inherit; will-change: transform; transition: transform .8s var(--ease-soft); }

/* =============================================================
   20. Responsive
   ============================================================= */
@media (max-width: 719px) {
  .nav-search-wrap { display: none; }
}
@media (max-width: 539px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero { text-align: center; justify-items: center; }
  .hero-actions { align-items: center; }
  .hero-badges { flex-direction: row; justify-content: center; flex-wrap: wrap; }
  .steps { flex-direction: column; }
  .step-arrow { display: none; }
  .field-row { grid-template-columns: 1fr; }
}

/* =============================================================
   21. Reduced motion (only intrusive effects)
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .bg-mesh { animation: none; }
}
