/* =====================================================================
   THREADS THERAPY — CLEAN RESPONSIVE HEADER / NAV / MOBILE FIX
   This file is intentionally a final override loaded last on every page.
   ===================================================================== */

html, body { max-width:100%; overflow-x:hidden; }
img, video, iframe { max-width:100%; }

/* ---------- HEADER ---------- */
.header{
  position:sticky !important;
  top:0 !important;
  z-index:5000 !important;
  background:#fffaf6 !important;
  border-bottom:1px solid #eadfd5 !important;
  isolation:isolate !important;
}
.header .headrow{
  position:relative !important;
  z-index:2 !important;
  width:min(1500px,94%) !important;
  margin:0 auto !important;
  display:grid !important;
  grid-template-columns:220px minmax(280px,1fr) auto !important;
  align-items:center !important;
  gap:24px !important;
  min-height:104px !important;
  padding:8px 0 !important;
}
.header .brandLink{
  display:flex !important;
  align-items:center !important;
  min-width:220px !important;
}
.headerLogo{
  display:block !important;
  width:220px !important;
  max-width:220px !important;
  height:86px !important;
  max-height:86px !important;
  object-fit:contain !important;
  object-position:left center !important;
  background:transparent !important;
}

/* Search always above nav/dropdowns. */
.header .search{
  position:relative !important;
  z-index:5100 !important;
  overflow:visible !important;
  min-width:0 !important;
  width:100% !important;
}
.suggestions,
.suggestions.show{
  position:absolute !important;
  left:0 !important;
  right:0 !important;
  top:calc(100% + 8px) !important;
  z-index:999999 !important;
  background:#fff !important;
  max-height:min(450px,60vh) !important;
  overflow:auto !important;
  border-radius:0 0 16px 16px !important;
  box-shadow:0 18px 45px rgba(31,20,15,.18) !important;
}
.header:has(.search:focus-within){ z-index:10000 !important; }

/* ---------- ACCOUNT / WISHLIST / BAG: HOME-STYLE CIRCLES ---------- */
.header .actions{
  display:flex !important;
  align-items:center !important;
  justify-content:flex-end !important;
  gap:10px !important;
  flex-wrap:nowrap !important;
}
.header .actions .iconbtn{
  position:relative !important;
  display:grid !important;
  place-items:center !important;
  width:54px !important;
  height:54px !important;
  min-width:54px !important;
  min-height:54px !important;
  padding:0 !important;
  border-radius:50% !important;
  background:#fff !important;
  color:#741a2b !important;
  border:1px solid #eadbd1 !important;
  box-shadow:0 5px 18px rgba(53,11,19,.08) !important;
  font-size:0 !important;
}
.header .actions .iconbtn svg{
  display:block !important;
  width:22px !important;
  height:22px !important;
  fill:none !important;
  stroke:currentColor !important;
  stroke-width:1.8 !important;
  stroke-linecap:round !important;
  stroke-linejoin:round !important;
}
.header .actions .actionText{ display:none !important; }
.header .actions .iconbtn b{
  position:absolute !important;
  top:-3px !important;
  right:-2px !important;
  display:grid !important;
  place-items:center !important;
  min-width:18px !important;
  height:18px !important;
  padding:0 4px !important;
  border-radius:50% !important;
  border:2px solid #fff !important;
  background:#741a2b !important;
  color:#fff !important;
  font-size:9px !important;
  line-height:1 !important;
}

/* ---------- PRIMARY NAV ---------- */
.nav{
  position:sticky !important;
  top:0 !important;
  z-index:4500 !important;
  display:block !important;
  width:100% !important;
  background:#fffdfa !important;
  border-top:1px solid #eadfd5 !important;
  border-bottom:1px solid #eadfd5 !important;
  isolation:isolate !important;
}
.navrow{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  flex-wrap:nowrap !important;
  width:min(1500px,94%) !important;
  min-height:62px !important;
  margin:0 auto !important;
  padding:0 !important;
  gap:4px !important;
  overflow-x:auto !important;
  overflow-y:hidden !important;
  white-space:nowrap !important;
  scrollbar-width:none !important;
  -webkit-overflow-scrolling:touch !important;
}
.navrow::-webkit-scrollbar{display:none !important;}
.navrow>a,
.navItem>a{
  flex:0 0 auto !important;
  display:flex !important;
  align-items:center !important;
  gap:6px !important;
  white-space:nowrap !important;
  padding:14px 16px !important;
  margin:4px 0 !important;
  border:1px solid transparent !important;
  border-radius:28px !important;
  font-size:12px !important;
  font-weight:800 !important;
  letter-spacing:1.25px !important;
  text-transform:uppercase !important;
}
.navrow>a.active,
.navrow>a:hover,
.navItem>a.active,
.navItem>a:hover{
  color:#741a2b !important;
  border-color:#741a2b !important;
  background:#fff !important;
}

/* ---------- DESKTOP SCROLL NAV ---------- */
/* Before scrolling, the normal navigation is shown. After scrolling, the
   same nav becomes a compact viewport bar with the logo + action icons. */
@media (min-width:801px){
  .nav .compactNav{
    display:block !important;
    position:absolute !important;
    inset:0 !important;
    height:64px !important;
    opacity:0 !important;
    visibility:visible !important;
    pointer-events:none !important;
    z-index:20 !important;
    background:#fffaf6 !important;
  }
  body.compact-nav-active .nav{
    position:fixed !important;
    top:0 !important;
    left:0 !important;
    right:0 !important;
    width:100% !important;
    height:64px !important;
    margin:0 !important;
    z-index:2147483000 !important;
    background:#fffaf6 !important;
    box-shadow:0 8px 28px rgba(42,26,18,.12) !important;
  }
  body.compact-nav-active .nav .compactNav{
    opacity:1 !important;
    pointer-events:auto !important;
  }
  body.compact-nav-active .nav .navrow{
    visibility:hidden !important;
    pointer-events:none !important;
  }
  .nav .compactNavInner{
    width:min(1500px,94%) !important;
    height:64px !important;
    min-height:64px !important;
    margin:0 auto !important;
    display:grid !important;
    grid-template-columns:180px minmax(0,1fr) auto !important;
    align-items:center !important;
    gap:18px !important;
    padding:0 !important;
  }
  .nav .compactBrand{
    display:flex !important;
    align-items:center !important;
    width:180px !important;
    height:64px !important;
    overflow:visible !important;
  }
  .nav .compactLogoImg{
    display:block !important;
    width:145px !important;
    height:52px !important;
    max-width:145px !important;
    max-height:52px !important;
    object-fit:contain !important;
    object-position:left center !important;
    opacity:1 !important;
    visibility:visible !important;
    mix-blend-mode:normal !important;
  }
  .nav .compactNavLinks{
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    min-width:0 !important;
    overflow-x:auto !important;
    scrollbar-width:none !important;
  }
  .nav .compactNavLinks::-webkit-scrollbar{display:none !important;}
  .nav .compactNavLinks>a{
    flex:0 0 auto !important;
    white-space:nowrap !important;
    padding:10px 11px !important;
    font-size:11px !important;
    font-weight:800 !important;
    letter-spacing:1px !important;
    text-transform:uppercase !important;
  }
  .nav .compactActions{
    display:flex !important;
    align-items:center !important;
    justify-content:flex-end !important;
    gap:8px !important;
    opacity:1 !important;
    visibility:visible !important;
  }
  .nav .compactAction{
    position:relative !important;
    display:grid !important;
    place-items:center !important;
    width:42px !important;
    height:42px !important;
    min-width:42px !important;
    min-height:42px !important;
    border:1px solid #eadbd1 !important;
    border-radius:50% !important;
    background:#fff !important;
    color:#741a2b !important;
    box-shadow:0 5px 18px rgba(53,11,19,.08) !important;
  }
  .nav .compactAction svg{
    width:20px !important;height:20px !important;fill:none !important;
    stroke:currentColor !important;stroke-width:1.8 !important;
    stroke-linecap:round !important;stroke-linejoin:round !important;
  }
  .nav .compactAction b{
    position:absolute !important;top:-3px !important;right:-3px !important;
    display:grid !important;place-items:center !important;min-width:17px !important;
    height:17px !important;padding:0 3px !important;border-radius:50% !important;
    background:#741a2b !important;color:#fff !important;border:2px solid #fff !important;
    font-size:8px !important;line-height:1 !important;
  }
}

/* ---------- MOBILE FIXED NAV ---------- */
.mobileNavSpacer{display:none;}
@media (max-width:800px){
  .nav{
    display:block !important;
    position:relative !important;
    top:auto !important;
    width:100% !important;
    z-index:5500 !important;
  }
  .nav .compactNav{display:none !important;}
  .nav .navrow{visibility:visible !important;opacity:1 !important;pointer-events:auto !important;}
  body.mobile-nav-fixed .nav{
    position:fixed !important;
    top:0 !important;left:0 !important;right:0 !important;
    width:100% !important;
    z-index:2147483000 !important;
    background:#fffdfa !important;
    box-shadow:0 8px 24px rgba(42,26,18,.12) !important;
  }
  body.mobile-nav-fixed .mobileNavSpacer{display:block !important;}
  body.mobile-nav-fixed .navrow{
    min-height:48px !important;
    height:48px !important;
  }
  .navrow{
    overflow-x:auto !important;overflow-y:hidden !important;
    white-space:nowrap !important;
    scrollbar-width:none !important;
  }
  .navrow::-webkit-scrollbar{display:none !important;}
}

/* ---------- DESKTOP/TABLET ---------- */
@media (max-width:1180px){
  .header .headrow{
    grid-template-columns:180px minmax(220px,1fr) auto !important;
    gap:16px !important;
  }
  .header .brandLink{min-width:180px !important;}
  .headerLogo{width:180px !important;max-width:180px !important;height:76px !important;}
  .header .actions .iconbtn{width:50px !important;height:50px !important;min-width:50px !important;}
  .navrow>a,.navItem>a{padding-left:11px !important;padding-right:11px !important;}
}

