/** Shopify CDN: Minification failed

Line 4385:1 Unexpected "/"
Line 4387:86 Unexpected "\x00"
Line 4387:153 Expected ":"
Line 4388:87 Expected ":"
Line 4390:43 Expected ":"
Line 4391:87 Expected ":"
Line 4393:49 Expected ":"
Line 4394:87 Expected ":"
Line 4395:7 Expected ":"
Line 4399:1 Unexpected "@\x00k\x00e\x00y\x00f\x00r\x00a\x00m\x00e\x00s\x00"
... and 8 more hidden warnings

**/
/* =====================================================================
   BLUORNG V2 THEME CSS
   Exact Clone: 3-Column Scroll-and-Sticky Layout + Micro-Animations
   ===================================================================== */

@font-face {
  font-family: 'Aron';
  src: url('fonts/Aron-Bold.woff2') format('woff2'),
    url('fonts/Aron-Bold.woff') format('woff'),
    url('fonts/Aron-Bold.ttf') format('truetype'),
    url('Aron-Bold.woff2') format('woff2'),
    url('Aron-Bold.woff') format('woff'),
    url('Aron-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-primary: #000000;
  --color-text: #000000;
  --color-text-muted: #757575;
  --color-bg: #F6F6F6;
  /* Clean light grey */
  --color-card-bg: #FFFFFF;
  --color-border: #F0F0F0;
  /* Almost invisible border */
  --font-body: 'Space Mono', monospace;
  --font-heading: 'Aron', 'Outfit', sans-serif;
  --header-height: 70px;
}

/* Force clean, high-end outline shopping bag icon globally (Almost Gods style) */
.cls-cart-2 {
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.5px !important;
  stroke-miterlimit: 10 !important;
}


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

/* ============================================================
   PREMIUM HEADER (NUDE PROJECT INSPIRED)
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    border-bottom 0.4s ease;
  color: #000000;
  background: transparent;
  border-bottom: 1px solid transparent;
}

/* Home page starts transparent white text */
.template-index .header {
  color: #FFFFFF;
  mix-blend-mode: difference !important;
}

/* Scrolled state */
.header.is-scrolled {
  background: #FFFFFF;
  color: #000000;
  border-bottom: 1px solid #EAEAEA;
}

/* Home page: header ALWAYS stays transparent with white text */
.template-index .header.is-scrolled {
  background: transparent !important;
  color: #FFFFFF;
  border-bottom: 1px solid transparent !important;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 40px;
  max-width: 1800px;
  margin: 0 auto;
}

.header__left {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
  /* Ensures navigation dropdowns stack above the scaled-up logo */
}

.header__right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  position: relative;
  z-index: 10;
}

.header__center {
  flex: 0 0 auto;
  position: relative;
  z-index: 1;
  /* Pushes the logo block behind the dropdowns in the stacking context so it doesn't intercept dropdown cursor hovers */
}

.header__nav {
  display: flex;
  gap: 15px;
  /* Reduced gap to perfectly fit all links without logo collision */
  margin-left: 20px;
  /* Aligned nicely after mobile toggle area */
}

/* Premium Navigation Item & Dropdowns */
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  height: var(--header-height);
  /* Keep full height for hover trigger */
}

.nav-link {
  font-size: 10px;
  /* Sleek, compact and modern font size */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  /* Balanced tight letter spacing */
  color: inherit;
  transition: opacity 0.3s ease;
  cursor: pointer;
  display: block;
}

.nav-link:hover {
  opacity: 0.7;
}

/* Elegant dropdown overlay box */
.nav-dropdown {
  position: absolute;
  top: 100%;
  /* Sits exactly below header */
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #FFFFFF;
  border: 1px solid #EAEAEA;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  min-width: 200px;
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 1000;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
}

/* Dropdown link styles */
.nav-dropdown a {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #000000 !important;
  /* Always readable black text inside white dropdown */
  padding: 10px 24px;
  transition: background 0.2s ease, padding-left 0.2s ease;
  white-space: nowrap;
  display: block;
  text-align: left;
}

.nav-dropdown a:hover {
  background: #F9F9F9;
  padding-left: 28px;
  /* Smooth micro slide on hover */
  opacity: 1 !important;
}

/* Hover to trigger dropdown */
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.header,
.header__inner,
.header__center,
.header__logo {
  overflow: visible !important;
}

.header__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
}

.header__logo img {
  max-height: 32px;
  /* elegant sleek size for the wide text logo on desktop */
  width: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  transition: filter 0.4s ease;
}

/* Homepage large splash logo initial state on desktop */
.template-index .header__logo img,
.template-index .header__logo .logo-text {
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.4s ease !important;
  transform-origin: center center;
  display: inline-block !important;
  transform: translateY(85px) scale(3.5) !important;
  transform: translateY(85px) scale(calc((100vw - 50px) / 421)) !important;
}

/* Shrunk state on scroll on desktop */
.template-index .header.logo-shrunk .header__logo img,
.template-index .header.logo-shrunk .header__logo .logo-text {
  transform: translateY(0) scale(1) !important;
}

/* Home page transparent header -> make text logo white */
.template-index .header .header__logo img {
  filter: brightness(0) invert(1);
}

/* Scrolled homepage header -> keep white since homepage is always transparent */
.template-index .header.is-scrolled .header__logo img {
  filter: brightness(0) invert(1);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: inherit;
  transition: opacity 0.3s ease;
}

.action-btn:hover {
  opacity: 0.6;
}

.cart-btn {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: #000000;
  color: #FFFFFF;
  font-size: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.is-scrolled .cart-count {
  background: #000000;
}

/* Home page: cart count always white badge since header stays transparent */
.template-index .header .cart-count {
  background: #FFFFFF;
  color: #000000;
}

.mobile-menu-toggle {
  display: none;
}

/* Header Hover Inversion (Desktop Only) */
@media (min-width: 1025px) {
  .header {
    transition: background 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-bottom 0.3s ease;
  }

  /* Dynamic hover state for header: turns solid white with black text and logo */
  .header:hover {
    background: #FFFFFF !important;
    color: #000000 !important;
    border-bottom: 1px solid #EAEAEA !important;
    mix-blend-mode: normal !important;
    /* Temporarily disable difference blend mode on hover so header and dropdowns render in solid white and black! */
  }

  /* Ensure all navigation links, action buttons, search text inside header turn black when header is hovered */
  .header:hover .nav-link,
  .header:hover .action-btn,
  .header:hover .mobile-menu-toggle {
    color: #000000 !important;
    opacity: 1 !important;
  }

  /* Reduce opacity slightly on hover of individual links inside a hovered header for premium feel */
  .header:hover .nav-link:hover,
  .header:hover .action-btn:hover {
    opacity: 0.6 !important;
  }

  /* Reset brightness/invert filter of the logo back to black when header is hovered */
  .header:hover .header__logo img {
    filter: none !important;
    filter: brightness(1) invert(0) !important;
  }

  /* Ensure the bag/cart count count changes beautifully on hover */
  .header:hover .cart-count {
    background: #000000 !important;
    color: #FFFFFF !important;
  }
}

@media (max-width: 1024px) {
  .desktop-only {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .header__inner {
    padding: 0 20px;
  }

  .header__logo {
    font-size: 16px;
  }
}

/* ============================================================
   HOME PAGE (ALMOST GODS STYLE)
   ============================================================ */

/* Hide double scrollbar on homepage */
body.template-index {
  margin: 0;
  padding: 0;
}

/* Normal premium 100vh sections — HOMEPAGE ONLY — now JS-snap controlled */
body.template-index .scroll-container > section,
body.template-index .scroll-container > .editorial-banner,
body.template-index .scroll-container > .shopify-section {
  position: sticky !important;
  top: 0 !important;
  height: 100vh !important;
  height: 100dvh !important;
  overflow: hidden !important;
  scroll-snap-align: none !important;
  will-change: transform !important;
  transform: translateZ(0) !important;
}

/* Stacking z-index — each section layers above the previous */
body.template-index .scroll-container > .shopify-section:nth-child(1) { z-index: 1 !important; }
body.template-index .scroll-container > .shopify-section:nth-child(2) { z-index: 2 !important; }
body.template-index .scroll-container > .shopify-section:nth-child(3) { z-index: 3 !important; }
body.template-index .scroll-container > .shopify-section:nth-child(4) { z-index: 4 !important; }
body.template-index .scroll-container > .shopify-section:nth-child(5) { z-index: 5 !important; }
body.template-index .scroll-container > .shopify-section:nth-child(6) { z-index: 6 !important; }

/* Inner sections inside shopify-section wrappers — fill parent height */
body.template-index .scroll-container > .shopify-section > section,
body.template-index .scroll-container > .shopify-section > .editorial-banner {
  height: 100% !important;
  min-height: 100vh !important;
  min-height: 100dvh !important;
  overflow: hidden !important;
}

/* Footer wrapper — NOT sticky, flows naturally after all snap sections */
body.template-index .scroll-container > #shopify-section-footer {
  position: relative !important;
  scroll-snap-align: none !important;
  height: auto !important;
  min-height: auto !important;
  overflow: visible !important;
  z-index: 10 !important;
}

/* Universal footer content container is forced to 100vh, black, with content at bottom to prevent any white gap */
.site-footer {
  min-height: 100vh !important;
  min-height: 100dvh !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  position: relative !important;
  background-color: #000000 !important;
}

/* Footer on NON-homepage pages flows normally */
body:not(.template-index) .scroll-container > #shopify-section-footer {
  position: relative !important;
  height: auto !important;
  min-height: auto !important;
  overflow: visible !important;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  height: 100dvh;
  width: 100%;
  overflow: hidden;
}

