@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Sacramento&display=swap');
/* ============================================================
   BEADS & PEARLS — MASTER STYLESHEET
   Mobile-First Luxury Boutique Aesthetic (Clean & Authentic)
   ============================================================ */

:root{
  --cream:#FAF4EE;
  --cream-2:#F5ECE3;
  --plum:#2B2224;
  --plum-soft:#5B4A47;
  --rose:#C98B87;
  --rose-deep:#B06E6C;
  --blush:#F1DCD8;
  --blush-2:#E9CFC9;
  --thread:#B99A6B;
  --sage:#94A182;
  --line:rgba(43,34,36,0.1);
  --line-strong:rgba(43,34,36,0.18);
  --shadow-soft: 0 4px 16px -4px rgba(43,34,36,0.06), 0 12px 32px -8px rgba(43,34,36,0.1);
  --shadow-card: 0 2px 8px -2px rgba(43,34,36,0.04), 0 10px 24px -6px rgba(43,34,36,0.12);
  --shadow-hover: 0 14px 36px -8px rgba(43,34,36,0.18);
  --radius-card: 10px;
  --radius-pill: 8px;
  --maxw: 1180px;

  /* ── TYPOGRAPHY SYSTEM ─────────────────────────────────────
     Heading: Playfair Display (600/700/800) — Rich, thick editorial serif.
              Luxurious contrast, warm stems, never thin.
     Body:    Plus Jakarta Sans (400/500/600) — Modern, humanist, crisp.
              Super readable and vibrant.
     Script:  Caveat (500/600/700) — Handwritten boutique accent.
  ─────────────────────────────────────────────────────────── */
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --font-script: 'Caveat', cursive;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background-color: #FAF2EE;
  background-image: 
    radial-gradient(ellipse 100% 45% at 50% 0%, rgba(255, 245, 246, 0.3) 0%, transparent 75%),
    linear-gradient(45deg, rgba(209, 142, 138, 0.085) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(209, 142, 138, 0.085) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(209, 142, 138, 0.085) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(209, 142, 138, 0.085) 75%);
  background-size: 100% 100%, 36px 36px, 36px 36px, 36px 36px, 36px 36px;
  background-position: 0 0, 0 0, 0 18px, 18px -18px, -18px 0px;
  color:var(--plum);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img{max-width:100%;display:block;}

h1, h2, h3, .display {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0;
  color: var(--plum);
}

a{color:inherit; text-decoration:none;}
button{font-family:inherit;}

::selection{ background:var(--rose); color:var(--cream); }

:focus-visible{
  outline: 2px solid var(--rose-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

.wrap{ max-width:var(--maxw); margin:0 auto; padding:0 24px; }
@media (min-width:768px){ .wrap{ padding:0 36px; } }

.eyebrow{
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 500;
}

/* ============================================================
   NAVIGATION — Warm blush nav, separated from the page pattern
   ============================================================ */
header.site{
  position:sticky; top:0; z-index:50;
  background: var(--blush);
  border-bottom: 1.5px solid var(--rose-deep);
  box-shadow: 0 4px 18px -4px rgba(43,34,36,0.14);
  transition: background .2s ease, box-shadow .2s ease;
}
.nav-inner{
  max-width:var(--maxw); margin:0 auto; padding:0 20px;
  display:flex; align-items:center; justify-content:space-between;
  height:68px;
}
@media (min-width:768px){ .nav-inner{ padding:0 36px; height:72px; } }

/* MAIN BRANDMARK — CLEAN TYPOGRAPHY (NO LOGO ICON IN NAV) */
.brandmark {
  display: flex;
  align-items: center;
  text-decoration: none;
  position: relative;
}

header.site .brandmark-img,
.brandmark-img {
  display: none !important;
}

.footer-brand .brandmark-img {
  display: inline-block !important;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: contain;
  margin-right: 8px;
}

.brandmark-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.brandmark-title {
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 600;
  color: var(--plum);
  line-height: 1.12;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}
.brandmark:hover .brandmark-title {
  color: var(--rose-deep);
}
.brandmark-sub {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 700;
  margin-top: 2px;
}

@media (max-width: 640px) {
  .brandmark-title { font-size: 18px; }
  .brandmark-sub { font-size: 9px; }
  .nav-inner { height: 62px; }
}

nav.links{
  display:none;
  align-items:center; gap:6px;
  list-style:none; margin:0; padding:0;
}
@media (min-width:860px){ nav.links{ display:flex; } }

nav.links a{
  font-size:14.5px; font-weight:500; color:var(--plum);
  padding:10px 16px; cursor:pointer;
  border-radius:var(--radius-pill);
  transition: all .2s ease;
  position:relative;
  display:inline-block;
}
nav.links a:hover{ 
  color:var(--plum); 
  background: rgba(255, 255, 255, 0.8); 
  box-shadow: none;
}
nav.links a[aria-current="page"]{ 
  color:var(--plum); 
  font-weight:600; 
  background: #FFF; 
  border: 1px solid var(--line-strong);
  box-shadow: 0 2px 8px rgba(43,34,36,0.08);
}

/* PASTEL LILAC BEADIFY SUB-PAGE BADGE (MATCHING INSTAGRAM PAGE VIBE) */
.nav-beadify-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0 !important;
  background: none !important;
  margin-right: 6px;
  position: relative;
}

.nav-beadify-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #C49AD8;
  box-shadow: 0 0 14px rgba(196, 154, 216, 0.45);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, border-color 0.25s ease;
  display: block;
}

.nav-beadify-avatar:hover .nav-beadify-logo-img {
  transform: scale(1.12);
  box-shadow: 0 0 22px rgba(196, 154, 216, 0.8);
  border-color: #8A4EA0;
}

.nav-beadify-emblem {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E8D8FA 0%, #F5E9FC 100%);
  border: 2px solid #C49AD8;
  box-shadow: 0 0 16px rgba(196, 154, 216, 0.45), inset 0 0 8px rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}

.nav-beadify-emblem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-beadify-emblem .emblem-text {
  font-family: var(--font-heading);
  font-size: 11.5px;
  font-weight: 700;
  color: #6A2E80;
  letter-spacing: -0.01em;
}

.nav-beadify-avatar:hover .nav-beadify-emblem {
  transform: scale(1.1);
  box-shadow: 0 0 24px rgba(196, 154, 216, 0.75);
  border-color: #8A4EA0;
}

.mobile-beadify-badge {
  display: block !important;
  margin: 14px 20px 20px 20px !important;
  padding: 0 !important;
  text-decoration: none !important;
  border-left: none !important;
  background: none !important;
  box-shadow: none !important;
}

.mobile-beadify-badge-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: #F3E8FF;
  border: 1.5px solid #D8B4FE;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(192, 132, 252, 0.18);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-beadify-badge:hover .mobile-beadify-badge-inner {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(192, 132, 252, 0.32);
  border-color: #A855F7;
  background: #E9D5FF;
}