/* ---------- PHONE ---------- */
@media (max-width:800px){
  html{scroll-padding-top:118px !important;}
  body{padding-bottom:70px !important;overflow-x:hidden !important;}

  /* Compact first header row + compact circular action row. */
  .header{
    position:relative !important;
    top:auto !important;
    z-index:6000 !important;
  }
  .header .headrow{
    width:calc(100% - 14px) !important;
    grid-template-columns:34px minmax(84px,112px) minmax(0,1fr) !important;
    grid-template-rows:64px 48px !important;
    gap:0 6px !important;
    min-height:112px !important;
    padding:4px 0 5px !important;
  }
  .header .mobileMenuBtn{
    display:inline-flex !important;
    width:34px !important;
    height:34px !important;
    align-items:center !important;
    justify-content:center !important;
    padding:0 !important;
    border-radius:10px !important;
  }
  .header .brandLink{
    width:100% !important;
    min-width:0 !important;
    height:58px !important;
    justify-content:flex-start !important;
    overflow:hidden !important;
  }
  .headerLogo{
    width:112px !important;
    max-width:112px !important;
    height:56px !important;
    max-height:56px !important;
    object-fit:contain !important;
    object-position:left center !important;
  }
  .header .search{
    width:100% !important;
    min-width:0 !important;
    height:44px !important;
    align-self:center !important;
  }
  .header .search input{
    min-width:0 !important;
    width:100% !important;
    height:42px !important;
    padding:9px 9px !important;
    font-size:12px !important;
  }
  .header .searchVoice{display:none !important;}
  .header .searchSubmit{
    width:42px !important;
    min-width:42px !important;
    height:42px !important;
    padding:0 !important;
  }

  /* IMPORTANT: do not stretch the circles into pills. */
  .header .actions{
    grid-column:1 / -1 !important;
    grid-row:2 !important;
    display:flex !important;
    align-items:center !important;
    justify-content:flex-end !important;
    gap:8px !important;
    width:100% !important;
    height:44px !important;
    padding:0 4px !important;
    border-top:1px solid #f0e7df !important;
  }
  .header .actions .iconbtn{
    flex:0 0 42px !important;
    width:42px !important;
    height:42px !important;
    min-width:42px !important;
    min-height:42px !important;
    border-radius:50% !important;
  }
  .header .actions .iconbtn svg{width:19px !important;height:19px !important;}
  .header .actions .iconbtn b{top:-2px !important;right:-2px !important;min-width:16px !important;height:16px !important;font-size:8px !important;}

  /* The actual primary navbar stays sticky when it reaches the viewport top. */
  .nav{
    display:block !important;
    position:sticky !important;
    top:0 !important;
    z-index:5500 !important;
    width:100% !important;
    overflow:visible !important;
  }
  .navrow{
    width:100% !important;
    min-height:48px !important;
    padding:0 6px !important;
    justify-content:flex-start !important;
    gap:1px !important;
  }
  .navrow>a,
  .navItem>a{
    padding:8px 10px !important;
    margin:3px 0 !important;
    font-size:10px !important;
    letter-spacing:1px !important;
  }

  /* Search dropdown always wins over the sticky navbar. */
  .header:has(.search:focus-within){z-index:10000 !important;}
  .search{z-index:10001 !important;}
  .suggestions,.suggestions.show{z-index:100000 !important;}

  /* Keep mobile imagery inside its box without page-width overflow. */
  .productImg,
  .productVisual,
  .galleryGrid,
  .mainImage,
  .collectionHero,
  .heroInner,
  .easyCategoryGrid,
  .occasionCard,
  .signatureVisual,
  .storyMedia{
    max-width:100% !important;
  }
  .productImg img,
  .galleryGrid img,
  .thumbs img,
  .mainImage,
  .reviewPhoto img,
  .easyCategoryGrid img,
  .occasionCard img,
  .signatureVisual img,
  .storyMedia img{
    max-width:100% !important;
    object-fit:contain !important;
    object-position:center center !important;
  }

  /* Collection/Women/Men/Kids hero: image remains complete and content stays in viewport. */
  .collectionHero{
    margin:14px auto 20px !important;
    padding:0 14px 22px !important;
    min-height:0 !important;
    border-radius:18px !important;
    overflow:hidden !important;
  }
  .collectionHero > img{
    position:relative !important;
    inset:auto !important;
    display:block !important;
    width:100% !important;
    height:auto !important;
    max-height:none !important;
    object-fit:contain !important;
    object-position:center center !important;
    opacity:.55 !important;
    z-index:0 !important;
    background:#eadccd !important;
  }
  .collectionHero .refinedHeroShade{display:none !important;}
  .collectionHero .refinedHeroCopy{
    position:relative !important;
    z-index:2 !important;
    width:100% !important;
    margin:0 !important;
    padding:20px 4px 0 !important;
  }
  .collectionHero .refinedHeroCopy h1{
    font-size:clamp(32px,9vw,44px) !important;
    line-height:.98 !important;
    margin:8px 0 12px !important;
  }
  .collectionHero .refinedHeroCopy p{
    font-size:14px !important;
    line-height:1.5 !important;
    margin:0 0 12px !important;
  }
  .collectionHero .breadcrumbs{display:none !important;}

  .container{width:calc(100% - 24px) !important;}
  .heroInner,.productDetail,.filtersLayout,.cartLayout,.checkoutLayout,.designBuilder,.productStoryVisual{grid-template-columns:1fr !important;}
  .grid{grid-template-columns:repeat(2,minmax(0,1fr)) !important;gap:10px !important;width:100% !important;}
  .product{min-width:0 !important;}
  .productBody{min-width:0 !important;}
  .productBody h3{overflow-wrap:anywhere !important;}
  .featureGrid,.workGrid,.statGrid{grid-template-columns:repeat(2,minmax(0,1fr)) !important;}
  .footerGrid{grid-template-columns:1fr 1fr !important;}
  .toolbar{flex-wrap:wrap !important;}
  .chips{flex-wrap:wrap !important;}
  button,input,select,textarea{max-width:100% !important;}
}

@media (max-width:520px){
  .header .headrow{
    width:calc(100% - 10px) !important;
    grid-template-columns:31px 91px minmax(0,1fr) !important;
    grid-template-rows:60px 46px !important;
    gap:0 5px !important;
    min-height:106px !important;
  }
  .header .mobileMenuBtn{width:31px !important;height:31px !important;font-size:15px !important;}
  .header .brandLink{height:54px !important;}
  .headerLogo{width:91px !important;max-width:91px !important;height:52px !important;max-height:52px !important;}
  .header .search{height:40px !important;}
  .header .search input{height:38px !important;font-size:11px !important;padding:7px 8px !important;}
  .header .searchSubmit{width:38px !important;min-width:38px !important;height:38px !important;}
  .header .actions{height:42px !important;gap:7px !important;padding-right:2px !important;}
  .header .actions .iconbtn{flex-basis:40px !important;width:40px !important;height:40px !important;min-width:40px !important;min-height:40px !important;}
  .header .actions .iconbtn svg{width:18px !important;height:18px !important;}

  .navrow{min-height:46px !important;padding:0 5px !important;}
  .navrow>a,.navItem>a{padding:7px 9px !important;font-size:9.5px !important;letter-spacing:.85px !important;}

  .collectionHero{padding:0 10px 18px !important;}
  .collectionHero .refinedHeroCopy{padding:17px 2px 0 !important;}
  .collectionHero .refinedHeroCopy h1{font-size:clamp(30px,8.5vw,40px) !important;}
  .collectionHero .refinedHeroCopy p{font-size:13px !important;}

  .grid{gap:8px !important;}
  .featureGrid,.workGrid,.statGrid,.footerGrid{grid-template-columns:1fr !important;}
  .footer{padding-bottom:90px !important;}
}


/* =====================================================================
   MOBILE FILTER DRAWER — FINAL
   Applies consistently to Women / Men / Kids / New / Trending / Best Sellers
   / Work Products and Search pages.
   ===================================================================== */
@media (max-width: 800px){
  .premiumListingPage .sectionHead{
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
    gap:12px !important;
  }
  .premiumListingPage #mobileFilter{
    display:inline-flex !important;
    flex:0 0 auto !important;
    align-items:center !important;
    justify-content:center !important;
    min-width:96px !important;
    min-height:42px !important;
    padding:10px 16px !important;
    border:1px solid #793039 !important;
    border-radius:999px !important;
    background:#fff !important;
    color:#793039 !important;
    font:800 11px/1 Arial,sans-serif !important;
    letter-spacing:.12em !important;
    text-transform:uppercase !important;
    box-shadow:0 5px 16px rgba(65,35,29,.10) !important;
    cursor:pointer !important;
    z-index:20 !important;
  }
  .premiumListingPage #mobileFilter::before{
    content:'☷';
    font-size:17px;
    line-height:1;
    margin-right:7px;
  }
  .premiumListingPage .filtersLayout{
    display:block !important;
  }
  .premiumListingPage .filtersLayout > .filters{
    display:none !important;
  }
  .premiumListingPage .filtersLayout > .filters.open{
    display:block !important;
    position:fixed !important;
    left:0 !important;
    right:0 !important;
    top:64px !important;
    bottom:0 !important;
    width:100% !important;
    max-width:none !important;
    height:auto !important;
    max-height:none !important;
    margin:0 !important;
    padding:0 0 calc(18px + env(safe-area-inset-bottom)) !important;
    overflow-x:hidden !important;
    overflow-y:auto !important;
    -webkit-overflow-scrolling:touch !important;
    background:#fffdfa !important;
    border:0 !important;
    border-radius:22px 22px 0 0 !important;
    box-shadow:0 -12px 45px rgba(32,20,17,.24) !important;
    z-index:12000 !important;
  }
  .premiumListingPage .filterDrawerHead{
    position:sticky !important;
    top:0 !important;
    z-index:5 !important;
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
    min-height:64px !important;
    padding:12px 18px !important;
    background:rgba(255,253,250,.98) !important;
    border-bottom:1px solid #eadfd5 !important;
    box-shadow:0 3px 12px rgba(55,35,29,.06) !important;
  }
  .premiumListingPage .filterDrawerHead h3{
    margin:0 !important;
    font:500 25px/1 Georgia,serif !important;
    color:#241916 !important;
  }
  .premiumListingPage .filterDrawerHead .close{
    display:grid !important;
    place-items:center !important;
    width:40px !important;
    height:40px !important;
    min-width:40px !important;
    border:1px solid #ddcec5 !important;
    border-radius:50% !important;
    background:#fff !important;
    color:#793039 !important;
    font-size:25px !important;
    line-height:1 !important;
    cursor:pointer !important;
  }
  .premiumListingPage .filters.open .filterGroup{
    padding:17px 18px !important;
    border-bottom:1px solid #eee3dc !important;
  }
  .premiumListingPage .filters.open .filterGroup h4{
    margin:0 0 12px !important;
    font-size:12px !important;
    letter-spacing:.08em !important;
    color:#793039 !important;
  }
  .premiumListingPage .filters.open .filterGroup label{
    display:flex !important;
    align-items:center !important;
    gap:10px !important;
    min-height:38px !important;
    padding:6px 0 !important;
    font-size:14px !important;
    color:#342824 !important;
  }
  .premiumListingPage .filters.open .filterGroup input[type="checkbox"],
  .premiumListingPage .filters.open .filterGroup input[type="radio"]{
    flex:0 0 auto !important;
    width:19px !important;
    height:19px !important;
    max-width:19px !important;
    accent-color:#793039 !important;
  }
  .premiumListingPage .filters.open .filterPills{
    display:grid !important;
    grid-template-columns:repeat(4,minmax(0,1fr)) !important;
    gap:8px !important;
  }
  .premiumListingPage .filters.open .filterPills label{
    min-height:0 !important;
    padding:0 !important;
  }
  .premiumListingPage .filters.open .filterPills label span{
    display:grid !important;
    place-items:center !important;
    width:100% !important;
    min-height:38px !important;
    border:1px solid #dfd0c8 !important;
    border-radius:999px !important;
    background:#fff !important;
    font-size:12px !important;
  }
  .premiumListingPage .filters.open .filterPills label input{
    position:absolute !important;
    opacity:0 !important;
    pointer-events:none !important;
  }
  .premiumListingPage .filters.open .filterPills label input:checked + span{
    background:#793039 !important;
    border-color:#793039 !important;
    color:#fff !important;
  }
  .premiumListingPage .filters.open .rangeLabel{
    display:block !important;
  }
  .premiumListingPage .filters.open #priceRange{
    width:100% !important;
    max-width:none !important;
    margin-top:10px !important;
    accent-color:#793039 !important;
  }
  .premiumListingPage .filters.open .filterReset{
    display:block !important;
    width:calc(100% - 36px) !important;
    margin:18px !important;
    min-height:46px !important;
    border:1px solid #793039 !important;
    border-radius:999px !important;
    background:#793039 !important;
    color:#fff !important;
    font-weight:800 !important;
  }
}

