:root{
  --bg:#0A0A0B;
  --bg-raised:#131316;
  --line:#242427;
  --chrome-1:#8A8D93;
  --chrome-2:#E9EBEE;
  --chrome-3:#FFFFFF;
  --text:#F1F1EF;
  --muted:#8E8E92;
  --sale:#D9482E;
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  background:var(--bg);
  color:var(--text);
  font-family:'Inter',sans-serif;
  -webkit-font-smoothing:antialiased;
}
.mono{font-family:'Space Mono',monospace;}
.display{
  font-family:'Big Shoulders Display',sans-serif;
  text-transform:uppercase;
  font-weight:800;
  letter-spacing:0.01em;
}
.chrome-text{
  background:linear-gradient(120deg,#6b6e73 0%,#d8dade 22%,#ffffff 40%,#7d8087 55%,#eef0f2 72%,#8a8d93 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
a{color:inherit;}
img{max-width:100%; display:block;}

/* ===== MARQUEE ===== */
.marquee{
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  overflow:hidden;
  white-space:nowrap;
  padding:9px 0;
  background:var(--bg-raised);
}
.marquee-track{
  display:inline-block;
  font-family:'Space Mono',monospace;
  font-size:11px;
  letter-spacing:.14em;
  color:var(--chrome-2);
  animation:scroll 26s linear infinite;
}
.marquee-track span{padding:0 22px;}
@keyframes scroll{ from{transform:translateX(0);} to{transform:translateX(-50%);} }

/* ===== HEADER / NAV ===== */
#site-header{
  position:fixed; top:0; left:0; right:0; z-index:50;
}
header{
  background:transparent;
  backdrop-filter:none;
  border-bottom:1px solid transparent;
  transition:background-color .3s ease, backdrop-filter .3s ease, border-color .3s ease;
}
header.scrolled{
  background:rgba(10,10,11,0.88);
  backdrop-filter:blur(10px);
  border-bottom-color:var(--line);
}
.header-inner{
  max-width:1240px; margin:0 auto;
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 24px;
}
.brand{ display:flex; align-items:center; gap:12px; text-decoration:none; }
.brand img{ height:60px; width:60px; object-fit:contain; }
.brand .word{
  font-family:'Big Shoulders Display',sans-serif;
  font-weight:700; letter-spacing:.03em; font-size:16px;
  text-transform:uppercase;
}
.header-right{ display:flex; align-items:center; gap:18px; }
.nav-link{
  font-family:'Space Mono',monospace; font-size:11.5px; letter-spacing:.08em;
  text-transform:uppercase; color:var(--muted); text-decoration:none;
  transition:color .2s ease;
}
.nav-link:hover, .nav-link.active{ color:var(--text); }

.nav-search{
  display:flex; align-items:center; gap:6px;
  border:1px solid var(--line); border-radius:999px;
  padding:6px 6px 6px 14px;
  transition:border-color .2s ease;
}
.nav-search:focus-within{ border-color:var(--chrome-1); }
.nav-search input{
  background:none; border:none; outline:none;
  font-family:'Inter',sans-serif; font-size:12.5px; color:var(--text);
  width:110px;
}
.nav-search input::placeholder{ color:var(--muted); }
.nav-search button{
  background:none; border:none; color:var(--muted);
  width:24px; height:24px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; transition:color .2s ease, background .2s ease;
}
.nav-search button:hover{ color:var(--bg); background:var(--chrome-2); }

@media(max-width:820px){
  .nav-search input{ width:70px; }
}.ig-pill{
  display:flex; align-items:center; gap:8px;
  font-family:'Space Mono',monospace; font-size:12px;
  border:1px solid var(--chrome-1); border-radius:999px;
  padding:8px 16px; text-decoration:none; color:var(--text);
  transition:all .2s ease; white-space:nowrap;
}
.ig-pill:hover{background:var(--chrome-2); color:var(--bg); border-color:var(--chrome-2);}

nav.tabnav{
  max-width:1240px; margin:0 auto;
  padding:2px 24px 16px 24px;
  display:flex; gap:26px; overflow-x:auto;
  scrollbar-width:none;
  border-bottom:1px solid var(--line);
}
nav.tabnav::-webkit-scrollbar{display:none;}
.tab-btn{
  flex:0 0 auto;
  background:none; border:none;
  font-family:'Space Mono',monospace;
  font-size:12px; letter-spacing:.1em; text-transform:uppercase;
  color:var(--muted);
  padding:6px 2px 12px 2px;
  cursor:pointer;
  position:relative;
  transition:color .2s ease;
}
.tab-btn::after{
  content:""; position:absolute; left:0; right:0; bottom:0;
  height:2px; background:linear-gradient(90deg,var(--chrome-1),var(--chrome-3));
  transform:scaleX(0); transform-origin:left; transition:transform .25s ease;
}
.tab-btn:hover{color:var(--text);}
.tab-btn.active{color:var(--chrome-3);}
.tab-btn.active::after{transform:scaleX(1);}

/* ===== PAGE HEADER (used on sale.html / new-arrivals.html) ===== */
.page-header{ max-width:1240px; margin:0 auto; padding:56px 24px 30px 24px; }
.page-header .eyebrow{ font-family:'Space Mono',monospace; font-size:12px; letter-spacing:.16em; color:var(--muted); margin-bottom:14px; }
.page-header h1{ font-size:clamp(38px,7vw,72px); line-height:.92; }
.page-header p{ max-width:520px; margin-top:16px; font-size:14px; line-height:1.7; color:var(--muted); }

/* ===== HERO ===== */
.hero{
  max-width:1240px; margin:0 auto;
  padding:70px 24px 56px 24px;
  text-align:center;
}
.hero .eyebrow{
  font-family:'Space Mono',monospace; font-size:12px; letter-spacing:.18em;
  color:var(--muted); margin-bottom:18px;
}
.hero-logo{ height:74px; width:74px; object-fit:contain; margin:0 auto 22px auto; display:block; }
.hero h1{
  font-size:clamp(44px,9vw,104px);
  line-height:.9;
}
.hero p.desc{
  max-width:520px; margin:22px auto 0 auto;
  font-size:14.5px; line-height:1.7; color:var(--muted);
}

/* ===== SECTION HEADINGS ===== */
.section-head{
  max-width:1240px; margin:0 auto; padding:54px 24px 20px 24px;
  display:flex; align-items:baseline; justify-content:space-between; gap:16px;
  border-top:1px solid var(--line);
}
.section-head .heading-block .catno{
  font-family:'Space Mono',monospace; font-size:11px; color:var(--muted);
  letter-spacing:.12em; display:block; margin-bottom:6px;
}
.section-head h2{font-size:clamp(26px,5vw,42px);}
.section-head .subdesc{ font-size:13px; color:var(--muted); margin-top:6px; max-width:440px; }
.section-head .count{font-family:'Space Mono',monospace; font-size:12px; color:var(--muted);}
.view-all{
  font-family:'Space Mono',monospace; font-size:12px; letter-spacing:.06em;
  text-transform:uppercase; text-decoration:none; color:var(--text);
  border-bottom:1px solid var(--chrome-1); padding-bottom:2px;
  white-space:nowrap; transition:border-color .2s ease, color .2s ease;
}
.view-all:hover{ color:var(--chrome-3); border-color:var(--chrome-3); }

/* ===== PRODUCT GRID (minimal, borderless — matches reference) ===== */
.grid{
  max-width:1240px; margin:0 auto; padding:0 24px 10px 24px;
  display:grid; grid-template-columns:repeat(auto-fill,minmax(240px,1fr)); gap:32px 24px;
}
.empty{
  max-width:1240px; margin:0 auto; padding:20px 24px 60px 24px;
  font-family:'Space Mono',monospace; font-size:13px; color:var(--muted); display:none;
}

/* ===== FILTER BAR (shop.html) ===== */
.filter-bar{
  max-width:1240px; margin:0 auto; padding:18px 24px 26px 24px;
  display:flex; flex-wrap:wrap; align-items:center; gap:22px;
  border-bottom:1px solid var(--line);
}
.filter-group{ display:flex; align-items:center; gap:10px; }
.filter-label{
  font-size:10.5px; letter-spacing:.1em; text-transform:uppercase; color:var(--muted);
}
.filter-select{
  background:var(--bg-raised); color:var(--text);
  border:1px solid var(--line); border-radius:3px;
  padding:7px 10px; font-size:12px; cursor:pointer;
}
.filter-select:focus{ outline:1px solid var(--chrome-1); }
.tag-filter-group{ flex-wrap:wrap; }
.tag-chip-row{ display:flex; flex-wrap:wrap; gap:8px; }
.tag-chip{
  background:none; color:var(--muted);
  border:1px solid var(--line); border-radius:999px;
  padding:6px 13px; font-family:'Space Mono',monospace; font-size:11px;
  letter-spacing:.04em; cursor:pointer;
  transition:all .2s ease;
}
.tag-chip:hover{ color:var(--text); border-color:var(--chrome-1); }
.tag-chip.active{ background:var(--chrome-3); color:var(--bg); border-color:var(--chrome-3); }
.clear-filters-btn{
  background:none; border:none; color:var(--muted);
  font-size:11px; letter-spacing:.06em; text-transform:uppercase;
  text-decoration:underline; text-underline-offset:3px;
  cursor:pointer; margin-left:auto; padding:4px;
  transition:color .2s ease;
}
.clear-filters-btn:hover{ color:var(--text); }

/* ===== PRODUCT CARD ===== */
.card{
  position:relative;
  cursor:pointer;
}
.card .frame{
  position:relative;
  aspect-ratio:4/5;
  overflow:hidden;
  background:var(--bg-raised);
  margin-bottom:14px;
}
.card .frame img{
  width:100%; height:100%; object-fit:cover; display:block;
}
.card .frame img.primary{
  position:relative; opacity:1;
  transition:opacity .35s ease;
}
.card .frame img.secondary{
  position:absolute; inset:0; opacity:0;
  transition:opacity .35s ease;
}
.card:hover .frame img.primary{ opacity:0; }
.card:hover .frame img.secondary{ opacity:1; }

.bracket{ position:absolute; width:14px; height:14px; border:0 solid var(--chrome-1); opacity:0; transition:opacity .3s ease, border-color .3s ease; }
.bracket.tl{ top:8px; left:8px; border-top-width:1.5px; border-left-width:1.5px; }
.bracket.tr{ top:8px; right:8px; border-top-width:1.5px; border-right-width:1.5px; }
.bracket.bl{ bottom:8px; left:8px; border-bottom-width:1.5px; border-left-width:1.5px; }
.bracket.br{ bottom:8px; right:8px; border-bottom-width:1.5px; border-right-width:1.5px; }
.card:hover .bracket{ opacity:1; border-color:var(--chrome-3); }

.card .sale-flag{
  position:absolute; top:10px; left:10px; z-index:2;
  font-family:'Space Mono',monospace; font-size:10px; font-weight:700; letter-spacing:.06em;
  color:var(--bg); background:var(--sale);
  padding:4px 8px; border-radius:2px; text-transform:uppercase;
}

.card .label{
  font-family:'Space Mono',monospace; font-size:10.5px; color:var(--muted);
  letter-spacing:.1em; text-transform:uppercase; display:block; margin-bottom:6px;
}
.card h3{ font-size:14.5px; font-weight:600; line-height:1.35; margin-bottom:8px; }
.card .price-row{ display:flex; align-items:center; gap:6px; }
.card .price{ font-family:'Space Mono',monospace; font-weight:700; font-size:13.5px; }
.card .price.struck{ color:var(--muted); text-decoration:line-through; font-weight:400; }
.card .price.sale{ color:var(--sale); }
.card .price-from{ font-size:11px; color:var(--muted); text-transform:uppercase; letter-spacing:.04em; }

.card .swatch-hint{ display:flex; align-items:center; gap:6px; margin-top:10px; }
.card .swatch-dot{
  width:11px; height:11px; border-radius:50%; border:1px solid rgba(255,255,255,.25);
  box-shadow:0 0 0 1px rgba(0,0,0,.4) inset;
}
.card .swatch-more{ font-family:'Space Mono',monospace; font-size:10px; color:var(--muted); }

/* ===== PROMO BANNERS (full width + featured collection cards) ===== */
.promo-banner{
  max-width:1240px; margin:0 auto; padding:24px;
}
.promo-banner .banner-inner{
  position:relative;
  height:340px;
  display:flex; flex-direction:column; align-items:flex-start; justify-content:flex-start;
  padding:36px;
  background:
    linear-gradient(180deg, rgba(10,10,11,0) 0%, rgba(10,10,11,.85) 100%),
    var(--bg-raised);
  background-size:cover; background-position:center;
  border:1px solid var(--line);
  overflow:hidden;
}
.promo-banner .eyebrow{ font-family:'Space Mono',monospace; font-size:11px; letter-spacing:.14em; color:var(--chrome-2); margin-bottom:10px; }
.promo-banner h2{ font-size:clamp(28px,5vw,48px); margin-bottom:8px; }
.promo-banner p{ font-size:13.5px; color:var(--muted); margin-bottom:0; max-width:420px; }
/* button always pins to the bottom of the fixed-height banner, no matter
   how long the title or description above it runs */
.banner-inner .shop-now-btn{ margin-top:auto; }

.shop-now-btn{
  display:inline-flex; align-items:center; gap:8px;
  font-family:'Space Mono',monospace; font-size:11.5px; font-weight:700;
  letter-spacing:.08em; text-transform:uppercase;
  background:transparent; color:var(--text);
  border:1px solid var(--chrome-2); border-radius:2px;
  padding:12px 20px; text-decoration:none;
  position:relative; overflow:hidden;
  transition:color .3s ease, border-color .3s ease;
}
.shop-now-btn::before{
  content:""; position:absolute; inset:0;
  background:var(--chrome-3);
  transform:translateX(-101%);
  transition:transform .3s ease;
  z-index:-1;
}
.shop-now-btn:hover{ color:var(--bg); border-color:var(--chrome-3); }
.shop-now-btn:hover::before{ transform:translateX(0); }

/* featured collections: 3-up grid of the same banner style, shorter */
.collections-grid{
  max-width:1240px; margin:0 auto; padding:0 24px 60px 24px;
  display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:20px;
}
.collections-grid .banner-inner{ height:400px; padding:28px; }
.collections-grid h2{ font-size:clamp(24px,3vw,32px); }

/* ===== HOW TO ORDER ===== */
.order-strip{ margin:0; border-top:1px solid var(--line); padding:56px 24px; }
.order-inner{ max-width:1240px; margin:0 auto; display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:34px; }
.order-inner .head-block{ grid-column:1/-1; }
.order-inner .eyebrow{ font-family:'Space Mono',monospace; font-size:11px; letter-spacing:.16em; color:var(--muted); margin-bottom:10px; }
.order-inner h2{ font-size:clamp(26px,4vw,38px); }
.step{ border-left:1px solid var(--line); padding-left:18px; }
.step .num{ font-family:'Space Mono',monospace; color:var(--chrome-2); font-size:26px; font-weight:700; display:block; margin-bottom:8px; }
.step p{ font-size:13.5px; line-height:1.65; color:var(--muted); }

/* ===== FOOTER ===== */
footer{
  max-width:1240px; margin:0 auto; padding:36px 24px 54px 24px;
  display:flex; flex-wrap:wrap; gap:14px; align-items:center; justify-content:space-between;
  font-family:'Space Mono',monospace; font-size:11.5px; color:var(--muted);
  border-top:1px solid var(--line);
}
footer a{ color:var(--text); }

/* ===== PRODUCT MODAL ===== */
.modal-overlay{
  position:fixed; inset:0; z-index:100;
  background:rgba(6,6,7,0.86);
  backdrop-filter:blur(4px);
  display:none; align-items:center; justify-content:center;
  padding:24px;
}
.modal-overlay.open{ display:flex; }
.modal{
  background:var(--bg-raised);
  border:1px solid var(--line);
  max-width:900px; width:100%; max-height:88vh; overflow-y:auto;
  display:grid; grid-template-columns:1fr 1fr;
  position:relative;
}
.modal-close{
  position:absolute; top:14px; right:14px; z-index:2;
  width:32px; height:32px; border-radius:50%;
  background:rgba(10,10,11,.7); border:1px solid var(--chrome-1);
  color:var(--text); font-size:16px; line-height:1;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; transition:all .2s ease;
}
.modal-close:hover{ background:var(--chrome-3); color:var(--bg); }
.modal .modal-frame{
  position:relative; aspect-ratio:4/5; background:var(--bg);
  overflow:hidden;
}
.modal .modal-frame img{
  width:100%; height:100%; object-fit:cover; display:block;
  transition:opacity .25s ease;
}
.modal .modal-info{ padding:30px 28px; display:flex; flex-direction:column; }
.modal .catno{ font-family:'Space Mono',monospace; font-size:11px; color:var(--muted); letter-spacing:.1em; margin-bottom:10px; }
.modal h2{ font-family:'Big Shoulders Display',sans-serif; text-transform:uppercase; font-weight:800; font-size:30px; margin-bottom:6px; }
.modal .material{ font-size:12.5px; color:var(--muted); margin-bottom:18px; }
.modal .price-row{ display:flex; align-items:center; gap:10px; margin-bottom:24px; }
.modal .price{ font-family:'Space Mono',monospace; font-weight:700; font-size:20px; }
.modal .price.struck{ color:var(--muted); text-decoration:line-through; font-weight:400; font-size:15px; }
.modal .price.sale{ color:var(--sale); }

.colorway-label{ font-family:'Space Mono',monospace; font-size:11px; letter-spacing:.1em; color:var(--muted); margin-bottom:10px; text-transform:uppercase; }
.colorway-row{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:26px; }
.cw-swatch{
  width:44px; height:44px; border-radius:50%;
  border:1.5px solid var(--line);
  cursor:pointer; position:relative;
  transition:border-color .2s ease, transform .2s ease;
  overflow:hidden;
  background-size:cover; background-position:center;
}
.cw-swatch:hover{ transform:translateY(-2px); }
.cw-swatch.active{ border-color:var(--chrome-3); box-shadow:0 0 0 2px var(--bg-raised), 0 0 0 3px var(--chrome-3); }

.modal .dm-btn-lg{
  margin-top:auto;
  font-family:'Space Mono',monospace; font-size:12px; font-weight:700;
  text-transform:uppercase; letter-spacing:.06em;
  background:var(--chrome-3); color:var(--bg);
  border:none; border-radius:2px; padding:14px 18px;
  text-align:center; text-decoration:none; cursor:pointer;
  transition:opacity .2s ease;
}
.modal .dm-btn-lg:hover{ opacity:.85; }

/* ===== TOAST ===== */
.site-toast{
  position:fixed; left:50%; bottom:28px; z-index:200;
  transform:translate(-50%, 20px);
  background:var(--chrome-3); color:var(--bg);
  font-family:'Space Mono',monospace; font-size:12.5px; font-weight:700;
  padding:14px 22px; border-radius:3px;
  max-width:90vw; text-align:center;
  opacity:0; pointer-events:none;
  transition:opacity .25s ease, transform .25s ease;
  box-shadow:0 8px 24px rgba(0,0,0,.35);
}
.site-toast.show{
  opacity:1; transform:translate(-50%, 0);
}

/* ===== PROMO POPUP ===== */
.promo-popup-overlay{
  position:fixed; inset:0; z-index:300;
  background:rgba(6,6,7,0.78);
  backdrop-filter:blur(4px);
  display:flex; align-items:center; justify-content:center;
  padding:24px;
  opacity:0; pointer-events:none;
  transition:opacity .3s ease;
}
.promo-popup-overlay.open{ opacity:1; pointer-events:auto; }
.promo-popup{
  background:#F7F5F0;
  color:#141414;
  max-width:760px; width:100%;
  border-radius:8px;
  overflow:hidden;
  display:grid; grid-template-columns:1fr 1fr;
  position:relative;
  box-shadow:0 30px 80px rgba(0,0,0,.5);
  transform:scale(.96) translateY(8px);
  transition:transform .3s ease;
}
.promo-popup-overlay.open .promo-popup{ transform:scale(1) translateY(0); }
.promo-popup-close{
  position:absolute; top:16px; right:16px; z-index:2;
  width:32px; height:32px; border-radius:50%;
  background:rgba(20,20,20,.06); border:none;
  color:#141414; font-size:18px; line-height:1;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; transition:background .2s ease;
}
.promo-popup-close:hover{ background:rgba(20,20,20,.14); }
.promo-popup-art{
  background:linear-gradient(160deg,#cfe0ea 0%,#dce7ce 55%,#a9c17a 100%);
  min-height:300px;
}
.promo-popup-body{
  padding:44px 36px;
  display:flex; flex-direction:column; align-items:center; text-align:center;
  justify-content:center;
}
.promo-popup-logo{ height:46px; width:46px; object-fit:contain; margin-bottom:20px; }
.promo-popup-body h3{
  font-family:'Big Shoulders Display',sans-serif; font-weight:800; text-transform:uppercase;
  font-size:22px; letter-spacing:.01em; margin-bottom:16px; line-height:1.2;
}
.promo-popup-body p{ font-size:15px; line-height:1.6; margin-bottom:14px; color:#3a3a3a; }
.promo-popup-body .promo-popup-code{ font-size:15px; color:#141414; }
.promo-popup-body .promo-popup-code strong{
  font-family:'Space Mono',monospace; background:#141414; color:#F7F5F0;
  padding:2px 8px; border-radius:3px; letter-spacing:.04em;
}
.promo-popup-body .promo-popup-closing{
  font-family:'Big Shoulders Display',sans-serif; font-weight:800; text-transform:uppercase;
  font-size:16px; letter-spacing:.03em; margin-top:6px; margin-bottom:0;
}

@media(max-width:640px){
  .promo-popup{ grid-template-columns:1fr; }
  .promo-popup-art{ min-height:160px; }
  .promo-popup-body{ padding:34px 26px; }
}

/* =================================================================
   BANNER DUAL-IMAGE SYSTEM
   .banner-bg sits behind .banner-content using absolute positioning.
   Desktop and mobile layers are stacked on top of each other; CSS
   shows or hides each one based on screen width.
================================================================= */
.banner-inner{
  position:relative; overflow:hidden;
}
.banner-bg{
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  transition:opacity .3s ease;
}
.banner-content{
  position:relative; z-index:1;
  display:flex; flex-direction:column;
  align-items:flex-start; justify-content:flex-start;
  height:100%; padding:inherit;
}
/* Desktop: show desktop bg, hide mobile bg */
.banner-desktop{ opacity:1; }
.banner-mobile{ opacity:0; }

/* Mobile: swap which layer is visible */
@media(max-width:768px){
  .banner-desktop{ opacity:0; }
  .banner-mobile{ opacity:1; }
}

/* =================================================================
   HAMBURGER MENU
================================================================= */
/* Hide hamburger controls on desktop */
.mobile-nav-controls{ display:none; }
/* Hide desktop nav on mobile */
@media(max-width:768px){
  .desktop-nav{ display:none !important; }
  .mobile-nav-controls{
    display:flex; align-items:center; gap:14px;
  }
}

/* Hamburger button — three lines that animate to X */
.hamburger{
  background:none; border:none; cursor:pointer;
  width:36px; height:36px; padding:6px;
  display:flex; flex-direction:column; justify-content:space-between;
}
.hamburger span{
  display:block; height:1.5px; background:var(--text); border-radius:2px;
  transition:transform .25s ease, opacity .25s ease;
  transform-origin:center;
}
.hamburger.open span:nth-child(1){ transform:translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2){ opacity:0; }
.hamburger.open span:nth-child(3){ transform:translateY(-7.5px) rotate(-45deg); }

.mobile-search-toggle{
  background:none; border:none; cursor:pointer; color:var(--text);
  width:36px; height:36px; display:flex; align-items:center; justify-content:center;
}

/* Mobile menu drawer — slides down from the header */
.mobile-menu{
  max-height:0; overflow:hidden;
  transition:max-height .3s ease;
  background:rgba(10,10,11,0.97);
  border-top:1px solid transparent;
}
.mobile-menu.open{
  max-height:400px;
  border-top-color:var(--line);
}
.mobile-menu-links{
  display:flex; flex-direction:column;
  padding:10px 24px 24px 24px; gap:0;
}
.mobile-menu-links .nav-link{
  font-size:18px; letter-spacing:.04em; padding:14px 0;
  border-bottom:1px solid var(--line); color:var(--text);
}
.mobile-menu-links .nav-link:last-of-type{ border-bottom:none; }
.mobile-ig-link{
  margin-top:20px;
  font-family:'Space Mono',monospace; font-size:13px;
  color:var(--muted); text-decoration:none;
}

/* Mobile search bar — slides down when toggled */
.mobile-search-bar{
  max-height:0; overflow:hidden;
  transition:max-height .25s ease;
  background:rgba(10,10,11,0.97);
  border-top:1px solid transparent;
}
.mobile-search-bar.open{
  max-height:80px; border-top-color:var(--line);
}
.mobile-search-form{
  display:flex; align-items:center; gap:10px;
  padding:12px 20px;
}
.mobile-search-form input{
  flex:1; background:none; border:none; outline:none;
  color:var(--text); font-size:15px;
  font-family:'Inter',sans-serif; border-bottom:1px solid var(--line);
  padding-bottom:6px;
}
.mobile-search-form input::placeholder{ color:var(--muted); }
.mobile-search-form button{
  background:none; border:none; color:var(--muted); cursor:pointer;
}

/* =================================================================
   MOBILE LAYOUT — everything below this point only affects screens
   768px wide and narrower. Desktop is untouched.
================================================================= */
@media(max-width:768px){

  /* --- GENERAL --- */
  body{ overflow-x:hidden; }

  /* --- MARQUEE --- */
  .marquee-track{ font-size:10px; }

  /* --- HEADER --- */
  .header-inner{ padding:12px 16px; }
  .brand img{ height:28px; width:28px; }
  .brand .word{ font-size:13px; }

  /* --- PAGE HEADERS (sale, new arrivals, shop) --- */
  .page-header{ padding:28px 16px 20px 16px; }
  .page-header h1{ font-size:clamp(32px,10vw,52px); }

  /* --- HERO --- */
  .hero{ padding:40px 16px 36px 16px; }
  .hero-logo{ height:56px; width:56px; }
  .hero h1{ font-size:clamp(48px,14vw,80px); }
  .hero p.desc{ font-size:13.5px; }

  /* --- SECTION HEADINGS --- */
  .section-head{ padding:36px 16px 16px 16px; flex-wrap:wrap; gap:10px; }
  .section-head h2{ font-size:clamp(22px,8vw,34px); }

  /* --- PRODUCT GRID: 2 columns on phone --- */
  .grid{
    padding:0 12px 10px 12px;
    grid-template-columns:repeat(2,1fr);
    gap:20px 12px;
  }

  /* --- PRODUCT CARD --- */
  .card h3{ font-size:13px; }
  .card .label{ font-size:9.5px; }
  .card .price{ font-size:12.5px; }
  .card .frame{ margin-bottom:10px; }
  .card .swatch-hint{ margin-top:7px; }
  .card .swatch-more{ font-size:9px; }

  /* --- PROMO BANNER (mid-page full-width) --- */
  .promo-banner{ padding:12px; }
  .promo-banner .banner-inner{ height:300px; }
  .promo-banner .banner-content{ padding:22px; }
  .promo-banner h2{ font-size:clamp(22px,7vw,36px); }
  .promo-banner p{ font-size:12.5px; }

  /* --- FEATURED COLLECTIONS GRID: stack to 1 column --- */
  .collections-grid{
    padding:0 12px 40px 12px;
    grid-template-columns:1fr;
    gap:14px;
  }
  .collections-grid .banner-inner{ height:220px; }
  .collections-grid h2{ font-size:clamp(20px,7vw,28px); }

  /* --- SHOP NOW BUTTON on banners --- */
  .shop-now-btn{ font-size:10.5px; padding:10px 16px; }

  /* --- FILTER BAR (shop.html) --- */
  .filter-bar{ padding:12px 16px 18px 16px; gap:14px; }
  .filter-bar .clear-filters-btn{ margin-left:0; }
  .tag-chip{ padding:5px 11px; font-size:10px; }

  /* --- TABNAV (shop.html category tabs) --- */
  nav.tabnav{ padding:2px 16px 14px 16px; gap:18px; }
  .tab-btn{ font-size:11px; padding:4px 0 10px 0; }

  /* --- PRODUCT MODAL --- */
  .modal-overlay{ padding:0; align-items:flex-end; }
  .modal{
    grid-template-columns:1fr;
    border-radius:16px 16px 0 0;
    max-height:92vh;
  }
  .modal .modal-frame{ aspect-ratio:3/2; }
  .modal .modal-info{ padding:20px 20px 30px 20px; }
  .modal h2{ font-size:22px; }
  .modal .price{ font-size:17px; }
  .modal .dm-btn-lg{ padding:14px; font-size:11.5px; }

  /* --- HOW TO ORDER --- */
  .order-strip{ padding:36px 16px; }
  .order-inner{ gap:24px; }
  .step .num{ font-size:22px; }
  .step p{ font-size:13px; }

  /* --- FOOTER --- */
  footer{ padding:24px 16px 36px 16px; flex-direction:column; align-items:flex-start; gap:8px; font-size:11px; }

  /* --- PROMO POPUP --- */
  .promo-popup{ grid-template-columns:1fr; border-radius:12px 12px 0 0; }
  .promo-popup-overlay{ align-items:flex-end; padding:0; }
  .promo-popup-art{ min-height:130px; }
  .promo-popup-body{ padding:28px 22px; }
  .promo-popup-body h3{ font-size:19px; }
  .promo-popup-body p{ font-size:13.5px; }

  /* --- TOAST --- */
  .site-toast{ font-size:11.5px; padding:12px 16px; bottom:16px; max-width:calc(100vw - 32px); }
}

/* ============================================
   SHOP PAGINATION
   ============================================ */

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 50px auto 80px;
  width: 100%;
}

.pagination button {
  border: 1px solid #111;
  background: transparent;
  color: #ff0000;
  height: 40px;
  min-width: 40px;
  padding: 0 12px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s ease;
}

.pagination-number.active {
  background: #111;
  color: #fff;
}

.pagination button:hover:not(:disabled) {
  background: #111;
  color: #fff;
}

.pagination button:disabled {
  opacity: 0.3;
  cursor: default;
}

.pagination-arrow {
  font-size: 18px;
}