.beadify-badge-text-box {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.beadify-badge-title {
  font-family: 'Sacramento', 'Caveat', cursive;
  font-size: 30px;
  font-weight: 600;
  color: #5B236F;
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.beadify-badge-sub {
  font-size: 11px;
  color: #8A4EA0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 4px;
}

.beadify-badge-arrow {
  color: #6B21A8;
  font-size: 18px;
  font-weight: 700;
  transition: transform 0.2s ease;
}
.mobile-beadify-badge:hover .beadify-badge-arrow {
  transform: translateX(4px);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Luxury Header Cart Pill Button */
.nav-cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  background: #FFF;
  color: var(--plum);
  border: 1px solid var(--line-strong);
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 600;
  transition: all .22s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(43,34,36,0.04);
}
.nav-cart-btn:hover {
  background: var(--plum);
  color: var(--cream);
  border-color: var(--plum);
  transform: translateY(-1.5px);
  box-shadow: 0 6px 18px rgba(43,34,36,0.18);
}
.nav-cart-btn svg { width: 17px; height: 17px; flex-shrink: 0; stroke: currentColor; }

.nav-cart-count {
  background: var(--rose-deep);
  color: #FFF;
  font-size: 11px;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
}

.nav-cta{
  display:none;
  align-items:center; gap:8px;
  background:var(--plum); color:var(--cream);
  padding:10px 22px; border-radius:var(--radius-pill);
  font-size:13.5px; font-weight:600;
  border:none; cursor:pointer;
  transition: transform .18s ease, background .18s ease;
}
@media (min-width:640px){ .nav-cta{ display:inline-flex; } }
.nav-cta:hover{ background:var(--rose-deep); transform: translateY(-1px); }

.nav-burger{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background: #FFF;
  border: 1.5px solid var(--line-strong);
  cursor:pointer;
  padding:0; width:42px; height:42px;
  border-radius:50%;
  color: var(--plum);
  flex-shrink: 0;
  -webkit-appearance: none;
  appearance: none;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(43,34,36,0.06);
}
.nav-burger svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  display: block;
}
.nav-burger:hover {
  background: var(--plum);
  color: var(--cream);
  border-color: var(--plum);
  transform: scale(1.05);
}
@media (min-width:860px){ .nav-burger{ display:none; } }

/* Floating Mobile Cart Button — Hidden to avoid overlapping Hero CTA buttons (Header Bag button is already sticky at top) */
.floating-cart-btn {
  display: none !important;
}

/* Mobile Navigation Drawer — Enhanced Boutique Aesthetics */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 310px;
  max-width: 86vw;
  height: 100vh;
  background: linear-gradient(180deg, #FFF3F5 0%, #FAF0EC 100%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(0.16, 1, 0.3, 1);
  border-right: 1.5px solid rgba(201, 139, 135, 0.3);
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 20px 0 60px rgba(43, 34, 36, 0.28);
}
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1.5px solid rgba(201, 139, 135, 0.25);
  background: rgba(255, 240, 243, 0.95);
}
.mobile-menu-header .word {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--plum);
  letter-spacing: -0.01em;
}
.menu-close-btn {
  background: var(--blush);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--plum);
  transition: all 0.2s ease;
}
.menu-close-btn:hover {
  background: var(--plum);
  color: var(--cream);
  transform: rotate(90deg);
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  flex-grow: 1;
  overflow-y: auto;
}
.mobile-menu-links a {
  padding: 15px 28px;
  font-size: 17px;
  font-family: var(--font-heading);
  color: var(--plum);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: color 0.2s ease, background 0.2s ease, padding-left 0.2s ease;
  border-left: 3px solid transparent;
}
.mobile-menu-links a:hover,
.mobile-menu-links a[aria-current="page"] {
  color: var(--rose-deep);
  background: var(--blush);
  border-left-color: var(--rose-deep);
  padding-left: 32px;
  font-weight: 600;
}
.mobile-menu-footer {
  padding: 24px;
  border-top: 1px solid var(--line-strong);
  background: rgba(245, 236, 227, 0.6);
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(43, 34, 36, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

/* ============================================================
   RIGHT-SIDE SLIDE-OUT CART PAGE DRAWER
   ============================================================ */
.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(43, 34, 36, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.cart-backdrop.open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 440px;
  max-width: 100vw;
  height: 100vh;
  background: var(--cream);
  z-index: 2600;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -20px 0 60px rgba(43, 34, 36, 0.24);
}
.cart-drawer.open { transform: translateX(0); }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  border-bottom: 1px solid var(--line);
  background: rgba(250,244,238,0.96);
}
.cart-title { display: flex; align-items: center; gap: 10px; color: var(--plum); }
.cart-title svg { stroke: var(--plum); }
.cart-title h3 { font-size: 20px; margin: 0; font-family: var(--font-heading); }
.cart-count-badge {
  font-size: 11.5px;
  background: var(--blush);
  color: var(--rose-deep);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-weight: 700;
}
.cart-close-btn {
  background: var(--blush);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--plum);
  transition: background .2s ease, transform .2s ease;
}
.cart-close-btn:hover { background: var(--plum); color: var(--cream); transform: rotate(90deg); }

