/* ===================== DESIGN TOKENS ===================== */
:root{
  --cream: #fdf6f2;
  --cream-2: #f8ebe5;
  --surface: #ffffff;
  --charcoal: #241a1c;
  --ink-muted: #7d6a6c;
  --blush: #db6d89;
  --blush-deep: #b84e6c;
  --blush-pale: #fbe3ea;
  --gold: #c9a06a;
  --gold-deep: #a5794a;
  --dark: #211417;
  --dark-2: #2c1c20;
  --line: #ecdcd7;
  --red: #d1495b;
  --shadow: 0 18px 40px -20px rgba(90, 40, 55, .28);
  --radius: 14px;
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Montserrat', sans-serif;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font-family: inherit; cursor:pointer; }
h1,h2,h3,h4{ font-family: var(--font-serif); font-weight: 500; margin:0; color: var(--charcoal); }
em{ font-style: italic; color: var(--blush-deep); font-weight: 500; }
p{ margin:0; line-height:1.6; color: var(--ink-muted); }

.eyebrow{
  display:block;
  font-family: var(--font-sans);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: .5rem;
}

.section-head{ text-align:center; max-width: 640px; margin: 0 auto 2.5rem; padding: 0 1.5rem; }
.section-title{ font-size: clamp(1.9rem, 3.6vw, 2.7rem); }

/* ===================== BUTTONS ===================== */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: .85rem 1.9rem;
  border-radius: 999px;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:active{ transform: scale(.97); }
.btn-gold{ background: linear-gradient(135deg, var(--gold), var(--gold-deep)); color: #2a1c10; }
.btn-gold:hover{ filter: brightness(1.06); }
.btn-outline{ background: transparent; border-color: var(--charcoal); color: var(--charcoal); }
.btn-outline:hover{ background: var(--charcoal); color: #fff; }
.btn-outline-light{ background: transparent; border-color: rgba(255,255,255,.6); color:#fff; }
.btn-outline-light:hover{ background:#fff; color: var(--dark); }
.btn-block{ width:100%; }

/* ===================== HEADER ===================== */
.site-header{
  position: sticky; top:0; z-index: 60;
  background: rgba(253,246,242,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner{
  max-width: 1360px; margin:0 auto;
  display:flex; align-items:center; justify-content:space-between;
  padding: .85rem 1.5rem;
  gap: 1rem;
}
.header-left{ display:flex; align-items:center; gap: .9rem; }
.hamburger{ display:none; background:none; border:none; width:34px; height:26px; flex-direction:column; justify-content:space-between; padding:2px; }
.hamburger span{ display:block; height:2px; background: var(--charcoal); border-radius:2px; }

.brand{ display:flex; align-items:center; gap:.65rem; }
.brand-mark{
  width: 42px; height:42px; border-radius:50%;
  background: linear-gradient(145deg, var(--blush), var(--blush-deep));
  color:#fff; font-family: var(--font-serif); font-style: italic; font-size:1.15rem;
  display:flex; align-items:center; justify-content:center;
  box-shadow: var(--shadow);
  flex-shrink:0;
}
.brand-text{ display:flex; flex-direction:column; line-height:1.15; }
.brand-name{ font-family: var(--font-serif); font-size:1.35rem; font-weight:500; }
.brand-name em{ color: var(--gold-deep); }
.brand-sub{ font-size:.58rem; letter-spacing:.16em; color: var(--ink-muted); font-weight:600; }

.nav-desktop{ display:flex; gap: 1.9rem; }
.nav-link{ font-size:.78rem; letter-spacing:.05em; font-weight:500; color: var(--charcoal); position:relative; padding-bottom:4px; }
.nav-link::after{ content:''; position:absolute; left:0; right:0; bottom:0; height:2px; background: var(--blush); transform: scaleX(0); transition: transform .25s ease; }
.nav-link:hover::after, .nav-link.active::after{ transform: scaleX(1); }

.header-right{ display:flex; align-items:center; gap:.4rem; }
.icon-btn{ position:relative; background:none; border:none; color: var(--charcoal); padding:.5rem; border-radius:50%; display:flex; }
.icon-btn:hover{ background: var(--blush-pale); }
.badge-count{
  position:absolute; top:0; right:0;
  background: var(--blush-deep); color:#fff; font-size:.62rem; font-weight:700;
  width:16px; height:16px; border-radius:50%; display:flex; align-items:center; justify-content:center;
}
.btn-book-nav{ margin-left:.5rem; }

.nav-mobile{
  display:none; flex-direction:column; gap: 0;
  background: var(--surface); border-top:1px solid var(--line);
  padding: .5rem 1.5rem 1.2rem;
}
.nav-mobile a{ padding: .75rem 0; border-bottom:1px solid var(--line); font-size:.85rem; }
.nav-mobile .btn{ margin-top: 1rem; }
.site-header.menu-open .nav-mobile{ display:flex; }

@media (max-width: 900px){
  .nav-desktop{ display:none; }
  .hamburger{ display:flex; }
  .brand-sub{ display:none; }
}

/* ===================== HERO ===================== */
.hero{ position:relative; min-height: 92vh; display:flex; align-items:center; overflow:hidden; }
.hero-media{ position:absolute; inset:0; }
.hero-media img{ width:100%; height:100%; object-fit: cover; object-position: center 20%; }
.hero-overlay{
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(33,20,23,.94) 0%, rgba(33,20,23,.78) 38%, rgba(219,109,137,.28) 68%, rgba(219,109,137,.05) 100%);
}
.hero-content{ position:relative; z-index:2; max-width: 620px; padding: 2rem 1.75rem; color:#fff; margin-left: 4vw; }
.hero .eyebrow{ color: var(--gold); }
.hero-title{ font-size: clamp(2.6rem, 6vw, 4.6rem); color:#fff; line-height:1.05; margin-bottom: 1.1rem; }
.hero-title em{ color: var(--blush); }
.hero-desc{ color: rgba(255,255,255,.82); font-size: 1rem; max-width: 460px; margin-bottom: 2rem; }
.hero-cta{ display:flex; gap: .9rem; flex-wrap:wrap; }

/* ===================== FEATURES BAR ===================== */
.features-bar{
  background: var(--dark); color:#f4e9e2;
  display:flex; flex-wrap:wrap; justify-content:center;
  gap: 2.5rem 3rem; padding: 1.6rem 1.5rem;
}
.feature-item{ display:flex; align-items:center; gap:.65rem; font-size:.78rem; letter-spacing:.03em; color: #f0e2dc; }
.feature-item svg{ color: var(--gold); flex-shrink:0; }

/* ===================== COLLECTION / TABS / GRID ===================== */
.collection{ max-width: 1360px; margin: 0 auto; padding: 5.5rem 1.5rem 2rem; }
.tabs{ display:flex; gap:2rem; overflow-x:auto; justify-content:center; margin-bottom: 2.5rem; padding-bottom:.4rem; scrollbar-width:none; }
.tabs::-webkit-scrollbar{ display:none; }
.tab{
  background:none; border:none; white-space:nowrap;
  font-size:.82rem; letter-spacing:.06em; text-transform:uppercase; font-weight:600;
  color: var(--ink-muted); padding: .4rem .1rem; border-bottom: 2px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.tab:hover{ color: var(--charcoal); }
.tab.active{ color: var(--blush-deep); border-color: var(--gold); }

.product-grid{
  display:grid; grid-template-columns: repeat(4, 1fr); gap: 1.8rem;
}
@media (max-width: 1100px){ .product-grid{ grid-template-columns: repeat(3,1fr); } }
@media (max-width: 760px){ .product-grid{ grid-template-columns: repeat(2,1fr); gap:1rem; } }
@media (max-width: 480px){ .product-grid{ grid-template-columns: 1fr; } }

.product-card{
  background: var(--surface); border-radius: var(--radius); overflow:hidden;
  box-shadow: var(--shadow); position:relative; display:flex; flex-direction:column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.product-card:hover{ transform: translateY(-4px); }
.product-card-media{ position:relative; aspect-ratio: 3/4; overflow:hidden; cursor:pointer; }
.product-card-media img{ width:100%; height:100%; object-fit:cover; transition: transform .5s ease; }
.product-card:hover .product-card-media img{ transform: scale(1.06); }

.badge-pill{
  position:absolute; top:.75rem; left:.75rem; z-index:2;
  font-size:.62rem; letter-spacing:.08em; text-transform:uppercase; font-weight:700;
  padding: .3rem .65rem; border-radius:999px; color:#fff;
}
.badge-pill.best-seller{ background: var(--red); }
.badge-pill.new{ background: var(--gold-deep); }
.badge-pill:empty{ display:none; }

.wish-toggle{
  position:absolute; top:.7rem; right:.7rem; z-index:2;
  background: rgba(255,255,255,.85); border:none; border-radius:50%;
  width:32px; height:32px; display:flex; align-items:center; justify-content:center;
  color: var(--blush-deep);
}
.wish-toggle.active svg path{ fill: var(--blush-deep); }

.quick-add{
  position:absolute; left:.6rem; right:.6rem; bottom:-46px; z-index:2;
  background: var(--charcoal); color:#fff; border:none; border-radius: 999px;
  padding:.65rem; font-size:.72rem; letter-spacing:.08em; text-transform:uppercase; font-weight:600;
  transition: bottom .25s ease;
}
.product-card:hover .quick-add{ bottom:.6rem; }

.product-card-body{ padding: 1rem 1.1rem 1.3rem; cursor:pointer; }
.product-name{ font-size:1.08rem; font-weight:600; margin-bottom:.2rem; font-family: var(--font-sans); color: var(--charcoal); }
.product-sub{ font-size:.72rem; color: var(--ink-muted); margin-bottom:.5rem; }
.product-price{ font-family: var(--font-serif); font-size:1.2rem; color: var(--gold-deep); font-weight:600; }
.product-price .from{ font-size:.65rem; text-transform:uppercase; letter-spacing:.08em; color: var(--ink-muted); font-family: var(--font-sans); margin-right:.3rem; }

/* ===================== CATEGORY GRID ===================== */
.category-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:1.2rem; max-width:1360px; margin: 3rem auto; padding: 0 1.5rem; }
.category-card{ position:relative; aspect-ratio: 3/3.6; border-radius: var(--radius); overflow:hidden; display:block; }
.category-card img{ width:100%; height:100%; object-fit:cover; transition: transform .5s ease; }
.category-card:hover img{ transform: scale(1.05); }
.category-card-overlay{ position:absolute; inset:0; background: linear-gradient(0deg, rgba(33,20,23,.82) 0%, rgba(33,20,23,.1) 55%, rgba(33,20,23,.15) 100%); }
.category-card-text{ position:absolute; left:1.3rem; bottom:1.3rem; display:flex; flex-direction:column; color:#fff; }
.cat-label{ font-size:.68rem; letter-spacing:.16em; text-transform:uppercase; color: var(--gold); margin-bottom:.2rem; }
.cat-name{ font-family: var(--font-serif); font-size:1.7rem; }
@media (max-width: 760px){ .category-grid{ grid-template-columns:1fr; } }

/* ===================== PROMO BANNER ===================== */
.promo-banner{
  background: var(--dark); color:#fff; text-align:center;
  padding: 5rem 1.5rem; display:flex; flex-direction:column; align-items:center; gap:1.4rem;
}
.promo-title{ font-size: clamp(3rem, 12vw, 8.5rem); line-height:.98; color:#fff; }
.promo-title em{ color: var(--blush); }
.promo-sub{ color: rgba(255,255,255,.65); font-size:.9rem; }

/* ===================== WHY US ===================== */
.why-us{ max-width:1360px; margin:0 auto; padding: 5.5rem 1.5rem; }
.why-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap:1.6rem; }
.why-card{ background: var(--surface); border-radius: var(--radius); padding: 1.9rem 1.6rem; box-shadow: var(--shadow); }
.why-card svg{ color: var(--blush-deep); margin-bottom:1rem; }
.why-card h3{ font-size:1.15rem; margin-bottom:.5rem; font-family: var(--font-sans); font-weight:600; }
.why-card p{ font-size:.85rem; }
@media (max-width: 1000px){ .why-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 500px){ .why-grid{ grid-template-columns: 1fr; } }

/* ===================== GALLERY SECTIONS ===================== */
.gallery-section{ max-width:1360px; margin:0 auto; padding: 5.5rem 1.5rem; }
.gallery-section.alt{ background: var(--cream-2); max-width:none; border-radius: 0; }
.gallery-section.alt > *{ max-width:1360px; margin-left:auto; margin-right:auto; }

.gallery-filters{ display:flex; justify-content:center; gap:.7rem; margin-bottom:2rem; }
.filter-pill{
  background: var(--surface); border:1px solid var(--line); border-radius:999px;
  padding:.5rem 1.2rem; font-size:.75rem; letter-spacing:.04em; font-weight:500; color: var(--ink-muted);
  transition: all .2s ease;
}
.filter-pill.active, .filter-pill:hover{ background: var(--blush); border-color: var(--blush); color:#fff; }

.gallery-grid{
  display:grid; grid-template-columns: repeat(5, 1fr); gap: 1rem;
}
.gallery-grid-4{ grid-template-columns: repeat(4,1fr); }
@media (max-width: 1100px){ .gallery-grid{ grid-template-columns: repeat(3,1fr); } .gallery-grid-4{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px){ .gallery-grid{ grid-template-columns: repeat(2,1fr); } }

.gallery-item{ position:relative; border-radius: 10px; overflow:hidden; cursor:pointer; aspect-ratio: 3/4; }
.gallery-item img{ width:100%; height:100%; object-fit:cover; transition: transform .4s ease; }
.gallery-item:hover img{ transform: scale(1.08); }
.gallery-item-overlay{
  position:absolute; inset:0; background: linear-gradient(0deg, rgba(33,20,23,.75), transparent 55%);
  display:flex; align-items:flex-end; padding:.7rem; opacity:0; transition: opacity .25s ease;
}
.gallery-item:hover .gallery-item-overlay{ opacity:1; }
.gallery-item-overlay span{ color:#fff; font-size:.72rem; font-weight:600; }

/* ===================== TESTIMONIALS ===================== */
.testimonials{ background: var(--dark-2); color:#f4e9e2; padding: 5.5rem 1.5rem; }
.testimonials .section-title{ color:#fff; }
.testimonials .eyebrow{ color: var(--gold); }
.testimonial-grid{ max-width:1200px; margin:0 auto; display:grid; grid-template-columns: repeat(3,1fr); gap:1.6rem; }
.testimonial-card{ background: rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 1.8rem; }
.stars{ color: var(--gold); letter-spacing:.15em; margin-bottom: .9rem; }
.testimonial-card p{ color: rgba(244,233,226,.85); font-size:.9rem; font-style:italic; margin-bottom:1.1rem; }
.reviewer{ font-size:.75rem; letter-spacing:.04em; color: var(--gold); font-weight:600; }
.testimonial-note{ text-align:center; margin-top:2rem; font-size:.68rem; color: rgba(244,233,226,.4); letter-spacing:.05em; }
@media (max-width: 900px){ .testimonial-grid{ grid-template-columns:1fr; } }

/* ===================== NEWSLETTER ===================== */
.newsletter{ text-align:center; padding: 5rem 1.5rem; }
.newsletter h2{ font-size: clamp(1.8rem,4vw,2.6rem); margin-bottom:.6rem; }
.newsletter p{ margin-bottom: 2rem; }
.newsletter-form{ display:flex; max-width: 460px; margin:0 auto; gap:.7rem; flex-wrap:wrap; justify-content:center; }
.newsletter-form input{
  flex:1; min-width:220px; padding: .9rem 1.2rem; border-radius:999px; border:1px solid var(--line);
  background: var(--surface); font-family: inherit; font-size:.85rem;
}
.newsletter-form input:focus{ outline: 2px solid var(--blush); }

/* ===================== FOOTER ===================== */
.site-footer{ background: var(--dark); color: #efe2dc; }
.footer-top{
  max-width:1360px; margin:0 auto; padding: 4rem 1.5rem 2.5rem;
  display:flex; justify-content:space-between; gap: 3rem; flex-wrap:wrap;
}
.footer-brand{ max-width: 320px; }
.footer-brand p{ color: rgba(239,226,220,.65); font-size:.85rem; margin: 1rem 0 1.3rem; }
.footer-brand .brand-name{ color:#fff; }
.footer-brand .brand-sub{ color: rgba(239,226,220,.5); }
.social-row{ display:flex; gap:.6rem; }
.icon-circle{
  width:36px; height:36px; border-radius:50%; border:1px solid rgba(239,226,220,.25);
  display:flex; align-items:center; justify-content:center; color:#efe2dc; transition: all .2s ease;
}
.icon-circle:hover{ background: var(--blush); border-color: var(--blush); }

.footer-links{ display:flex; gap: 3.5rem; flex-wrap:wrap; }
.footer-col{ display:flex; flex-direction:column; gap:.6rem; }
.footer-col h4{ font-family: var(--font-sans); font-size:.75rem; letter-spacing:.12em; text-transform:uppercase; color: var(--gold); margin-bottom:.4rem; }
.footer-col a{ font-size:.83rem; color: rgba(239,226,220,.75); }
.footer-col a:hover{ color:#fff; }

.footer-bottom{
  border-top:1px solid rgba(239,226,220,.12);
  max-width:1360px; margin:0 auto; padding: 1.3rem 1.5rem;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:.5rem;
  font-size:.72rem; color: rgba(239,226,220,.55);
}

/* ===================== WHATSAPP FAB ===================== */
.whatsapp-fab{
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 50;
  width: 58px; height:58px; border-radius:50%;
  background: #25D366; color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 12px 30px -8px rgba(37,211,102,.6);
  transition: transform .2s ease;
}
.whatsapp-fab:hover{ transform: scale(1.07); }

/* ===================== OVERLAYS: SCRIM / SEARCH / DRAWERS / MODALS ===================== */
.scrim{
  position: fixed; inset:0; background: rgba(33,20,23,.55);
  opacity:0; pointer-events:none; transition: opacity .3s ease; z-index: 70;
}
.scrim.visible{ opacity:1; pointer-events:auto; }

.overlay-close{
  background:none; border:none; font-size:1.6rem; line-height:1; color: var(--charcoal);
  cursor:pointer; padding:.2rem .5rem;
}

.search-overlay{
  position: fixed; inset:0; z-index: 80;
  background: rgba(253,246,242,.98);
  display:flex; align-items:flex-start; justify-content:center;
  padding-top: 12vh;
  opacity:0; pointer-events:none; transform: translateY(-12px);
  transition: opacity .25s ease, transform .25s ease;
}
.search-overlay.open{ opacity:1; pointer-events:auto; transform: translateY(0); }
.search-overlay .overlay-close{ position:absolute; top:1.5rem; right:2rem; font-size:2rem; }
.search-box{ width:min(680px, 90vw); }
#searchInput{
  width:100%; font-family: var(--font-serif); font-size:2rem; font-style:italic;
  border:none; border-bottom: 2px solid var(--charcoal); background:transparent; padding:.6rem 0;
}
#searchInput:focus{ outline:none; }
.search-results{ margin-top:2rem; display:grid; grid-template-columns: repeat(2,1fr); gap:1rem; }
.search-result-item{ display:flex; gap:.9rem; align-items:center; padding:.6rem; border-radius:10px; cursor:pointer; }
.search-result-item:hover{ background: var(--blush-pale); }
.search-result-item img{ width:56px; height:70px; object-fit:cover; border-radius:6px; }
.search-result-item .sr-name{ font-weight:600; font-size:.85rem; }
.search-result-item .sr-price{ font-size:.78rem; color: var(--gold-deep); }
.search-empty{ color: var(--ink-muted); font-size:.85rem; padding: .6rem; }

.drawer{
  position: fixed; top:0; right:0; bottom:0; width: min(420px, 92vw); z-index: 85;
  background: var(--surface); box-shadow: -20px 0 60px -20px rgba(0,0,0,.3);
  display:flex; flex-direction:column;
  transform: translateX(100%); transition: transform .3s ease;
}
.drawer.open{ transform: translateX(0); }
.drawer-head{ display:flex; justify-content:space-between; align-items:center; padding: 1.3rem 1.5rem; border-bottom:1px solid var(--line); }
.drawer-head h3{ font-size:1.3rem; }
.drawer-body{ flex:1; overflow-y:auto; padding: 1rem 1.5rem; }
.drawer-footer{ padding: 1.2rem 1.5rem 1.5rem; border-top:1px solid var(--line); }
.cart-subtotal{ display:flex; justify-content:space-between; font-family: var(--font-serif); font-size:1.2rem; margin-bottom: 1rem; }
.drawer-empty{ color: var(--ink-muted); font-size:.85rem; text-align:center; padding: 3rem 0; }

.drawer-item{ display:flex; gap: .9rem; padding: .9rem 0; border-bottom:1px solid var(--line); }
.drawer-item img{ width:64px; height:80px; object-fit:cover; border-radius:8px; flex-shrink:0; }
.drawer-item-info{ flex:1; min-width:0; display:flex; flex-direction:column; gap:.15rem; }
.drawer-item-info .di-name{ font-weight:600; font-size:.87rem; }
.drawer-item-info .di-sub{ font-size:.72rem; color: var(--ink-muted); }
.drawer-item-info .di-price{ font-size:.85rem; color: var(--gold-deep); font-weight:600; }
.drawer-item-actions{ display:flex; align-items:center; flex-wrap:wrap; gap:.5rem; margin-top:.3rem; }
.drawer-item-actions button{ background: var(--cream-2); border:none; width:22px; height:22px; border-radius:50%; font-size:.85rem; flex-shrink:0; }
.drawer-item-remove{ background:none; border:none; color: var(--ink-muted); font-size:.72rem; text-decoration:underline; margin-left:auto; width:auto !important; height:auto !important; border-radius:0 !important; white-space:nowrap; padding:2px; }

.modal{
  position: fixed; inset:0; z-index: 90;
  display:flex; align-items:center; justify-content:center; padding: 1.5rem;
  opacity:0; pointer-events:none; transition: opacity .25s ease;
}
.modal.open{ opacity:1; pointer-events:auto; }
.modal-panel{
  background: var(--surface); border-radius: 18px; max-width: 900px; width:100%;
  max-height: 88vh; overflow-y:auto; position:relative; padding: 1.5rem;
  transform: translateY(16px) scale(.98); transition: transform .25s ease;
  box-shadow: 0 40px 90px -30px rgba(33,20,23,.5);
}
.modal.open .modal-panel{ transform: translateY(0) scale(1); }
.modal-panel .overlay-close{ position:absolute; top:.8rem; right:1rem; z-index:5; }

.product-modal-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.product-modal-image{ position:relative; border-radius: 12px; overflow:hidden; aspect-ratio: 3/4; }
.product-modal-image img{ width:100%; height:100%; object-fit:cover; }
.product-modal-info{ display:flex; flex-direction:column; padding: 1rem .5rem 1rem 0; }
.product-modal-info h3{ font-size:1.7rem; margin-bottom:.3rem; }
.product-modal-sub{ font-size:.8rem; margin-bottom:.8rem; }
.product-modal-price{ font-family: var(--font-serif); font-size:1.6rem; color: var(--gold-deep); font-weight:600; margin-bottom:1.4rem; }

.chip-label{ font-size:.68rem; letter-spacing:.1em; text-transform:uppercase; color: var(--ink-muted); font-weight:600; display:block; margin-bottom:.5rem; }
.chip-group{ margin-bottom:1.4rem; }
.chips{ display:flex; flex-wrap:wrap; gap:.5rem; }
.chip{
  border:1px solid var(--line); background: var(--cream-2); border-radius:999px;
  padding:.45rem 1rem; font-size:.78rem; font-weight:500; transition: all .2s ease;
}
.chip.active{ background: var(--charcoal); border-color: var(--charcoal); color:#fff; }

.qty-stepper{ margin-bottom: 1.6rem; }
.stepper{ display:inline-flex; align-items:center; gap: 1rem; border:1px solid var(--line); border-radius:999px; padding: .35rem .5rem; }
.stepper button{ width:28px; height:28px; border-radius:50%; border:none; background: var(--cream-2); font-size:1rem; }
.product-modal-actions{ display:flex; gap: .8rem; margin-top:auto; flex-wrap:wrap; }
.product-modal-actions .btn{ flex:1; min-width:160px; }

@media (max-width: 720px){ .product-modal-grid{ grid-template-columns:1fr; } }

.lightbox-panel{ max-width: 640px; padding: 0; overflow:hidden; }
.lightbox-panel img{ width:100%; max-height:60vh; object-fit:cover; }
.lightbox-panel .overlay-close{ background: rgba(255,255,255,.85); border-radius:50%; width:34px; height:34px; display:flex; align-items:center; justify-content:center; padding:0; }
.lightbox-info{ padding: 1.3rem 1.5rem 1.6rem; display:flex; justify-content:space-between; align-items:center; gap:1rem; flex-wrap:wrap; }
.lightbox-info h3{ font-size:1.3rem; }

/* ===================== BOOKING MODAL ===================== */
.booking-modal-panel{ max-width: 560px; }
.booking-steps{ display:flex; align-items:center; justify-content:center; gap:.4rem; margin: .5rem 0 2rem; }
.step-dot{
  width:28px; height:28px; border-radius:50%; background: var(--cream-2); color: var(--ink-muted);
  display:flex; align-items:center; justify-content:center; font-size:.78rem; font-weight:700;
}
.step-dot.active{ background: var(--blush); color:#fff; }
.step-dot.done{ background: var(--gold); color:#2a1c10; }
.step-line{ width:36px; height:2px; background: var(--line); }

.booking-step h3{ text-align:center; font-size:1.5rem; margin-bottom: 1.5rem; }

.service-options{ display:grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.service-card{
  border:1px solid var(--line); background: var(--cream-2); border-radius: 12px;
  padding: 1.1rem; text-align:left; display:flex; flex-direction:column; gap:.3rem;
  transition: all .2s ease;
}
.service-card:hover, .service-card.selected{ border-color: var(--blush); background: var(--blush-pale); }
.service-name{ font-weight:600; font-size:.92rem; }
.service-desc{ font-size:.72rem; color: var(--ink-muted); }
@media (max-width: 480px){ .service-options{ grid-template-columns:1fr; } }

.calendar-head{ display:flex; align-items:center; justify-content:space-between; margin-bottom: 1rem; }
.calendar-head button{ background: var(--cream-2); border:none; width:32px; height:32px; border-radius:50%; }
.calendar-head span{ font-family: var(--font-serif); font-size:1.1rem; }
.calendar-grid{ display:grid; grid-template-columns: repeat(7,1fr); gap:.4rem; margin-bottom: 1.4rem; }
.cal-day{
  aspect-ratio: 1; border-radius: 8px; border:1px solid var(--line); background: var(--surface);
  display:flex; flex-direction:column; align-items:center; justify-content:center; font-size:.78rem;
  cursor:pointer;
}
.cal-day .dow{ font-size:.58rem; text-transform:uppercase; color: var(--ink-muted); }
.cal-day.past{ opacity:.3; pointer-events:none; }
.cal-day.selected{ background: var(--blush); border-color: var(--blush); color:#fff; }
.cal-day.selected .dow{ color: rgba(255,255,255,.8); }

.time-slots{ display:flex; flex-wrap:wrap; gap:.55rem; margin-bottom: 1.6rem; }
.time-slot{
  border:1px solid var(--line); background: var(--surface); border-radius: 999px;
  padding: .5rem 1rem; font-size:.78rem;
}
.time-slot.taken{ text-decoration: line-through; color: var(--ink-muted); background: var(--cream-2); pointer-events:none; opacity:.55; }
.time-slot.selected{ background: var(--charcoal); border-color: var(--charcoal); color:#fff; }

.booking-nav{ display:flex; justify-content:space-between; gap:.8rem; }
.booking-form{ display:flex; flex-direction:column; gap: 1rem; }
.booking-form label{ display:flex; flex-direction:column; gap:.4rem; font-size:.75rem; font-weight:600; color: var(--ink-muted); text-transform:uppercase; letter-spacing:.05em; }
.booking-form input, .booking-form textarea{
  font-family: var(--font-sans); font-size:.9rem; padding:.75rem .9rem; border-radius:10px;
  border:1px solid var(--line); background: var(--cream-2); font-weight:400; text-transform:none; letter-spacing:normal;
}
.booking-summary{ background: var(--cream-2); border-radius:10px; padding: .9rem 1rem; font-size:.8rem; color: var(--ink-muted); }
.booking-summary strong{ color: var(--charcoal); }

.booking-success{ text-align:center; padding: 2rem 0; }
.success-tick{
  width:64px; height:64px; border-radius:50%; background: var(--blush); color:#fff;
  display:flex; align-items:center; justify-content:center; font-size:1.7rem; margin: 0 auto 1.2rem;
}
.booking-success p{ max-width: 380px; margin: 0 auto 1.6rem; font-size:.88rem; }

body.no-scroll{ overflow:hidden; }