@media (max-width:420px){
  .premiumListingPage .sectionHead{align-items:flex-start !important;}
  .premiumListingPage .sectionHead > div{min-width:0 !important;}
  .premiumListingPage .sectionHead h2{font-size:27px !important;}
  .premiumListingPage .sectionHead p{font-size:10px !important;line-height:1.45 !important;}
  .premiumListingPage #mobileFilter{min-width:88px !important;padding:9px 12px !important;font-size:10px !important;}
  .premiumListingPage .filtersLayout > .filters.open{top:58px !important;}
  .premiumListingPage .filters.open .filterPills{grid-template-columns:repeat(3,minmax(0,1fr)) !important;}
}


/* ==========================================================================
   FINAL MOBILE HEADER ONE-ROW OVERRIDE
   v6 — keeps logo, search and action circles in ONE row on every phone.
   ========================================================================== */

/* Let the primary nav be the only sticky/fixed layer. The header itself
   must scroll away so the nav can reach the viewport top. */
.header{
  position:relative !important;
  top:auto !important;
  z-index:5000 !important;
}

/* Search suggestions must always sit above the navigation. */
.header .search{
  position:relative !important;
  z-index:60000 !important;
}
.header .suggestions,
.header .suggestions.show{
  z-index:2147483647 !important;
}

/* ---------- MOBILE / SMALL TABLET HEADER ---------- */
@media (max-width:800px){

  html,body{
    width:100% !important;
    max-width:100% !important;
    overflow-x:hidden !important;
  }

  .header{
    position:relative !important;
    width:100% !important;
    min-height:0 !important;
    background:#fffaf6 !important;
  }

  .header .headrow{
    width:100% !important;
    max-width:none !important;
    margin:0 !important;
    padding:5px 7px !important;

    /* ONE SINGLE ROW:
       menu | logo | flexible search | 3 circles */
    display:grid !important;
    grid-template-columns:30px minmax(72px,86px) minmax(68px,1fr) auto !important;
    grid-template-rows:56px !important;
    align-items:center !important;
    column-gap:5px !important;
    min-height:66px !important;
    height:66px !important;
  }

  /* Hamburger */
  .header .mobileMenuBtn{
    grid-column:1 !important;
    grid-row:1 !important;
    display:grid !important;
    place-items:center !important;
    width:30px !important;
    height:30px !important;
    min-width:30px !important;
    min-height:30px !important;
    margin:0 !important;
    padding:0 !important;
    border:1px solid #dfcfc5 !important;
    border-radius:9px !important;
    background:#fff !important;
    color:#741a2b !important;
    font-size:15px !important;
    line-height:1 !important;
  }

  /* Logo */
  .header .brandLink{
    grid-column:2 !important;
    grid-row:1 !important;
    width:100% !important;
    min-width:0 !important;
    max-width:none !important;
    height:52px !important;
    margin:0 !important;
    padding:0 !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    overflow:hidden !important;
  }

  .header .headerLogo,
  .headerLogo{
    display:block !important;
    width:86px !important;
    max-width:86px !important;
    height:48px !important;
    max-height:48px !important;
    object-fit:contain !important;
    object-position:center !important;
    margin:0 !important;
  }

  /* Search */
  .header .search{
    grid-column:3 !important;
    grid-row:1 !important;
    width:100% !important;
    min-width:0 !important;
    max-width:none !important;
    height:42px !important;
    min-height:42px !important;
    margin:0 !important;
    padding:0 2px 0 0 !important;
    border-radius:22px !important;
    overflow:visible !important;
    display:flex !important;
    align-items:center !important;
  }

  .header .search input{
    flex:1 1 auto !important;
    min-width:0 !important;
    width:1px !important;
    height:40px !important;
    min-height:40px !important;
    padding:7px 7px 7px 10px !important;
    font-size:11px !important;
    line-height:1.2 !important;
    border-radius:20px !important;
  }

  .header .searchVoice{
    display:none !important;
  }

  .header .searchSubmit{
    flex:0 0 36px !important;
    width:36px !important;
    min-width:36px !important;
    height:36px !important;
    min-height:36px !important;
    margin:2px !important;
    padding:0 !important;
    border-radius:50% !important;
    display:grid !important;
    place-items:center !important;
    font-size:18px !important;
  }

  /* Account / Wishlist / Bag — ALWAYS three real circles */
  .header .actions{
    grid-column:4 !important;
    grid-row:1 !important;
    display:flex !important;
    align-items:center !important;
    justify-content:flex-end !important;
    flex-wrap:nowrap !important;
    gap:4px !important;
    width:auto !important;
    min-width:0 !important;
    height:44px !important;
    margin:0 !important;
    padding:0 !important;
    border:0 !important;
  }

  .header .actions .iconbtn{
    flex:0 0 31px !important;
    width:31px !important;
    min-width:31px !important;
    height:31px !important;
    min-height:31px !important;
    max-width:31px !important;
    max-height:31px !important;
    padding:0 !important;
    margin:0 !important;
    display:grid !important;
    place-items:center !important;
    border-radius:50% !important;
    background:#fff !important;
    color:#741a2b !important;
    border:1px solid #eadbd1 !important;
    box-shadow:0 3px 10px rgba(53,11,19,.08) !important;
  }

  .header .actions .iconbtn svg{
    width:16px !important;
    height:16px !important;
    max-width:16px !important;
    max-height:16px !important;
    fill:none !important;
    stroke:currentColor !important;
    stroke-width:1.8 !important;
    stroke-linecap:round !important;
    stroke-linejoin:round !important;
  }

  .header .actions .actionText{
    display:none !important;
  }

  .header .actions .iconbtn b{
    position:absolute !important;
    top:-4px !important;
    right:-4px !important;
    min-width:13px !important;
    width:auto !important;
    height:13px !important;
    padding:0 3px !important;
    display:grid !important;
    place-items:center !important;
    border:1.5px solid #fff !important;
    border-radius:999px !important;
    background:#741a2b !important;
    color:#fff !important;
    font:700 7px/1 Arial,sans-serif !important;
  }

  /* Primary navbar: normal in document flow, then fixed by JS after scroll. */
  .nav{
    position:relative !important;
    top:auto !important;
    left:auto !important;
    right:auto !important;
    width:100% !important;
    z-index:5500 !important;
    display:block !important;
  }

  .nav .navrow{
    width:100% !important;
    min-height:48px !important;
    height:48px !important;
    padding:0 4px !important;
    margin:0 !important;
    display:flex !important;
    align-items:center !important;
    justify-content:flex-start !important;
    flex-wrap:nowrap !important;
    overflow-x:auto !important;
    overflow-y:hidden !important;
    white-space:nowrap !important;
    scrollbar-width:none !important;
    -webkit-overflow-scrolling:touch !important;
  }

  .nav .navrow::-webkit-scrollbar{
    display:none !important;
  }

  .nav .navrow>a,
  .nav .navItem>a{
    flex:0 0 auto !important;
    min-width:max-content !important;
    margin:3px 1px !important;
    padding:8px 10px !important;
    font-size:10px !important;
    letter-spacing:.75px !important;
    border-radius:999px !important;
  }

  /* Fixed after user starts scrolling */
  body.mobile-nav-fixed .nav,
  .nav.mobileFixed{
    position:fixed !important;
    top:0 !important;
    left:0 !important;
    right:0 !important;
    width:100% !important;
    z-index:2147483000 !important;
    background:#fffdfa !important;
    box-shadow:0 8px 24px rgba(42,26,18,.16) !important;
  }

  body.mobile-nav-fixed .nav .navrow,
  .nav.mobileFixed .navrow{
    height:48px !important;
    min-height:48px !important;
  }

  /* The compact desktop navbar must never appear on phones. */
  .nav .compactNav{
    display:none !important;
  }

  /* Keep the fixed bar above every page section/image. */
  .header,
  .nav,
  .search,
  .suggestions{
    isolation:isolate;
  }

  body{
    padding-bottom:70px !important;
  }
}

/* ---------- 375px iPhone SE ---------- */
@media (max-width:390px){
  .header .headrow{
    grid-template-columns:28px minmax(68px,78px) minmax(62px,1fr) auto !important;
    column-gap:4px !important;
    padding-left:5px !important;
    padding-right:5px !important;
  }

  .header .mobileMenuBtn{
    width:28px !important;
    min-width:28px !important;
    height:28px !important;
    min-height:28px !important;
    font-size:14px !important;
  }

  .header .headerLogo,
  .headerLogo{
    width:78px !important;
    max-width:78px !important;
    height:45px !important;
    max-height:45px !important;
  }

  .header .search{
    height:39px !important;
    min-height:39px !important;
  }

  .header .search input{
    height:37px !important;
    min-height:37px !important;
    font-size:10px !important;
    padding-left:8px !important;
    padding-right:4px !important;
  }

  .header .searchSubmit{
    flex-basis:33px !important;
    width:33px !important;
    min-width:33px !important;
    height:33px !important;
    min-height:33px !important;
    font-size:17px !important;
  }

  .header .actions{
    gap:3px !important;
  }

  .header .actions .iconbtn{
    flex-basis:29px !important;
    width:29px !important;
    min-width:29px !important;
    height:29px !important;
    min-height:29px !important;
  }

  .header .actions .iconbtn svg{
    width:15px !important;
    height:15px !important;
  }

  .header .actions .iconbtn b{
    min-width:12px !important;
    height:12px !important;
    font-size:6.5px !important;
    top:-4px !important;
    right:-4px !important;
  }

  .nav .navrow{
    height:46px !important;
    min-height:46px !important;
  }

  .nav .navrow>a,
  .nav .navItem>a{
    padding:7px 9px !important;
    font-size:9px !important;
  }
}

/* ---------- Very small phones: keep every control on one line ---------- */
@media (max-width:330px){
  .header .headrow{
    grid-template-columns:26px 66px minmax(55px,1fr) auto !important;
    column-gap:3px !important;
    padding-left:4px !important;
    padding-right:4px !important;
  }

  .header .mobileMenuBtn{
    width:26px !important;
    min-width:26px !important;
    height:26px !important;
    min-height:26px !important;
    font-size:13px !important;
  }

  .header .headerLogo,
  .headerLogo{
    width:66px !important;
    max-width:66px !important;
    height:40px !important;
    max-height:40px !important;
  }

  .header .actions{
    gap:2px !important;
  }

  .header .actions .iconbtn{
    flex-basis:26px !important;
    width:26px !important;
    min-width:26px !important;
    height:26px !important;
    min-height:26px !important;
  }

  .header .actions .iconbtn svg{
    width:14px !important;
    height:14px !important;
  }

  .header .search input{
    font-size:9px !important;
    padding-left:7px !important;
  }

  .header .searchSubmit{
    flex-basis:29px !important;
    width:29px !important;
    min-width:29px !important;
    height:29px !important;
    min-height:29px !important;
  }
}

/* =====================================================================
   V7 — MOBILE HERO + FULL NAVBAR VISIBILITY
   Keep the existing design; only correct small-screen fit/overflow.
   ===================================================================== */