.cart-delivery-banner {
  background: var(--cream-2);
  padding: 12px 24px;
  border-bottom: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--plum-soft);
  text-align: center;
}
.delivery-progress-track {
  height: 5px;
  background: rgba(43,34,36,0.08);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 8px;
}
.delivery-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--rose) 0%, var(--rose-deep) 100%);
  border-radius: 3px;
  transition: width 0.4s ease;
}

.cart-body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-empty {
  text-align: center;
  margin: auto 0;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.empty-icon-wrapper {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.cart-empty h4 { font-size: 20px; margin-bottom: 8px; font-family: var(--font-heading); }
.cart-empty p { font-size: 14px; color: var(--plum-soft); max-width: 28ch; line-height: 1.5; margin-bottom: 24px; }
.empty-shop-btn { padding: 12px 24px; }

.cart-item {
  display: flex;
  align-items: center;
  background: #FFF;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  gap: 14px;
  box-shadow: var(--shadow-card);
}
.cart-item-thumb {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background: #FAF4EE;
  border: 1px solid rgba(201, 139, 135, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.cart-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-item-info { flex-grow: 1; min-width: 0; }
.cart-item-cat { font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--rose-deep); font-weight: 700; }
.cart-item-title { font-size: 14.5px; margin: 2px 0 4px; font-weight: 600; line-height: 1.3; }
.cart-item-sub { font-size: 12px; color: var(--plum-soft); margin-bottom: 8px; }
.cart-item-price { font-family: var(--font-heading); font-style: italic; color: var(--rose-deep); font-weight: 600; font-size: 16px; }

.cart-item-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.qty-control {
  display: inline-flex;
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  padding: 2px;
}
.qty-btn {
  background: none; border: none; width: 26px; height: 26px; border-radius: 50%;
  cursor: pointer; font-size: 14px; font-weight: 600; color: var(--plum);
  display: flex; align-items: center; justify-content: center;
  transition: background .15s ease;
}
.qty-btn:hover { background: var(--blush); }
.qty-val { font-size: 13px; font-weight: 600; min-width: 22px; text-align: center; }

.cart-item-remove {
  background: none; border: none; color: var(--plum-soft); cursor: pointer; padding: 4px; opacity: 0.5;
  transition: opacity .15s ease, color .15s ease;
}
.cart-item-remove:hover { opacity: 1; color: var(--rose-deep); }

.cart-footer {
  padding: 22px 26px;
  border-top: 1px solid var(--line);
  background: #FFF;
  box-shadow: 0 -10px 30px rgba(43,34,36,0.04);
}
.cart-subtotal {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 16px; font-weight: 600; margin-bottom: 4px;
}
.subtotal-val { font-family: var(--font-heading); font-style: italic; font-size: 24px; color: var(--rose-deep); font-weight: 600; }
.cart-note { font-size: 12px; color: var(--plum-soft); margin-bottom: 18px; }

.cart-checkout-btn {
  width: 100%;
  justify-content: center;
  padding: 15px;
  font-size: 15px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:14px 28px;
  border-radius:var(--radius-pill);
  font-size:14.5px; font-weight:600; letter-spacing:0.01em;
  text-decoration:none; cursor:pointer; border:1px solid transparent;
  transition: transform .22s cubic-bezier(0.16, 1, 0.3, 1), background .22s ease, border-color .22s ease, color .22s ease, box-shadow .22s ease;
}
.btn-primary{
  background: var(--plum);
  color: var(--cream);
  box-shadow: 0 4px 14px rgba(43,34,36,0.15);
}
.btn-primary:hover{
  background: var(--rose-deep);
  color: #FFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(176,110,108,0.25);
}

.btn-ghost{
  background: transparent;
  color: var(--plum);
  border-color: var(--line-strong);
}
.btn-ghost:hover{
  border-color: var(--plum);
  background: rgba(43,34,36,0.03);
  transform: translateY(-2px);
}
.btn-line{ background:transparent; color:var(--plum); border-bottom:1.5px solid var(--plum); border-radius:0; padding:4px 2px; }
.btn-line:hover{ color:var(--rose-deep); border-color:var(--rose-deep); }

/* ============================================================
   HERO SECTION — Seamless Boutique Aesthetic (No White Separation)
   ============================================================ */
.hero {
  padding: 56px 0 44px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: transparent;
}
.hero::before{
  content:'';
  position:absolute;
  inset: -10% -10% auto -10%;
  height: 540px;
  z-index:-2;
  background:
    radial-gradient(580px 380px at 50% 18%, rgba(255, 205, 218, 0.45) 0%, rgba(255, 225, 232, 0.18) 50%, transparent 75%),
    radial-gradient(360px 280px at 15% 25%, rgba(248, 212, 224, 0.22) 0%, transparent 65%),
    radial-gradient(380px 300px at 85% 20%, rgba(255, 225, 232, 0.25) 0%, transparent 65%);
  pointer-events:none;
}
.hero::after{
  display: none !important;
}
@media (max-width: 640px) {
  .hero { padding: 36px 0 36px; }
  .hero-logo-pedestal { margin-bottom: 20px; }
  .hero-logo-img { width: 135px; height: 135px; }
  .hero p.lede { font-size: 14.5px; margin-bottom: 22px; }
  .hero-ctas { flex-direction: column; gap: 12px; width: 100%; max-width: 320px; }
  .hero-ctas .btn { width: 100%; justify-content: center; padding: 13px 20px; font-size: 14px; }
}
@media (min-width: 768px) {
  .hero { padding: 68px 0 60px; }
}

#featured {
  padding-top: 36px;
}
@media (min-width: 768px) {
  #featured { padding-top: 48px; }
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

/* ============================================================
   HERO LOGO PEDESTAL — High-Contrast Porcelain & Rose Medallion
   ============================================================ */
.hero-logo-pedestal {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  isolation: isolate;
}

/* Outer Soft Radiant Aura */
.hero-pedestal-aura {
  position: absolute;
  inset: -32px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(248, 206, 210, 0.9) 0%, rgba(233, 183, 192, 0.5) 45%, transparent 72%);
  z-index: -2;
  animation: hero-glow-pulse 4.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes hero-glow-pulse{
  0%,100%{ transform: scale(1); opacity: 0.9; }
  50%{ transform: scale(1.08); opacity: 1; }
}

/* Outer Geometric Rotating Dashed Ring */
.hero-pedestal-ring {
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 2px dashed rgba(176, 110, 108, 0.5);
  z-index: -1;
  animation: hero-ring-spin 36s linear infinite;
  pointer-events: none;
}
@keyframes hero-ring-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Porcelain White High-Contrast Backing Plate */
.hero-logo-backing {
  position: relative;
  z-index: 1;
  padding: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF8F8 50%, #FCEAEB 100%);
  box-shadow: 
    0 18px 46px -6px rgba(176, 110, 108, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.98),
    0 0 0 4px rgba(201, 139, 135, 0.35),
    0 0 36px rgba(248, 206, 210, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}
.hero-logo-backing:hover {
  transform: scale(1.04);
  box-shadow: 
    0 24px 58px -4px rgba(176, 110, 108, 0.55),
    0 0 0 1px #FFFFFF,
    0 0 0 5px rgba(176, 110, 108, 0.48),
    0 0 48px rgba(248, 206, 210, 0.85);
}

/* Circular Logo Image */
.hero-logo-img {
  width: 175px;
  height: 175px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid var(--rose-deep);
  display: block;
  background: #FFF;
}
@media (min-width: 640px) {
  .hero-logo-img { width: 215px; height: 215px; }
}

.hero .eyebrow {
  margin-bottom: 16px;
  color: var(--rose-deep);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 139, 135, 0.35);
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(201, 139, 135, 0.12);
}
.hero .eyebrow::before,
.hero .eyebrow::after{
  content:'✦';
  font-size: 10px;
  color: var(--rose-deep);
  flex-shrink:0;
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(38px, 5.8vw, 66px);
  font-optical-sizing: auto;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  font-weight: 600;
  color: var(--plum);
}
.hero h1 em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 600;
  font-optical-sizing: auto;
  letter-spacing: -0.01em;
  color: var(--rose-deep);
  position: relative;
  display: inline-block;
}
.hero h1 em::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 6px;
  background: rgba(201, 139, 135, 0.3);
  border-radius: 4px;
  z-index: -1;
}

.hero p.lede {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--plum-soft);
  max-width: 52ch;
  margin: 0 auto 28px;
}
@media (min-width: 640px) {
  .hero p.lede { font-size: 18px; }
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 4px;
  margin-bottom: 32px;
}
.hero-ctas .btn-primary{
  box-shadow: 0 10px 28px -6px rgba(43,34,36,0.32);
}