.hero-section__media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  /* Darken for text readability */
}

.hero-section__content {
  position: absolute;
  bottom: 12%;
  left: 50%;
  transform: translate(-50%, 0);
  text-align: center;
  color: #FFFFFF;
  z-index: 2;
  width: 100%;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.hero-btn {
  display: inline-block;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: opacity 0.3s ease;
  background: transparent !important;
  padding: 0;
  border: none;
}

.hero-btn:hover {
  background: transparent !important;
  color: #FFFFFF;
  opacity: 0.8;
}

.hero-btn--dark {
  color: #000000;
  border: none;
}

.hero-btn--dark:hover {
  background: transparent !important;
  color: #000000;
  opacity: 0.8;
}

/* Split Collection */
.split-collection {
  display: flex;
  width: 100%;
  height: 100vh;
  /* Changed to 100vh for snap scroll */
}

.split-item {
  flex: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.split-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  /* Perfectly centers the shirt and t-shirt subjects by shifting the 2:3 vertical crop upwards */
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.split-item:hover img {
  transform: scale(1.03);
}

.split-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #FFFFFF;
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: difference !important;
  /* Dynamically inverts text colors (black on white tees, white on dark shirts) just like the header logo */
  /* Let clicks pass through to the image/link */
}

.split-content h3 {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.split-link {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
  pointer-events: auto;
  /* Re-enable clicks */
}

/* Editorial Banner (Candles, FILA, Chapters) */
.editorial-banner {
  position: relative;
  height: 100vh;
  height: 100dvh;
  width: 100%;
  overflow: hidden;
}

.editorial-banner img,
.editorial-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

/* ============================================================
   GLOBAL NAVIGATION DRAWER
   ============================================================ */

.global-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* ============================================================
   PREMIUM NAVIGATION DRAWER (NUDE PROJECT STYLE)
   ============================================================ */
.global-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 450px;
  height: 100vh;
  transform: translateX(-100%);
  background: #FFF;
  /* Use very slight off-white #FAFAFA if needed, but #FFF matches SS */
  z-index: 2000;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

body.drawer-open .global-drawer {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  justify-content: flex-end;
  padding: 24px 30px;
}

.drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: #000;
}

.drawer-content-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 0 30px 40px;
  display: flex;
  flex-direction: column;
}

.drawer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 24px 10px;
  width: 100%;
}

.drawer-logo img {
  width: 280px;
  height: 280px;
  object-fit: contain;
  display: block;
  margin: -65px auto -85px;
  /* pulls the square vertical bounds in so spacing is perfectly eliminated and looks neat */
  filter: none !important;
  /* ensure it always stays original/black in drawer */
}

.drawer-link-content {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.drawer-huge-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 50px;
  margin-top: 40px;
  /* Pushes the "New Arrivals" down, giving the doubled logo beautiful breathing room */
}

.drawer-huge-links a {
  font-family: var(--font-body);
  font-size: 38px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: #3b2b25;
  /* Dark brown from nude project */
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.drawer-huge-links a:hover {
  opacity: 0.7;
}

.drawer-menu-list,
.drawer-bottom-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.drawer-menu-list {
  margin-bottom: auto;
  padding-bottom: 60px;
}

.drawer-menu-list>li>a,
.drawer-bottom-list>li>a {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: #3b2b25;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: -0.2px;
}

.drawer-menu-list svg,
.drawer-bottom-list svg {
  color: #3b2b25;
}

/* Submenu Accordion Style */
.submenu {
  display: none;
  list-style: none;
  padding: 16px 0 0 0;
  margin: 0;
  flex-direction: column;
  gap: 14px;
}

.submenu a {
  font-family: var(--font-body);
  font-size: 14px;
  color: #666;
  text-decoration: none;
}

.has-submenu.is-open .submenu {
  display: flex;
}

.has-submenu.is-open>a svg {
  transform: rotate(90deg);
  transition: transform 0.3s;
}

.editorial-banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  /* Darkens image for text readability */
}

.editorial-banner__content {
  position: absolute;
  bottom: 12%;
  left: 50%;
  transform: translate(-50%, 0);
  text-align: center;
  color: #FFFFFF;
  z-index: 2;
  width: 90%;
  max-width: 600px;
}

.editorial-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  margin-bottom: 16px;
  font-weight: 500;
}

.editorial-banner p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
  color: #EEEEEE;
  font-family: var(--font-body);
}

/* ============================================================
   PREMIUM FOOTER (NUDE PROJECT STYLE)
   ============================================================ */
.site-footer {
  background: #000000;
  color: #FFFFFF;
  margin-top: 5px;
  padding: 10px 20px 40px;
  /* Added 40px padding bottom to prevent margin collapse on desktop and provide elegant breathing room */
  border-top: 1px solid #222222;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 100px;
  margin-bottom: 80px;
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
}

.footer__heading {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #FFFFFF;
}

.footer__subtext {
  font-size: 14px;
  color: #CCCCCC;
  margin-bottom: 30px;
  max-width: 320px;
  line-height: 1.5;
}

/* Newsletter Form */
.newsletter-form .input-group {
  display: flex;
  border-bottom: 1.5px solid #FFFFFF;
  padding-bottom: 10px;
  margin-bottom: 24px;
}

.newsletter-form input[type="email"] {
  flex: 1;
  border: none;
  font-size: 14px;
  font-weight: 500;
  outline: none;
  background: transparent !important;
  color: #FFFFFF;
}

.newsletter-form input[type="email"]::placeholder {
  color: #888888;
}

.newsletter-form button[type="submit"] {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #FFFFFF;
  padding-left: 20px;
}

.gender-selection {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}

.gender-selection label {
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: #FFFFFF;
}

.gender-selection input[type="radio"] {
  accent-color: #FFFFFF;
}

.privacy-agreement {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.privacy-agreement input[type="checkbox"] {
  margin-top: 3px;
  accent-color: #FFFFFF;
}

.privacy-agreement label {
  font-size: 12px;
  color: #888888;
  line-height: 1.4;
}

.privacy-agreement a {
  text-decoration: underline;
  color: #FFFFFF;
}

/* Links Columns */
.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer__column ul {
  list-style: none;
  padding: 0;
}

.footer__column li {
  margin-bottom: 14px;
}

.footer__column a {
  font-size: 13px;
  font-weight: 500;
  color: #CCCCCC;
  transition: color 0.3s ease;
}

.footer__column a:hover {
  color: #FFFFFF;
}

.chevron {
  display: none;
  /* Desktop only */
}

/* Bottom Bar */
.footer__bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid #222222;
  max-width: 1800px;
  margin: 0 auto;
}

.footer__bottom-left {
  display: flex;
  align-items: center;
}

.country-selector {
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  white-space: nowrap;
  color: #FFFFFF;
}

.footer__socials {
  display: flex;
  align-items: center;
  padding-top: 0;
  gap: 16px;
}

.footer__socials a {
  color: #FFFFFF;
  transition: opacity 0.3s ease;
}

.footer__socials a:hover {
  opacity: 0.6;
}