@media (max-width: 800px){
  html, body{
    width:100% !important;
    max-width:100% !important;
    overflow-x:hidden !important;
  }

  /* ---- MOBILE PRIMARY NAV: ALL ITEMS VISIBLE, NO HORIZONTAL SCROLL ---- */
  .nav{
    position:relative !important;
    width:100% !important;
    max-width:100% !important;
    overflow:visible !important;
  }

  .nav .navrow{
    width:100% !important;
    max-width:100% !important;
    height:auto !important;
    min-height:0 !important;
    margin:0 !important;
    padding:4px 5px !important;
    display:grid !important;
    grid-template-columns:repeat(4,minmax(0,1fr)) !important;
    grid-auto-rows:minmax(38px,auto) !important;
    gap:3px !important;
    align-items:stretch !important;
    justify-content:stretch !important;
    overflow:visible !important;
    white-space:normal !important;
  }

  .nav .navrow>a,
  .nav .navItem>a{
    width:100% !important;
    min-width:0 !important;
    height:38px !important;
    min-height:38px !important;
    margin:0 !important;
    padding:5px 2px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    gap:3px !important;
    overflow:hidden !important;
    white-space:nowrap !important;
    text-overflow:ellipsis !important;
    border-radius:20px !important;
    font-size:8.5px !important;
    line-height:1 !important;
    letter-spacing:.55px !important;
  }

  .nav .navItem{
    min-width:0 !important;
    width:100% !important;
    position:relative !important;
  }

  .nav .navItem>a .navChevron{
    font-size:9px !important;
    flex:0 0 auto !important;
  }

  /* Fixed navbar keeps the whole 2-row menu visible while scrolling. */
  body.mobile-nav-fixed .nav,
  .nav.mobileFixed{
    position:fixed !important;
    top:0 !important;
    left:0 !important;
    right:0 !important;
    width:100% !important;
    max-width:100% !important;
    height:auto !important;
    z-index:2147483000 !important;
    background:#fffdfa !important;
    box-shadow:0 8px 24px rgba(42,26,18,.16) !important;
  }

  body.mobile-nav-fixed .nav .navrow,
  .nav.mobileFixed .navrow{
    height:auto !important;
    min-height:0 !important;
  }

  /* ---- HOME HERO: KEEP COPY + BOTH BUTTONS INSIDE THE MOBILE HERO ---- */
  .homePage .refinedHero,
  .refinedHome .refinedHero{
    min-height:0 !important;
    height:calc(100svh - 205px) !important;
    max-height:500px !important;
    min-height:430px !important;
    margin:0 !important;
    border-radius:0 !important;
    overflow:hidden !important;
    isolation:isolate !important;
  }

  .homePage .refinedHero .hero-img,
  .refinedHome .refinedHero .hero-img{
    inset:0 !important;
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
    object-position:center center !important;
    transform:none !important;
  }

  .homePage .refinedHeroShade,
  .refinedHome .refinedHeroShade{
    position:absolute !important;
    inset:0 !important;
    z-index:1 !important;
  }

  .homePage .refinedHeroCopy,
  .refinedHome .refinedHeroCopy{
    position:relative !important;
    z-index:3 !important;
    width:100% !important;
    max-width:none !important;
    height:100% !important;
    min-height:0 !important;
    box-sizing:border-box !important;
    padding:18px 16px 14px !important;
    display:flex !important;
    flex-direction:column !important;
    justify-content:flex-start !important;
  }

  .homePage .refinedHeroCopy .firstOrderOffer,
  .refinedHome .refinedHeroCopy .firstOrderOffer{
    width:100% !important;
    max-width:100% !important;
    box-sizing:border-box !important;
    margin:0 0 9px !important;
    padding:7px 9px !important;
    min-height:0 !important;
  }

  .homePage .firstOrderOffer .offerSpark,
  .refinedHome .firstOrderOffer .offerSpark{
    width:28px !important;
    height:28px !important;
    flex-basis:28px !important;
    font-size:13px !important;
  }

  .homePage .firstOrderOffer small,
  .refinedHome .firstOrderOffer small{
    font-size:7px !important;
    letter-spacing:1.15px !important;
  }

  .homePage .firstOrderOffer strong,
  .refinedHome .firstOrderOffer strong{
    font-size:16px !important;
  }

  .homePage .firstOrderOffer em,
  .refinedHome .firstOrderOffer em{
    font-size:7px !important;
    letter-spacing:.7px !important;
  }

  .homePage .refinedHeroCopy .eyebrow,
  .refinedHome .refinedHeroCopy .eyebrow{
    font-size:9px !important;
    letter-spacing:1.7px !important;
    margin:0 0 5px !important;
  }

  .homePage .refinedHeroCopy h1,
  .refinedHome .refinedHeroCopy h1{
    font-size:clamp(36px,11vw,48px) !important;
    line-height:.93 !important;
    letter-spacing:-1.4px !important;
    margin:0 0 9px !important;
    max-width:100% !important;
  }

  .homePage .refinedHeroCopy p,
  .refinedHome .refinedHeroCopy p{
    font-size:12px !important;
    line-height:1.45 !important;
    margin:0 0 12px !important;
    max-width:94% !important;
  }

  .homePage .refinedHeroCopy .refinedActions,
  .refinedHome .refinedHeroCopy .refinedActions{
    width:100% !important;
    max-width:100% !important;
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:8px !important;
    margin-top:auto !important;
    padding-top:4px !important;
  }

  .homePage .refinedHeroCopy .refinedActions .btn,
  .refinedHome .refinedHeroCopy .refinedActions .btn{
    width:100% !important;
    min-width:0 !important;
    height:48px !important;
    min-height:48px !important;
    box-sizing:border-box !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    padding:10px 14px !important;
    margin:0 !important;
    font-size:12px !important;
  }
}

/* iPhone SE / very small phones: make every navbar label and hero control fit. */
@media (max-width:390px){
  .nav .navrow{
    grid-template-columns:repeat(4,minmax(0,1fr)) !important;
    padding:3px 4px !important;
    gap:2px !important;
  }
  .nav .navrow>a,
  .nav .navItem>a{
    height:36px !important;
    min-height:36px !important;
    font-size:7.4px !important;
    letter-spacing:.35px !important;
    padding:4px 1px !important;
  }
  .nav .navItem>a .navChevron{
    font-size:8px !important;
  }

  .homePage .refinedHero,
  .refinedHome .refinedHero{
    height:calc(100svh - 195px) !important;
    min-height:405px !important;
    max-height:480px !important;
  }
  .homePage .refinedHeroCopy,
  .refinedHome .refinedHeroCopy{
    padding:14px 14px 11px !important;
  }
  .homePage .refinedHeroCopy h1,
  .refinedHome .refinedHeroCopy h1{
    font-size:clamp(34px,10.7vw,43px) !important;
  }
  .homePage .refinedHeroCopy p,
  .refinedHome .refinedHeroCopy p{
    font-size:11px !important;
    line-height:1.4 !important;
    margin-bottom:8px !important;
  }
  .homePage .refinedHeroCopy .refinedActions .btn,
  .refinedHome .refinedHeroCopy .refinedActions .btn{
    height:44px !important;
    min-height:44px !important;
    font-size:11px !important;
  }
}

@media (max-width:330px){
  .nav .navrow>a,
  .nav .navItem>a{
    font-size:6.7px !important;
  }
  .homePage .refinedHeroCopy h1,
  .refinedHome .refinedHeroCopy h1{
    font-size:31px !important;
  }
  .homePage .refinedHeroCopy p,
  .refinedHome .refinedHeroCopy p{
    font-size:10px !important;
  }
  .homePage .refinedHeroCopy .refinedActions .btn,
  .refinedHome .refinedHeroCopy .refinedActions .btn{
    height:42px !important;
    min-height:42px !important;
    font-size:10px !important;
  }
}


/* ================================================================
   MOBILE PRIMARY NAV DROPDOWNS — V8
   Desktop is intentionally untouched. On small screens, tapping
   WOMEN / MEN / KIDS / COLLECTIONS expands the existing mega menu.
   ================================================================ */
@media (max-width: 800px){
  .navrow > .navItem.hasMega{position:relative;overflow:visible}
  .navrow > .navItem.hasMega > a{position:relative;z-index:2}

  /* Keep the menu closed until the user taps the category. */
  .navrow > .navItem.hasMega > .shopMega{
    display:none !important;
    position:absolute !important;
    left:4px !important;
    right:4px !important;
    top:calc(100% + 6px) !important;
    width:auto !important;
    max-height:min(62vh, 430px) !important;
    overflow-y:auto !important;
    overflow-x:hidden !important;
    padding:14px !important;
    margin:0 !important;
    background:#fffdfa !important;
    border:1px solid #eadfd2 !important;
    border-radius:16px !important;
    box-shadow:0 18px 45px rgba(31,20,15,.18) !important;
    z-index:10050 !important;
  }

  .navrow > .navItem.hasMega.megaOpen > .shopMega{
    display:block !important;
  }

  .navrow > .navItem.hasMega .megaGrid{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:10px !important;
  }

  .navrow > .navItem.hasMega .megaColumn{
    display:grid !important;
    grid-template-columns:1fr 1fr !important;
    gap:0 !important;
    padding:8px 4px !important;
    border-bottom:1px solid #eee3d8 !important;
  }
  .navrow > .navItem.hasMega .megaColumn > b{
    grid-column:1 / -1 !important;
    margin:0 0 5px !important;
    padding:0 !important;
    color:#7b1023 !important;
    font-size:10px !important;
    letter-spacing:1.2px !important;
  }
  .navrow > .navItem.hasMega .megaColumn > a{
    display:block !important;
    padding:8px 6px !important;
    font-size:12px !important;
    line-height:1.25 !important;
    color:#2b2521 !important;
  }
  .navrow > .navItem.hasMega .megaColumn > a:active,
  .navrow > .navItem.hasMega .megaColumn > a:hover{
    color:#7b1023 !important;
  }

  .navrow > .navItem.hasMega .megaPromo{
    min-height:110px !important;
    border-radius:12px !important;
    margin-top:2px !important;
  }

  .navrow > .navItem.hasMega.megaOpen > a{
    color:#7b1023 !important;
  }
  .navrow > .navItem.hasMega.megaOpen .navChevron{
    transform:rotate(180deg) !important;
  }
}

@media (max-width: 380px){
  .navrow > .navItem.hasMega > .shopMega{
    left:2px !important;
    right:2px !important;
    padding:11px !important;
    border-radius:14px !important;
  }
  .navrow > .navItem.hasMega .megaColumn > a{
    font-size:11px !important;
    padding:7px 4px !important;
  }
}


/* ================================================================
   FINAL MOBILE RESPONSIVE PATCH — FULL HERO + FIXED HEADER/NAV
   ================================================================ */