/* Hero Trust & Guarantee Badges Strip */
.hero-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-top: 8px;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(201, 139, 135, 0.25);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--plum-soft);
  box-shadow: 0 2px 8px rgba(43,34,36,0.04);
}
.trust-pill .trust-icon {
  font-size: 13px;
}
@media (max-width: 640px) {
  .hero-trust-strip { gap: 6px; }
  .trust-pill { font-size: 11px; padding: 5px 10px; }
}

/* ============================================================
   SECTION HEADINGS & LAYOUT SPACING
   ============================================================ */
section {
  padding: 56px 0;
}
@media (min-width: 768px) {
  section { padding: 80px 0; }
}

.sec-head {
  margin-bottom: 32px;
}
@media (min-width: 640px) {
  .sec-head { margin-bottom: 42px; }
}
.sec-head .eyebrow {
  display: block;
  margin-bottom: 6px;
}
.sec-head h2 {
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.15;
  margin-top: 4px;
}
.sec-head p {
  color: var(--plum-soft);
  font-size: 15px;
  line-height: 1.65;
  max-width: 58ch;
  margin-top: 10px;
}

/* ============================================================
   BEADIFY SHOWCASE SECTION — Full-Bleed Dreamy Purple Theme
   ============================================================ */
.section-beadify {
  padding: 64px 0;
  background: linear-gradient(135deg, #E8D8FA 0%, #F5E9FC 100%);
  border-top: 2px solid #C49AD8;
  border-bottom: 2px solid #C49AD8;
  position: relative;
  text-align: center;
  box-shadow: inset 0 2px 14px rgba(196, 154, 216, 0.22), inset 0 -2px 14px rgba(196, 154, 216, 0.22);
}
@media (max-width: 640px) {
  .section-beadify { padding: 48px 0; }
}

.beadify-inner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.beadify-coming-soon-script-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 12px auto 26px;
  padding: 14px 44px;
  background: rgba(255, 255, 255, 0.68);
  border: 1.5px solid #D8B4FE;
  border-radius: 9999px;
  box-shadow: 0 10px 30px rgba(138, 78, 160, 0.12), 0 0 20px rgba(216, 180, 254, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.beadify-coming-soon-script-wrap:hover {
  transform: scale(1.03);
  box-shadow: 0 14px 36px rgba(138, 78, 160, 0.2), 0 0 26px rgba(216, 180, 254, 0.5);
}

.beadify-script-coming-soon {
  font-family: 'Sacramento', 'Great Vibes', 'Caveat', cursive;
  font-size: clamp(38px, 7.5vw, 64px);
  font-weight: 600;
  color: #5B236F;
  line-height: 1;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 10px rgba(168, 85, 247, 0.16);
}

.beadify-script-heart {
  font-family: 'Sacramento', cursive;
  font-size: clamp(24px, 4.5vw, 40px);
  color: #8A4EA0;
  line-height: 1;
  opacity: 0.85;
}

.btn-beadify-primary {
  background: #8A4EA0;
  color: #FFF;
  font-weight: 600;
  padding: 14px 34px;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 20px rgba(138, 78, 160, 0.3);
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-beadify-primary:hover {
  background: #6A2E80;
  color: #FFF;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(106, 46, 128, 0.4);
}

/* ============================================================
   VISUAL CATEGORIES GRID — High-End Boutique Product Showcase
   ============================================================ */
.categories { background: var(--cream-2); }

.cat-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 768px) {
  .cat-visual-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

.cat-visual-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  display: block;
  text-decoration: none;
  background: var(--cream-2);
  border: 1.5px solid rgba(201, 139, 135, 0.25);
  box-shadow: 0 8px 24px -4px rgba(43, 34, 36, 0.1);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}
.cat-visual-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px -6px rgba(43, 34, 36, 0.25);
  border-color: var(--rose-deep);
}

.cat-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.cat-visual-card:hover .cat-visual-img {
  transform: scale(1.08);
}

.cat-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43, 34, 36, 0.05) 20%, rgba(43, 34, 36, 0.48) 65%, rgba(43, 34, 36, 0.88) 100%);
  transition: opacity 0.3s ease;
}
.cat-visual-card:hover .cat-visual-overlay {
  background: linear-gradient(180deg, rgba(43, 34, 36, 0.1) 15%, rgba(43, 34, 36, 0.58) 60%, rgba(43, 34, 36, 0.94) 100%);
}