/* Branding Logo */
.footer__branding {
  margin-top: 40px;
  margin-bottom: 0;
  /* Set to 0 to rely on site-footer padding-bottom for perfect spacing */
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer__logo-wrap {
  display: inline-block;
  max-width: var(--footer-logo-width, 1400px);
  /* Massive Nude Project style default layout (up to 1400px) */
  width: 90%;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.footer__logo-wrap:hover {
  transform: scale(1.02);
}

.footer__logo-img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: invert(1);
  /* Auto invert black logo to white for black footer */
}

/* Responsive Footer */
@media (max-width: 1024px) {
  .site-footer {
    padding: 15px 20px 15px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 20px;
    /* Gap between newsletter and support */
    margin-bottom: 0px;
    /* Removed gap before bottom bar */
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .footer__newsletter {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .newsletter-form {
    width: 100% !important;
    max-width: 100% !important;
  }

  .footer__links {
    grid-template-columns: 1fr;
    gap: 0;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .footer__column {
    border-bottom: 1px solid #222222;
    width: 100% !important;
  }

  .footer__heading {
    margin-bottom: 0;
    padding: 10px 0;
    cursor: pointer;
  }

  .chevron {
    display: block;
    transition: transform 0.3s ease;
  }

  .footer__column.is-open .chevron {
    transform: rotate(180deg);
  }

  .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
  }

  .footer__column.is-open .accordion-content {
    max-height: 300px;
    padding-bottom: 20px;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    padding: 10px 0 !important;
    width: 100% !important;
    margin-top: 15px !important;
    border-top: 1px solid #222222 !important;
  }

  .footer__branding {
    margin-top: 20px;
  }

  .footer__logo-wrap {
    max-width: 90% !important;
    width: 90% !important;
  }
}

/* ============================================================
   PRODUCT LAYOUT (3-COLUMN STICKY)
   ============================================================ */
.product-layout {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  /* 2/3 for gallery, 1/3 for info */
  gap: 6px;
  align-items: start;
  background: rgb(232, 232, 232);
  padding: 20px;
  padding-top: calc(var(--header-height) + 20px);
  /* Add padding to account for fixed header */
}

/* Gallery Container */
.product-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

/* Left Hero Image */
.product-gallery__hero {
  position: sticky;
  top: var(--header-height);
  align-self: start;
}

.product-gallery__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

/* Middle Grid Images */
.product-gallery__grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-gallery__grid img {
  width: 100%;
  display: block;
  border-radius: 0;
}

/* Right Column: Static Info Panel */
.product-col-right {
  position: sticky;
  top: var(--header-height);
  height: calc(100vh - var(--header-height));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: start;
  overflow-y: auto;
  /* Fallback for smaller screens to prevent content clipping */
  scrollbar-width: none;
  /* Hide scrollbar for a clean luxury appearance */
}

.product-col-right::-webkit-scrollbar {
  display: none;
  /* Hide scrollbar for WebKit browsers */
}

.product-info-card {
  background: white;
  border-radius: 0;
  padding: 30px;
  /* Spacious, luxurious internal padding for desktop */
  margin-bottom: 0;
  /* No margin needed, it's a single card now */
  border: 1px solid var(--color-border);
}

.product-info-inner {
  /* Removed padding, now handled by product-info-card */
}

/* ============================================================
   PRODUCT INFO STYLING
   ============================================================ */
.breadcrumbs {
  font-size: 11px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.breadcrumbs .sep {
  margin: 0 6px;
}

.product-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.product-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.wishlist-icon {
  color: #757575;
  display: flex;
  align-items: center;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.product-price {
  font-size: 13px;
  font-weight: 500;
  color: #757575;
  text-transform: uppercase;
}

.tax-note {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.tax-note a {
  text-decoration: underline;
}

.product-description {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 32px;
}

/* Variants */
.product-variants {
  margin-bottom: 32px;
}

.variant-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 13px;
}

.size-guide {
  background: #F0F0F0;
  padding: 8px 8px;
  /* Tiny pill */
  border-radius: 10px;
  font-size: 9px;
  color: #111111;
  font-weight: 500;
  text-decoration: none;
}

.variant-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  /* Tighter gap */
}

.variant-pill {
  width: 100%;
  padding: 10px 0;
  background: #FFFFFF;
  color: var(--color-text);
  border: 1px solid #E8E8E8;
  border-radius: 0;
  font-size: 11px;
  font-weight: 500;
  transition: all 0.2s ease;
  position: relative;
  text-align: center;
}

.variant-pill:hover:not(.sold-out),
.variant-pill.active {
  background: #111111;
  color: #FFFFFF;
  border-color: #111111;
  font-weight: 600;
}

.variant-pill.sold-out {
  background: #E0E0E0;
  color: #888888;
  cursor: not-allowed;
  border-color: #D9D9D9;
}

.variant-pill.sold-out::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 15%;
  width: 70%;
  height: 1px;
  background: #888888;
}

/* Actions */
.product-quantity {
  margin-bottom: 16px;
}

.qty-selector {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: 50px;
  height: 52px;
  padding: 0 16px;
}

.qty-btn {
  font-size: 18px;
  width: 30px;
}

.qty-val {
  width: 40px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
}

.product-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 32px;
}

.btn {
  flex: 1;
  height: 52px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Add to Bag: White with border, fills to black on hover */
.btn-add {
  background: transparent !important;
  color: #000000;
  border: 1px solid var(--color-border);
}

.btn-add::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.btn-add:hover {
  color: #FFFFFF;
}

.btn-add:hover::before {
  transform: scaleX(1);
}

/* Buy It Now: Solid black */
.btn-buy {
  background: #000000;
  color: #FFFFFF;
}

.btn-buy:hover {
  opacity: 0.85;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  gap: 16px;
  padding: 24px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 32px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  color: var(--color-text-muted);
  text-transform: uppercase;
}

.badge svg {
  color: #000;
}

/* Tabs */
.product-tabs {
  margin-top: 20px;
}

.tab-headers {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 24px;
}

.tab-header {
  flex: 1;
  display: flex;
  justify-content: center;
  cursor: pointer;
}

.tab-header span {
  font-size: 11px;
  /* Tiny font */
  font-weight: 500;
  color: #757575;
  padding: 12px 0;
  /* Delicate padding */
  position: relative;
  text-transform: capitalize;
  transition: color 0.3s ease;
}

.tab-header.active span {
  color: #111111;
  font-weight: 600;
}

.tab-header span::after {
  content: '';
  position: absolute;
  bottom: -1px;
  /* Overlaps the container's bottom border exactly */
  left: 0;
  width: 100%;
  height: 2px;
  background: #111111;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.tab-header.active span::after {
  transform: scaleX(1);
}

.tab-content {
  display: none;
  font-size: 13px;
  color: #757575;
  line-height: 1.6;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   YOU MAY ALSO LIKE SECTION
   ============================================================ */
.related-products {
  padding: 80px 40px;
  background: #FFF;
}

.related-products h2 {
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 30px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.product-card {
  position: relative;
  cursor: pointer;
}

.product-card__media {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 16px;
  aspect-ratio: 3/4;
}

.product-card__images {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-card__images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

/* Hover Carousel Arrows */
.card-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-card__media:hover .card-nav {
  opacity: 1;
}

.card-nav.prev {
  left: 10px;
  transform: translateY(-50%) translateX(-10px);
}

.card-nav.next {
  right: 10px;
  transform: translateY(-50%) translateX(10px);
}

.product-card__media:hover .card-nav.prev {
  transform: translateY(-50%) translateX(0);
}

.product-card__media:hover .card-nav.next {
  transform: translateY(-50%) translateX(0);
}

.card-nav:hover {
  background: #FFF;
  transform: translateY(-50%) scale(1.1) !important;
}

/* Image hover effect */
.product-card__media::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.03);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.product-card__media:hover::after {
  opacity: 1;
}

.product-card__info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.product-card__title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.product-card__price {
  font-size: 13px;
  color: var(--color-text-muted);
}

.product-card__wishlist {
  background: transparent !important;
  padding: 4px;
  color: var(--color-text);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-card__wishlist {
  opacity: 1;
}

/* ============================================================
   SIZE GUIDE MODAL
   ============================================================ */
.size-guide-modal {
  background: #F4F4F4;
  border-radius: 20px;
  padding: 16px;
  margin-bottom: 24px;
  animation: slideDown 0.3s ease;
  width: 100%;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.size-guide-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.size-guide-title {
  font-size: 14px;
  font-weight: 700;
}

.size-guide-toggle {
  display: flex;
  background: #E8E8E8;
  border-radius: 50px;
  padding: 2px;
}

.size-guide-toggle .toggle-btn {
  font-size: 10px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 50px;
  color: #757575;
}

.size-guide-toggle .toggle-btn.active {
  background: #FFFFFF;
  color: #111111;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.size-guide-table-wrap {
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
}

.size-guide-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-size: 11px;
}

.size-guide-table th {
  font-weight: 600;
  color: #333;
  padding: 12px 8px;
  border-bottom: 1px solid #F0F0F0;
}

.size-guide-table td {
  padding: 12px 8px;
  border-bottom: 1px solid #F0F0F0;
  color: #555;
}

.size-guide-table th:not(:last-child),
.size-guide-table td:not(:last-child) {
  border-right: 1px solid #F0F0F0;
}

.size-guide-table tr:last-child td {
  border-bottom: none;
}

/* Desktop absolute positioning for Size Guide */
@media (min-width: 1025px) {
  .size-guide-modal {
    position: absolute;
    bottom: 0;
    left: 0;
    margin-bottom: 0;
    border-radius: 20px 20px 0 0;
    /* Only top corners rounded on desktop */
  }
}

/* Responsive (Tablet/Mobile fallback) */
@media (max-width: 1024px) {
  .header {
    --header-height: 60px !important;
    /* Elegant compact header height like Almost Gods */
  }

  .header__inner {
    padding: 0 20px !important;
  }

  .header__left,
  .header__center,
  .header__right {
    flex: 1 !important;
    display: flex !important;
    align-items: center !important;
  }

  .header__left {
    justify-content: flex-start !important;
  }

  .header__center {
    justify-content: center !important;
  }

  .header__right {
    justify-content: flex-end !important;
  }

  .header__logo {
    font-size: 14px;
    letter-spacing: 1.5px;
    margin: 0;
    position: static;
    transform: none;
    text-align: center;
    white-space: nowrap;
  }

  .header__logo img {
    max-height: 14.5px !important;
    /* perfectly proportioned aesthetic height for wide landscape logo text */
    width: auto !important;
    height: auto !important;
    margin: 0 auto !important;
    transform: none !important;
  }

  /* Homepage large splash logo initial state on mobile */
  .template-index .header__logo img {
    transform: translateY(48px) scale(1.9) !important;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
      filter 0.4s ease !important;
  }

  /* Shrunk state on scroll on mobile */
  .template-index .header.logo-shrunk .header__logo img {
    transform: translateY(0) scale(1) !important;
  }

  /* Scale header icons to bold and prominent 36px (double size of current) while keeping logo perfect */
  .mobile-menu-toggle svg,
  .action-btn svg {
    width: 36px !important;
    height: 36px !important;
  }

  .cls-menu {
    stroke-width: 1.5px !important;
    /* Bold high-contrast strokes */
  }

  .cls-cart-1 {
    stroke-width: 1.5px !important;
  }

  .cls-cart-2 {
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 1.5px !important;
    stroke-miterlimit: 10 !important;
  }

  /* Make sure burger menu doesn't have extra background or bounds */
  .mobile-menu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: inherit;
  }

  /* Prevent cart badge cutting off */
  .header__actions .cart-btn {
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: center;
  }

  .header__actions .cart-btn .cart-count {
    top: -6px !important;
    right: -6px !important;
    width: 15px !important;
    /* Prominent perfectly positioned badge */
    height: 15px !important;
    font-size: 8px !important;
    line-height: 15px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .header__actions {
    gap: 16px !important;
  }

  nav {
    display: none;
    /* Hide desktop nav on mobile/tablet for simplicity */
  }

  .mobile-menu-toggle {
    display: block !important;
    color: inherit;
  }

  .product-layout {
    grid-template-columns: 1fr;
    gap: 0;
    padding: calc(var(--header-height) + 12px) 0 0;
    background: #FFFFFF;
  }

  .product-col-right {
    position: static;
    height: auto;
    display: block;
  }

  /* Horizontal swipe carousel for mobile gallery */
  .product-gallery {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 5px;
    padding: 12px;
    /* Padding for the gallery */
    scroll-padding: 0 16px;
  }

  .product-gallery::-webkit-scrollbar {
    display: none;
  }

  .product-gallery__hero {
    position: static;
    flex: 0 0 calc(100vw - 32px);
    /* Full width minus padding */
    scroll-snap-align: center;
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .product-gallery__hero img {
    border-radius: 0 !important;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .product-gallery__grid {
    display: contents;
    /* Makes images direct flex children of gallery */
  }

  .product-gallery__grid img {
    flex: 0 0 calc(100vw - 32px);
    /* Full width minus padding */
    scroll-snap-align: center;
    border-radius: 0 !important;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
  }

  .product-info-card {
    border: none;
    border-radius: 0;
    padding: 24px 20px;
    margin-bottom: 0;
  }

  .related-products {
    padding: 60px 20px;
  }

  .related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .product-card__media {
    border-radius: 0;
  }

  /* Horizontal swipe for Related Products */
  .product-card__images {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .product-card__images::-webkit-scrollbar {
    display: none;
  }

  .product-card__images img {
    scroll-snap-align: start;
  }

  .card-nav {
    display: none;
    /* Hide hover arrows on touch devices */
  }
}

@media (max-width: 768px) {
  .header__logo {
    font-size: 18px;
    letter-spacing: 2px;
  }

  .product-title {
    font-size: 18px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 40px;
  }

  .newsletter-col {
    padding-right: 0;
  }

  .split-collection {
    flex-direction: column;
    height: 100vh;
    height: 100dvh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .split-item {
    flex: 1;
    /* Takes exactly 50% of the 100vh container */
    height: 50%;
    width: 100%;
  }

  .header__logo--serif {
    font-size: 24px;
    letter-spacing: 2px;
  }

  .hero-title {
    font-size: 28px !important;
    letter-spacing: 2px !important;
    margin-bottom: 20px !important;
  }

  .hero-btn {
    padding: 0 !important;
    font-size: 14px !important;
    letter-spacing: 1px !important;
  }

  /* Make split item text & editorial banner headings look refined on mobile */
  .split-content h3 {
    font-size: 24px !important;
    margin-bottom: 6px !important;
  }

  .editorial-banner h2 {
    font-size: 26px !important;
    margin-bottom: 12px !important;
  }

  .editorial-banner p {
    font-size: 12px !important;
    margin-bottom: 20px !important;
  }
}

/* ============================================================
   STORES / CHAPTERS PAGE
   ============================================================ */
.stores-layout {
  background: #FFFFFF;
  min-height: 100vh;
  padding: 140px 20px 80px;
  /* Space for fixed header */
}

.stores-container {
  max-width: 1200px;
  margin: 0 auto;
}

.stores-header {
  text-align: center;
  margin-bottom: 40px;
}

.stores-title {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.stores-subtitle {
  font-size: 13px;
  color: #333;
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto;
}

.store-groups-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: 60px;
  margin-bottom: 80px;
}

.store-group {
  border-top: 1px solid #eaeaea;
  padding-top: 50px;
}

.store-group:first-child {
  border-top: none;
  padding-top: 0;
}

.store-group-title {
  font-family: var(--font-body);
  font-size: 26px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #000;
  margin-bottom: 30px;
  text-align: left;
}

.store-group-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: stretch;
}

.store-group-media {
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: #f7f7f7;
}

.store-group-video {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.store-group-media:hover .store-group-video {
  transform: scale(1.03);
}

.store-group-details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}

.store-locations-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.store-location-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.store-state-title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #000;
  margin-bottom: 4px;
}

.store-address-text {
  font-size: 13px;
  line-height: 1.6;
  color: #444;
  margin: 0;
}

.store-directions-link {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #000;
  padding-bottom: 2px;
  margin-top: 4px;
  transition: opacity 0.3s ease, border-color 0.3s ease;
}

.store-directions-link:hover {
  opacity: 0.6;
}

.store-directions-link:hover .icon-external {
  transform: translate(2px, -2px);
}

.store-online-section {
  border-top: 1px solid #eaeaea;
  padding-top: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.5px;
}

.store-online-prefix {
  font-weight: 600;
  text-transform: uppercase;
  color: #555;
  font-size: 12px;
}

.store-online-link {
  font-size: 13px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  border-bottom: 1.5px solid #000;
  padding-bottom: 1px;
  transition: opacity 0.3s ease;
  letter-spacing: 1px;
}

.store-online-link:hover {
  opacity: 0.6;
}

.store-online-link:hover .icon-external {
  transform: translate(2px, -2px);
}

@media (max-width: 1024px) {
  .store-group-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .store-groups-list {
    gap: 60px;
  }

  .store-group {
    padding-top: 40px;
  }
}

@media (max-width: 768px) {
  .store-group-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .store-state-title {
    font-size: 12px;
  }

  .store-address-text {
    font-size: 12px;
  }
}

/* ==========================================================================
   COLLECTION PAGE
   ========================================================================== */

.collection-page {
  min-height: 100vh;
  background-color: #f7f7f7;
}

.collection-top-area {
  padding-top: var(--header-height);
  background: #fff;
}

/* Desktop: merge header + toolbar into single row */
@media (min-width: 992px) {
  .collection-top-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 2% !important;
    padding-top: calc(var(--header-height) + 12px) !important;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 10;
  }

  .collection-header-section {
    display: flex !important;
    align-items: baseline !important;
    gap: 12px !important;
    padding: 0 !important;
  }

  .collection-toolbar {
    border: none !important;
    padding: 0 !important;
    position: static !important;
  }

  /* Full-viewport product rows */
  .product-grid {
    grid-auto-rows: calc(100vh - var(--header-height) - 50px);
  }

  .product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .product-image-wrapper {
    aspect-ratio: unset !important;
    flex: 1;
    min-height: 0;
  }

  .product-info {
    flex-shrink: 0;
    padding: 10px 16px !important;
  }
}

.collection-header-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 2% 10px;
  text-align: left;
}

.collection-title {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 400;
  text-transform: none;
  margin-bottom: 0;
  letter-spacing: 0.5px;
}

.collection-count {
  font-family: var(--font-body);
  font-size: 11px;
  color: #888;
}

.collection-toolbar {
  display: flex;
  justify-content: flex-end;
  padding: 10px 2%;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: var(--header-height);
  /* Adjust based on header height */
  background: #fff;
  z-index: 10;
}

.toolbar-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.grid-toggles {
  display: flex;
  gap: 12px;
  margin-right: 12px;
}

.grid-toggle-btn {
  background: none;
  border: none;
  color: #ccc;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  transition: color 0.3s;
}

.grid-toggle-btn.active,
.grid-toggle-btn:hover {
  color: #000;
}

.toolbar-btn {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  letter-spacing: 0.5px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  /* Creates the border effect */
  background-color: #e0e0e0;
  /* Border color */
  border-bottom: 1px solid #e0e0e0;
}

.product-card {
  background: #fff;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #000;
}

.product-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f7f7f7;
}

.product-img-main,
.product-img-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-img-hover {
  opacity: 0;
}

.product-card:hover .product-img-main {
  opacity: 0;
  transform: scale(1.04);
}

.product-card:hover .product-img-hover {
  opacity: 1;
  transform: scale(1.04);
}

.product-info {
  padding: 12px 16px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  background: #fff;
}

.product-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-add-btn {
  background: none;
  border: none;
  color: #888;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  padding: 2px;
}

.product-add-btn:hover {
  color: #000;
}

.product-add-btn svg {
  width: 22px;
  height: 22px;
  transition: color 0.3s ease;
}

.product-add-btn:hover svg {
  transform: none;
}

.product-title {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0px;
}

.product-price {
  font-family: var(--font-body);
  font-size: 12px;
  color: #000;
}

@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
  }
}

@media (max-width: 768px) {
  .collection-toolbar {
    padding: 12px 16px;
    top: 50px;
  }

  .collection-header-section {
    padding: 30px 16px 16px;
  }

  .collection-title {
    font-size: 20px;
  }

  .product-info {
    padding: 12px 16px;
  }
}

/* ==========================================================================
   TEXT PAGES (ABOUT, PRIVACY, CONTACT)
   ========================================================================== */

.text-page-layout {
  padding-top: 100px;
  min-height: 100vh;
  background-color: #fff;
}

.text-page-header {
  padding: 60px 20px 40px;
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
}

.text-page-title {
  font-family: var(--font-body);
  font-size: 28px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
}

.text-page-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px 100px;
  text-align: left;
}

.text-page-body.text-center {
  text-align: center;
}

.text-page-body p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 24px;
}

.text-page-body h2 {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  margin: 40px 0 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.text-page-body h3 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  margin: 24px 0 12px;
  text-transform: uppercase;
}

.text-page-body ul {
  margin-bottom: 24px;
  padding-left: 20px;
}

.text-page-body li {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 12px;
}

.text-link {
  color: #000;
  text-decoration: underline;
  font-weight: 500;
}

.page-action-wrapper {
  margin-top: 40px;
}

/* Contact Form */
.contact-intro {
  max-width: 600px;
  margin: 0 auto 40px;
}

.contact-form {
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ccc;
  background: transparent !important;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #000;
}

.contact-form .btn-primary {
  width: 100%;
  padding: 16px;
  background: #000;
  color: #fff;
  border: none;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form .btn-primary:hover {
  background: #333;
}

/* ==========================================================================
   ABOUT US PAGE
   ========================================================================== */
.about-page {
  padding-top: var(--header-height);
  background: #fff;
  color: #000;
}

/* Section 1: Hero Banner (Image + Separate Content Below) */
.about-hero-banner {
  width: 100%;
  background: #fff;
}

.about-hero-image-wrap {
  width: 100%;
  height: 60vh;
  overflow: hidden;
}

.about-hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero-content-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 20px 60px;
  text-align: center;
}

.about-page-title {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 32px;
  color: #000;
}

.about-page-desc p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 24px;
  text-align: left;
}