@media (max-width:800px){

  html, body{
    width:100% !important;
    max-width:100% !important;
    overflow-x:hidden !important;
  }

  /* Keep the top header permanently fixed on phones. */
  body{
    padding-top:112px !important;
    padding-bottom:62px !important;
  }

  .header{
    position:fixed !important;
    top:0 !important;
    left:0 !important;
    right:0 !important;
    width:100% !important;
    height:64px !important;
    min-height:64px !important;
    z-index:2147483000 !important;
    background:#fffdfa !important;
    box-shadow:0 4px 18px rgba(35,22,17,.12) !important;
    overflow:visible !important;
  }

  .header .headrow{
    width:100% !important;
    height:64px !important;
    min-height:64px !important;
    display:grid !important;
    grid-template-columns:36px minmax(60px,92px) 1fr 40px !important;
    grid-template-rows:64px !important;
    gap:5px !important;
    padding:0 8px !important;
    align-items:center !important;
  }

  .header .mobileMenuBtn{
    grid-column:1 !important;
    grid-row:1 !important;
    display:inline-flex !important;
    width:32px !important;
    height:32px !important;
    min-width:32px !important;
    min-height:32px !important;
    align-items:center !important;
    justify-content:center !important;
    padding:0 !important;
    margin:0 !important;
    border:1px solid #e3d5cc !important;
    border-radius:8px !important;
    background:#fff !important;
    color:#741a2b !important;
    font-size:17px !important;
    line-height:1 !important;
  }

  .header .brandLink{
    grid-column:2 !important;
    grid-row:1 !important;
    width:100% !important;
    height:54px !important;
    min-width:0 !important;
    overflow:hidden !important;
    display:flex !important;
    align-items:center !important;
    justify-content:flex-start !important;
  }

  .header .headerLogo{
    width:92px !important;
    max-width:92px !important;
    height:52px !important;
    max-height:52px !important;
    object-fit:contain !important;
    object-position:left center !important;
  }

  /* Search is an icon in the closed state. */
  .header .search{
    grid-column:3 !important;
    grid-row:1 !important;
    width:40px !important;
    height:40px !important;
    min-width:40px !important;
    justify-self:end !important;
    border:0 !important;
    background:transparent !important;
    box-shadow:none !important;
    overflow:visible !important;
    z-index:2147483002 !important;
  }

  .header .search input,
  .header .searchVoice{
    display:none !important;
  }

  .header .searchSubmit{
    display:inline-flex !important;
    width:40px !important;
    height:40px !important;
    min-width:40px !important;
    align-items:center !important;
    justify-content:center !important;
    padding:0 !important;
    border:1px solid #e3d5cc !important;
    border-radius:50% !important;
    background:#fff !important;
    color:#241b18 !important;
    font-size:22px !important;
    cursor:pointer !important;
  }

  /* Hide the old desktop action row on mobile. */
  .header .actions{
    display:none !important;
  }

  /* Open search without navigating away from the current page. */
  .header .search.mobileSearchOpen{
    position:absolute !important;
    left:8px !important;
    right:8px !important;
    top:64px !important;
    width:auto !important;
    height:48px !important;
    min-width:0 !important;
    padding:0 !important;
    border:1px solid #dfd0c6 !important;
    border-radius:14px !important;
    background:#fff !important;
    box-shadow:0 14px 35px rgba(35,22,17,.18) !important;
  }

  .header .search.mobileSearchOpen input{
    display:block !important;
    width:calc(100% - 48px) !important;
    height:46px !important;
    min-width:0 !important;
    padding:10px 12px !important;
    border:0 !important;
    outline:0 !important;
    background:transparent !important;
    font-size:13px !important;
  }

  .header .search.mobileSearchOpen .searchSubmit{
    position:absolute !important;
    top:4px !important;
    right:4px !important;
    width:40px !important;
    height:40px !important;
    min-width:40px !important;
    border:0 !important;
    background:#171311 !important;
    color:#fff !important;
    border-radius:10px !important;
  }

  .header .search.mobileSearchOpen .suggestions,
  .header .search.mobileSearchOpen .suggestions.show{
    display:block !important;
    position:absolute !important;
    top:52px !important;
    left:0 !important;
    right:0 !important;
    width:100% !important;
    max-height:55vh !important;
    overflow-y:auto !important;
    border-radius:14px !important;
    background:#fff !important;
    z-index:2147483005 !important;
  }

  /* Navbar permanently fixed directly under the 64px header. */
  .nav,
  .nav.mobileFixed{
    position:fixed !important;
    top:64px !important;
    left:0 !important;
    right:0 !important;
    width:100% !important;
    height:48px !important;
    min-height:48px !important;
    z-index:2147482999 !important;
    background:#fffdfa !important;
    border-bottom:1px solid #eadfd5 !important;
    box-shadow:0 5px 15px rgba(35,22,17,.08) !important;
    overflow:visible !important;
  }

  .nav .navrow{
    width:100% !important;
    height:48px !important;
    min-height:48px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:space-around !important;
    gap:2px !important;
    padding:0 4px !important;
    overflow:hidden !important;
    white-space:nowrap !important;
  }

  .nav .navrow > a,
  .nav .navrow > .navItem > a{
    flex:1 1 0 !important;
    min-width:0 !important;
    max-width:none !important;
    height:40px !important;
    min-height:40px !important;
    padding:5px 3px !important;
    margin:4px 0 !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    text-align:center !important;
    overflow:hidden !important;
    white-space:normal !important;
    overflow-wrap:anywhere !important;
    word-break:normal !important;
    line-height:1.05 !important;
    font-size:8.5px !important;
    letter-spacing:.45px !important;
  }

  .nav .navrow > .navItem{
    flex:1 1 0 !important;
    min-width:0 !important;
  }

  .nav .navrow > .navItem > a .navChevron{
    flex:0 0 auto !important;
    margin-left:2px !important;
  }

  /* The generated mobile primary menu is a menu panel, not a second bar. */
  .nav .mobilePrimaryNav{
    display:none !important;
  }

  /* Homepage hero: never crop the source image on any phone. */
  body.homePage .refinedHero.collectionHero,
  body.refinedHome .refinedHero.collectionHero,
  body.homePage .refinedHome .refinedHero.collectionHero{
    width:100% !important;
    max-width:100% !important;
    height:auto !important;
    min-height:0 !important;
    max-height:none !important;
    margin:0 !important;
    padding:0 !important;
    border-radius:0 !important;
    overflow:hidden !important;
    background:#1b1512 !important;
    display:flex !important;
    flex-direction:column !important;
  }

  body.homePage .refinedHero.collectionHero > img.hero-img,
  body.refinedHome .refinedHero.collectionHero > img.hero-img{
    position:relative !important;
    inset:auto !important;
    display:block !important;
    width:100% !important;
    height:auto !important;
    min-height:0 !important;
    max-height:none !important;
    aspect-ratio:auto !important;
    object-fit:contain !important;
    object-position:center center !important;
    transform:none !important;
    opacity:1 !important;
    background:#eadccd !important;
    z-index:1 !important;
  }

  body.homePage .refinedHero.collectionHero .refinedHeroShade{
    position:absolute !important;
    inset:0 auto auto 0 !important;
    width:100% !important;
    height:100% !important;
    z-index:2 !important;
    pointer-events:none !important;
  }

  body.homePage .refinedHero.collectionHero .refinedHeroCopy{
    position:relative !important;
    inset:auto !important;
    width:100% !important;
    max-width:100% !important;
    height:auto !important;
    min-height:0 !important;
    padding:18px 16px 22px !important;
    margin:0 !important;
    box-sizing:border-box !important;
    display:flex !important;
    flex-direction:column !important;
    justify-content:flex-start !important;
    z-index:3 !important;
    background:#1b1512 !important;
  }

  body.homePage .refinedHero.collectionHero .refinedHeroCopy *{
    max-width:100% !important;
    overflow-wrap:anywhere !important;
  }

  /* Prevent every common page element from creating horizontal overflow. */
  .container,
  main,
  section,
  .sectionHead,
  .grid,
  .featureGrid,
  .workGrid,
  .statGrid,
  .footerGrid{
    max-width:100% !important;
    min-width:0 !important;
  }

  /* Bottom bar: Home + Explore + Account only, white background. */
  .mobilebar{
    position:fixed !important;
    left:0 !important;
    right:0 !important;
    bottom:0 !important;
    width:100% !important;
    height:62px !important;
    min-height:62px !important;
    display:grid !important;
    grid-template-columns:repeat(3,1fr) !important;
    align-items:center !important;
    justify-items:center !important;
    padding:5px 8px !important;
    background:#fff !important;
    border-top:1px solid #e5ddd7 !important;
    box-shadow:0 -8px 25px rgba(35,22,17,.10) !important;
    z-index:2147483640 !important;
  }

  .mobilebar a{
    width:100% !important;
    height:52px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    flex-direction:column !important;
    gap:2px !important;
    color:#2c2420 !important;
    background:#fff !important;
    border-radius:10px !important;
    font-size:21px !important;
  }

  .mobilebar a small{
    color:#6f625c !important;
    font-size:9px !important;
    line-height:1 !important;
  }

  .mobilebar a:nth-child(3),
  .mobilebar a:nth-child(4){
    display:none !important;
  }
}

@media (max-width:420px){
  .header .headrow{
    grid-template-columns:32px minmax(55px,78px) 1fr 38px !important;
    gap:4px !important;
    padding:0 6px !important;
  }
  .header .mobileMenuBtn{
    width:29px !important;
    height:29px !important;
    min-width:29px !important;
    min-height:29px !important;
    font-size:16px !important;
  }
  .header .headerLogo{
    width:78px !important;
    max-width:78px !important;
    height:48px !important;
  }
  .header .search,
  .header .searchSubmit{
    width:38px !important;
    min-width:38px !important;
    height:38px !important;
  }
  .nav .navrow > a,
  .nav .navrow > .navItem > a{
    font-size:7.6px !important;
    letter-spacing:.25px !important;
    padding-left:2px !important;
    padding-right:2px !important;
  }
  .mobilebar{height:60px !important;min-height:60px !important;}
  .mobilebar a{height:50px !important;}
}

@media (max-width:330px){
  .header .headrow{
    grid-template-columns:29px 66px 1fr 36px !important;
  }
  .header .headerLogo{
    width:66px !important;
    max-width:66px !important;
  }
  .nav .navrow > a,
  .nav .navrow > .navItem > a{
    font-size:7px !important;
  }
}

/* =====================================================================
   FINAL V11 MOBILE/TABLET OVERRIDE — clean single-row header + hero overlay
   ===================================================================== */
html, body { max-width:100% !important; overflow-x:hidden !important; }

