/* =========================================================
   Pyari-Scents-style theme
   Black header + footer, clean white body, square product
   cards with red SALE tag, outlined form fields, black
   rectangular buttons. Mobile-first tweaks at the bottom of
   each block.
   ========================================================= */
:root{
  --ink:#121212;
  --ink-75:rgba(18,18,18,.75);
  --muted:rgba(18,18,18,.62);
  --line:rgba(18,18,18,.14);
  --soft:#f3f3f3;
  --bg:#ffffff;
  --gold:#f2d27a;
  --sale:#e11d24;
  --ok:#2f8f4e;
  --danger:#c8282e;
  /* hero colours – change these two to recolour the hero banner */
  --hero-1:#b95a76;
  --hero-2:#8a3d58;
  --sans:'Assistant', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --serif:'Playfair Display', Georgia, serif;
  --script:'Great Vibes', 'Brush Script MT', cursive;
  --pad-x:60px;
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  background:var(--bg);
  color:var(--ink-75);
  font-family:var(--sans);
  font-size:16px;
  letter-spacing:.03em;
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
@media (prefers-reduced-motion: reduce){
  *{animation-duration:.01ms !important; transition-duration:.01ms !important; scroll-behavior:auto !important;}
}
img{max-width:100%; display:block;}
a{color:inherit; text-decoration:none;}
button{font-family:inherit; cursor:pointer; border:none; background:none; color:inherit; letter-spacing:inherit;}
input,textarea{font-family:inherit; letter-spacing:inherit;}
::selection{background:var(--ink); color:#fff;}
:focus-visible{outline:2px solid currentColor; outline-offset:3px;}

/* ===== ANNOUNCEMENT BAR ===== */
.topbar{
  background:#2c3038;
  color:#fff;
  font-size:13.5px; font-weight:600; letter-spacing:.06em;
  padding:0 24px; min-height:46px;
  display:flex; align-items:center; justify-content:center; gap:10px 34px; flex-wrap:wrap;
  position:relative; z-index:70;
}
.topbar span{white-space:nowrap;}
@media(max-width:760px){
  .topbar{font-size:12px; padding:0 14px; min-height:40px; text-align:center;}
  .topbar .l span{white-space:normal;}
}

/* ===== HEADER (search left · logo centre · icons right · nav below) ===== */
header.site{
  position:sticky; top:0; z-index:60;
  background:var(--ink); color:#fff;
}
.header-main{
  display:grid; grid-template-columns:1fr auto 1fr; align-items:center; gap:20px;
  padding:26px var(--pad-x) 10px;
}
.header-left{display:flex; align-items:center; gap:12px; min-width:0;}
.brand{display:flex; align-items:center; gap:12px; justify-self:center;}
.brand img{height:46px; width:46px; object-fit:contain; border-radius:8px;}
.brand .name{
  font-family:var(--script); font-weight:400; font-size:42px; line-height:1;
  color:var(--gold); letter-spacing:.02em;
}
/* header branding: +10% */
header.site .brand img{height:50.6px; width:50.6px;}
header.site .brand .name{font-size:46.2px;}

.search-box{
  display:flex; align-items:center; gap:10px;
  border:1px solid rgba(255,255,255,.75); border-radius:40px;
  height:54px; padding:0 22px; width:100%; max-width:350px;
  transition:border-color .2s, box-shadow .2s;
}
.search-box:focus-within{border-color:#fff; box-shadow:0 0 0 1px #fff;}
.search-box input{background:none; border:none; outline:none; color:#fff; font-size:16px; width:100%; letter-spacing:.08em;}
.search-box input::placeholder{color:rgba(255,255,255,.85);}
.search-box svg{width:18px; height:18px; stroke:#fff; flex-shrink:0;}

.nav-actions{display:flex; align-items:center; justify-content:flex-end; gap:6px;}
.icon-btn{
  position:relative; width:46px; height:46px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  transition:background .2s;
}
.icon-btn:hover{background:rgba(255,255,255,.12);}
.icon-btn svg{width:22px; height:22px; stroke:#fff;}
.badge{
  position:absolute; top:3px; right:1px;
  background:#fff; color:var(--ink);
  font-size:11px; font-weight:800; letter-spacing:0;
  min-width:18px; height:18px; border-radius:9px;
  display:flex; align-items:center; justify-content:center; padding:0 4px;
}
.menu-toggle{display:none; width:46px; height:46px; align-items:center; justify-content:center; border-radius:50%;}
.menu-toggle svg{width:24px; height:24px; stroke:#fff;}

nav.links{
  display:flex; justify-content:center; flex-wrap:wrap; gap:14px 38px;
  padding:14px var(--pad-x) 22px; font-size:17.5px; letter-spacing:.06em;
}
nav.links a{color:rgba(255,255,255,.85); padding:2px 0; text-decoration:underline; text-decoration-color:transparent; text-underline-offset:6px; text-decoration-thickness:1px; transition:color .2s, text-decoration-color .2s;}
nav.links a:hover{color:#fff; text-decoration-color:rgba(255,255,255,.7);}
nav.links a.active{color:#fff; text-decoration-color:#fff;}

@media(max-width:920px){
  :root{--pad-x:16px;}
  .header-main{padding:10px var(--pad-x); gap:8px;}
  .search-box{display:none;}
  nav.links{display:none;}
  .menu-toggle{display:flex;}
  .brand img{height:38px; width:38px; border-radius:8px;}
  .brand .name{font-size:32px;}
  .brand{gap:9px;}
  header.site .brand img{height:41.8px; width:41.8px;}
  header.site .brand .name{font-size:35.2px;}
}
@media(max-width:380px){
  .icon-btn, .menu-toggle{width:40px; height:40px;}
  .nav-actions{gap:0;}
}

/* ===== MOBILE DRAWER MENU ===== */
.mobile-nav{
  position:fixed; inset:0 auto 0 0; width:84%; max-width:340px;
  background:#fff; color:var(--ink); z-index:100;
  transform:translate3d(-100%,0,0); transition:transform .35s cubic-bezier(.22,.9,.3,1);
  padding:16px 22px 30px; display:flex; flex-direction:column; gap:6px; overflow-y:auto;
  box-shadow:0 0 40px rgba(0,0,0,.25);
}
.mobile-nav.open{transform:translate3d(0,0,0);}
.mobile-nav .close-x{align-self:flex-end; width:44px; height:44px; display:flex; align-items:center; justify-content:center; margin-right:-10px;}
.mobile-nav .close-x svg{width:22px; height:22px; stroke:var(--ink);}
.mob-search{display:flex; align-items:center; gap:10px; border:1px solid var(--ink); border-radius:40px; padding:0 18px; height:50px; margin:4px 0 16px;}
.mob-search input{background:none; border:none; outline:none; color:var(--ink); width:100%; font-size:16px;}
.mob-search svg{width:18px; height:18px; stroke:var(--ink); flex-shrink:0;}
.mobile-nav a{font-size:18px; color:var(--ink-75); padding:15px 0; border-bottom:1px solid var(--line);}
.mobile-nav a.active{color:var(--ink); font-weight:700;}
.overlay{position:fixed; inset:0; background:rgba(18,18,18,.5); z-index:90; opacity:0; pointer-events:none; transition:opacity .3s;}
.overlay.show{opacity:1; pointer-events:auto;}

/* ===== BUTTONS ===== */
.btn{
  min-height:50px; padding:0 34px; border-radius:0; font-size:15px; font-weight:700; letter-spacing:.12em;
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  border:1px solid var(--ink); transition:box-shadow .2s, background .2s, color .2s;
}
.btn-primary{background:var(--ink); color:#fff;}
.btn-primary:hover{box-shadow:0 0 0 2px #fff, 0 0 0 3px var(--ink);}
.btn-outline{background:#fff; color:var(--ink);}
.btn-outline:hover{box-shadow:0 0 0 1px var(--ink);}

/* ===== HERO (full-width banner) ===== */
.hero{
  position:relative; overflow:hidden;
  background:
    radial-gradient(900px 420px at 80% 20%, rgba(255,255,255,.16), transparent 65%),
    linear-gradient(115deg, var(--hero-1), var(--hero-2));
  padding:72px max(var(--pad-x), calc((100% - 1312px)/2));
  display:grid; grid-template-columns:1.1fr .9fr; gap:56px; align-items:center;
  color:#fff; min-height:560px;
}
.hero-eyebrow{font-size:14px; letter-spacing:.14em; margin-bottom:18px; display:flex; align-items:center; gap:10px; color:rgba(255,255,255,.9);}
.hero-eyebrow .dot{width:7px; height:7px; border-radius:50%; background:var(--gold);}
.hero h1{font-family:var(--serif); font-weight:600; font-size:clamp(42px,6.4vw,86px); line-height:1.08; letter-spacing:0; color:#fff;}
.hero h1 em{font-family:var(--script); font-style:normal; font-weight:400; font-size:1.25em; line-height:1; letter-spacing:.01em;}
.hero p.lead{margin-top:24px; font-size:18px; line-height:1.7; color:rgba(255,255,255,.92); max-width:480px;}
.hero-cta{display:flex; gap:14px; margin-top:34px; flex-wrap:wrap;}
.hero .btn-outline{background:transparent; color:#fff; border-color:#fff;}
.hero .btn-outline:hover{background:#fff; color:var(--ink); box-shadow:none;}
.hero .btn-primary:hover{box-shadow:0 0 0 1px #fff;}
.hero-stats{display:flex; gap:38px; margin-top:44px; flex-wrap:wrap;}
.hero-stats div{border-left:1px solid rgba(255,255,255,.45); padding-left:16px;}
.hero-stats .num{font-family:var(--serif); font-size:28px; font-weight:600; color:#fff; letter-spacing:0;}
.hero-stats .lbl{font-size:13px; color:rgba(255,255,255,.85); margin-top:2px;}
.hero-visual{position:relative;}
.hero-frame{position:relative; overflow:hidden; aspect-ratio:4/4.6; max-height:520px; width:100%; margin-left:auto; background:rgba(0,0,0,.15); box-shadow:0 30px 60px rgba(0,0,0,.25);}
.hero-frame img{width:100%; height:100%; object-fit:cover;}
.hero-frame::after{content:""; position:absolute; inset:0; background:linear-gradient(180deg,transparent 50%,rgba(18,18,18,.7));}
.hero-badge{position:absolute; left:22px; right:22px; bottom:20px; z-index:2; color:#fff;}
.hero-badge .txt{font-family:var(--serif); font-size:21px; font-weight:600; letter-spacing:0;}
.hero-badge .sub{font-size:13px; color:rgba(255,255,255,.8); margin-top:2px;}
.glow-ring{display:none;}
@media(max-width:920px){
  .hero{grid-template-columns:1fr; gap:34px; padding:48px var(--pad-x) 46px; min-height:0;}
  .hero-frame{aspect-ratio:1/1; max-height:none; margin:0;}
  .hero p.lead{font-size:16px;}
  .hero-stats{gap:26px;}
  .hero-cta .btn{flex:1 1 150px; padding:0 20px;}
}

/* ===== MARQUEE STRIP ===== */
.marquee-strip{background:var(--ink); overflow:hidden; padding:15px 0; border-bottom:1px solid rgba(255,255,255,.1);}
.marquee-track{display:flex; gap:60px; white-space:nowrap; animation:marquee 32s linear infinite; width:max-content;}
.marquee-track span{font-size:13.5px; letter-spacing:.16em; text-transform:uppercase; color:rgba(255,255,255,.85); display:flex; align-items:center; gap:60px;}
@keyframes marquee{from{transform:translate3d(0,0,0);} to{transform:translate3d(-50%,0,0);}}

/* ===== SECTIONS ===== */
.section{max-width:1440px; margin:0 auto; padding:72px var(--pad-x);}
.sec-head{display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:34px; gap:16px 30px; flex-wrap:wrap;}
.sec-head h2{font-family:var(--sans); font-weight:400; font-size:clamp(30px,4vw,46px); line-height:1.15; color:var(--ink); letter-spacing:.02em;}
.sec-head p{color:var(--muted); font-size:15.5px; max-width:420px;}
.sec-tag{font-size:13px; letter-spacing:.12em; color:var(--muted); margin-bottom:8px; text-transform:uppercase;}
@media(max-width:920px){
  .section{padding:48px var(--pad-x);}
  .sec-head{margin-bottom:24px;}
}

/* category chips: swipe on mobile, arrows + mouse-drag on desktop */
.cat-wrap{position:relative; margin-bottom:30px;}
.cat-scroll{
  display:flex; gap:10px; overflow-x:auto; padding:2px 2px 8px; scrollbar-width:none;
  -webkit-overflow-scrolling:touch; overscroll-behavior-x:contain;
  scroll-snap-type:x proximity; user-select:none; -webkit-user-select:none;
}
.cat-scroll::-webkit-scrollbar{display:none;}
.cat-scroll.dragging{scroll-snap-type:none; cursor:grabbing;}
.chip{
  position:relative; overflow:hidden; scroll-snap-align:start; flex-shrink:0;
  min-height:44px; padding:0 24px; border:1px solid var(--line); border-radius:10px;
  font-size:15px; color:var(--ink); background:#fff;
  transition:background-color .2s, color .2s, border-color .2s, transform .15s;
}
.chip:hover{border-color:var(--ink);}
.chip:active{transform:scale(.96);}
.chip.active{background:var(--ink); color:#fff; border-color:var(--ink);}
.chip.pop{animation:chipPop .42s cubic-bezier(.2,.9,.3,1.35);}
.chip.pop::after{
  content:""; position:absolute; inset:0; pointer-events:none;
  background:radial-gradient(circle at 50% 50%, rgba(255,255,255,.6) 0, rgba(255,255,255,0) 62%);
  transform:scale(0); animation:chipRipple .55s ease-out forwards;
}
@keyframes chipPop{0%{transform:scale(.9);} 55%{transform:scale(1.07);} 100%{transform:scale(1);}}
@keyframes chipRipple{to{transform:scale(2.6); opacity:0;}}
/* edge fades hint that the row can be swiped */
.cat-wrap::before, .cat-wrap::after{
  content:""; position:absolute; top:0; bottom:8px; width:38px; z-index:2; pointer-events:none;
  opacity:0; transition:opacity .2s;
}
.cat-wrap::before{left:0; background:linear-gradient(90deg,#fff,rgba(255,255,255,0));}
.cat-wrap::after{right:0; background:linear-gradient(270deg,#fff,rgba(255,255,255,0));}
.cat-wrap.can-prev::before, .cat-wrap.can-next::after{opacity:1;}
.cat-arrow{
  display:none; position:absolute; top:calc(50% - 4px); transform:translateY(-50%); z-index:3;
  width:40px; height:40px; border-radius:50%; background:#fff; border:1px solid var(--line);
  align-items:center; justify-content:center; box-shadow:0 4px 14px rgba(0,0,0,.12);
  transition:background-color .2s, border-color .2s;
}
.cat-arrow:hover{background:var(--soft); border-color:var(--ink);}
.cat-arrow svg{width:18px; height:18px; stroke:var(--ink);}
.cat-arrow.prev{left:-8px;} .cat-arrow.next{right:-8px;}
@media (hover:hover) and (pointer:fine){
  .cat-wrap.can-prev .cat-arrow.prev, .cat-wrap.can-next .cat-arrow.next{display:flex;}
  .cat-scroll{cursor:grab;}
}

/* ===== PRODUCT GRID + CARD ===== */
.grid{display:grid; grid-template-columns:repeat(4,1fr); gap:34px 24px;}
@media(max-width:1100px){ .grid{grid-template-columns:repeat(3,1fr);} }
@media(max-width:760px){ .grid{grid-template-columns:repeat(2,1fr); gap:26px 12px;} }

.card{background:#fff; position:relative;}
.card-img{position:relative; aspect-ratio:1/1; overflow:hidden; background:var(--soft);}
.card-img img{width:100%; height:100%; object-fit:cover; transition:transform .5s ease;}
.card:hover .card-img img{transform:scale(1.04);}
.card-tag{
  position:absolute; left:0; bottom:0; z-index:2;
  background:var(--sale); color:#fff;
  font-size:14px; font-weight:600; letter-spacing:.1em; text-transform:uppercase;
  padding:7px 18px; line-height:1.3;
}
.wish-btn{
  position:absolute; top:10px; right:10px; z-index:3;
  width:38px; height:38px; border-radius:50%; background:rgba(255,255,255,.92);
  display:flex; align-items:center; justify-content:center; transition:transform .2s;
}
.wish-btn:hover{transform:scale(1.08);}
.wish-btn svg{width:18px; height:18px; stroke:var(--ink); fill:none;}
.wish-btn.active svg{fill:var(--sale); stroke:var(--sale);}
.card-quick{
  position:absolute; left:0; right:0; bottom:0; z-index:4; display:flex;
  transform:translateY(100%); transition:transform .3s ease;
}
.card:hover .card-quick, .card:focus-within .card-quick{transform:translateY(0);}
.qbtn{flex:1; min-height:46px; text-align:center; font-size:13.5px; font-weight:700; letter-spacing:.1em;}
.qbtn.add{background:#fff; color:var(--ink); border-top:1px solid var(--ink);}
.qbtn.buy{background:var(--ink); color:#fff; border-top:1px solid var(--ink);}
@media(hover:none){ .card-quick{display:none;} }

.card-body{padding:16px 0 0;}
.card-cat{font-size:12.5px; letter-spacing:.1em; color:var(--muted); margin-bottom:4px; text-transform:uppercase;}
.card-title{font-size:16px; line-height:1.4; color:var(--ink); min-height:44px;}
.card-body:hover .card-title{text-decoration:underline; text-underline-offset:4px; text-decoration-thickness:1px;}
.card-rating{display:flex; align-items:center; gap:3px; margin-top:8px; font-size:14px; color:var(--ink-75);}
.card-rating svg{width:14px; height:14px; fill:var(--ink);}
.card-rating span{margin-left:8px;}
.card-price{display:flex; align-items:baseline; gap:10px; margin-top:10px; flex-wrap:wrap;}
.price-old{order:-1; font-size:15px; color:var(--muted); text-decoration:line-through;}
.price-now{font-size:19px; color:var(--ink); font-weight:600;}
@media(max-width:760px){
  .card-title{font-size:14.5px; min-height:40px;}
  .price-now{font-size:17px;}
  .card-tag{font-size:12px; padding:6px 13px;}
}

/* ===== PROMO BAND ===== */
.promo-banner{margin:0; padding:0;}
.promo-inner{background:var(--ink); color:#fff; text-align:center; padding:84px 24px;}
.promo-inner h3{font-family:var(--serif); font-weight:500; font-size:clamp(26px,3.8vw,44px); line-height:1.25; max-width:760px; margin:0 auto; color:#fff; letter-spacing:0;}
.promo-inner p{color:rgba(255,255,255,.8); margin-top:16px; font-size:16px;}
.promo-inner .btn{margin-top:30px;}
.promo-inner .btn-primary{background:#fff; color:var(--ink); border-color:#fff;}
.promo-inner .btn-primary:hover{box-shadow:0 0 0 2px var(--ink), 0 0 0 3px #fff;}
@media(max-width:640px){ .promo-inner{padding:56px 20px;} }

/* ===== USP / TRUST ROW ===== */
.usp-grid{display:grid; grid-template-columns:repeat(4,1fr); border-top:1px solid var(--line); border-bottom:1px solid var(--line);}
.usp{padding:36px 22px; text-align:center; border-left:1px solid var(--line);}
.usp:first-child{border-left:none;}
.usp svg{width:32px; height:32px; stroke:var(--ink); margin:0 auto 14px;}
.usp h4{font-size:17px; font-weight:600; color:var(--ink); margin-bottom:6px;}
.usp p{font-size:14.5px; color:var(--muted); line-height:1.6;}
@media(max-width:860px){
  .usp-grid{grid-template-columns:repeat(2,1fr);}
  .usp:nth-child(3){border-left:none;}
  .usp:nth-child(n+3){border-top:1px solid var(--line);}
  .usp{padding:28px 16px;}
}

/* ===== TESTIMONIALS ===== */
.test-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:24px;}
@media(max-width:900px){ .test-grid{grid-template-columns:1fr; gap:14px;} }
.test-card{background:var(--soft); padding:32px;}
.test-stars{color:var(--ink); font-size:16px; letter-spacing:.2em; margin-bottom:14px;}
.test-card p{font-family:var(--serif); font-style:italic; font-size:18px; line-height:1.65; color:var(--ink); letter-spacing:0;}
.test-who{display:flex; align-items:center; gap:12px; margin-top:22px;}
.avatar{width:42px; height:42px; border-radius:50%; background:var(--ink); color:#fff; display:flex; align-items:center; justify-content:center; font-size:15px; font-weight:700;}
.test-who .n{font-size:15px; font-weight:700; color:var(--ink);}
.test-who .r{font-size:13px; color:var(--muted);}

/* ===== NEWSLETTER ===== */
.newsletter{background:var(--soft); padding:76px 24px;}
.nl-inner{max-width:640px; margin:0 auto; text-align:center;}
.nl-inner h3{font-family:var(--sans); font-weight:400; font-size:clamp(26px,3.4vw,36px); color:var(--ink);}
.nl-inner p{color:var(--muted); font-size:15.5px; margin-top:10px;}
.nl-form{display:flex; gap:10px; margin:28px auto 0; max-width:480px;}
.nl-form input{flex:1; min-width:0; height:52px; background:#fff; border:1px solid var(--ink-75); border-radius:0; padding:0 18px; color:var(--ink); font-size:15.5px; outline:none;}
.nl-form input:focus{box-shadow:0 0 0 1px var(--ink);}
@media(max-width:520px){ .nl-form{flex-direction:column;} .nl-form .btn{width:100%;} }

/* ===== ABOUT ===== */
/* three fonts: Playfair Display (headings) · Assistant (body) · Great Vibes (script accents)
   three styles: bold · italic · gold highlight     three symbols: dot · star · check */
.about-grid{display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center;}
.about-grid img{aspect-ratio:4/3; object-fit:cover; width:100%;}
.about-copy .sec-tag{font-family:var(--sans);}
.about-grid h2{font-family:var(--serif); font-weight:600; font-size:clamp(28px,3.8vw,42px); line-height:1.2; letter-spacing:0; color:var(--ink); margin-bottom:18px;}
.about-copy p{font-family:var(--sans); color:var(--ink-75); line-height:1.8; font-size:17px; margin-bottom:14px;}
.about-copy strong, .about-col strong{font-weight:800; color:var(--ink);}
.about-copy em, .about-col em, .about-close em{font-style:italic; color:var(--ink);}
.hl{background:linear-gradient(transparent 58%, rgba(242,210,122,.7) 58%); color:var(--ink); font-weight:600; padding:0 2px;}
.about-copy p.about-quote{font-family:var(--script); font-size:clamp(36px,5vw,48px); line-height:1.1; color:var(--ink); letter-spacing:.01em; margin:8px 0 12px;}

.about-lists{padding-top:0;}
.about-cols{display:grid; grid-template-columns:repeat(3,1fr); gap:24px;}
.about-col{background:var(--soft); padding:30px 28px;}
.about-col h3{font-family:var(--serif); font-weight:600; font-size:22px; line-height:1.25; letter-spacing:0; color:var(--ink); margin-bottom:16px;}
.about-col ul{list-style:none;}
.about-col li{position:relative; padding-left:28px; margin-bottom:12px; font-size:16px; line-height:1.6; color:var(--ink-75);}
.about-col li::before{position:absolute; left:0; top:0; line-height:1.6;}
.sym-dot li::before{content:"\2022"; font-size:26px; line-height:1.15; color:var(--ink);}
.sym-star li::before{content:"\2726"; font-size:15px; color:#b8912f;}
.sym-check li::before{content:"\2713"; font-size:17px; font-weight:800; color:var(--ok);}
.about-close{text-align:center; max-width:640px; margin:54px auto 0;}
.about-close p{font-family:var(--serif); font-size:clamp(19px,2.4vw,24px); line-height:1.6; color:var(--ink); letter-spacing:0;}
.about-sign{display:block; font-family:var(--script); font-size:38px; line-height:1.2; color:var(--ink); margin:14px 0 22px;}
@media(max-width:920px){
  .about-grid{grid-template-columns:1fr; gap:26px;}
  .about-grid img{aspect-ratio:4/3;}
  .about-cols{grid-template-columns:1fr; gap:14px;}
  .about-col{padding:24px 20px;}
  .about-copy p{font-size:16px;}
  .about-close{margin-top:38px;}
  .about-close .btn{width:100%;}
}

/* ===== CONTACT ===== */
.contact-grid{display:grid; grid-template-columns:1.1fr .9fr; gap:56px;}
@media(max-width:860px){ .contact-grid{grid-template-columns:1fr; gap:34px;} }
.contact-form input, .contact-form textarea{
  display:block; width:100%; background:#fff; border:1px solid var(--ink-75); border-radius:0;
  padding:0 20px; height:56px; color:var(--ink); font-size:16px; outline:none; margin-bottom:16px;
}
.contact-form textarea{height:auto; padding:16px 20px; min-height:140px; resize:vertical;}
.contact-form input::placeholder, .contact-form textarea::placeholder{color:var(--muted);}
.contact-form input:focus, .contact-form textarea:focus{border-color:var(--ink); box-shadow:0 0 0 1px var(--ink);}
.contact-form .btn{margin-top:10px;}
.contact-info{display:flex; flex-direction:column; gap:14px;}
.info-row{display:flex; gap:16px; align-items:flex-start; padding:20px; border:1px solid var(--line);}
.info-row svg{width:22px; height:22px; stroke:var(--ink); flex-shrink:0; margin-top:2px;}
.info-row h5{font-size:16px; font-weight:700; color:var(--ink); margin-bottom:3px;}
.info-row p, .info-row a{font-size:15px; color:var(--ink-75); line-height:1.6;}
.info-row a:hover{text-decoration:underline; text-underline-offset:3px;}
.map-embed{border:1px solid var(--line); overflow:hidden; aspect-ratio:16/9; background:var(--soft);}
.map-embed iframe{width:100%; height:100%; border:0;}

/* ===== FOOTER (black, centred) ===== */
footer{background:var(--ink); color:#fff; padding:56px 24px 0;}
.footer-inner{max-width:1200px; margin:0 auto;}
.footer-top{display:grid; grid-template-columns:repeat(3,1fr); gap:38px 30px; padding-bottom:44px; text-align:center;}
.footer-brand{grid-column:1/-1; display:flex; flex-direction:column; align-items:center;}
.footer-brand .brand{margin-bottom:14px;}
.footer-brand p{color:rgba(255,255,255,.75); font-size:15px; line-height:1.7; max-width:420px;}
.footer-social{display:flex; gap:12px; margin-top:20px; justify-content:center; flex-wrap:wrap;}
.footer-social a{width:42px; height:42px; border:1px solid rgba(255,255,255,.35); border-radius:12px; overflow:hidden; display:flex; align-items:center; justify-content:center; transition:background .2s, border-color .2s;}
.footer-social a:hover{background:rgba(255,255,255,.12); border-color:#fff;}
.footer-social svg{width:17px; height:17px; stroke:#fff;}
.f-col h5{font-size:19px; font-weight:400; letter-spacing:.06em; margin-bottom:16px; color:#fff;}
.f-col a, .f-col p{display:block; font-size:15.5px; color:rgba(255,255,255,.78); margin-bottom:10px; text-decoration:underline; text-decoration-color:transparent; text-underline-offset:4px; transition:color .2s, text-decoration-color .2s;}
.f-col p{text-decoration:none;}
.f-col a:hover{color:#fff; text-decoration-color:#fff;}
.footer-bottom{border-top:1px solid rgba(255,255,255,.16); padding:22px 0; text-align:center; font-size:13.5px; color:rgba(255,255,255,.7);}
@media(max-width:700px){
  footer{padding-top:44px;}
  .footer-top{grid-template-columns:1fr; gap:30px;}
}

/* ===== PAGES ===== */
.page{display:none;}
.page.active{display:block;}

/* ===== CART DRAWER ===== */
.cart-drawer{
  position:fixed; top:0; right:0; bottom:0; width:100%; max-width:440px;
  background:#fff; color:var(--ink); z-index:150;
  transform:translate3d(100%,0,0); transition:transform .4s cubic-bezier(.22,.9,.3,1);
  display:flex; flex-direction:column; box-shadow:-10px 0 40px rgba(0,0,0,.2);
}
.cart-drawer.open{transform:translate3d(0,0,0);}
.cart-head{display:flex; justify-content:space-between; align-items:center; padding:14px 14px 14px 26px; border-bottom:1px solid var(--line);}
.cart-head h3{font-family:var(--sans); font-size:24px; font-weight:400; color:var(--ink);}
.cart-head .icon-btn:hover{background:var(--soft);}
.cart-head .icon-btn svg{stroke:var(--ink);}
.cart-items{flex:1; overflow-y:auto; padding:10px 26px;}
.cart-empty{text-align:center; color:var(--muted); padding:70px 20px; font-size:16px;}
.cart-empty svg{width:48px; height:48px; stroke:var(--muted); margin:0 auto 14px;}
.cart-row{display:flex; gap:16px; padding:20px 0; border-bottom:1px solid var(--line);}
.cart-row img{width:80px; height:80px; object-fit:cover; background:var(--soft);}
.cart-row .info{flex:1; min-width:0;}
.cart-row .info .t{font-size:15.5px; color:var(--ink); margin-bottom:3px;}
.cart-row .info .p{font-size:14.5px; color:var(--muted);}
.qty-ctrl{display:inline-flex; align-items:center; border:1px solid var(--ink-75); margin-top:10px;}
.qty-ctrl button{width:38px; height:38px; display:flex; align-items:center; justify-content:center; font-size:18px; color:var(--ink);}
.qty-ctrl button:hover{background:var(--soft);}
.qty-ctrl span{min-width:34px; text-align:center; font-size:15px; color:var(--ink);}
.rm-btn{font-size:13.5px; color:var(--muted); margin-top:8px; text-decoration:underline; text-underline-offset:3px; cursor:pointer; width:max-content;}
.rm-btn:hover{color:var(--danger);}
.cart-foot{padding:22px 26px calc(22px + env(safe-area-inset-bottom)); border-top:1px solid var(--line);}
.cart-total{display:flex; justify-content:space-between; margin-bottom:16px; font-size:19px; color:var(--ink); font-weight:600;}
.cart-foot .btn{width:100%;}

/* ===== TOAST ===== */
.toast{
  position:fixed; bottom:24px; left:50%; transform:translate3d(-50%,20px,0);
  background:var(--ink); color:#fff; padding:14px 24px; max-width:calc(100% - 32px);
  font-size:15px; font-weight:600; z-index:300; opacity:0; pointer-events:none;
  transition:all .3s cubic-bezier(.2,.8,.2,1); display:flex; align-items:center; gap:10px;
  box-shadow:0 14px 34px rgba(0,0,0,.3);
}
.toast.show{opacity:1; transform:translate3d(-50%,0,0);}
.toast svg{width:18px; height:18px; stroke:#fff; flex-shrink:0;}

/* ===== SCROLL REVEAL / TOP BUTTON / MISC ===== */
.reveal{opacity:0; transform:translate3d(0,16px,0); transition:opacity .6s ease, transform .6s ease;}
.reveal.in{opacity:1; transform:none;}
.top-btn{
  position:fixed; bottom:24px; right:20px; width:48px; height:48px; border-radius:50%;
  background:var(--ink); border:1px solid rgba(255,255,255,.25); display:flex; align-items:center; justify-content:center;
  z-index:80; opacity:0; pointer-events:none; transition:opacity .3s;
}
.top-btn.show{opacity:1; pointer-events:auto;}
.top-btn svg{width:18px; height:18px; stroke:#fff;}
.empty-state{text-align:center; padding:60px 20px; color:var(--muted); font-size:16px;}

/* ===== WISHLIST DRAWER extras ===== */
.btn.sm{min-height:40px; padding:0 18px; font-size:13px;}
.wish-row-actions{display:flex; align-items:center; gap:16px; margin-top:12px; flex-wrap:wrap;}
.wish-row-actions .rm-btn{margin-top:0;}

/* ===== FOOTER "Get in Touch" button ===== */
.f-cta{display:flex; align-items:center; justify-content:center;}
.f-col a.touch-btn{
  display:inline-flex; align-items:center; justify-content:center;
  min-height:56px; padding:0 44px; margin:0;
  font-family:'Cinzel', Georgia, serif; font-weight:700; font-size:17px; letter-spacing:.14em;
  color:#000; text-decoration:none;
  background:linear-gradient(135deg,#ffffff 0%,#e6e9ec 50%,#fbfcfd 100%);   /* pitch silver-white */
  border:1px solid #fff; border-radius:22px;                               /* ~80% rounded */
  box-shadow:inset 0 1px 0 #fff, 0 8px 26px rgba(255,255,255,.14);
  transition:transform .2s ease, box-shadow .2s ease;
}
.f-col a.touch-btn:hover{color:#000; transform:translateY(-2px); box-shadow:inset 0 1px 0 #fff, 0 12px 32px rgba(255,255,255,.28);}
@media(max-width:700px){ .f-col a.touch-btn{width:100%; max-width:320px;} }


/* ===== PRODUCT RATINGS ===== */
.rating-star{border:0;background:transparent;padding:0;width:18px;height:18px;display:inline-flex;align-items:center;justify-content:center;color:#c9c9c9;cursor:default;vertical-align:middle;}
.rating-star svg{width:100%;height:100%;fill:currentColor;stroke:currentColor;}
.rating-star.on{color:var(--ink);}
.rating-select{display:flex;align-items:center;gap:6px;margin-top:10px;}
.rating-select .rating-star{width:34px;height:34px;cursor:pointer;color:#cfcfcf;transition:transform .15s ease,color .15s ease;}
.rating-select .rating-star:hover{transform:translateY(-1px);}
.rating-select .rating-star.on{color:var(--ink);}
.rating-emoji{font-size:28px;line-height:34px;margin-left:6px;min-width:34px;text-align:center;}
.pdp-rating-box{margin-top:22px;padding:18px;border:1px solid var(--line);background:#fff;max-width:520px;}
.rating-title{display:flex;justify-content:space-between;align-items:baseline;gap:12px;flex-wrap:wrap;}
.rating-title strong{font-size:16px;font-weight:600;color:var(--ink);}
.rating-title span{font-size:13px;color:var(--muted);}
.rating-comment-wrap{position:relative;margin-top:14px;}
.rating-comment-wrap textarea{width:100%;min-height:92px;resize:vertical;padding:12px 13px;border:1px solid var(--line);background:#fff;color:var(--ink);font:inherit;line-height:1.55;box-sizing:border-box;}
.rating-comment-wrap textarea:focus{outline:none;border-color:var(--ink-75);}
.rating-word-count{font-size:12px;color:var(--muted);text-align:right;margin-top:5px;}
.rating-submit{margin-top:10px;min-height:44px;}
.pdp-comments-section{margin-top:34px;border-top:1px solid var(--line);padding-top:22px;}
.show-comments-btn{border:1px solid var(--ink);background:#fff;color:var(--ink);min-height:44px;padding:0 18px;font:inherit;cursor:pointer;}
.show-comments-btn:hover{background:var(--soft);}
.rating-comments-box{margin-top:16px;border:1px solid var(--line);background:#fff;}
.rating-comment{padding:17px 18px;border-bottom:1px solid var(--line);}
.rating-comment:last-child{border-bottom:0;}
.rating-comment-top{display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap;}
.rating-comment-top strong{font-size:14px;color:var(--ink);}
.rating-comment-top>span{display:inline-flex;align-items:center;gap:2px;}
.rating-comment-top .rating-star{width:14px;height:14px;}
.rating-comment-top em{font-style:normal;font-size:18px;margin-left:5px;}
.rating-comment p{margin:9px 0 0;color:var(--ink-75);line-height:1.65;font-size:14.5px;word-break:break-word;}
.rating-empty{padding:18px;color:var(--muted);font-size:14px;}
.card-rating .rating-star{width:14px;height:14px;}
@media(max-width:760px){
  .pdp-rating-box{max-width:none;padding:16px;margin-top:18px;}
  .rating-select .rating-star{width:32px;height:32px;}
  .pdp-comments-section{margin-top:26px;}
  .rating-comment{padding:15px;}
}
@media(max-width:420px){
  .rating-select{gap:4px;}
  .rating-select .rating-star{width:29px;height:29px;}
  .rating-emoji{font-size:25px;min-width:30px;}
}

/* ===== PRODUCT PAGE ===== */
.pdp{max-width:1440px; margin:0 auto; padding:30px var(--pad-x) 72px;}
.pdp-back{display:inline-flex; align-items:center; gap:6px; font-size:15px; color:var(--ink); margin-bottom:22px; min-height:44px;}
.pdp-back svg{width:18px; height:18px; stroke:var(--ink);}
.pdp-back:hover{text-decoration:underline; text-underline-offset:4px;}
.pdp-grid{display:grid; grid-template-columns:1.05fr .95fr; gap:56px; align-items:start;}
.pdp-media{background:var(--soft); aspect-ratio:1/1; width:100%;}
.pdp-media img{width:100%; height:100%; object-fit:cover;}
.pdp-info{min-width:0; padding-top:4px;}
.pdp-cat{font-size:13px; color:var(--muted); letter-spacing:.12em; text-transform:uppercase;}
.pdp-info h1{font-family:var(--sans); font-weight:400; font-size:clamp(26px,3.4vw,40px); line-height:1.2; letter-spacing:.02em; color:var(--ink); margin:6px 0 10px;}
.pdp-price{display:flex; align-items:center; gap:12px; flex-wrap:wrap; margin:14px 0 10px;}
.pdp-price .old{color:var(--muted); text-decoration:line-through; font-size:18px;}
.pdp-price .now{color:var(--ink); font-size:26px; font-weight:600;}
.pdp-sale{background:var(--sale); color:#fff; font-size:13px; font-weight:600; letter-spacing:.1em; text-transform:uppercase; padding:5px 14px;}
.stock-ok{display:flex; align-items:center; gap:8px; font-size:14.5px; color:var(--ok); margin-bottom:6px;}
.stock-ok .dot{width:8px; height:8px; border-radius:50%; background:var(--ok);}
.pdp-qty-label{font-size:15px; color:var(--ink-75); margin:18px 0 8px;}
.pdp-qty button{width:48px; height:48px; font-size:20px;}
.pdp-qty span{min-width:48px; font-size:16px;}
.pdp-actions{display:flex; flex-direction:column; gap:12px; margin:22px 0 26px; max-width:520px;}
.pdp-actions .btn{width:100%;}
.pdp-wish{display:inline-flex; align-items:center; gap:8px; align-self:flex-start; min-height:44px; font-size:15px; color:var(--ink); text-decoration:underline; text-underline-offset:4px;}
.pdp-wish svg{width:18px; height:18px; stroke:var(--ink); fill:none;}
.pdp-wish.active svg{fill:var(--sale); stroke:var(--sale);}
.pdp-desc{color:var(--ink-75); line-height:1.8; font-size:16.5px; max-width:560px;}
.pdp-related{margin-top:72px;}
.pdp-related h2{font-family:var(--sans); font-weight:400; font-size:clamp(26px,3.4vw,36px); color:var(--ink); margin-bottom:26px;}
@media(max-width:920px){
  .pdp{padding-top:14px; padding-bottom:48px;}
  .pdp-grid{grid-template-columns:1fr; gap:22px;}
  .pdp-actions{max-width:none;}
  .pdp-related{margin-top:48px;}
}

/* =====================================================================
   PERFORMANCE LAYER
   Applied only where it is safe: promoting the WHOLE page or every wrapper
   would enlarge memory use and break position:fixed/sticky children.
   ===================================================================== */
/* no 300ms tap delay, no grey tap flash */
a, button, .chip, .card{-webkit-tap-highlight-color:transparent; touch-action:manipulation;}

/* GPU layer promotion (elements that scroll, slide or animate) */
header.site, .hero-frame, .card, .top-btn, .marquee-track{transform:translate3d(0,0,0); backface-visibility:hidden;}
header.site, .hero-frame, .marquee-track, .cart-drawer, .mobile-nav, .toast, .top-btn{will-change:transform;}
.card:hover .card-img img{will-change:transform;}
.hero-frame, .card, .cart-drawer, .mobile-nav{perspective:1000px;}

/* strict containment: only on boxes whose size does NOT depend on their content
   (fixed inset/width, or aspect-ratio boxes). contain:strict on auto-height boxes would collapse them to 0. */
.cart-drawer, .mobile-nav, .overlay, .top-btn, .card-img, .hero-frame, .map-embed, .pdp-media{contain:strict;}

/* skip rendering of off-screen blocks until they are near the viewport */
.section, .newsletter, .promo-banner, footer{content-visibility:auto; contain-intrinsic-size:auto 640px;}
footer{contain-intrinsic-size:auto 420px;}

/* repaint isolation */
.section, .hero, .card, .cart-drawer, .mobile-nav, .toast{isolation:isolate;}

/* main-thread freeze while the user scrolls / touches / tab is hidden */
html.is-interacting .marquee-track, html.is-hidden .marquee-track, .marquee-strip.is-paused .marquee-track{animation-play-state:paused;}
html.is-interacting .card-img img, html.is-interacting .card-quick{transition:none;}
html.is-interacting .card:hover .card-img img{transform:none;}

/* =========================================================
   OWNER PANEL — fully scoped under #ownerPanelRoot so none
   of these rules can ever affect the storefront's own CSS.
   Hidden by default; opened only via the contact-page code.
   ========================================================= */
#ownerPanelRoot{
  display:none;
  --adm-ink:#121212; --adm-ink-75:rgba(18,18,18,.75); --adm-muted:rgba(18,18,18,.6);
  --adm-line:rgba(18,18,18,.14); --adm-soft:#f3f3f3; --adm-bg:#ffffff;
  --adm-gold:#f2d27a; --adm-sale:#e11d24; --adm-danger:#c8282e;
  --adm-sans:-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  font-family:var(--adm-sans); color:var(--adm-ink);
}
#ownerPanelRoot.open{display:block;}
#ownerPanelRoot *{box-sizing:border-box;}
#ownerPanelRoot img{max-width:100%; display:block;}
#ownerPanelRoot button{font-family:inherit; cursor:pointer;}
#ownerPanelRoot input, #ownerPanelRoot select, #ownerPanelRoot textarea{font-family:inherit; font-size:14px;}

#ownerPanelRoot #loginGate{position:fixed; inset:0; background:var(--adm-ink); display:flex; align-items:center; justify-content:center; z-index:1001;}
#ownerPanelRoot .login-box{position:relative; background:#fff; border-radius:4px; padding:40px 36px; width:100%; max-width:360px; text-align:center;}
#ownerPanelRoot .login-box img{height:44px; margin:0 auto 14px;}
#ownerPanelRoot .login-box h1{font-size:20px; margin-bottom:6px; letter-spacing:.02em;}
#ownerPanelRoot .login-box p{color:var(--adm-muted); font-size:13px; margin-bottom:22px;}
#ownerPanelRoot .login-box input{width:100%; padding:13px 14px; border:1px solid var(--adm-line); border-radius:2px; margin-bottom:12px; outline:none;}
#ownerPanelRoot .login-box input:focus{border-color:var(--adm-ink);}
#ownerPanelRoot .adm-back{position:absolute; top:10px; right:12px; background:none; border:none; font-size:22px; line-height:1; color:var(--adm-muted);}
#ownerPanelRoot .login-err{color:var(--adm-sale); font-size:12.5px; margin-top:10px; display:none;}

#ownerPanelRoot #app{position:fixed; inset:0; overflow-y:auto; z-index:1000; background:var(--adm-soft); display:none;}
#ownerPanelRoot #app.on{display:block;}
#ownerPanelRoot header.adm{background:var(--adm-ink); color:#fff; padding:16px 24px; display:flex; align-items:center; justify-content:space-between; position:sticky; top:0; z-index:10;}
#ownerPanelRoot header.adm .brand{display:flex; align-items:center; gap:10px; font-weight:800; letter-spacing:.03em; font-size:17px; background:none; -webkit-text-fill-color:currentColor;}
#ownerPanelRoot header.adm .brand img{height:28px;}
#ownerPanelRoot header.adm .status{font-size:11.5px; color:var(--adm-gold); display:flex; align-items:center; gap:6px;}
#ownerPanelRoot header.adm .status .dot{width:6px; height:6px; border-radius:50%; background:var(--adm-gold);}
#ownerPanelRoot header.adm .logout{background:none; border:1px solid rgba(255,255,255,.25); color:#fff; padding:8px 16px; border-radius:2px; font-size:12.5px;}

#ownerPanelRoot .tabs{display:flex; gap:4px; background:#fff; border-bottom:1px solid var(--adm-line); padding:0 24px; overflow-x:auto;}
#ownerPanelRoot .tab-btn{padding:14px 18px; font-size:13.5px; font-weight:600; color:var(--adm-muted); border-bottom:2px solid transparent; white-space:nowrap; background:none; border-top:none; border-left:none; border-right:none;}
#ownerPanelRoot .tab-btn.active{color:var(--adm-ink); border-bottom-color:var(--adm-ink);}

#ownerPanelRoot .wrap{max-width:1100px; margin:0 auto; padding:28px 24px 80px;}
#ownerPanelRoot .tab-pane{display:none;}
#ownerPanelRoot .tab-pane.active{display:block;}

#ownerPanelRoot .card{background:#fff; border:1px solid var(--adm-line); border-radius:3px; padding:22px; margin-bottom:20px;}
#ownerPanelRoot .card h2{font-size:16px; margin-bottom:4px;}
#ownerPanelRoot .card .sub{color:var(--adm-muted); font-size:12.5px; margin-bottom:18px;}

#ownerPanelRoot .stat-grid{display:grid; grid-template-columns:repeat(auto-fit,minmax(160px,1fr)); gap:14px; margin-bottom:22px;}
#ownerPanelRoot .stat{background:#fff; border:1px solid var(--adm-line); border-radius:3px; padding:18px;}
#ownerPanelRoot .stat .n{font-size:26px; font-weight:800;}
#ownerPanelRoot .stat .l{font-size:12px; color:var(--adm-muted); margin-top:2px;}

#ownerPanelRoot .field{margin-bottom:14px;}
#ownerPanelRoot .field label{display:block; font-size:12px; font-weight:700; margin-bottom:6px; color:var(--adm-ink-75);}
#ownerPanelRoot .field input, #ownerPanelRoot .field select, #ownerPanelRoot .field textarea{width:100%; padding:11px 12px; border:1px solid var(--adm-line); border-radius:2px; outline:none;}
#ownerPanelRoot .field input:focus, #ownerPanelRoot .field select:focus, #ownerPanelRoot .field textarea:focus{border-color:var(--adm-ink);}
#ownerPanelRoot .field textarea{resize:vertical; min-height:70px;}
#ownerPanelRoot .grid2{display:grid; grid-template-columns:1fr 1fr; gap:14px;}
@media(max-width:600px){ #ownerPanelRoot .grid2{grid-template-columns:1fr;} }

#ownerPanelRoot .btn{padding:11px 20px; border-radius:2px; font-size:13px; font-weight:700; letter-spacing:.02em; border:none;}
#ownerPanelRoot .btn-dark{background:var(--adm-ink); color:#fff;}
#ownerPanelRoot .btn-dark:hover{opacity:.88;}
#ownerPanelRoot .btn-outline{background:#fff; border:1px solid var(--adm-ink); color:var(--adm-ink);}
#ownerPanelRoot .btn-danger{background:var(--adm-sale); color:#fff;}
#ownerPanelRoot .btn-sm{padding:7px 12px; font-size:12px;}
#ownerPanelRoot .btn:disabled{opacity:.5; cursor:not-allowed;}

#ownerPanelRoot table{width:100%; border-collapse:collapse; font-size:13px;}
#ownerPanelRoot th{text-align:left; font-size:11px; letter-spacing:.05em; color:var(--adm-muted); padding:8px 10px; border-bottom:1px solid var(--adm-line);}
#ownerPanelRoot td{padding:10px; border-bottom:1px solid var(--adm-line); vertical-align:middle;}
#ownerPanelRoot td img{width:38px; height:38px; object-fit:cover; border-radius:2px; border:1px solid var(--adm-line);}
#ownerPanelRoot .row-actions{display:flex; gap:6px;}
#ownerPanelRoot .table-wrap{overflow-x:auto;}

#ownerPanelRoot .chip-row{display:flex; flex-wrap:wrap; gap:8px; margin-bottom:14px;}
#ownerPanelRoot .chip{display:flex; align-items:center; gap:8px; background:var(--adm-soft); border:1px solid var(--adm-line); border-radius:20px; padding:7px 8px 7px 14px; font-size:13px;}
#ownerPanelRoot .chip button{background:none; border:none; color:var(--adm-sale); font-weight:800; width:18px; height:18px; border-radius:50%; display:flex; align-items:center; justify-content:center;}

#ownerPanelRoot .toast{position:fixed; bottom:24px; left:50%; transform:translateX(-50%) translateY(20px); background:var(--adm-ink); color:#fff; padding:13px 24px; border-radius:30px; font-size:13px; font-weight:700; opacity:0; pointer-events:none; transition:all .3s; z-index:1200;}
#ownerPanelRoot .toast.show{opacity:1; transform:translateX(-50%) translateY(0);}

#ownerPanelRoot .hint{font-size:12px; color:var(--adm-muted); margin-top:8px;}
#ownerPanelRoot .empty{text-align:center; color:var(--adm-muted); padding:40px 10px; font-size:13.5px;}

/* =========================================================
   OWNER SETTINGS — storefront features switched on from the
   Owner Panel (banner, countdown, maintenance, WhatsApp button…)
   ========================================================= */
.vx-banner, .vx-countdown{
  text-align:center; font-size:13.5px; font-weight:700; letter-spacing:.05em;
  padding:10px 18px; line-height:1.4; position:relative; z-index:71;
}
.vx-banner{
  color:#000; font-weight:900; font-size:14.5px; letter-spacing:.07em; overflow:hidden; isolation:isolate;
  text-shadow:0 0 8px rgba(255,255,255,.75), 0 1px 0 rgba(255,255,255,.6);
  background:linear-gradient(105deg,#c9971c 0%,#f8e08e 9%,#e0b53a 18%,#4a67c9 30%,#3a55b5 38%,#7ed957 52%,#3fcf5a 60%,#f4f6f8 74%,#c5cbd3 82%,#f8e08e 92%,#c9971c 100%);
  background-size:260% 100%; animation:vxBanFlow 10s ease-in-out infinite;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.85), inset 0 -2px 4px rgba(0,0,0,.18);
}
.vx-banner .vx-ban-t{position:relative; z-index:2;}
.vx-banner::before{content:""; position:absolute; top:0; bottom:0; left:-40%; width:30%; z-index:1; pointer-events:none; background:linear-gradient(100deg,transparent,rgba(255,255,255,.75),transparent); transform:skewX(-20deg); animation:vxBanShine 4.5s ease-in-out infinite;}
.vx-banner::after{
  content:""; position:absolute; inset:0; z-index:1; pointer-events:none;
  background-image:radial-gradient(circle,rgba(255,255,255,.95) 0 1.2px,transparent 2px),radial-gradient(circle,rgba(255,244,190,.9) 0 1px,transparent 1.8px),radial-gradient(circle,rgba(255,255,255,.8) 0 1px,transparent 1.6px);
  background-size:57px 26px,83px 31px,41px 19px; background-position:0 0,17px 9px,31px 4px; animation:vxBanGlit 2.6s ease-in-out infinite;
}
@keyframes vxBanFlow{0%,100%{background-position:0% 50%;} 50%{background-position:100% 50%;}}
@keyframes vxBanShine{0%{left:-40%;} 60%,100%{left:130%;}}
@keyframes vxBanGlit{0%,100%{opacity:1;} 50%{opacity:.3;}}
@media(max-width:760px){ .vx-banner{font-size:12.5px; padding:9px 12px;} }
.vx-countdown{background:var(--sale); color:#fff; font-variant-numeric:tabular-nums;}
.vx-spin{animation:vxSpin 8s linear infinite;}
@keyframes vxSpin{to{transform:rotate(360deg);}}
.vx-ico{width:20px; height:20px; object-fit:contain; border-radius:0;}
.vx-wa-float{
  position:fixed; left:18px; bottom:22px; width:52px; height:52px; border-radius:50%;
  background:#25d366; display:flex; align-items:center; justify-content:center; z-index:80;
  box-shadow:0 6px 18px rgba(0,0,0,.28);
}
.vx-wa-float svg{width:26px; height:26px; stroke:#fff;}
.vx-maint{
  position:fixed; inset:0; z-index:900; background:var(--ink); color:#fff;
  display:flex; align-items:center; justify-content:center; text-align:center; padding:24px;
}
.vx-maint-box{max-width:560px;}
.vx-maint-box h2{font-family:var(--serif); font-weight:600; font-size:clamp(30px,5vw,48px); color:var(--gold); margin-bottom:14px; letter-spacing:0;}
.vx-maint-box p{font-size:17px; line-height:1.7; color:rgba(255,255,255,.85);}
.vx-maint-owner{position:absolute; right:14px; bottom:10px; width:26px; height:26px; color:#fff; opacity:.12; font-size:20px; line-height:1;}
.vx-maint-owner:hover{opacity:.5;}
body.vx-nosel{-webkit-user-select:none; user-select:none;}
body.vx-nosel input, body.vx-nosel textarea, body.vx-nosel #ownerPanelRoot{-webkit-user-select:text; user-select:text;}

/* owner panel — extra controls used by the settings tabs */
#ownerPanelRoot .chk-row{display:flex; align-items:center; gap:9px; margin-bottom:12px; font-size:13.5px;}
#ownerPanelRoot .chk-row input{width:16px; height:16px; accent-color:var(--adm-ink);}
#ownerPanelRoot .btn-row{display:flex; flex-wrap:wrap; gap:10px;}
#ownerPanelRoot .color-grid{display:grid; grid-template-columns:repeat(auto-fill,minmax(230px,1fr)); gap:14px;}
#ownerPanelRoot .color-item{display:flex; align-items:center; gap:12px; font-size:13px;}
#ownerPanelRoot .color-item input[type=color]{width:46px; height:36px; padding:0; border:1px solid var(--adm-line); border-radius:2px; background:none; cursor:pointer; flex-shrink:0;}
#ownerPanelRoot textarea.code{font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace; font-size:12.5px; min-height:120px;}
#ownerPanelRoot .field input[type=file]{padding:8px;}


/* =========================================================
   REGISTER BUTTON · PROFILE AVATAR · ACCOUNT PAGE
   ========================================================= */
.reg-btn{
  position:relative; overflow:hidden; display:inline-flex; align-items:center; justify-content:center;
  min-height:42px; padding:0 24px; margin-right:8px; border-radius:999px; border:1px solid #fff;
  font-family:'Cinzel', Georgia, serif; font-weight:800; font-size:14px; letter-spacing:.1em; color:#b8860b;
  text-shadow:0 1px 0 rgba(255,255,255,.7);
  background:linear-gradient(135deg,#ffffff 0%,#e7eaee 42%,#ffffff 58%,#d8dce2 100%);
  box-shadow:inset 0 1px 0 #fff, 0 4px 14px rgba(255,255,255,.16);
  transition:transform .2s, box-shadow .2s;
}
.reg-btn::after{content:""; position:absolute; top:0; bottom:0; left:-60%; width:40%; background:linear-gradient(100deg,transparent,rgba(255,255,255,.85),transparent); transform:skewX(-20deg); transition:left .6s ease;}
.reg-btn:hover{transform:translateY(-1px); box-shadow:inset 0 1px 0 #fff, 0 8px 22px rgba(255,255,255,.3);}
.reg-btn:hover::after{left:130%;}
.mob-reg{display:none; width:100%; margin:20px 0 0; min-height:50px; font-size:15px; border-color:#cfd3d8; box-shadow:inset 0 1px 0 #fff, 0 4px 14px rgba(0,0,0,.14); flex-shrink:0;}
.user-avatar{
  width:46px; height:46px; flex-shrink:0; border-radius:50%; overflow:hidden; display:flex; align-items:center; justify-content:center;
  border:1.5px solid rgba(255,255,255,.7); background:#2c3038; color:var(--gold); font-weight:800; font-size:18px; transition:transform .2s, border-color .2s;
}
.user-avatar:hover{transform:scale(1.06); border-color:#fff;}
.user-avatar img{width:100%; height:100%; object-fit:cover;}
@media(max-width:920px){
  .reg-btn.desk{display:none;}
  .mob-reg{display:inline-flex;}
  .user-avatar{width:40px; height:40px; font-size:16px;}
}
.acc-sec{padding-top:56px;}
.acc-card{max-width:480px; margin:0 auto; border:1px solid var(--line); padding:34px 32px 30px;}
.acc-card h2{font-family:var(--sans); font-weight:400; font-size:clamp(26px,4vw,34px); color:var(--ink); text-align:center; margin-bottom:6px;}
.acc-card .acc-sub{text-align:center; color:var(--muted); font-size:14.5px; margin-bottom:22px;}
.acc-tabs{display:grid; grid-template-columns:1fr 1fr; border:1px solid var(--ink); border-radius:999px; overflow:hidden; margin-bottom:24px;}
.acc-tabs button{min-height:44px; font-weight:700; letter-spacing:.06em; color:var(--ink);}
.acc-tabs button.on{background:var(--ink); color:#fff;}
.acc-photo{display:flex; flex-direction:column; align-items:center; gap:8px; margin:0 auto 20px;}
.acc-photo > span{position:relative; width:112px; height:112px; border-radius:50%; overflow:visible; border:1.5px dashed var(--ink-75); background:var(--soft); display:flex; align-items:center; justify-content:center; cursor:pointer; box-shadow:0 4px 16px rgba(0,0,0,.08);}
.acc-photo > span::after{content:""; position:absolute; right:-4px; bottom:-4px; width:32px; height:32px; border-radius:50%; background:var(--ink); border:3px solid #fff; box-shadow:0 3px 10px rgba(0,0,0,.2);}
.acc-photo > span::before{content:"⇩"; position:absolute; z-index:3; right:4px; bottom:1px; color:#fff; font-size:19px; line-height:25px; font-weight:800; pointer-events:none; transform:rotate(0deg);}
.acc-photo > span svg{width:34px; height:34px; stroke:var(--ink-75);}
.acc-photo > span img{width:100%; height:100%; object-fit:cover; border-radius:50%;}
.acc-photo small{display:none;}
.acc-photo input{display:none;}
.acc-card input[disabled]{background:var(--soft); color:var(--muted);}
.acc-card .btn{width:100%; margin-top:6px;}
.acc-card .acc-alt{display:block; text-align:center; margin-top:18px; font-size:14.5px; color:var(--ink-75); text-decoration:underline; text-underline-offset:4px; width:100%;}
.acc-google-row{display:flex; align-items:center; gap:12px; margin-top:18px; width:100%;}
.acc-google-row .google-btn{flex:0 0 48px; width:48px; height:48px; border:1px solid var(--line); border-radius:60%; background:#fff; display:grid; place-items:center; cursor:pointer; box-shadow:0 3px 12px rgba(0,0,0,.08); transition:transform .15s ease, box-shadow .15s ease;}
.acc-google-row .google-btn:hover{transform:translateY(-1px); box-shadow:0 5px 16px rgba(0,0,0,.12);}
.acc-google-row .google-btn:disabled{opacity:.6; cursor:wait; transform:none;}
.google-g{font:700 22px Arial,sans-serif; color:#4285F4; line-height:1;}
.acc-alt-side{margin-top:0 !important; text-align:left !important; flex:1; padding:0; min-height:48px; display:flex !important; align-items:center; justify-content:flex-start;}
@media(max-width:520px){.acc-google-row{gap:10px}.acc-google-row .google-btn{flex-basis:46px;width:46px;height:46px}.acc-alt-side{font-size:13.5px;}}
@media(max-width:520px){ .acc-card{padding:24px 18px 22px; border-left:none; border-right:none;} .acc-sec{padding-top:26px;} }

/* =========================================================
   SALE CATEGORY BUTTON (4:3) · SHOP FILTERS · SORT
   ========================================================= */
.chip.chip-sale{width:64px; height:48px; min-height:0; padding:0; margin-left:66px; border:none; overflow:hidden; background:var(--sale);}
.chip.chip-sale img{width:100%; height:100%; object-fit:cover; display:block;}
.chip.chip-sale.active{box-shadow:0 0 0 2px #fff, 0 0 0 4px var(--ink);}
@media(max-width:760px){ .chip.chip-sale{margin-left:52px;} }
.shop-layout{display:grid; grid-template-columns:230px minmax(0,1fr); gap:34px; align-items:start;}
.shop-main .grid{grid-template-columns:repeat(4,1fr);}
@media(max-width:1280px){ .shop-main .grid{grid-template-columns:repeat(3,1fr);} }
@media(max-width:760px){ .shop-main .grid{grid-template-columns:repeat(2,1fr); gap:26px 12px;} }
.filters{position:sticky; top:190px; border:1px solid var(--line); padding:20px;}
.filters h4{font-size:16px; font-weight:700; color:var(--ink); margin-bottom:12px;}
.filters-toggle{display:none;}
.price-inputs{display:flex; align-items:center; gap:8px; margin-bottom:16px;}
.price-inputs input{width:100%; min-width:0; height:44px; padding:0 12px; border:1px solid var(--ink-75); border-radius:8px; font-size:15px; color:var(--ink); outline:none; background:#fff;}
.price-inputs input:focus{box-shadow:0 0 0 1px var(--ink);}
.filters .btn{width:100%; border-radius:8px;}
.sort-row{display:flex; align-items:center; gap:10px; margin-bottom:22px;}
.sort-row label{font-size:15px; color:var(--ink-75); white-space:nowrap;}
.sort-row select{height:44px; padding:0 34px 0 14px; border:1px solid var(--line); border-radius:10px; background:#fff; color:var(--ink); font-size:15px; font-family:inherit; min-width:0; max-width:100%;}
.sort-row select:focus{border-color:var(--ink); outline:none;}
@media(max-width:920px){
  .shop-layout{grid-template-columns:1fr; gap:16px;}
  .filters{position:static; padding:0; border:none;}
  .filters-toggle{display:flex; align-items:center; justify-content:space-between; width:100%; min-height:46px; padding:0 16px; border:1px solid var(--line); border-radius:10px; font-size:15px; font-weight:700; color:var(--ink);}
  .filters-toggle svg{width:18px; height:18px; stroke:var(--ink); transition:transform .2s;}
  .filters.open .filters-toggle svg{transform:rotate(180deg);}
  .filters-body{display:none; border:1px solid var(--line); border-radius:10px; padding:16px; margin-top:8px;}
  .filters.open .filters-body{display:block;}
  .sort-row{margin-bottom:18px;}
  .sort-row select{flex:1;}
}

/* =========================================================
   OWNER PANEL — categories rows, font picker, social manager
   ========================================================= */
#ownerPanelRoot .cat-row{border:1px solid var(--adm-line); border-radius:3px; padding:12px; margin-bottom:10px; background:#fff;}
#ownerPanelRoot .cat-top{display:flex; align-items:center; gap:10px; margin-bottom:10px;}
#ownerPanelRoot .cat-name{flex:1; min-width:0; padding:10px 12px; border:1px solid var(--adm-line); border-radius:2px; font-weight:700;}
#ownerPanelRoot .cat-count{font-size:12px; color:var(--adm-muted); white-space:nowrap;}
#ownerPanelRoot .cat-acts{display:flex; flex-wrap:wrap; align-items:center; gap:8px;}
#ownerPanelRoot .cat-acts select{padding:8px 10px; border:1px solid var(--adm-line); border-radius:2px; max-width:100%;}
#ownerPanelRoot .cat-acts .chk-row{margin:0 6px;}
#ownerPanelRoot .sale-pill{background:var(--adm-sale); color:#fff; font-size:10px; font-weight:800; padding:2px 7px; border-radius:10px; vertical-align:middle;}
#ownerPanelRoot .fp{position:relative;}
#ownerPanelRoot .fp-lbl{display:block; font-size:11.5px; color:var(--adm-muted); margin:8px 0 4px;}
#ownerPanelRoot .fp-btn{display:flex; align-items:center; justify-content:space-between; width:100%; padding:11px 12px; border:1px solid var(--adm-line); border-radius:2px; background:#fff; text-align:left; font-size:14px;}
#ownerPanelRoot .fp.open .fp-btn{border-color:var(--adm-ink);}
#ownerPanelRoot .fp-list{display:none; position:absolute; left:0; right:0; top:100%; z-index:40; background:#fff; border:1px solid var(--adm-ink); max-height:270px; overflow-y:auto; box-shadow:0 12px 28px rgba(0,0,0,.18);}
#ownerPanelRoot .fp.open .fp-list{display:block;}
#ownerPanelRoot .fp-item{display:flex; align-items:center; justify-content:space-between; gap:8px; padding:10px 12px; font-size:14px; cursor:pointer;}
#ownerPanelRoot .fp-item:hover{background:var(--adm-soft);}
#ownerPanelRoot .fp-item.on{font-weight:800;}
#ownerPanelRoot .fp-item.up{color:#0a58ca; font-weight:700; border-bottom:1px solid var(--adm-line);}
#ownerPanelRoot .fp-del{color:var(--adm-sale); font-weight:800; font-size:17px; line-height:1; width:26px; height:26px; border-radius:50%; flex-shrink:0;}
#ownerPanelRoot .fp-del:hover{background:rgba(225,29,36,.1);}
#ownerPanelRoot .soc-row{border:1px solid var(--adm-line); border-radius:3px; padding:12px 14px 4px; margin-bottom:12px;}
#ownerPanelRoot .soc-head{display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom:6px;}
#ownerPanelRoot .soc-head .chk-row{margin:0; font-weight:700;}
@media(max-width:600px){ #ownerPanelRoot .cat-acts > *{flex:1 1 auto;} }/* Customer messages / information modal */
#ownerPanelRoot .adm-unread-badge{display:none;align-items:center;justify-content:center;min-width:19px;height:19px;padding:0 5px;margin-left:6px;border-radius:20px;background:var(--adm-sale);color:#fff;font-size:10px;font-weight:800;vertical-align:middle}
#ownerPanelRoot .adm-unread-row{background:rgba(242,210,122,.10)}
#ownerPanelRoot .adm-msg-status{display:inline-flex;padding:4px 8px;border-radius:20px;font-size:10px;font-weight:800}
#ownerPanelRoot .adm-msg-status.unread{background:rgba(225,29,36,.10);color:var(--adm-sale)}
#ownerPanelRoot .adm-msg-status.read{background:var(--adm-soft);color:var(--adm-muted)}
#ownerPanelRoot .adm-modal{display:none;position:fixed;inset:0;z-index:1300;align-items:center;justify-content:center;padding:20px}
#ownerPanelRoot .adm-modal.open{display:flex}
#ownerPanelRoot .adm-modal-backdrop{position:absolute;inset:0;background:rgba(0,0,0,.55)}
#ownerPanelRoot .adm-modal-card{position:relative;z-index:1;width:min(620px,100%);max-height:90vh;overflow:auto;background:#fff;border-radius:8px;padding:26px;box-shadow:0 24px 70px rgba(0,0,0,.25)}
#ownerPanelRoot .adm-modal-close{position:absolute;right:12px;top:10px;background:none;border:0;font-size:26px;color:var(--adm-muted);line-height:1}
#ownerPanelRoot .adm-modal-card h2{font-size:18px;margin:0 30px 20px 0}
#ownerPanelRoot .adm-customer-grid{display:flex;align-items:center;gap:14px;padding-bottom:18px;border-bottom:1px solid var(--adm-line);margin-bottom:12px}
#ownerPanelRoot .adm-customer-avatar{width:58px;height:58px;border-radius:50%;overflow:hidden;border:1px solid var(--adm-line);display:flex;align-items:center;justify-content:center;background:var(--adm-soft);font-size:25px;flex:0 0 58px}
#ownerPanelRoot .adm-customer-avatar img{width:100%;height:100%;object-fit:cover}
#ownerPanelRoot .adm-customer-name{font-size:17px;font-weight:800}
#ownerPanelRoot .adm-detail-list>div{display:grid;grid-template-columns:120px 1fr;gap:12px;padding:10px 0;border-bottom:1px solid var(--adm-line);font-size:13px}
#ownerPanelRoot .adm-detail-list span{color:var(--adm-muted);font-weight:600}
#ownerPanelRoot .adm-detail-list strong{font-weight:600;word-break:break-word}
#ownerPanelRoot .adm-break{word-break:break-all}
@media(max-width:600px){
 #ownerPanelRoot .adm-modal{padding:10px}
 #ownerPanelRoot .adm-modal-card{padding:20px 16px;border-radius:6px;max-height:94vh}
 #ownerPanelRoot .adm-detail-list>div{grid-template-columns:90px 1fr;gap:8px;font-size:12px}
 #ownerPanelRoot .tabs{padding:0 10px}
 #ownerPanelRoot .tab-btn{padding:12px 12px;font-size:12px}
}

/* Final authentication gate + mobile polish */
.auth-gate{position:fixed;inset:0;z-index:12000;display:none;align-items:center;justify-content:center;padding:20px;}
.auth-gate.open{display:flex;}
.auth-gate-backdrop{position:absolute;inset:0;background:rgba(10,10,12,.62);backdrop-filter:blur(7px);}
.auth-gate-card{position:relative;width:min(430px,100%);background:#fff;border:1px solid rgba(20,20,24,.08);border-radius:24px;padding:34px 30px 30px;box-shadow:0 30px 80px rgba(0,0,0,.22);text-align:center;z-index:1;}
.auth-gate-close{position:absolute;right:14px;top:12px;width:38px;height:38px;border:0;border-radius:50%;background:#f5f5f6;color:#202126;font-size:25px;line-height:1;cursor:pointer;}
.auth-gate-icon{width:54px;height:54px;border-radius:16px;margin:0 auto 16px;display:grid;place-items:center;background:#17181b;color:#fff;font-family:Georgia,serif;font-size:25px;}
.auth-gate-card h2{margin:7px 0 8px;font-size:28px;letter-spacing:-.02em;}
.auth-gate-card p{margin:0 auto 24px;max-width:340px;color:#666b73;line-height:1.6;font-size:14px;}
.auth-gate-actions{display:grid;grid-template-columns:1fr 1fr;gap:10px;}
.auth-gate-actions .btn{min-height:48px;}
.newsletter.subscribed{display:none!important;}
@media(max-width:600px){
 .auth-gate{padding:14px;align-items:flex-end;}
 .auth-gate-card{border-radius:22px;padding:30px 18px 18px;margin-bottom:max(0px,env(safe-area-inset-bottom));}
 .auth-gate-card h2{font-size:24px;}
 .auth-gate-actions{grid-template-columns:1fr;}
 .auth-gate-actions .btn{min-height:50px;}
}
html.vx-has-user .newsletter{display:none!important;}

/* Owner tabs: horizontally swipe/drag on every screen size, with clear edge space. */
#ownerPanelRoot .tabs{overflow-x:auto;overflow-y:hidden;flex-wrap:nowrap;white-space:nowrap;scroll-behavior:smooth;scrollbar-width:thin;-webkit-overflow-scrolling:touch;touch-action:pan-x;cursor:grab;overscroll-behavior-x:contain;}
#ownerPanelRoot .tabs.dragging{cursor:grabbing;scroll-behavior:auto;user-select:none;}
#ownerPanelRoot .tabs::after{content:"";display:block;flex:0 0 24px;}
#ownerPanelRoot .tab-btn{flex:0 0 auto;}
#ownerPanelRoot .tabs{scroll-padding-inline:24px;}
@media(max-width:700px){#ownerPanelRoot .tabs{padding:0 8px;}#ownerPanelRoot .tab-btn{padding:13px 14px;font-size:12px;min-height:48px;}}

/* Same entrance/active animation language as the storefront category switcher. */
#accRoot .acc-card{animation:accCardIn .34s ease both;}
#accRoot .acc-tabs button{transition:background .22s ease,color .22s ease,transform .22s ease;}
#accRoot .acc-tabs button:active{transform:scale(.97);}
#accRoot .acc-tabs button.on{animation:accTabIn .28s ease both;}
@keyframes accCardIn{from{opacity:0;transform:translateY(12px) scale(.985)}to{opacity:1;transform:translateY(0) scale(1)}}
@keyframes accTabIn{from{opacity:.65;transform:translateY(3px)}to{opacity:1;transform:translateY(0)}}