/* Section 2: Split Philosophy & Nestled Tags */
.about-split {
  display: flex;
  align-items: stretch;
  /* Keep side column heights matched */
  padding: 0;
  background: #fff;
  border-top: 1px solid #EAEAEA;
  border-bottom: 1px solid #EAEAEA;
}

.about-split__image {
  flex: 1;
  min-height: 80vh;
}

.about-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-split__content {
  flex: 1;
  padding: 80px 6%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-split__heading {
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 32px;
  letter-spacing: 1px;
}

.about-split__text {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 24px;
}

/* Integrated Tags inside Philosophy */
.about-philosophy-tags {
  margin-top: 48px;
  border-top: 1px solid #EAEAEA;
  padding-top: 32px;
}

.about-tags-heading {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  color: #000;
}

.about-tags-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.about-tag-subitem h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  color: #000;
}

.about-tag-subitem p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

.about-tag-link {
  font-size: 12px;
  color: #000;
  text-decoration: underline;
  margin-top: 8px;
  display: inline-block;
  font-weight: 500;
}

/* Section 3: Community Section */
.about-community-section {
  position: relative;
  padding: 100px 6%;
  background: #FFFFFF;
  overflow: hidden;
}

.about-community-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--about-community-bg);
  background-size: cover;
  background-position: center;
  opacity: var(--about-community-opacity, 0.15);
  /* Perfect opacity to balance rich look and text legibility */
  z-index: 1;
  pointer-events: none;
}