.cat-visual-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 16px;
  z-index: 2;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 640px) {
  .cat-visual-content { padding: 22px 20px; }
}

.cat-visual-tag {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: #F1DCD8;
  margin-bottom: 4px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.35);
}

.cat-visual-content h3 {
  font-family: var(--font-heading);
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.15;
  margin: 0 0 6px 0;
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.cat-visual-cta {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #FFF;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  opacity: 0.9;
  transition: transform 0.25s ease, color 0.25s ease, opacity 0.25s ease;
}
.cat-visual-card:hover .cat-visual-cta {
  opacity: 1;
  color: #F1DCD8;
  transform: translateX(4px);
}

/* ============================================================
   PRODUCT GRID & CARDS
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}
@media (max-width: 539px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
@media (min-width: 540px) { .product-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (min-width: 960px) { .product-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; } }

.product-card {
  background: var(--cream);
  border-radius: var(--radius-card);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  display: flex;
  flex-direction: column;
  text-align: left;
  position: relative;
  cursor: pointer;
  will-change: transform;
}

/* Fun Motion on Hover & Click */
.product-card:hover {
  transform: translateY(-8px) scale(1.025);
  box-shadow: 0 20px 40px -10px rgba(43, 34, 36, 0.16), 0 0 24px rgba(201, 139, 135, 0.2);
  border-color: var(--rose);
}
.product-card:active {
  transform: translateY(-2px) scale(0.98);
  transition-duration: 0.1s;
}

.product-thumb {
  width: 100%;
  aspect-ratio: 4 / 4.75;
  background: var(--cream-2);
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.product-picture {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0;
}
.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-card:hover .product-img {
  transform: scale(1.07);
}

.product-thumb .tag,
.product-thumb .card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--plum);
  color: var(--cream);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(250,244,238,0.25);
  z-index: 5;
  box-shadow: 0 4px 12px rgba(43,34,36,0.25);
  pointer-events: none;
}
.product-thumb .tag-viral {
  background: #A855F7;
  color: #FFF;
  border-color: rgba(255,255,255,0.3);
}
.product-thumb .tag-stock {
  background: #C98B87;
  color: #FFF;
  border-color: rgba(255,255,255,0.3);
}

.product-info {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
@media (max-width: 539px) {
  .product-info { padding: 10px 10px 12px; }
}
.product-info .cat-lbl {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--rose-deep);
  font-weight: 700;
  margin-bottom: 4px;
}
@media (max-width: 539px) {
  .product-info .cat-lbl { font-size: 9px; margin-bottom: 2px; }
}
.product-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}
@media (max-width: 539px) {
  .product-meta { flex-direction: column; align-items: flex-start; gap: 2px; margin-bottom: 4px; }
}
.product-meta h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.22;
  font-family: var(--font-heading);
  color: var(--plum);
  margin: 0;
  transition: color 0.2s ease;
}
@media (max-width: 539px) {
  .product-meta h3 { font-size: 13.5px; line-height: 1.2; }
}
.product-card:hover .product-meta h3 {
  color: var(--rose-deep);
}
.product-meta .price {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--rose-deep);
  font-size: 16.5px;
  font-weight: 700;
  white-space: nowrap;
  margin: 0;
}
@media (max-width: 539px) {
  .product-meta .price { font-size: 14px; margin-top: 1px; }
}
.product-sub {
  display: none !important;
}

/* Live Stock Display on Product Cards */
.product-stock-line {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}
@media (max-width: 539px) {
  .product-stock-line { margin-bottom: 8px; }
}
.live-stock-text {
  font-size: 11.5px;
  font-weight: 600;
  color: #15803D;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
@media (max-width: 539px) {
  .live-stock-text { font-size: 10.5px; }
}
.live-stock-text.out-stock {
  color: #DC2626;
}
.live-stock-text::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

/* Modal Live Stock Pill */
.modal-price-stock-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.modal-stock-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #DCFCE7;
  color: #15803D;
  border: 1px solid #BBF7D0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
}

.modal-stock-pill.out-stock {
  background: #FEE2E2;
  color: #991B1B;
  border-color: #FECACA;
}

