/** Shopify CDN: Minification failed

Line 617:51 The "+" operator only works if there is whitespace on both sides
Line 720:39 The "+" operator only works if there is whitespace on both sides
Line 852:36 The "+" operator only works if there is whitespace on both sides

**/
/* ============================================
   ZEWAR.SHOP — Theme v2
   Navy #0A1F44 · Gold #C9A84C · White base
   ============================================ */

:root {
  --navy:        #0A1F44;
  --navy-dark:   #060e1f;
  --navy-mid:    #122352;
  --gold:        #C9A84C;
  --gold-dark:   #9e7e2e;
  --gold-light:  #fdf7e8;
  --gold-muted:  #ecddb0;
  --white:       #ffffff;
  --off-white:   #f9f8f5;
  --text:        #1a1a2e;
  --text-muted:  #6b6b82;
  --border:      #e5d9b6;
  --border-light:#f0ead8;
  --sale:        #c94040;
  --wa-green:    #25D366;
  --wa-dark:     #128C7E;
  --wa-bg:       #E5DDD5;

  --ff-display:  'Cormorant Garamond', Georgia, serif;
  --ff-body:     'Jost', system-ui, sans-serif;

  --max-w:       1300px;
  --pad:         clamp(1rem, 3.5vw, 2rem);
  --r:           6px;
  --r-lg:        14px;
  --r-xl:        20px;
  --sh:          0 2px 14px rgba(10,31,68,.07);
  --sh-lg:       0 8px 32px rgba(10,31,68,.14);
  --t:           .22s ease;
  --bar-h:       40px;
  --hdr-h:       70px;
}

/* ── RESET ── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family:var(--ff-body);
  font-size:.9375rem;
  line-height:1.65;
  color:var(--text);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
  padding-top:calc(var(--bar-h) + var(--hdr-h));
}
a{color:inherit;text-decoration:none}
img{max-width:100%;height:auto;display:block}
button{cursor:pointer;font-family:inherit;background:none;border:none}
ul,ol{list-style:none}
input,textarea,select{font-family:inherit;font-size:inherit;outline:none}

/* ── LAYOUT ── */
.container{max-width:var(--max-w);margin:0 auto;padding:0 var(--pad)}
.section{padding:4rem 0}
.section-sm{padding:2.5rem 0}
.section-label{
  display:block;
  font-size:.68rem;
  font-weight:600;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:.5rem
}
.section-title{
  font-family:var(--ff-display);
  font-size:clamp(1.8rem,3vw,2.6rem);
  font-weight:600;
  color:var(--navy);
  line-height:1.15
}
.section-header{text-align:center;margin-bottom:2.5rem}
.section-header p{color:var(--text-muted);font-size:.9rem;margin-top:.4rem}