.about-community {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about-community h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.about-community p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 24px;
}

.about-community .btn {
  margin-top: 32px;
  display: inline-flex;
  padding: 0 40px;
  height: 52px;
  align-items: center;
  justify-content: center;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1px;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .about-page {
    padding-top: var(--header-height) !important;
  }

  .about-split {
    flex-direction: column;
    align-items: stretch;
  }

  .about-split__image {
    width: 100%;
    height: 50vh;
    min-height: auto;
  }

  .about-split__content {
    width: 100%;
    padding: 60px 20px;
  }

  .about-hero-image-wrap {
    height: 45vh;
  }

  .about-page-title {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .about-hero-content-wrap {
    padding: 40px 20px;
  }

  .about-community-section {
    padding: 60px 20px;
  }

  /* ============================================================
     MOBILE ABOUT US SNAP SCROLL LOCKS (<= 1024px)
     ============================================================ */
  .about-hero-banner,
  .about-split,
  .about-community-section {
    position: sticky !important;
    top: var(--header-height) !important;
    height: calc(100vh - var(--header-height)) !important;
    height: calc(100dvh - var(--header-height)) !important;
    overflow: hidden !important;
    background: #FFFFFF !important;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15) !important;
    transform: translateZ(0) !important;
    will-change: transform !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .about-hero-banner {
    z-index: 1;
  }

  .about-split {
    z-index: 2;
  }

  .about-community-section {
    z-index: 3;
  }

  /* Section 1: Hero Banner Mobile */
  .about-hero-image-wrap {
    flex: 0 0 35vh !important;
    height: 35vh !important;
    width: 100% !important;
    overflow: hidden !important;
  }

  .about-hero-image-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .about-hero-content-wrap {
    flex: 1 !important;
    min-height: 0 !important;
    overflow-y: auto !important;
    padding: 20px 20px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center !important;
    box-sizing: border-box !important;
  }

  .about-page-title {
    font-size: 22px !important;
    margin-bottom: 8px !important;
    text-align: center !important;
    letter-spacing: 1.5px !important;
  }

  .about-page-desc p {
    font-size: 13px !important;
    line-height: 1.5 !important;
    margin-bottom: 10px !important;
    color: #333 !important;
    text-align: center;
  }

  /* Section 2: Philosophy Mobile */
  .about-split__image {
    flex: 0 0 25vh !important;
    height: 25vh !important;
    width: 100% !important;
    overflow: hidden !important;
  }

  .about-split__image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .about-split__content {
    flex: 1 !important;
    min-height: 0 !important;
    overflow-y: auto !important;
    padding: 20px 20px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    box-sizing: border-box !important;
  }

  .about-split__heading {
    font-size: 18px !important;
    margin-bottom: 12px !important;
    text-align: center !important;
  }

  .about-split__text {
    font-size: 13px !important;
    line-height: 1.5 !important;
    margin-bottom: 10px !important;
    color: #333 !important;
    text-align: center !important;
  }

  .about-philosophy-tags {
    margin-top: 16px !important;
    padding-top: 12px !important;
    border-top: 1px solid #EAEAEA !important;
    width: 100% !important;
  }

  .about-tags-heading {
    font-size: 11px !important;
    margin-bottom: 8px !important;
    text-align: center !important;
  }

  .about-tags-list {
    gap: 12px !important;
  }

  .about-tag-subitem h4 {
    font-size: 11px !important;
    margin-bottom: 4px !important;
  }

  .about-tag-subitem p {
    font-size: 12px !important;
    line-height: 1.4 !important;
  }

  .about-tag-link {
    font-size: 11px !important;
    margin-top: 4px !important;
    display: inline-block !important;
  }

  /* Section 3: Community Mobile */
  .about-community-section {
    padding: 30px 20px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .about-community {
    width: 100% !important;
    max-width: 600px !important;
    text-align: center !important;
  }

  .about-community h2 {
    font-size: 20px !important;
    margin-bottom: 12px !important;
  }

  .about-community p {
    font-size: 13px !important;
    line-height: 1.5 !important;
    margin-bottom: 10px !important;
  }

  .about-community .btn {
    margin-top: 12px !important;
    height: 40px !important;
    padding: 0 20px !important;
    font-size: 10px !important;
  }

  /* ============================================================
     MOBILE STOCKISTS CHAPTER SNAP LOCKS (<= 1024px)
     ============================================================ */
  .stores-layout {
    padding-top: var(--header-height) !important;
    padding-bottom: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .stores-container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
  }

  .stores-header {
    position: relative !important;
    top: auto !important;
    height: 110px !important;
    overflow: hidden !important;
    background: #FFFFFF !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
    padding: 15px 16px 5px !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    z-index: 1 !important;
    box-shadow: none !important;
    border-bottom: 1px solid #EAEAEA !important;
  }

  .stores-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px !important;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    width: 100% !important;
  }

  .stores-title::after {
    content: "" !important;
    flex: 1 !important;
    height: 1px !important;
    background: #EAEAEA !important;
  }

  .stores-subtitle {
    font-family: var(--font-body);
    font-size: 11px !important;
    color: var(--color-text-muted) !important;
    margin-top: 4px !important;
    margin-bottom: 0 !important;
    text-align: left !important;
  }

  .store-groups-list {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    gap: 0 !important;
  }

  .store-group:nth-of-type(1) {
    position: relative !important;
    top: auto !important;
    height: calc(100vh - var(--header-height) - 110px) !important;
    height: calc(100dvh - var(--header-height) - 110px) !important;
    overflow: hidden !important;
    background: #FFFFFF !important;
    box-shadow: none !important;
    padding: 15px 16px !important;
    box-sizing: border-box !important;
    z-index: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    border-top: none !important;
  }

  .store-group:nth-of-type(n+2) {
    position: sticky !important;
    top: var(--header-height) !important;
    height: calc(100vh - var(--header-height)) !important;
    height: calc(100dvh - var(--header-height)) !important;
    overflow: hidden !important;
    background: #FFFFFF !important;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15) !important;
    transform: translateZ(0) !important;
    will-change: transform !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    padding: 20px 16px !important;
    border-top: none !important;
    box-sizing: border-box !important;
  }

  .store-group:nth-of-type(2) {
    z-index: 2 !important;
  }

  .store-group:nth-of-type(3) {
    z-index: 3 !important;
  }

  .store-group-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    flex: 1 !important;
    min-height: 0 !important;
    height: auto !important;
    justify-content: flex-start !important;
  }

  .store-group-media {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 9 !important;
    flex: none !important;
  }

  .store-group-video {
    height: 100% !important;
    object-fit: cover !important;
  }

  .store-group-details {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    min-height: 0 !important;
    overflow-y: auto !important;
    gap: 12px !important;
  }

  .store-locations-section {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 12px !important;
    width: 100% !important;
    flex-shrink: 0 !important;
    padding-bottom: 5px !important;
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
  }
  .store-locations-section::-webkit-scrollbar {
    display: none !important;
  }

  .store-location-item {
    width: 85% !important;
    flex: 0 0 85% !important;
    scroll-snap-align: start !important;
    background: #FAFAFA !important;
    padding: 12px !important;
    border: 1px solid #F0F0F0 !important;
    box-sizing: border-box !important;
  }

  .store-online-section {
    border-top: 1px solid #eaeaea !important;
    padding-top: 8px !important;
    margin-top: 8px !important;
    margin-bottom: 8px !important;
    flex-shrink: 0 !important;
  }
}

/* ============================================================
   PREMIUM CART DRAWER
   ============================================================ */
.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

body.cart-drawer-open .cart-drawer-overlay {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  height: 100dvh;
  transform: translateX(100%);
  background: #FFFFFF;
  z-index: 3000;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
}

body.cart-drawer-open .cart-drawer {
  transform: translateX(0);
}

.cart-drawer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 20px;
  border-bottom: 1px solid #EAEAEA;
}

