:root{--ink:#111;--white:#fff;--max-width:1440px;--header-height:60px}
*{box-sizing:border-box}
body{margin:0;font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;color:var(--ink);background:var(--white)}
a{color:inherit;text-decoration:none}
.container{max-width:var(--max-width);margin:0 auto;padding:0 20px}

/* Header */
#main-header{position:fixed;top:0;left:0;right:0;height:var(--header-height);z-index:9999;background:transparent;border-bottom:1px solid rgba(255,255,255,.12);transition:background .25s ease,border-color .25s ease,box-shadow .25s ease}
.nav-main{height:var(--header-height);display:flex;align-items:center;justify-content:space-between;padding:0 20px}
.brand a{letter-spacing:.18em;text-transform:uppercase;font-weight:600;font-size:26px}
#main-header,#main-header a{color:#fff}
#main-header svg{stroke:currentColor;fill:none}
#main-header.is-scrolled{background:rgba(255,255,255,.96);border-bottom-color:rgba(0,0,0,.08);box-shadow:0 6px 18px rgba(0,0,0,.06)}
#main-header.is-scrolled,#main-header.is-scrolled a{color:var(--ink)}
.hamburger{width:44px;height:44px;display:inline-flex;align-items:center;justify-content:center}
.hamburger span{display:block;width:18px;height:2px;background:currentColor;margin:3px 0;border-radius:2px}

/* Menu Drawer */
.menu-drawer{position:fixed;top:0;bottom:0;left:0;width:min(340px,86vw);background:#fff;transform:translateX(-105%);transition:transform .25s ease;z-index:9998;padding:84px 22px 22px;box-shadow:10px 0 30px rgba(0,0,0,.12)}
.menu-drawer.is-open{transform:translateX(0)}
.menu-list{list-style:none;margin:0;padding:0}
.menu-list a{display:block;padding:10px 0;letter-spacing:.12em;text-transform:uppercase;font-size:12px;font-weight:600;color:var(--ink)}
.menu-overlay{position:fixed;inset:0;background:rgba(0,0,0,.35);opacity:0;pointer-events:none;transition:opacity .2s ease;z-index:9997}
.menu-overlay.is-open{opacity:1;pointer-events:auto}

/* Basic layout so content isn't hidden under fixed header */
main{padding-top:var(--header-height)}

/* Ensure Inter is used for header wordmark + drawers site-wide */
.brand a,
.menu-list a,
.account-drawer,
.account-drawer *{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* === Product More Details accordion (LV style) === */
.toggle-description{
  margin-top:12px;
  width:100%;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:10px;
  padding:12px 0;
  border:none;
  background:transparent;
  cursor:pointer;
  font-family:inherit;
  font-weight:600;
  letter-spacing:.06em;
  text-transform:uppercase;
  font-size:12px;
  color:#111;
}
.toggle-description .symbol{
  width:18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
}
.product-meta-block{
  max-height:0;
  overflow:hidden;
  transition:max-height .28s ease;
}
.product-meta-block.is-open{
  max-height:2200px;
}


/* === Mini Cart Drawer (LV-style) === */
.jh-mini-cart-overlay{
  position:fixed; inset:0; background:rgba(0,0,0,.35);
  opacity:0; pointer-events:none; transition:opacity .18s ease;
  z-index:9998;
}
.jh-mini-cart{
  position:fixed; right:0; top:0; height:100vh; width:min(420px, 92vw);
  background:#fff; border-left:1px solid rgba(0,0,0,.10);
  transform:translateX(110%); transition:transform .22s ease;
  z-index:9999; display:flex; flex-direction:column;
}
.jh-mini-cart.open{ transform:translateX(0); }
.jh-mini-cart-overlay.open{ opacity:1; pointer-events:auto; }

.jh-mini-cart .mc-head{
  display:flex; align-items:center; justify-content:space-between;
  padding:18px 18px 12px;
  border-bottom:1px solid rgba(0,0,0,.10);
}
.jh-mini-cart .mc-title{
  font-size:12px; letter-spacing:.18em; text-transform:uppercase; font-weight:700;
}
.jh-mini-cart .mc-close{
  border:none; background:transparent; font-size:22px; line-height:1; cursor:pointer;
}
.jh-mini-cart .mc-body{ padding:16px 18px; display:flex; gap:14px; }
.jh-mini-cart .mc-img{
  width:88px; height:88px; border-radius:12px; overflow:hidden;
  border:1px solid rgba(0,0,0,.10); background:#f6f5f2; flex:0 0 auto;
}
.jh-mini-cart .mc-img img{ width:100%; height:100%; object-fit:cover; display:block; }
.jh-mini-cart .mc-meta{ min-width:0; }
.jh-mini-cart .mc-name{ font-weight:700; font-size:14px; margin:0 0 6px; }
.jh-mini-cart .mc-sub{ color:#666; font-size:12px; margin:0 0 6px; }
.jh-mini-cart .mc-price{ font-weight:800; font-size:14px; margin:0; }

.jh-mini-cart .mc-actions{
  margin-top:auto;
  padding:14px 18px 18px;
  border-top:1px solid rgba(0,0,0,.10);
  display:grid; gap:10px;
}
.jh-mini-cart .mc-btn{
  height:46px; border-radius:999px; font-weight:800;
  letter-spacing:.14em; text-transform:uppercase; font-size:12px;
  border:1px solid rgba(0,0,0,.12); background:#fff; cursor:pointer;
}
.jh-mini-cart .mc-btn.primary{ background:#111; color:#fff; border-color:#111; }

@media (max-width: 820px){
  .jh-mini-cart{
    right:auto; left:0; width:100vw; height:auto; top:auto; bottom:0;
    border-left:none; border-top:1px solid rgba(0,0,0,.10);
    border-radius:18px 18px 0 0;
    transform:translateY(110%);
  }
  .jh-mini-cart.open{ transform:translateY(0); }
}


/* === Product description (LV-style Read more) === */
.lv-desc .desc-short{ color:#111; font-size:13px; line-height:1.7; margin:10px 0 0; }
.lv-desc .desc-more{ max-height:0; overflow:hidden; transition:max-height .25s ease; }
.lv-desc.is-open .desc-more{ max-height:1800px; }
.lv-desc .read-more{
  margin-top:10px;
  border:none; background:transparent; cursor:pointer;
  font-weight:700; font-size:12px; letter-spacing:.14em; text-transform:uppercase;
  color:#111; padding:0;
  display:inline-flex; gap:8px; align-items:center;
}
.lv-desc .read-more .rm-symbol{ font-weight:900; }

/* === Header modes === */
body.header-transparent #main-header{
  background:transparent;
  border-bottom-color:transparent;
  box-shadow:none;
}

/* === LV Product Details Layout v4 === */
.details .sku-line{font-size:11px;letter-spacing:.18em;text-transform:uppercase;color:#777;margin-bottom:16px;}
.details .section-label{font-size:11px;letter-spacing:.18em;text-transform:uppercase;color:#777;margin-bottom:8px;}
.description .description-inner{
  font-size:13px; line-height:1.6;
  max-height:6.2em; overflow:hidden; position:relative;
}
.description .description-inner::after{
  content:""; position:absolute; left:0; right:0; bottom:0; height:2.4em;
  background:linear-gradient(to bottom, rgba(248,247,245,0), #f8f7f5);
}
.description .description-inner.expanded{ max-height:none; }
.description .description-inner.expanded::after{ display:none; }
.toggle-description{
  margin-top:10px; padding:0; border:none; background:none;
  font-size:12px; letter-spacing:.16em; text-transform:uppercase;
  cursor:pointer; text-decoration:underline;
}
.toggle-description .symbol{margin-right:6px;font-weight:900;}

/* ================================
   HOME HEADER: SOLID (NO TRANSPARENT)
   ================================ */
body.home #main-header{
  background: #ffffff !important;
  border-bottom-color: rgba(0,0,0,.08) !important;
  box-shadow: 0 6px 18px rgba(0,0,0,.06) !important;
}
body.home #main-header,
body.home #main-header a{
  color: #111111 !important;
}
body.home #main-header svg{
  stroke: #111111 !important;
}
body.home #main-header .hamburger span{
  background:#111111 !important;
}
/* neutralize scroll toggles on homepage */
body.home #main-header.is-scrolled{
  background:#ffffff !important;
}

/* ================================
   MOBILE SEARCH BAR (UNDER LOGO)
   - Mobile only
   ================================ */
.mobile-search{
  display:none;
  padding: 10px 16px 14px;
  border-top: 1px solid #eee;
  background:#fff;
}
.mobile-search form{ margin:0; }
.mobile-search input{
  width:100%;
  height:44px;
  border-radius:999px;
  border:1px solid #e2e2e2;
  padding:0 16px;
  font-size:14px;
  outline:none;
  background:#fff;
  color:#111;
}
.mobile-search input:focus{
  border-color:#bdbdbd;
  box-shadow:0 0 0 3px rgba(17,17,17,.06);
}
@media (max-width: 768px){
  .mobile-search{ display:block; }
}
@media (min-width: 769px){
  .mobile-search{ display:none; }
}

/* ================================
   LV-STYLE SMALL CENTER SMS POPUP
   ================================ */
.jh-modal{ position:fixed; inset:0; z-index:9999; display:none; font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif; }
.jh-modal.is-open{ display:block; }
.jh-modal__overlay{
  position:absolute; inset:0;
  background: rgba(0,0,0,.30);
  backdrop-filter: blur(2px);
}
.jh-modal__panel--small{
  position:absolute;
  left:50%; top:50%;
  transform:translate(-50%,-50%);
  width:min(720px, calc(100% - 44px));
  background:#f6f3ee;
  border-radius:14px;
  padding:34px 38px 32px;
  box-shadow:0 22px 70px rgba(0,0,0,.22);
  color:#111;
}
.jh-modal__close{
  position:absolute; right:16px; top:14px;
  width:36px; height:36px;
  border:none; background:transparent;
  font-size:28px; line-height:1;
  cursor:pointer; color:#111;
  opacity:.70;
}
.jh-modal__close:hover{opacity:1}
.jh-modal__headline{
  margin:0 0 16px;
  font-size:18px;
  font-weight:500;
  letter-spacing:.02em;
}
.jh-modal__copy{
  margin:0 0 22px;
  font-size:15px;
  line-height:1.7;
  color:#222;
  max-width:640px;
}
.jh-modal__cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:46px;
  padding:0 28px;
  border-radius:999px;
  background:#111;
  color:#fff;
  text-decoration:none;
  font-size:14px;
  font-weight:500;
  letter-spacing:.02em;
}
.jh-modal__cta:hover{opacity:.92}
@media (max-width:520px){
  .jh-modal__panel--small{padding:26px 22px}
  .jh-modal__headline{font-size:16px}
  .jh-modal__copy{font-size:14px}
}
