/* ============================================================
   STYLONES — Luxury D2C Fashion Brand Design System
   Palette: Obsidian, Warm Alabaster, Vintage Brass Gold, Slate
   ============================================================ */
:root {
  --ink: #09090b;
  --ink-soft: #52525b;
  --paper: #fbfbfa;
  --paper-2: #f4f4f2;
  --line: #e4e4e7;
  --indigo: #09090b;
  --indigo-deep: #18181b;
  --brass: #c5a059;
  --brass-light: #fef08a;
  --sale: #dc2626;
  --white: #fff;
  --head: 'Playfair Display', 'Outfit', Georgia, serif;
  --body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .04);
  --shadow: 0 16px 36px -12px rgba(9, 9, 11, .12);
  --shadow-lg: 0 24px 60px -15px rgba(9, 9, 11, .2);
  --radius: 8px;
  --radius-lg: 14px;
  --container: 1280px;
  --gutter: clamp(16px, 4vw, 36px);
  --header-h: 88px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: var(--ink); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--brass); }
h1, h2, h3, h4 { font-family: var(--head); font-weight: 600; line-height: 1.18; margin: 0 0 .4em; letter-spacing: -.3px; color: var(--ink); }
p { margin: 0 0 .9em; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

.skip-link { position: absolute; left: -999px; top: 0; z-index: 200; background: var(--ink); color: #fff; padding: 10px 16px; }
.skip-link:focus { left: 0; }

/* ---------------------------------- buttons */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font: 600 13px/1 var(--body);
  letter-spacing: .8px; text-transform: uppercase;
  padding: 15px 28px; border-radius: var(--radius);
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1.5px solid var(--btn-bg); cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
  transition: transform .15s ease, background .15s ease, color .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.btn:hover { color: #fff; background: #27272a; border-color: #27272a; box-shadow: 0 6px 18px rgba(0,0,0,.15); transform: translateY(-1px); }
.btn:active { transform: translateY(1px); }
.btn-block { display: flex; width: 100%; }
.btn-lg { padding: 17px 36px; font-size: 13.5px; border-radius: var(--radius); }
.btn-primary { --btn-bg: var(--ink); --btn-fg: #fff; }
.btn-light { --btn-bg: #fff; --btn-fg: var(--ink); border-color: #fff; }
.btn-light:hover { --btn-bg: #f4f4f5; --btn-fg: var(--ink); border-color: #f4f4f5; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); box-shadow: none; }
.btn-ghost:hover { background: #f4f4f5; color: var(--ink); border-color: #d4d4d8; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); box-shadow: none; }
.btn-outline:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-ghost-light { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.6); backdrop-filter: blur(6px); box-shadow: none; }
.btn-ghost-light:hover { background: rgba(255,255,255,.2); color: #fff; border-color: #fff; }
.btn[disabled] { opacity: .45; cursor: not-allowed; }
.link-btn { background: none; border: 0; color: var(--ink); font: 600 13px var(--body); text-decoration: underline; cursor: pointer; padding: 0; }
.icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  background: none; border: 0; color: var(--ink); cursor: pointer; position: relative;
  transition: background .15s ease, transform .15s ease;
}
.icon-btn:hover { background: var(--paper-2); transform: scale(1.05); }
.icon-btn .count {
  position: absolute; top: -1px; right: -1px; min-width: 18px; height: 18px;
  padding: 0 4px; border-radius: 9px; background: var(--ink); color: #fff;
  font: 700 10.5px/18px var(--body); text-align: center; border: 1.5px solid #fff;
}
.menu-btn span { display: block; width: 20px; height: 2px; background: var(--ink); margin: 4px auto; transition: .2s; }
.link-arrow { font-weight: 600; font-size: 13.5px; color: var(--ink); display: inline-flex; align-items: center; gap: 4px; }
.link-arrow:hover { color: var(--brass); }

/* ---------------------------------- top announcement */
.announcement {
  background: #09090b; color: #f4f4f5; font-size: 12.5px; font-weight: 500;
  text-align: center; position: relative; z-index: 60; letter-spacing: .4px;
}
.announcement-inner { display: flex; justify-content: center; gap: 14px; align-items: center; padding: 9px var(--gutter); }
.announcement p { margin: 0; }
.announcement-cta { color: var(--brass-light); text-decoration: underline; font-weight: 600; }
.announcement-cta:hover { color: #fff; }
.announcement-close { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); background: none; border: 0; color: #a1a1aa; cursor: pointer; font-size: 13px; }

/* ---------------------------------- header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 251, 250, .94); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 20px -4px rgba(0,0,0,.03);
}
.header-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand-logo-img { height: 64px; width: auto; max-width: 260px; object-fit: contain; display: block; transition: transform .2s ease; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--ink); color: #fff;
  font-family: var(--head); font-size: 21px; font-weight: 600;
}
.brand-name { font-family: var(--head); font-size: 22px; letter-spacing: 3.5px; font-weight: 600; }
.site-nav ul { list-style: none; display: flex; gap: 28px; margin: 0; padding: 0; align-items: center; }
.site-nav a { color: var(--ink); font-weight: 600; font-size: 13.5px; letter-spacing: .4px; text-transform: uppercase; padding: 8px 0; border-bottom: 2px solid transparent; transition: border-color .15s, color .15s; }
.site-nav a:hover, .site-nav a.active { color: var(--ink); border-bottom-color: var(--ink); }
.has-mega { position: relative; padding: 4px 0; }
.has-mega .chev { margin-left: 5px; vertical-align: 1px; transition: transform .2s ease; }
.has-mega:hover .chev, .has-mega.is-open .chev { transform: rotate(180deg); }

.mega {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  background: #ffffff;
  border: 1px solid #ede9e1;
  border-radius: 16px;
  box-shadow: 0 28px 70px -12px rgba(18, 16, 14, 0.22), 0 0 0 1px rgba(18, 16, 14, 0.04);
  padding: 24px 28px 18px;
  display: none;
  flex-direction: column;
  gap: 20px;
  min-width: 990px;
  max-width: 95vw;
  z-index: 100;
  margin-top: 6px;
}
.mega::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}
.has-mega:hover .mega, .has-mega:focus-within .mega {
  display: flex;
  animation: mega-fade 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes mega-fade {
  from { opacity: 0; transform: translateX(-50%) translateY(10px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.mega-body {
  display: grid;
  grid-template-columns: 270px 270px 1fr;
  gap: 28px;
  align-items: stretch;
}
.mega-col {
  display: flex;
  flex-direction: column;
}
.mega-heading {
  display: block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: #8c734b;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1.5px solid #f1ece1;
}
.mega-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.mega-list li {
  margin: 0;
  padding: 0;
  border: 0 !important;
}
.mega-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 7px 10px;
  border-radius: 8px;
  text-decoration: none !important;
  border: 0 !important;
  color: var(--ink);
  transition: all 0.15s ease;
  min-height: 44px;
}
.mega-item:hover {
  background: #f8f6f2;
  transform: translateX(4px);
}
.mega-item-icon {
  font-size: 16px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f1ea;
  border-radius: 6px;
  flex-shrink: 0;
  transition: background 0.15s, transform 0.15s;
}
.mega-item:hover .mega-item-icon {
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transform: scale(1.1);
}
.mega-item-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.mega-item-text strong {
  font-size: 13.5px;
  font-weight: 700;
  color: #1c1917;
  line-height: 1.25;
  text-transform: none;
  transition: color 0.15s;
}
.mega-item:hover .mega-item-text strong {
  color: var(--indigo, #1e3a8a);
}
.mega-item-text small {
  font-size: 11px;
  color: #78716c;
  line-height: 1.2;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: none;
}
.mega-arrow {
  font-size: 13px;
  color: #a8a29e;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.15s ease;
}
.mega-item:hover .mega-arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--indigo, #1e3a8a);
}
.mega-badge {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.6px;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
}
.mega-badge-hot { background: #fee2e2; color: #b91c1c; }
.mega-badge-new { background: #dcfce7; color: #15803d; }
.mega-badge-tech { background: #e0f2fe; color: #0369a1; }
.mega-badge-offer { background: #fef3c7; color: #b45309; }

/* Dual Visual Editorial Showcase */
.mega-visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  height: 100%;
}
.mega-card-visual {
  text-decoration: none !important;
  border: 0 !important;
  display: flex;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
  min-height: 290px;
}
.mega-card-visual:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.16);
}
.mega-card-img-box {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 290px;
  overflow: hidden;
  background: #18181b;
}
.mega-card-img-box img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  transition: transform 0.4s ease;
}
.mega-card-visual:hover .mega-card-img-box img {
  transform: scale(1.06);
}
.mega-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 45%, rgba(0,0,0,0.92) 100%);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  z-index: 2;
}
.mega-card-pill {
  display: inline-block;
  align-self: flex-start;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 3px 8px;
  border-radius: 12px;
  color: #fef08a;
  margin-bottom: 6px;
  border: 1px solid rgba(255,255,255,0.25);
}
.mega-card-title {
  font-family: var(--head);
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 2px;
  text-transform: none;
}
.mega-card-link {
  font-size: 11.5px;
  color: #cbd5e1;
  font-weight: 600;
  transition: color 0.15s;
}
.mega-card-visual:hover .mega-card-link {
  color: #ffffff;
  text-decoration: underline;
}

/* Mega Bottom Trust Strip */
.mega-foot-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid #f1ece1;
  gap: 16px;
  flex-wrap: wrap;
}
.mega-foot-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 600;
  color: #57534e;
}
.mega-foot-item svg {
  color: #b08a3e;
}
.mega-foot-cta {
  font-size: 12px;
  font-weight: 700;
  color: var(--indigo, #1e3a8a);
  text-decoration: none !important;
  border: 0 !important;
  transition: color 0.15s;
  margin-left: auto;
}
.mega-foot-cta:hover {
  color: var(--ink);
  text-decoration: underline !important;
}
.header-tools { display: flex; align-items: center; gap: 8px; }
.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.menu-btn span {
  display: block; width: 20px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
body.nav-open .menu-btn span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .menu-btn span:nth-child(2) { opacity: 0; }
body.nav-open .menu-btn span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mob-nav-head { display: none; }
.mobile-drawer { display: none; }

@media (max-width: 960px) {
  .site-header {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: #ffffff !important;
  }
  .desktop-nav, .site-nav { display: none !important; }
  .menu-btn { display: inline-flex !important; }

  body.nav-open {
    overflow: hidden !important;
    touch-action: none;
  }

  /* Dedicated Root-Level Mobile Drawer */
  .mobile-drawer {
    display: flex !important;
    position: fixed;
    top: 0; left: 0; bottom: 0;
    width: min(340px, 86vw); max-width: 86vw;
    height: 100vh; height: 100dvh;
    background: #ffffff;
    border-right: 1px solid var(--line);
    z-index: 999999 !important;
    transform: translateX(-100%);
    visibility: hidden;
    transition: transform .32s cubic-bezier(0.16, 1, 0.3, 1), visibility .32s ease;
    box-shadow: 12px 0 50px rgba(0,0,0,0.35);
    flex-direction: column;
  }
  body.nav-open .mobile-drawer {
    transform: translateX(0) !important;
    visibility: visible !important;
  }
  body.nav-open .drawer-backdrop {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    z-index: 999990 !important;
  }

  .mob-nav-head {
    display: flex; justify-content: space-between; align-items: center;
    padding: 16px 20px; border-bottom: 1px solid var(--line);
    background: #fdfbf7; flex-shrink: 0;
    padding-top: max(16px, env(safe-area-inset-top, 16px));
  }
  .mob-nav-close {
    background: #f4f4f5; border: 1px solid var(--line); font-size: 16px; cursor: pointer; color: var(--ink);
    width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    line-height: 1; transition: all .15s ease;
  }
  .mob-nav-close:hover { background: #e4e4e7; transform: scale(1.08); }

  .mob-nav-body {
    flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch;
    padding: 12px 16px;
  }
  .mob-nav-menu {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 4px;
  }
  .mob-nav-link {
    display: flex; justify-content: space-between; align-items: center;
    padding: 12px 14px; font-size: 14.5px; font-weight: 600; color: var(--ink);
    text-decoration: none; border-radius: 8px; transition: background .15s, color .15s;
  }
  .mob-nav-link:hover, .mob-nav-link.active {
    background: var(--paper-2); color: var(--brass);
  }
  .mob-link-pill {
    font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 20px;
    background: #f4f4f5; color: var(--ink-soft); letter-spacing: .4px;
  }
  .mob-link-pill.pill-hot { background: #fee2e2; color: #b91c1c; }
  .mob-link-pill.pill-new { background: #e0f2fe; color: #0369a1; }

  /* Mobile Accordion */
  .mob-has-accordion {
    border: 1px solid var(--line); border-radius: 10px;
    background: #fafafa; overflow: hidden; margin: 4px 0;
  }
  .mob-accordion-btn {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 12px 14px; font-size: 14.5px; font-weight: 700; color: var(--ink);
    background: transparent; border: 0; cursor: pointer; text-align: left;
  }
  .mob-accordion-icon {
    font-size: 16px; transition: transform .25s ease;
  }
  .mob-has-accordion.is-open .mob-accordion-icon {
    transform: rotate(180deg);
  }
  .mob-accordion-content {
    display: none; padding: 6px 10px 10px;
    flex-direction: column; gap: 6px;
    border-top: 1px dashed var(--line);
    background: #ffffff;
  }
  .mob-has-accordion.is-open .mob-accordion-content {
    display: flex;
  }
  .mob-sub-item {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 10px; border-radius: 6px; background: #fafafa;
    text-decoration: none; color: var(--ink); transition: background .15s;
  }
  .mob-sub-item:hover { background: #f4f4f5; }
  .mob-sub-emoji { font-size: 16px; width: 24px; text-align: center; }
  .mob-sub-text { flex: 1; min-width: 0; }
  .mob-sub-text strong { display: block; font-size: 13px; font-weight: 600; color: var(--ink); }
  .mob-sub-text small { display: block; font-size: 11px; color: var(--ink-soft); }
  .mob-sub-arr { font-size: 13px; color: var(--ink-soft); }

  /* Mobile Drawer Footer */
  .mob-nav-foot {
    flex-shrink: 0; padding: 14px 16px;
    padding-bottom: max(18px, env(safe-area-inset-bottom, 18px));
    border-top: 1px solid var(--line); background: #fafafa;
    display: flex; flex-direction: column; gap: 8px;
  }
  .mob-foot-action {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px; font-size: 13.5px; font-weight: 600;
    color: var(--ink); text-decoration: none; border-radius: 8px;
    background: #ffffff; border: 1px solid var(--line); transition: all .15s;
  }
  .mob-foot-action:hover { border-color: var(--ink); }
  .mob-foot-action.action-whatsapp {
    background: #f0fdf4; border-color: #bbf7d0; color: #15803d;
  }
}

body.nav-open .floating-pip-video,
body.drawer-open .floating-pip-video,
body.nav-open .mobile-bottom-nav,
body.drawer-open .mobile-bottom-nav {
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
  transition: opacity .2s ease, visibility .2s ease;
}

/* ---------------------------------- search overlay */
.search-overlay {
  position: absolute; inset: var(--header-h) 0 auto 0;
  background: #fff; border-bottom: 1px solid var(--line);
  padding: 26px 0 22px; box-shadow: var(--shadow); z-index: 45;
}
.search-form { display: flex; align-items: center; gap: 12px; border-bottom: 2px solid var(--ink); padding-bottom: 14px; }
.search-form input[type="search"] {
  flex: 1; background: none; border: 0; outline: 0;
  font: 400 20px var(--head); color: var(--ink);
}
.search-form input[type="search"]::-webkit-search-cancel-button { display: none; }
.search-quick { display: flex; align-items: center; gap: 16px; margin-top: 14px; flex-wrap: wrap; font-size: 13px; }
.search-quick-label { text-transform: uppercase; letter-spacing: 1px; font-size: 11px; color: var(--ink-soft); }
.search-suggest { margin-top: 10px; }
.suggest-item { display: flex; align-items: center; gap: 12px; padding: 8px 0; }
.suggest-item img { width: 46px; height: 58px; object-fit: cover; border-radius: 4px; }
.suggest-item span { font-size: 14px; }
.suggest-item .price { margin-left: auto; font-size: 13px; color: var(--ink-soft); white-space: nowrap; }

/* ---------------------------------- cart drawer (fully responsive & app-like) */
.drawer-backdrop {
  position: fixed; inset: 0; background: rgba(9, 9, 11, 0.65);
  backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px);
  z-index: 99990; opacity: 0; pointer-events: none; transition: opacity .28s ease;
}
.drawer-backdrop.is-open, body.drawer-open .drawer-backdrop, body.nav-open .drawer-backdrop {
  opacity: 1; pointer-events: auto;
}

body.drawer-open {
  overflow: hidden !important;
  touch-action: none;
}

.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(440px, 100vw); max-width: 100vw;
  height: 100vh; height: 100dvh;
  z-index: 99999;
  background: #ffffff;
  transform: translateX(100%);
  visibility: hidden; pointer-events: none;
  transition: transform .32s cubic-bezier(0.16, 1, 0.3, 1), visibility .32s ease;
  display: flex; flex-direction: column;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.22);
}
body.drawer-open .cart-drawer {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.drawer-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px; border-bottom: 1px solid var(--line);
  background: #ffffff; flex-shrink: 0;
  padding-top: max(18px, env(safe-area-inset-top, 18px));
}
.drawer-head h2 {
  font-size: 19px; font-weight: 700; margin: 0;
  color: var(--ink); font-family: var(--head);
}
.drawer-close {
  background: var(--paper-2); border: 0; width: 36px; height: 36px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 16px; cursor: pointer; color: var(--ink);
  transition: background .15s, transform .15s;
}
.drawer-close:hover { background: #e4e4e7; transform: scale(1.06); }

#drawer-body {
  flex: 1; min-height: 0;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  padding: 16px 20px 24px;
  display: flex; flex-direction: column;
}

/* Empty State inside Cart Drawer */
.empty-state.empty-cart {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 16px;
  margin: auto 0;
  width: 100%;
}
.empty-cart-icon {
  font-size: 52px;
  margin-bottom: 14px;
  line-height: 1;
}
.empty-state.empty-cart h3 {
  font-size: 20px;
  font-family: var(--head);
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
}
.empty-state.empty-cart p {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0 0 24px;
  max-width: 260px;
  line-height: 1.4;
}
.empty-state.empty-cart .btn {
  min-width: 200px;
}

/* Shipping Progress Bar */
.ship-progress {
  background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 8px;
  padding: 12px 14px; margin-bottom: 14px; flex-shrink: 0;
}
.ship-progress.is-unlocked { background: #ecfdf5; border-color: #a7f3d0; }
.ship-progress-text {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px; color: #166534; margin-bottom: 8px;
}
.ship-percent { font-weight: 700; font-size: 11px; background: #dcfce7; padding: 2px 6px; border-radius: 10px; }
.ship-bar { height: 6px; background: #dcfce7; border-radius: 3px; overflow: hidden; }
.ship-bar i { display: block; height: 100%; background: linear-gradient(90deg, #22c55e, #16a34a); border-radius: 3px; transition: width .3s ease; }

/* Offers Strip */
.drawer-offers-strip { margin-bottom: 14px; flex-shrink: 0; }
.drawer-offer-pill {
  background: #fffbeb; border: 1px dashed #fcd34d; border-radius: 6px;
  padding: 8px 12px; font-size: 12px; color: #92400e; text-align: center;
}

/* Cart Items List */
.drawer-items { display: flex; flex-direction: column; gap: 14px; }
.drawer-item {
  display: flex; gap: 14px; padding: 12px; background: var(--paper);
  border-radius: 8px; border: 1px solid var(--line);
}
.drawer-item-img {
  flex: 0 0 70px; height: 90px; border-radius: 6px; overflow: hidden;
  background: #f4f4f5; display: block;
}
.drawer-item-img img { width: 100%; height: 100%; object-fit: cover; }
.drawer-item-info { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.drawer-item-name {
  font-size: 13.5px; font-weight: 600; margin: 0 0 3px; line-height: 1.3;
}
.drawer-item-name a { color: var(--ink); text-decoration: none; }
.drawer-item-name a:hover { color: var(--brass); }
.drawer-item-var { font-size: 12px; color: var(--ink-soft); margin: 0 0 8px; }
.drawer-item-row {
  display: flex; justify-content: space-between; align-items: center; margin-top: auto;
}
.qty-stepper label { font-size: 12px; color: var(--ink-soft); }
.qty-stepper select {
  padding: 4px 8px; border: 1px solid var(--line); border-radius: 4px;
  background: #fff; font-size: 12.5px; font-weight: 600;
}
.drawer-item-total { font-size: 14px; font-weight: 700; color: var(--ink); }
.drawer-item-remove {
  background: none; border: 0; color: var(--sale); font-size: 11.5px;
  cursor: pointer; padding: 0; margin-top: 6px; align-self: flex-start; text-decoration: underline;
}

/* Frequently Bought Together Upsells */
.drawer-reco {
  margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--line);
  flex-shrink: 0;
}
.reco-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--ink-soft); margin: 0 0 10px;
}
.reco-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.reco-item {
  display: flex; gap: 8px; align-items: center; padding: 8px;
  background: var(--paper); border-radius: 6px; text-decoration: none; border: 1px solid var(--line);
}
.reco-item img { width: 40px; height: 50px; object-fit: cover; border-radius: 4px; }
.reco-meta { flex: 1; min-width: 0; }
.reco-name {
  display: block; font-size: 11.5px; font-weight: 600; color: var(--ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.reco-price { font-size: 11.5px; font-weight: 700; color: var(--brass); }

/* Drawer Footer */
.drawer-foot {
  margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line);
  background: #ffffff; flex-shrink: 0;
  padding-bottom: max(16px, env(safe-area-inset-bottom, 16px));
}
.drawer-summary {
  display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px;
}
.drawer-summary-row {
  display: flex; justify-content: space-between; font-size: 13.5px; color: var(--ink-soft);
}
.drawer-summary-total {
  font-size: 16px; font-weight: 700; color: var(--ink);
  padding-top: 8px; border-top: 1px solid var(--line); margin-top: 4px;
}
.drawer-summary-total .drawer-total { color: var(--indigo); }
.drawer-foot .btn { margin-top: 8px; }
.drawer-trust-badges {
  display: flex; justify-content: center; gap: 14px; margin-top: 12px;
  font-size: 11px; color: var(--ink-soft);
}

@media (max-width: 600px) {
  .cart-drawer {
    width: 100vw;
    max-width: 100vw;
    border-radius: 0;
  }
  .drawer-head {
    padding: 14px 18px;
  }
  #drawer-body {
    padding: 14px 16px 20px;
  }
  .reco-list {
    grid-template-columns: 1fr;
  }
}

/* ---------------------------------- flash / toast */
.flash {
  max-width: 640px; margin: 18px auto 0; padding: 13px 20px;
  border-radius: var(--radius); font-size: 14px; border: 1px solid;
}
.flash-success { background: #eef6ee; border-color: #cfe3cf; color: #2c5b2c; }
.flash-warn, .flash-error { background: #fbeef0; border-color: #f2d3d8; color: var(--sale); }
.toast {
  position: fixed; bottom: 26px; left: 50%; transform: translate(-50%, 16px); z-index: 120;
  background: var(--ink); color: #fff; padding: 13px 22px; border-radius: 32px;
  font-size: 14px; opacity: 0; pointer-events: none; transition: .25s; max-width: 90vw;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ---------------------------------- hero */
.hero { position: relative; min-height: 620px; display: flex; align-items: flex-end; overflow: hidden; background: var(--indigo-deep); }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(28,25,23,.05), rgba(28,25,23,.62)); }
.hero-content { position: relative; z-index: 2; padding-bottom: 64px; color: #fff; max-width: 640px; }
.eyebrow { font-size: 12px; text-transform: uppercase; letter-spacing: 2.4px; color: var(--brass); font-weight: 600; margin-bottom: 14px; }
.hero .eyebrow { color: #d8cdb8; }
.hero-title { font-size: clamp(38px, 6vw, 64px); font-weight: 500; margin-bottom: 14px; }
.hero-sub { font-size: 18px; opacity: .92; margin-bottom: 26px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------------------------------- marquee */
.marquee { display: flex; gap: 26px; justify-content: center; flex-wrap: wrap; padding: 18px 0; }
.marquee span { font-size: 12px; letter-spacing: 2.2px; text-transform: uppercase; color: var(--ink-soft); }

/* ---------------------------------- sections */
.section { padding: 64px 0; }
.section-tight { padding: 22px 0; }
.section-alt { background: var(--paper-2); }
.section-banner { background: var(--indigo-deep); color: #fff; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin-bottom: 30px; flex-wrap: wrap; }
.section-title { font-size: clamp(26px, 3vw, 36px); }
.banner-split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.banner-copy h2 { font-size: clamp(28px, 3.4vw, 42px); margin-bottom: 14px; }
.banner-copy p { opacity: .9; margin-bottom: 24px; }
.banner-media img { border-radius: var(--radius); box-shadow: var(--shadow); }

/* ---------------------------------- category cards */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 900px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
.cat-card { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/4; display: block; }
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.cat-card:hover img { transform: scale(1.04); }
.cat-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(28,25,23,.7)); }
.cat-label { position: absolute; left: 16px; right: 16px; bottom: 14px; color: #fff; display: flex; justify-content: space-between; align-items: baseline; }
.cat-label strong { font-family: var(--head); font-size: 20px; }
.cat-label em { font-style: normal; font-size: 12px; opacity: .85; }

/* ---------------------------------- product cards */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px 18px; }
@media (max-width: 1000px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
.product-card { position: relative; }
.card-image { position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: var(--radius); background: var(--paper-2); }
.card-link img { width: 100%; height: 100%; object-fit: cover; transition: opacity .3s, transform .5s; }
.card-link .img-hover { position: absolute; inset: 0; opacity: 0; }
.product-card:hover .img-hover { opacity: 1; }
.product-card:hover .img-main { transform: scale(1.03); }
.card-badges { position: absolute; top: 10px; left: 10px; display: flex; flex-direction: column; gap: 6px; z-index: 2; }
.badge {
  display: inline-block; font-size: 10.5px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
  padding: 4px 8px; border-radius: 3px;
}
.badge-sale, .badge-off { background: var(--sale); color: #fff; }
.badge-new { background: #fff; color: var(--ink); }
.badge-best-seller { background: var(--indigo); color: #fff; }
.badge-featured { background: var(--brass); color: #fff; }
.badge-limited { background: var(--ink); color: #fff; }
.card-wish {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  width: 34px; height: 34px; border-radius: 50%; background: #fff; border: 0;
  display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--ink);
  box-shadow: 0 2px 8px rgba(0,0,0,.12); transition: transform .15s;
}
.card-wish:hover { transform: scale(1.08); color: var(--sale); }
.card-wish.is-active { color: var(--sale); }
.card-quickadd {
  position: absolute; left: 8px; right: 8px; bottom: 8px; z-index: 2;
  background: rgba(255,255,255,.95); border: 0; border-radius: 4px;
  padding: 11px; font: 600 12px var(--body); letter-spacing: 1.2px; text-transform: uppercase; cursor: pointer;
  opacity: 0; transform: translateY(6px); transition: .2s; color: var(--ink);
}
.product-card:hover .card-quickadd { opacity: 1; transform: translateY(0); }
.card-meta { padding-top: 12px; }
.card-category { font-size: 11.5px; text-transform: uppercase; letter-spacing: 1.1px; color: var(--brass); margin: 2px 0 6px; }
.card-title { font-size: 15px; font-family: var(--body); font-weight: 600; margin: 0 0 2px; }
.card-colors { font-size: 12px; color: var(--ink-soft); margin: 0 0 6px; }
.card-price { font-size: 14px; }
.price-current { font-weight: 700; font-style: normal; color: var(--ink); }
.price-compare { color: var(--ink-soft); font-size: 12.5px; margin-right: 6px; }
.price-sale-discount { color: var(--sale); font-weight: 700; font-size: 12px; margin-left: 6px; }
.price-on-request { font-size: 12.5px; color: var(--sale); text-transform: uppercase; letter-spacing: .6px; font-weight: 600; }

/* ---------------------------------- empty state */
.empty-state { text-align: center; padding: 70px 24px; }
.empty-state.compact { padding: 50px 20px; }
.empty-state p { font-family: var(--head); font-size: 24px; margin-bottom: 8px; }
.empty-state span { color: var(--ink-soft); display: block; margin-bottom: 22px; }
.empty-cart { padding: 40px 0; }
.empty-cart p { font-size: 19px; }

/* ---------------------------------- page head */
.page-head { padding: 36px 0 26px; border-bottom: 1px solid var(--line); }
.page-head h1 { font-size: clamp(28px, 3.6vw, 44px); margin: 10px 0 6px; }
.page-sub { color: var(--ink-soft); max-width: 640px; }
.page-count { color: var(--ink-soft); font-size: 13px; }
.page-head-dark { background: var(--indigo-deep); color: #fff; border: 0; }
.page-head-dark h1 { color: #ffffff !important; }
.page-head-dark .page-sub { color: #d8cdb8 !important; }
.page-head-dark .breadcrumb,
.page-head-dark .breadcrumb a,
.page-head-dark .breadcrumb li,
.page-head-dark .breadcrumb li + li::before { color: #a1a1aa !important; }
.page-head-dark .breadcrumb a:hover { color: #ffffff !important; }
.page-head-dark .breadcrumb li[aria-current] { color: #ffffff !important; font-weight: 600; }

.breadcrumb ol { list-style: none; display: flex; gap: 10px; margin: 0; padding: 0; font-size: 12.5px; flex-wrap: wrap; }
.breadcrumb li { color: var(--ink-soft); display: flex; gap: 10px; }
.breadcrumb li + li::before { content: "›"; color: var(--ink-soft); }
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--indigo); }
.breadcrumb li[aria-current] { color: var(--ink); font-weight: 600; }

/* ---------------------------------- listing / filters */
.listing { display: grid; grid-template-columns: 240px 1fr; gap: 34px; padding-top: 26px; }
.filter-drawer-head { display: none; }
.filter-backdrop {
  display: none;
  position: fixed; inset: 0;
  background: rgba(9, 9, 11, 0.5);
  backdrop-filter: blur(4px);
  z-index: 98;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}

@media (max-width: 920px) {
  .listing { grid-template-columns: 1fr; }
  body.filter-open { overflow: hidden; }
  .filter-backdrop.is-open { display: block; opacity: 1; pointer-events: auto; }
  .filter-drawer-head {
    display: flex; justify-content: space-between; align-items: center;
    padding-bottom: 12px; margin-bottom: 6px; border-bottom: 1px solid var(--line);
  }
  .filter-drawer-head h3 { font-size: 18px; margin: 0; }
  .filter-close-btn { background: none; border: 0; font-size: 20px; color: var(--ink); cursor: pointer; padding: 4px 8px; line-height: 1; }
  .filter-drawer {
    display: block !important;
    position: fixed !important;
    top: 0; left: 0; bottom: 0;
    width: min(330px, 86vw) !important;
    background: #fff !important;
    z-index: 99 !important;
    padding: 20px 18px 80px !important;
    overflow-y: auto !important;
    transform: translateX(-100%) !important;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2) !important;
    border-radius: 0 !important;
  }
  .filter-drawer.is-open { transform: translateX(0) !important; }
}
.filter-drawer { align-self: start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; position: sticky; top: calc(var(--header-h) + 16px); }
.filter-group { padding: 16px 0; border-bottom: 1px solid var(--line); }
.filter-group h4 { font-family: var(--body); font-size: 12px; text-transform: uppercase; letter-spacing: 1.4px; margin-bottom: 12px; }
.filter-group label { display: flex; gap: 8px; padding: 5px 0; font-size: 14px; cursor: pointer; align-items: center; }
.swatch { flex: 0 0 16px; width: 16px; height: 16px; border-radius: 50%; border: 1px solid var(--line); }
.swatch-row em { margin-left: auto; color: var(--ink-soft); font-style: normal; font-size: 12px; }
.chip-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; }
.chip-grid label { padding: 0; }
.chip-grid label span { display: block; text-align: center; padding: 7px 0; border: 1px solid var(--line); border-radius: 4px; font-size: 12.5px; }
.chip-grid input:checked + span { background: var(--ink); color: #fff; border-color: var(--ink); }
.price-inputs { display: flex; gap: 8px; align-items: center; }
.price-inputs input { width: 100%; padding: 8px 10px; border: 1px solid var(--line); border-radius: 4px; font-size: 13px; }
.price-hint { font-size: 12px; color: var(--ink-soft); margin-top: 6px; }
.filter-drawer .btn { margin-top: 14px; }
.list-main {}

.listing-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; gap: 14px; flex-wrap: wrap; }
.btn-filter-toggle { display: none; }
@media (max-width: 920px) { .btn-filter-toggle { display: inline-flex; } }
.sort-select { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ink-soft); }
.sort-select select { background: #fff; border: 1px solid var(--line); border-radius: 4px; padding: 8px 10px; font-size: 13px; }

/* ---------------------------------- PDP */
.pdp { padding-top: 26px; }
.pdp-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; padding-top: 22px; }
@media (max-width: 920px) { .pdp-grid { grid-template-columns: 1fr; } }
.pdp-gallery { position: sticky; top: calc(var(--header-h) + 16px); align-self: start; }
@media (max-width: 920px) { .pdp-gallery { position: static; } }
.gallery-stage { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--paper-2); aspect-ratio: 4/5; }
.gallery-stage img { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; transition: transform .35s ease-out; }
.zoom-hint { position: absolute; bottom: 12px; left: 12px; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: rgba(28,25,23,.55); }
.gallery-thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.gallery-thumbs .thumb { width: 72px; height: 90px; padding: 0; border: 2px solid transparent; border-radius: 4px; overflow: hidden; cursor: pointer; background: var(--paper-2); }
.gallery-thumbs .thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs .thumb.is-active { border-color: var(--brass); }

.pdp-cat { text-transform: uppercase; letter-spacing: 1.6px; font-size: 12px; color: var(--brass); font-weight: 600; margin-bottom: 8px; }
.pdp-title { font-size: clamp(26px, 3vw, 36px); }
.pdp-sku { color: var(--ink-soft); font-size: 12.5px; margin-bottom: 16px; }
.pdp-price { margin-bottom: 18px; font-size: 20px; }
.pdp-price .price-current { font-size: 22px; }
.pdp-colors { margin-bottom: 18px; }
.field-label { font-size: 13px; font-weight: 600; margin-bottom: 10px; }
.color-swatches { display: flex; gap: 10px; }
.color-swatch {
  width: 30px; height: 30px; border-radius: 50%; border: 2px solid var(--line);
  background: var(--sw, #ddd); cursor: pointer; position: relative;
}
.color-swatch.is-active { border-color: var(--ink); box-shadow: 0 0 0 2px var(--paper), 0 0 0 4px var(--ink); }
.sizes-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.size-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.size-chip {
  min-width: 54px; padding: 11px 8px; text-align: center;
  border: 1px solid var(--line); border-radius: 4px; background: #fff;
  font: 600 13px var(--body); cursor: pointer; transition: .15s;
}
.size-chip:hover { border-color: var(--ink); }
.size-chip.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }
.size-chip.is-disabled { opacity: .35; cursor: not-allowed; }
.pdp-delivery { font-size: 13px; color: var(--ink-soft); margin: 18px 0; }
.pdp-delivery p { margin: 0; }
.pdp-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.pdp-actions .btn-lg { flex: 1; min-width: 180px; }
.atc-status { min-height: 18px; font-size: 13.5px; color: var(--sale); margin-top: 10px; }
.pdp-accordions { margin-top: 26px; border-top: 1px solid var(--line); }
.pdp-accordions details { border-bottom: 1px solid var(--line); }
.pdp-accordions summary { cursor: pointer; padding: 15px 2px; font-weight: 600; font-size: 14.5px; list-style: none; position: relative; }
.pdp-accordions summary::after { content: "+"; position: absolute; right: 4px; color: var(--ink-soft); }
.pdp-accordions details[open] summary::after { content: "–"; }
.accordion-body { padding: 0 4px 18px; }
.accordion-body p { margin-bottom: 8px; }
.content-required { color: var(--sale); font-size: 13px; border-left: 2px solid var(--brass); padding-left: 10px; }

/* ---------------------------------- modal ---------------------------------- */
[hidden] { display: none !important; }

.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(9, 9, 11, 0.72);
  backdrop-filter: blur(8px);
  z-index: 999;
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.modal-backdrop[hidden] {
  display: none !important;
}
.modal {
  background: #fff;
  border-radius: 12px;
  width: min(680px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
  animation: modal-pop .25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
@keyframes modal-pop {
  from { opacity: 0; transform: scale(0.96) translateY(12px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; border-bottom: 1px solid var(--line);
}
.modal-head h2 { font-size: 20px; margin: 0; font-family: var(--body); font-weight: 700; color: var(--ink); }
.modal-close {
  background: #f4f4f5; border: 0; width: 34px; height: 34px;
  border-radius: 50%; font-size: 15px; cursor: pointer; color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, transform .15s;
}
.modal-close:hover { background: #e4e4e7; transform: scale(1.06); }
.modal-body { padding: 24px; }
.size-table { width: 100%; border-collapse: collapse; font-size: 14px; margin: 14px 0; }
.size-table th, .size-table td { padding: 12px 10px; text-align: left; border-bottom: 1px solid var(--line); }
.size-table thead th { text-transform: uppercase; font-size: 11.5px; letter-spacing: 1px; color: var(--ink-soft); font-weight: 700; background: #fafaf9; }

/* ---------------------------------- cart page */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 36px;
  padding: 10px 0 60px;
  align-items: start;
}
.cart-table-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.cart-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
.cart-table th {
  text-align: left;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  padding: 14px 18px;
  background: var(--paper-2);
}
.cart-table td {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  vertical-align: middle;
}
.cart-product-cell {
  padding: 18px !important;
}
.cart-product {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.cart-product img {
  width: 76px;
  height: 98px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
.cart-product-info {
  flex: 1;
  min-width: 0;
}
.cart-product-name {
  font-weight: 600;
  color: var(--ink);
  font-size: 15px;
  text-decoration: none;
  display: block;
}
.cart-product-var {
  font-size: 12.5px;
  color: var(--ink-soft);
  margin: 3px 0 1px;
}
.cart-product-sku {
  font-size: 11px;
  color: #a1a1aa;
  margin: 0;
}
.cart-mob-meta {
  display: none;
}
.cart-qty {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  font-weight: 600;
}
.cart-remove {
  background: none;
  border: 0;
  color: var(--sale);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 6px;
}
.cart-remove:hover {
  text-decoration: underline;
}

.cart-summary {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  position: sticky;
  top: calc(var(--header-h) + 16px);
  box-shadow: var(--shadow-sm);
}
.cart-summary h2 {
  font-size: 20px;
  margin: 0 0 16px;
}

@media (max-width: 900px) {
  .cart-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@media (max-width: 640px) {
  .cart-desktop-only {
    display: none !important;
  }
  .cart-mob-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    padding-top: 8px;
    border-top: 1px dashed var(--line);
    flex-wrap: wrap;
  }
  .cart-mob-price {
    font-weight: 700;
    font-size: 15px;
    color: var(--ink);
  }
  .cart-mob-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
  }
  .cart-mob-actions label {
    font-size: 12px;
    color: var(--ink-soft);
  }
  .cart-mob-actions select {
    padding: 6px 8px;
    font-size: 13px;
  }
  .cart-table th {
    display: none;
  }
  .cart-table td {
    padding: 14px 12px !important;
  }
  .cart-summary {
    padding: 20px 16px;
  }
}

/* ---------------------------------- checkout */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 36px;
  padding: 10px 0 60px;
  align-items: start;
}
.checkout-mob-summary {
  display: none;
}
.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.checkout-section {
  border: 0;
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.checkout-section legend {
  font-family: var(--head);
  font-size: 20px;
  font-weight: 600;
  padding: 0 8px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-grid .span-2 {
  grid-column: span 2;
}
.field {
  display: block;
  margin-bottom: 2px;
}
.field span {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font: 400 14.5px var(--body);
  color: var(--ink);
  background: #fff;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--indigo);
}
.payment-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 14px 0;
}
.pay-option {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
  transition: .15s;
}
.pay-option:has(input:checked) {
  border-color: var(--indigo);
  background: #f7f9fd;
}
.pay-option small {
  display: block;
  color: var(--ink-soft);
  font-size: 12.5px;
}
.checkout-note {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 12px 0 0;
}
.checkout-trust {
  font-size: 13px;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 12px;
}
.checkout-summary {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  position: sticky;
  top: calc(var(--header-h) + 16px);
  box-shadow: var(--shadow-sm);
}
.checkout-summary h2 {
  font-size: 19px;
  margin-bottom: 16px;
}
.summary-item {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13.5px;
}
.summary-item img {
  width: 56px;
  height: 72px;
  object-fit: cover;
  border-radius: 4px;
}
.summary-item-name {
  font-weight: 600;
  margin: 0;
}
.summary-item-var {
  color: var(--ink-soft);
  font-size: 12px;
  margin: 2px 0;
}
.summary-item-price {
  font-weight: 600;
  margin: 0;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 7px 0;
}
.summary-total {
  border-top: 1px solid var(--line);
  margin-top: 10px;
  padding-top: 14px;
  font-weight: 700;
  font-size: 17px;
}

@media (max-width: 960px) {
  .checkout-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .checkout-mob-summary {
    display: block;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 4px;
  }
  .checkout-mob-summary summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    background: var(--paper-2);
    user-select: none;
  }
  .checkout-mob-summary-body {
    padding: 16px 18px;
    border-top: 1px solid var(--line);
  }
  .checkout-summary {
    display: none;
  }
  .checkout-section {
    padding: 18px 14px;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .form-grid .span-2 {
    grid-column: span 1;
  }
}
.form-errors { background: #fbeef0; border: 1px solid #f2d3d8; border-radius: 4px; padding: 12px 18px; margin-bottom: 16px; font-size: 13.5px; color: var(--sale); }
.form-errors ul { margin: 0; padding-left: 18px; }
.form-error { color: var(--sale); font-size: 14px; margin-bottom: 14px; }
.form-ok { background: #eef6ee; color: #2c5b2c; padding: 12px 16px; border-radius: 4px; font-size: 14px; }

/* ---------------------------------- order success */
.success-hero { text-align: center; padding: 80px 0 30px; }
.success-check { display: inline-flex; align-items: center; justify-content: center; width: 76px; height: 76px; border-radius: 50%; background: #eef6ee; color: #2c5b2c; margin-bottom: 18px; }
.success-hero h1 { font-size: 34px; }
.success-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 22px; }
.order-summary-card { max-width: 620px; margin: 30px auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.order-summary-card .summary-row { padding: 9px 0; }

/* ---------------------------------- account */
.account-layout { display: grid; grid-template-columns: 220px 1fr; gap: 40px; padding-top: 30px; align-items: start; }
@media (max-width: 860px) { .account-layout { grid-template-columns: 1fr; } }
.account-nav { display: flex; flex-direction: column; gap: 2px; position: sticky; top: calc(var(--header-h) + 16px); }
@media (max-width: 860px) { .account-nav { position: static; flex-direction: row; flex-wrap: wrap; } }
.account-nav a { padding: 11px 14px; border-radius: 6px; color: var(--ink); font-size: 14px; font-weight: 500; }
.account-nav a.is-active { background: var(--ink); color: #fff; }
.account-nav a:hover { background: var(--paper-2); }
.account-nav a.is-active:hover { background: var(--ink); color: #fff; }
.account-nav .admin-link { color: var(--brass); font-weight: 700; margin-top: 8px; }
.account-content { display: flex; flex-direction: column; gap: 24px; }
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 720px) { .stat-grid { grid-template-columns: 1fr 1fr; } }
.stat-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.stat-num { font-family: var(--head); font-size: 30px; display: block; }
.stat-label { font-size: 12.5px; text-transform: uppercase; letter-spacing: 1px; color: var(--ink-soft); }
.panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.panel h2 { font-size: 19px; margin-bottom: 14px; }
.auth-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; max-width: 460px; }
.auth-card h2 { font-size: 20px; margin-bottom: 16px; }
.auth-card .field { margin-bottom: 14px; }
.auth-card .btn { width: 100%; margin-top: 6px; }
.checkbox-label { display: flex; gap: 10px; align-items: center; font-size: 13.5px; margin: 10px 0 16px; cursor: pointer; }
.address-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; margin-bottom: 22px; }
.address-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; font-size: 13.5px; }
.address-card p { margin-bottom: 6px; }
.order-list { display: flex; flex-direction: column; gap: 14px; }
.order-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; }
.order-row { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 14px; }
.order-row + .order-row { margin-top: 10px; }
.order-items { border-top: 1px dashed var(--line); margin-top: 12px; padding-top: 12px; font-size: 13px; color: var(--ink-soft); }

/* ---------------------------------- contact / prose */
.contact-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 44px; padding-top: 34px; align-items: start; }
@media (max-width: 860px) { .contact-layout { grid-template-columns: 1fr; } }
.contact-info h3 { font-size: 20px; margin-bottom: 16px; }
.contact-info p { font-size: 14.5px; }
.contact-help { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.prose-section { padding: 40px 0 60px; }
.prose { max-width: 720px; }
.prose h2 { font-size: 26px; margin: 30px 0 12px; }
.prose .lede { font-size: 17px; color: var(--ink-soft); }
.steps { counter-reset: n; list-style: none; padding: 0; }
.steps li { position: relative; padding: 0 0 16px 40px; }
.steps li::before {
  counter-increment: n; content: counter(n);
  position: absolute; left: 0; top: 0; width: 26px; height: 26px; border-radius: 50%;
  background: var(--indigo); color: #fff; font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.value-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
@media (max-width: 720px) { .value-strip { grid-template-columns: 1fr; } }
.value-strip > div { border-top: 2px solid var(--brass); padding-top: 14px; }
.value-strip h4 { font-size: 17px; }
.value-strip p { color: var(--ink-soft); font-size: 14px; }

/* ---------------------------------- FAQ */
.faq-wrap { max-width: 760px; padding-top: 34px; }
.faq-cat { font-size: 20px; margin: 30px 0 12px; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 0 20px; }
.faq-item summary { cursor: pointer; padding: 17px 0; font-weight: 600; font-size: 15px; list-style: none; position: relative; padding-right: 24px; }
.faq-item summary::after { content: "+"; position: absolute; right: 0; color: var(--brass); font-size: 18px; }
.faq-item[open] summary::after { content: "–"; }
.faq-answer { padding: 0 0 18px; color: var(--ink-soft); font-size: 14.5px; }
.faq-cta { margin-top: 34px; text-align: center; border-top: 1px solid var(--line); padding-top: 26px; }

/* ---------------------------------- journal */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; padding-top: 14px; }
@media (max-width: 900px) { .post-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .post-grid { grid-template-columns: 1fr; } }
.post-card { display: block; color: var(--ink); }
.post-card img { aspect-ratio: 4/3.2; object-fit: cover; border-radius: var(--radius); margin-bottom: 14px; }
.post-card h3 { font-size: 20px; }
.post-card p { color: var(--ink-soft); font-size: 14px; }
.post-article { max-width: 760px; padding-top: 34px; }
.post-head { border-bottom: 1px solid var(--line); padding-bottom: 22px; margin-bottom: 22px; }
.post-date { color: var(--ink-soft); font-size: 13px; }
.post-hero { border-radius: var(--radius); margin-bottom: 26px; }
.post-head h1 { font-size: 34px; }
.post-excerpt { font-size: 17px; color: var(--ink-soft); }

/* ---------------------------------- newsletter sections */
.section-news { background: var(--indigo); color: #fff; }
.news-inner { text-align: center; max-width: 560px; }
.news-inner h2 { font-size: 30px; }
.news-inner p { opacity: .9; }
.newsletter-form { display: flex; gap: 10px; margin-top: 18px; }
.newsletter-form input { flex: 1; padding: 14px 16px; border-radius: 4px; border: 1px solid transparent; font-size: 14px; }
.newsletter-lg { max-width: 460px; margin: 0 auto; }
.newsletter-note { font-size: 12px; opacity: .8; margin-top: 12px; }

/* ---------------------------------- footer */
.site-footer { background: #16130f; color: #cfc7ba; margin-top: 0; padding: 56px 0 24px; font-size: 13.5px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.3fr; gap: 36px; padding-bottom: 40px; }
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.site-footer h4 { color: #fff; font-family: var(--body); font-size: 12px; text-transform: uppercase; letter-spacing: 1.6px; margin-bottom: 14px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: #cfc7ba; }
.site-footer a:hover { color: #fff; }
.footer-logo-img {
  height: 56px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
  margin-bottom: 14px;
}
@media (max-width: 768px) {
  .footer-logo-img {
    height: 44px !important;
    max-width: 200px !important;
    margin-bottom: 10px;
  }
}
.footer-social { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.social-icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.08); color: #cfc7ba;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.social-icon-btn:hover {
  background: var(--brass); color: #09090b;
  border-color: var(--brass);
  transform: translateY(-2px);
}
.footer-bottom { border-top: 1px solid #2b2620; padding-top: 20px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.footer-bottom p { margin: 0; }
.footer-links a { color: #cfc7ba; }
.footer-links a:hover { color: #fff; }
.footer-news .newsletter-form { margin-top: 8px; }
.footer-news input { background: #26211b; color: #fff; border-color: transparent; }

/* ---------------------------------- mobile bottom navigation bar */
.mobile-bottom-nav {
  display: none !important;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  z-index: 90;
  padding: 0 8px;
  justify-content: space-around;
  align-items: center;
}

.mob-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: #71717a;
  text-decoration: none;
  background: none;
  border: 0;
  padding: 6px 0;
  cursor: pointer;
  position: relative;
  font-family: var(--body);
  transition: color 0.15s ease, transform 0.15s ease;
}

.mob-nav-item span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.mob-nav-item svg {
  stroke: currentColor;
}

.mob-nav-item:hover,
.mob-nav-item.active {
  color: var(--ink);
}

.mob-nav-item.active svg {
  stroke: var(--brass);
  color: var(--brass);
}

.mob-badge {
  position: absolute;
  top: 2px;
  right: calc(50% - 16px);
  background: var(--sale);
  color: #fff;
  font-size: 9.5px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
  border-radius: 8px;
  padding: 0 3px;
  border: 1.5px solid #fff;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 60px;
  }
  .mobile-bottom-nav {
    display: flex !important;
  }
}

/* Sticky Mobile Add to Bag Bar (PDP) */
.sticky-mobile-cta {
  display: none !important;
}

@media (max-width: 768px) {
  .sticky-mobile-cta {
    display: flex !important;
    position: fixed;
    bottom: 60px;
    left: 0;
    right: 0;
    height: 56px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--line, #e2e8f0);
    box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.08);
    z-index: 89;
    padding: 0 16px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transform: translateY(140%);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  }
  body.has-sticky-cta .sticky-mobile-cta {
    transform: translateY(0);
  }
  body.has-sticky-cta.page-product {
    padding-bottom: 116px;
  }
}
.sticky-mobile-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
}
.sticky-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink, #0f172a);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--indigo, #1e3a8a);
}



/* ---------------------------------- misc */
.err-404 { font-size: clamp(80px, 18vw, 160px); font-family: var(--head); line-height: 1; margin: 0; }
:focus-visible { outline: 2px solid var(--brass); outline-offset: 2px; }
.admin-nav-link { font-weight: 700; }

/* ---------------------------------- account KPI / status */
.kpi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 26px; }
@media (max-width: 720px) { .kpi-grid { grid-template-columns: 1fr; } }
.kpi { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; display: flex; flex-direction: column; }
.kpi-num { font-family: var(--head); font-size: 30px; line-height: 1.1; }
.kpi span:last-child { font-size: 12.5px; text-transform: uppercase; letter-spacing: 1px; color: var(--ink-soft); margin-top: 6px; }
.status { display: inline-block; padding: 4px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; background: var(--paper-2); color: var(--ink-soft); }
.status-pending, .status-refunded { background: #fbf3e2; color: #8a6116; }
.status-confirmed, .status-delivered { background: #eef6ee; color: #2c5b2c; }
.status-shipped { background: #eef2fb; color: var(--indigo); }
.status-cancelled { background: #fbeef0; color: var(--sale); }
.center { text-align: center; display: block; }

/* ---------------------------------- order detail */
.order-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }
@media (max-width: 760px) { .order-detail-grid { grid-template-columns: 1fr; } }
.order-block { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.order-block h3 { font-family: var(--body); font-size: 12px; text-transform: uppercase; letter-spacing: 1.3px; color: var(--ink-soft); margin: 0 0 12px; }
.order-block h3:not(:first-child) { margin-top: 22px; }
.order-block .summary-item { flex-direction: row; }

/* ---------------------------------- cart page */
.cart-page { padding-top: 26px; }
.cart-table-wrap { overflow-x: auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.cart-product { display: flex; gap: 14px; align-items: flex-start; }
.cart-product img { width: 72px; height: 92px; object-fit: cover; border-radius: 4px; }
.cart-product-name { font-weight: 600; color: var(--ink); }
.cart-product-var { font-size: 12.5px; color: var(--ink-soft); margin: 2px 0; }
.cart-product-sku { font-size: 11.5px; color: var(--ink-soft); margin: 0; }
.cart-qty-select {}
.cart-line-total { font-weight: 600; }
.cart-summary { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; margin-top: 22px; max-width: 430px; margin-left: auto; }
.cart-summary h2 { font-size: 20px; }
.summary-discount { color: #2c5b2c; }
.coupon-form { display: flex; gap: 8px; margin: 14px 0; }
.coupon-form input { flex: 1; padding: 11px 12px; border: 1px solid var(--line); border-radius: 4px; font-size: 13.5px; }
.cart-page .ship-progress { margin: 14px 0 18px; }

/* ---------------------------------- auth */
.auth-wrap { max-width: 460px; margin: 0 auto; padding: 40px 0 70px; }
.auth-alt { font-size: 13.5px; text-align: center; margin-top: 16px; }

/* ---------------------------------- order success */
.success-block { max-width: 620px; margin: 0 auto; padding: 40px 0 70px; }
.success-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; text-align: center; }
.success-icon { display: inline-flex; align-items: center; justify-content: center; width: 64px; height: 64px; border-radius: 50%; background: #eef6ee; color: #2c5b2c; font-size: 28px; margin-bottom: 14px; }
.success-summary { text-align: left; margin: 22px 0; }
.success-card .summary-item { justify-content: flex-start; }

/* ---------------------------------- editorial promo banner (reference style) */
.section-editorial-promo { padding: 48px 0; }
.editorial-banner-box {
  background: radial-gradient(circle at 50% 50%, #fdfbf7 0%, #f4ede1 100%);
  border: 1px solid #e7dfd1;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 310px;
  position: relative;
  box-shadow: 0 16px 40px -10px rgba(18, 16, 14, 0.08);
}

.editorial-side-img {
  flex: 0 0 260px;
  height: 330px;
  position: relative;
}

.editorial-side-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.editorial-banner-box:hover .editorial-side-img img {
  transform: scale(1.03);
}

.editorial-side-img.left {
  clip-path: polygon(0 0, 100% 0, 84% 100%, 0 100%);
}

.editorial-side-img.right {
  clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%);
}

.editorial-badge-circle {
  position: absolute;
  top: 24%;
  right: -10px;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #dc2626;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.45);
  z-index: 5;
  line-height: 1.1;
  border: 2px solid #ffffff;
}

.editorial-badge-circle span {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.editorial-badge-circle strong {
  font-size: 18px;
  font-weight: 800;
}

.editorial-content {
  flex: 1;
  padding: 36px 28px;
  text-align: center;
  z-index: 2;
}

.editorial-sub {
  display: inline-block;
  font-size: 11.5px;
  font-family: var(--body);
  color: var(--brass);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.editorial-heading {
  font-family: var(--head);
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 700;
  color: #09090b;
  line-height: 1.18;
  max-width: 540px;
  margin: 0 auto 12px;
  letter-spacing: -0.4px;
}

.editorial-desc {
  font-size: 14px;
  color: #52525b;
  max-width: 480px;
  margin: 0 auto 20px;
  line-height: 1.5;
}

.editorial-btn-wrap {
  margin-top: 10px;
}

/* Reference Offset Shadow Box Button */
.btn-offset-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #09090b;
  color: #ffffff !important;
  padding: 13px 32px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none !important;
  border: 1.5px solid #09090b;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
}

.btn-offset-box:hover {
  background: #27272a;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

@media (max-width: 900px) {
  .editorial-banner-box {
    flex-direction: column;
    text-align: center;
    padding: 28px 16px;
  }
  .editorial-side-img {
    display: none;
  }
  .editorial-heading {
    font-size: 24px;
  }
}

/* ---------------------------------- split dual-banner editorial grid (reference style) */
.section-split-banners { padding: 40px 0; }
.split-banners-grid {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  gap: 24px;
}

.split-banner-card {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.split-banner-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px -8px rgba(0, 0, 0, 0.14);
}

/* Left Wide Card */
.banner-wide {
  background: linear-gradient(135deg, #09090b 0%, #18181b 60%, #27272a 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 38px 36px;
  min-height: 330px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.banner-wide .split-banner-blob {
  position: absolute;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.15) 0%, rgba(197, 160, 89, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

.banner-wide .blob-1 {
  width: 320px;
  height: 320px;
  top: -80px;
  right: 140px;
  border-radius: 50%;
}

.banner-wide .blob-2 {
  width: 240px;
  height: 240px;
  bottom: -60px;
  left: -20px;
  border-radius: 50%;
}

.split-banner-content {
  position: relative;
  z-index: 3;
  max-width: 330px;
}

.split-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--brass-light);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.split-title {
  font-family: var(--head);
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin: 0 0 10px;
  letter-spacing: -0.4px;
}

.split-desc {
  font-size: 13.5px;
  color: #d4d4d8;
  line-height: 1.5;
  margin: 0 0 22px;
}

.btn-navy-offset {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #09090b !important;
  padding: 12px 24px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none !important;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: all 0.2s ease;
}

.btn-navy-offset:hover {
  background: var(--brass-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.split-banner-visual {
  position: relative;
  z-index: 2;
  flex: 0 0 210px;
  height: 290px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.split-banner-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.split-watermark {
  position: absolute;
  right: -8px;
  bottom: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.3);
  writing-mode: vertical-rl;
  text-transform: uppercase;
}

/* Right Narrow Card */
.banner-narrow {
  background: #18181b;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.split-narrow-visual {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.split-narrow-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.banner-narrow:hover .split-narrow-visual img {
  transform: scale(1.05);
}

.split-badge-circle {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #dc2626;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(220, 38, 38, 0.4);
  line-height: 1.1;
  border: 2px solid #ffffff;
}

.split-badge-circle span {
  font-size: 13px;
  font-weight: 800;
}

.split-badge-circle strong {
  font-size: 8px;
  letter-spacing: 0.5px;
}

.split-narrow-content {
  padding: 18px 20px;
  background: #18181b;
  color: #ffffff;
}

.split-narrow-content .split-tag {
  color: #f87171;
  background: rgba(239, 68, 68, 0.15);
  margin-bottom: 6px;
}

.split-narrow-title {
  font-family: var(--head);
  font-size: 19px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px;
}

.split-text-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--brass-light);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: gap 0.2s ease, color 0.2s ease;
}

.split-text-link:hover {
  color: #ffffff;
  gap: 8px;
}

@media (max-width: 900px) {
  .split-banners-grid {
    grid-template-columns: 1fr;
  }
  .banner-wide {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .split-banner-content {
    max-width: 100%;
  }
}

/* ---------------------------------- warm rose editorial banner (reference style) */
.rose-editorial-banner {
  background: #b57a7a;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 260px;
  position: relative;
  box-shadow: 0 10px 30px rgba(181, 122, 122, 0.2);
  color: #fff;
}

.rose-editorial-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 12% 25%, rgba(255, 255, 255, 0.12) 0%, transparent 40%),
                    radial-gradient(circle at 88% 75%, rgba(255, 255, 255, 0.1) 0%, transparent 45%);
  pointer-events: none;
}

.rose-side-visual {
  flex: 0 0 240px;
  height: 300px;
  position: relative;
  z-index: 2;
}

.rose-side-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rose-side-visual.left {
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}

.rose-side-visual.right {
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

.rose-banner-content {
  flex: 1;
  padding: 30px 24px;
  text-align: center;
  position: relative;
  z-index: 3;
}

.rose-eyebrow {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: #e4ff54;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.rose-heading {
  font-family: var(--body);
  font-size: clamp(24px, 3.2vw, 38px);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
  margin: 0 0 8px;
  letter-spacing: -0.5px;
}

.rose-sub {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 20px;
}

.rose-btn-wrap {
  margin-top: 10px;
}

@media (max-width: 900px) {
  .rose-editorial-banner {
    flex-direction: column;
    padding: 30px 16px;
  }
  .rose-side-visual {
    display: none;
  }
}

/* ---------------------------------- signature lettermark style gallery (reference style) */
.section-lettermark-gallery {
  padding: 60px 0 30px;
  background: #ffffff;
}

.lettermark-head {
  max-width: 600px;
  margin: 0 auto 36px;
  text-align: center;
}

.script-cursive-eyebrow {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 22px;
  color: #c58686;
  margin-bottom: 6px;
}

.lettermark-title {
  font-family: var(--head);
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 500;
  color: #111827;
  letter-spacing: -0.5px;
  margin: 0 0 10px;
}

.lettermark-subtitle {
  font-size: 13.5px;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}

.lettermark-strip-container {
  width: 100%;
  overflow-x: auto;
  padding: 0 var(--gutter);
  scrollbar-width: thin;
}

.lettermark-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(130px, 1fr));
  gap: 12px;
  min-width: 900px;
  max-width: var(--container);
  margin: 0 auto;
}

.lettermark-item {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #09090b;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.lettermark-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.lettermark-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 9, 11, 0.2) 0%, rgba(9, 9, 11, 0.5) 50%, rgba(9, 9, 11, 0.88) 100%);
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lettermark-char {
  position: relative;
  z-index: 2;
  font-family: var(--head);
  font-size: clamp(38px, 4.5vw, 64px);
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.95), 0 2px 6px rgba(0, 0, 0, 0.9);
  letter-spacing: 1px;
  transition: transform 0.3s ease, color 0.3s ease;
  pointer-events: none;
}

.lettermark-hover {
  position: absolute;
  inset: 0;
  background: rgba(9, 9, 11, 0.78);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  z-index: 3;
  transition: opacity 0.25s ease;
  padding: 12px;
  text-align: center;
}

.lettermark-insta {
  font-size: 11px;
  color: var(--brass-light);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.lettermark-tag {
  font-size: 12.5px;
  color: #ffffff;
  font-weight: 600;
  margin-top: 4px;
}

.lettermark-item:hover img {
  transform: scale(1.12);
}

.lettermark-item:hover .lettermark-scrim {
  opacity: 0.4;
}

.lettermark-item:hover .lettermark-hover {
  opacity: 1;
}

.lettermark-item:hover .lettermark-char {
  transform: scale(1.18);
  color: var(--brass-light);
}

@media (max-width: 768px) {
  .lettermark-strip-container {
    padding: 0 16px 14px;
  }
  .lettermark-grid {
    grid-template-columns: repeat(8, 115px);
    gap: 8px;
  }
}

/* ---------------------------------- 4-column trust features strip (reference design) */
.trust-features-strip {
  background: #ffffff;
  padding: 48px 0 36px;
  border-top: 1px solid var(--line);
}

.trust-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-feature-card {
  background: #f8f6f2;
  border-radius: 8px;
  padding: 24px 20px;
  border: 1px solid #ede9e1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.trust-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
  background: #f3efe7;
}

.trust-feature-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.trust-feature-icon {
  color: #2b3a67;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-feature-header h4 {
  font-family: var(--body);
  font-size: 16px;
  font-weight: 700;
  color: #1c1c1e;
  margin: 0;
  letter-spacing: -0.2px;
}

.trust-feature-card p {
  font-size: 12.5px;
  color: #6b7280;
  line-height: 1.45;
  margin: 0;
}

@media (max-width: 992px) {
  .trust-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (max-width: 580px) {
  .trust-features-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .trust-feature-card {
    padding: 18px 16px;
  }
}

/* ---------------------------------- shoppable video reels carousel (reference design) */
.section-shoppable-reels {
  padding: 50px 0 40px;
  background: #fafaf9;
}

.shoppable-reels-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
  position: relative;
}

.reels-nav-controls {
  display: flex;
  gap: 8px;
  position: absolute;
  right: 0;
  bottom: 4px;
}

.reels-nav-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.15s ease;
}

.reels-nav-btn:hover {
  background: var(--ink);
  color: #ffffff;
  border-color: var(--ink);
}

.shoppable-reels-container {
  width: 100%;
  overflow-x: auto;
  padding: 10px var(--gutter) 24px;
  scrollbar-width: thin;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.shoppable-reels-track {
  display: flex;
  gap: 16px;
  min-width: min-content;
  max-width: var(--container);
  margin: 0 auto;
}

.shoppable-reel-card {
  flex: 0 0 200px;
  width: 200px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: #18181b;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.shoppable-reel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}

.reel-media-wrap {
  position: relative;
  width: 100%;
  height: 320px;
  display: block;
}

.reel-media-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.shoppable-reel-card:hover .reel-media-wrap img {
  transform: scale(1.05);
}

.reel-top-bar {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 5;
}

.reel-user-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  color: #ffffff;
  padding: 4px 8px;
  border-radius: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.reel-bag-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.reel-bag-icon:hover {
  background: var(--brass);
  color: #ffffff;
  transform: scale(1.1);
}

.reel-center-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  color: #1c1c1e;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 3px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  z-index: 4;
  transition: transform 0.2s ease, background 0.2s ease;
}

.shoppable-reel-card:hover .reel-center-play {
  transform: translate(-50%, -50%) scale(1.12);
  background: #ffffff;
}

.reel-bottom-scrim {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.88) 100%);
  padding: 30px 12px 12px;
  z-index: 5;
}

.reel-caption-text {
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 8px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.reel-product-chip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 6px;
  padding: 5px 8px;
  font-size: 11px;
}

.chip-name {
  font-weight: 700;
  color: #1c1c1e;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 110px;
}

.chip-price {
  font-weight: 800;
  color: var(--indigo);
}

@media (max-width: 768px) {
  .reels-nav-controls {
    display: none;
  }
  .shoppable-reel-card {
    flex: 0 0 160px;
    width: 160px;
  }
  .reel-media-wrap {
    height: 260px;
  }
}

/* ---------------------------------- modern editorial about us page (bonkers corner style) */
.about-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #111827;
  padding: 60px 0 50px;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.about-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: brightness(0.8);
}

.about-hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 9, 11, 0.75) 0%, rgba(9, 9, 11, 0.92) 100%);
}

.about-hero-content {
  position: relative;
  z-index: 3;
  color: #ffffff;
}

.about-hero-content .breadcrumb,
.about-hero-content .breadcrumb a,
.about-hero-content .breadcrumb li,
.about-hero-content .breadcrumb li + li::before {
  color: #a1a1aa !important;
}

.about-hero-content .breadcrumb li[aria-current] {
  color: #ffffff !important;
}

.about-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #f59e0b;
  margin: 12px 0 8px;
}

.about-hero-title {
  font-family: var(--head);
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 600;
  color: #ffffff !important;
  line-height: 1.15;
  margin: 0 0 14px;
}

.about-hero-subtitle {
  font-size: clamp(15px, 1.8vw, 18px);
  color: #e4e4e7;
  max-width: 680px;
  line-height: 1.55;
  margin: 0;
}

/* 2. Story Section */
.about-story-section { padding: 60px 0; }
.about-story-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-section-heading {
  font-family: var(--head);
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 600;
  color: #111827;
  line-height: 1.2;
  margin: 8px 0 20px;
}

.about-quote-box {
  background: #f4f4f2;
  border-left: 3px solid var(--brass);
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 20px;
}

.quote-text {
  font-family: var(--head);
  font-style: italic;
  font-size: 16px;
  color: #27272a;
  line-height: 1.5;
  margin: 0;
}

.prose-p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.65;
  margin-bottom: 16px;
}

.about-author-signature {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.sig-name {
  font-family: var(--head);
  font-size: 17px;
  font-weight: 700;
  color: #111827;
}

.sig-role {
  font-size: 12.5px;
  color: #6b7280;
  margin-top: 2px;
}

.story-img-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  height: 480px;
}

.story-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-floating-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(17, 24, 39, 0.88);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #ffffff;
}

.badge-num {
  font-size: 24px;
  font-weight: 800;
  color: var(--brass);
}

.badge-lbl {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.3;
}

/* 3. KPI Section */
.about-kpi-section {
  background: #18181b;
  padding: 50px 0;
  color: #ffffff;
}

.about-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.kpi-box strong {
  display: block;
  font-family: var(--head);
  font-size: clamp(32px, 3.8vw, 48px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.kpi-box span {
  font-size: 13px;
  color: #a1a1aa;
  font-weight: 500;
  line-height: 1.35;
}

/* 4. Fit Pillars Grid */
.about-pillars-section { padding: 70px 0; background: #ffffff; }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pillar-card {
  background: #fcfbfa;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.pillar-num {
  font-family: var(--head);
  font-size: 28px;
  font-weight: 700;
  color: var(--brass);
  margin-bottom: 12px;
  opacity: 0.85;
}

.pillar-card h3 {
  font-family: var(--body);
  font-size: 16.5px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 10px;
  line-height: 1.3;
}

.pillar-card p {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}

/* 5. Studio Showroom Card */
.about-studio-section { padding: 40px 0 70px; }
.studio-card-box {
  background: #f8f6f2;
  border: 1px solid #ede9e1;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.studio-content {
  flex: 1.2;
  padding: 44px 40px;
}

.studio-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #b94b4b;
  margin-bottom: 8px;
}

.studio-title {
  font-family: var(--head);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  color: #111827;
  margin: 0 0 14px;
}

.studio-address {
  font-size: 14.5px;
  color: #374151;
  line-height: 1.55;
  margin-bottom: 8px;
}

.studio-hours {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 22px;
}

.studio-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.studio-visual {
  flex: 1;
  height: 360px;
}

.studio-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 960px) {
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .story-img-wrapper {
    height: 360px;
  }
  .about-kpi-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .studio-card-box {
    flex-direction: column;
  }
  .studio-content {
    padding: 30px 24px;
  }
  .studio-visual {
    width: 100%;
    height: 240px;
  }
}

@media (max-width: 580px) {
  .about-kpi-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .pillars-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------------------------------- glowing squircle category stories (reference design) */
.section-stories {
  padding: 24px 0 16px;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.stories-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.stories-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 14px 10px 18px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  scroll-behavior: smooth;
  justify-content: center;
}

.stories-scroll::-webkit-scrollbar {
  display: none;
}

.glow-story-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex: 0 0 auto;
  transition: transform 0.2s ease;
}

.glow-squircle-box {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  background: #ffffff;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.9);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
}

.glow-squircle-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

/* Ambient Neon Glow Color Variations */
.glow-rose {
  box-shadow: 0 8px 22px -2px rgba(244, 114, 182, 0.55), 0 0 0 1px rgba(244, 114, 182, 0.2);
}
.glow-purple {
  box-shadow: 0 8px 22px -2px rgba(192, 132, 252, 0.55), 0 0 0 1px rgba(192, 132, 252, 0.2);
}
.glow-coral {
  box-shadow: 0 8px 22px -2px rgba(251, 146, 60, 0.55), 0 0 0 1px rgba(251, 146, 60, 0.2);
}
.glow-blue {
  box-shadow: 0 8px 22px -2px rgba(56, 189, 248, 0.55), 0 0 0 1px rgba(56, 189, 248, 0.2);
}
.glow-mint {
  box-shadow: 0 8px 22px -2px rgba(52, 211, 153, 0.55), 0 0 0 1px rgba(52, 211, 153, 0.2);
}
.glow-indigo {
  box-shadow: 0 8px 22px -2px rgba(129, 140, 248, 0.55), 0 0 0 1px rgba(129, 140, 248, 0.2);
}

.glow-story-card:hover .glow-squircle-box {
  transform: translateY(-4px) scale(1.05);
}

.glow-story-card:hover .glow-squircle-box.glow-rose {
  box-shadow: 0 12px 28px rgba(244, 114, 182, 0.7);
}
.glow-story-card:hover .glow-squircle-box.glow-purple {
  box-shadow: 0 12px 28px rgba(192, 132, 252, 0.7);
}
.glow-story-card:hover .glow-squircle-box.glow-coral {
  box-shadow: 0 12px 28px rgba(251, 146, 60, 0.7);
}
.glow-story-card:hover .glow-squircle-box.glow-blue {
  box-shadow: 0 12px 28px rgba(56, 189, 248, 0.7);
}
.glow-story-card:hover .glow-squircle-box.glow-mint {
  box-shadow: 0 12px 28px rgba(52, 211, 153, 0.7);
}
.glow-story-card:hover .glow-squircle-box.glow-indigo {
  box-shadow: 0 12px 28px rgba(129, 140, 248, 0.7);
}

.glow-story-card:hover img {
  transform: scale(1.08);
}

.glow-story-title {
  font-family: var(--body);
  font-size: 11.5px;
  font-weight: 700;
  color: #1c1c1e;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.15s ease;
}

.glow-story-card:hover .glow-story-title {
  color: var(--brass);
}

.stories-nav-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
  z-index: 5;
  transition: all 0.15s ease;
}

.stories-nav-btn:hover {
  background: var(--ink);
  color: #fff;
}

@media (max-width: 768px) {
  .stories-scroll {
    justify-content: flex-start;
    gap: 16px;
    padding: 10px 4px 14px;
  }
  .glow-squircle-box {
    width: 76px;
    height: 76px;
    border-radius: 18px;
  }
  .glow-story-title {
    font-size: 10px;
    letter-spacing: 0.3px;
  }
  .stories-nav-btn {
    display: none;
  }
}

/* ============================================================
   STYLONES D2C UPGRADE — Modern Fashion Component Styles
   Inspired by The Souled Store, XYXX, Clovia, Nobero, Snitch
   ============================================================ */

/* 1. Multi-Banner Hero Slider */
.hero-slider-wrap {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: #12100e;
}
.hero-slides-track {
  position: relative;
  width: 100%;
  min-height: 640px;
}
.hero-slide {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity .6s cubic-bezier(0.16, 1, 0.3, 1), transform .6s cubic-bezier(0.16, 1, 0.3, 1);
  transform: scale(1.02);
  z-index: 1;
}
.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
  z-index: 2;
}
.hero-media { position: absolute; inset: 0; z-index: 1; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center center; }
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(14,12,10,.88) 0%, rgba(14,12,10,.62) 48%, rgba(14,12,10,.18) 100%);
}
@media (max-width: 768px) {
  .hero-slider-wrap, .hero-slides-track { min-height: 560px; }
  .hero-scrim { background: linear-gradient(180deg, rgba(18,16,14,.4) 0%, rgba(18,16,14,.88) 75%, rgba(18,16,14,.98) 100%); }
  .hero-content { margin-top: auto; padding-bottom: 44px; }
}
.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero-badge-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.14); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.22);
  padding: 6px 14px; border-radius: 30px; font-size: 12.5px;
  letter-spacing: .6px; text-transform: uppercase; font-weight: 600;
  color: #f7e3b5; margin-bottom: 18px;
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulse-green 1.8s infinite;
}
@keyframes pulse-green {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}
.hero-title { font-size: clamp(34px, 5.2vw, 54px); font-family: var(--head); color: #fff; line-height: 1.08; margin-bottom: 14px; }
.hero-sub { font-size: clamp(15px, 1.8vw, 18px); color: rgba(255,255,255,.88); margin-bottom: 24px; line-height: 1.5; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-actions .btn-lg { padding: 16px 30px; font-size: 14px; }
.btn-ghost-light {
  background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.6);
  backdrop-filter: blur(4px);
}
.btn-ghost-light:hover { background: rgba(255,255,255,.15); color: #fff; border-color: #fff; }

.hero-metrics {
  display: flex; align-items: center; gap: 18px;
  background: rgba(18,16,14,.6); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15);
  padding: 12px 20px; border-radius: 8px; width: fit-content;
}
.metric-item { display: flex; flex-direction: column; }
.metric-item strong { font-size: 15px; color: #fff; }
.metric-item span { font-size: 11px; color: #cfc7ba; text-transform: uppercase; letter-spacing: .5px; }
.metric-divider { width: 1px; height: 26px; background: rgba(255,255,255,.2); }

/* Slider Navigation Controls */
.hero-slider-arrows {
  position: absolute; inset: 50% 20px auto 20px; transform: translateY(-50%);
  display: flex; justify-content: space-between; pointer-events: none; z-index: 10;
}
.hero-arrow-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.2); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.4); color: #fff;
  font-size: 18px; cursor: pointer; pointer-events: auto;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
}
.hero-arrow-btn:hover { background: rgba(255,255,255,.45); transform: scale(1.08); }
@media (max-width: 768px) { .hero-slider-arrows { display: none; } }

.hero-dots {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.hero-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.4); border: 0; cursor: pointer;
  transition: width .25s ease, background .25s ease, border-radius .25s;
}
.hero-dot.is-active {
  width: 28px; border-radius: 10px; background: var(--brass-light);
}

/* 2. Marquee Ticker */
.marquee-strip {
  background: var(--ink); color: #f5eedf;
  padding: 12px 0; overflow: hidden; border-bottom: 1px solid #2a2620;
}
.marquee-track {
  display: flex; gap: 28px; white-space: nowrap;
  animation: marquee-scroll 24s linear infinite;
  font-size: 13px; font-weight: 600; letter-spacing: .9px; text-transform: uppercase;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 6px; }
.marquee-track strong { color: var(--brass); }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* 3. Category Stories Bar / Collection Carousel */
.section-stories { padding: 22px 0 12px; position: relative; background: #fff; border-bottom: 1px solid var(--line); }
.stories-wrapper { position: relative; display: flex; align-items: center; }
.stories-scroll {
  display: flex; gap: 18px; overflow-x: auto;
  padding: 6px 4px 10px; scrollbar-width: none;
  scroll-behavior: smooth;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}
.stories-scroll::-webkit-scrollbar { display: none; }
.stories-nav-btn {
  position: absolute; z-index: 10;
  width: 34px; height: 34px; border-radius: 50%;
  background: #fff; border: 1px solid var(--line);
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--ink); cursor: pointer;
  transition: transform .15s, background .15s, box-shadow .15s;
  top: 50%; transform: translateY(-50%);
}
.stories-nav-btn.prev { left: -12px; }
.stories-nav-btn.next { right: -12px; }
.stories-nav-btn:hover { background: var(--paper-2); transform: translateY(-50%) scale(1.08); }

.story-circle-card {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; text-decoration: none; color: var(--ink);
  flex-shrink: 0; width: 100px; transition: transform .2s ease;
}
.story-circle-card:hover { transform: translateY(-4px); }
.story-avatar-ring {
  width: 80px; height: 80px; border-radius: 50%;
  padding: 2.5px; background: linear-gradient(135deg, var(--brass), var(--indigo));
  box-shadow: 0 6px 16px rgba(0,0,0,.08);
  margin-bottom: 8px; transition: box-shadow .2s ease;
}
.story-circle-card:hover .story-avatar-ring {
  box-shadow: 0 8px 24px rgba(176,138,62,.3);
}
.story-avatar-ring img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
  border: 2px solid #fff;
}
.story-title { font-size: 12.5px; font-weight: 600; line-height: 1.2; }
.story-count { font-size: 11px; color: var(--ink-soft); }

@media (max-width: 768px) {
  .section-stories { padding: 14px 0 8px; }
  .stories-scroll {
    gap: 8px;
    padding: 4px 4px 6px;
  }
  .stories-nav-btn {
    width: 26px; height: 26px; font-size: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,.15);
  }
  .stories-nav-btn.prev { left: -6px; }
  .stories-nav-btn.next { right: -6px; }
  .story-circle-card {
    flex: 0 0 calc((100% - 24px) / 4);
    min-width: 68px;
    max-width: 82px;
    width: auto;
  }
  .story-avatar-ring {
    width: 58px; height: 58px;
    padding: 2px;
    margin-bottom: 5px;
  }
  .story-title {
    font-size: 10.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
  }
  .story-count {
    font-size: 9.5px;
  }
}

/* 4. Shoppable Video Reels Carousel */
.section-video-reels { padding: 54px 0; background: #fafafa; }
.video-reels-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 32px;
}
@media (max-width: 900px) { .video-reels-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
.reel-card {
  background: #fff; border-radius: 12px; overflow: hidden;
  box-shadow: 0 8px 24px -4px rgba(0,0,0,.08);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.reel-card:hover { transform: translateY(-6px); box-shadow: 0 16px 36px -6px rgba(0,0,0,.15); }
.reel-video-box {
  position: relative; aspect-ratio: 9/14; overflow: hidden; background: #000;
}
.reel-poster { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.reel-card:hover .reel-poster { transform: scale(1.05); }
.reel-play-badge {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.85); backdrop-filter: blur(6px);
  color: var(--ink); display: flex; align-items: center; justify-content: center;
  font-size: 18px; box-shadow: 0 4px 16px rgba(0,0,0,.3);
  transition: transform .2s, background .2s;
}
.reel-card:hover .reel-play-badge { transform: translate(-50%, -50%) scale(1.12); background: #fff; }
.reel-live-tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(0,0,0,.65); backdrop-filter: blur(4px);
  color: #fff; font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 20px; letter-spacing: .5px;
}
.reel-shop-bar {
  padding: 14px; display: flex; justify-content: space-between; align-items: center; gap: 8px;
  background: #fff; border-top: 1px solid var(--line);
}
.reel-product-meta { display: flex; flex-direction: column; }
.reel-product-meta strong { font-size: 13.5px; color: var(--ink); }
.reel-product-meta span { font-size: 12.5px; font-weight: 700; color: var(--indigo); }
.reel-product-meta del { color: var(--ink-soft); font-size: 11px; font-weight: 400; margin-left: 4px; }
.reel-shop-bar .btn { padding: 8px 14px; font-size: 11.5px; }

/* Shoppable Reel Vertical Video Modal */
.reel-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.reel-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
}
.reel-modal-dialog {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 400px;
  height: 85vh;
  max-height: 720px;
  background: #000;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
}
.reel-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, background 0.2s;
}
.reel-modal-close:hover {
  background: rgba(0,0,0,0.9);
  transform: scale(1.1);
}
.reel-video-stage {
  flex: 1;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.reel-video-stage iframe,
.reel-video-stage video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}
.reel-modal-product-dock {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0.6) 70%, transparent);
  z-index: 5;
}
.reel-dock-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 8px 12px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.reel-dock-thumb {
  width: 44px;
  height: 56px;
  object-fit: cover;
  border-radius: 6px;
}
.reel-dock-info {
  flex: 1;
  min-width: 0;
}
.reel-dock-title {
  font-size: 12.5px;
  font-weight: 700;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.reel-dock-price {
  font-size: 13px;
  font-weight: 700;
  color: #1e3a8a;
}
.reel-dock-btn {
  padding: 8px 14px;
  font-size: 12px;
  border-radius: 8px;
  white-space: nowrap;
}

/* 5. Floating Shoppable PIP Video Widget */
.floating-pip-video {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  animation: pip-enter 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  transition: transform 0.2s ease;
}
.floating-pip-video:hover {
  transform: translateY(-4px) scale(1.03);
}
@keyframes pip-enter {
  from { opacity: 0; transform: translateY(30px) scale(0.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.pip-video-inner {
  position: relative;
  width: 145px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.28);
  border: 1.5px solid rgba(0,0,0,0.08);
}
.pip-close-btn {
  position: absolute;
  top: 6px;
  right: 6px;
  z-index: 10;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0,0,0,0.7);
  color: #fff;
  border: 0;
  font-size: 11px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.pip-close-btn:hover {
  background: #ef4444;
}
.pip-media {
  position: relative;
  aspect-ratio: 9/13;
  overflow: hidden;
  background: #000;
}
.pip-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pip-live-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 9.5px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.pip-pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulse-green 1.8s infinite;
}
.pip-play-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.pip-meta {
  padding: 8px 10px;
  text-align: center;
  background: #fff;
}
.pip-title {
  display: block;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2px;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pip-shop-link {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  color: #1e3a8a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

@media (max-width: 768px) {
  .floating-pip-video {
    bottom: 76px;
    right: 14px;
  }
  .pip-video-inner {
    width: 120px;
  }
}
.marquee-track {
  display: flex; gap: 28px; white-space: nowrap;
  animation: marquee-scroll 24s linear infinite;
  font-size: 13px; font-weight: 600; letter-spacing: .9px; text-transform: uppercase;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 6px; }
.marquee-track strong { color: var(--brass); }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Circular Collection & Category Stories Strip */
.collection-circles-strip {
  background: #ffffff;
  border-bottom: 1px solid #f1f5f9;
  padding: 16px 0 14px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}
.collection-circles-strip {
  background: #fdfbf7;
  border-top: 1px solid #ede8df;
  border-bottom: 1px solid #ede8df;
  padding: 20px 0 18px;
  margin-bottom: 28px;
  width: 100%;
}
.circles-container-rel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.collection-circles-track {
  display: flex;
  gap: clamp(16px, 3.2vw, 44px);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 6px 16px;
  width: 100%;
  scroll-behavior: smooth;
  justify-content: center;
}
.collection-circles-track::-webkit-scrollbar {
  display: none;
}
.collection-circle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  min-width: 96px;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}
.collection-circle-item:hover {
  transform: translateY(-4px);
}
.circle-ring-box {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  padding: 3.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.collection-circle-item:hover .circle-ring-box {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
  transform: scale(1.05);
}
.circle-img-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: #ffffff;
  border: 2.5px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.circle-img-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.25s ease;
}
.collection-circle-item:hover .circle-img-inner img {
  transform: scale(1.08);
}
.circle-label {
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
  text-align: center;
  line-height: 1.25;
  margin-top: 10px;
  max-width: 110px;
  word-break: normal;
  transition: color 0.15s;
}
.collection-circle-item:hover .circle-label,
.collection-circle-item.is-active .circle-label {
  color: var(--indigo, #1e3a8a);
  font-weight: 700;
}
.collection-circle-item.is-active .circle-ring-box {
  box-shadow: 0 0 0 3.5px #1e3a8a, 0 8px 22px rgba(30, 58, 138, 0.28);
}
.circle-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
  color: #0f172a;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
}
.circle-nav-btn:hover {
  background: #f8fafc;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.circle-nav-btn.prev {
  left: 0;
}
.circle-nav-btn.next {
  right: 0;
}

@media (min-width: 992px) {
  .circle-nav-btn {
    display: none;
  }
}
@media (max-width: 991px) {
  .collection-circles-track {
    justify-content: flex-start;
  }
}
@media (max-width: 768px) {
  .collection-circles-strip {
    padding: 12px 0 10px;
    margin-bottom: 16px;
  }
  .collection-circles-track {
    padding: 4px clamp(16px, 4.5vw, 22px);
    gap: 12px;
  }
  .circle-nav-btn {
    display: none;
  }
  .circle-ring-box {
    width: 68px;
    height: 68px;
    padding: 2.5px;
  }
  .collection-circle-item {
    min-width: 74px;
  }
  .circle-label {
    font-size: 11px;
    margin-top: 5px;
    max-width: 78px;
  }
}

/* Automatic Running Black & Yellow Marquee Ticker Strip */
.pdp-marquee-strip {
  background: #000000;
  color: #facc15;
  padding: 12px 0;
  overflow: hidden;
  border-top: 1px solid #1f2937;
  border-bottom: 1px solid #1f2937;
  white-space: nowrap;
  width: 100%;
  margin: 36px 0 28px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.pdp-marquee-track {
  display: inline-flex;
  gap: 36px;
  white-space: nowrap;
  animation: pdp-marquee-scroll 22s linear infinite;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.pdp-marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #facc15;
}
.pdp-marquee-track .ticker-dot {
  color: rgba(250, 204, 21, 0.4);
  font-size: 14px;
}
@keyframes pdp-marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.pdp-marquee-strip:hover .pdp-marquee-track {
  animation-play-state: paused;
}

/* 4. Curated Collection Tabs */
.section-curated { padding: 48px 0; }
.section-head-tabs {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 20px; margin-bottom: 28px; flex-wrap: wrap;
}
.collection-tabs {
  display: flex; gap: 8px; background: #fff; padding: 4px;
  border-radius: 30px; border: 1px solid var(--line);
}
.tab-btn {
  background: transparent; border: 0; padding: 9px 18px;
  border-radius: 24px; font-size: 13.5px; font-weight: 600;
  color: var(--ink-soft); cursor: pointer; transition: .18s ease;
}
.tab-btn.is-active {
  background: var(--ink); color: #fff;
  box-shadow: 0 4px 12px rgba(28,25,23,.18);
}
.tab-content { display: none; }
.tab-content.is-active { display: block; animation: fade-in .3s ease; }
@keyframes fade-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

/* 5. Product Card Upgrades */
.product-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex; flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px -12px rgba(28,25,23,.12);
  border-color: #d1c7b7;
}
.card-image { position: relative; aspect-ratio: 4/5; overflow: hidden; background: #f3efe9; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card-image:hover .img-hover { opacity: 1; }
.card-image:hover .img-main { transform: scale(1.04); }
.card-badges { position: absolute; top: 10px; left: 10px; z-index: 2; display: flex; flex-direction: column; gap: 5px; }
.badge {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px;
  padding: 4px 8px; border-radius: 3px; line-height: 1;
}
.badge-best-seller { background: #12100e; color: #fff; }
.badge-new { background: var(--indigo); color: #fff; }
.badge-sale { background: #b91c1c; color: #fff; }
.badge-off { background: #0f766e; color: #fff; }
.card-wish {
  position: absolute; top: 10px; right: 10px; z-index: 3;
  width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.9);
  backdrop-filter: blur(4px); border: 0; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: transform .15s, background .15s;
}
.card-wish:hover { transform: scale(1.1); background: #fff; }
.card-wish.is-active svg { fill: #dc2626; stroke: #dc2626; }
.card-quick-actions {
  position: absolute; inset: auto 10px 10px 10px; z-index: 3;
  opacity: 0; transform: translateY(8px); transition: .2s ease;
}
.product-card:hover .card-quick-actions { opacity: 1; transform: translateY(0); }
.card-quickadd {
  width: 100%; background: rgba(255,255,255,.95); backdrop-filter: blur(6px);
  border: 1px solid rgba(0,0,0,.08); color: var(--ink); padding: 10px 14px;
  border-radius: 4px; font-size: 12.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .6px; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 6px;
  box-shadow: 0 4px 14px rgba(0,0,0,.1); transition: background .15s, color .15s;
}
.card-quickadd:hover { background: var(--ink); color: #fff; }
.card-meta { padding: 14px 16px; display: flex; flex-direction: column; gap: 4px; }
.card-swatches { display: flex; align-items: center; gap: 6px; margin-bottom: 4px; }
.card-swatch {
  width: 14px; height: 14px; border-radius: 50%; border: 1.5px solid #fff;
  outline: 1px solid #d1d5db; cursor: pointer; transition: transform .15s;
}
.card-swatch:hover, .card-swatch.is-active { transform: scale(1.25); outline-color: var(--ink); }
.card-swatch-more { font-size: 11px; color: var(--ink-soft); margin-left: 2px; }
.card-meta-head { display: flex; justify-content: space-between; align-items: center; font-size: 12px; }
.card-category { color: var(--ink-soft); margin: 0; text-transform: uppercase; letter-spacing: .6px; font-size: 11.5px; }
.card-rating { display: flex; align-items: center; gap: 4px; color: #b45309; font-weight: 700; font-size: 12px; }
.card-rating .rating-count { color: var(--ink-soft); font-weight: 400; font-size: 11px; }
.card-title { font-size: 15px; margin: 2px 0 6px; font-weight: 600; line-height: 1.3; }
.card-title a { color: var(--ink); }
.card-title a:hover { color: var(--indigo); }
.price-compare { color: #9ca3af; text-decoration: line-through; margin-right: 6px; font-size: 13.5px; }
.price-current { color: var(--ink); font-weight: 700; font-size: 16px; text-decoration: none; }
.price-sale-discount { color: #0f766e; font-weight: 700; font-size: 12.5px; margin-right: 6px; }

/* 6. Denim Tech 4-Pillar Grid */
.section-tech { padding: 56px 0; background: #fff; }
.tech-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 36px; }
@media (max-width: 960px) { .tech-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .tech-grid { grid-template-columns: 1fr; } }
.tech-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 8px;
  padding: 26px 20px; transition: transform .2s ease, box-shadow .2s ease;
}
.tech-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px -8px rgba(0,0,0,.08); border-color: var(--brass); }
.tech-icon { font-size: 32px; margin-bottom: 14px; }
.tech-card h3 { font-size: 17px; margin-bottom: 8px; font-family: var(--body); font-weight: 700; }
.tech-card p { font-size: 13.5px; color: var(--ink-soft); margin: 0; line-height: 1.5; }

/* 7. Flash Promo Banner */
.section-promo-banner { padding: 30px 0; }
.promo-box {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: #fff; border-radius: 12px; padding: 44px 40px;
  display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap;
  box-shadow: 0 16px 40px rgba(15,23,42,.2);
}
.promo-tag {
  background: var(--brass); color: #12100e; font-size: 11.5px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.2px; padding: 5px 12px; border-radius: 4px;
}
.promo-content h2 { font-size: 30px; margin: 12px 0 8px; color: #fff; }
.promo-content p { color: #cbd5e1; font-size: 15px; margin-bottom: 14px; }
.coupon-pill-wrap { display: inline-flex; }
.coupon-code-pill {
  background: rgba(255,255,255,.1); border: 1px dashed rgba(255,255,255,.4);
  padding: 8px 16px; border-radius: 6px; cursor: pointer; display: flex; align-items: center; gap: 10px;
  transition: background .15s;
}
.coupon-code-pill:hover { background: rgba(255,255,255,.2); }
.coupon-code-pill code { font-family: monospace; font-size: 16px; font-weight: 700; color: #fef08a; letter-spacing: 1px; }
.copy-hint { font-size: 12px; color: #94a3b8; }

/* 8. Fit & Silhouette Guide */
.section-fit-guide { padding: 60px 0; }
.fit-split { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: center; }
@media (max-width: 860px) { .fit-split { grid-template-columns: 1fr; } }
.fit-image { position: relative; border-radius: 10px; overflow: hidden; }
.fit-image img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.fit-badge-overlay {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  background: rgba(18,16,14,.85); backdrop-filter: blur(8px);
  color: #fff; padding: 14px 18px; border-radius: 6px;
}
.fit-badge-overlay span { font-size: 11px; text-transform: uppercase; color: var(--brass); letter-spacing: 1px; }
.fit-badge-overlay strong { display: block; font-size: 16px; margin-top: 2px; }
.fit-list { display: flex; flex-direction: column; gap: 18px; margin-top: 24px; }
.fit-row { display: flex; gap: 18px; border-bottom: 1px solid var(--line); padding-bottom: 14px; }
.fit-num { font-family: var(--head); font-size: 22px; color: var(--brass); font-weight: 700; min-width: 32px; }
.fit-row h4 { font-size: 16px; margin-bottom: 4px; }
.fit-row p { font-size: 13.5px; color: var(--ink-soft); margin-bottom: 6px; }

/* 9. Reviews Grid */
.section-reviews { padding: 56px 0; }
.stars-aggregate { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 8px; font-size: 15px; }
.stars-gold { color: #f59e0b; font-size: 16px; letter-spacing: 2px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px; }
@media (max-width: 860px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card {
  background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 26px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.review-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.verified-badge { font-size: 11.5px; color: #15803d; font-weight: 600; }
.review-quote { font-size: 14.5px; line-height: 1.6; color: var(--ink); margin-bottom: 18px; font-style: italic; }
.review-author strong { display: block; font-size: 14px; }
.review-author span { font-size: 12px; color: var(--ink-soft); }

/* 10. UGC Instagram Lookbook */
.section-ugc { padding: 48px 0; }
.ugc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 30px; }
@media (max-width: 768px) { .ugc-grid { grid-template-columns: repeat(2, 1fr); } }
.ugc-card { position: relative; aspect-ratio: 1/1; border-radius: 8px; overflow: hidden; }
.ugc-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.ugc-card:hover img { transform: scale(1.08); }
.ugc-overlay {
  position: absolute; inset: auto 0 0 0; padding: 14px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.85) 100%);
  color: #fff; font-size: 12px;
}
.ugc-overlay span { font-weight: 700; display: block; }
.ugc-overlay p { margin: 0; color: #e2e8f0; font-size: 11px; }

/* 11. PDP Upgrades */
.pdp-top-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.pdp-rating-badge { background: #fef3c7; color: #92400e; padding: 3px 8px; border-radius: 14px; font-size: 12px; font-weight: 700; }
.pdp-rating-reviews { color: #78350f; font-weight: 400; }
.pdp-price-wrap { display: flex; flex-direction: column; gap: 2px; margin: 12px 0 16px; }
.pdp-tax-note { font-size: 12px; color: var(--ink-soft); }
.pdp-urgency-pill {
  display: flex; align-items: center; gap: 8px; background: #fff7ed; border: 1px solid #fed7aa;
  color: #9a3412; padding: 8px 12px; border-radius: 6px; font-size: 13px; margin-bottom: 20px;
}
.size-hint { font-size: 12px; color: var(--ink-soft); font-weight: 400; margin-left: 6px; }
.size-guide-trigger { color: var(--indigo); font-weight: 600; font-size: 13px; }

/* Pincode Estimator */
.pdp-pincode-box {
  background: #f8fafc; border: 1px solid var(--line); border-radius: 6px;
  padding: 14px 16px; margin: 20px 0;
}
.pincode-head { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; margin-bottom: 10px; }
.pincode-form { display: flex; gap: 8px; }
.pincode-form input {
  flex: 1; padding: 9px 12px; border: 1px solid var(--line); border-radius: 4px;
  font-size: 13.5px; max-width: 220px;
}
.pincode-result { font-size: 13px; margin-top: 8px; font-weight: 500; }
.pincode-result.ok { color: #15803d; }

/* Trust Grid on PDP */
.pdp-trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 22px 0; }
.trust-cell {
  background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 10px 12px;
  display: flex; align-items: center; gap: 10px;
}
.trust-cell span { font-size: 20px; }
.trust-cell p { margin: 0; font-size: 12px; line-height: 1.3; }
.trust-cell strong { display: block; color: var(--ink); }

/* 13. Mobile App-Like Bottom Navigation Bar */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  z-index: 95;
  justify-content: space-around;
  align-items: center;
  padding: 0 4px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.06);
}
.mob-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  flex: 1;
  height: 100%;
  color: var(--ink-soft);
  text-decoration: none;
  background: none;
  border: 0;
  cursor: pointer;
  position: relative;
  font-family: var(--body);
  transition: color 0.15s ease, transform 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}
.mob-nav-item span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2px;
}
.mob-nav-item.active, .mob-nav-item:hover {
  color: var(--ink);
}
.mob-nav-item.active svg {
  stroke-width: 2.2;
}
.mob-badge {
  position: absolute;
  top: 6px;
  right: calc(50% - 16px);
  background: var(--sale);
  color: #fff;
  font-size: 9.5px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
  border-radius: 8px;
  padding: 0 3px;
  border: 1.5px solid #fff;
}

/* ============================================================
   RESPONSIVE LAYOUT ENGINE (Mobile, Tablet, Desktop)
   ============================================================ */

/* Global Mobile Viewport Adjustments */
html, body {
  max-width: 100vw;
  overflow-x: clip;
}

@media (max-width: 1024px) {
  :root {
    --header-h: 72px;
    --gutter: 20px;
  }
  .product-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px 14px !important;
  }
  .video-reels-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  .fit-split {
    grid-template-columns: 1fr 1fr !important;
    gap: 32px !important;
  }
  .footer-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 32px 20px !important;
  }
  .footer-news {
    grid-column: 1 / -1 !important;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 74px;
    --gutter: 14px;
  }
  body {
    padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px)); /* Space for mobile bottom bar */
  }
  .mobile-bottom-nav {
    display: flex !important;
    padding-bottom: env(safe-area-inset-bottom, 0px);
    height: calc(60px + env(safe-area-inset-bottom, 0px));
  }

  /* Header adjustments */
  .header-row {
    padding: 0 clamp(16px, 4.5vw, 22px);
  }
  .brand-logo-img {
    height: 44px !important;
    max-width: 190px !important;
  }
  .header-tools {
    gap: 4px;
  }
  .header-tools .icon-btn {
    width: 38px;
    height: 38px;
  }
  /* Hide desktop header search & account icons on mobile (they live in bottom bar) */
  #search-toggle {
    display: none;
  }

  /* Section Padding */
  .section {
    padding: 36px 0 !important;
  }
  .section-head {
    margin-bottom: 20px !important;
  }
  .section-title {
    font-size: 24px !important;
  }
  .eyebrow {
    font-size: 11px !important;
    letter-spacing: 1.8px !important;
    margin-bottom: 8px !important;
  }

  /* 1. Category Stories Navigation */
  .section-stories {
    padding: 16px 0 10px !important;
  }
  .stories-wrapper {
    margin: 0 calc(-1 * var(--gutter));
  }
  .stories-scroll {
    gap: 14px !important;
    justify-content: flex-start !important;
    padding: 4px var(--gutter) 14px !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .stories-nav-btn {
    display: none !important;
  }
  .story-circle-card {
    flex: 0 0 76px !important;
    width: 76px !important;
    scroll-snap-align: start;
  }
  .story-avatar-ring {
    width: 66px !important;
    height: 66px !important;
    margin-bottom: 6px !important;
  }
  .story-title {
    font-size: 11px !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 74px;
  }
  .story-count {
    font-size: 9.5px !important;
  }

  /* 2. Hero Multi-Slider */
  .hero-slider-wrap, .hero-slides-track {
    min-height: 520px !important;
    height: 540px !important;
  }
  .hero-slide {
    align-items: flex-end !important;
  }
  .hero-media img {
    object-position: center top !important;
  }
  .hero-scrim {
    background: linear-gradient(180deg, rgba(9, 9, 11, 0.15) 0%, rgba(9, 9, 11, 0.72) 48%, rgba(9, 9, 11, 0.96) 100%) !important;
  }
  .hero-content {
    padding: 0 clamp(16px, 4.5vw, 24px) 28px !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .hero-badge-pill {
    padding: 4px 12px !important;
    font-size: 10.5px !important;
    margin-bottom: 10px !important;
  }
  .hero-title {
    font-size: clamp(22px, 5.8vw, 30px) !important;
    line-height: 1.15 !important;
    margin-bottom: 8px !important;
    word-break: break-word;
  }
  .hero-sub {
    font-size: 12.5px !important;
    line-height: 1.45 !important;
    margin-bottom: 14px !important;
    opacity: 0.9;
    max-width: 92%;
  }
  .hero-actions {
    display: flex !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
    margin-bottom: 14px !important;
  }
  .hero-actions .btn {
    flex: 1 1 140px !important;
    padding: 11px 16px !important;
    font-size: 11.5px !important;
    letter-spacing: 0.4px !important;
    text-align: center;
    justify-content: center;
  }
  .hero-metrics {
    width: 100% !important;
    box-sizing: border-box !important;
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 4px !important;
    padding: 8px 10px !important;
    margin-top: 6px !important;
    background: rgba(18, 16, 14, 0.8) !important;
    border-radius: 8px !important;
  }
  .metric-divider {
    display: none !important;
  }
  .metric-item strong {
    font-size: 12px !important;
  }
  .metric-item span {
    font-size: 8.5px !important;
    letter-spacing: 0.2px !important;
  }
  .hero-slider-arrows {
    display: none !important;
  }
  .hero-dots {
    bottom: 8px !important;
  }
  .hero-dot {
    width: 6px;
    height: 6px;
  }
  .hero-dot.is-active {
    width: 18px;
  }

  /* 3. Marquee Ticker */
  .marquee-strip {
    padding: 9px 0 !important;
  }
  .marquee-track {
    font-size: 11.5px !important;
    gap: 18px !important;
  }

  /* 4. Curated Collection Tabs & 2-Col Mobile Grid */
  .section-curated {
    padding: 32px 0 !important;
  }
  .section-head-tabs {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
    margin-bottom: 18px !important;
  }
  .collection-tabs {
    width: 100% !important;
    display: flex !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 6px !important;
    padding: 3px !important;
    background: #f4f4f5 !important;
    border-radius: 20px !important;
  }
  .collection-tabs::-webkit-scrollbar { display: none; }
  .tab-btn {
    flex: 0 0 auto !important;
    white-space: nowrap !important;
    padding: 7px 14px !important;
    font-size: 12px !important;
    border-radius: 16px !important;
  }

  /* Product Card on Mobile */
  .product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px 8px !important;
  }
  .product-card {
    border-radius: 6px !important;
  }
  .card-image {
    aspect-ratio: 3/4 !important;
  }
  .card-badges {
    top: 6px !important;
    left: 6px !important;
    gap: 3px !important;
  }
  .badge {
    font-size: 9.5px !important;
    padding: 3px 6px !important;
  }
  .card-wish {
    top: 6px !important;
    right: 6px !important;
    width: 30px !important;
    height: 30px !important;
  }
  .card-wish svg {
    width: 16px;
    height: 16px;
  }
  .card-quick-actions {
    opacity: 1 !important;
    transform: none !important;
    position: relative !important;
    inset: auto !important;
    padding: 0 8px 8px !important;
  }
  .card-quickadd {
    padding: 7px 10px !important;
    font-size: 10.5px !important;
    letter-spacing: 0.3px !important;
    border-radius: 4px !important;
    background: var(--paper-2) !important;
  }
  .card-meta {
    padding: 8px 8px 4px !important;
  }
  .card-category {
    font-size: 10px !important;
  }
  .card-rating {
    font-size: 10.5px !important;
  }
  .card-title {
    font-size: 12.5px !important;
    line-height: 1.25 !important;
    margin: 2px 0 4px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }
  .price-compare {
    font-size: 11.5px !important;
  }
  .price-current {
    font-size: 13.5px !important;
  }
  .price-sale-discount {
    font-size: 10.5px !important;
  }

  /* 5. Video Reels Touch Carousel */
  .section-video-reels {
    padding: 36px 0 !important;
  }
  .video-reels-grid {
    display: flex !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 12px !important;
    margin: 20px calc(-1 * var(--gutter)) 0 !important;
    padding: 0 var(--gutter) 16px !important;
    scrollbar-width: none;
  }
  .video-reels-grid::-webkit-scrollbar { display: none; }
  .reel-card {
    flex: 0 0 210px !important;
    min-width: 210px !important;
    scroll-snap-align: start;
    border-radius: 10px !important;
  }
  .reel-shop-bar {
    padding: 10px 12px !important;
  }
  .reel-product-meta strong {
    font-size: 12px !important;
  }
  .reel-product-meta span {
    font-size: 11.5px !important;
  }
  .reel-shop-bar .btn {
    padding: 6px 10px !important;
    font-size: 10.5px !important;
  }

  /* 6. Denim Tech 4-Pillar Grid */
  .section-tech {
    padding: 36px 0 !important;
  }
  .tech-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    margin-top: 20px !important;
  }
  .tech-card {
    padding: 16px 12px !important;
  }
  .tech-icon {
    font-size: 24px !important;
    margin-bottom: 8px !important;
  }
  .tech-card h3 {
    font-size: 13.5px !important;
    margin-bottom: 4px !important;
  }
  .tech-card p {
    font-size: 11.5px !important;
    line-height: 1.4 !important;
  }

  /* 7. Promo Banner Box */
  .section-promo-banner {
    padding: 20px 0 !important;
  }
  .promo-box {
    padding: 22px 18px !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
    border-radius: 10px !important;
  }
  .promo-content h2 {
    font-size: 22px !important;
    margin: 8px 0 6px !important;
  }
  .promo-content p {
    font-size: 13px !important;
    margin-bottom: 12px !important;
  }
  .coupon-code-pill {
    padding: 6px 12px !important;
  }
  .coupon-code-pill code {
    font-size: 13.5px !important;
  }
  .promo-action {
    width: 100% !important;
  }
  .promo-action .btn {
    width: 100% !important;
    justify-content: center !important;
    padding: 13px 18px !important;
    font-size: 12.5px !important;
  }

  /* 8. Fit & Silhouette Guide */
  .section-fit-guide {
    padding: 36px 0 !important;
  }
  .fit-split {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .fit-image {
    max-height: 320px !important;
    border-radius: 8px !important;
  }
  .fit-image img {
    max-height: 320px !important;
    object-position: center top !important;
  }
  .fit-badge-overlay {
    bottom: 12px !important;
    left: 12px !important;
    right: 12px !important;
    padding: 10px 12px !important;
  }
  .fit-badge-overlay strong {
    font-size: 14px !important;
  }
  .fit-list {
    gap: 14px !important;
    margin-top: 16px !important;
  }
  .fit-row {
    gap: 12px !important;
    padding-bottom: 10px !important;
  }
  .fit-num {
    font-size: 18px !important;
    min-width: 24px !important;
  }
  .fit-row h4 {
    font-size: 14px !important;
  }
  .fit-row p {
    font-size: 12px !important;
    line-height: 1.4 !important;
  }

  /* 9. Reviews Grid Touch Carousel */
  .section-reviews {
    padding: 36px 0 !important;
  }
  .reviews-grid {
    display: flex !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 12px !important;
    margin: 20px calc(-1 * var(--gutter)) 0 !important;
    padding: 0 var(--gutter) 14px !important;
    scrollbar-width: none;
  }
  .reviews-grid::-webkit-scrollbar { display: none; }
  .review-card {
    flex: 0 0 270px !important;
    min-width: 270px !important;
    scroll-snap-align: start;
    padding: 18px 16px !important;
    border-radius: 8px !important;
  }
  .review-quote {
    font-size: 12.5px !important;
    line-height: 1.5 !important;
    margin-bottom: 14px !important;
  }

  /* 10. UGC Instagram Lookbook */
  .section-ugc {
    padding: 32px 0 !important;
  }
  .ugc-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
    margin-top: 18px !important;
  }

  /* 11. Blog & Journal Posts */
  .post-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .post-card img {
    height: 180px !important;
  }
  .post-card h3 {
    font-size: 16px !important;
  }

  /* 12. Newsletter Strip */
  .section-news {
    padding: 36px 0 !important;
  }
  .news-inner h2 {
    font-size: 22px !important;
  }
  .news-inner p {
    font-size: 13px !important;
  }
  .newsletter-form {
    flex-direction: column !important;
    gap: 8px !important;
    width: 100% !important;
  }
  .newsletter-form input {
    width: 100% !important;
  }
  .newsletter-form button {
    width: 100% !important;
  }

  /* 13. Floating PIP Shoppable Video Widget */
  .floating-pip-video {
    bottom: 74px !important;
    right: 12px !important;
    z-index: 90 !important;
  }
  .pip-video-inner {
    width: 110px !important;
  }
  .pip-meta strong {
    font-size: 9.5px !important;
  }
  .pip-shop-link {
    font-size: 9.5px !important;
  }

  /* 14. Footer Layout on Mobile */
  .site-footer {
    padding: 36px 0 20px !important;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 24px 14px !important;
  }
  .footer-brand {
    grid-column: 1 / -1 !important;
    margin-bottom: 4px;
  }
  .footer-news {
    grid-column: 1 / -1 !important;
    margin-top: 10px;
  }
  .footer-bottom {
    flex-direction: column !important;
    text-align: center !important;
    gap: 8px !important;
    padding-top: 20px !important;
  }

  /* 15. PDP Mobile Experience */
  .pdp-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .gallery-stage {
    aspect-ratio: 4/5 !important;
  }
  .gallery-thumbs {
    gap: 8px !important;
  }
  .gallery-thumbs .thumb {
    width: 60px !important;
    height: 76px !important;
  }
  .pdp-title {
    font-size: 20px !important;
  }
  .pdp-actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr 48px !important;
    gap: 8px !important;
  }
  .pdp-actions .btn-lg {
    padding: 13px 10px !important;
    font-size: 12px !important;
  }
  .pdp-trust-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }
  .trust-cell {
    padding: 8px !important;
  }
  .trust-cell span {
    font-size: 16px !important;
  }
  .trust-cell strong {
    font-size: 11px !important;
  }
  .trust-cell p {
    font-size: 10px !important;
  }
  body.has-sticky-cta .sticky-mobile-cta {
    display: flex !important;
    bottom: 60px !important; /* sits cleanly above bottom bar */
  }

  /* 16. Cart Page & Checkout on Mobile */
  .cart-table thead {
    display: none !important;
  }
  .cart-table tr {
    display: flex !important;
    flex-direction: column !important;
    padding: 14px 0 !important;
    border-bottom: 1px solid var(--line) !important;
    position: relative !important;
  }
  .cart-table td {
    padding: 4px 0 !important;
    border: 0 !important;
  }
  .cart-product-name {
    font-size: 14px !important;
  }
  .cart-price {
    font-size: 14px !important;
  }
  .cart-summary {
    margin-top: 24px !important;
    padding: 20px 16px !important;
  }
  .checkout-layout {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .checkout-summary {
    order: -1 !important;
  }
  .form-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .form-grid .span-2 {
    grid-column: span 1 !important;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    grid-template-columns: 1fr !important;
  }
  .tech-grid {
    grid-template-columns: 1fr !important;
  }
  .pdp-actions {
    grid-template-columns: 1fr 48px !important;
  }
  .pdp-actions #buy-now-btn {
    grid-column: 1 / -1 !important;
  }
  .pincode-form {
    flex-direction: column !important;
  }
  .pincode-form input {
    max-width: none !important;
  }
  .pincode-form button {
    width: 100% !important;
  }
}

/* ============================================================
   17. The Denim Journal & Editorial Blog Styles
   ============================================================ */
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .post-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}
@media (max-width: 600px) {
  .post-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.post-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.12);
  border-color: #d1c7b7;
}
.post-card-img-box {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f4f4f5;
}
.post-card-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.post-card:hover .post-card-img-box img {
  transform: scale(1.06);
}
.post-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(9, 9, 11, 0.85);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}
.post-card-meta {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.post-card-meta .post-date {
  font-size: 11.5px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.post-card-meta h3 {
  font-family: var(--head);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 8px;
  transition: color 0.15s ease;
}
.post-card:hover .post-card-meta h3 {
  color: var(--brass);
}
.post-card-meta p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0 0 14px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Journal Featured Lead Story Card */
.journal-featured-card {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 36px -12px rgba(0, 0, 0, 0.08);
  margin-top: 20px;
}
@media (max-width: 860px) {
  .journal-featured-card {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.journal-featured-media {
  position: relative;
  min-height: 340px;
}
.journal-featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.journal-featured-pill {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--ink);
  color: var(--brass-light);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 5px 12px;
  border-radius: 20px;
}
.journal-featured-body {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.post-meta-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.post-category-pill {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--brass);
  background: #fdfbf7;
  border: 1px solid #e7dfd1;
  padding: 3px 10px;
  border-radius: 12px;
}
.post-read-time {
  font-size: 11.5px;
  color: var(--ink-soft);
}
.journal-featured-body h2 {
  font-family: var(--head);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 12px;
}
.journal-featured-body p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 24px;
}

/* Single Blog Post Article Page */
.post-article {
  max-width: 820px;
  margin: 0 auto;
  padding-top: 24px;
  padding-bottom: 60px;
}
.post-breadcrumb-wrap {
  margin-bottom: 16px;
}
.post-head {
  margin-bottom: 28px;
}
.post-title {
  font-family: var(--head);
  font-size: clamp(28px, 4.2vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  margin: 12px 0 16px;
  letter-spacing: -0.5px;
}
.post-author-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  margin-top: 16px;
}
.post-author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--brass-light);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.post-author-info strong {
  display: block;
  font-size: 13.5px;
  color: var(--ink);
}
.post-author-info span {
  display: block;
  font-size: 11.5px;
  color: var(--ink-soft);
}

.post-hero-wrap {
  border-radius: 14px;
  overflow: hidden;
  margin: 28px 0 36px;
  box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.15);
}
.post-hero {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

/* Prose Typography & Multimedia Elements */
.post-body-content {
  font-size: 16.5px;
  line-height: 1.75;
  color: #27272a;
}
.post-body-content p.lead {
  font-size: 19px;
  line-height: 1.6;
  font-weight: 500;
  color: #18181b;
  margin-bottom: 24px;
}
.post-body-content h2 {
  font-family: var(--head);
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  margin: 36px 0 14px;
}
.post-body-content h3 {
  font-family: var(--head);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin: 24px 0 10px;
}
.article-figure {
  margin: 28px 0;
  border-radius: 10px;
  overflow: hidden;
  background: #fdfbf7;
  border: 1px solid var(--line);
}
.article-figure img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
}
.article-figure figcaption {
  padding: 10px 16px;
  font-size: 13px;
  color: var(--ink-soft);
  background: #fafaf9;
  border-top: 1px solid var(--line);
  font-style: italic;
}
.article-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}
@media (max-width: 600px) {
  .article-image-grid {
    grid-template-columns: 1fr;
  }
}
.article-callout {
  display: flex;
  gap: 14px;
  background: #fdfbf7;
  border-left: 4px solid var(--brass);
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
}
.callout-icon {
  font-size: 20px;
}
.callout-text {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink);
}
.article-shop-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #18181b;
  color: #ffffff;
  padding: 24px 28px;
  border-radius: 12px;
  margin: 32px 0;
  gap: 20px;
  flex-wrap: wrap;
}
.shop-banner-tag {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--brass-light);
  display: block;
  margin-bottom: 4px;
}
.shop-banner-info h4 {
  font-family: var(--head);
  font-size: 20px;
  color: #ffffff;
  margin: 0 0 4px;
}
.shop-banner-info p {
  font-size: 13.5px;
  color: #d4d4d8;
  margin: 0;
}
.article-summary-box {
  background: #f4f4f5;
  padding: 20px 24px;
  border-radius: 10px;
  margin: 28px 0;
}
.article-summary-box h3 {
  margin-top: 0;
  font-size: 18px;
}
.article-summary-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}

.post-footer-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  margin-top: 40px;
  flex-wrap: wrap;
  gap: 16px;
}
.post-share-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ink-soft);
}
.post-related-section {
  margin-top: 48px;
}
.related-title {
  font-family: var(--head);
  font-size: 24px;
  margin-bottom: 20px;
}