.cart-drawer__title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.cart-drawer__close {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: #000;
  transition: opacity 0.3s;
}

.cart-drawer__close:hover {
  opacity: 0.6;
}

.cart-drawer__content {
  flex: 1;
  overflow-y: auto;
  padding: 24px 20px;
}

.cart-drawer__empty {
  text-align: center;
  padding: 40px 0;
  color: var(--color-text-muted);
  font-size: 14px;
}

.cart-drawer__shop-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 12px;
  font-weight: 700;
  color: #000;
  text-decoration: underline;
  letter-spacing: 1px;
}

.cart-drawer__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-drawer__item {
  display: flex;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid #F5F5F5;
}

.cart-drawer__item-image {
  width: 80px;
  height: 100px;
  overflow: hidden;
  background: #F7F7F7;
  flex-shrink: 0;
}

.cart-drawer__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-drawer__item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cart-drawer__item-title {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}

.cart-drawer__item-price {
  font-size: 12px;
  font-weight: 700;
  color: #000;
}

.cart-drawer__item-qty {
  font-size: 11px;
  color: var(--color-text-muted);
}

.cart-drawer__footer {
  border-top: 1px solid #EAEAEA;
  padding: 24px 20px;
  background: #FAFAFA;
}

.cart-drawer__subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}

.cart-drawer__shipping-note {
  font-size: 11px;
  color: var(--color-text-muted);
  margin-bottom: 20px;
  line-height: 1.4;
}

.cart-drawer__checkout-btn {
  width: 100%;
  height: 48px !important;
  border-radius: 50px;
}

