:root{
    --bg:#12100d;
    --bg-panel:#1a1712;
    --bg-panel-2:#1f1c16;
    --ink:#ede7da;
    --ink-soft:#c9c0ac;
    --ink-dim:#8b8271;
    --accent:#bd9358;
    --accent-soft:#8c6d40;
    --line:rgba(237,231,218,0.13);
    --line-strong:rgba(237,231,218,0.22);
    --radius-s:3px;
    --radius-m:4px;
    --maxw:1240px;
    --ease:cubic-bezier(.22,.61,.36,1);
  }

  *{box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    margin:0;
    background:var(--bg);
    color:var(--ink);
    font-family:'Inter',sans-serif;
    -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{
    font-family:'Fraunces',serif;
    font-weight:500;
    line-height:1.08;
    letter-spacing:-0.01em;
    margin:0;
  }
  p{margin:0;}

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

  @media(prefers-reduced-motion: reduce){
    *{animation-duration:0.001ms !important; transition-duration:0.001ms !important;}
  }

  /* ---------- Buttons ---------- */
  .btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:15px 28px;
    font-size:14px;
    font-weight:500;
    letter-spacing:0.02em;
    border-radius:var(--radius-s);
    border:1px solid transparent;
    transition:transform .35s var(--ease), background .3s, border-color .3s, opacity .3s;
    white-space:nowrap;
  }
  .btn-primary{
    background:var(--accent);
    color:#15130f;
  }
  .btn-primary:hover{background:#cba569;}
  .btn-ghost{
    border-color:var(--line-strong);
    color:var(--ink);
    background:transparent;
  }
  .btn-ghost:hover{border-color:var(--accent);color:var(--accent);}
  .btn svg{width:16px;height:16px;flex:none;}
  .btn:active{transform:scale(.97);}
  @media(prefers-reduced-motion:no-preference){
    .btn{will-change:transform;}
  }

  /* ---------- Premium WhatsApp CTA system ---------- */
  /* One consistent, refined WhatsApp treatment used everywhere: header, hero,
     product cards, location, bottom band, footer and the mobile sticky bar.
     Dark/gold surface with a muted emerald accent reserved for the icon only —
     never a plain WhatsApp-green button. */
  .btn-whatsapp{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    min-height:50px;
    padding:14px 26px;
    border-radius:var(--radius-s);
    border:1px solid var(--line-strong);
    background:linear-gradient(180deg, rgba(237,231,218,0.055), rgba(237,231,218,0.012));
    color:var(--ink);
    font-size:14px;
    font-weight:500;
    letter-spacing:0.01em;
    white-space:nowrap;
    box-shadow:0 1px 0 rgba(255,255,255,0.05) inset, 0 10px 22px -16px rgba(0,0,0,0.75);
    transition:transform .32s var(--ease), box-shadow .32s var(--ease), border-color .3s, background .3s, color .3s;
    -webkit-tap-highlight-color:transparent;
  }
  .btn-whatsapp svg{
    width:17px;height:17px;
    flex:none;
    color:#4cae7d;
    transition:color .3s;
  }
  .btn-whatsapp:hover{
    border-color:var(--accent);
    transform:translateY(-2px);
    background:linear-gradient(180deg, rgba(189,147,88,0.12), rgba(189,147,88,0.025));
    box-shadow:0 18px 34px -18px rgba(0,0,0,0.8), 0 1px 0 rgba(255,255,255,0.06) inset;
  }
  .btn-whatsapp:hover svg{color:#5fcf95;}
  .btn-whatsapp:active{
    transform:translateY(0) scale(.97);
    box-shadow:0 6px 14px -10px rgba(0,0,0,0.7);
  }
  /* Stronger variant for the hero and full-width bottom-band CTAs — same family,
     just a touch larger and with a faint gold wash so it reads as the primary action. */
  .btn-whatsapp.is-prominent{
    padding:17px 30px;
    font-size:15px;
    min-height:56px;
    border-color:rgba(189,147,88,0.4);
    background:linear-gradient(180deg, rgba(189,147,88,0.14), rgba(189,147,88,0.03));
  }
  .btn-whatsapp.is-prominent:hover{border-color:var(--accent);}
  .btn-whatsapp.is-prominent svg{width:18px;height:18px;}

  /* Compact WhatsApp CTA used inside product cards */
  .wa-mini{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:7px;
    min-height:42px;
    padding:10px 10px;
    border:1px solid var(--line-strong);
    border-radius:var(--radius-s);
    background:linear-gradient(180deg, rgba(237,231,218,0.055), rgba(237,231,218,0.012));
    color:var(--ink);
    font-size:12.5px;
    font-weight:500;
    line-height:1.2;
    text-align:center;
    transition:transform .3s var(--ease), border-color .3s, background .3s, box-shadow .3s;
    -webkit-tap-highlight-color:transparent;
  }
  .wa-mini svg{width:14px;height:14px;flex:none;color:#4cae7d;transition:color .3s;}
  .wa-mini:hover{
    border-color:var(--accent);
    transform:translateY(-1px);
    background:linear-gradient(180deg, rgba(189,147,88,0.12), rgba(189,147,88,0.02));
    box-shadow:0 10px 20px -14px rgba(0,0,0,0.75);
  }
  .wa-mini:hover svg{color:#5fcf95;}
  .wa-mini:active{transform:translateY(0) scale(.96);}
  @media(max-width:360px){
    .wa-mini{font-size:11.5px;padding:9px 6px;gap:6px;}
    .wa-mini svg{width:13px;height:13px;}
  }

  /* ---------- Announcement bar ---------- */
  .announce{
    background:#0c0b09;
    color:var(--ink-dim);
    font-size:12px;
    letter-spacing:0.03em;
    text-align:center;
    padding:9px 16px;
    border-bottom:1px solid var(--line);
  }
  .announce strong{color:var(--ink-soft);font-weight:500;}

  /* ---------- Header ---------- */
  header{
    position:sticky;
    top:0;
    z-index:60;
    background:rgba(18,16,13,0.86);
    backdrop-filter:blur(10px);
    border-bottom:1px solid transparent;
    transition:border-color .3s, background .3s;
  }
  header.scrolled{border-bottom-color:var(--line);background:rgba(18,16,13,0.97);}
  .header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:64px;
  }
  @media(min-width:600px){.header-inner{height:76px;}}
  .logo{
    font-family:'Fraunces',serif;
    font-size:18px;
    font-weight:500;
    letter-spacing:0.02em;
    display:flex;
    align-items:center;
    gap:8px;
  }
  @media(min-width:600px){.logo{font-size:21px;gap:10px;}}
  .logo span{color:var(--accent);}
  .logo-mark{
    width:36px;height:36px;
    border-radius:50%;
    object-fit:cover;
    flex:none;
    background:#000;
  }
  @media(min-width:600px){.logo-mark{width:42px;height:42px;}}
  .footer-brand .logo-mark{width:52px;height:52px;}
  .mobile-menu .logo-mark{width:40px;height:40px;}
  nav.primary-nav{
    display:none;
    gap:34px;
    font-size:13.5px;
    color:var(--ink-soft);
  }
  nav.primary-nav a{position:relative;transition:color .3s;}
  nav.primary-nav a:hover{color:var(--ink);}
  nav.primary-nav a::after{
    content:'';
    position:absolute;left:0;bottom:-6px;
    width:0;height:1px;background:var(--accent);
    transition:width .3s var(--ease);
  }
  nav.primary-nav a:hover::after{width:100%;}
  .header-actions{display:flex;align-items:center;gap:14px;}
  .icon-btn{
    width:40px;height:40px;
    display:flex;align-items:center;justify-content:center;
    border:1px solid var(--line-strong);
    border-radius:50%;
    color:var(--ink-soft);
    transition:border-color .3s,color .3s,transform .3s var(--ease);
    flex:none;
    -webkit-tap-highlight-color:transparent;
  }
  .icon-btn:hover{border-color:var(--accent);color:var(--accent);}
  .icon-btn:active{transform:scale(.92);}
  .icon-btn svg{width:16px;height:16px;}
  @media(max-width:759px){
    .icon-btn{width:44px;height:44px;}
  }
  .hamburger{display:flex;}
  @media(min-width:900px){
    nav.primary-nav{display:flex;}
    .hamburger{display:none;}
  }
  .header-whatsapp{display:none;}
  @media(min-width:900px){
    .header-whatsapp{display:inline-flex;}
  }

  /* mobile menu */
  .mobile-menu{
    position:fixed;inset:0;
    background:#0e0c0a;
    z-index:80;
    transform:translateX(100%);
    transition:transform .45s var(--ease);
    display:flex;flex-direction:column;
    padding:24px;
  }
  .mobile-menu.open{transform:translateX(0);}
  .mobile-menu-top{display:flex;justify-content:space-between;align-items:center;margin-bottom:56px;}
  .mobile-menu nav{display:flex;flex-direction:column;gap:0;}
  .mobile-menu nav a{
    font-family:'Fraunces',serif;
    font-size:28px;
    font-weight:400;
    padding:16px 0;
    border-bottom:1px solid var(--line);
    color:var(--ink);
  }
  .mobile-menu .mm-cta{margin-top:auto;}

  /* ---------- Hero ---------- */
  .hero{
    position:relative;
    padding:44px 0 52px;
    overflow:hidden;
  }
  .hero-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:32px;
    align-items:center;
  }
  @media(min-width:600px){
    .hero{padding:56px 0 64px;}
  }
  @media(min-width:960px){
    .hero{padding:88px 0 96px;}
    .hero-grid{grid-template-columns:1fr 1fr;gap:60px;}
  }
  .hero-eyebrow{
    font-size:12.5px;
    color:var(--accent);
    margin-bottom:18px;
    display:flex;align-items:center;gap:10px;
  }
  .hero-eyebrow::before{content:'';width:26px;height:1px;background:var(--accent);flex:none;}
  .hero h1{
    font-size:clamp(34px,9vw,68px);
    color:var(--ink);
  }
  .hero h1 em{font-style:italic;color:var(--accent);font-weight:400;}
  .hero-desc{
    margin-top:20px;
    font-size:15.5px;
    line-height:1.65;
    color:var(--ink-soft);
    max-width:440px;
  }
  @media(min-width:600px){
    .hero-desc{margin-top:24px;font-size:16.5px;}
  }
  .hero-ctas{
    margin-top:28px;
    display:flex;
    flex-wrap:wrap;
    gap:12px;
  }
  @media(min-width:600px){.hero-ctas{margin-top:36px;gap:14px;}}
  @media(max-width:479px){
    .hero-ctas{flex-direction:column;align-items:stretch;}
    .hero-ctas .btn{width:100%;}
  }
  .hero-meta{
    margin-top:36px;
    display:flex;
    gap:24px;
    padding-top:24px;
    border-top:1px solid var(--line);
    max-width:440px;
  }
  @media(min-width:600px){.hero-meta{margin-top:48px;gap:32px;padding-top:28px;}}
  .hero-meta div{display:flex;flex-direction:column;gap:4px;}
  .hero-meta strong{font-family:'Fraunces',serif;font-size:21px;font-weight:500;}
  @media(min-width:600px){.hero-meta strong{font-size:24px;}}
  .hero-meta span{font-size:11.5px;color:var(--ink-dim);}

  .hero-visual{
    position:relative;
    aspect-ratio:4/3.4;
    border-radius:var(--radius-m);
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
  }
  @media(min-width:960px){
    .hero-visual{aspect-ratio:4/5;}
  }
  .hero-visual-img{
    width:100%;
    height:100%;
    object-fit:contain;
    object-position:center;
    display:block;
  }
  .hero-visual .tag{
    position:absolute;
    left:20px;bottom:20px;
    background:rgba(14,12,10,0.72);
    backdrop-filter:blur(6px);
    border:1px solid var(--line);
    padding:10px 16px;
    border-radius:var(--radius-s);
    font-size:12px;
    color:var(--ink-soft);
  }
  .hero-visual .tag strong{display:block;font-family:'Fraunces',serif;font-size:15px;color:var(--ink);font-weight:500;}

  /* ---------- Section shell ---------- */
  section{padding:52px 0;}
  @media(min-width:600px){section{padding:64px 0;}}
  @media(min-width:960px){section{padding:76px 0;}}
  .section-head{
    display:flex;
    flex-direction:column;
    gap:14px;
    margin-bottom:44px;
  }
  @media(min-width:760px){
    .section-head{
      flex-direction:row;
      align-items:flex-end;
      justify-content:space-between;
    }
  }
  .section-head h2{font-size:clamp(28px,4vw,38px);}
  .section-head p{color:var(--ink-dim);font-size:14.5px;max-width:380px;}
  .section-link{
    font-size:13.5px;
    color:var(--ink-soft);
    display:inline-flex;
    align-items:center;
    gap:8px;
    flex:none;
    border-bottom:1px solid var(--line-strong);
    padding-bottom:2px;
    transition:color .3s,border-color .3s;
  }
  .section-link:hover{color:var(--accent);border-color:var(--accent);}

  /* ---------- Categories ---------- */
  .cat-scroll{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
  }
  @media(min-width:640px){.cat-scroll{grid-template-columns:repeat(3,1fr);}}
  @media(min-width:960px){.cat-scroll{grid-template-columns:repeat(6,1fr);}}
  .cat-card{
    position:relative;
    aspect-ratio:3/3.6;
    border-radius:var(--radius-m);
    overflow:hidden;
    border:1px solid var(--line);
    background:var(--bg-panel);
  }
  .cat-card .cat-art{
    position:absolute;inset:0;
    background:var(--cat-grad);
    transition:transform .6s var(--ease);
  }
  .cat-card:hover .cat-art{transform:scale(1.08);}
  .cat-card::after{
    content:'';
    position:absolute;inset:0;
    background:linear-gradient(to top,rgba(10,9,7,0.88) 0%,rgba(10,9,7,0.15) 55%,transparent 75%);
  }
  .cat-card .cat-label{
    position:absolute;left:14px;right:14px;bottom:14px;
    z-index:2;
  }
  .cat-card .cat-label strong{
    display:block;
    font-family:'Fraunces',serif;
    font-size:16px;
    font-weight:500;
    color:var(--ink);
  }
  .cat-card .cat-label span{font-size:11.5px;color:var(--ink-dim);}

  /* ---------- Product grid ---------- */
  .product-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
  }
  @media(min-width:480px){.product-grid{gap:18px;}}
  @media(min-width:760px){.product-grid{grid-template-columns:repeat(2,1fr);gap:22px;}}
  @media(min-width:1024px){.product-grid{grid-template-columns:repeat(4,1fr);}}

  .product-card{
    background:var(--bg-panel);
    border:1px solid var(--line);
    border-radius:var(--radius-m);
    overflow:hidden;
    display:flex;
    flex-direction:column;
    transition:border-color .3s;
  }
  .product-card:hover{border-color:var(--line-strong);}
  .product-media{
    position:relative;
    aspect-ratio:1/1.05;
    overflow:hidden;
    background:var(--pm-grad);
  }
  .product-media .glow{
    position:absolute;
    left:50%;top:42%;
    width:38%;height:62%;
    transform:translate(-50%,-50%);
    background:var(--pm-device);
    border-radius:10px;
    box-shadow:0 30px 60px -18px rgba(0,0,0,.6);
    transition:transform .6s var(--ease);
  }
  .product-card:hover .glow{transform:translate(-50%,-50%) scale(1.06);}
  .avail-pill{
    position:absolute;top:12px;left:12px;
    font-size:10.5px;
    letter-spacing:0.02em;
    padding:5px 10px;
    border-radius:20px;
    background:rgba(14,12,10,0.7);
    border:1px solid var(--line);
    color:var(--ink-soft);
    display:flex;align-items:center;gap:6px;
  }
  .avail-pill i{width:6px;height:6px;border-radius:50%;background:#7fae82;display:block;}
  .product-info{padding:14px 14px 16px;display:flex;flex-direction:column;gap:6px;flex:1;}
  @media(min-width:480px){.product-info{padding:16px 16px 18px;}}
  .product-brand{font-size:11px;color:var(--ink-dim);letter-spacing:0.02em;}
  .product-name{font-family:'Fraunces',serif;font-size:15px;font-weight:500;color:var(--ink);line-height:1.25;}
  @media(min-width:480px){.product-name{font-size:16.5px;}}
  .product-price{font-size:13.5px;color:var(--accent);margin-top:2px;}
  @media(min-width:480px){.product-price{font-size:14px;}}
  .product-actions{
    margin-top:10px;
    display:flex;
    flex-direction:column;
    gap:8px;
  }
  @media(min-width:480px){.product-actions{margin-top:12px;}}
  .view-link{
    display:block;
    text-align:center;
    font-size:12px;
    color:var(--ink-dim);
    border-bottom:1px solid transparent;
    padding:6px 0;
  }
  .view-link:hover{color:var(--ink-soft);border-color:var(--line-strong);}

  /* horizontal swipe on small screens for New Arrivals */
  .swipe-row{
    display:flex;
    gap:14px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    scroll-padding-left:24px;
    -webkit-overflow-scrolling:touch;
    padding-bottom:6px;
    margin:0 -24px;
    padding-left:24px;
    padding-right:24px;
  }
  @media(max-width:380px){
    .swipe-row{margin:0 -18px;padding-left:18px;padding-right:18px;scroll-padding-left:18px;}
  }
  .swipe-row::-webkit-scrollbar{display:none;}
  .swipe-row .product-card{min-width:83%;scroll-snap-align:start;scroll-snap-stop:always;}
  @media(min-width:460px){.swipe-row .product-card{min-width:64%;}}
  @media(min-width:640px){.swipe-row .product-card{min-width:44%;}}
  @media(min-width:1024px){
    .swipe-row{display:grid;grid-template-columns:repeat(4,1fr);overflow:visible;margin:0;padding:0;}
    .swipe-row .product-card{min-width:0;}
  }
  /* subtle fade + dot indicator hint that the row scrolls, so a partially
     visible next card reads as an intentional swipe cue, not a cut-off bug */
  .swipe-wrap{position:relative;}
  .swipe-wrap::after{
    content:'';
    position:absolute;
    top:0;right:0;bottom:6px;
    width:40px;
    background:linear-gradient(to right, transparent, var(--bg) 88%);
    pointer-events:none;
  }
  @media(min-width:1024px){.swipe-wrap::after{display:none;}}
  .swipe-hint{
    display:flex;
    align-items:center;
    gap:6px;
    margin-top:14px;
    font-size:11.5px;
    color:var(--ink-dim);
  }
  .swipe-hint svg{width:13px;height:13px;flex:none;}
  @media(min-width:1024px){.swipe-hint{display:none;}}


  /* ---------- Promo banner ---------- */
  .promo{
    position:relative;
    border-radius:var(--radius-m);
    overflow:hidden;
    min-height:420px;
    display:flex;
    align-items:flex-end;
    border:1px solid var(--line);
    background:
      radial-gradient(ellipse 70% 60% at 75% 20%, rgba(189,147,88,0.22), transparent 65%),
      linear-gradient(120deg,#1d1a14,#0c0b09 70%);
  }
  .promo-content{padding:36px;max-width:460px;}
  @media(min-width:760px){.promo-content{padding:56px;}}
  .promo-content .eyebrow{font-size:12px;color:var(--accent);margin-bottom:14px;}
  .promo-content h2{font-size:clamp(30px,4.6vw,44px);color:var(--ink);}
  .promo-content p{margin-top:16px;color:var(--ink-soft);font-size:15px;line-height:1.6;}
  .promo-content .btn{margin-top:28px;}

  /* ---------- Trust section ---------- */
  .trust-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:0;
    border-top:1px solid var(--line);
  }
  @media(min-width:760px){.trust-grid{grid-template-columns:repeat(4,1fr);}}
  .trust-item{
    padding:32px 8px 32px 0;
    border-bottom:1px solid var(--line);
    display:flex;flex-direction:column;gap:14px;
  }
  @media(min-width:760px){
    .trust-item{border-right:1px solid var(--line);padding:32px 28px;}
    .trust-item:last-child{border-right:none;}
  }
  .trust-item svg{width:26px;height:26px;color:var(--accent);}
  .trust-item h3{font-size:17px;font-weight:500;}
  .trust-item p{font-size:13.5px;color:var(--ink-dim);line-height:1.6;}

  /* ---------- Brand showcase ---------- */
  .brand-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:16px;
  }
  @media(min-width:760px){.brand-grid{grid-template-columns:repeat(3,1fr);}}
  .brand-card{
    position:relative;
    padding:32px 26px;
    border:1px solid var(--line);
    border-radius:var(--radius-m);
    min-height:220px;
    display:flex;flex-direction:column;justify-content:flex-end;
    background:var(--bg-panel);
    overflow:hidden;
    transition:border-color .3s;
  }
  .brand-card:hover{border-color:var(--line-strong);}
  .brand-card .bc-glow{
    position:absolute;top:-40px;right:-40px;
    width:160px;height:160px;
    background:radial-gradient(circle,rgba(189,147,88,0.28),transparent 70%);
  }
  .brand-card h3{font-size:21px;font-weight:500;position:relative;}
  .brand-card p{margin-top:8px;font-size:13px;color:var(--ink-dim);position:relative;}
  .brand-card .section-link{margin-top:18px;position:relative;}

  /* ---------- How to order ---------- */
  .steps{
    display:grid;
    grid-template-columns:1fr;
    gap:24px;
  }
  @media(min-width:760px){.steps{grid-template-columns:repeat(3,1fr);}}
  .step-card{
    padding:30px 26px;
    border:1px solid var(--line);
    border-radius:var(--radius-m);
    position:relative;
  }
  .step-num{
    font-family:'Fraunces',serif;
    font-size:14px;
    color:var(--accent);
    margin-bottom:20px;
  }
  .step-card h3{font-size:19px;font-weight:500;margin-bottom:8px;}
  .step-card p{font-size:13.5px;color:var(--ink-dim);line-height:1.6;}
  .step-arrow{
    display:none;
    position:absolute;
    right:-30px;top:50%;
    transform:translateY(-50%);
    color:var(--line-strong);
  }
  @media(min-width:760px){
    .step-card:not(:last-child) .step-arrow{display:block;}
  }

  /* ---------- Location / Visit Us ---------- */
  .location-panel{
    display:grid;
    grid-template-columns:1fr;
    gap:0;
    border:1px solid var(--line);
    border-radius:var(--radius-m);
    overflow:hidden;
  }
  @media(min-width:860px){
    .location-panel{grid-template-columns:1.1fr 1fr;}
  }
  .location-info{
    padding:36px;
    background:var(--bg-panel);
    display:flex;
    flex-direction:column;
    gap:18px;
  }
  @media(min-width:760px){.location-info{padding:48px;}}
  .location-info .eyebrow{font-size:12px;color:var(--accent);}
  .location-info h2{font-size:clamp(26px,4vw,34px);}
  .location-row{
    display:flex;
    gap:14px;
    align-items:flex-start;
    padding-top:14px;
    border-top:1px solid var(--line);
  }
  .location-row svg{width:19px;height:19px;color:var(--accent);flex:none;margin-top:2px;}
  .location-row strong{display:block;font-size:13px;color:var(--ink);font-weight:500;margin-bottom:3px;}
  .location-row span{font-size:13.5px;color:var(--ink-dim);line-height:1.6;}
  .location-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:6px;}
  .location-map{
    position:relative;
    min-height:260px;
    background:
      radial-gradient(ellipse 60% 50% at 30% 30%, rgba(189,147,88,0.16), transparent 65%),
      linear-gradient(135deg,#1d1a14,#0b0a08 75%);
    border-top:1px solid var(--line);
  }
  @media(min-width:860px){.location-map{border-top:none;border-left:1px solid var(--line);}}
  .location-map::before{
    content:'';
    position:absolute;inset:0;
    background-image:
      linear-gradient(var(--line) 1px, transparent 1px),
      linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size:34px 34px;
    opacity:.5;
  }
  .location-pin{
    position:absolute;left:50%;top:50%;
    transform:translate(-50%,-60%);
    display:flex;flex-direction:column;align-items:center;
    gap:10px;
  }
  .location-pin .pin-dot{
    width:16px;height:16px;
    border-radius:50%;
    background:var(--accent);
    box-shadow:0 0 0 8px rgba(189,147,88,0.18);
  }
  .location-pin span{
    font-size:12px;
    color:var(--ink-soft);
    background:rgba(14,12,10,0.7);
    padding:6px 12px;
    border-radius:20px;
    border:1px solid var(--line);
    white-space:nowrap;
  }

  /* ---------- WhatsApp CTA band ---------- */
  .wa-band{
    text-align:center;
    padding:80px 24px;
    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line);
    background:
      radial-gradient(ellipse 60% 90% at 50% 0%, rgba(189,147,88,0.14), transparent 70%);
  }
  .wa-band h2{font-size:clamp(30px,5vw,46px);max-width:640px;margin:0 auto;}
  .wa-band p{margin-top:16px;color:var(--ink-soft);font-size:15px;max-width:440px;margin-left:auto;margin-right:auto;}
  .wa-band .btn{margin-top:32px;padding:18px 36px;font-size:15px;}

  /* ---------- FAQ ---------- */
  .faq-list{max-width:760px;margin:0 auto;}
  .faq-item{border-bottom:1px solid var(--line);}
  .faq-q{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    padding:22px 4px;
    background:none;
    border:none;
    color:var(--ink);
    text-align:left;
    font-size:15.5px;
    font-family:'Fraunces',serif;
    font-weight:400;
  }
  .faq-q .plus{
    flex:none;
    width:22px;height:22px;
    position:relative;
  }
  .faq-q .plus::before,.faq-q .plus::after{
    content:'';
    position:absolute;
    background:var(--ink-soft);
    transition:transform .35s var(--ease), opacity .35s;
  }
  .faq-q .plus::before{left:0;top:50%;width:100%;height:1px;transform:translateY(-50%);}
  .faq-q .plus::after{top:0;left:50%;width:1px;height:100%;transform:translateX(-50%);}
  .faq-item.open .plus::after{transform:translateX(-50%) rotate(90deg);opacity:0;}
  .faq-a{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s var(--ease);
  }
  .faq-a p{padding:0 4px 22px;font-size:14px;color:var(--ink-dim);line-height:1.65;max-width:600px;}
  .faq-foot{text-align:center;margin-top:32px;}

  /* ---------- Footer ---------- */
  footer{
    background:#0c0b09;
    padding:64px 0 28px;
    border-top:1px solid var(--line);
  }
  .footer-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:40px;
  }
  @media(min-width:760px){
    .footer-grid{grid-template-columns:1.6fr 1fr 1fr 1.2fr;gap:32px;}
  }
  .footer-brand p{margin-top:14px;font-size:13.5px;color:var(--ink-dim);line-height:1.7;max-width:280px;}
  .footer-brand .logo{margin-bottom:0;}
  .footer-col h4{font-size:12px;letter-spacing:0.03em;color:var(--ink-dim);margin-bottom:16px;font-weight:500;}
  .footer-col a,.footer-col p{
    display:block;
    font-size:13.5px;
    color:var(--ink-soft);
    padding:6px 0;
  }
  .footer-col a:hover{color:var(--accent);}
  .footer-social{display:flex;gap:10px;margin-top:16px;}
  .footer-bottom{
    margin-top:56px;
    padding-top:24px;
    border-top:1px solid var(--line);
    display:flex;
    flex-direction:column;
    gap:14px;
    font-size:12px;
    color:var(--ink-dim);
  }
  @media(min-width:760px){
    .footer-bottom{flex-direction:row;justify-content:space-between;align-items:center;}
  }
  .footer-bottom .legal-links{display:flex;gap:20px;}
  .footer-bottom .legal-links a:hover{color:var(--ink-soft);}
  .age-disclaimer{
    font-size:11.5px;
    color:var(--ink-dim);
    line-height:1.7;
    max-width:760px;
    margin-top:8px;
  }

  /* ---------- Mobile sticky WhatsApp ---------- */
  .sticky-wa{
    position:fixed;
    left:14px;right:14px;
    bottom:calc(14px + env(safe-area-inset-bottom, 0px));
    z-index:70;
    background:linear-gradient(180deg, rgba(28,25,19,0.94), rgba(12,11,9,0.97));
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    border:1px solid var(--line-strong);
    color:var(--ink);
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:15px;
    border-radius:8px;
    font-size:14px;
    font-weight:600;
    letter-spacing:0.01em;
    box-shadow:0 -1px 0 rgba(255,255,255,0.04) inset, 0 20px 40px -16px rgba(0,0,0,0.75);
    transition:transform .3s var(--ease);
    animation:stickyIn .5s var(--ease) .4s both;
    -webkit-tap-highlight-color:transparent;
  }
  .sticky-wa svg{width:18px;height:18px;flex:none;color:#4cae7d;}
  .sticky-wa:active{transform:scale(.97);}
  @keyframes stickyIn{from{opacity:0;transform:translateY(14px);}to{opacity:1;transform:translateY(0);}}
  @media(min-width:900px){.sticky-wa{display:none;}}
  /* keep footer content clear of the fixed sticky bar */
  @media(max-width:899px){
    body{padding-bottom:78px;}
  }

  /* fade-in on load for hero only (single orchestrated reveal) */
  .fade-up{opacity:0;transform:translateY(16px);animation:fadeUp .8s var(--ease) forwards;}
  .fade-up.d1{animation-delay:.05s;}
  .fade-up.d2{animation-delay:.16s;}
  .fade-up.d3{animation-delay:.27s;}
  .fade-up.d4{animation-delay:.38s;}
  @keyframes fadeUp{to{opacity:1;transform:translateY(0);}}

  ::selection{background:var(--accent);color:#15130f;}
  :focus-visible{outline:2px solid var(--accent);outline-offset:2px;}
/* =========================================================================
   WORDPRESS-SPECIFIC ADDITIONS
   Everything above this line is the original approved homepage design,
   unchanged. Everything below extends it to cover WordPress templates that
   didn't exist in the static HTML: standard Pages, blog posts/archives,
   the Products archive/category grid and the single Product page — all
   built with the same tokens (colors, type, spacing, radius) so they read
   as part of one site rather than a bolted-on theme.
   ========================================================================= */

/* Product media is now an <a> (links to the product) instead of a <div> */
.product-media{display:block;}

/* WordPress custom logo support, sized to match the existing .logo-mark */
.logo .custom-logo-link{display:flex;align-items:center;}
.logo .custom-logo{
  width:36px;height:36px;
  border-radius:50%;
  object-fit:cover;
  background:#000;
}
@media(min-width:600px){.logo .custom-logo{width:42px;height:42px;}}
.footer-brand .custom-logo{width:52px;height:52px;}
.mobile-menu .custom-logo{width:40px;height:40px;}

/* ---------- Generic Page / Post prose (page.php, single.php) ---------- */
.nimbus-page{padding:56px 0 88px;}
.nimbus-page-header{margin-bottom:32px;border-bottom:1px solid var(--line);padding-bottom:24px;}
.nimbus-page-title{font-size:clamp(28px,4.5vw,42px);color:var(--ink);}
.nimbus-page-meta{margin-top:10px;font-size:13px;color:var(--ink-dim);}
.nimbus-page-meta a{color:var(--ink-soft);border-bottom:1px solid var(--line-strong);}
.nimbus-page-meta a:hover{color:var(--accent);border-color:var(--accent);}
.nimbus-page-thumb{margin-bottom:32px;border-radius:var(--radius-m);overflow:hidden;border:1px solid var(--line);}
.nimbus-page-thumb img{width:100%;display:block;}

.nimbus-page-body{
  color:var(--ink-soft);
  font-size:15.5px;
  line-height:1.75;
  max-width:760px;
}
.nimbus-page-body h1,
.nimbus-page-body h2,
.nimbus-page-body h3,
.nimbus-page-body h4{
  color:var(--ink);
  margin:1.6em 0 0.6em;
  line-height:1.2;
}
.nimbus-page-body h1{font-size:clamp(26px,4vw,34px);}
.nimbus-page-body h2{font-size:clamp(22px,3.2vw,28px);}
.nimbus-page-body h3{font-size:19px;font-family:'Inter',sans-serif;font-weight:600;}
.nimbus-page-body p{margin:0 0 1.2em;}
.nimbus-page-body a{color:var(--accent);border-bottom:1px solid rgba(189,147,88,0.4);}
.nimbus-page-body a:hover{border-color:var(--accent);}
.nimbus-page-body ul,
.nimbus-page-body ol{margin:0 0 1.2em;padding-left:1.4em;}
.nimbus-page-body li{margin-bottom:0.5em;}
.nimbus-page-body blockquote{
  margin:1.6em 0;
  padding:4px 0 4px 20px;
  border-left:2px solid var(--accent);
  color:var(--ink-soft);
  font-family:'Fraunces',serif;
  font-style:italic;
  font-size:18px;
}
.nimbus-page-body img{max-width:100%;height:auto;border-radius:var(--radius-m);}
.nimbus-page-body table{width:100%;border-collapse:collapse;margin:0 0 1.2em;font-size:14px;}
.nimbus-page-body th,
.nimbus-page-body td{padding:10px 12px;border:1px solid var(--line);text-align:left;}
.nimbus-page-body hr{border:none;border-top:1px solid var(--line);margin:2em 0;}
.nimbus-page-body figcaption{font-size:12.5px;color:var(--ink-dim);margin-top:6px;}
.nimbus-page-body code,
.nimbus-page-body pre{
  background:var(--bg-panel);
  border:1px solid var(--line);
  border-radius:var(--radius-s);
  font-size:13.5px;
}
.nimbus-page-body code{padding:2px 6px;}
.nimbus-page-body pre{padding:16px;overflow-x:auto;}

.page-links{margin-top:24px;font-size:13px;color:var(--ink-dim);}
.page-links a{
  display:inline-flex;align-items:center;justify-content:center;
  min-width:28px;height:28px;padding:0 8px;margin-left:6px;
  border:1px solid var(--line-strong);border-radius:var(--radius-s);
  color:var(--ink-soft);
}
.page-links a:hover{border-color:var(--accent);color:var(--accent);}

/* ---------- Blog / generic archive grid (archive.php, index.php) ---------- */
.nimbus-archive-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:28px;
  margin-top:8px;
}
@media(min-width:640px){.nimbus-archive-grid{grid-template-columns:repeat(2,1fr);}}
@media(min-width:1024px){.nimbus-archive-grid{grid-template-columns:repeat(3,1fr);}}
.nimbus-archive-card{
  border:1px solid var(--line);
  border-radius:var(--radius-m);
  overflow:hidden;
  background:var(--bg-panel);
}
.nimbus-archive-thumb{display:block;aspect-ratio:4/3;overflow:hidden;}
.nimbus-archive-thumb img{width:100%;height:100%;object-fit:cover;transition:transform .5s var(--ease);}
.nimbus-archive-card:hover .nimbus-archive-thumb img{transform:scale(1.05);}
.nimbus-archive-card h2{
  font-size:18px;font-weight:500;padding:18px 18px 0;
}
.nimbus-archive-card h2 a{color:var(--ink);}
.nimbus-archive-card h2 a:hover{color:var(--accent);}
.nimbus-archive-card .nimbus-page-meta{padding:6px 18px 0;}
.nimbus-archive-excerpt{padding:10px 18px 20px;font-size:13.5px;color:var(--ink-dim);line-height:1.6;}

.nimbus-pagination{margin-top:40px;display:flex;justify-content:center;gap:8px;}
.nimbus-pagination .page-numbers{
  display:inline-flex;align-items:center;justify-content:center;
  min-width:38px;height:38px;padding:0 12px;
  border:1px solid var(--line-strong);border-radius:var(--radius-s);
  color:var(--ink-soft);font-size:13.5px;
}
.nimbus-pagination .page-numbers.current{border-color:var(--accent);color:var(--accent);}
.nimbus-pagination .page-numbers:hover{border-color:var(--accent);color:var(--accent);}

/* ---------- Products archive filter pills ---------- */
.nimbus-archive-filters{
  display:flex;flex-wrap:wrap;gap:10px 22px;
  margin:-8px 0 36px;
  padding-bottom:20px;
  border-bottom:1px solid var(--line);
}
.nimbus-archive-filters .section-link{border-bottom-color:transparent;padding-bottom:0;}
.nimbus-archive-filters .section-link.is-active{color:var(--accent);}

/* ---------- Single Product page ---------- */
.nimbus-product-single{padding-top:48px;}
.product-detail-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:32px;
}
@media(min-width:860px){
  .product-detail-grid{grid-template-columns:1fr 1fr;gap:56px;align-items:start;}
}
.product-detail-media{
  position:relative;
  aspect-ratio:1/1;
  border-radius:var(--radius-m);
  overflow:hidden;
  border:1px solid var(--line);
  background:radial-gradient(ellipse 70% 55% at 50% 30%, rgba(189,147,88,0.18), transparent 70%), #16140f;
}
.product-detail-media .avail-pill{position:absolute;top:16px;left:16px;}
.product-detail-cat{font-size:12.5px;color:var(--accent);margin-bottom:10px;}
.product-detail-cat a{color:var(--accent);}
.product-detail-info h1{font-size:clamp(28px,4vw,38px);color:var(--ink);margin-bottom:14px;}
.product-detail-price{font-family:'Fraunces',serif;font-size:24px;color:var(--accent);margin-bottom:22px;}
.product-detail-desc{
  color:var(--ink-soft);
  font-size:15px;
  line-height:1.7;
  margin-bottom:28px;
  padding-bottom:28px;
  border-bottom:1px solid var(--line);
}
.product-detail-desc p{margin:0 0 1em;}
.product-detail-note{margin-top:14px;font-size:12.5px;color:var(--ink-dim);}