/* ── BUTTONS ── */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  gap:.45rem;padding:.7rem 1.5rem;
  font-family:var(--ff-body);font-size:.78rem;font-weight:600;
  letter-spacing:.08em;text-transform:uppercase;
  border-radius:var(--r);border:2px solid transparent;
  cursor:pointer;white-space:nowrap;transition:all var(--t)
}
.btn svg{width:15px;height:15px;fill:currentColor;flex-shrink:0}
.btn-navy{background:var(--navy);color:#fff;border-color:var(--navy)}
.btn-navy:hover{background:var(--gold-dark);border-color:var(--gold-dark)}
.btn-gold{background:var(--gold);color:#fff;border-color:var(--gold)}
.btn-gold:hover{background:var(--gold-dark);border-color:var(--gold-dark)}
.btn-outline{background:transparent;color:#fff;border-color:rgba(255,255,255,.55)}
.btn-outline:hover{background:#fff;color:var(--navy);border-color:#fff}
.btn-outline-navy{background:transparent;color:var(--navy);border-color:var(--navy)}
.btn-outline-navy:hover{background:var(--navy);color:#fff}
.btn-wa{background:var(--wa-green);color:#fff;border-color:var(--wa-green)}
.btn-wa:hover{background:var(--wa-dark);border-color:var(--wa-dark)}
.btn-sm{padding:.45rem 1rem;font-size:.72rem}
.btn-full{width:100%}

/* ── ANNOUNCEMENT BAR ── */
.ann-bar{
  position:fixed;top:0;left:0;right:0;z-index:300;
  height:var(--bar-h);background:var(--navy);
  overflow:hidden;display:flex;align-items:center
}
.ann-track{
  display:flex;white-space:nowrap;
  animation:marquee 28s linear infinite
}
.ann-track:hover{animation-play-state:paused}
.ann-inner{display:inline-flex;align-items:center}
.ann-item{
  display:inline-flex;align-items:center;gap:.5rem;
  padding:0 2.2rem;color:rgba(255,255,255,.88);
  font-size:.73rem;font-weight:500;letter-spacing:.02em
}
.ann-dot{width:3px;height:3px;background:var(--gold);border-radius:50%;flex-shrink:0}
@keyframes marquee{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}

/* ── HEADER ── */
.site-header{
  position:fixed;top:var(--bar-h);left:0;right:0;z-index:200;
  height:var(--hdr-h);background:#fff;
  border-bottom:1px solid var(--border-light);
  display:flex;align-items:center;
  transition:box-shadow var(--t)
}
.site-header.scrolled{box-shadow:var(--sh)}
.hdr-inner{
  display:flex;align-items:center;
  justify-content:space-between;gap:1.25rem;width:100%
}
/* Logo */
.hdr-logo img{height:46px;width:auto;object-fit:contain;display:block}
/* Nav */
.hdr-nav{display:flex;align-items:center;gap:.1rem}
.nav-item{position:relative}
.nav-link{
  display:flex;align-items:center;gap:.28rem;
  padding:.45rem .8rem;font-size:.82rem;font-weight:500;
  color:var(--text);border-radius:var(--r);
  transition:color var(--t),background var(--t)
}
.nav-link:hover{color:var(--navy);background:var(--gold-light)}
.nav-chevron{
  width:11px;height:11px;stroke:currentColor;fill:none;
  stroke-width:2.2;transition:transform var(--t)
}
.nav-item:hover .nav-chevron{transform:rotate(180deg)}
.nav-dropdown{
  position:absolute;top:calc(100% + 8px);left:0;
  min-width:230px;background:#fff;
  border:1px solid var(--border-light);border-radius:var(--r-lg);
  box-shadow:var(--sh-lg);padding:.5rem;
  opacity:0;pointer-events:none;
  transform:translateY(-6px);
  transition:all var(--t);z-index:100
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown{opacity:1;pointer-events:all;transform:translateY(0)}
.dd-link{
  display:flex;align-items:center;gap:.7rem;
  padding:.55rem .8rem;border-radius:var(--r);
  font-size:.83rem;color:var(--text);
  transition:background var(--t)
}
.dd-link:hover{background:var(--gold-light);color:var(--navy)}
.dd-icon{font-size:1.1rem;width:22px;text-align:center;flex-shrink:0}
.dd-title{font-weight:600;font-size:.82rem}
.dd-sub{font-size:.7rem;color:var(--text-muted);display:block}
.dd-divider{height:1px;background:var(--border-light);margin:.35rem .6rem}
/* Search */
.hdr-search{
  display:flex;align-items:center;
  background:var(--off-white);border:1.5px solid var(--border);
  border-radius:50px;padding:.38rem .9rem;gap:.5rem;
  flex:1;max-width:320px;transition:border-color var(--t)
}
.hdr-search:focus-within{border-color:var(--gold)}
.hdr-search input{
  flex:1;background:none;border:none;
  font-size:.8rem;color:var(--text);min-width:0
}
.hdr-search input::placeholder{color:var(--text-muted);font-size:.76rem}
.hdr-search-btn{
  background:none;border:none;cursor:pointer;
  color:var(--text-muted);display:flex;align-items:center;
  flex-shrink:0;transition:color var(--t)
}
.hdr-search-btn:hover{color:var(--navy)}
.hdr-search-btn svg{width:15px;height:15px;stroke:currentColor;fill:none;stroke-width:2}
/* Actions */
.hdr-actions{display:flex;align-items:center;gap:.2rem;flex-shrink:0}
.hdr-btn{
  position:relative;display:flex;align-items:center;
  justify-content:center;width:40px;height:40px;
  border-radius:var(--r);color:var(--text);
  transition:all var(--t)
}
.hdr-btn:hover{background:var(--gold-light);color:var(--navy)}
.hdr-btn svg{width:21px;height:21px;stroke:currentColor;fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
/* Cart badge — ALWAYS visible, gold circle top-right */
.cart-badge{
  position:absolute;top:-5px;right:-5px;
  min-width:19px;height:19px;
  background:var(--gold);color:#fff;
  font-size:.6rem;font-weight:700;
  border-radius:50%;display:flex;
  align-items:center;justify-content:center;
  border:2px solid #fff;line-height:1;padding:0 3px
}
/* Hamburger */
.hamburger{
  display:none;flex-direction:column;gap:5px;
  width:38px;height:38px;align-items:center;
  justify-content:center;border-radius:var(--r);
  transition:background var(--t)
}
.hamburger:hover{background:var(--gold-light)}
.hamburger span{
  display:block;width:21px;height:2px;
  background:var(--navy);border-radius:2px;
  transition:all var(--t)
}
.hamburger.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.hamburger.open span:nth-child(2){opacity:0;width:0}
.hamburger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* ── MOBILE MENU ── */
.mobile-menu{
  display:none;
  position:fixed;
  top:calc(var(--bar-h) + var(--hdr-h));
  left:0;right:0;bottom:0;
  background:#fff;z-index:150;
  overflow-y:auto;
  padding:1.5rem var(--pad) 3rem;
  transform:translateX(-100%);
  transition:transform .3s ease
}
.mobile-menu.open{transform:translateX(0)}
.mob-search{
  display:flex;align-items:center;
  background:var(--off-white);border:1.5px solid var(--border);
  border-radius:50px;padding:.5rem 1rem;gap:.5rem;
  margin-bottom:1.25rem
}
.mob-search input{flex:1;background:none;border:none;font-size:.85rem;color:var(--text)}
.mob-search input::placeholder{color:var(--text-muted)}
.mob-search svg{width:15px;height:15px;stroke:var(--text-muted);fill:none;stroke-width:2}
.mob-nav-link{
  display:flex;align-items:center;justify-content:space-between;
  padding:.8rem 0;border-bottom:1px solid var(--border-light);
  font-size:.95rem;font-weight:500;color:var(--text)
}
.mob-sub{
  padding:.4rem 0 .4rem 1rem;
  border-left:2px solid var(--gold-light);
  display:none;margin:.25rem 0
}
.mob-sub a{display:block;padding:.4rem .6rem;font-size:.875rem;color:var(--text-muted);border-radius:var(--r);transition:all var(--t)}
.mob-sub a:hover{color:var(--navy);background:var(--gold-light)}
.mob-cta{margin-top:1.5rem;display:flex;flex-direction:column;gap:.75rem}

/* ── HERO ── */
.hero{
  position:relative;min-height:88vh;
  display:flex;align-items:center;overflow:hidden;
  background:var(--navy) center/cover no-repeat
}
.hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(105deg, rgba(6,14,31,.85) 0%, rgba(10,31,68,.65) 55%, rgba(10,31,68,.3) 100%)
}
.hero-inner{
  position:relative;z-index:1;
  display:grid;grid-template-columns:1fr 1fr;
  gap:2.5rem;align-items:center;padding:5rem 0
}
.hero-eyebrow{
  font-size:.7rem;font-weight:600;letter-spacing:.2em;
  text-transform:uppercase;color:var(--gold);margin-bottom:1.1rem
}
.hero-heading{
  font-family:var(--ff-display);
  font-size:clamp(2.4rem,5.5vw,4rem);
  font-weight:700;color:#fff;line-height:1.1;
  margin-bottom:1.1rem
}
.hero-heading em{font-style:italic;color:var(--gold)}
.hero-sub{
  font-size:.975rem;color:rgba(255,255,255,.72);
  margin-bottom:1.75rem;max-width:420px;line-height:1.7
}
.hero-actions{display:flex;gap:.75rem;flex-wrap:wrap;margin-bottom:2rem}
.hero-trust{display:flex;gap:1.5rem;flex-wrap:wrap}
.trust-mini{display:flex;align-items:center;gap:.4rem;font-size:.76rem;color:rgba(255,255,255,.6)}
.trust-mini .i{color:var(--gold)}
.hero-img-wrap{
  display:flex;align-items:center;justify-content:center
}
.hero-img-wrap img{
  max-width:420px;width:100%;
  border-radius:var(--r-xl);
  box-shadow:0 20px 60px rgba(0,0,0,.4)
}

/* ── COLLECTION GRID (smaller, zoom on hover) ── */
.cat-section{background:var(--off-white)}
.collections-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:1.25rem
}
.col-card{
  position:relative;display:block;
  border-radius:var(--r-lg);overflow:hidden;
  background:var(--navy);
  aspect-ratio:5/3;          /* smaller ratio = less tall */
  box-shadow:var(--sh);
  transition:box-shadow var(--t)
}
.col-card:hover{box-shadow:var(--sh-lg)}
.col-card img{
  width:100%;height:100%;object-fit:cover;
  opacity:.72;
  transition:transform .45s ease, opacity var(--t)
}
.col-card:hover img{transform:scale(1.07);opacity:.6}
.col-card-body{
  position:absolute;inset:0;
  background:linear-gradient(0deg, rgba(10,31,68,.82) 0%, rgba(10,31,68,.15) 60%, transparent 100%);
  display:flex;flex-direction:column;
  justify-content:flex-end;padding:1.25rem 1.5rem
}
.col-card-title{
  font-family:var(--ff-display);font-size:1.35rem;
  font-weight:700;color:#fff;margin-bottom:.2rem
}
.col-card-sub{font-size:.75rem;color:rgba(255,255,255,.65);margin-bottom:.75rem}
.col-card-cta{
  display:inline-flex;align-items:center;gap:.35rem;
  font-size:.72rem;font-weight:700;letter-spacing:.1em;
  text-transform:uppercase;color:var(--gold);
  transition:gap var(--t)
}
.col-card:hover .col-card-cta{gap:.6rem}
.col-card-cta svg{width:13px;height:13px;stroke:currentColor;fill:none;stroke-width:2.5}

/* ── PRODUCT CARDS (translateY on hover) ── */
.products-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(210px,1fr));
  gap:1.1rem
}
.product-card{
  background:#fff;border-radius:var(--r-lg);
  overflow:hidden;border:1px solid var(--border-light);
  display:flex;flex-direction:column;
  transition:transform .25s ease, box-shadow .25s ease
}
.product-card:hover{
  transform:translateY(-10px);
  box-shadow:0 14px 38px rgba(10,31,68,.14)
}
.pc-img{
  position:relative;aspect-ratio:1;
  overflow:hidden;background:var(--gold-light)
}
.pc-img img{
  width:100%;height:100%;object-fit:cover;
  transition:transform .4s ease
}
.pc-badge{
  position:absolute;top:9px;left:9px;
  background:var(--sale);color:#fff;
  font-size:.62rem;font-weight:700;
  letter-spacing:.04em;text-transform:uppercase;
  padding:.22rem .55rem;border-radius:3px
}
.pc-body{padding:.9rem;flex:1;display:flex;flex-direction:column}
/* collection name above title — gold */
.pc-collection{
  font-size:.65rem;font-weight:700;
  letter-spacing:.12em;text-transform:uppercase;
  color:var(--gold);margin-bottom:.28rem
}
.pc-title{
  font-family:var(--ff-display);font-size:.975rem;
  font-weight:600;color:var(--navy);
  line-height:1.3;margin-bottom:.5rem;flex:1
}
.pc-price{display:flex;align-items:center;gap:.45rem;margin-bottom:.8rem}
.pc-price .cur{font-size:.975rem;font-weight:700;color:var(--navy)}
.pc-price .was{font-size:.8rem;color:var(--text-muted);text-decoration:line-through}
.pc-actions{display:flex;gap:.45rem}
.pc-actions .btn{flex:1;font-size:.68rem;padding:.48rem .5rem}

/* ── TRUST BADGES ── */
.trust-section{
  background:var(--gold-light);
  padding:2rem 0;
  border-top:1px solid var(--gold-muted);
  border-bottom:1px solid var(--gold-muted)
}
.trust-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.25rem}
.trust-badge{display:flex;flex-direction:column;align-items:center;text-align:center;gap:.55rem}
.tb-icon{
  width:50px;height:50px;border-radius:50%;
  background:var(--navy);display:flex;
  align-items:center;justify-content:center;font-size:1.3rem
}
.tb-title{font-size:.8rem;font-weight:700;color:var(--navy)}
.tb-sub{font-size:.7rem;color:var(--text-muted);line-height:1.4}

/* ── TESTIMONIALS (text + WA screenshots) ── */
.reviews-section{background:#fff}
.reviews-tabs{
  display:flex;gap:.5rem;
  justify-content:center;margin-bottom:2rem
}
.rev-tab{
  padding:.5rem 1.25rem;border-radius:50px;
  font-size:.78rem;font-weight:600;
  border:1.5px solid var(--border);
  cursor:pointer;transition:all var(--t);background:#fff;color:var(--text-muted)
}
.rev-tab.active{background:var(--navy);color:#fff;border-color:var(--navy)}
.reviews-scroll{
  display:flex;gap:1.1rem;overflow-x:auto;
  padding-bottom:1rem;scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;scrollbar-width:none
}
.reviews-scroll::-webkit-scrollbar{display:none}

/* Text review card */
.rev-card{
  flex-shrink:0;width:272px;scroll-snap-align:start;
  background:#fff;border:1px solid var(--border-light);
  border-radius:var(--r-lg);padding:1.2rem;
  box-shadow:var(--sh)
}
.rev-stars{color:var(--gold);font-size:.85rem;letter-spacing:.06em;margin-bottom:.55rem}
.rev-text{font-size:.845rem;color:var(--text);line-height:1.65;margin-bottom:.8rem;font-style:italic}
.rev-author{font-size:.75rem;font-weight:700;color:var(--navy)}
.rev-verified{font-size:.68rem;color:var(--text-muted);margin-top:.15rem}

/* WhatsApp screenshot card */
.wa-card{
  flex-shrink:0;width:268px;scroll-snap-align:start;
  border-radius:var(--r-lg);overflow:hidden;
  box-shadow:var(--sh-lg);font-size:.78rem;
  font-family:-apple-system,'Segoe UI',Roboto,sans-serif
}
.wa-hdr{
  background:#075E54;padding:.65rem .9rem;
  display:flex;align-items:center;gap:.6rem
}
.wa-avatar{
  width:34px;height:34px;border-radius:50%;
  background:var(--wa-green);display:flex;
  align-items:center;justify-content:center;
  font-size:.82rem;font-weight:700;color:#fff;flex-shrink:0
}
.wa-contact-name{color:#fff;font-size:.8rem;font-weight:600;line-height:1.2}
.wa-contact-num{color:rgba(255,255,255,.65);font-size:.68rem}
.wa-hdr-icons{margin-left:auto;display:flex;gap:.75rem;opacity:.85}
.wa-hdr-icons svg{width:16px;height:16px;fill:white}
.wa-body{
  background:var(--wa-bg);
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(0,0,0,.03)'/%3E%3C/svg%3E");
  padding:.7rem .65rem;display:flex;flex-direction:column;gap:.5rem;
  min-height:160px
}
.wa-date{
  text-align:center;font-size:.62rem;color:rgba(0,0,0,.5);
  background:rgba(255,255,255,.6);padding:.2rem .6rem;
  border-radius:8px;align-self:center;margin:.2rem 0
}
.wa-msg{
  max-width:80%;padding:.45rem .65rem .95rem;
  border-radius:8px;position:relative;
  font-size:.75rem;line-height:1.5;color:#111
}
.wa-msg.rcv{background:#fff;border-radius:0 8px 8px 8px;align-self:flex-start}
.wa-msg.snt{background:#DCF8C6;border-radius:8px 0 8px 8px;align-self:flex-end}
.wa-ts{
  position:absolute;bottom:3px;right:7px;
  font-size:.58rem;color:rgba(0,0,0,.4);white-space:nowrap
}
.wa-tick{color:#34B7F1}
.wa-footer{
  background:#f0f0f0;padding:.45rem .7rem;
  display:flex;align-items:center;gap:.5rem;border-top:1px solid #ddd
}
.wa-footer input{
  flex:1;border:none;background:transparent;
  font-size:.72rem;color:var(--text-muted)
}
.wa-footer-icon{color:#919191}

/* ── NEWSLETTER ── */
.newsletter{background:var(--navy);padding:3rem 0;text-align:center}
.newsletter h2{
  font-family:var(--ff-display);font-size:1.85rem;
  font-weight:600;color:#fff;margin-bottom:.4rem
}
.newsletter p{color:rgba(255,255,255,.6);font-size:.875rem;margin-bottom:1.5rem}
.nl-form{
  display:flex;max-width:430px;margin:0 auto;
  border-radius:var(--r);overflow:hidden;
  border:1px solid rgba(255,255,255,.15)
}
.nl-form input{
  flex:1;padding:.75rem 1.1rem;background:rgba(255,255,255,.08);
  color:#fff;font-size:.85rem;border:none
}
.nl-form input::placeholder{color:rgba(255,255,255,.4)}
.nl-form button{
  padding:.75rem 1.4rem;background:var(--gold);color:#fff;
  font-size:.75rem;font-weight:700;letter-spacing:.06em;
  text-transform:uppercase;border:none;cursor:pointer;
  transition:background var(--t)
}
.nl-form button:hover{background:var(--gold-dark)}

/* ── FOOTER ── */
.site-footer{background:var(--navy-dark);color:rgba(255,255,255,.72);padding:3.25rem 0 0}
.footer-grid{
  display:grid;grid-template-columns:2fr 1fr 1fr 1.5fr;
  gap:2.5rem;padding-bottom:2.5rem;
  border-bottom:1px solid rgba(255,255,255,.09)
}
.ft-logo img{height:42px;object-fit:contain;margin-bottom:.5rem;display:block}
.ft-tagline{font-size:.65rem;letter-spacing:.15em;text-transform:uppercase;color:var(--gold);margin-bottom:.9rem}
.ft-desc{font-size:.83rem;line-height:1.7;color:rgba(255,255,255,.5);margin-bottom:1.1rem;max-width:250px}
.pay-badges{display:flex;flex-wrap:wrap;gap:.4rem}
.pay-badge{
  background:rgba(255,255,255,.09);border:1px solid rgba(255,255,255,.12);
  color:rgba(255,255,255,.65);font-size:.62rem;font-weight:700;
  letter-spacing:.06em;padding:.28rem .6rem;border-radius:4px;text-transform:uppercase
}
.ft-col-title{
  font-size:.67rem;font-weight:700;letter-spacing:.15em;
  text-transform:uppercase;color:var(--gold);margin-bottom:1rem
}
.ft-links{display:flex;flex-direction:column;gap:.5rem}
.ft-links a{font-size:.83rem;color:rgba(255,255,255,.55);transition:color var(--t)}
.ft-links a:hover{color:#fff}
.ft-contact{display:flex;flex-direction:column;gap:.8rem}
.ft-contact-row{display:flex;align-items:flex-start;gap:.55rem;font-size:.83rem;color:rgba(255,255,255,.55)}
.ft-contact-row .icon{font-size:.9rem;flex-shrink:0;margin-top:.1rem}
.ft-contact-row a:hover{color:#fff}
.ft-contact-hint{font-size:.7rem;color:rgba(255,255,255,.35)}
.footer-bottom{
  padding:1.1rem 0;display:flex;
  align-items:center;justify-content:space-between;
  flex-wrap:wrap;gap:.6rem
}
.footer-bottom p{font-size:.75rem;color:rgba(255,255,255,.35)}
.footer-bottom-links{display:flex;gap:1.25rem}
.footer-bottom-links a{font-size:.75rem;color:rgba(255,255,255,.4);transition:color var(--t)}
.footer-bottom-links a:hover{color:#fff}

/* ── WA FLOAT ── */
.wa-float{
  position:fixed;bottom:1.6rem;right:1.6rem;z-index:500;
  width:54px;height:54px;background:var(--wa-green);
  border-radius:50%;display:flex;align-items:center;
  justify-content:center;box-shadow:0 4px 18px rgba(37,211,102,.4);
  transition:transform var(--t),box-shadow var(--t)
}
.wa-float:hover{transform:scale(1.1);box-shadow:0 6px 24px rgba(37,211,102,.52)}
.wa-float svg{width:27px;height:27px;fill:#fff}
.wa-float::before{
  content:'';position:absolute;inset:-4px;border-radius:50%;
  border:2px solid rgba(37,211,102,.3);
  animation:wa-pulse 2.2s ease-out infinite
}
@keyframes wa-pulse{0%{opacity:1;transform:scale(1)}100%{opacity:0;transform:scale(1.55)}}

/* ── COLLECTION PAGE ── */
.col-banner{background:var(--navy);padding:2.75rem 0;text-align:center;position:relative;overflow:hidden}
.col-banner-bg{position:absolute;inset:0;object-fit:cover;width:100%;height:100%;opacity:.22}
.col-banner-content{position:relative;z-index:1}
.col-banner h1{
  font-family:var(--ff-display);font-size:clamp(1.7rem,3.5vw,2.6rem);
  font-weight:600;color:#fff;margin-bottom:.4rem
}
.col-banner p{color:rgba(255,255,255,.62);font-size:.9rem;max-width:520px;margin:0 auto}
.col-main{padding:2.5rem 0}
.col-toolbar{
  display:flex;align-items:center;justify-content:space-between;
  margin-bottom:1.6rem;gap:.75rem;flex-wrap:wrap
}
.col-count{font-size:.82rem;color:var(--text-muted)}
.col-sort select{
  padding:.45rem .9rem;border:1px solid var(--border);
  border-radius:var(--r);font-size:.82rem;color:var(--text);
  background:#fff;cursor:pointer
}

/* ── PRODUCT PAGE ── */
.prod-main{padding:2.75rem 0}
.prod-grid{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:start}
.prod-gallery{position:sticky;top:calc(var(--bar-h)+var(--hdr-h)+1.25rem)}
.prod-gallery-main{
  border-radius:var(--r-lg);overflow:hidden;
  background:var(--gold-light);aspect-ratio:1;margin-bottom:.6rem
}
.prod-gallery-main img{width:100%;height:100%;object-fit:cover}
.prod-thumbs{display:flex;gap:.45rem;overflow-x:auto;scrollbar-width:none}
.prod-thumbs::-webkit-scrollbar{display:none}
.prod-thumb{
  flex-shrink:0;width:68px;height:68px;border-radius:var(--r);
  overflow:hidden;border:2px solid transparent;cursor:pointer;
  background:var(--gold-light);transition:border-color var(--t)
}
.prod-thumb.active,.prod-thumb:hover{border-color:var(--gold)}
.prod-thumb img{width:100%;height:100%;object-fit:cover}
.prod-info{display:flex;flex-direction:column;gap:1.1rem}
.prod-breadcrumb{
  display:flex;align-items:center;gap:.4rem;
  font-size:.76rem;color:var(--text-muted)
}
.prod-breadcrumb a:hover{color:var(--navy)}
.prod-breadcrumb .sep{color:var(--border)}
.prod-collection-tag{
  font-size:.68rem;font-weight:700;letter-spacing:.12em;
  text-transform:uppercase;color:var(--gold)
}
.prod-title{
  font-family:var(--ff-display);
  font-size:clamp(1.6rem,2.5vw,2.2rem);
  font-weight:700;color:var(--navy);line-height:1.2
}
.prod-price-row{display:flex;align-items:center;gap:.9rem}
.prod-price-cur{font-size:1.55rem;font-weight:700;color:var(--navy)}
.prod-price-was{font-size:.95rem;color:var(--text-muted);text-decoration:line-through}
.prod-save{
  background:var(--sale);color:#fff;
  font-size:.68rem;font-weight:700;padding:.22rem .55rem;border-radius:3px
}
.prod-tags{display:flex;gap:.45rem;flex-wrap:wrap}
.prod-tag{
  background:var(--gold-light);color:var(--gold-dark);
  font-size:.67rem;font-weight:700;letter-spacing:.06em;
  text-transform:uppercase;padding:.28rem .65rem;
  border-radius:3px;border:1px solid var(--gold-muted)
}
.prod-desc{font-size:.9rem;color:var(--text-muted);line-height:1.78}
.variant-label{font-size:.75rem;font-weight:700;letter-spacing:.05em;text-transform:uppercase;color:var(--text)}
.qty-wrap{display:flex;align-items:center;border:1px solid var(--border);border-radius:var(--r);overflow:hidden;width:fit-content}
.qty-btn{
  width:38px;height:38px;display:flex;align-items:center;
  justify-content:center;background:var(--off-white);
  font-size:1.1rem;cursor:pointer;border:none;
  transition:background var(--t)
}
.qty-btn:hover{background:var(--gold-light)}
.qty-input{
  width:48px;text-align:center;font-size:.9rem;font-weight:600;
  border:none;border-left:1px solid var(--border);
  border-right:1px solid var(--border);padding:.5rem 0;
  -moz-appearance:textfield
}
.qty-input::-webkit-inner-spin-button,.qty-input::-webkit-outer-spin-button{-webkit-appearance:none}
.prod-form{display:flex;flex-direction:column;gap:.6rem}
.prod-form .btn{padding:.88rem 1.4rem}
.prod-wa-box{
  padding:1rem;background:rgba(37,211,102,.06);
  border-radius:var(--r);border:1px solid rgba(37,211,102,.18)
}
.prod-wa-box p{font-size:.76rem;color:var(--text-muted);margin-bottom:.55rem}
.prod-wa-box .btn-wa{width:100%;justify-content:center;padding:.85rem}
.prod-meta-box{
  padding:.9rem 1rem;background:var(--gold-light);
  border-radius:var(--r);border:1px solid var(--gold-muted)
}
.prod-meta-row{
  display:flex;align-items:center;gap:.5rem;
  font-size:.8rem;color:var(--text-muted);padding:.18rem 0
}
.prod-meta-row .mi{font-size:.9rem}

/* ── CART ── */
.cart-main{padding:2.75rem 0}
.cart-grid{display:grid;grid-template-columns:1fr 320px;gap:2.25rem;align-items:start}
.cart-items{display:flex;flex-direction:column;gap:.9rem}
.cart-row{
  display:grid;grid-template-columns:76px 1fr auto;
  gap:.9rem;align-items:center;padding:.9rem;
  background:#fff;border:1px solid var(--border-light);
  border-radius:var(--r-lg)
}
.cart-img{width:76px;height:76px;border-radius:var(--r);overflow:hidden;background:var(--gold-light)}
.cart-img img{width:100%;height:100%;object-fit:cover}
.cart-item-title{
  font-family:var(--ff-display);font-size:.975rem;
  font-weight:600;color:var(--navy);margin-bottom:.2rem
}
.cart-item-variant{font-size:.78rem;color:var(--text-muted)}
.cart-item-price{font-size:.9rem;font-weight:600;color:var(--navy);margin-top:.3rem}
.cart-item-remove{font-size:.72rem;color:var(--text-muted);cursor:pointer;transition:color var(--t)}
.cart-item-remove:hover{color:var(--sale)}
.cart-summary{
  background:#fff;border:1px solid var(--border-light);
  border-radius:var(--r-lg);padding:1.4rem;
  position:sticky;top:calc(var(--bar-h)+var(--hdr-h)+1rem)
}
.cart-summary h3{
  font-family:var(--ff-display);font-size:1.2rem;
  font-weight:600;color:var(--navy);margin-bottom:1rem
}
.cart-totals{display:flex;flex-direction:column;gap:.5rem;margin-bottom:1.1rem}
.cart-total-row{display:flex;justify-content:space-between;font-size:.86rem}
.cart-total-row.grand{
  font-weight:700;font-size:1rem;color:var(--navy);
  padding-top:.55rem;border-top:1px solid var(--border)
}

/* ── CONTACT PAGE ── */
.contact-pg{padding:3.5rem 0}
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:start}
.contact-info h1{
  font-family:var(--ff-display);font-size:2.1rem;
  font-weight:600;color:var(--navy);margin-bottom:.45rem
}
.contact-info p{color:var(--text-muted);font-size:.9rem;margin-bottom:1.75rem;line-height:1.7}
.contact-cards{display:flex;flex-direction:column;gap:.8rem}
.ccard{
  display:flex;align-items:center;gap:.9rem;
  padding:.9rem 1.1rem;background:#fff;
  border:1px solid var(--border-light);border-radius:var(--r-lg);
  transition:border-color var(--t),box-shadow var(--t);text-decoration:none;color:inherit
}
.ccard:hover{border-color:var(--gold);box-shadow:var(--sh)}
.ccard-icon{
  width:44px;height:44px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;font-size:1.2rem;flex-shrink:0
}
.ccard-icon.green{background:rgba(37,211,102,.12)}
.ccard-icon.gold{background:var(--gold-light)}
.ccard-icon.navy{background:rgba(10,31,68,.08)}
.ccard-label{font-size:.72rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;color:var(--text-muted)}
.ccard-value{font-size:.88rem;font-weight:600;color:var(--navy)}
.contact-form-box{
  background:#fff;border:1px solid var(--border-light);
  border-radius:var(--r-lg);padding:1.85rem;box-shadow:var(--sh)
}
.contact-form-box h2{
  font-family:var(--ff-display);font-size:1.4rem;
  font-weight:600;color:var(--navy);margin-bottom:1.25rem
}
.fg{display:flex;flex-direction:column;gap:.35rem;margin-bottom:.9rem}
.fg label{font-size:.72rem;font-weight:700;letter-spacing:.04em;text-transform:uppercase;color:var(--text)}
.fg input,.fg textarea,.fg select{
  padding:.65rem .9rem;border:1.5px solid var(--border);
  border-radius:var(--r);font-size:.88rem;color:var(--text);
  background:#fff;width:100%;transition:border-color var(--t)
}
.fg input:focus,.fg textarea:focus{border-color:var(--gold)}
.fg textarea{min-height:120px;resize:vertical}

/* ── EXCHANGE & REFUND PAGE ── */
.policy-pg{padding:3.5rem 0}
.policy-hero-box{
  background:var(--gold-light);border-radius:var(--r-xl);
  padding:2.75rem;text-align:center;margin-bottom:2.5rem;
  border:1px solid var(--gold-muted)
}
.policy-hero-box h1{
  font-family:var(--ff-display);font-size:2.3rem;
  font-weight:700;color:var(--navy);margin-bottom:.5rem
}
.policy-hero-box p{color:var(--text-muted);font-size:.95rem}
.policy-steps{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:1.1rem;margin-bottom:2.5rem
}
.pol-step{
  background:#fff;border:1px solid var(--border-light);
  border-radius:var(--r-lg);padding:1.4rem
}
.pol-step-num{
  font-family:var(--ff-display);font-size:2.4rem;
  font-weight:700;color:var(--gold-muted);line-height:1;margin-bottom:.4rem
}
.pol-step h3{font-size:.88rem;font-weight:700;color:var(--navy);margin-bottom:.35rem}
.pol-step p{font-size:.82rem;color:var(--text-muted);line-height:1.6}
.policy-body{
  background:#fff;border:1px solid var(--border-light);
  border-radius:var(--r-lg);padding:2rem
}
.policy-body h2{
  font-family:var(--ff-display);font-size:1.35rem;
  font-weight:600;color:var(--navy);
  margin-bottom:.65rem;margin-top:1.75rem
}
.policy-body h2:first-child{margin-top:0}
.policy-body p{font-size:.88rem;color:var(--text-muted);line-height:1.78;margin-bottom:.6rem}
.policy-body ul{display:flex;flex-direction:column;gap:.35rem;margin-bottom:1rem}
.policy-body ul li{
  display:flex;align-items:flex-start;gap:.55rem;
  font-size:.88rem;color:var(--text-muted)
}
.policy-body ul li::before{content:'✓';color:var(--gold);font-weight:700;flex-shrink:0}

/* ── BREADCRUMB ── */
.breadcrumb{padding:.65rem 0;border-bottom:1px solid var(--border-light);margin-bottom:2rem}
.breadcrumb ol{display:flex;gap:.4rem;align-items:center;font-size:.76rem;color:var(--text-muted)}
.breadcrumb a:hover{color:var(--navy)}
.breadcrumb .sep{color:var(--border)}
.breadcrumb .cur{color:var(--text);font-weight:500}

/* ── PAGINATION ── */
.pagination{display:flex;justify-content:center;gap:.45rem;margin-top:2.25rem}
.pagination a,.pagination span{
  width:36px;height:36px;display:flex;align-items:center;
  justify-content:center;border:1px solid var(--border);
  border-radius:var(--r);font-size:.82rem;font-weight:500;
  color:var(--text);transition:all var(--t)
}
.pagination a:hover,.pagination .current{background:var(--navy);border-color:var(--navy);color:#fff}

/* ── EMPTY STATE ── */
.empty-state{text-align:center;padding:5rem 0}
.empty-state p{color:var(--text-muted);margin-bottom:1.25rem}

/* ── RELATED PRODUCTS ── */
.related-section{margin-top:3.5rem}
.related-section .section-title{font-size:1.65rem}

/* ── RESPONSIVE ── */
@media(max-width:1024px){
  .footer-grid{grid-template-columns:1fr 1fr;gap:2rem}
  .hdr-search{max-width:240px}
}
@media(max-width:768px){
  :root{--bar-h:34px;--hdr-h:60px}
  body{padding-top:calc(var(--bar-h)+var(--hdr-h))}
  .hdr-nav,.hdr-search{display:none}
  .hamburger{display:flex}
  .mobile-menu{display:block}
  .hero-inner{grid-template-columns:1fr;padding:3rem 0}
  .hero-img-wrap{display:none}
  .hero-heading{font-size:clamp(2rem,8vw,3rem)}
  .hero-actions{flex-direction:column}
  .hero-actions .btn{width:100%}
  .trust-grid{grid-template-columns:repeat(2,1fr)}
  .collections-grid{grid-template-columns:1fr}
  .prod-grid{grid-template-columns:1fr}
  .prod-gallery{position:static}
  .cart-grid{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  .policy-steps{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr;gap:1.75rem}
  .footer-bottom{flex-direction:column;text-align:center}
  .nl-form{flex-direction:column;border:none;border-radius:0}
  .nl-form input{border-radius:var(--r);border:1px solid rgba(255,255,255,.15);margin-bottom:.5rem}
  .nl-form button{border-radius:var(--r);padding:.85rem}
}
@media(max-width:480px){
  .products-grid{grid-template-columns:repeat(2,1fr);gap:.65rem}
  .pc-body{padding:.7rem}
  .pc-title{font-size:.88rem}
  .pc-actions .btn{font-size:.62rem;padding:.42rem .35rem}
  .trust-grid{gap:.85rem}
  .hero-trust{flex-direction:column;gap:.6rem}
  .col-card{aspect-ratio:4/3}
}
@media(prefers-reduced-motion:reduce){
  .ann-track{animation:none}
  .wa-float::before{animation:none}
  *{transition-duration:.01ms!important}
}