/* Desktop 100vh Sections layout (without snap scroll animation) */
@media (min-width: 1025px) {

  /* ABOUT US PAGE - DESKTOP 100VH ADJUSTMENTS */
  .about-page {
    padding-top: 0 !important;
    
  }

  .about-hero-banner {
    position: sticky !important;
    top: 0 !important;
    z-index: 1 !important;
    height: 100vh !important;
    display: flex !important;
    flex-direction: row-reverse !important;
    overflow: hidden !important;
    background: #FFFFFF !important;
    padding-top: var(--header-height) !important;
    /* Push content below header */
    box-sizing: border-box !important;
  }

  .about-hero-image-wrap {
    flex: 1 !important;
    height: 100% !important;
  }

  .about-hero-image-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .about-hero-content-wrap {
    flex: 1 !important;
    height: 100% !important;
    overflow-y: auto !important;
    padding: 40px 6% 40px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
    text-align: left !important;
    box-sizing: border-box !important;
  }

  .about-page-title {
    text-align: left !important;
    font-size: 32px !important;
    margin-bottom: 24px !important;
  }

  .about-split {
    position: sticky !important;
    top: var(--header-height) !important;
    z-index: 2 !important;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15) !important;
    transform: translateZ(0) !important;
    will-change: transform !important;
    height: calc(100vh - var(--header-height)) !important;
    display: flex !important;
    flex-direction: row !important;
    overflow: hidden !important;
    border-top: none !important;
    /* Avoid double borders */
    background: #FFFFFF !important;
  }

  .about-split__image {
    flex: 1.2 !important;
    /* Ratios: 1.2 image / 1 text content */
    height: 100% !important;
    min-height: auto !important;
  }

  .about-split__content {
    flex: 1 !important;
    height: 100% !important;
    overflow-y: hidden !important;
    /* COMPLETELY REMOVE SCROLLBAR */
    padding: 30px 5% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    box-sizing: border-box !important;
  }

  .about-split__heading {
    font-size: 22px !important;
    margin-bottom: 16px !important;
    letter-spacing: 1px !important;
  }

  .about-split__text {
    font-size: 13px !important;
    line-height: 1.6 !important;
    margin-bottom: 12px !important;
    color: #333 !important;
  }

  .about-philosophy-tags {
    margin-top: 20px !important;
    padding-top: 15px !important;
    border-top: 1px solid #EAEAEA !important;
  }

  .about-tags-heading {
    font-size: 12px !important;
    margin-bottom: 12px !important;
  }

  .about-tags-list {
    gap: 15px !important;
  }

  .about-tag-subitem h4 {
    font-size: 12px !important;
    margin-bottom: 4px !important;
  }

  .about-tag-subitem p {
    font-size: 12px !important;
    line-height: 1.5 !important;
    color: #666 !important;
  }

  .about-tag-link {
    font-size: 11px !important;
    margin-top: 4px !important;
  }

  .about-community-section {
    position: sticky !important;
    top: var(--header-height) !important;
    z-index: 3 !important;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15) !important;
    transform: translateZ(0) !important;
    will-change: transform !important;
    height: calc(100vh - var(--header-height)) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    padding: 60px 6% !important;
    background: #FFFFFF !important;
  }

  .about-community h2 {
    font-size: 26px !important;
    margin-bottom: 24px !important;
  }

  .about-community p {
    font-size: 14px !important;
    line-height: 1.7 !important;
    color: #333 !important;
    margin-bottom: 16px !important;
  }

  .about-community .btn {
    margin-top: 16px !important;
  }

  /* STOCKISTS PAGE - DESKTOP 100VH ADJUSTMENTS */
  .stores-layout {
    padding: var(--header-height) 0 0 !important;
    background: #FFFFFF !important;
  }

  .stores-container {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
  }

  .stores-header {
    height: 140px !important;
    /* Compact header height */
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
    margin: 0 !important;
    padding: 20px 8% 10px !important;
    box-sizing: border-box !important;
    border-bottom: 1px solid #EAEAEA !important;
    background: #FFFFFF !important;
  }

  .stores-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px !important;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
    width: 100% !important;
  }

  .stores-title::after {
    content: "" !important;
    flex: 1 !important;
    height: 1px !important;
    background: #EAEAEA !important;
  }

  .stores-subtitle {
    font-family: var(--font-body);
    font-size: 13px !important;
    color: var(--color-text-muted) !important;
    margin-top: 6px !important;
    margin-bottom: 0 !important;
  }

  .store-groups-list {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    gap: 0 !important;
  }

  .store-group:nth-of-type(1) {
    position: relative !important;
    top: auto !important;
    height: calc(100vh - var(--header-height) - 140px) !important;
    padding: 20px 8% !important;
    z-index: 1 !important;
    background: #FFFFFF !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    border-bottom: 1px solid #EAEAEA !important;
    border-top: none !important;
  }

  .store-group:nth-of-type(n+2) {
    position: sticky !important;
    top: var(--header-height) !important;
    height: calc(100vh - var(--header-height)) !important;
    padding: 40px 8% !important;
    background: #FFFFFF !important;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15) !important;
    transform: translateZ(0) !important;
    will-change: transform !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    border-bottom: none !important;
    border-top: none !important;
  }

  .store-group:nth-of-type(2) {
    z-index: 2 !important;
  }

  .store-group:nth-of-type(3) {
    z-index: 3 !important;
  }

  .store-group-title {
    font-size: 24px !important;
    margin-bottom: 16px !important;
  }

  .store-group-grid {
    display: grid !important;
    grid-template-columns: 1.2fr 1fr !important;
    gap: 60px !important;
    align-items: center !important;
    flex: 1 !important;
    min-height: 0 !important;
  }

  .store-group-media {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 9 !important;
  }

  .store-group-video {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
    border-radius: 4px !important;
  }

  .store-group-details {
    height: 100% !important;
    max-height: 100% !important;
    overflow-y: auto !important;
    padding-right: 20px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 15px !important;
  }

  .store-locations-section {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
  }

  .store-state-title {
    font-size: 13px !important;
    margin-bottom: 4px !important;
  }

  .store-address-text {
    font-size: 12px !important;
    line-height: 1.5 !important;
    margin-bottom: 6px !important;
  }

  .store-directions-link {
    font-size: 11px !important;
  }

  .store-online-section {
    margin-top: 5px !important;
    font-size: 12px !important;
  }
}

/* ============================================================
   UNIVERSAL TYPOGRAPHY SYSTEM (Space Mono + Aron)
   ============================================================ */

/* All headings, titles, sub-headers use Aron (Bold) */
h1,
h2,
h3,
h4,
h5,
h6,
.hero-title,
.editorial-banner h2,
.product-title,
.footer__heading,
.cart-drawer__title,
.text-page-title,
.store-state-title,
.collections-page-title,
.about-hero-title,
.about-section-title {
  font-family: var(--font-heading) !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}

/* All CTAs, buttons, nav links, actions use Aron (Bold) */
.btn,
.btn-add,
.btn-buy,
.hero-btn,
.split-link,
.action-btn,
.header__nav a,
.drawer-huge-links a,
.drawer-menu-list a,
.drawer-bottom-list a,
.cart-drawer__shop-link,
.cart-drawer__checkout-btn,
.store-directions-link {
  font-family: var(--font-heading) !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
}

/* Base Body text style for clean monospaced layout */
body,
p,
span,
li,
a:not(.btn):not(.split-link):not(.hero-btn),
input,
textarea,
select,
.breadcrumbs,
.tax-note,
.product-description,
.cart-drawer__shipping-note,
.store-address-text {
  font-family: var(--font-body);
}

/* ============================================================
   GOE PREMIUM SIZE GUIDE MODAL OVERLAY
   ============================================================ */
.goe-size-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
}