.modal-stock-pill .stock-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.product-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
}
@media (max-width: 539px) {
  .product-actions {
    flex-direction: row;
    gap: 6px;
  }
  .product-actions .btn-add {
    flex: 1;
    width: 100%;
    padding: 8.5px 10px;
    font-size: 12px;
    justify-content: center;
    border-radius: var(--radius-pill);
  }
  .product-actions .btn-view {
    display: none;
  }
}
.product-actions .btn-add {
  flex: 1;
  background: var(--plum);
  color: var(--cream);
  border: none;
  border-radius: var(--radius-pill);
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.22s ease;
  box-shadow: 0 4px 12px rgba(43,34,36,0.1);
}
.product-actions .btn-add:hover {
  background: var(--rose-deep);
  color: #FFF;
  transform: translateY(-1.5px);
  box-shadow: 0 6px 18px rgba(176,110,108,0.3);
}
.product-actions .btn-view {
  background: var(--blush);
  color: var(--plum);
  border: none;
  border-radius: var(--radius-pill);
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.22s ease;
}
.product-actions .btn-view:hover {
  background: var(--blush-2);
  transform: translateY(-1.5px);
}

/* ============================================================
   CLIENT LOVE — WHATSAPP REVIEWS CAROUSEL
   ============================================================ */