@media (max-width:1024px){
  /* Remove the old 170px reserved header space that created the blank area. */
  body, body.homePage, body:not(.homePage){
    padding-top:0 !important;
  }
  :root{
    --tt-mobile-header:64px;
    --tt-mobile-nav:46px;
    --tt-mobile-total:110px;
  }

  /* Header is one compact fixed row. */
  .header,
  body.homePage .header{
    position:fixed !important;
    top:0 !important;
    left:0 !important;
    right:0 !important;
    width:100% !important;
    height:var(--tt-mobile-header) !important;
    min-height:var(--tt-mobile-header) !important;
    margin:0 !important;
    padding:0 !important;
    z-index:2147483000 !important;
    background:#fffaf4 !important;
    border-bottom:1px solid #eadfd5 !important;
    box-shadow:0 6px 22px rgba(42,26,18,.10) !important;
  }
  .header .headrow{
    position:relative !important;
    display:flex !important;
    align-items:center !important;
    width:100% !important;
    height:var(--tt-mobile-header) !important;
    min-height:var(--tt-mobile-header) !important;
    padding:0 7px !important;
    margin:0 !important;
    gap:6px !important;
    box-sizing:border-box !important;
  }
  .header .mobileMenuBtn{
    display:grid !important;
    place-items:center !important;
    flex:0 0 34px !important;
    width:34px !important;
    height:34px !important;
    min-width:34px !important;
    min-height:34px !important;
    padding:0 !important;
    border:1px solid #dfcfc4 !important;
    border-radius:9px !important;
    background:#fff !important;
    color:#741a2b !important;
    font-size:0 !important;
  }
  .header .mobileMenuBtn:before{content:'☰' !important;font-size:20px !important;line-height:1 !important;}
  .header .brandLink{
    flex:0 0 78px !important;
    width:78px !important;
    min-width:78px !important;
    height:52px !important;
    display:flex !important;
    align-items:center !important;
    overflow:hidden !important;
  }
  .header .headerLogo{
    display:block !important;
    width:78px !important;
    max-width:78px !important;
    height:50px !important;
    max-height:50px !important;
    object-fit:contain !important;
    object-position:left center !important;
  }

  /* Search starts as icon only. */
  .header .search{
    position:absolute !important;
    left:calc(100% - 122px) !important;
    top:13px !important;
    width:36px !important;
    height:38px !important;
    min-width:36px !important;
    margin:0 !important;
    display:flex !important;
    align-items:center !important;
    z-index:2147483002 !important;
    background:#fff !important;
    border:1px solid #dfcfc4 !important;
    border-radius:50% !important;
    box-shadow:none !important;
    overflow:visible !important;
  }
  .header .search input{
    display:none !important;
    width:100% !important;
    min-width:0 !important;
    height:36px !important;
    border:0 !important;
    outline:0 !important;
    background:transparent !important;
    padding:7px 8px !important;
    font-size:12px !important;
  }
  .header .searchSubmit{
    display:grid !important;
    place-items:center !important;
    flex:0 0 36px !important;
    width:36px !important;
    min-width:36px !important;
    height:36px !important;
    padding:0 !important;
    border:0 !important;
    background:transparent !important;
    color:#2d2420 !important;
    border-radius:50% !important;
    font-size:20px !important;
  }
  .header .searchSubmit span{font-size:21px !important;line-height:1 !important;}
  .header .searchVoice{display:none !important;}

  /* Expanded in-place search: icon remains at the right, no page navigation. */
  .header .search.mobileSearchOpen{
    left:96px !important;
    right:122px !important;
    width:auto !important;
    height:42px !important;
    top:11px !important;
    border-radius:12px !important;
    box-shadow:0 10px 30px rgba(42,26,18,.16) !important;
  }
  .header .search.mobileSearchOpen input{
    display:block !important;
    flex:1 1 auto !important;
  }
  .header .search.mobileSearchOpen .searchSubmit{
    flex:0 0 40px !important;
    width:40px !important;
    height:40px !important;
  }
  .header .search .suggestions,
  .header .search .suggestions.show{
    position:absolute !important;
    left:0 !important;
    right:0 !important;
    top:calc(100% + 7px) !important;
    width:auto !important;
    max-height:55vh !important;
    overflow:auto !important;
    background:#fff !important;
    border:1px solid #eadfd5 !important;
    border-radius:14px !important;
    box-shadow:0 18px 45px rgba(42,26,18,.20) !important;
    z-index:2147483005 !important;
  }

  /* Account / Wishlist / Cart stay visible like desktop, compactly. */
  .header .actions{
    position:absolute !important;
    top:11px !important;
    right:6px !important;
    width:auto !important;
    height:42px !important;
    display:flex !important;
    align-items:center !important;
    gap:5px !important;
    padding:0 !important;
    margin:0 !important;
    border:0 !important;
    z-index:2147483001 !important;
  }
  .header .actions .iconbtn{
    flex:0 0 34px !important;
    width:34px !important;
    height:34px !important;
    min-width:34px !important;
    min-height:34px !important;
    border-radius:50% !important;
    background:#fff !important;
    color:#741a2b !important;
    border:1px solid #dfcfc4 !important;
    box-shadow:none !important;
  }
  .header .actions .iconbtn svg{width:17px !important;height:17px !important;}
  .header .actions .iconbtn b{top:-3px !important;right:-3px !important;min-width:14px !important;height:14px !important;font-size:7px !important;}

  /* Navbar sits immediately below the fixed header. */
  .nav,
  body.homePage .nav{
    position:fixed !important;
    top:var(--tt-mobile-header) !important;
    left:0 !important;
    right:0 !important;
    width:100% !important;
    height:var(--tt-mobile-nav) !important;
    min-height:var(--tt-mobile-nav) !important;
    z-index:2147482999 !important;
    background:#fffdfa !important;
    border-top:0 !important;
    border-bottom:1px solid #eadfd5 !important;
    box-shadow:0 5px 18px rgba(42,26,18,.08) !important;
  }
  .navrow{
    width:100% !important;
    height:var(--tt-mobile-nav) !important;
    min-height:var(--tt-mobile-nav) !important;
    display:flex !important;
    align-items:center !important;
    justify-content:flex-start !important;
    padding:0 5px !important;
    gap:0 !important;
    overflow-x:auto !important;
    overflow-y:hidden !important;
    white-space:nowrap !important;
  }
  .navrow>a,.navrow>.navItem>a{
    flex:0 0 auto !important;
    height:38px !important;
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    gap:5px !important;
    padding:0 9px !important;
    margin:0 1px !important;
    font-size:9px !important;
    line-height:1 !important;
    letter-spacing:.7px !important;
    white-space:nowrap !important;
    box-sizing:border-box !important;
  }
  .navItem>a .navChevron{
    flex:0 0 7px !important;
    width:7px !important;
    height:7px !important;
    margin:0 0 2px 1px !important;
    transform:rotate(45deg) !important;
  }
  .navItem{flex:0 0 auto !important;position:relative !important;}
  .navItem>.shopMega{position:fixed !important;top:calc(var(--tt-mobile-header) + var(--tt-mobile-nav)) !important;left:6px !important;right:6px !important;max-height:70vh !important;overflow:auto !important;z-index:2147482998 !important;}

  /* Main content begins below both fixed bars — no blank top area. */
  main{padding-top:var(--tt-mobile-total) !important;}
  body.homePage main{padding-top:var(--tt-mobile-total) !important;}

  /* HERO: keep the complete image and place copy/buttons directly over it. */
  body.homePage .refinedHero.collectionHero{
    position:relative !important;
    width:100% !important;
    margin:0 !important;
    padding:0 !important;
    border-radius:0 !important;
    overflow:hidden !important;
    min-height:0 !important;
    height:auto !important;
    aspect-ratio:1672 / 941 !important;
    background:#c8b5a5 !important;
  }
  body.homePage .refinedHero.collectionHero>.hero-img{
    position:absolute !important;
    inset:0 !important;
    width:100% !important;
    height:100% !important;
    max-width:none !important;
    object-fit:contain !important;
    object-position:center center !important;
    opacity:1 !important;
    z-index:0 !important;
    background:#c8b5a5 !important;
  }
  body.homePage .refinedHero.collectionHero .refinedHeroShade{
    display:block !important;
    position:absolute !important;
    inset:0 !important;
    z-index:1 !important;
    background:linear-gradient(180deg,rgba(20,12,9,.03) 15%,rgba(20,12,9,.10) 42%,rgba(20,12,9,.72) 100%) !important;
  }
  body.homePage .refinedHero.collectionHero .refinedHeroCopy{
    position:absolute !important;
    left:0 !important;
    right:0 !important;
    bottom:0 !important;
    width:100% !important;
    height:auto !important;
    min-height:0 !important;
    margin:0 !important;
    padding:8px 14px 11px !important;
    box-sizing:border-box !important;
    display:flex !important;
    flex-direction:column !important;
    justify-content:flex-end !important;
    align-items:flex-start !important;
    z-index:2 !important;
    background:transparent !important;
  }
  body.homePage .refinedHero.collectionHero .firstOrderOffer{
    display:flex !important;
    align-items:center !important;
    gap:5px !important;
    width:auto !important;
    max-width:100% !important;
    margin:0 0 3px !important;
    padding:2px 7px !important;
    border:0 !important;
    border-radius:8px !important;
    background:rgba(30,18,15,.48) !important;
  }
  body.homePage .refinedHero.collectionHero .firstOrderOffer .offerSpark{width:19px !important;height:19px !important;font-size:11px !important;}
  body.homePage .refinedHero.collectionHero .firstOrderOffer small{font-size:6px !important;line-height:1 !important;}
  body.homePage .refinedHero.collectionHero .firstOrderOffer strong{font-size:11px !important;line-height:1 !important;}
  body.homePage .refinedHero.collectionHero .firstOrderOffer em{font-size:6px !important;line-height:1 !important;}
  body.homePage .refinedHero.collectionHero .eyebrow{font-size:6px !important;letter-spacing:1px !important;margin:1px 0 !important;}
  body.homePage .refinedHero.collectionHero .refinedHeroCopy h1{
    font-size:clamp(20px,6.4vw,30px) !important;
    line-height:.94 !important;
    letter-spacing:-.6px !important;
    margin:2px 0 4px !important;
    color:#fff !important;
    text-shadow:0 2px 12px rgba(0,0,0,.5) !important;
  }
  body.homePage .refinedHero.collectionHero .refinedHeroCopy p{
    max-width:92% !important;
    font-size:8px !important;
    line-height:1.25 !important;
    margin:0 0 5px !important;
    color:#fff !important;
    text-shadow:0 1px 7px rgba(0,0,0,.55) !important;
  }
  body.homePage .refinedHero.collectionHero .refinedActions{
    display:flex !important;
    width:100% !important;
    gap:5px !important;
    margin:0 !important;
  }
  body.homePage .refinedHero.collectionHero .refinedActions .btn{
    flex:1 1 0 !important;
    min-width:0 !important;
    min-height:28px !important;
    height:28px !important;
    padding:4px 7px !important;
    margin:0 !important;
    border-radius:6px !important;
    font-size:8px !important;
    line-height:1 !important;
    white-space:nowrap !important;
    overflow:hidden !important;
    text-overflow:ellipsis !important;
    box-sizing:border-box !important;
  }

  /* Bottom shortcuts: white, only Home / Explore / Account, larger icons. */
  .mobilebar{
    position:fixed !important;
    left:0 !important;
    right:0 !important;
    bottom:0 !important;
    height:62px !important;
    min-height:62px !important;
    display:grid !important;
    grid-template-columns:repeat(3,1fr) !important;
    padding:4px 8px 5px !important;
    background:#fff !important;
    border-top:1px solid #e5ddd7 !important;
    box-shadow:0 -8px 25px rgba(35,22,17,.10) !important;
    z-index:2147483640 !important;
  }
  .mobilebar a{display:flex !important;align-items:center !important;justify-content:center !important;flex-direction:column !important;gap:2px !important;width:100% !important;height:53px !important;background:#fff !important;color:#5c504b !important;border-radius:9px !important;}
  .mobilebar a span{font-size:29px !important;line-height:1 !important;font-weight:500 !important;}
  .mobilebar a small{font-size:9px !important;line-height:1 !important;color:#5c504b !important;}
  .mobilebar a.active,.mobilebar a[aria-current="page"]{color:#741a2b !important;background:#fff !important;}
  .mobilebar a:nth-child(3),.mobilebar a:nth-child(4){display:none !important;}

  /* Keep the chevron beside Women/Men/Kids/Collections stable. */
  .navItem>a{position:relative !important;}
  .navItem>a .navChevron{position:static !important;transform:rotate(45deg) !important;vertical-align:middle !important;}
}

@media (max-width:380px){
  .header .brandLink,.header .headerLogo{flex-basis:70px !important;width:70px !important;max-width:70px !important;}
  .header .search{left:calc(100% - 117px) !important;width:34px !important;min-width:34px !important;}
  .header .searchSubmit{width:34px !important;min-width:34px !important;}
  .header .actions{gap:3px !important;right:4px !important;}
  .header .actions .iconbtn{width:32px !important;min-width:32px !important;height:32px !important;min-height:32px !important;}
  .header .actions .iconbtn svg{width:16px !important;height:16px !important;}
  .navrow>a,.navrow>.navItem>a{padding:0 7px !important;font-size:8.3px !important;}
  body.homePage .refinedHero.collectionHero .refinedHeroCopy{padding:6px 10px 8px !important;}
  body.homePage .refinedHero.collectionHero .refinedHeroCopy h1{font-size:20px !important;}
  body.homePage .refinedHero.collectionHero .refinedHeroCopy p{font-size:7px !important;}
  body.homePage .refinedHero.collectionHero .refinedActions .btn{font-size:7px !important;height:25px !important;min-height:25px !important;}
}

/* ================================================================
   FINAL STABLE MOBILE/TABLET HEADER + NAV + SEARCH
   Clean override: fixed header, visible nav, non-jumping search.
   ================================================================ */
@media (max-width:1024px){
  html,body{overflow-x:hidden!important;width:100%!important}
  body{padding-top:0!important;padding-bottom:78px!important}

  /* Header is permanently fixed. */
  .header, body.homePage .header{
    position:fixed!important;top:0!important;left:0!important;right:0!important;
    width:100%!important;height:66px!important;min-height:66px!important;
    margin:0!important;padding:0!important;background:#fffaf6!important;
    z-index:2147483000!important;border-bottom:1px solid #eadfd5!important;
    box-shadow:0 4px 16px rgba(42,26,18,.10)!important;
  }
  .header .headrow{
    position:relative!important;width:100%!important;height:66px!important;min-height:66px!important;
    margin:0!important;padding:0 7px!important;box-sizing:border-box!important;
    display:flex!important;align-items:center!important;gap:7px!important;
  }
  .header .mobileMenuBtn{
    flex:0 0 34px!important;width:34px!important;height:34px!important;min-width:34px!important;
    display:grid!important;place-items:center!important;margin:0!important;padding:0!important;
    border:1px solid #e3d5cb!important;border-radius:10px!important;background:#fff!important;
    color:#741a2b!important;font-size:0!important;line-height:1!important;
  }
  .header .mobileMenuBtn:before{content:'☰'!important;font-size:20px!important;line-height:1!important}
  .header .brandLink{
    flex:0 0 auto!important;width:88px!important;max-width:88px!important;height:48px!important;
    display:flex!important;align-items:center!important;justify-content:center!important;
    overflow:hidden!important;margin:0!important;padding:0!important;
  }
  .header .headerLogo{
    display:block!important;width:84px!important;max-width:84px!important;height:44px!important;
    max-height:44px!important;object-fit:contain!important;object-position:center!important;margin:0!important;
  }

  /* Closed search = ONLY the search circle. It never consumes/creates another row. */
  .header .search{
    position:static!important;flex:1 1 auto!important;width:auto!important;max-width:none!important;
    min-width:36px!important;height:40px!important;min-height:40px!important;margin:0!important;padding:0!important;
    display:flex!important;align-items:center!important;justify-content:flex-end!important;
    border:0!important;background:transparent!important;box-shadow:none!important;border-radius:0!important;
    overflow:visible!important;z-index:2147483005!important;
  }
  .header .search input,.header .searchVoice{display:none!important}
  .header .searchSubmit{
    display:grid!important;place-items:center!important;flex:0 0 38px!important;width:38px!important;
    min-width:38px!important;height:38px!important;min-height:38px!important;margin:0!important;padding:0!important;
    border:1px solid #e3d5cb!important;border-radius:50%!important;background:#fff!important;
    color:#741a2b!important;font-size:21px!important;line-height:1!important;box-shadow:0 2px 8px rgba(42,26,18,.06)!important;
  }
  .header .searchSubmit span{font-size:22px!important;line-height:1!important;display:block!important;transform:translateY(-1px)!important}

  /* Account / wishlist / cart remain visible. */
  .header .actions{
    flex:0 0 auto!important;display:flex!important;align-items:center!important;justify-content:flex-end!important;
    gap:4px!important;width:auto!important;height:40px!important;margin:0!important;padding:0!important;
    position:static!important;overflow:visible!important;
  }
  .header .actions .iconbtn{
    position:relative!important;display:grid!important;place-items:center!important;flex:0 0 32px!important;
    width:32px!important;min-width:32px!important;height:32px!important;min-height:32px!important;
    margin:0!important;padding:0!important;border:1px solid #e3d5cb!important;border-radius:50%!important;
    background:#fff!important;color:#741a2b!important;font-size:0!important;box-shadow:none!important;
  }
  .header .actions .iconbtn svg{display:block!important;width:16px!important;height:16px!important;fill:none!important;stroke:currentColor!important;stroke-width:1.8!important}
  .header .actions .actionText{display:none!important}
  .header .actions .iconbtn b{position:absolute!important;top:-5px!important;right:-5px!important;display:grid!important;place-items:center!important;min-width:13px!important;height:13px!important;padding:0 2px!important;border:1px solid #fff!important;border-radius:50%!important;background:#741a2b!important;color:#fff!important;font:700 7px/1 Arial,sans-serif!important}

  /* When opened, search overlays the header only. Nothing below moves. */
  .header .search.mobileSearchOpen{
    position:absolute!important;left:99px!important;right:108px!important;top:8px!important;
    width:auto!important;height:50px!important;min-height:50px!important;display:flex!important;align-items:center!important;
    padding:0 4px 0 10px!important;background:#fff!important;border:1px solid #d9c8be!important;border-radius:14px!important;
    box-shadow:0 10px 30px rgba(42,26,18,.18)!important;z-index:2147483640!important;
  }
  .header .search.mobileSearchOpen input{
    display:block!important;flex:1 1 auto!important;width:1px!important;min-width:0!important;height:44px!important;
    margin:0!important;padding:8px 5px!important;border:0!important;outline:0!important;background:transparent!important;
    color:#241916!important;font:500 13px/1.2 Arial,sans-serif!important;
  }
  .header .search.mobileSearchOpen .searchSubmit{flex:0 0 36px!important;width:36px!important;min-width:36px!important;height:36px!important;border:0!important;box-shadow:none!important}
  .header .search.mobileSearchOpen .suggestions,
  .header .search.mobileSearchOpen .suggestions.show{
    position:absolute!important;left:0!important;right:0!important;top:calc(100% + 7px)!important;width:auto!important;
    display:block!important;max-height:58vh!important;overflow:auto!important;padding:6px!important;
    background:#fff!important;border:1px solid #e3d5cb!important;border-radius:14px!important;
    box-shadow:0 18px 45px rgba(42,26,18,.20)!important;z-index:2147483647!important;
  }

  /* Navbar: always visible, fixed directly under header. */
  .nav, body.homePage .nav{
    position:fixed!important;top:66px!important;left:0!important;right:0!important;width:100%!important;
    height:46px!important;min-height:46px!important;margin:0!important;padding:0!important;display:block!important;
    visibility:visible!important;opacity:1!important;background:#fffdfa!important;
    border-top:1px solid #eadfd5!important;border-bottom:1px solid #eadfd5!important;
    box-shadow:0 4px 14px rgba(42,26,18,.08)!important;z-index:2147482990!important;
  }
  .nav .compactNav{display:none!important}
  .nav .navrow{
    display:flex!important;visibility:visible!important;opacity:1!important;width:100%!important;height:46px!important;
    min-height:46px!important;margin:0!important;padding:0 5px!important;box-sizing:border-box!important;
    align-items:center!important;justify-content:flex-start!important;flex-wrap:nowrap!important;gap:0!important;
    overflow-x:auto!important;overflow-y:hidden!important;white-space:nowrap!important;scrollbar-width:none!important;
    -webkit-overflow-scrolling:touch!important;
  }
  .nav .navrow::-webkit-scrollbar{display:none!important}
  .nav .navrow>.navItem,.nav .navrow>a{display:flex!important;visibility:visible!important;opacity:1!important;flex:0 0 auto!important;height:46px!important;align-items:center!important}
  .nav .navrow>.navItem>a,.nav .navrow>a{
    display:flex!important;align-items:center!important;justify-content:center!important;height:38px!important;
    min-width:max-content!important;margin:4px 1px!important;padding:0 12px!important;
    color:#241b18!important;background:transparent!important;border:0!important;border-radius:18px!important;
    font:800 10px/1 Arial,sans-serif!important;letter-spacing:.45px!important;text-transform:uppercase!important;
    white-space:nowrap!important;gap:5px!important;text-decoration:none!important;
  }
  .nav .navrow>.navItem>a:hover,.nav .navrow>a:hover,.nav .navrow>.navItem.active>a,.nav .navrow>a.active{color:#741a2b!important;background:#f8eeea!important}
  .nav .navItem{position:relative!important;height:46px!important;flex:0 0 auto!important}
  .nav .navItem>a .navChevron{display:inline-block!important;position:static!important;flex:0 0 7px!important;width:7px!important;height:7px!important;margin:0 0 3px!important;border-right:1.5px solid currentColor!important;border-bottom:1.5px solid currentColor!important;transform:rotate(45deg)!important}

  /* Page content starts below both fixed bars. */
  main,body.homePage main{padding-top:112px!important}

  /* Bottom mobile bar = Home / Explore / Account. */
  .mobilebar{
    position:fixed!important;left:0!important;right:0!important;bottom:0!important;width:100%!important;height:76px!important;
    min-height:76px!important;display:grid!important;grid-template-columns:repeat(3,1fr)!important;align-items:center!important;
    margin:0!important;padding:5px 10px 7px!important;background:#fff!important;border-top:1px solid #e5d9d1!important;
    box-shadow:0 -7px 25px rgba(42,26,18,.10)!important;z-index:2147483001!important;box-sizing:border-box!important;
  }
  .mobilebar a,.mobilebar a:nth-child(3),.mobilebar a:nth-child(4){display:flex!important;visibility:visible!important;align-items:center!important;justify-content:center!important;flex-direction:column!important;gap:3px!important;width:100%!important;height:62px!important;background:#fff!important;color:#5c504b!important;border-radius:10px!important;text-decoration:none!important}
  .mobilebar a span{display:block!important;font-size:30px!important;line-height:1!important;font-weight:500!important}
  .mobilebar a small{display:block!important;font:800 10px/1 Arial,sans-serif!important;color:#5c504b!important}
  .mobilebar a.active,.mobilebar a[aria-current="page"]{color:#741a2b!important;background:#fff!important}
}

@media (max-width:390px){
  .header .headrow{gap:4px!important;padding:0 5px!important}
  .header .mobileMenuBtn{flex-basis:32px!important;width:32px!important;min-width:32px!important;height:32px!important}
  .header .brandLink{width:78px!important;flex-basis:78px!important}
  .header .headerLogo{width:76px!important;height:42px!important}
  .header .actions{gap:3px!important}
  .header .actions .iconbtn{flex-basis:29px!important;width:29px!important;min-width:29px!important;height:29px!important}
  .header .actions .iconbtn svg{width:15px!important;height:15px!important}
  .header .searchSubmit{flex-basis:36px!important;width:36px!important;min-width:36px!important;height:36px!important}
  .header .search.mobileSearchOpen{left:92px!important;right:101px!important}
  .nav .navrow>.navItem>a,.nav .navrow>a{padding:0 9px!important;font-size:9px!important}
}

@media (max-width:330px){
  .header .brandLink{width:67px!important;flex-basis:67px!important}
  .header .headerLogo{width:65px!important;height:39px!important}
  .header .actions{gap:2px!important}
  .header .actions .iconbtn{flex-basis:27px!important;width:27px!important;min-width:27px!important;height:27px!important}
  .header .searchSubmit{flex-basis:34px!important;width:34px!important;min-width:34px!important;height:34px!important}
  .header .search.mobileSearchOpen{left:82px!important;right:91px!important}
  .nav .navrow>.navItem>a,.nav .navrow>a{padding:0 8px!important;font-size:8.5px!important}
}


/* =====================================================================
   V15 — FINAL MOBILE/TABLET HEADER + NAVBAR
   Requested layout: menu -> logo -> space -> search -> account -> wishlist -> cart.
   Search opens in-place as an overlay; it must not push page content.
   Primary desktop navbar remains available on small screens in a compact
   two-row grid so every desktop item is visible without horizontal scrolling.
   ===================================================================== */
@media (max-width: 800px){
  :root{ --tt-header-h:66px; --tt-nav-h:82px; }

  html,body{overflow-x:hidden !important;}

  /* Header is the first fixed layer. */
  .header,
  body.homePage .header{
    position:fixed !important;
    top:0 !important;
    left:0 !important;
    right:0 !important;
    width:100% !important;
    height:var(--tt-header-h) !important;
    min-height:var(--tt-header-h) !important;
    margin:0 !important;
    padding:0 !important;
    background:#fffaf4 !important;
    border-bottom:1px solid #eadfd7 !important;
    box-shadow:0 5px 18px rgba(40,22,16,.10) !important;
    z-index:2147483600 !important;
  }

  .header .headrow{
    width:100% !important;
    max-width:none !important;
    height:var(--tt-header-h) !important;
    min-height:var(--tt-header-h) !important;
    margin:0 !important;
    padding:5px 7px !important;
    display:grid !important;
    grid-template-columns:34px 82px minmax(36px,1fr) auto !important;
    grid-template-rows:56px !important;
    align-items:center !important;
    column-gap:8px !important;
    box-sizing:border-box !important;
  }

  .header .mobileMenuBtn{
    grid-column:1 !important; grid-row:1 !important;
    width:34px !important; min-width:34px !important; height:34px !important;
    margin:0 !important; padding:0 !important;
    display:grid !important; place-items:center !important;
    border:1px solid #dfcec4 !important; border-radius:9px !important;
    background:#fff !important; color:#741a2b !important;
    font-size:0 !important;
  }
  .header .mobileMenuBtn::before{content:'☰' !important;font-size:20px !important;line-height:1 !important;}

  .header .brandLink{
    grid-column:2 !important; grid-row:1 !important;
    width:82px !important; max-width:82px !important; height:52px !important;
    margin:0 !important; padding:0 !important;
    display:flex !important; align-items:center !important; justify-content:flex-start !important;
    overflow:visible !important;
  }
  .header .headerLogo{
    display:block !important; width:82px !important; max-width:82px !important;
    height:48px !important; max-height:48px !important;
    object-fit:contain !important; object-position:left center !important;
    margin:0 !important;
  }

  /* Closed state = ONLY search icon. It sits after a deliberate gap from logo. */
  .header .search{
    grid-column:3 !important; grid-row:1 !important;
    justify-self:end !important;
    width:38px !important; min-width:38px !important; max-width:38px !important;
    height:38px !important; min-height:38px !important;
    margin:0 !important; padding:0 !important;
    border:1px solid #eadbd1 !important; border-radius:50% !important;
    background:#fff !important; box-shadow:0 3px 10px rgba(50,25,17,.07) !important;
    display:flex !important; align-items:center !important; justify-content:center !important;
    overflow:visible !important; position:relative !important;
    z-index:2147483620 !important;
  }
  .header .search input{display:none !important;}
  .header .searchVoice{display:none !important;}
  .header .searchSubmit{
    display:grid !important; place-items:center !important;
    width:38px !important; min-width:38px !important; height:38px !important;
    margin:0 !important; padding:0 !important; border:0 !important;
    border-radius:50% !important; background:transparent !important;
    color:#741a2b !important; font-size:21px !important; line-height:1 !important;
  }
  .header .searchSubmit span{font-size:22px !important;line-height:1 !important;}

  /* Expanded search overlays the header; no layout shift. */
  .header .search.mobileSearchOpen{
    position:absolute !important;
    top:8px !important;
    left:132px !important;
    right:112px !important;
    width:auto !important; min-width:0 !important; max-width:none !important;
    height:46px !important; min-height:46px !important;
    display:flex !important; align-items:center !important;
    border-radius:24px !important; background:#fff !important;
    box-shadow:0 12px 35px rgba(42,26,18,.18) !important;
    z-index:2147483630 !important;
  }
  .header .search.mobileSearchOpen input{
    display:block !important; flex:1 1 auto !important; width:1px !important;
    min-width:0 !important; height:42px !important; min-height:42px !important;
    padding:8px 7px 8px 13px !important; border:0 !important; outline:0 !important;
    background:transparent !important; font-size:12px !important; color:#2b211d !important;
  }
  .header .search.mobileSearchOpen .searchSubmit{flex:0 0 38px !important;width:38px !important;min-width:38px !important;height:38px !important;}
  .header .search .suggestions,
  .header .search .suggestions.show{
    position:absolute !important; top:calc(100% + 8px) !important;
    left:0 !important; right:0 !important; width:auto !important;
    max-height:min(62vh,420px) !important; overflow:auto !important;
    background:#fff !important; border:1px solid #eadfd8 !important;
    border-radius:14px !important; box-shadow:0 18px 45px rgba(42,26,18,.20) !important;
    z-index:2147483640 !important;
  }

  .header .actions{
    grid-column:4 !important; grid-row:1 !important;
    display:flex !important; align-items:center !important; justify-content:flex-end !important;
    flex-wrap:nowrap !important; gap:5px !important;
    width:auto !important; height:44px !important; margin:0 !important; padding:0 !important;
  }
  .header .actions .iconbtn{
    position:relative !important; flex:0 0 32px !important;
    width:32px !important; min-width:32px !important; height:32px !important; min-height:32px !important;
    max-width:32px !important; max-height:32px !important; padding:0 !important; margin:0 !important;
    display:grid !important; place-items:center !important; border-radius:50% !important;
    background:#fff !important; color:#741a2b !important; border:1px solid #eadbd1 !important;
    box-shadow:0 3px 10px rgba(53,11,19,.07) !important;
  }
  .header .actions .iconbtn svg{width:16px !important;height:16px !important;fill:none !important;stroke:currentColor !important;stroke-width:1.8 !important;}
  .header .actions .actionText{display:none !important;}
  .header .actions .iconbtn b{position:absolute !important;top:-5px !important;right:-5px !important;min-width:13px !important;height:13px !important;padding:0 3px !important;display:grid !important;place-items:center !important;border:1.5px solid #fff !important;border-radius:999px !important;background:#741a2b !important;color:#fff !important;font:700 7px/1 Arial,sans-serif !important;}

  /* Navbar: fixed immediately below header, all 8 desktop links visible in 4x2. */
  .nav,
  body.homePage .nav{
    position:fixed !important;
    top:var(--tt-header-h) !important;
    left:0 !important; right:0 !important;
    width:100% !important; height:var(--tt-nav-h) !important; min-height:var(--tt-nav-h) !important;
    margin:0 !important; padding:0 !important;
    display:block !important; overflow:visible !important;
    background:#fffdfa !important; border-bottom:1px solid #eadfd7 !important;
    box-shadow:0 4px 14px rgba(42,26,18,.08) !important;
    z-index:2147483500 !important;
  }
  .nav .compactNav,.nav .mobilePrimaryNav{display:none !important;}
  .nav .navrow{
    width:100% !important; height:var(--tt-nav-h) !important; min-height:var(--tt-nav-h) !important;
    margin:0 !important; padding:5px 6px !important;
    display:grid !important; grid-template-columns:repeat(4,minmax(0,1fr)) !important;
    grid-template-rows:repeat(2,36px) !important; gap:2px !important;
    align-items:stretch !important; overflow:visible !important; white-space:normal !important;
    box-sizing:border-box !important;
  }
  .nav .navrow>a,.nav .navrow>.navItem>a{
    min-width:0 !important; width:100% !important; height:36px !important; min-height:36px !important;
    margin:0 !important; padding:5px 2px !important;
    display:flex !important; align-items:center !important; justify-content:center !important; gap:3px !important;
    overflow:hidden !important; white-space:nowrap !important; text-overflow:ellipsis !important;
    border-radius:18px !important; font-size:8.5px !important; line-height:1 !important;
    letter-spacing:.35px !important; box-sizing:border-box !important;
  }
  .nav .navItem{position:relative !important;min-width:0 !important;width:100% !important;display:block !important;}
  .nav .navItem>a .navChevron{
    flex:0 0 7px !important; width:7px !important; height:7px !important;
    margin-left:1px !important; border-right:1.5px solid currentColor !important; border-bottom:1.5px solid currentColor !important;
    transform:rotate(45deg) translateY(-2px) !important;
  }
  .nav .navItem.megaOpen>a .navChevron{transform:rotate(225deg) translate(-1px,-1px) !important;}

  /* Keep the page content below both fixed layers. */
  body{padding-top:calc(var(--tt-header-h) + var(--tt-nav-h)) !important;padding-bottom:72px !important;}
  .mobileNavSpacer{display:none !important;}

  /* Mega menu stays anchored to the nav item and never moves the nav itself. */
  .nav .shopMega{
    position:fixed !important; left:6px !important; right:6px !important;
    top:calc(var(--tt-header-h) + var(--tt-nav-h) - 1px) !important;
    max-height:70vh !important; overflow:auto !important; z-index:2147483400 !important;
  }
}

@media (max-width:390px){
  .header .headrow{grid-template-columns:32px 76px minmax(32px,1fr) auto !important;column-gap:6px !important;padding-left:5px !important;padding-right:5px !important;}
  .header .mobileMenuBtn{width:32px !important;min-width:32px !important;height:32px !important;min-height:32px !important;}
  .header .brandLink,.header .headerLogo{width:76px !important;max-width:76px !important;}
  .header .actions{gap:3px !important;}
  .header .actions .iconbtn{flex-basis:29px !important;width:29px !important;min-width:29px !important;height:29px !important;min-height:29px !important;}
  .header .actions .iconbtn svg{width:15px !important;height:15px !important;}
  .header .search{width:36px !important;min-width:36px !important;height:36px !important;min-height:36px !important;}
  .header .searchSubmit{width:36px !important;min-width:36px !important;height:36px !important;}
  .header .search.mobileSearchOpen{left:118px !important;right:103px !important;}
  .nav .navrow>a,.nav .navrow>.navItem>a{font-size:8px !important;padding-left:1px !important;padding-right:1px !important;}
}