.goe-size-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.goe-size-modal-container {
  background-color: #000000;
  /* Luxury streetwear black theme */
  border: 1px solid #222222;
  width: 90%;
  max-width: 800px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transform: translateY(30px) scale(0.95);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.goe-size-modal-overlay.active .goe-size-modal-container {
  transform: translateY(0) scale(1);
}

.goe-size-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: #ffffff;
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.goe-size-modal-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

.goe-size-modal-header {
  padding: 30px 40px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #111111;
  background: #000000;
}

.goe-size-modal-title {
  color: #ffffff;
  font-family: var(--font-heading) !important;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
}

.goe-size-modal-toggle {
  display: flex;
  background-color: #111111;
  padding: 3px;
  border-radius: 30px;
  border: 1px solid #222222;
  margin-right: 40px;
}

.goe-toggle-btn {
  background: none;
  border: none;
  color: #888888;
  padding: 8px 20px;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-heading) !important;
  letter-spacing: 1.5px;
  border-radius: 30px;
  cursor: pointer;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.goe-toggle-btn.active {
  color: #000000;
  background-color: #ffffff;
}

.goe-size-modal-content {
  padding: 30px 40px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000000;
  overflow-y: auto;
  max-height: 70vh;
}

.goe-size-chart-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Mobile responsive styles */
@media (max-width: 768px) {
  .goe-size-modal-container {
    width: 95%;
    max-height: 90vh;
    border-radius: 8px;
  }

  .goe-size-modal-header {
    padding: 24px 20px 15px;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .goe-size-modal-close {
    top: 18px;
    right: 18px;
  }

  .goe-size-modal-toggle {
    margin-right: 0;
    width: 100%;
    justify-content: center;
  }

  .goe-toggle-btn {
    flex: 1;
    text-align: center;
    padding: 6px 12px;
  }

  .goe-size-modal-content {
    padding: 20px;
    max-height: 60vh;
  }
}

/* ============================================================
   SHOPIFY-SPECIFIC OVERRIDES
   Ensure our custom layout is never overridden by base.css or
   commercial theme styles injected via content_for_header
   ============================================================ */

/* Prevent base.css from adding weird spacing/sizing to our custom sections */
.template-index main.scroll-container,
.template-product main.scroll-container,
.template-collection main.scroll-container,
.template-page main.scroll-container {
  padding: 0 !important;
  margin: 0 !important;
}

/* Ensure our header is always on top of everything */
.header {
  z-index: 1000 !important;
}

/* Ensure global drawer is on top of header */
.global-drawer-overlay {
  z-index: 1999 !important;
}

.global-drawer {
  z-index: 2000 !important;
}

/* Cart drawer z-index */
.cart-drawer-overlay {
  z-index: 2999 !important;
}

.cart-drawer {
  z-index: 3000 !important;
}

/* Search overlay z-index */
.search-overlay {
  z-index: 10000 !important;
}

/* Footer text logo fallback (when no image is uploaded in Shopify Customizer) */
.footer__text-logo {
  font-family: 'Outfit', sans-serif !important;
  font-weight: 800 !important;
  font-size: 80px !important;
  letter-spacing: 8px !important;
  text-transform: uppercase !important;
  color: #FFFFFF !important;
  line-height: 1 !important;
  text-align: center !important;
  width: 100% !important;
}

@media (max-width: 768px) {
  .footer__text-logo {
    font-size: 36px !important;
    letter-spacing: 4px !important;
  }
}

/* Ensure product-layout never gets 100vh snap on product pages */
body.template-product .product-layout {
  height: auto !important;
  min-height: auto !important;
  overflow: visible !important;
}

/* Ensure collection page never gets 100vh snap */
body.template-collection .collection-page {
  height: auto !important;
  min-height: auto !important;
  overflow: visible !important;
}

/* Ensure about-page section wrapper on Shopify doesn't force 100vh */
body.template-page .scroll-container > .shopify-section {
  height: auto !important;
  min-height: auto !important;
  overflow: visible !important;
}

/* Fix the about-page wrapper itself to allow sticky sections to scroll */
body.template-page .about-page {
  
}

/* Fix stores page wrapper */
body.template-page .stores-layout {
  
}

/* ============================================================
   RESPONSIVE DESIGN FOR SMALL SCREEN HEIGHTS (<= 740px)
   Prevents scroll trap on devices like iPhone 13 / URL bars
   ============================================================ */
@media (max-width: 1024px) and (max-height: 740px) {
  /* ABOUT US PAGE OVERRIDES */
  .about-hero-image-wrap {
    flex: 0 0 32vh !important;
    height: 32vh !important;
  }
  .about-split__image {
    flex: 0 0 26vh !important;
    height: 26vh !important;
  }
  .about-page-title {
    font-size: 18px !important;
    margin-bottom: 4px !important;
  }
  .about-page-desc p {
    font-size: 11px !important;
    line-height: 1.4 !important;
    margin-bottom: 6px !important;
  }
  .about-split__heading {
    font-size: 15px !important;
    margin-bottom: 6px !important;
  }
  .about-split__text {
    font-size: 11px !important;
    line-height: 1.4 !important;
    margin-bottom: 6px !important;
  }
  .about-philosophy-tags {
    margin-top: 8px !important;
    padding-top: 6px !important;
  }
  .about-tags-heading {
    font-size: 9px !important;
    margin-bottom: 4px !important;
  }
  .about-tag-subitem h4 {
    font-size: 9px !important;
    margin-bottom: 2px !important;
  }
  .about-tag-subitem p {
    font-size: 10px !important;
    line-height: 1.3 !important;
  }
  .about-community h2 {
    font-size: 16px !important;
    margin-bottom: 8px !important;
  }
  .about-community p {
    font-size: 11px !important;
    line-height: 1.4 !important;
    margin-bottom: 6px !important;
  }
  .about-community .btn {
    margin-top: 6px !important;
    height: 32px !important;
    font-size: 9px !important;
    padding: 0 16px !important;
  }

  /* STORES PAGE OVERRIDES */
  .stores-header {
    height: 80px !important;
    padding: 10px 16px 5px !important;
  }
  .stores-title {
    font-size: 18px !important;
  }
  .stores-subtitle {
    font-size: 10px !important;
  }
  .store-group:nth-of-type(1) {
    height: calc(100vh - var(--header-height) - 80px) !important;
    height: calc(100dvh - var(--header-height) - 80px) !important;
    padding: 10px 16px !important;
    justify-content: center !important;
  }
  .store-group:nth-of-type(n+2) {
    padding: 10px 16px !important;
    justify-content: center !important;
  }
  .store-group-media {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 9 !important;
    flex: none !important;
  }
  .store-group-grid {
    gap: 16px !important;
  }
  .store-group-details {
    gap: 12px !important;
  }
  .store-locations-section {
    gap: 12px !important;
  }
  .store-location-item {
    padding: 8px !important;
  }
  .store-location-item h3 {
    font-size: 12px !important;
    margin-bottom: 4px !important;
  }
  .store-location-item p {
    font-size: 10px !important;
    line-height: 1.3 !important;
  }
  .store-directions-link {
    font-size: 9px !important;
    margin-top: 4px !important;
  }

  /* HOMEPAGE OVERRIDES */
  .hero-title {
    font-size: 24px !important;
    margin-bottom: 16px !important;
  }
  .split-content h3 {
    font-size: 18px !important;
    margin-bottom: 4px !important;
  }
  .split-link {
    font-size: 10px !important;
    padding-bottom: 2px !important;
  }
  .editorial-banner h2 {
    font-size: 20px !important;
    margin-bottom: 8px !important;
  }
  .editorial-banner p {
    font-size: 11px !important;
    line-height: 1.4 !important;
    margin-bottom: 12px !important;
  }
  .editorial-banner .btn {
    height: 32px !important;
    font-size: 9px !important;
    padding: 0 16px !important;
  }

  /* UNIVERSAL FOOTER OVERRIDES */
  .site-footer {
    padding: 15px 16px 20px !important;
  }
  .footer__top {
    margin-bottom: 20px !important;
    gap: 20px !important;
  }
  .footer__subtext {
    font-size: 10px !important;
    line-height: 1.5 !important;
  }
  .footer__heading {
    font-size: 11px !important;
    margin-bottom: 12px !important;
  }
  .footer__column {
    margin-bottom: 10px !important;
  }
  .footer__bottom {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }
  .footer__socials svg {
    width: 16px !important;
    height: 16px !important;
  }
  .footer__logo-img {
    max-width: 250px !important;
  }
}

/* Ensure footer stays on top of sticky sections on About & Stores pages */
body.page-about-us-snapping #shopify-section-footer,
body.page-stores-snapping #shopify-section-footer {
  position: relative !important;
  z-index: 10 !important;
}




 / *   F O R C E   M O B I L E   A L I G N M E N T   F I X   F O R   S T O C K I S T S   1 6 : 9   V I D E O   * / 
 @ m e d i a   ( m a x - w i d t h :   1 0 2 4 p x )   { 
     . s t o r e - g r o u p ,   . s t o r e - g r o u p : n t h - o f - t y p e ( 1 ) ,   . s t o r e - g r o u p : n t h - o f - t y p e ( n + 2 )   { 
         j u s t i f y - c o n t e n t :   f l e x - s t a r t   ! i m p o r t a n t ; 
     } 
     . s t o r e - g r o u p - g r i d   { 
         j u s t i f y - c o n t e n t :   f l e x - s t a r t   ! i m p o r t a n t ; 
     } 
     . s t o r e - g r o u p - d e t a i l s   { 
         j u s t i f y - c o n t e n t :   f l e x - s t a r t   ! i m p o r t a n t ; 
     } 
 }  
 
 @ k e y f r a m e s   p u l s e   { 
     0 %   {   o p a c i t y :   0 . 5 ;   } 
     1 0 0 %   {   o p a c i t y :   1 ;   } 
 }  
 