.client-love-section {
  background: var(--cream, #FAF7F2);
  padding: 56px 0 76px;
  position: relative;
  overflow: hidden;
}

.client-love-heading {
  font-family: var(--font-heading, 'Plus Jakarta Sans', sans-serif);
  font-size: clamp(34px, 5.5vw, 46px);
  font-weight: 800;
  color: var(--plum, #2B2224);
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.15;
}

.client-love-heading .cursive-love {
  font-family: 'Caveat', cursive;
  font-style: italic;
  font-weight: 600;
  font-size: 1.25em;
  color: var(--plum, #2B2224);
  margin-left: 6px;
}

.reviews-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 460px;
  margin: 0 auto;
  padding: 0 16px;
}

.reviews-slider {
  width: 100%;
  position: relative;
  overflow: hidden;
  min-height: 440px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.review-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(36px) scale(0.96);
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.35s ease;
  display: flex;
  justify-content: center;
}

.review-card.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
}

.review-card.prev-slide {
  transform: translateX(-36px) scale(0.96);
}

/* White Aesthetic Screenshot Card matching reference image */
.review-screenshot-card {
  background: #FFFFFF;
  border-radius: 26px;
  padding: 16px;
  width: 100%;
  box-shadow: 0 18px 44px -10px rgba(43, 34, 36, 0.1), 0 0 0 1px rgba(43, 34, 36, 0.04);
  border: 1px solid #EDE4DC;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-screenshot-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px -10px rgba(43, 34, 36, 0.14), 0 0 0 1px rgba(43, 34, 36, 0.06);
}

.review-screenshot-img {
  width: 100%;
  height: auto;
  max-height: 540px;
  object-fit: contain;
  border-radius: 18px;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

/* Round Dark Navigation Buttons */
.review-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--plum, #2B2224);
  color: #FFFFFF;
  border: 2.5px solid #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(43, 34, 36, 0.28);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0;
}

.review-nav-btn.prev {
  left: -22px;
}

.review-nav-btn.next {
  right: -22px;
}

@media (max-width: 600px) {
  .reviews-carousel-wrapper {
    max-width: 360px;
    padding: 0 8px;
  }
  .review-nav-btn.prev { left: -14px; }
  .review-nav-btn.next { right: -14px; }
  .review-nav-btn { width: 40px; height: 40px; }
  .review-screenshot-card { padding: 12px; border-radius: 20px; }
  .review-screenshot-img { border-radius: 14px; max-height: 440px; }
}

.review-nav-btn:hover {
  background: var(--rose-deep, #B06E6C);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 12px 28px rgba(176, 110, 108, 0.4);
}

.review-nav-btn:active {
  transform: translateY(-50%) scale(0.94);
}

/* Pagination Dots */
.review-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
}

.review-dots .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(43, 34, 36, 0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-dots .dot:hover {
  background: rgba(43, 34, 36, 0.45);
}

.review-dots .dot.active {
  width: 26px;
  border-radius: 10px;
  background: var(--plum, #2B2224);
}

.ig-community-bar {
  margin-top: 48px;
  background: #FAF2EC;
  border: 1.5px solid rgba(201, 139, 135, 0.28);
  border-radius: var(--radius-card);
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  box-shadow: 0 8px 24px -4px rgba(43, 34, 36, 0.08);
}
@media (min-width: 768px) {
  .ig-community-bar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.ig-info h3 {
  color: var(--plum);
  font-size: 20px;
  margin-bottom: 6px;
  font-family: var(--font-heading);
}
.ig-info p {
  color: rgba(250, 244, 238, 0.75);
  font-size: 14.5px;
  margin: 0;
}
.ig-btn {
  background: var(--cream);
  color: var(--plum);
  flex-shrink: 0;
}
.ig-btn:hover {
  background: var(--rose);
  color: var(--cream);
}

/* ============================================================
   MODAL & TOAST
   ============================================================ */
.modal-backdrop{
  position:fixed; inset:0; background:rgba(43,34,36,0.5);
  backdrop-filter: blur(4px);
  display:none; align-items:center; justify-content:center;
  z-index:1100; padding:20px;
}
.modal-backdrop.open{ display:flex; }
.modal{
  background:var(--cream); border-radius:16px; max-width:820px; width:100%;
  display:block; overflow-y:auto; -webkit-overflow-scrolling:touch;
  box-shadow:0 30px 60px -20px rgba(0,0,0,0.35);
  animation: modal-in .25s ease both;
  max-height:88vh;
  position: relative;
}
@media (min-width:640px){ 
  .modal{ 
    display:grid; 
    grid-template-columns:1fr 1fr; 
    max-height:85vh;
    overflow:hidden;
  } 
}
@keyframes modal-in{ from{ opacity:0; transform:scale(0.97) translateY(8px);} to{opacity:1; transform:scale(1) translateY(0);} }

.modal-art {
  position: relative;
  background: var(--cream-2);
  display: block;
  padding: 0;
  margin: 0;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 4.5;
}
@media (min-width: 640px) {
  .modal-art {
    aspect-ratio: auto;
    height: 100%;
    min-height: 100%;
  }
}
.modal-art .product-picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  margin: 0;
  padding: 0;
}
.modal-art .product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 0 !important;
}
.modal-art svg { width: 100%; height: 100%; max-width: 280px; margin: 0 auto; display: block; }
.modal-body {
  background: var(--cream);
  padding: 24px 20px 32px;
  position: relative;
  z-index: 2;
}
@media (min-width: 640px) {
  .modal-body {
    padding: 32px 28px;
    overflow-y: auto;
    min-height: 0;
    height: 100%;
    max-height: 85vh;
  }
}
.modal-close{
  position:absolute; top:16px; right:16px; width:34px; height:34px;
  border-radius:50%; border:1px solid var(--line); background:var(--cream);
  display:flex; align-items:center; justify-content:center; cursor:pointer;
  z-index: 20;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.modal-body .tag{ font-size:11px; text-transform:uppercase; letter-spacing:0.06em; color:var(--rose-deep); font-weight:600; }
.modal-body h3{ font-size:24px; margin:8px 0 6px; font-family: var(--font-heading); }
.modal-body .price{ font-family: var(--font-heading); font-style:italic; color:var(--rose-deep); font-size:20px; font-weight:600; }
.modal-body p.desc{ font-size:14.5px; color:var(--plum-soft); line-height:1.6; margin:14px 0 16px; }

/* Modal Option Groups & Mandatory Sizing */
.modal-scroll-down-wrap {
  display: flex;
  justify-content: center;
  margin: 12px 0 16px 0;
  width: 100%;
}

.modal-scroll-down-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--plum);
  color: var(--cream);
  border: 1.5px solid var(--rose);
  padding: 11px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(43, 34, 36, 0.22);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}
@media (min-width: 520px) {
  .modal-scroll-down-btn { width: auto; min-width: 280px; }
}

.modal-scroll-down-btn svg {
  animation: bounce-arrow 1.6s infinite;
}

.modal-scroll-down-btn:hover {
  background: var(--rose-deep);
  color: #FFF;
  transform: translateY(2px);
  box-shadow: 0 8px 24px rgba(176, 110, 108, 0.4);
}

@keyframes bounce-arrow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

.modal-option-group {
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(201, 139, 135, 0.25);
  border-radius: var(--radius-card);
  padding: 14px 16px;
}
.modal-option-group label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 700;
  color: var(--plum);
  margin-bottom: 6px;
}
.required-badge {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #B02A37;
  background: rgba(176, 42, 55, 0.1);
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid rgba(176, 42, 55, 0.25);
}
.optional-badge {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--rose-deep);
  background: rgba(201, 139, 135, 0.1);
  padding: 2px 7px;
  border-radius: 4px;
}
.size-guide-tip {
  font-size: 11.5px;
  color: var(--plum-soft);
  margin-bottom: 8px;
  line-height: 1.4;
}
.modal-size-select, .modal-size-input {
  width: 100%;
  padding: 11px 14px;
  background: #FFF;
  border: 1.5px solid rgba(43, 34, 36, 0.2);
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: 13.5px;
  color: var(--plum);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.modal-size-select:focus, .modal-size-input:focus {
  border-color: var(--rose-deep);
  box-shadow: 0 0 0 3px rgba(201, 139, 135, 0.25);
}
.input-error {
  border-color: #B02A37 !important;
  background: #FFF9F9 !important;
  box-shadow: 0 0 0 3px rgba(176, 42, 55, 0.2) !important;
  animation: shake-error 0.35s ease;
}
@keyframes shake-error {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}
.size-error-msg {
  color: #B02A37;
  font-size: 11.5px;
  font-weight: 600;
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.modal-body ul.specs{ list-style:none; padding:0; margin:0 0 20px; display:flex; flex-direction:column; gap:8px; }
.modal-body ul.specs li{ font-size:13px; color:var(--plum-soft); display:flex; gap:8px; }
.modal-body ul.specs li::before{ content:"•"; color:var(--rose); }

.modal-action-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Cart Drawer Size Tag */
.cart-item-size-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11.5px;
  font-weight: 700;
  color: #8A4EA0;
  background: rgba(138, 78, 160, 0.1);
  padding: 3px 8px;
  border-radius: 4px;
  margin-top: 4px;
  border: 1px solid rgba(138, 78, 160, 0.22);
}

.toast{
  position:fixed; bottom:28px; left:50%; transform:translateX(-50%) translateY(20px);
  background:var(--plum); color:var(--cream); padding:14px 24px; border-radius:var(--radius-pill);
  font-size:13.5px; font-weight:500; box-shadow:0 12px 30px -8px rgba(0,0,0,0.4);
  opacity:0; pointer-events:none; transition: all .3s ease; z-index:2000;
  display:flex; align-items:center; gap:10px;
}
.toast svg { color: var(--rose); flex-shrink: 0; }
.toast.show{ opacity:1; transform:translateX(-50%) translateY(0); }

/* ============================================================
   FOOTER
   ============================================================ */
footer.site{
  background:var(--plum); color:rgba(250,244,238,0.7);
  padding:64px 0 32px;
}
.footer-top{
  display:grid; grid-template-columns:1.4fr repeat(3, 1fr); gap:36px;
  padding-bottom:48px; border-bottom:1px solid rgba(250,244,238,0.12);
}
@media (max-width:860px){ .footer-top{ grid-template-columns:1fr 1fr; gap:32px; } }
@media (max-width:480px){ .footer-top{ grid-template-columns:1fr; gap:28px; } }

.footer-brand .brandmark .word{ color:var(--cream); }
.footer-brand p{ font-size:14px; line-height:1.6; margin:16px 0 0; max-width:32ch; color:rgba(250,244,238,0.55); }
.footer-col h4{ font-family:var(--font-body); font-size:12px; letter-spacing:0.1em; text-transform:uppercase; color:rgba(250,244,238,0.45); margin-bottom:16px; font-weight:600; }
.footer-col ul{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:10px; }
.footer-col a{ color:rgba(250,244,238,0.75); font-size:14px; transition: color .2s ease; }
.footer-col a:hover{ color:var(--cream); }
.footer-bottom{
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(250,244,238,0.45);
  padding-top:24px;
  flex-wrap:wrap; gap:8px;
}

/* ============================================================
   2-STEP CHECKOUT OVERLAY MODAL
   ============================================================ */
.checkout-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(43, 34, 36, 0.65);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1500;
  padding: 16px;
}
.checkout-backdrop.open {
  display: flex;
}