/* ---------- Comments (minimal, dark-theme-compatible) ---------- */
.comment-respond,
.comments-area{
  margin-top:48px;
  padding-top:32px;
  border-top:1px solid var(--line);
  max-width:760px;
}
.comments-title,
.comment-reply-title{
  font-family:'Fraunces',serif;
  font-size:22px;
  font-weight:500;
  color:var(--ink);
  margin-bottom:20px;
}
.comment-list{list-style:none;margin:0;padding:0;}
.comment-list .comment{
  border:1px solid var(--line);
  border-radius:var(--radius-m);
  padding:18px;
  margin-bottom:16px;
  background:var(--bg-panel);
}
.comment-list .comment-author{font-weight:600;color:var(--ink);font-size:13.5px;}
.comment-list .comment-metadata{font-size:11.5px;color:var(--ink-dim);margin-bottom:10px;}
.comment-list .comment-content p{color:var(--ink-soft);font-size:14px;line-height:1.65;}
.comment-form label{display:block;font-size:12.5px;color:var(--ink-soft);margin-bottom:6px;}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea{
  width:100%;
  background:var(--bg-panel);
  border:1px solid var(--line-strong);
  border-radius:var(--radius-s);
  color:var(--ink);
  padding:11px 14px;
  font-family:inherit;
  font-size:14px;
  margin-bottom:16px;
}
.comment-form .form-submit input{
  background:var(--accent);
  color:#15130f;
  border:none;
  padding:12px 26px;
  border-radius:var(--radius-s);
  font-weight:500;
  cursor:pointer;
}

/* ---------- Admin notice link colour tweak (front-end unaffected) ---------- */
.nimbus-elementor-page .nimbus-page{padding:0;}