.checkout-modal {
  background: var(--cream);
  border-radius: 20px;
  max-width: 660px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 32px 72px -16px rgba(0, 0, 0, 0.45);
  animation: checkout-in 0.28s cubic-bezier(0.16, 1, 0.3, 1) both;
  position: relative;
  border: 1px solid rgba(201, 139, 135, 0.25);
}

@keyframes checkout-in {
  from { opacity: 0; transform: scale(0.96) translateY(12px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* Stepper Header */
.checkout-header {
  background: var(--cream-2);
  padding: 18px 24px;
  border-bottom: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.checkout-stepper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.step-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.55;
  transition: opacity 0.25s ease;
  cursor: pointer;
}
.step-pill.active {
  opacity: 1;
}

.step-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--plum-soft);
  color: var(--cream);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
}
.step-pill.active .step-num {
  background: var(--rose-deep);
  color: #FFF;
}

.step-label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--plum);
}

.step-divider {
  width: 24px;
  height: 1.5px;
  background: var(--line-strong);
}

.checkout-close-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--plum);
  transition: background 0.2s ease;
}
.checkout-close-btn:hover {
  background: var(--blush);
}

/* Step Content Panels */
.checkout-step-content {
  display: none;
  padding: 24px 24px 32px;
  overflow-y: auto;
  min-height: 0;
  flex: 1;
  -webkit-overflow-scrolling: touch;
}
.checkout-step-content.active {
  display: block;
}

.checkout-step-head {
  margin-bottom: 20px;
}
.checkout-step-head h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  margin-bottom: 4px;
}
.checkout-step-head p {
  font-size: 13.5px;
  color: var(--plum-soft);
  margin: 0;
}

.btn-back-link {
  background: none;
  border: none;
  color: var(--rose-deep);
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-bottom: 8px;
  display: inline-block;
}
.btn-back-link:hover {
  text-decoration: underline;
}

/* Items List in Step 1 */
.checkout-items-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  max-height: 280px;
  overflow-y: auto;
  padding-right: 4px;
}

.co-item-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(201, 139, 135, 0.22);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.co-item-main h4 {
  font-size: 14.5px;
  margin: 0 0 4px 0;
  font-weight: 600;
  color: var(--plum);
}
.co-item-meta {
  font-size: 12px;
  color: var(--plum-soft);
}
.co-item-price {
  font-family: var(--font-heading);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--rose-deep);
  white-space: nowrap;
}

/* Summary Box in Step 1 */
.checkout-summary-box {
  background: var(--cream-2);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 20px;
  border: 1px solid var(--line);
}
.summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  color: var(--plum-soft);
  margin-bottom: 8px;
}
.summary-line.total-line {
  border-top: 1.5px dashed rgba(43, 34, 36, 0.18);
  padding-top: 10px;
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--plum);
}
.summary-line.total-line span:last-child {
  font-family: var(--font-heading);
  color: var(--rose-deep);
}

/* Form Controls in Step 2 */
.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 520px) {
  .form-group-row { grid-template-columns: 1fr; }
}

.form-group label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--plum);
}
.required-star { color: var(--rose-deep); }
.optional-tag { font-weight: 400; color: var(--plum-soft); font-size: 11.5px; }
.field-tip { font-size: 11px; color: var(--plum-soft); }

.co-input {
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.85);
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--plum);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.co-input:focus {
  border-color: var(--rose-deep);
  box-shadow: 0 0 0 3px rgba(176, 110, 108, 0.15);
}

/* SMALL ORDER SUMMARY SECTION UNDER DETAILS */
.checkout-mini-summary {
  background: linear-gradient(135deg, #FAF4EE 0%, #F5ECE3 100%);
  border: 1.5px solid rgba(201, 139, 135, 0.28);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 20px;
  box-shadow: 0 4px 14px rgba(43, 34, 36, 0.05);
}
.mini-summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--rose-deep);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(201, 139, 135, 0.2);
}
.mini-count-badge {
  background: var(--rose-deep);
  color: #FFF;
  font-size: 10.5px;
  padding: 2px 8px;
  border-radius: 999px;
  text-transform: none;
  letter-spacing: normal;
}
.mini-summary-items {
  font-size: 12.5px;
  color: var(--plum-soft);
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 10px;
}
.mini-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mini-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--plum);
  border-top: 1px solid rgba(201, 139, 135, 0.2);
  padding-top: 8px;
}
.mini-summary-total strong {
  font-family: var(--font-heading);
  color: var(--rose-deep);
  font-size: 17px;
}

/* PLACE ORDER BUTTON & PREVIEW NOTICE */
.checkout-place-order-btn {
  width: 100%;
  justify-content: center;
  opacity: 0.85;
}
.checkout-preview-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: var(--plum-soft);
  margin-top: 10px;
  text-align: center;
  background: rgba(201, 139, 135, 0.1);
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid rgba(201, 139, 135, 0.2);
}
