/** Shopify CDN: Minification failed

Line 7:0 Unexpected "009"
Line 7817:0 Unexpected "}"

**/
009/* ============================================================
   BLACK SHEEP SOCIETY — Complete Theme CSS
   Design reference: staycoldapparel.com
   ============================================================ */

/* ============================================================
   CUSTOM FONTS — StayCold font system
   ============================================================ */
@font-face {
  font-family: 'BSCond-Bold';
  src: url('https://cdn.shopify.com/s/files/1/0716/2065/files/StayCold-Cond-Bold-Oblique.woff2') format('woff2'),
       url('https://cdn.shopify.com/s/files/1/0716/2065/files/StayCold-Cond-Bold-Oblique.woff') format('woff');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* Fallback: Barlow Condensed from Google Fonts (loaded in theme.liquid) */

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Colors */
  --color-bg:            #ffffff;
  --color-bg-alt:        #f5f5f5;
  --color-black:         #000000;
  --color-white:         #ffffff;
  --color-text:          #000000;
  --color-text-muted:    #666666;
  --color-border:        rgba(0,0,0,0.12);
  --color-accent:        #f2a900;   /* yellow — star ratings, badges */
  --color-sale:          #e52321;   /* red — sale price, sale badge */
  --color-success:       #a1ff00;
  --color-header-bg:     #000000;
  --color-header-text:   #ffffff;
  --color-footer-bg:     #000000;
  --color-footer-text:   #ffffff;
  --color-btn-bg:        #000000;
  --color-btn-text:      #ffffff;
  --color-badge-sold:    #bebdb9;
  --color-badge-new:     #f2a900;

  /* Typography */
  --font-heading:        'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  --font-body:           'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  --font-weight-heading: 800;
  --font-style-heading:  italic;
  --text-transform:      uppercase;
  --letter-spacing:      -0.01em;

  /* Sizes */
  --text-xs:    0.6875rem;
  --text-sm:    0.8125rem;
  --text-base:  0.9375rem;
  --text-lg:    1.125rem;
  --text-xl:    1.375rem;
  --text-2xl:   1.75rem;
  --text-3xl:   2.25rem;
  --text-4xl:   3rem;
  --text-5xl:   4rem;
  --text-hero:  clamp(3rem, 8vw, 7rem);

  /* Spacing */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* Layout */
  --max-width:      1440px;
  --gutter:         clamp(1rem, 3vw, 3rem);
  --header-height:  60px;
  --radius:         0px;   /* StayCold = zero radius everywhere */

  /* Transitions */
  --transition:     0.2s ease;
  --transition-slow: 0.4s ease;
}

@media (min-width: 768px) {
  :root {
    --header-height: 64px;
    --text-3xl: 3rem;
    --text-4xl: 4rem;
    --text-5xl: 5.5rem;
  }
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.4;
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
svg { display: block; }

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--color-accent);
  color: var(--color-black);
  padding: var(--sp-3) var(--sp-6);
  font-weight: 700;
  z-index: 10000;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container--narrow {
  max-width: 860px;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6,
.heading {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-heading);
  font-style: var(--font-style-heading);
  text-transform: var(--text-transform);
  letter-spacing: var(--letter-spacing);
  line-height: 0.95;
}

h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
h6 { font-size: var(--text-base); }

p { line-height: 1.6; }

.eyebrow {
  font-size: var(--text-sm);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0 var(--sp-8);
  height: 48px;
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary,
.btn--primary {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}
.btn-primary:hover,
.btn--primary:hover {
  background: transparent;
  color: var(--color-black);
}

.btn-outline,
.btn--outline {
  background: transparent;
  color: var(--color-black);
  border-color: var(--color-black);
}
.btn-outline:hover,
.btn--outline:hover {
  background: var(--color-black);
  color: var(--color-white);
}

.btn-white,
.btn--white {
  background: var(--color-white);
  color: var(--color-black);
  border-color: var(--color-white);
}
.btn-white:hover,
.btn--white:hover {
  background: transparent;
  color: var(--color-white);
}

.btn-white-outline,
.btn--outline-white {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}
.btn-white-outline:hover,
.btn--outline-white:hover {
  background: var(--color-white);
  color: var(--color-black);
}

/* Accent / yellow button — hero CTAs */
.btn--accent {
  background: var(--color-accent);
  color: var(--color-black);
  border-color: var(--color-accent);
}
.btn--accent:hover {
  background: transparent;
  color: var(--color-accent);
}

.btn-full, .btn--full { width: 100%; }
.btn-lg,   .btn--lg   { height: 56px; font-size: var(--text-lg); padding: 0 var(--sp-10); }
.btn-sm,   .btn--sm   { height: 36px; font-size: var(--text-sm); padding: 0 var(--sp-5); }

.btn[disabled], .btn.disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background: var(--color-black);
  color: var(--color-white);
  height: 36px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  z-index: 200;
}

.announcement-bar__track {
  display: flex;
  align-items: center;
  gap: 0;
  animation: marquee-scroll 28s linear infinite;
  white-space: nowrap;
  will-change: transform;
}

.announcement-bar__track:hover { animation-play-state: paused; }

.announcement-bar__item {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  padding-inline: var(--sp-10);
  font-size: var(--text-sm);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}

.announcement-bar__item a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.announcement-bar__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   SITE HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-black);
  color: var(--color-white);
  height: var(--header-height);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.site-header.header--hidden {
  transform: translateY(-100%);
}

.site-header.header--scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
  padding-inline: var(--gutter);
  max-width: var(--max-width);
  margin-inline: auto;
  gap: var(--sp-4);
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.header-logo__img {
  height: 42px;
  width: auto;
  display: block;
  /* mix-blend-mode: lighten makes black bg transparent */
  filter: brightness(0) invert(1);
}

/* Desktop Nav — centre column */
.header-nav {
  display: none;
}

@media (min-width: 1000px) {
  .header-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-1);
  }
}

.header-nav__item {
  position: relative;
}

.header-nav__link {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--text-sm);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-white);
  transition: color var(--transition);
  white-space: nowrap;
}

.header-nav__link:hover,
.header-nav__link.is-active {
  color: var(--color-accent);
}

.header-nav__link svg {
  width: 10px;
  height: 10px;
  transition: transform var(--transition);
}

.header-nav__item:hover .header-nav__link svg {
  transform: rotate(180deg);
}

/* Mega dropdown */
.header-nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 480px;
  background: var(--color-black);
  border-top: 2px solid var(--color-accent);
  padding: var(--sp-8);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition), visibility var(--transition);
  z-index: 50;
}

.header-nav__item:hover .header-nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-dropdown__col h4 {
  font-size: var(--text-xs);
  color: var(--color-accent);
  margin-bottom: var(--sp-4);
  letter-spacing: 0.15em;
}

.nav-dropdown__col a {
  display: block;
  padding: var(--sp-1) 0;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.8);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  transition: color var(--transition);
}

.nav-dropdown__col a:hover { color: var(--color-white); }

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--sp-1);
}

.header-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--color-white);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
  position: relative;
}

.header-action-btn:hover { color: var(--color-accent); }

.header-action-btn svg {
  width: 20px;
  height: 20px;
}

.cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 16px;
  height: 16px;
  background: var(--color-accent);
  color: var(--color-black);
  font-size: 10px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Mobile menu toggle */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: var(--sp-2);
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn span {
  display: block;
  height: 2px;
  background: var(--color-white);
  transition: transform var(--transition), opacity var(--transition), width var(--transition);
  transform-origin: center;
}

.mobile-menu-btn span:nth-child(1) { width: 24px; }
.mobile-menu-btn span:nth-child(2) { width: 18px; }
.mobile-menu-btn span:nth-child(3) { width: 24px; }

.mobile-menu-btn.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  width: 24px;
}
.mobile-menu-btn.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.mobile-menu-btn.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  width: 24px;
}

@media (min-width: 1000px) {
  .mobile-menu-btn { display: none; }
}

/* Search bar slide-down */
.header-search {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-black);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: var(--sp-4) var(--gutter);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform var(--transition-slow), opacity var(--transition-slow), visibility var(--transition-slow);
  z-index: 99;
}

.header-search.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.header-search__inner {
  max-width: var(--max-width);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  border-bottom: 2px solid var(--color-white);
  padding-bottom: var(--sp-3);
}

.header-search__input {
  flex: 1;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: var(--text-xl);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  outline: none;
}

.header-search__input::placeholder {
  color: rgba(255,255,255,0.4);
}

.header-search__submit,
.header-search__close {
  color: var(--color-white);
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-2);
  transition: color var(--transition);
}

.header-search__submit:hover,
.header-search__close:hover { color: var(--color-accent); }

.header-search__submit svg,
.header-search__close svg { width: 20px; height: 20px; }

/* ============================================================
   MOBILE MENU — FULLSCREEN PREMIUM
   ============================================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--color-black);
  z-index: 500;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-4) var(--gutter);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  min-height: var(--header-height);
  flex-shrink: 0;
}

.mobile-menu__logo img {
  height: 40px;
  filter: brightness(0) invert(1);
}

.mobile-menu__close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
}

.mobile-menu__close:hover { color: var(--color-accent); }
.mobile-menu__close svg { width: 24px; height: 24px; }

.mobile-menu__body {
  flex: 1;
  padding: var(--sp-6) var(--gutter);
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.mobile-menu__nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-4) 0;
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--color-white);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition);
  line-height: 1;
}

.mobile-menu__nav-link:hover { color: var(--color-accent); }

.mobile-menu__nav-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Sub-menu accordion */
.mobile-menu__sub {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.mobile-menu__sub.is-open {
  max-height: 400px;
}

.mobile-menu__sub-link {
  display: block;
  padding: var(--sp-3) 0 var(--sp-3) var(--sp-4);
  font-size: var(--text-lg);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.mobile-menu__sub-link:hover { color: var(--color-white); }

.mobile-menu__footer {
  padding: var(--sp-6) var(--gutter) var(--sp-8);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  flex-shrink: 0;
}

.mobile-menu__secondary-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4) var(--sp-6);
}

.mobile-menu__secondary-links a {
  font-size: var(--text-sm);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.mobile-menu__secondary-links a:hover { color: var(--color-white); }

.mobile-menu__socials {
  display: flex;
  gap: var(--sp-5);
}

.mobile-menu__socials a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.mobile-menu__socials a:hover { color: var(--color-white); }
.mobile-menu__socials svg { width: 20px; height: 20px; }

.mobile-menu__actions {
  display: flex;
  gap: var(--sp-3);
}

/* Backdrop */
.site-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 400;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-slow), visibility var(--transition-slow);
  backdrop-filter: blur(2px);
}

.site-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

/* ============================================================
   HERO BANNER
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--color-black);
}

.hero--full { min-height: 100vh; }
.hero--medium { min-height: 70vh; }
.hero--short { min-height: 50vh; }

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img,
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: var(--sp-16) var(--gutter);
  max-width: var(--max-width);
  margin-inline: auto;
  width: 100%;
}

.hero__eyebrow {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  margin-bottom: var(--sp-4);
}

.hero__title {
  font-size: var(--text-hero);
  color: var(--color-white);
  line-height: 0.9;
  margin-bottom: var(--sp-6);
  max-width: 18ch;
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.8);
  max-width: 50ch;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.5;
  margin-bottom: var(--sp-8);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
}

/* Hero content alignment variants */
.hero--center .hero__content { text-align: center; margin-inline: auto; }
.hero--center .hero__actions { justify-content: center; }
.hero--right .hero__content { margin-left: auto; }

/* ============================================================
   MARQUEE / TICKER BAR
   ============================================================ */
.marquee-bar {
  background: var(--color-accent);
  color: var(--color-black);
  height: 44px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.marquee-bar--dark {
  background: var(--color-black);
  color: var(--color-white);
}

.marquee-bar--border {
  border-top: 2px solid var(--color-black);
  border-bottom: 2px solid var(--color-black);
}

.marquee-bar__track {
  display: flex;
  align-items: center;
  gap: 0;
  animation: marquee-scroll 20s linear infinite;
  white-space: nowrap;
  will-change: transform;
}

.marquee-bar__item {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-5);
  padding-inline: var(--sp-8);
  font-size: var(--text-sm);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}

.marquee-bar__sep {
  font-size: 1.2em;
  opacity: 0.5;
  flex-shrink: 0;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
  flex-wrap: wrap;
}

.section-title {
  font-size: var(--text-3xl);
  line-height: 0.95;
}

.section-link {
  font-size: var(--text-sm);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  white-space: nowrap;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

.section-link:hover { color: var(--color-text-muted); }

.section-link svg { width: 14px; height: 14px; }

/* ============================================================
   PRODUCT CARD
   ============================================================ */
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--color-bg);
  position: relative;
}

.product-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--color-bg-alt);
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.3s ease;
  display: block;
}

.product-card__img--hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-card:hover .product-card__img--hover { opacity: 1; }
.product-card:hover .product-card__img:first-child { transform: scale(1.03); }

.product-card__badges {
  position: absolute;
  top: var(--sp-3);
  left: var(--sp-3);
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  z-index: 2;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
}

.badge--sale {
  background: var(--color-sale);
  color: var(--color-white);
}

.badge--new {
  background: var(--color-accent);
  color: var(--color-black);
}

.badge--sold-out {
  background: var(--color-badge-sold);
  color: var(--color-black);
}

.badge--low-stock {
  background: var(--color-black);
  color: var(--color-white);
  border: 1px solid var(--color-border);
}

.badge--free-ship {
  background: var(--color-black);
  color: var(--color-white);
  font-size: 10px;
}

.product-card__quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-black);
  color: var(--color-white);
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--text-sm);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.product-card:hover .product-card__quick-add { transform: translateY(0); }

.product-card__info {
  padding: var(--sp-3) 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.product-card__vendor {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
}

.product-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--color-text);
}

.product-card__title a { transition: color var(--transition); }
.product-card__title a:hover { color: var(--color-text-muted); }

.product-card__price-row {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: var(--sp-2);
}

.product-card__price {
  font-size: var(--text-base);
  font-weight: 700;
  font-style: italic;
  color: var(--color-text);
}

.product-card__price--compare {
  color: var(--color-text-muted);
  text-decoration: line-through;
  font-weight: 400;
}

.product-card__price--sale { color: var(--color-sale); }

.product-card__shipping {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-top: var(--sp-1);
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5) var(--sp-4);
}

@media (min-width: 640px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1200px) {
  .product-grid { grid-template-columns: repeat(4, 1fr); }
}

.product-grid--3 {
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .product-grid--3 { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   COLLECTION TILES
   ============================================================ */
.collection-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}

@media (min-width: 640px) {
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1000px) {
  .collection-grid { grid-template-columns: repeat(3, 1fr); }
}

.collection-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  display: flex;
  align-items: flex-end;
  background: var(--color-black);
}

.collection-card--wide {
  aspect-ratio: 16/9;
  grid-column: span 2;
}

.collection-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: grayscale(0.15);
}

.collection-card:hover .collection-card__img { transform: scale(1.05); }

.collection-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.15) 60%);
}

.collection-card__content {
  position: relative;
  z-index: 2;
  padding: var(--sp-6);
  color: var(--color-white);
  width: 100%;
}

.collection-card__label {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  margin-bottom: var(--sp-2);
}

.collection-card__title {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 0.95;
  margin-bottom: var(--sp-4);
}

/* ============================================================
   BRAND STORY / SPLIT SECTION
   ============================================================ */
.split-section {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 560px;
}

@media (min-width: 768px) {
  .split-section { grid-template-columns: 1fr 1fr; }
  .split-section--60-40 { grid-template-columns: 3fr 2fr; }
  .split-section--40-60 { grid-template-columns: 2fr 3fr; }
  .split-section--reverse .split-section__media { order: 2; }
  .split-section--reverse .split-section__content { order: 1; }
}

.split-section__media {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.split-section__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.split-section:hover .split-section__media img { transform: scale(1.03); }

.split-section__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--sp-12) var(--gutter);
  background: var(--split-bg, var(--color-bg));
  color: var(--split-color, var(--color-text));
}

.split-section__content--dark {
  --split-bg: var(--color-black);
  --split-color: var(--color-white);
}

.split-section__eyebrow {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  margin-bottom: var(--sp-4);
}

.split-section__title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: var(--sp-6);
  max-width: 18ch;
}

.split-section__text {
  font-size: var(--text-base);
  line-height: 1.7;
  max-width: 48ch;
  margin-bottom: var(--sp-8);
  font-style: normal;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  opacity: 0.85;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: var(--sp-6) var(--gutter);
}

.trust-bar--dark {
  background: var(--color-black);
  color: var(--color-white);
  border-color: rgba(255,255,255,0.1);
}

.trust-bar__inner {
  max-width: var(--max-width);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6) var(--sp-4);
}

@media (min-width: 768px) {
  .trust-bar__inner { grid-template-columns: repeat(4, 1fr); }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.trust-item__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}

.trust-item__icon svg { width: 28px; height: 28px; }

.trust-item__text strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.trust-item__text span {
  display: block;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-style: normal;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  margin-top: 2px;
}

.trust-bar--dark .trust-item__text span { color: rgba(255,255,255,0.5); }

/* ============================================================
   PRESS STRIP
   ============================================================ */
.press-strip {
  padding: var(--sp-10) var(--gutter);
  text-align: center;
}

.press-strip__heading {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-text-muted);
  margin-bottom: var(--sp-8);
}

.press-strip__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--sp-8) var(--sp-12);
}

.press-logo img {
  height: 28px;
  width: auto;
  opacity: 0.35;
  filter: grayscale(1);
  transition: opacity var(--transition), filter var(--transition);
}

.press-logo:hover img {
  opacity: 0.7;
  filter: none;
}

.press-logo--text {
  font-size: var(--text-lg);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text);
  opacity: 0.2;
  transition: opacity var(--transition);
}

.press-logo--text:hover { opacity: 0.5; }

/* ============================================================
   TESTIMONIALS / REVIEWS
   ============================================================ */
.reviews-section {
  padding-block: var(--sp-16);
  background: var(--color-bg-alt);
}

.reviews-slider-wrapper {
  overflow: hidden;
  position: relative;
}

.reviews-slider {
  display: flex;
  gap: var(--sp-5);
  transition: transform 0.4s ease;
}

.review-card {
  flex: 0 0 calc(100% - var(--sp-5));
  background: var(--color-white);
  padding: var(--sp-8);
  border: 1px solid var(--color-border);
}

@media (min-width: 640px) {
  .review-card { flex: 0 0 calc(50% - var(--sp-5) / 2); }
}

@media (min-width: 1000px) {
  .review-card { flex: 0 0 calc(33.333% - var(--sp-5) * 2 / 3); }
}

.review-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--sp-4);
  color: var(--color-accent);
}

.review-card__stars svg { width: 16px; height: 16px; }

.review-card__text {
  font-size: var(--text-base);
  line-height: 1.65;
  margin-bottom: var(--sp-6);
  font-style: normal;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  color: var(--color-text);
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.review-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--color-bg-alt);
}

.review-card__name {
  font-size: var(--text-sm);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.review-card__verified {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: 2px;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  margin-top: var(--sp-8);
}

.slider-btn {
  width: 44px;
  height: 44px;
  border: 2px solid var(--color-black);
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.slider-btn:hover {
  background: var(--color-black);
  color: var(--color-white);
}

.slider-btn svg { width: 18px; height: 18px; }

.slider-dots {
  display: flex;
  gap: var(--sp-2);
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border);
  border: none;
  cursor: pointer;
  transition: background var(--transition), width var(--transition);
}

.slider-dot.is-active {
  background: var(--color-black);
  width: 24px;
  border-radius: 4px;
}

/* ============================================================
   NEWSLETTER SECTION
   ============================================================ */
.newsletter-section {
  padding-block: var(--sp-16);
  background: var(--color-black);
  color: var(--color-white);
  text-align: center;
}

.newsletter-section__title {
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--color-white);
  margin-bottom: var(--sp-4);
}

.newsletter-section__subtitle {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--sp-8);
  font-style: normal;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin-inline: auto;
}

.newsletter-input {
  flex: 1;
  height: 52px;
  padding: 0 var(--sp-5);
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.2);
  border-right: none;
  color: var(--color-white);
  font-family: inherit;
  font-size: var(--text-base);
  outline: none;
  transition: border-color var(--transition);
}

.newsletter-input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-input:focus { border-color: rgba(255,255,255,0.6); }

.newsletter-submit {
  height: 52px;
  padding: 0 var(--sp-8);
  background: var(--color-accent);
  color: var(--color-black);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
  flex-shrink: 0;
  white-space: nowrap;
}

.newsletter-submit:hover { background: var(--color-white); }

.newsletter-notice {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
  margin-top: var(--sp-4);
  font-style: normal;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

/* ============================================================
   LOOKBOOK / IMAGE STRIP
   ============================================================ */
.image-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-2);
}

@media (min-width: 640px) {
  .image-strip { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1000px) {
  .image-strip { grid-template-columns: repeat(5, 1fr); }
}

.image-strip__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.image-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image-strip__item:hover img { transform: scale(1.05); }

.image-strip__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.image-strip__item:hover .image-strip__overlay {
  background: rgba(0,0,0,0.3);
}

/* ============================================================
   SECTION SPACING
   ============================================================ */
.section {
  padding-block: var(--sp-16);
}

.section--sm { padding-block: var(--sp-10); }
.section--lg { padding-block: var(--sp-24); }
.section--no-top { padding-top: 0; }
.section--no-bottom { padding-bottom: 0; }

.section--dark {
  background: var(--color-black);
  color: var(--color-white);
}

.section--alt { background: var(--color-bg-alt); }

/* ============================================================
   COLLECTION PAGE
   ============================================================ */
.collection-page-header {
  padding: var(--sp-10) var(--gutter);
  background: var(--color-black);
  color: var(--color-white);
  text-align: center;
}

.collection-page-header__breadcrumb {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--sp-3);
}

.collection-page-header__breadcrumb a { color: rgba(255,255,255,0.5); }
.collection-page-header__breadcrumb a:hover { color: var(--color-white); }

.collection-page-header__title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--color-white);
  margin-bottom: var(--sp-3);
}

.collection-page-header__count {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
}

/* Filters & Sort toolbar */
.collection-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--gutter);
  border-bottom: 1px solid var(--color-border);
  flex-wrap: wrap;
  position: sticky;
  top: var(--header-height);
  background: var(--color-white);
  z-width: 10;
  z-index: 10;
}

.collection-filters-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: var(--sp-2) var(--sp-5);
  border: 2px solid var(--color-black);
  background: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.collection-filters-btn:hover {
  background: var(--color-black);
  color: var(--color-white);
}

.collection-filters-btn svg { width: 16px; height: 16px; }

.collection-sort {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.collection-sort__select {
  border: none;
  border-bottom: 2px solid var(--color-black);
  background: none;
  font-family: inherit;
  font-size: var(--text-sm);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  cursor: pointer;
  outline: none;
  padding: var(--sp-1) var(--sp-2);
}

/* Filters panel */
.filters-panel {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(360px, 100vw);
  background: var(--color-white);
  z-index: 600;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.35s ease;
  border-right: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
}

.filters-panel.is-open { transform: translateX(0); }

.filters-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-5) var(--sp-6);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  background: var(--color-white);
}

.filters-panel__title {
  font-size: var(--text-xl);
}

.filters-panel__close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
}

.filters-panel__close:hover { color: var(--color-accent); }
.filters-panel__close svg { width: 20px; height: 20px; }

.filters-panel__body { flex: 1; padding: var(--sp-5) var(--sp-6); }

.filter-group {
  border-bottom: 1px solid var(--color-border);
  padding-block: var(--sp-5);
}

.filter-group__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 0;
  font-size: var(--text-base);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.filter-group__toggle svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
}

.filter-group.is-open .filter-group__toggle svg { transform: rotate(180deg); }

.filter-group__options {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  margin-top: 0;
}

.filter-group.is-open .filter-group__options {
  max-height: 600px;
  margin-top: var(--sp-4);
}

.filter-option {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-2) 0;
  cursor: pointer;
  font-size: var(--text-sm);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-style: normal;
}

.filter-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border: 2px solid var(--color-black);
  border-radius: 0;
  accent-color: var(--color-black);
  cursor: pointer;
  flex-shrink: 0;
}

.filter-option__count {
  margin-left: auto;
  color: var(--color-text-muted);
  font-size: var(--text-xs);
}

.filters-panel__footer {
  padding: var(--sp-5) var(--sp-6);
  border-top: 1px solid var(--color-border);
  display: flex;
  gap: var(--sp-3);
  position: sticky;
  bottom: 0;
  background: var(--color-white);
}

/* ============================================================
   PRODUCT PAGE
   ============================================================ */
.product-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
  padding: var(--sp-8) var(--gutter);
  max-width: var(--max-width);
  margin-inline: auto;
}

@media (min-width: 900px) {
  .product-layout { grid-template-columns: 1fr 1fr; gap: var(--sp-12); align-items: start; }
}

@media (min-width: 1200px) {
  .product-layout { grid-template-columns: 3fr 2fr; }
}

/* Product gallery */
.product-gallery {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--sp-3);
  align-items: start;
}

.product-gallery__thumbnails {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.product-gallery__thumb {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition);
  background: var(--color-bg-alt);
}

.product-gallery__thumb.is-active { border-color: var(--color-black); }
.product-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-gallery__main {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--color-bg-alt);
  cursor: zoom-in;
}

.product-gallery__main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.product-gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding-inline: var(--sp-3);
  pointer-events: none;
}

.product-gallery__nav-btn {
  width: 40px;
  height: 40px;
  background: var(--color-white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  transition: background var(--transition);
}

.product-gallery__nav-btn:hover { background: var(--color-accent); }
.product-gallery__nav-btn svg { width: 18px; height: 18px; }

/* Mobile gallery: no thumbnails */
@media (max-width: 640px) {
  .product-gallery { grid-template-columns: 1fr; }
  .product-gallery__thumbnails { flex-direction: row; order: 2; }
  .product-gallery__thumb { width: 60px; flex-shrink: 0; }
  .product-gallery__main { order: 1; }
}

/* Product info */
.product-info {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

@media (min-width: 900px) {
  .product-info {
    position: sticky;
    top: calc(var(--header-height) + var(--sp-5));
  }
}

.product-info__vendor {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
}

.product-info__title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 0.95;
}

.product-info__reviews-summary {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.stars-inline {
  display: flex;
  gap: 1px;
  color: var(--color-accent);
}

.stars-inline svg { width: 14px; height: 14px; }

.review-count-link {
  font-size: var(--text-xs);
  text-decoration: underline;
  text-underline-offset: 2px;
  color: var(--color-text-muted);
}

.product-info__price-block {
  display: flex;
  align-items: baseline;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

.product-price {
  font-size: var(--text-2xl);
  font-weight: 800;
  font-style: italic;
}

.product-price--compare {
  color: var(--color-text-muted);
  text-decoration: line-through;
  font-size: var(--text-xl);
  font-weight: 400;
}

.product-price--sale { color: var(--color-sale); }

.product-info__tax-note {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-style: normal;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.product-info__shipping-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
}

/* Variant selector */
.variant-group { display: flex; flex-direction: column; gap: var(--sp-3); }

.variant-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--text-sm);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.variant-label__guide {
  font-size: var(--text-xs);
  text-decoration: underline;
  text-underline-offset: 2px;
  color: var(--color-text-muted);
  cursor: pointer;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.variant-btn {
  min-width: 52px;
  height: 44px;
  padding: 0 var(--sp-4);
  border: 2px solid var(--color-border);
  background: var(--color-white);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}

.variant-btn:hover { border-color: var(--color-black); }

.variant-btn.is-selected {
  border-color: var(--color-black);
  background: var(--color-black);
  color: var(--color-white);
}

.variant-btn.is-unavailable {
  border-color: var(--color-border);
  color: var(--color-text-muted);
  position: relative;
  overflow: hidden;
}

.variant-btn.is-unavailable::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, transparent calc(50% - 1px), var(--color-border) calc(50% - 1px), var(--color-border) calc(50% + 1px), transparent calc(50% + 1px));
}

/* Quantity */
.qty-picker {
  display: flex;
  align-items: center;
  border: 2px solid var(--color-black);
  width: fit-content;
}

.qty-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  font-size: var(--text-xl);
  font-weight: 300;
  transition: background var(--transition);
}

.qty-btn:hover { background: var(--color-bg-alt); }

.qty-input {
  width: 56px;
  height: 44px;
  border: none;
  border-inline: 2px solid var(--color-black);
  text-align: center;
  font-family: inherit;
  font-size: var(--text-base);
  font-weight: 700;
  outline: none;
  background: none;
}

/* ATC button */
.atc-btn {
  height: 56px;
  font-size: var(--text-lg);
  width: 100%;
}

/* Sticky ATC bar */
.sticky-atc {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-white);
  border-top: 2px solid var(--color-black);
  padding: var(--sp-3) var(--gutter);
  z-index: 50;
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

.sticky-atc.is-visible { transform: translateY(0); }

.sticky-atc__info {
  flex: 1;
  min-width: 0;
}

.sticky-atc__title {
  font-size: var(--text-sm);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-atc__price {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.sticky-atc__btn {
  flex-shrink: 0;
  height: 44px;
  padding: 0 var(--sp-8);
}

/* Product tabs / accordion */
.product-accordion {
  border-top: 1px solid var(--color-border);
}

.accordion-item {
  border-bottom: 1px solid var(--color-border);
}

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--sp-5) 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.accordion-trigger svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.accordion-item.is-open .accordion-trigger svg { transform: rotate(180deg); }

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion-item.is-open .accordion-body { max-height: 2000px; }

.accordion-content {
  padding-bottom: var(--sp-6);
  font-size: var(--text-sm);
  line-height: 1.7;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  color: var(--color-text);
}

.accordion-content p + p { margin-top: var(--sp-3); }

.accordion-content ul {
  list-style: disc;
  padding-left: var(--sp-5);
}

.accordion-content ul li { margin-top: var(--sp-2); }

/* Size chart table */
.size-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
  margin-top: var(--sp-4);
}

.size-table th, .size-table td {
  border: 1px solid var(--color-border);
  padding: var(--sp-2) var(--sp-3);
  text-align: center;
}

.size-table th {
  background: var(--color-bg-alt);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
}

/* ============================================================
   CART PAGE
   ============================================================ */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
  padding: var(--sp-8) var(--gutter);
  max-width: 1100px;
  margin-inline: auto;
}

@media (min-width: 900px) {
  .cart-layout { grid-template-columns: 1fr 360px; align-items: start; }
}

.cart-header {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr 1fr;
  gap: var(--sp-4);
  padding-bottom: var(--sp-4);
  border-bottom: 2px solid var(--color-black);
  font-size: var(--text-xs);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  align-items: center;
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 3fr 1fr 1fr 1fr;
  gap: var(--sp-4);
  padding-block: var(--sp-5);
  border-bottom: 1px solid var(--color-border);
  align-items: center;
}

@media (max-width: 640px) {
  .cart-header { display: none; }
  .cart-item { grid-template-columns: 80px 1fr; grid-template-rows: auto auto auto; }
}

.cart-item__img {
  aspect-ratio: 3/4;
  object-fit: cover;
  width: 80px;
}

.cart-item__name {
  font-size: var(--text-base);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.cart-item__meta {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: var(--sp-1);
  font-style: normal;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.cart-item__remove {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: underline;
  text-underline-offset: 2px;
  color: var(--color-text-muted);
  background: none;
  border: none;
  cursor: pointer;
  margin-top: var(--sp-2);
  font-style: italic;
  font-weight: 700;
  font-family: inherit;
  transition: color var(--transition);
}

.cart-item__remove:hover { color: var(--color-sale); }

/* Cart summary */
.cart-summary {
  background: var(--color-bg-alt);
  padding: var(--sp-8);
  position: sticky;
  top: calc(var(--header-height) + var(--sp-5));
}

.cart-summary__title {
  font-size: var(--text-xl);
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-4);
  border-bottom: 2px solid var(--color-black);
}

.cart-summary__line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: var(--sp-3);
  font-size: var(--text-sm);
  border-bottom: 1px solid var(--color-border);
}

.cart-summary__line--total {
  font-size: var(--text-lg);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  border-bottom: 2px solid var(--color-black);
  margin-bottom: var(--sp-5);
}

.cart-summary__notice {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-align: center;
  margin-top: var(--sp-3);
  font-style: normal;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  line-height: 1.5;
}

/* ============================================================
   CART DRAWER
   ============================================================ */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 100vw);
  background: var(--color-white);
  z-index: 700;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  overflow: hidden;
}

.cart-drawer.is-open { transform: translateX(0); }

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-5) var(--sp-6);
  border-bottom: 2px solid var(--color-black);
  flex-shrink: 0;
}

.cart-drawer__title {
  font-size: var(--text-xl);
}

.cart-drawer__close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
}

.cart-drawer__close:hover { color: var(--color-accent); }
.cart-drawer__close svg { width: 20px; height: 20px; }

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: var(--sp-5) var(--sp-6);
}

.cart-drawer__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-5);
  height: 100%;
  text-align: center;
  padding: var(--sp-10);
}

.cart-drawer__empty svg { width: 48px; height: 48px; opacity: 0.3; }

.cart-drawer__empty p {
  font-size: var(--text-base);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
}

.drawer-cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: var(--sp-4);
  padding-block: var(--sp-4);
  border-bottom: 1px solid var(--color-border);
  align-items: start;
}

.drawer-cart-item__img {
  aspect-ratio: 3/4;
  object-fit: cover;
  width: 80px;
  flex-shrink: 0;
}

.drawer-cart-item__name {
  font-size: var(--text-sm);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: var(--sp-1);
}

.drawer-cart-item__meta {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--sp-3);
  font-style: normal;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.drawer-cart-item__price {
  font-size: var(--text-base);
  font-weight: 800;
  font-style: italic;
}

.drawer-cart-item__remove {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-muted);
  transition: color var(--transition);
  padding: var(--sp-1);
  margin-top: -4px;
}

.drawer-cart-item__remove:hover { color: var(--color-sale); }
.drawer-cart-item__remove svg { width: 16px; height: 16px; }

.cart-drawer__footer {
  border-top: 2px solid var(--color-black);
  padding: var(--sp-5) var(--sp-6);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.cart-drawer__subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-base);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cart-drawer__subtotal-price {
  font-size: var(--text-xl);
}

.cart-drawer__shipping-note {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-align: center;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-black);
  color: var(--color-white);
}

.footer-top {
  padding: var(--sp-16) var(--gutter) var(--sp-12);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
  max-width: var(--max-width);
  margin-inline: auto;
}

@media (min-width: 640px) {
  .footer-top { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1000px) {
  .footer-top { grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--sp-8); }
}

.footer-brand__logo img {
  height: 48px;
  filter: brightness(0) invert(1);
  margin-bottom: var(--sp-5);
}

.footer-brand__desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  max-width: 32ch;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  margin-bottom: var(--sp-6);
}

.footer-socials {
  display: flex;
  gap: var(--sp-4);
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), color var(--transition);
}

.footer-social-link:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.footer-social-link svg { width: 18px; height: 18px; }

.footer-col__heading {
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--sp-5);
}

.footer-col__links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer-col__links a {
  font-size: var(--text-sm);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}

.footer-col__links a:hover { color: var(--color-white); }

.footer-newsletter-form {
  display: flex;
  margin-top: var(--sp-4);
}

.footer-newsletter-input {
  flex: 1;
  height: 44px;
  padding: 0 var(--sp-4);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-right: none;
  color: var(--color-white);
  font-family: inherit;
  font-size: var(--text-sm);
  outline: none;
  min-width: 0;
}

.footer-newsletter-input::placeholder { color: rgba(255,255,255,0.3); }
.footer-newsletter-input:focus { border-color: rgba(255,255,255,0.4); }

.footer-newsletter-btn {
  height: 44px;
  padding: 0 var(--sp-5);
  background: var(--color-accent);
  color: var(--color-black);
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
  flex-shrink: 0;
}

.footer-newsletter-btn:hover { background: var(--color-white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--sp-6) var(--gutter);
  max-width: var(--max-width);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.footer-bottom__copy {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
  font-style: italic;
}

.footer-bottom__links {
  display: flex;
  gap: var(--sp-5);
  flex-wrap: wrap;
}

.footer-bottom__links a {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color var(--transition);
}

.footer-bottom__links a:hover { color: var(--color-white); }

.footer-payment-icons {
  display: flex;
  gap: var(--sp-2);
  align-items: center;
}

.footer-payment-icons img {
  height: 20px;
  width: auto;
  opacity: 0.5;
  filter: grayscale(1) brightness(2);
}

/* ============================================================
   404 PAGE
   ============================================================ */
.error-page {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--sp-16) var(--gutter);
  background: var(--color-black);
  color: var(--color-white);
}

.error-page__code {
  font-size: clamp(6rem, 20vw, 16rem);
  line-height: 0.85;
  color: var(--color-black);
  text-shadow: -3px -3px 0 var(--color-accent), 3px 3px 0 rgba(255,255,255,0.1);
  -webkit-text-stroke: 2px rgba(255,255,255,0.15);
  margin-bottom: var(--sp-6);
}

.error-page__title { font-size: var(--text-3xl); margin-bottom: var(--sp-4); }

.error-page__text {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.6);
  max-width: 44ch;
  margin-bottom: var(--sp-8);
  font-style: normal;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  line-height: 1.65;
}

/* ============================================================
   SEARCH PAGE
   ============================================================ */
.search-page-header {
  background: var(--color-black);
  color: var(--color-white);
  padding: var(--sp-12) var(--gutter);
}

.search-form-large {
  display: flex;
  max-width: 720px;
  margin-inline: auto;
  border-bottom: 3px solid var(--color-white);
  padding-bottom: var(--sp-3);
  gap: var(--sp-3);
}

.search-input-large {
  flex: 1;
  background: none;
  border: none;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  outline: none;
}

.search-input-large::placeholder { color: rgba(255,255,255,0.3); }

.search-submit-large {
  background: none;
  border: none;
  color: var(--color-white);
  cursor: pointer;
  transition: color var(--transition);
  padding: var(--sp-2);
}

.search-submit-large:hover { color: var(--color-accent); }
.search-submit-large svg { width: 28px; height: 28px; }

/* ============================================================
   GENERIC PAGE / ABOUT
   ============================================================ */
.page-header {
  background: var(--color-black);
  color: var(--color-white);
  padding: var(--sp-16) var(--gutter) var(--sp-12);
  text-align: center;
}

.page-header__title {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  color: var(--color-white);
}

.page-content {
  padding: var(--sp-12) var(--gutter);
  max-width: 800px;
  margin-inline: auto;
}

.page-content p {
  margin-bottom: var(--sp-5);
  font-style: normal;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  font-size: var(--text-base);
  line-height: 1.75;
  color: var(--color-text);
}

.page-content h2 { margin: var(--sp-8) 0 var(--sp-4); }

.page-content a { text-decoration: underline; text-underline-offset: 3px; }

/* Rich text section */
.rich-text {
  padding-block: var(--sp-16);
}

.rich-text__inner {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

/* ============================================================
   TOAST
   ============================================================ */
.bs-toast,
.toast {
  position: fixed;
  bottom: 6rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #1a1714;
  color: var(--color-accent);
  border: 1px solid rgba(226,217,200,0.2);
  border-radius: 999px;
  padding: 0.7rem 1.5rem;
  font-family: var(--font-heading, 'Bebas Neue', 'Impact', sans-serif);
  font-size: 0.75rem;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  z-index: 10000;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease;
  opacity: 0;
  white-space: nowrap;
  pointer-events: none;
  max-width: calc(100vw - 2rem);
  box-shadow: 0 4px 30px rgba(0,0,0,0.6);
}

.bs-toast.is-visible,
.toast.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast__icon {
  display: flex;
  align-items: center;
  color: var(--color-accent);
  flex-shrink: 0;
}

.toast__message {
  line-height: 1;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.hidden { display: none !important; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-4 { margin-bottom: var(--sp-4); }
.mb-6 { margin-bottom: var(--sp-6); }
.mb-8 { margin-bottom: var(--sp-8); }
.mt-4 { margin-top: var(--sp-4); }
.mt-8 { margin-top: var(--sp-8); }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Loading spinner */
.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(0,0,0,0.2);
  border-top-color: var(--color-black);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding-top: var(--sp-12);
  flex-wrap: wrap;
}

.pagination__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid var(--color-border);
  font-size: var(--text-sm);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.pagination__item:hover,
.pagination__item.is-active {
  background: var(--color-black);
  border-color: var(--color-black);
  color: var(--color-white);
}

.pagination__item--prev,
.pagination__item--next { padding-inline: var(--sp-4); width: auto; }

/* Form fields */
.form-group { display: flex; flex-direction: column; gap: var(--sp-2); }

.form-label {
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  height: 48px;
  padding: 0 var(--sp-4);
  border: 2px solid var(--color-border);
  background: var(--color-bg);
  font-family: inherit;
  font-size: var(--text-base);
  color: var(--color-text);
  outline: none;
  transition: border-color var(--transition);
  border-radius: 0;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--color-black); }

.form-textarea { height: 140px; padding-top: var(--sp-4); resize: vertical; }

/* ============================================================
   RESPONSIVE MEDIA
   ============================================================ */
@media (max-width: 639px) {
  .hide-mobile { display: none !important; }
}

@media (min-width: 640px) {
  .hide-desktop { display: none !important; }
}

/* Product grid 2-col forced mobile */
@media (max-width: 399px) {
  .product-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .site-header,
  .site-footer,
  .cart-drawer,
  .mobile-menu,
  .sticky-atc { display: none !important; }
}

/* ============================================================
   ██████╗ ███████╗███████╗██╗███╗   ██╗███████╗     ██████╗ ███████╗
   ██╔══██╗██╔════╝██╔════╝██║████╗  ██║██╔════╝    ██╔════╝ ╚════██║
   ██████╔╝█████╗  █████╗  ██║██╔██╗ ██║█████╗      ██║  ███╗    ██╔╝
   ██╔══██╗██╔══╝  ██╔══╝  ██║██║╚██╗██║██╔══╝      ██║   ██║   ██╔╝ 
   ██║  ██║███████╗██║     ██║██║ ╚████║███████╗    ╚██████╔╝   ██║  
   ╚═╝  ╚═╝╚══════╝╚═╝     ╚═╝╚═╝  ╚═══╝╚══════╝     ╚═════╝    ╚═╝  

   PREMIUM SECTION CSS — added to wire up all BEM class names
   that the Liquid templates emit but the original CSS didn't cover.

   Covers (in order):
     1.  Shared section primitives (section-spacing, section-eyebrow, etc.)
     2.  Hero Banner   (hero-banner__*)
     3.  Collection Tiles (collection-tile__*, collection-grid--N-col)
     4.  Brand Story   (brand-story__*)
     5.  Lookbook Strip (lookbook-strip__*)
     6.  UGC / Instagram Grid (ugc-grid, ugc-item__*)
     7.  Trust Bar fixes (.trust-bar-inner, .trust-icon, .trust-text)
     8.  Testimonials  (testimonial-card__*, testimonials__*)
     9.  Newsletter    (newsletter__*)
    10.  Featured Collection section header helpers
    11.  Featured Collection section-view-all / section-cta
    12.  Animations    (fade-in-up, etc.)
   ============================================================ */

/* ============================================================
   1. SHARED SECTION PRIMITIVES
   ============================================================ */

/* Every section that uses class="…  section-spacing" gets
   consistent vertical rhythm — premium streetwear sites use
   tighter, more aggressive spacing than generic e-commerce */
.section-spacing {
  padding-block: clamp(3rem, 6vw, 5rem);
}

/* Eyebrow label — sits above the main heading */
.section-eyebrow {
  display: block;
  font-size: var(--text-xs);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: var(--sp-3);
  line-height: 1;
}

/* Section subheading — body-weight text below the title */
.section-sub {
  font-size: var(--text-base);
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.6;
  opacity: 0.7;
  max-width: 56ch;
  margin-top: var(--sp-3);
}

/* Section header alignment modifiers */
.section-header--center {
  text-align: center;
  align-items: center;
  flex-direction: column;
}
.section-header--center .section-sub { margin-inline: auto; }

.section-header--left {
  text-align: left;
  align-items: flex-start;
  flex-direction: column;
}

/* "View All" link next to section heading */
.section-view-all {
  margin-top: var(--sp-4);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
  white-space: nowrap;
}
.section-view-all:hover { color: var(--color-text-muted); }

/* CTA wrapper centred below a section */
.section-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(2rem, 4vw, 3.5rem);
}

/* ============================================================
   2. HERO BANNER
   The template emits .hero-banner, .hero-banner__media,
   .hero-banner__img, .hero-banner__video, .hero-banner__overlay,
   .hero-banner__content, .hero-banner__content--{position},
   .hero-banner__content--{align}, .hero-banner__inner,
   .hero-banner__eyebrow, .hero-banner__heading,
   .hero-banner__sub, .hero-banner__ctas,
   .hero-banner__scroll-indicator
   ============================================================ */

.hero-banner {
  position: relative;
  width: 100%;
  display: flex;           /* content sits inside flex */
  overflow: hidden;
  background: var(--color-black);
  /* min-height is set via inline style from section settings */
}

/* ── Media layer (image / video) fills the section ── */
.hero-banner__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-banner__img,
.hero-banner__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;   /* favour faces / shoulders */
  display: block;
}

/* ── Overlay (inline rgba style — we just need position) ── */
.hero-banner__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Gradient reinforcement so text is always legible even when
     the merchant sets overlay_opacity = 0 in theme settings */
  background-image: linear-gradient(
    to top,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.15) 55%,
    rgba(0,0,0,0.0)  100%
  );
}

/* ── Content wrapper — flex child that overlays the media ── */
.hero-banner__content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  padding: clamp(2rem, 5vw, 5rem) var(--gutter);
  min-height: inherit;   /* inherits vh from section */
}

/* Position variants — bottom-left is the Stone Cold signature */
.hero-banner__content--bottom-left   { align-items: flex-end;   justify-content: flex-start; }
.hero-banner__content--bottom-center { align-items: flex-end;   justify-content: center;     }
.hero-banner__content--bottom-right  { align-items: flex-end;   justify-content: flex-end;   }
.hero-banner__content--center-left   { align-items: center;     justify-content: flex-start; }
.hero-banner__content--center-center { align-items: center;     justify-content: center;     }
.hero-banner__content--center-right  { align-items: center;     justify-content: flex-end;   }
.hero-banner__content--top-left      { align-items: flex-start; justify-content: flex-start; }
.hero-banner__content--top-center    { align-items: flex-start; justify-content: center;     }
.hero-banner__content--top-right     { align-items: flex-start; justify-content: flex-end;   }

/* Alignment variants */
.hero-banner__content--left   .hero-banner__inner { text-align: left;   }
.hero-banner__content--center .hero-banner__inner { text-align: center; }
.hero-banner__content--right  .hero-banner__inner { text-align: right;  }

/* ── Inner content block ── */
.hero-banner__inner {
  max-width: min(860px, 100%);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.hero-banner__content--center .hero-banner__inner { margin-inline: auto; }
.hero-banner__content--right  .hero-banner__inner { margin-left: auto;   }

/* ── Eyebrow ── */
.hero-banner__eyebrow {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  line-height: 1;
}

/* ── Heading — massive condensed italic, Stone Cold signature ── */
.hero-banner__heading {
  font-family: var(--font-heading);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.9;
  color: var(--color-white);
  /* font-size is set via inline clamp() from section settings,
     but we define a sane fallback */
  font-size: clamp(3rem, 9vw, 7.5rem);
  /* Prevent widows on small screens */
  text-wrap: balance;
}

/* ── Subheading ── */
.hero-banner__sub {
  font-size: var(--text-lg);
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  max-width: 52ch;
}
.hero-banner__content--center .hero-banner__sub { margin-inline: auto; }

/* ── CTA buttons row ── */
.hero-banner__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-2);
}
.hero-banner__content--center .hero-banner__ctas { justify-content: center; }
.hero-banner__content--right  .hero-banner__ctas { justify-content: flex-end; }

/* ── Scroll indicator ── */
.hero-banner__scroll-indicator {
  position: absolute;
  bottom: var(--sp-6);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,0.5);
  animation: hero-scroll-bounce 2s ease-in-out infinite;
}

@keyframes hero-scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0);    opacity: 0.5; }
  50%       { transform: translateX(-50%) translateY(8px);  opacity: 1;   }
}

/* Mobile hero: increase min-height so image shows properly */
@media (max-width: 639px) {
  .hero-banner {
    min-height: 80vh !important;
  }
  .hero-banner__heading {
    font-size: clamp(2.5rem, 13vw, 4.5rem);
  }
}

/* ============================================================
   3. COLLECTION TILES
   Template emits .collection-list .container .collection-grid
   .collection-grid--N-col .collection-tile .collection-tile__link
   .collection-tile__media .collection-tile__img
   .collection-tile__overlay .collection-tile__content
   .collection-tile__title .collection-tile__subtitle
   .collection-tile__cta
   ============================================================ */

/* Grid column count variants */
.collection-grid--2-col { grid-template-columns: repeat(2, 1fr); }

.collection-grid--3-col { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 900px) {
  .collection-grid--3-col { grid-template-columns: repeat(3, 1fr); }
}

.collection-grid--4-col { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) {
  .collection-grid--4-col { grid-template-columns: repeat(4, 1fr); }
}

/* Reduce gap for tighter Stone Cold density */
.collection-grid {
  gap: var(--sp-3);
}

/* ── Single tile ── */
.collection-tile {
  position: relative;
  overflow: hidden;
  background: var(--color-black);
}

/* ── Full-tile anchor ── */
.collection-tile__link {
  display: block;
  position: relative;
  text-decoration: none;
  color: var(--color-white);
}

/* ── Media container: portrait 3:4 matches product cards ── */
.collection-tile__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #111;
}

.collection-tile__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: grayscale(0.08);
}

.collection-tile:hover .collection-tile__img {
  transform: scale(1.06);
}

/* ── Gradient overlay — heavy at bottom so text is legible ── */
.collection-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.3)  45%,
    rgba(0,0,0,0.0)  100%
  );
  transition: background var(--transition-slow);
}

.collection-tile:hover .collection-tile__overlay {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.9) 0%,
    rgba(0,0,0,0.45) 55%,
    rgba(0,0,0,0.1) 100%
  );
}

/* ── Text content — pinned to bottom of media ── */
.collection-tile__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--sp-5) var(--sp-5) var(--sp-6);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.collection-tile__title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2.25rem);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.95;
  color: var(--color-white);
  margin: 0;
}

.collection-tile__subtitle {
  font-size: var(--text-xs);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin: 0;
}

.collection-tile__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-3);
  font-size: var(--text-xs);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-white);
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
  transition: border-color var(--transition), color var(--transition);
  align-self: flex-start;
}

.collection-tile:hover .collection-tile__cta {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* Mobile: 1 column on very narrow screens */
@media (max-width: 479px) {
  .collection-grid--4-col,
  .collection-grid--3-col { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   4. BRAND STORY / SPLIT SECTION
   Template emits .brand-story .brand-story__grid
   .brand-story__grid--left / --right .brand-story__media
   .brand-story__img .brand-story__img-placeholder
   .brand-story__media-secondary .brand-story__img-secondary
   .brand-story__badge .brand-story__content
   .brand-story__content--left / --center .brand-story__heading
   .brand-story__text.rte .brand-story__stats .brand-story__stat
   .brand-story__stat-value .brand-story__stat-label
   ============================================================ */

.brand-story {
  overflow: hidden;
}

/* ── 50 / 50 grid — no gutter, edge-to-edge cinematic split ── */
.brand-story__grid {
  display: grid;
  grid-template-columns: 1fr;
  min-height: clamp(480px, 70vh, 800px);
}

@media (min-width: 768px) {
  .brand-story__grid {
    grid-template-columns: 1fr 1fr;
    min-height: clamp(560px, 75vh, 900px);
  }

  /* Image LEFT: media col first, content col second */
  .brand-story__grid--left  { grid-template-columns: 1fr 1fr; }

  /* Image RIGHT: content col first, media col second */
  .brand-story__grid--right { grid-template-columns: 1fr 1fr; }
  .brand-story__grid--right .brand-story__media  { order: 2; }
  .brand-story__grid--right .brand-story__content { order: 1; }
}

/* ── Image side ── */
.brand-story__media {
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
  min-height: clamp(360px, 50vw, 700px);
}

.brand-story__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.brand-story:hover .brand-story__img {
  transform: scale(1.03);
}

.brand-story__img-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
}

/* Secondary overlay image (small inset photo) */
.brand-story__media-secondary {
  position: absolute;
  bottom: var(--sp-6);
  right: calc(-1 * var(--sp-6));
  width: 45%;
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 3px solid var(--color-bg);
  box-shadow: -8px 8px 40px rgba(0,0,0,0.5);
  z-index: 2;
}

.brand-story__img-secondary {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Badge — floating accent label on the image */
.brand-story__badge {
  position: absolute;
  top: var(--sp-6);
  left: var(--sp-6);
  z-index: 3;
  background: var(--color-accent);
  color: var(--color-black);
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--text-xs);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1;
}

/* ── Content side ── */
.brand-story__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
  /* bg-color is set inline from section settings */
}

.brand-story__content--center {
  text-align: center;
  align-items: center;
}
.brand-story__content--left {
  text-align: left;
  align-items: flex-start;
}

.brand-story__heading {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.92;
  margin-top: var(--sp-3);
  margin-bottom: var(--sp-5);
  white-space: pre-line;   /* respect \n in Liquid setting */
}

.brand-story__text {
  font-size: var(--text-base);
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.7;
  opacity: 0.8;
  max-width: 48ch;
  margin-bottom: var(--sp-6);
}

.brand-story__text p + p { margin-top: var(--sp-3); }

/* Stats row */
.brand-story__stats {
  display: flex;
  gap: var(--sp-8);
  margin-bottom: var(--sp-8);
  flex-wrap: wrap;
}

.brand-story__stat {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.brand-story__stat-value {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--color-accent);
}

.brand-story__stat-label {
  font-size: var(--text-xs);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.55;
  line-height: 1;
}

/* ============================================================
   5. LOOKBOOK STRIP
   Template emits .lookbook-strip .lookbook-strip__grid
   .lookbook-strip__grid--{count} .lookbook-strip__item
   .lookbook-strip__link .lookbook-strip__media
   .lookbook-strip__img .lookbook-strip__overlay
   .lookbook-strip__caption
   ============================================================ */

.lookbook-strip {
  overflow: hidden;
}

/* ── Zero-gap tight grid — Stone Cold lookbook signature ── */
.lookbook-strip__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;        /* hair-thin gutters = editorial print feel */
}

@media (min-width: 640px) {
  .lookbook-strip__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1000px) {
  .lookbook-strip__grid { grid-template-columns: repeat(5, 1fr); }
}

/* Block-count variants so the grid can adapt */
.lookbook-strip__grid--3 { grid-template-columns: repeat(3, 1fr); }
.lookbook-strip__grid--4 { grid-template-columns: repeat(2, 1fr); }
.lookbook-strip__grid--6 { grid-template-columns: repeat(3, 1fr); }

@media (min-width: 768px) {
  .lookbook-strip__grid--4 { grid-template-columns: repeat(4, 1fr); }
  .lookbook-strip__grid--6 { grid-template-columns: repeat(6, 1fr); }
}

/* ── Single item ── */
.lookbook-strip__item {
  overflow: hidden;
  position: relative;
  background: #0a0a0a;
}

.lookbook-strip__link {
  display: block;
  position: relative;
  text-decoration: none;
}

/* ── Media: tall portrait for lookbook energy ── */
.lookbook-strip__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2 / 3;
}

.lookbook-strip__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lookbook-strip__item:hover .lookbook-strip__img {
  transform: scale(1.07);
}

/* ── Overlay — invisible until hover ── */
.lookbook-strip__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.35s ease;
  z-index: 1;
}

.lookbook-strip__item:hover .lookbook-strip__overlay {
  background: rgba(0,0,0,0.35);
}

/* ── Caption — slides up from bottom on hover ── */
.lookbook-strip__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--sp-4) var(--sp-4) var(--sp-5);
  z-index: 2;
  transform: translateY(100%);
  transition: transform 0.35s ease;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
}

.lookbook-strip__item:hover .lookbook-strip__caption {
  transform: translateY(0);
}

.lookbook-strip__caption span {
  display: block;
  font-size: var(--text-xs);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-white);
  line-height: 1;
}

/* ============================================================
   6. UGC / INSTAGRAM GRID
   Template emits .ugc-strip .ugc-grid .ugc-grid--N-col
   .ugc-item .ugc-item__link .ugc-item__media .ugc-item__img
   .ugc-item__overlay .ugc-item__insta .ugc-item__handle
   ============================================================ */

.ugc-strip {
  overflow: hidden;
}

/* ── UGC Grid ── */
.ugc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

@media (min-width: 640px) {
  .ugc-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
  .ugc-grid { grid-template-columns: repeat(5, 1fr); }
}

/* Column count overrides from section settings */
.ugc-grid--4-col { grid-template-columns: repeat(2, 1fr); }
.ugc-grid--6-col { grid-template-columns: repeat(3, 1fr); }

@media (min-width: 640px) {
  .ugc-grid--4-col { grid-template-columns: repeat(4, 1fr); }
  .ugc-grid--6-col { grid-template-columns: repeat(6, 1fr); }
}

/* ── Single UGC item ── */
.ugc-item {
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
}

.ugc-item__link {
  display: block;
  text-decoration: none;
}

/* ── Square crop — Instagram native ── */
.ugc-item__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.ugc-item__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.ugc-item:hover .ugc-item__img {
  transform: scale(1.06);
}

/* ── Hover overlay with Instagram icon ── */
.ugc-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  transition: background 0.3s ease;
  z-index: 2;
}

.ugc-item:hover .ugc-item__overlay {
  background: rgba(0,0,0,0.55);
}

.ugc-item__insta {
  color: var(--color-white);
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.3s ease, transform 0.3s ease;
  width: 32px;
  height: 32px;
}

.ugc-item:hover .ugc-item__insta {
  opacity: 1;
  transform: scale(1);
}

.ugc-item__handle {
  color: var(--color-white);
  font-size: var(--text-xs);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease 0.05s, transform 0.3s ease 0.05s;
  line-height: 1;
}

.ugc-item:hover .ugc-item__handle {
  opacity: 0.9;
  transform: translateY(0);
}

/* ============================================================
   7. TRUST BAR CLASS ALIASES
   trust-bar.liquid emits .trust-bar-inner / .trust-icon /
   .trust-text but the original CSS defined .trust-bar__inner /
   .trust-item__icon / .trust-item__text — so we add aliases.
   ============================================================ */

/* trust-bar-inner = alias for trust-bar__inner */
.trust-bar-inner {
  max-width: var(--max-width);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6) var(--sp-4);
}

@media (min-width: 768px) {
  .trust-bar-inner { grid-template-columns: repeat(4, 1fr); }
}

/* trust-icon = icon wrapper */
.trust-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 1.5rem;
}

.trust-icon svg,
.trust-icon i {
  width: 28px;
  height: 28px;
  font-size: 1.4rem;
}

/* trust-text = text block next to icon */
.trust-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-text strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.trust-text span {
  display: block;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-style: normal;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  margin-top: 2px;
}

/* trust-bar on dark bg — text muted gets white tint */
.trust-bar--dark .trust-text span,
.trust-bar [style*="background-color:#0"] .trust-text span,
.trust-bar [style*="background-color: #0"] .trust-text span {
  color: rgba(255,255,255,0.5);
}

/* ── Fade-in-up animation used by trust items ── */
.fade-in-up {
  animation: fadeInUp 0.5s ease both;
}

.trust-item:nth-child(1) .fade-in-up,
.trust-item:nth-child(1).fade-in-up { animation-delay: 0.05s; }
.trust-item:nth-child(2) .fade-in-up,
.trust-item:nth-child(2).fade-in-up { animation-delay: 0.15s; }
.trust-item:nth-child(3) .fade-in-up,
.trust-item:nth-child(3).fade-in-up { animation-delay: 0.25s; }
.trust-item:nth-child(4) .fade-in-up,
.trust-item:nth-child(4).fade-in-up { animation-delay: 0.35s; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0);    }
}

/* ============================================================
   8. TESTIMONIALS
   Template emits .testimonials .testimonials__slider
   .testimonials__track .testimonials__slide .testimonial-card
   .testimonial-card__stars .star .star--empty
   .testimonial-card__quote .testimonial-card__author
   .testimonial-card__avatar .testimonial-card__avatar--initials
   .testimonial-card__author-info .testimonial-card__author-name
   .testimonial-card__author-title .testimonial-card__verified
   .testimonials__controls .slider-btn .testimonials__dots
   ============================================================ */

.testimonials {
  overflow: hidden;
}

/* ── Slider wrapper ── */
.testimonials__slider {
  overflow: hidden;
  position: relative;
}

.testimonials__track {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
  /* JS will add transform/flex for sliding; CSS grid gives
     a great static 3-column fallback with no JS */
}

@media (min-width: 640px) {
  .testimonials__track { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1000px) {
  .testimonials__track { grid-template-columns: repeat(3, 1fr); }
}

/* When JS enables slider mode, track becomes flex */
.testimonials__track[data-slider-track] {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Individual slide ── */
.testimonials__slide {
  flex: 0 0 100%;
  padding: 2px;    /* prevent border clipping */
}

@media (min-width: 640px) {
  .testimonials__slide { flex: 0 0 calc(50% - var(--sp-5) / 2); }
}

@media (min-width: 1000px) {
  .testimonials__slide { flex: 0 0 calc(33.333% - var(--sp-5) * 2 / 3); }
}

/* ── Card ── */
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  height: 100%;
  /* Hover lift */
  transition: border-color var(--transition), background var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(242, 169, 0, 0.35);
  background: rgba(255,255,255,0.08);
}

/* ── Stars ── */
.testimonial-card__stars {
  display: flex;
  gap: 3px;
  color: var(--color-accent);
}

.star {
  width: 16px;
  height: 16px;
  fill: var(--color-accent);
  color: var(--color-accent);
  flex-shrink: 0;
}

.star--empty {
  fill: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.15);
}

/* ── Quote ── */
.testimonial-card__quote {
  flex: 1;
  font-size: var(--text-base);
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.65;
  opacity: 0.85;
  margin: 0;
  /* Opening quote mark */
  position: relative;
}

.testimonial-card__quote::before {
  content: '\201C';
  position: absolute;
  top: -0.3em;
  left: -0.1em;
  font-size: 3em;
  line-height: 1;
  font-style: italic;
  font-family: var(--font-heading);
  color: var(--color-accent);
  opacity: 0.3;
  pointer-events: none;
}

.testimonial-card__quote p {
  position: relative;
  z-index: 1;
  padding-top: 0.5em;
}

/* ── Author row ── */
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.15);
}

/* Initials fallback avatar */
.testimonial-card__avatar--initials {
  background: var(--color-accent);
  color: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.testimonial-card__author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-card__author-name {
  display: block;
  font-size: var(--text-sm);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.1;
}

.testimonial-card__author-title {
  display: block;
  font-size: var(--text-xs);
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.5;
  line-height: 1.2;
}

.testimonial-card__verified {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: var(--text-xs);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-accent);
  opacity: 0.8;
}

.testimonial-card__verified svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

/* ── Slider controls ── */
.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  margin-top: var(--sp-8);
}

.testimonials__prev,
.testimonials__next {
  width: 44px;
  height: 44px;
  border: 2px solid currentColor;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  flex-shrink: 0;
}

.testimonials__prev:hover,
.testimonials__next:hover {
  background: currentColor;
}

.testimonials__prev:hover svg,
.testimonials__next:hover svg {
  color: var(--color-black);
  stroke: var(--color-black);
}

.testimonials__dots {
  display: flex;
  gap: var(--sp-2);
  align-items: center;
}

/* Dots are created dynamically by JS — we style generic .dot children */
.testimonials__dots > * {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.25;
  border: none;
  cursor: pointer;
  transition: opacity var(--transition), width var(--transition);
  padding: 0;
}

.testimonials__dots > *.is-active,
.testimonials__dots > *[aria-current="true"] {
  opacity: 1;
  width: 24px;
  border-radius: 4px;
}

/* ============================================================
   9. NEWSLETTER SECTION
   Template emits .newsletter .newsletter__inner
   .newsletter__inner--centered / --split .newsletter__media
   .newsletter__img .newsletter__content .newsletter__heading
   .newsletter__sub .newsletter__form .newsletter__form-row
   .newsletter__input .newsletter__btn .newsletter__error
   .newsletter__success .newsletter__disclaimer
   ============================================================ */

.newsletter {
  overflow: hidden;
  /* bg-color and text-color come from inline section styles */
}

/* ── Inner layout container ── */
.newsletter__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 4rem);
}

/* Centred layout */
.newsletter__inner--centered {
  align-items: center;
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
}

.newsletter__inner--centered .newsletter__sub { margin-inline: auto; }

/* Split layout: image | form */
.newsletter__inner--split {
  flex-direction: column;
}

@media (min-width: 768px) {
  .newsletter__inner--split {
    flex-direction: row;
    align-items: center;
  }

  .newsletter__inner--split .newsletter__media { flex: 1; }
  .newsletter__inner--split .newsletter__content { flex: 1; }
}

/* ── Side image (split mode only) ── */
.newsletter__media {
  overflow: hidden;
  border-radius: 0;
  aspect-ratio: 4/3;
}

.newsletter__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Content block ── */
.newsletter__content {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.newsletter__heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.92;
  margin: 0;
}

.newsletter__sub {
  font-size: var(--text-base);
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.6;
  opacity: 0.72;
  max-width: 50ch;
}

/* ── Form ── */
.newsletter__form {
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.newsletter__inner--centered .newsletter__form { margin-inline: auto; }

.newsletter__form-row {
  display: flex;
  height: 54px;
}

.newsletter__input {
  flex: 1;
  min-width: 0;
  height: 100%;
  padding: 0 var(--sp-5);
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.25);
  border-right: none;
  color: inherit;
  font-family: var(--font-body);
  font-size: var(--text-base);
  outline: none;
  transition: border-color var(--transition);
  border-radius: 0;
}

.newsletter__input::placeholder { color: currentColor; opacity: 0.4; }
.newsletter__input:focus { border-color: rgba(255,255,255,0.65); }

/* When the section is on a light/yellow bg — dark input */
.newsletter[style*="background-color:#f2a900"] .newsletter__input,
.newsletter[style*="background-color: #f2a900"] .newsletter__input {
  background: rgba(0,0,0,0.12);
  border-color: rgba(0,0,0,0.25);
  color: var(--color-black);
}

.newsletter[style*="background-color:#f2a900"] .newsletter__input::placeholder,
.newsletter[style*="background-color: #f2a900"] .newsletter__input::placeholder {
  color: rgba(0,0,0,0.45);
}

.newsletter__btn {
  height: 100%;
  flex-shrink: 0;
  white-space: nowrap;
  border-radius: 0;
  padding: 0 var(--sp-6);
}

/* ── States ── */
.newsletter__error {
  font-size: var(--text-sm);
  font-style: italic;
  color: var(--color-sale);
  padding: var(--sp-2) 0;
}

.newsletter__success {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-base);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: var(--sp-4) 0;
}

.newsletter__success svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--color-accent);
}

.newsletter__disclaimer {
  font-size: var(--text-xs);
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.45;
  line-height: 1.5;
}

/* ============================================================
   10. FEATURED COLLECTION — SECTION HEADER HELPERS
   featured-collection.liquid uses section-header, section-title,
   section-eyebrow, section-sub, section-view-all — these are
   now defined above in §1. This block adds grid helpers.
   ============================================================ */

/* product-grid--N-col helpers called from featured-collection */
.product-grid--2-col { grid-template-columns: repeat(2, 1fr) !important; }

.product-grid--3-col {
  grid-template-columns: repeat(2, 1fr) !important;
}
@media (min-width: 768px) {
  .product-grid--3-col { grid-template-columns: repeat(3, 1fr) !important; }
}

.product-grid--4-col {
  grid-template-columns: repeat(2, 1fr) !important;
}
@media (min-width: 900px) {
  .product-grid--4-col { grid-template-columns: repeat(4, 1fr) !important; }
}

/* ============================================================
   11. PREMIUM GLOBAL TYPOGRAPHY & AESTHETIC UPGRADES
   Tightens up section heading sizes, adds cinematic spacing,
   and generally aligns with the Stone Cold / Stay Cold look.
   ============================================================ */

/* Bolder section titles — matching StayCold's enormous heading style */
.section-title {
  font-size: clamp(2rem, 5.5vw, 4.5rem);
  line-height: 0.9;
}

/* Section header: stack vertically for center-aligned sections */
.section-header--center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: var(--sp-10);
}

.section-header--left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  margin-bottom: var(--sp-10);
}

/* ── Featured collection spacing ── */
.featured-collection.section-spacing {
  padding-block: clamp(3rem, 6vw, 5rem);
}

/* ── Marquee bar premium upgrade — ensure proper height ── */
.marquee-bar {
  height: 48px;
}

/* ── Image objects: prevent ghost space below images ── */
img { vertical-align: bottom; }

/* ── Collection list section wrapper ── */
.collection-list {
  background: var(--color-black);
  color: var(--color-white);
}

/* ── Lookbook strip section wrapper ── */
.lookbook-strip {
  background: var(--color-black);
}

/* ── UGC strip section wrapper ── */
.ugc-strip {
  background: var(--color-black);
  color: var(--color-white);
}

/* ── Brand story section: full-bleed, zero padding on outer ── */
.brand-story.section-spacing {
  padding-block: 0;
}

/* ── Hero: ensure img doesn't get max-width:100% shrinking it ── */
.hero-banner__img,
.hero-banner__video {
  max-width: none;
  max-height: none;
}

/* ── Testimonials section: always dark background ── */
.testimonials {
  background: var(--color-black);
  color: var(--color-white);
}

/* Invert slider-btn borders so they're visible on dark bg */
.testimonials .slider-btn {
  border-color: rgba(255,255,255,0.35);
  color: var(--color-white);
}
.testimonials .slider-btn:hover {
  background: var(--color-white);
  color: var(--color-black);
  border-color: var(--color-white);
}

/* ── Trust bar: premium horizontal rule style ── */
.trust-bar {
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

/* ── Press strip: add more breathing room ── */
.press-strip {
  padding-block: clamp(2.5rem, 4vw, 4rem);
}

/* ============================================================
   12. MOBILE RESPONSIVE POLISH
   ============================================================ */

@media (max-width: 767px) {
  /* Stack brand-story vertically on mobile */
  .brand-story__grid {
    grid-template-columns: 1fr !important;
  }

  .brand-story__grid--right .brand-story__media,
  .brand-story__grid--right .brand-story__content {
    order: unset;
  }

  .brand-story__media {
    min-height: 360px;
  }

  /* Lookbook: 2-col on small screens */
  .lookbook-strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* UGC: 2-col on small screens */
  .ugc-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Newsletter: stack form-row vertically */
  .newsletter__form-row {
    flex-direction: column;
    height: auto;
    gap: var(--sp-2);
  }

  .newsletter__input {
    height: 54px;
    border-right: 2px solid rgba(255,255,255,0.25);
    border-bottom: none;
  }

  .newsletter__btn {
    height: 54px;
    width: 100%;
  }

  /* Hero banner: taller on mobile */
  .hero-banner {
    min-height: 85vh !important;
  }
}

@media (max-width: 479px) {
  /* Single column UGC on very narrow */
  .ugc-grid--4-col,
  .ugc-grid--5-col,
  .ugc-grid--6-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   END PREMIUM CSS PATCH — BLACK SHEEP SOCIETY
   ============================================================ */

/* ============================================================
   GOTHIC Y2K ACID WASH REDESIGN — BLACK SHEEP SOCIETY
   Phase 3: Color swap · Header/Footer BEM · Fullscreen Menu · Distressed Aesthetic
   ============================================================ */

/* ----------------------------------------------------------
   1. COLOR VARIABLE OVERRIDE — Kill yellow, bring in off-white
   ---------------------------------------------------------- */
:root {
  --color-accent:        #e2d9c8;   /* off-white parchment — replaces #f2a900 yellow */
  --color-accent-dim:    #c8bfae;   /* slightly darker parchment for hover states */
  --color-accent-glow:   rgba(226,217,200,0.18);
  --color-badge-new:     #e2d9c8;   /* badge colour updated */
  --color-badge-sale:    #8b1a1a;   /* deep blood red for sale badge */
  --distress-noise:      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

/* Force accent colour in all generated utility classes */
.accent, [class*="accent-text"] { color: var(--color-accent) !important; }

/* btn--accent only (used for hero/newsletter CTAs) — NOT btn--primary which is used on product cards */
.btn--accent {
  background: transparent !important;
  color: var(--color-accent) !important;
  border: 1px solid var(--color-accent) !important;
}
.btn--accent:hover {
  background: var(--color-accent) !important;
  color: #0a0a0a !important;
}

/* Product card / ATC buttons keep their solid black background — just update colours to dark theme */
.btn--primary {
  background: #1a1714 !important;
  color: #e0d8cc !important;
  border: 1px solid rgba(226,217,200,0.2) !important;
}
.btn--primary:hover {
  background: var(--color-accent) !important;
  color: #0a0a0a !important;
  border-color: var(--color-accent) !important;
}

/* Stars → off-white */
.star, .star-filled, [class*="star"] { color: var(--color-accent) !important; }

/* Eyebrows & section labels */
.section-eyebrow,
.eyebrow,
[class*="eyebrow"],
[class*="label--accent"] {
  color: var(--color-accent) !important;
}

/* Stat values */
.stat__value,
[class*="stat-value"],
[class*="stats__number"] {
  color: var(--color-accent) !important;
}

/* Verified / trust badges */
.verified-badge,
[class*="verified"],
[class*="trust-badge"] {
  color: var(--color-accent) !important;
  border-color: var(--color-accent) !important;
}

/* ----------------------------------------------------------
   2. GLOBAL DISTRESSED AESTHETIC — Grain overlay + aged palette
   ---------------------------------------------------------- */

/* Full-page grain/noise overlay using CSS filter pseudo-element */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background-image: var(--distress-noise);
  background-size: 300px 300px;
  background-repeat: repeat;
  opacity: 0.038;
  mix-blend-mode: overlay;
}

/* Desaturate slightly and add warm aged tone to entire page */
body {
  background-color: #0c0b09;  /* near-black with warm undertone */
  color: #c8c0b4;             /* warm off-white for body text */
}

/* Aged warm vignette on sections */
.site-header::before,
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 60%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
  z-index: 1;
}
.site-header,
.site-footer { position: relative; overflow: hidden; }

/* Acid-wash / bleach texture on dark section backgrounds */
.hero-banner::after,
.brand-story::after,
.site-footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(255,255,255,0.03) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 70%, rgba(255,255,255,0.02) 0%, transparent 55%),
    radial-gradient(ellipse 30% 30% at 50% 20%, rgba(255,255,255,0.025) 0%, transparent 50%);
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: 1;
}

/* Distressed horizontal rule */
hr,
.distress-rule {
  border: none;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(226,217,200,0.12) 15%,
    rgba(226,217,200,0.35) 35%,
    rgba(226,217,200,0.2) 55%,
    rgba(226,217,200,0.08) 75%,
    transparent 100%
  );
  margin: 2rem 0;
}

/* ----------------------------------------------------------
   3. HEADER — Full BEM alias + Gothic styling
   ---------------------------------------------------------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(10, 9, 7, 0.92);
  backdrop-filter: blur(18px) saturate(0.7);
  -webkit-backdrop-filter: blur(18px) saturate(0.7);
  border-bottom: 1px solid rgba(226,217,200,0.1);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.site-header.scrolled {
  background: rgba(8, 7, 5, 0.97);
  border-bottom-color: rgba(226,217,200,0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 2rem;
  max-width: 1440px;
  margin: 0 auto;
  gap: 2rem;
}

/* Logo */
.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  z-index: 2;
}
.header__logo-img {
  width: var(--logo-w, 150px);
  height: auto;
  display: block;
}
.header__logo-text {
  font-family: var(--font-heading, 'Bebas Neue', 'Impact', sans-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f0ece4;
  text-decoration: none;
  line-height: 1;
}

/* Desktop nav */
.header__nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}
.header__nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.25rem;
}
.header__nav-item { position: relative; }
.header__nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0.5rem 1rem;
  font-family: var(--font-heading, 'Bebas Neue', 'Impact', sans-serif);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c8c0b4;
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
  position: relative;
}
.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 1rem;
  right: 1rem;
  height: 1px;
  background: var(--color-accent);
  transform: scaleX(0);
  transition: transform 0.25s ease;
  transform-origin: left;
}
.header__nav-link:hover,
.header__nav-link.is-active {
  color: var(--color-accent);
}
.header__nav-link:hover::after,
.header__nav-link.is-active::after {
  transform: scaleX(1);
}
.header__nav-chevron {
  opacity: 0.6;
  transition: transform 0.2s ease;
}
.header__nav-item--has-dropdown:hover .header__nav-chevron {
  transform: rotate(180deg);
}

/* Mega dropdown */
.mega-dropdown {
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 320px;
  background: #110f0c;
  border: 1px solid rgba(226,217,200,0.12);
  border-top: 2px solid var(--color-accent);
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  transform: translateX(-50%) translateY(8px);
  z-index: 950;
}
.header__nav-item--has-dropdown:hover .mega-dropdown,
.header__nav-item--has-dropdown:focus-within .mega-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega-dropdown__inner {
  display: flex;
  gap: 0;
}
.mega-dropdown__links { flex: 1; padding: 1.5rem; }
.mega-dropdown__list { list-style: none; margin: 0; padding: 0; }
.mega-dropdown__item { margin-bottom: 0.1rem; }
.mega-dropdown__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0.75rem;
  font-family: var(--font-heading, 'Bebas Neue', 'Impact', sans-serif);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b0a898;
  text-decoration: none;
  transition: color 0.15s ease, background 0.15s ease, padding-left 0.15s ease;
  border-left: 2px solid transparent;
}
.mega-dropdown__link:hover,
.mega-dropdown__link.is-active {
  color: var(--color-accent);
  padding-left: 1.1rem;
  border-left-color: var(--color-accent);
}
.mega-dropdown__sub {
  list-style: none;
  margin: 0.25rem 0 0.5rem 1rem;
  padding: 0;
  border-left: 1px solid rgba(226,217,200,0.1);
}
.mega-dropdown__sub li { }
.mega-dropdown__sub-link {
  display: block;
  padding: 0.3rem 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: #7a7268;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.15s ease;
}
.mega-dropdown__sub-link:hover { color: var(--color-accent); }
.mega-dropdown__promo {
  width: 180px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.mega-dropdown__promo-link { display: block; height: 100%; }
.mega-dropdown__promo-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mega-dropdown__promo-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  font-family: var(--font-heading, 'Bebas Neue', 'Impact', sans-serif);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  text-transform: uppercase;
}

/* Header actions */
.header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.header__action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: #b0a898;
  cursor: pointer;
  transition: color 0.2s ease;
  text-decoration: none;
  position: relative;
  border-radius: 2px;
}
.header__action:hover { color: var(--color-accent); }
.header__cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 16px;
  height: 16px;
  background: var(--color-accent);
  color: #0a0a0a;
  font-size: 0.6rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Hamburger (mobile header button — now triggers fullscreen menu) */
.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(226,217,200,0.2);
  cursor: pointer;
  padding: 8px;
  border-radius: 2px;
  flex-shrink: 0;
}
.hamburger-bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #c8c0b4;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Search bar */
.header__search-bar {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
  background: #0e0d0a;
  border-top: 1px solid rgba(226,217,200,0.08);
}
.header__search-bar.is-open { max-height: 80px; }
.header__search-form {
  display: flex;
  align-items: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 0.75rem 2rem;
  gap: 0.5rem;
}
.header__search-input {
  flex: 1;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(226,217,200,0.2);
  color: #e0d8cc;
  font-family: var(--font-heading, 'Bebas Neue', 'Impact', sans-serif);
  font-size: 1rem;
  letter-spacing: 0.1em;
  padding: 0.5rem 0;
  outline: none;
  transition: border-color 0.2s ease;
}
.header__search-input::placeholder { color: #5a5650; }
.header__search-input:focus { border-bottom-color: var(--color-accent); }
.header__search-submit,
.header__search-close {
  background: transparent;
  border: none;
  color: #7a7268;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.2s ease;
}
.header__search-submit:hover,
.header__search-close:hover { color: var(--color-accent); }

/* Body offset for fixed header */
body { padding-top: 70px; }

/* Mobile: show hamburger, hide desktop nav */
@media (max-width: 899px) {
  .header__hamburger { display: flex; }
  .header__nav        { display: none; }
  .header-inner       { padding: 0 1.25rem; gap: 1rem; }
}

/* ----------------------------------------------------------
   4. FLOATING MENU TRIGGER PILL — Fixed bottom-center
   ---------------------------------------------------------- */

.bs-menu-trigger {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 1.75rem;
  height: 50px;
  background: rgba(12, 10, 8, 0.92);
  backdrop-filter: blur(20px) saturate(0.6);
  -webkit-backdrop-filter: blur(20px) saturate(0.6);
  border: 1px solid rgba(226,217,200,0.22);
  border-radius: 999px;
  color: var(--color-accent);
  cursor: pointer;
  font-family: var(--font-heading, 'Bebas Neue', 'Impact', sans-serif);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 30px rgba(0,0,0,0.6), 0 0 0 1px rgba(226,217,200,0.06) inset;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    transform 0.35s cubic-bezier(0.34,1.56,0.64,1),
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

/* Visible state (added via JS after scrolling 80px) */
.bs-menu-trigger--visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Always show on mobile regardless of scroll */
@media (max-width: 899px) {
  .bs-menu-trigger {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateX(-50%) translateY(0) !important;
  }
}

.bs-menu-trigger:hover {
  background: rgba(20,18,14,0.98);
  border-color: var(--color-accent);
  box-shadow: 0 6px 40px rgba(0,0,0,0.7), 0 0 20px rgba(226,217,200,0.08);
}
.bs-menu-trigger.is-active {
  opacity: 0;
  pointer-events: none;
}

/* Trigger bars (animated hamburger inside pill) */
.bs-menu-trigger__bars {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 18px;
}
.bs-menu-trigger__bar {
  display: block;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
  border-radius: 1px;
}
.bs-menu-trigger__label {
  line-height: 1;
}

/* ----------------------------------------------------------
   5. FULLSCREEN MENU OVERLAY — Gothic premium nav
   ---------------------------------------------------------- */

.bs-fullscreen-menu {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: #080705;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 6vw 3rem;
  overflow-y: auto;
  overflow-x: hidden;
  /* Entry: hidden state */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.bs-fullscreen-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Distressed noise texture inside overlay */
.bs-fullscreen-menu__texture {
  position: absolute;
  inset: 0;
  background-image: var(--distress-noise);
  background-size: 300px 300px;
  background-repeat: repeat;
  opacity: 0.05;
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* Acid-wash bleach smear effects */
.bs-fullscreen-menu::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 10% 20%, rgba(255,255,255,0.025) 0%, transparent 60%),
    radial-gradient(ellipse 40% 35% at 90% 80%, rgba(255,255,255,0.018) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 50% 50%, rgba(226,217,200,0.015) 0%, transparent 50%);
  pointer-events: none;
  mix-blend-mode: screen;
}

/* Diagonal distressed stripe accent */
.bs-fullscreen-menu::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -5%;
  width: 45vw;
  height: 140%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(226,217,200,0.015) 40%,
    rgba(226,217,200,0.025) 50%,
    rgba(226,217,200,0.012) 60%,
    transparent 100%
  );
  pointer-events: none;
  transform: skewX(-5deg);
}

/* Close button */
.bs-fullscreen-menu__close {
  position: absolute;
  top: 1.75rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(226,217,200,0.15);
  border-radius: 50%;
  color: #8a8278;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.3s ease;
  z-index: 10;
}
.bs-fullscreen-menu__close:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
  transform: rotate(90deg);
}

/* Logo inside overlay */
.bs-fullscreen-menu__logo {
  position: absolute;
  top: 1.6rem;
  left: 2rem;
  z-index: 10;
}
.bs-fullscreen-menu__logo-img {
  height: 40px;
  width: auto;
  opacity: 0.85;
  filter: brightness(0.9) saturate(0.5);
}
.bs-fullscreen-menu__logo-text {
  font-family: var(--font-heading, 'Bebas Neue', 'Impact', sans-serif);
  font-size: 1.3rem;
  letter-spacing: 0.15em;
  color: #5a5650;
  text-transform: uppercase;
}

/* Primary navigation links — massive stacked Gothic condensed */
.bs-fullscreen-menu__nav {
  position: relative;
  z-index: 5;
}
.bs-fullscreen-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.bs-fullscreen-menu__item {
  overflow: hidden;
  border-bottom: 1px solid rgba(226,217,200,0.06);
}
.bs-fullscreen-menu__item:first-child {
  border-top: 1px solid rgba(226,217,200,0.06);
}

/* Staggered entrance animation */
.bs-fullscreen-menu.is-open .bs-fullscreen-menu__item {
  animation: menuItemSlide 0.5s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: calc(var(--i, 1) * 60ms + 80ms);
}
@keyframes menuItemSlide {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

.bs-fullscreen-menu__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.85rem 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-decoration: none;
  color: #d4cdc4;
  font-family: var(--font-heading, 'Bebas Neue', 'Impact', sans-serif);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 1;
  transition: color 0.2s ease, letter-spacing 0.3s ease;
  position: relative;
}

/* Distressed text shadow on nav links */
.bs-fullscreen-menu__link-text {
  position: relative;
  display: inline-block;
  text-shadow:
    2px 2px 0 rgba(0,0,0,0.5),
    -1px -1px 0 rgba(0,0,0,0.3);
}

.bs-fullscreen-menu__link:hover {
  color: var(--color-accent);
  letter-spacing: 0.02em;
}

/* Italic slant on hover — y2k editorial */
.bs-fullscreen-menu__link:hover .bs-fullscreen-menu__link-text {
  font-style: italic;
}

.bs-fullscreen-menu__chevron {
  opacity: 0.4;
  flex-shrink: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.bs-fullscreen-menu__accordion-toggle[aria-expanded="true"] .bs-fullscreen-menu__chevron {
  transform: rotate(180deg);
  opacity: 0.7;
}

/* Sub-menu accordion */
.bs-fullscreen-menu__sub {
  list-style: none;
  margin: 0;
  padding: 0 0 0.75rem 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.bs-fullscreen-menu__sub.is-open {
  max-height: 600px;
}
.bs-fullscreen-menu__sub-item { }
.bs-fullscreen-menu__sub-link {
  display: block;
  padding: 0.5rem 1rem;
  font-family: var(--font-heading, 'Bebas Neue', 'Impact', sans-serif);
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6a6460;
  text-decoration: none;
  transition: color 0.15s ease, padding-left 0.15s ease;
}
.bs-fullscreen-menu__sub-link:hover {
  color: var(--color-accent);
  padding-left: 1.75rem;
}

/* Bottom utility row */
.bs-fullscreen-menu__utility {
  position: relative;
  z-index: 5;
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  border-top: 1px solid rgba(226,217,200,0.08);
  padding-top: 1.75rem;
}
.bs-fullscreen-menu__util-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.bs-fullscreen-menu__util-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading, 'Bebas Neue', 'Impact', sans-serif);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #5a5650;
  text-decoration: none;
  transition: color 0.2s ease;
}
.bs-fullscreen-menu__util-link:hover { color: var(--color-accent); }
.bs-fullscreen-menu__socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.bs-fullscreen-menu__social {
  color: #5a5650;
  transition: color 0.2s ease, transform 0.2s ease;
}
.bs-fullscreen-menu__social:hover {
  color: var(--color-accent);
  transform: scale(1.15);
}

/* Lock scroll when menu is open */
body.menu-open { overflow: hidden; }

/* ----------------------------------------------------------
   6. FOOTER — Full BEM CSS with Gothic distressed treatment
   ---------------------------------------------------------- */

.site-footer {
  position: relative;
  background: #080705;
  overflow: hidden;
  margin-top: 0;
  /* Space for floating trigger pill */
  padding-bottom: 6rem;
}

/* Footer texture */
.footer__texture {
  position: absolute;
  inset: 0;
  background-image: var(--distress-noise);
  background-size: 300px 300px;
  background-repeat: repeat;
  opacity: 0.04;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
}

/* Top section */
.footer__top {
  position: relative;
  z-index: 2;
  padding: 5rem 0 3rem;
  border-top: 1px solid rgba(226,217,200,0.08);
}

/* 4-col grid */
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.6fr;
  gap: 3rem 4rem;
  align-items: start;
}

/* Brand column */
.footer__col--brand { }
.footer__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 1.25rem;
}
.footer__logo-img {
  max-width: 160px;
  height: auto;
  filter: brightness(0.8) saturate(0.4);
  transition: filter 0.3s ease;
}
.footer__logo:hover .footer__logo-img { filter: brightness(1) saturate(0.7); }
.footer__logo-text {
  font-family: var(--font-heading, 'Bebas Neue', 'Impact', sans-serif);
  font-size: 1.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d4cdc4;
}
.footer__brand-text {
  font-size: 0.82rem;
  line-height: 1.65;
  color: #5a5650;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

/* Distressed rule after brand text */
.footer__brand-rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(226,217,200,0.2) 0%, transparent 80%);
  margin-bottom: 1.5rem;
  position: relative;
}
.footer__brand-rule::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 1px;
  background: rgba(226,217,200,0.35);
  filter: blur(0.5px);
}

/* Socials */
.footer__socials {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(226,217,200,0.12);
  border-radius: 2px;
  color: #5a5650;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.footer__social:hover {
  color: var(--color-accent);
  border-color: rgba(226,217,200,0.3);
  background: rgba(226,217,200,0.04);
}

/* Link columns */
.footer__col { }
.footer__col-title {
  font-family: var(--font-heading, 'Bebas Neue', 'Impact', sans-serif);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(226,217,200,0.1);
  position: relative;
}
.footer__col-title::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 2rem;
  height: 1px;
  background: var(--color-accent);
  opacity: 0.6;
}
.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer__link {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: #5a5650;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-block;
}
.footer__link:hover {
  color: #b0a898;
  padding-left: 0.5rem;
}

/* Newsletter column */
.footer__col--newsletter { }
.footer__newsletter-sub {
  font-size: 0.8rem;
  color: #4a4844;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.footer__newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__newsletter-input {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(226,217,200,0.04);
  border: 1px solid rgba(226,217,200,0.12);
  border-radius: 2px;
  color: #c8c0b4;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  box-sizing: border-box;
}
.footer__newsletter-input::placeholder { color: #3a3834; }
.footer__newsletter-input:focus {
  border-color: rgba(226,217,200,0.28);
  background: rgba(226,217,200,0.06);
}
.footer__newsletter-btn {
  width: 100%;
  padding: 0.85rem 1.5rem;
  background: transparent;
  border: 1px solid rgba(226,217,200,0.25);
  color: var(--color-accent);
  font-family: var(--font-heading, 'Bebas Neue', 'Impact', sans-serif);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  border-radius: 2px;
}
.footer__newsletter-btn:hover {
  background: var(--color-accent);
  color: #080705;
  border-color: var(--color-accent);
}
.footer__newsletter-success {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--color-accent);
  padding: 1rem;
  border: 1px solid rgba(226,217,200,0.15);
  background: rgba(226,217,200,0.04);
}
.footer__newsletter-error {
  font-size: 0.78rem;
  color: #8b1a1a;
  margin-top: 0.5rem;
}

/* Gothic brand statement bar */
.footer__statement {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(226,217,200,0.06);
  border-bottom: 1px solid rgba(226,217,200,0.06);
  background: rgba(226,217,200,0.02);
}
.footer__statement-text {
  display: block;
  text-align: center;
  font-family: var(--font-heading, 'Bebas Neue', 'Impact', sans-serif);
  font-size: clamp(0.7rem, 1.5vw, 0.9rem);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(226,217,200,0.2);
  white-space: nowrap;
}

/* Footer bottom bar */
.footer__bottom {
  position: relative;
  z-index: 2;
  padding: 1.5rem 0;
}
.footer__bottom .container { }
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__copyright {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: #3a3834;
  text-transform: uppercase;
}
.footer__payment-icons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.footer__payment-icon {
  height: 22px;
  width: auto;
  opacity: 0.3;
  filter: grayscale(1);
  transition: opacity 0.2s ease;
}
.footer__payment-icon:hover { opacity: 0.6; }
.footer__legal-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.footer__legal-link {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: #3a3834;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease;
}
.footer__legal-link:hover { color: #7a7268; }

/* ----------------------------------------------------------
   7. DISTRESSED TYPOGRAPHY UPGRADES — Gothic editorial
   ---------------------------------------------------------- */

/* Section headings: stronger distressed treatment */
h1, h2, h3, h4, h5 {
  text-shadow: 1px 2px 0 rgba(0,0,0,0.4), -1px -1px 0 rgba(0,0,0,0.2);
}

/* Hero-level headings: italic editorial slant */
.hero-banner__title,
.hero-banner__heading,
[class*="hero"] h1,
[class*="hero"] h2 {
  font-style: italic;
  letter-spacing: -0.02em;
  text-shadow:
    3px 4px 0 rgba(0,0,0,0.5),
    -1px -1px 0 rgba(0,0,0,0.3),
    0 0 40px rgba(0,0,0,0.6);
}

/* Brand statement / large editorial type */
.brand-story__title,
[class*="brand-story"] h2,
.section-title--xl {
  font-style: italic;
  text-shadow: 2px 3px 0 rgba(0,0,0,0.4);
}

/* Collection card titles — add distress */
.collection-tile__name,
.collection-tile__title,
[class*="collection"] h3 {
  text-shadow: 1px 2px 0 rgba(0,0,0,0.5);
  letter-spacing: 0.04em;
}

/* ----------------------------------------------------------
   8. ACID WASH EFFECT — Layered bleed on image sections
   ---------------------------------------------------------- */

/* Acid wash gradient bleed on lookbook images */
.lookbook-slide__img,
.lookbook__img,
[class*="lookbook"] img {
  filter: contrast(1.08) saturate(0.75);
}

/* UGC photos — desaturated aged look */
.ugc-tile__img,
[class*="ugc"] img {
  filter: contrast(1.05) saturate(0.7) brightness(0.95);
}

/* Product card image — slight grain desaturation */
.product-card__img,
.product-tile__img,
[class*="product-card"] img,
[class*="product-tile"] img {
  filter: contrast(1.03) saturate(0.85);
  transition: filter 0.4s ease;
}
.product-card:hover .product-card__img,
.product-tile:hover .product-tile__img {
  filter: contrast(1.06) saturate(0.95);
}

/* Acid wash overlay on hero */
.hero-banner {
  position: relative;
}
.hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 15% 30%, rgba(255,248,235,0.04) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 85% 70%, rgba(255,248,235,0.025) 0%, transparent 50%);
  mix-blend-mode: screen;
  z-index: 2;
  pointer-events: none;
}

/* ----------------------------------------------------------
   9. PRODUCT BADGES — Off-white instead of yellow
   ---------------------------------------------------------- */
.product-badge--new,
.badge--new,
[class*="badge-new"] {
  background: var(--color-accent) !important;
  color: #0a0a0a !important;
}
.product-badge--sale,
.badge--sale,
[class*="badge-sale"] {
  background: var(--color-badge-sale) !important;
  color: #f0ece4 !important;
}

/* ----------------------------------------------------------
   10. RESPONSIVE — Footer + menu on mobile
   ---------------------------------------------------------- */

@media (max-width: 1023px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 3rem;
  }
  .footer__col--brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 639px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer__col--brand { grid-column: auto; }
  .footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .footer__statement-text {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
  }
  .bs-fullscreen-menu {
    padding: 5rem 1.5rem 3rem;
  }
  .bs-fullscreen-menu__link {
    font-size: clamp(2.2rem, 12vw, 4rem);
  }
  .bs-fullscreen-menu__utility {
    flex-direction: column;
    align-items: flex-start;
  }
  .bs-fullscreen-menu__util-links {
    flex-wrap: wrap;
    gap: 1rem;
  }
}

/* Extra bottom padding on pages to clear floating pill */
.main-content,
main,
#main-content {
  padding-bottom: 5rem;
}

/* ============================================================
   END GOTHIC Y2K ACID WASH REDESIGN — BLACK SHEEP SOCIETY
   ============================================================ */

/* ============================================================
   PHASE 4 — LAYOUT FIXES · FIRE/SMOKE · READABILITY
   ============================================================ */

/* ----------------------------------------------------------
   1. ROOT DARK THEME OVERRIDE
   Override ALL original light-mode variables so nothing
   renders white-background / black-text anymore
   ---------------------------------------------------------- */
:root {
  --color-bg:            #0c0b09;
  --color-bg-alt:        #110f0c;
  --color-black:         #0c0b09;
  --color-white:         #e0d8cc;
  --color-text:          #c8c0b4;
  --color-text-muted:    #7a7268;
  --color-border:        rgba(226,217,200,0.1);
  --color-header-bg:     #0a0907;
  --color-header-text:   #e0d8cc;
  --color-footer-bg:     #080705;
  --color-footer-text:   #c8c0b4;
  --color-btn-bg:        #1a1714;
  --color-btn-text:      #e0d8cc;
  --color-badge-sold:    #4a4844;
  /* fire/smoke animation palette — amber only (no pink) */
  --fire-1: #d97520;
  --fire-2: #8b3a00;
  --fire-3: #ffd070;
  --smoke-1: rgba(200,192,180,0.55);
  --smoke-2: rgba(120,115,108,0.3);
}

/* Global body reset to dark */
body {
  background: #0c0b09 !important;
  color: #c8c0b4 !important;
}

/* ----------------------------------------------------------
   2. ANNOUNCEMENT BAR — off dark, not yellow
   ---------------------------------------------------------- */
.announcement-bar {
  background: #0e0d0a !important;
  color: #c8c0b4 !important;
  border-bottom: 1px solid rgba(226,217,200,0.08) !important;
}
.announcement-bar__item,
.announcement-bar__item a { color: #c8c0b4 !important; }
.announcement-bar__sep   { color: rgba(226,217,200,0.3) !important; }

/* ----------------------------------------------------------
   3. GLOBAL READABILITY FIXES
   Catch every element that was still using the old white/black
   ---------------------------------------------------------- */

/* Cards, panels, surfaces */
.product-card,
.collection-tile,
.lookbook-slide,
.ugc-tile,
.review-card,
.stat-card,
.testimonial-card,
.brand-story,
.trust-bar,
.newsletter-section,
[class*="-card"],
[class*="-tile"],
[class*="-panel"],
[class*="-block"] {
  background: transparent;
  color: inherit;
}

/* Any white backgrounds still leaking */
.product-card__info,
.collection-tile__caption,
[class*="__info"],
[class*="__caption"],
[class*="__content"],
[class*="__body"] {
  background: transparent !important;
  color: #c8c0b4 !important;
}

/* Headings — make sure they're visible */
h1, h2, h3, h4, h5, h6 {
  color: #e8e0d4 !important;
}

/* Muted text */
p, li, span, label, td, th {
  color: inherit;
}

/* Price text */
.product-card__price,
.product-card__price--sale,
[class*="price"] {
  color: #e0d8cc !important;
}
.product-card__price--compare,
[class*="price--compare"],
[class*="price--original"] {
  color: #4a4844 !important;
}

/* Vendor / muted labels */
.product-card__vendor,
[class*="__vendor"],
[class*="__subtitle"],
[class*="__eyebrow"],
.section-eyebrow {
  color: var(--color-accent) !important;
}

/* Input fields */
input, textarea, select {
  background: rgba(226,217,200,0.05) !important;
  color: #e0d8cc !important;
  border-color: rgba(226,217,200,0.15) !important;
}
input::placeholder,
textarea::placeholder { color: #4a4844 !important; }

/* Borders and dividers */
hr,
[class*="__divider"],
[class*="__rule"],
[class*="__sep"] {
  border-color: rgba(226,217,200,0.08) !important;
}

/* Section backgrounds */
section,
.section,
[class*="-section"] {
  background: transparent;
}

/* Sticky ATC bar — full dark restyle */
.sticky-atc {
  background: rgba(10, 9, 7, 0.96) !important;
  border-top: 1px solid rgba(226,217,200,0.12) !important;
  backdrop-filter: blur(16px) !important;
}
.sticky-atc__title { color: #e0d8cc !important; }
.sticky-atc__price { color: var(--color-accent) !important; }
.sticky-atc__img   { filter: saturate(0.7) !important; }

/* Cart drawer */
.cart-drawer,
[class*="cart-drawer"] {
  background: #0e0d0a !important;
  color: #c8c0b4 !important;
  border-left: 1px solid rgba(226,217,200,0.1) !important;
}
.cart-drawer__title,
[class*="cart-drawer__title"] { color: #e0d8cc !important; }
.cart-drawer__overlay,
.cart-drawer-overlay {
  background: rgba(0,0,0,0.7) !important;
}

/* ----------------------------------------------------------
   4. FLOATING MENU TRIGGER — Move to BOTTOM-RIGHT
   ---------------------------------------------------------- */
.bs-menu-trigger {
  left: auto !important;
  right: 1.5rem !important;
  transform: translateY(20px) !important;  /* hidden default state */
  bottom: 2rem;
}
.bs-menu-trigger--visible {
  transform: translateY(0) !important;
}
@media (max-width: 899px) {
  .bs-menu-trigger {
    transform: translateY(0) !important;
    right: 1.25rem !important;
    left: auto !important;
  }
}

/* ----------------------------------------------------------
   5. FLOATING ADD-TO-CART PILL — Bottom-left, fixed
   Only visible on product pages (controlled via JS class on body)
   ---------------------------------------------------------- */
.bs-atc-pill {
  position: fixed;
  bottom: 2rem;
  left: 1.5rem;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 1.5rem;
  height: 50px;
  background: rgba(12,10,8,0.94);
  backdrop-filter: blur(20px) saturate(0.6);
  -webkit-backdrop-filter: blur(20px) saturate(0.6);
  border: 1px solid rgba(226,217,200,0.18);
  border-radius: 999px;
  color: #e0d8cc;
  cursor: pointer;
  font-family: var(--font-heading, 'Bebas Neue','Impact',sans-serif);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 30px rgba(0,0,0,0.6);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition:
    opacity 0.35s ease,
    transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  overflow: visible;
  text-decoration: none;
}
.bs-atc-pill--visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
@media (max-width: 899px) {
  .bs-atc-pill {
    left: 1.25rem;
    bottom: 2rem;
  }
}

/* Cart icon inside pill */
.bs-atc-pill__icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* ----------------------------------------------------------
   6. FIRE ANIMATION — on .bs-atc-pill
   Multi-layer CSS fire using pseudo-elements + keyframes
   ---------------------------------------------------------- */
/* ----------------------------------------------------------
   FIRE — toned-down amber embers (replaced neon pink version)
   Smaller, slower, amber-only, lower opacity
   ---------------------------------------------------------- */
@keyframes fireFlicker1 {
  0%,100% { transform: scaleX(1)    scaleY(1)    translateY(0)    rotate(-1deg); opacity: 0.45; }
  30%      { transform: scaleX(0.92) scaleY(1.08) translateY(-2px) rotate(1.5deg); opacity: 0.55; }
  60%      { transform: scaleX(1.06) scaleY(0.96) translateY(-1px) rotate(-1.5deg); opacity: 0.40; }
}
@keyframes fireFlicker2 {
  0%,100% { transform: scaleX(1.04) scaleY(0.94) translateY(-1px) rotate(1.5deg);  opacity: 0.35; }
  40%      { transform: scaleX(0.93) scaleY(1.1)  translateY(-3px) rotate(-2deg);   opacity: 0.50; }
  70%      { transform: scaleX(1.08) scaleY(1)    translateY(0)    rotate(1deg);    opacity: 0.38; }
}
@keyframes fireFlicker3 {
  0%,100% { transform: scaleY(1)   translateY(0);    opacity: 0.30; }
  50%      { transform: scaleY(1.15) translateY(-4px); opacity: 0.42; }
}
/* Subtle amber glow — no pink, reduced spread */
@keyframes fireGlow {
  0%,100% { box-shadow: 0 0 6px 1px rgba(200,120,20,0.30), 0 4px 24px rgba(0,0,0,0.55); }
  50%      { box-shadow: 0 0 12px 3px rgba(220,150,30,0.38), 0 4px 24px rgba(0,0,0,0.55); }
}
@keyframes fireBorderPulse {
  0%,100% { border-color: rgba(180,100,15,0.35); }
  50%      { border-color: rgba(210,140,25,0.50); }
}

.bs-atc-pill::before,
.bs-atc-pill::after {
  content: '';
  position: absolute;
  bottom: 40px;
  border-radius: 50% 50% 35% 35% / 60% 60% 40% 40%;
  pointer-events: none;
  filter: blur(6px);       /* softer / more diffuse */
  will-change: transform, opacity;
}
/* Main ember — warm amber, smaller */
.bs-atc-pill::before {
  left: 50%;
  width: 20px;             /* was 36px */
  height: 28px;            /* was 44px */
  margin-left: -10px;
  background: radial-gradient(ellipse at 50% 85%,
    #ffd070 0%,
    #d97520 45%,
    #8b3a00 80%,
    transparent 100%
  );
  animation: fireFlicker1 1.3s ease-in-out infinite;  /* was 0.55s */
  z-index: 2;
  opacity: 0.45;
}
/* Secondary ember — offset, slightly cooler */
.bs-atc-pill::after {
  left: 50%;
  width: 14px;             /* was 22px */
  height: 20px;            /* was 32px */
  margin-left: -2px;
  background: radial-gradient(ellipse at 50% 85%,
    #ffe8a0 0%,
    #e08820 50%,
    #7a2e00 85%,
    transparent 100%
  );
  animation: fireFlicker2 1.7s ease-in-out infinite;  /* was 0.7s */
  z-index: 3;
  opacity: 0.38;
}

/* Glow pulse — amber only */
.bs-atc-pill--visible {
  animation: fireGlow 2.5s ease-in-out infinite, fireBorderPulse 2.5s ease-in-out infinite;
  border-color: rgba(180,100,15,0.35);
}

/* Third ember layer via span — inner hot core */
.bs-atc-pill__flame {
  position: absolute;
  bottom: 44px;
  left: 50%;
  width: 10px;             /* was 16px */
  height: 18px;            /* was 28px */
  margin-left: -12px;
  background: radial-gradient(ellipse at 50% 85%,
    #fff0b0 0%,
    #ffb830 55%,
    transparent 100%
  );
  border-radius: 50% 50% 35% 35% / 60% 60% 40% 40%;
  filter: blur(4px);
  animation: fireFlicker3 1.1s ease-in-out infinite;  /* was 0.45s */
  pointer-events: none;
  z-index: 4;
  opacity: 0.35;
}

/* ----------------------------------------------------------
   7. SMOKE ANIMATION — on .bs-menu-trigger (bottom-right)
   ---------------------------------------------------------- */
@keyframes smokeRise1 {
  0%   { transform: translateX(0)    translateY(0)   scale(0.4); opacity: 0.6; }
  40%  { transform: translateX(-6px) translateY(-18px)scale(0.9); opacity: 0.45;}
  100% { transform: translateX(4px)  translateY(-40px)scale(1.4); opacity: 0; }
}
@keyframes smokeRise2 {
  0%   { transform: translateX(0)    translateY(0)   scale(0.35); opacity: 0.5; }
  40%  { transform: translateX(7px)  translateY(-15px)scale(0.85); opacity: 0.35;}
  100% { transform: translateX(-5px) translateY(-38px)scale(1.3); opacity: 0; }
}
@keyframes smokeRise3 {
  0%   { transform: translateX(0)    translateY(0)   scale(0.3); opacity: 0.4; }
  40%  { transform: translateX(4px)  translateY(-12px)scale(0.75); opacity: 0.3;}
  100% { transform: translateX(-8px) translateY(-35px)scale(1.2); opacity: 0; }
}
@keyframes smokePulse {
  0%,100% { box-shadow: 0 0 8px 1px rgba(200,192,180,0.15), 0 4px 30px rgba(0,0,0,0.6); }
  50%      { box-shadow: 0 0 16px 4px rgba(200,192,180,0.28), 0 4px 30px rgba(0,0,0,0.6); }
}

.bs-menu-trigger::before,
.bs-menu-trigger::after {
  content: '';
  position: absolute;
  bottom: 52px;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform, opacity;
}
/* First smoke wisp */
.bs-menu-trigger::before {
  left: 50%;
  width: 18px;
  height: 18px;
  margin-left: -12px;
  background: radial-gradient(circle, var(--smoke-1) 0%, transparent 70%);
  filter: blur(5px);
  animation: smokeRise1 1.8s ease-out infinite;
  animation-delay: 0s;
}
/* Second smoke wisp */
.bs-menu-trigger::after {
  left: 50%;
  width: 14px;
  height: 14px;
  margin-left: 2px;
  background: radial-gradient(circle, var(--smoke-2) 0%, transparent 70%);
  filter: blur(4px);
  animation: smokeRise2 2.1s ease-out infinite;
  animation-delay: 0.35s;
}

/* Third smoke wisp via a span inside trigger */
.bs-menu-trigger__smoke {
  position: absolute;
  bottom: 52px;
  left: 50%;
  width: 12px;
  height: 12px;
  margin-left: -6px;
  background: radial-gradient(circle, rgba(180,175,168,0.4) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(3px);
  animation: smokeRise3 2.4s ease-out infinite;
  animation-delay: 0.7s;
  pointer-events: none;
}

/* Subtle smoke glow on pill */
.bs-menu-trigger--visible {
  animation: smokePulse 2.4s ease-in-out infinite;
}
/* Cancel smoke pulse when menu is open */
.bs-menu-trigger.is-active { animation: none; }

/* ----------------------------------------------------------
   8. SPACING / SLICING FIXES
   ---------------------------------------------------------- */

/* Page offset for fixed header — ensure no content hidden under header */
body { padding-top: 70px !important; }

/* Section vertical rhythm */
.section-spacing,
[class*="section-spacing"],
[class*="section-padding"] {
  padding-top: clamp(3rem, 6vw, 6rem) !important;
  padding-bottom: clamp(3rem, 6vw, 6rem) !important;
}

/* Remove any unintended negative margins that cause slicing */
section + section,
.shopify-section + .shopify-section {
  margin-top: 0;
}

/* Container max-width consistency */
.container {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1rem, 4vw, 2rem);
  padding-right: clamp(1rem, 4vw, 2rem);
}

/* Image overflow clipping */
.product-card__media,
.collection-tile__media,
.lookbook-slide,
.ugc-tile {
  overflow: hidden;
}

/* Footer bottom padding — clear both fixed pills */
.site-footer,
footer {
  padding-bottom: 7rem !important;
}

/* Main content bottom padding — clear both pills */
main,
#main-content,
.main-content {
  padding-bottom: 5rem !important;
}

/* ============================================================
   END PHASE 4 — BLACK SHEEP SOCIETY
   ============================================================ */

/* ============================================================
   PHASE 5 — PRODUCT PAGE EDITORIAL OVERHAUL
   Full-width 9:15 gallery · editorial info panel · premium UX
   Black Sheep Society
   ============================================================ */

/* ----------------------------------------------------------
   1.  GALLERY — full-bleed portrait (9:15 ratio)
   ---------------------------------------------------------- */

/* Kill old gallery so it doesn't conflict */
.product-layout,
.product-gallery,
.product-gallery__thumbnails,
.product-gallery__main,
.gallery-slide,
.gallery-thumb,
.gallery-arrow {
  display: none !important;
}

/* New gallery wrapper — bleeds to edges on mobile */
.pdp-gallery {
  position: relative;
  width: 100vw;
  margin-left: calc(-1 * clamp(1rem, 4vw, 2rem));  /* cancel container padding */
  aspect-ratio: 9 / 15;
  overflow: hidden;
  background: #0c0b09;
}

/* Track — flex row, slides side by side via translate */
.pdp-gallery__track {
  display: flex;
  width: 100%;
  height: 100%;
}

/* Each slide */
.pdp-gallery__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.38s ease;
  pointer-events: none;
}
.pdp-gallery__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* Image — cover fill */
.pdp-gallery__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Video wrap — same ratio as gallery */
.pdp-gallery__video-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}
.pdp-gallery__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}
/* Video play overlay */
.pdp-gallery__video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.32);
  transition: opacity 0.2s ease;
}
.pdp-gallery__play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(226,217,200,0.7);
  background: rgba(12,11,9,0.55);
  backdrop-filter: blur(8px);
  color: #e2d9c8;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease;
}
.pdp-gallery__play-btn:hover {
  transform: scale(1.1);
  background: rgba(12,11,9,0.75);
}

/* Model viewer */
.pdp-gallery__model-wrap {
  width: 100%;
  height: 100%;
}
.pdp-gallery__model-wrap model-viewer {
  width: 100%;
  height: 100%;
}

/* Tap prev/next — invisible hit targets */
.pdp-gallery__tap-prev,
.pdp-gallery__tap-next {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 33%;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 4;
  -webkit-tap-highlight-color: transparent;
}
.pdp-gallery__tap-prev { left: 0; }
.pdp-gallery__tap-next { right: 0; }

/* Dot indicators */
.pdp-gallery__dots {
  position: absolute;
  bottom: 1.1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  align-items: center;
  z-index: 5;
}
.pdp-gallery__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  background: rgba(226,217,200,0.3);
  padding: 0;
  cursor: pointer;
  position: relative;
  transition: background 0.2s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pdp-gallery__dot.is-active {
  background: #e2d9c8;
  transform: scale(1.35);
}
/* Video dot — slightly wider pill */
.pdp-gallery__dot:has(.pdp-gallery__dot-icon) {
  width: 14px;
  border-radius: 3px;
}
.pdp-gallery__dot-icon {
  width: 5px;
  height: 5px;
  color: rgba(226,217,200,0.7);
}

/* Counter badge — top-right */
.pdp-gallery__counter {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--font-heading, 'UnifrakturMaguntia', serif);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: rgba(226,217,200,0.55);
  background: rgba(12,11,9,0.4);
  backdrop-filter: blur(6px);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(226,217,200,0.1);
  z-index: 5;
  pointer-events: none;
  line-height: 1.6;
}
.pdp-gallery__counter-sep {
  margin: 0 0.15em;
  opacity: 0.5;
}

/* Desktop: gallery left column, info right column */
@media (min-width: 900px) {
  .product-page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 0;
  }
  .pdp-gallery {
    position: sticky;
    top: 70px;           /* header height */
    width: 100%;
    margin-left: 0;
    /* Keep 9:15 on desktop */
    aspect-ratio: 9 / 15;
    max-height: calc(100vh - 80px);
  }
  .pdp-info {
    padding: clamp(2rem, 4vw, 4rem) clamp(1.5rem, 3vw, 3rem);
    min-height: 100%;
  }
  /* Related products and other sections span full width */
  .related-products {
    grid-column: 1 / -1;
  }
}

/* ----------------------------------------------------------
   2.  INFO PANEL — editorial dark treatment
   ---------------------------------------------------------- */

.pdp-info {
  background: var(--color-bg, #0c0b09);
  padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1rem, 4vw, 2rem);
}
.pdp-info__inner {
  max-width: 560px;
}

/* Breadcrumb */
.pdp-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
}
.pdp-breadcrumb__link {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted, #7a7268);
  text-decoration: none;
  transition: color 0.18s;
}
.pdp-breadcrumb__link:hover { color: var(--color-text, #c8c0b4); }
.pdp-breadcrumb__sep {
  font-size: 0.65rem;
  color: var(--color-text-muted, #7a7268);
  opacity: 0.5;
}
.pdp-breadcrumb__cur {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted, #7a7268);
}

/* Vendor + Rating */
.pdp-meta-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.6rem;
  flex-wrap: wrap;
}
.pdp-vendor {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent, #e2d9c8);
  font-weight: 600;
}
.pdp-rating {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.pdp-stars {
  display: flex;
  gap: 1px;
}
.pdp-star { color: var(--color-accent, #e2d9c8); }
.pdp-star--empty { color: var(--color-border, rgba(226,217,200,0.15)); }
.pdp-rating__count {
  font-size: 0.68rem;
  color: var(--color-text-muted, #7a7268);
  text-decoration: none;
  letter-spacing: 0.06em;
}
.pdp-rating__count:hover { color: var(--color-text, #c8c0b4); }

/* Title */
.pdp-title {
  font-family: var(--font-heading, 'UnifrakturMaguntia', serif);
  font-size: clamp(2rem, 6vw, 3.2rem);
  line-height: 1.05;
  color: var(--color-white, #e0d8cc);
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}

/* Price row */
.pdp-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-bottom: 0.25rem;
}
.pdp-price {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--color-white, #e0d8cc);
}
.pdp-price--sale {
  color: #e2816a;
}
.pdp-price--compare {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--color-text-muted, #7a7268);
  text-decoration: line-through;
}
.pdp-price__savings {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: #7abf8a;
  font-weight: 600;
  text-transform: uppercase;
}

/* Divider rule — distressed */
.pdp-rule {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border, rgba(226,217,200,0.12)) 20%, var(--color-border, rgba(226,217,200,0.12)) 80%, transparent);
  margin: 1.4rem 0;
}

/* ----------------------------------------------------------
   3.  VARIANT SELECTORS — pill style
   ---------------------------------------------------------- */

.pdp-variants {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.pdp-option__header {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 0.65rem;
  flex-wrap: wrap;
}
.pdp-option__label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted, #7a7268);
  font-weight: 600;
}
.pdp-option__selected-val {
  font-size: 0.75rem;
  color: var(--color-text, #c8c0b4);
  letter-spacing: 0.04em;
}
.pdp-option__guide {
  margin-left: auto;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted, #7a7268);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: color 0.18s;
}
.pdp-option__guide:hover { color: var(--color-accent, #e2d9c8); }

/* Size pills */
.pdp-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.pdp-size {
  position: relative;
  cursor: pointer;
}
.pdp-size__input { /* sr-only already applied via class */ }
.pdp-size__label {
  display: block;
  padding: 0.5rem 1rem;
  border: 1px solid var(--color-border, rgba(226,217,200,0.14));
  border-radius: 3px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--color-text, #c8c0b4);
  background: transparent;
  transition: border-color 0.18s, color 0.18s, background 0.18s;
  user-select: none;
  white-space: nowrap;
}
.pdp-size:hover .pdp-size__label {
  border-color: rgba(226,217,200,0.4);
  color: var(--color-white, #e0d8cc);
}
.pdp-size.is-selected .pdp-size__label {
  border-color: var(--color-accent, #e2d9c8);
  color: var(--color-bg, #0c0b09);
  background: var(--color-accent, #e2d9c8);
  font-weight: 700;
}
.pdp-size.is-unavailable .pdp-size__label {
  color: var(--color-text-muted, #7a7268);
  border-color: rgba(226,217,200,0.06);
  cursor: not-allowed;
}
/* Strike-through line on unavailable */
.pdp-size__strike {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.pdp-size__strike::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 12%;
  right: 12%;
  height: 1px;
  background: var(--color-text-muted, #7a7268);
  opacity: 0.5;
  transform: rotate(-10deg);
}

/* Colour swatches */
.pdp-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.pdp-swatch {
  position: relative;
  cursor: pointer;
}
.pdp-swatch__dot {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(226,217,200,0.12);
  transition: border-color 0.18s, transform 0.18s;
}
.pdp-swatch:hover .pdp-swatch__dot { transform: scale(1.1); }
.pdp-swatch.is-selected .pdp-swatch__dot {
  border-color: var(--color-accent, #e2d9c8);
  box-shadow: 0 0 0 3px rgba(226,217,200,0.18);
}
.pdp-swatch.is-unavailable { opacity: 0.35; cursor: not-allowed; }

/* Generic select */
.pdp-select {
  width: 100%;
  padding: 0.6rem 0.85rem;
  background: var(--color-bg-alt, #110f0c);
  border: 1px solid var(--color-border, rgba(226,217,200,0.14));
  border-radius: 3px;
  color: var(--color-text, #c8c0b4);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  appearance: none;
  cursor: pointer;
}
.pdp-select:focus {
  outline: none;
  border-color: var(--color-accent, #e2d9c8);
}

/* ----------------------------------------------------------
   4.  QTY PICKER + ATC ROW
   ---------------------------------------------------------- */

.pdp-purchase-row {
  display: flex;
  gap: 0.75rem;
  align-items: stretch;
  margin-bottom: 0.85rem;
}

/* Qty picker */
.pdp-qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border, rgba(226,217,200,0.14));
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0;
  height: 52px;
}
.pdp-qty__btn {
  width: 40px;
  height: 100%;
  background: transparent;
  border: none;
  color: var(--color-text-muted, #7a7268);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.18s, background 0.18s;
}
.pdp-qty__btn:hover {
  color: var(--color-white, #e0d8cc);
  background: rgba(226,217,200,0.06);
}
.pdp-qty__input {
  width: 44px;
  text-align: center;
  background: transparent;
  border: none;
  border-left: 1px solid var(--color-border, rgba(226,217,200,0.1));
  border-right: 1px solid var(--color-border, rgba(226,217,200,0.1));
  color: var(--color-text, #c8c0b4);
  font-size: 0.85rem;
  font-weight: 600;
  height: 100%;
  -moz-appearance: textfield;
}
.pdp-qty__input::-webkit-inner-spin-button,
.pdp-qty__input::-webkit-outer-spin-button { -webkit-appearance: none; }
.pdp-qty__input:focus { outline: none; color: var(--color-white, #e0d8cc); }

/* ATC button — dark, full-width remaining space */
.pdp-atc-btn {
  flex: 1;
  height: 52px;
  padding: 0 1.5rem;
  background: var(--color-white, #e0d8cc) !important;
  color: var(--color-bg, #0c0b09) !important;
  border: none;
  border-radius: 3px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  transition: background 0.18s, transform 0.12s;
}
.pdp-atc-btn:hover:not(:disabled) {
  background: #ffffff !important;
  transform: translateY(-1px);
}
.pdp-atc-btn:active:not(:disabled) { transform: translateY(0); }
.pdp-atc-btn:disabled {
  background: rgba(226,217,200,0.12) !important;
  color: var(--color-text-muted, #7a7268) !important;
  cursor: not-allowed;
}
.pdp-atc-btn__icon { flex-shrink: 0; opacity: 0.7; }

/* Dynamic checkout */
.pdp-dynamic-checkout {
  margin-bottom: 1.25rem;
}
.pdp-dynamic-checkout .shopify-payment-button__button {
  border-radius: 3px !important;
  min-height: 48px !important;
}

/* Back in stock */
.pdp-bis {
  margin-top: 0.75rem;
  padding: 1rem;
  border: 1px solid rgba(226,217,200,0.1);
  border-radius: 3px;
  background: rgba(226,217,200,0.03);
}
.pdp-bis__text {
  font-size: 0.75rem;
  color: var(--color-text-muted, #7a7268);
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
}
.pdp-bis__row {
  display: flex;
  gap: 0.5rem;
}
.pdp-bis__input {
  flex: 1;
  padding: 0.55rem 0.75rem;
  background: transparent;
  border: 1px solid var(--color-border, rgba(226,217,200,0.14));
  border-radius: 2px;
  color: var(--color-text, #c8c0b4);
  font-size: 0.78rem;
}
.pdp-bis__input::placeholder { color: var(--color-text-muted, #7a7268); }
.pdp-bis__input:focus { outline: none; border-color: var(--color-accent, #e2d9c8); }

/* ----------------------------------------------------------
   5.  TRUST BAR
   ---------------------------------------------------------- */

.pdp-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.2rem;
  margin-bottom: 0.5rem;
}
.pdp-trust__item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted, #7a7268);
}
.pdp-trust__item svg { flex-shrink: 0; opacity: 0.6; }

/* ----------------------------------------------------------
   6.  ACCORDIONS — <details> native
   ---------------------------------------------------------- */

.pdp-accordions {
  display: flex;
  flex-direction: column;
}
.pdp-accordion {
  border-top: 1px solid var(--color-border, rgba(226,217,200,0.1));
}
.pdp-accordion:last-child {
  border-bottom: 1px solid var(--color-border, rgba(226,217,200,0.1));
}
.pdp-accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 0;
  cursor: pointer;
  list-style: none;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text, #c8c0b4);
  background: transparent;
  border: none;
  transition: color 0.18s;
  user-select: none;
}
.pdp-accordion__trigger::-webkit-details-marker { display: none; }
.pdp-accordion__trigger::marker { display: none; }
.pdp-accordion[open] .pdp-accordion__trigger { color: var(--color-white, #e0d8cc); }
.pdp-accordion__trigger:hover { color: var(--color-white, #e0d8cc); }
.pdp-accordion__icon {
  flex-shrink: 0;
  transition: transform 0.24s ease;
  color: var(--color-text-muted, #7a7268);
}
.pdp-accordion[open] .pdp-accordion__icon { transform: rotate(180deg); }
.pdp-accordion__body {
  padding-bottom: 1.1rem;
  font-size: 0.82rem;
  line-height: 1.75;
  color: var(--color-text, #c8c0b4);
}

/* Size table */
.pdp-size-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.75rem;
}
.pdp-size-table th {
  text-align: left;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted, #7a7268);
  border-bottom: 1px solid var(--color-border, rgba(226,217,200,0.1));
  padding: 0.4rem 0.6rem;
}
.pdp-size-table td {
  padding: 0.5rem 0.6rem;
  border-bottom: 1px solid rgba(226,217,200,0.05);
  color: var(--color-text, #c8c0b4);
}
.pdp-size-table tr:hover td { background: rgba(226,217,200,0.03); }

/* ----------------------------------------------------------
   7.  SOCIAL SHARE
   ---------------------------------------------------------- */

.pdp-share {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-top: 1.25rem;
  flex-wrap: wrap;
}
.pdp-share__label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted, #7a7268);
  margin-right: 0.2rem;
}
.pdp-share__btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--color-border, rgba(226,217,200,0.12));
  background: transparent;
  color: var(--color-text-muted, #7a7268);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.18s, border-color 0.18s;
}
.pdp-share__btn:hover {
  color: var(--color-white, #e0d8cc);
  border-color: rgba(226,217,200,0.35);
}

/* ----------------------------------------------------------
   8.  CONTAINER RESET on product page
   Remove extra padding that created white margins
   ---------------------------------------------------------- */
.product-page > .container {
  padding-left: 0 !important;
  padding-right: 0 !important;
  max-width: 100% !important;
}
/* The pdp-info reintroduces its own horizontal padding */

/* ============================================================
   END PHASE 5 — BLACK SHEEP SOCIETY
   ============================================================ */

/* ============================================================
   PHASE 5b — INTER-SECTION SPACING FIX
   Kill the gap between hero banner and the next section
   ============================================================ */

/* Hero banner sits flush — no bottom margin/padding */
.hero-banner,
.shopify-section:has(.hero-banner) {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* Section directly after hero: collapse top padding to zero */
.shopify-section:has(.hero-banner) + .shopify-section .section-spacing,
.shopify-section:has(.hero-banner) + .shopify-section .lookbook-strip,
.shopify-section:has(.hero-banner) + .shopify-section section {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* Broader fix: lookbook-strip never needs top padding
   (images are the content — they start at the edge) */
.lookbook-strip {
  padding-top: 0 !important;
}

/* Also kill any Shopify-injected margin between sections */
.shopify-section + .shopify-section {
  margin-top: 0 !important;
}

/* ============================================================
   END PHASE 5b
   ============================================================ */

/* ============================================================
   PHASE 6 — COLLECTION PAGE REBUILD
   No filters · Grid/Full toggle · Media mode cycle button
   Black Sheep Society
   ============================================================ */

/* ----------------------------------------------------------
   1.  COLLECTION HERO
   ---------------------------------------------------------- */
.coll-hero {
  position: relative;
  width: 100%;
  min-height: 40vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #0c0b09;
}
.coll-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.coll-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(12,11,9,0.1) 0%, rgba(12,11,9,0.75) 100%);
}
.coll-hero__content {
  position: relative;
  z-index: 2;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 2rem);
}
.coll-hero__title {
  font-family: var(--font-heading, 'UnifrakturMaguntia', serif);
  font-size: clamp(2.5rem, 8vw, 6rem);
  color: var(--color-white, #e0d8cc);
  line-height: 1;
  margin: 0 0 0.5rem;
}
.coll-hero__desc {
  font-size: 0.82rem;
  color: rgba(226,217,200,0.65);
  letter-spacing: 0.06em;
  max-width: 480px;
}

/* No-hero title bar */
.coll-title-bar {
  padding: 2rem 0 0;
}
.coll-title {
  font-family: var(--font-heading, 'UnifrakturMaguntia', serif);
  font-size: clamp(2rem, 6vw, 4rem);
  color: var(--color-white, #e0d8cc);
  margin: 0 0 0.35rem;
}
.coll-desc {
  font-size: 0.82rem;
  color: var(--color-text-muted, #7a7268);
  letter-spacing: 0.05em;
}

/* ----------------------------------------------------------
   2.  TOOLBAR
   ---------------------------------------------------------- */
.coll-toolbar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-border, rgba(226,217,200,0.08));
}
.coll-toolbar__count {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted, #7a7268);
}
.coll-toolbar__count span { opacity: 0.6; }
.coll-toolbar__gap { flex: 1; }

/* ---- Media mode button — circular distressed ---- */
.coll-media-btn {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3px;
  padding: 0;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

/* Distressed outer ring */
.coll-media-btn__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--color-accent, #e2d9c8);
  opacity: 0.55;
  /* Rough/distressed look via SVG dash pattern */
  background: transparent;
  box-shadow:
    inset 0 0 0 1px rgba(226,217,200,0.08),
    0 0 0 1px rgba(226,217,200,0.04);
  /* Mask inner fill with noise feel */
  background-image: radial-gradient(circle at 38% 38%,
    rgba(226,217,200,0.06) 0%,
    rgba(12,11,9,0.55) 60%,
    rgba(12,11,9,0.8) 100%
  );
  transition: opacity 0.25s ease, box-shadow 0.25s ease;
}
.coll-media-btn:hover .coll-media-btn__ring,
.coll-media-btn:focus-visible .coll-media-btn__ring {
  opacity: 0.9;
  box-shadow:
    inset 0 0 0 1px rgba(226,217,200,0.12),
    0 0 12px 3px rgba(226,217,200,0.15);
}

/* Label inside button */
.coll-media-btn__label {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  pointer-events: none;
}
.coll-media-btn__icon {
  color: var(--color-accent, #e2d9c8);
  display: block;
  flex-shrink: 0;
}
#coll-media-text {
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent, #e2d9c8);
  line-height: 1;
}

/* Spin on click */
.coll-media-btn.is-spinning {
  animation: mediaBtnSpin 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes mediaBtnSpin {
  0%   { transform: rotate(0deg)   scale(1);    }
  40%  { transform: rotate(160deg) scale(0.88); }
  100% { transform: rotate(360deg) scale(1);    }
}

/* Mode 0 = video: accent border pulse */
.coll-media-btn[data-media-mode="0"] .coll-media-btn__ring {
  border-color: var(--color-accent, #e2d9c8);
  opacity: 0.6;
}
/* Mode 1 = lifestyle: warm tint */
.coll-media-btn[data-media-mode="1"] .coll-media-btn__ring {
  border-color: #c8a87a;
  opacity: 0.65;
}
/* Mode 2 = clean/white: bright */
.coll-media-btn[data-media-mode="2"] .coll-media-btn__ring {
  border-color: #e0d8cc;
  opacity: 0.85;
  box-shadow: 0 0 10px 2px rgba(226,217,200,0.2);
}
.coll-media-btn[data-media-mode="2"] .coll-media-btn__icon,
.coll-media-btn[data-media-mode="2"] #coll-media-text {
  color: #e0d8cc;
}

/* ---- View toggles ---- */
.coll-view-toggles {
  display: flex;
  gap: 4px;
  align-items: center;
  flex-shrink: 0;
}
.coll-view-btn {
  width: 34px;
  height: 34px;
  border-radius: 3px;
  border: 1px solid var(--color-border, rgba(226,217,200,0.12));
  background: transparent;
  color: var(--color-text-muted, #7a7268);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.18s, border-color 0.18s, background 0.18s;
}
.coll-view-btn.is-active {
  color: var(--color-white, #e0d8cc);
  border-color: rgba(226,217,200,0.4);
  background: rgba(226,217,200,0.05);
}
.coll-view-btn:hover:not(.is-active) {
  color: var(--color-text, #c8c0b4);
  border-color: rgba(226,217,200,0.25);
}

/* ----------------------------------------------------------
   3.  PRODUCT GRID — grid mode (default)
   ---------------------------------------------------------- */
.coll-grid-wrap {
  padding-top: 1.5rem;
  padding-bottom: 4rem;
}

.coll-grid {
  display: grid;
  gap: 1px;                   /* hairline gaps — editorial editorial editorial */
}

/* Grid mode: 2-col mobile, 3-col tablet, 4-col desktop */
.coll-grid--grid {
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 600px) {
  .coll-grid--grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1000px) {
  .coll-grid--grid { grid-template-columns: repeat(4, 1fr); }
}

/* Full mode: single column, full-bleed cards */
.coll-grid--full {
  grid-template-columns: 1fr;
  gap: 0;
}
.coll-grid--full .coll-card__media {
  aspect-ratio: 9 / 15;       /* portrait hero in full mode */
}
.coll-grid--full .coll-card__info {
  padding: 1.25rem clamp(1rem, 4vw, 2rem) 2rem;
}
.coll-grid--full .coll-card__title {
  font-size: clamp(1.4rem, 5vw, 2.5rem);
}
@media (min-width: 900px) {
  .coll-grid--full {
    grid-template-columns: repeat(2, 1fr);
  }
  .coll-grid--full .coll-card__media {
    aspect-ratio: 3 / 4;
  }
}

/* ----------------------------------------------------------
   4.  CARD
   ---------------------------------------------------------- */
.coll-card {
  position: relative;
  background: var(--color-bg, #0c0b09);
  overflow: hidden;
}
.coll-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* Media area — square in grid mode */
.coll-card__media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #0c0b09;
}

/* All slots stacked, only active one visible */
.coll-card__slot {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.coll-card__slot.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* Images fill slot — force fill regardless of intrinsic dimensions */
.coll-card__img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center top;
}

/* White-bg slot: contain instead of cover so product isn't cropped */
.coll-grid--white-mode .coll-card__img--white,
.coll-card__slot--2 .coll-card__img--white {
  object-fit: contain;
  background: #f5f3ef;        /* warm off-white — matches product photography bg */
  padding: 8%;
}

/* Video fills slot */
.coll-card__video {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center top;
}
/* Fallback still image behind video (hidden when video plays) */
.coll-card__img--fallback {
  position: absolute;
  inset: 0;
  z-index: -1;
}

/* Placeholder */
.coll-card__placeholder {
  width: 100%;
  height: 100%;
  background: #110f0c;
}

/* Badges */
.coll-card__badges {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 3;
  pointer-events: none;
}
.coll-badge {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
  line-height: 1.5;
}
.coll-badge--sold  { background: rgba(12,11,9,0.75); color: var(--color-text-muted, #7a7268); border: 1px solid rgba(226,217,200,0.12); }
.coll-badge--sale  { background: #e2816a; color: #fff; }
.coll-badge--excl  { background: var(--color-accent, #e2d9c8); color: #0c0b09; }

/* Quick-add overlay */
.coll-card__qa {
  position: absolute;
  inset: auto 0 0 0;
  padding: 0.75rem;
  background: linear-gradient(to top, rgba(12,11,9,0.88) 0%, transparent 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 3;
}
.coll-card:hover .coll-card__qa,
.coll-card:focus-within .coll-card__qa {
  opacity: 1;
  transform: translateY(0);
}
.coll-card__qa-btn {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.55rem 1.2rem;
  border-radius: 2px;
  border: 1px solid var(--color-accent, #e2d9c8);
  background: rgba(12,11,9,0.7);
  color: var(--color-accent, #e2d9c8);
  cursor: pointer;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: background 0.18s, color 0.18s;
  display: block;
}
.coll-card__qa-btn:hover {
  background: var(--color-accent, #e2d9c8);
  color: var(--color-bg, #0c0b09);
}

/* Card info */
.coll-card__info {
  padding: 0.75rem 0.65rem 1rem;
}
.coll-card__vendor {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted, #7a7268);
  margin-bottom: 0.2rem;
}
.coll-card__title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text, #c8c0b4);
  line-height: 1.3;
  margin: 0 0 0.35rem;
  letter-spacing: 0.02em;
}
.coll-grid--full .coll-card__title {
  font-family: var(--font-heading, 'UnifrakturMaguntia', serif);
}
.coll-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.coll-card__price {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-white, #e0d8cc);
}
.coll-card__price--sale  { color: #e2816a; }
.coll-card__price--compare {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--color-text-muted, #7a7268);
  text-decoration: line-through;
}

/* Touch devices: always show quick-add (no hover) */
@media (hover: none) {
  .coll-card__qa {
    opacity: 1;
    transform: translateY(0);
    background: linear-gradient(to top, rgba(12,11,9,0.82) 0%, transparent 100%);
  }
}

/* ----------------------------------------------------------
   5.  PAGINATION
   ---------------------------------------------------------- */
.coll-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding-top: 3rem;
  flex-wrap: wrap;
}
.coll-pagination__btn {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted, #7a7268);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 1px solid var(--color-border, rgba(226,217,200,0.12));
  border-radius: 2px;
  transition: color 0.18s, border-color 0.18s;
}
.coll-pagination__btn:hover {
  color: var(--color-white, #e0d8cc);
  border-color: rgba(226,217,200,0.35);
}
.coll-pagination__pages {
  display: flex;
  gap: 4px;
  align-items: center;
}
.coll-pagination__page {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--color-text-muted, #7a7268);
  text-decoration: none;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: color 0.18s, border-color 0.18s;
}
.coll-pagination__page:hover {
  color: var(--color-white, #e0d8cc);
  border-color: rgba(226,217,200,0.2);
}
.coll-pagination__page--cur {
  color: var(--color-white, #e0d8cc);
  border-color: rgba(226,217,200,0.3);
  background: rgba(226,217,200,0.05);
  font-weight: 700;
}
.coll-pagination__ellipsis {
  font-size: 0.75rem;
  color: var(--color-text-muted, #7a7268);
  padding: 0 0.2rem;
}

/* ----------------------------------------------------------
   6.  EMPTY STATE
   ---------------------------------------------------------- */
.coll-empty {
  padding: 5rem 0;
  text-align: center;
}
.coll-empty__text {
  font-size: 0.85rem;
  color: var(--color-text-muted, #7a7268);
  letter-spacing: 0.1em;
}

/* ============================================================
   END PHASE 6 — BLACK SHEEP SOCIETY
   ============================================================ */
footer {
    padding-bottom: 0 !important;
      margin-bottom: 0 !important;
      }
}
/* ============================================================
   FIXES — Black Sheep Society (May 2026)
   ============================================================ */

/* FIX 1: Remove unnecessary spacing above footer */
main,
#main-content,
.main-content {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

/* FIX 3: Collection images fill containers properly */
.coll-grid .product-card__media img,
.coll-grid .product-card__img,
.collection-tile__img,
.coll-hero__img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}

.product-card__media {
  overflow: hidden;
}

/* FIX 4: Try It On button overlay on carousel */
.product-page .shopify-section:first-child,
.product-page > .shopify-section:first-of-type {
  position: relative;
}

/* Make the Tolstoy "See It On You" / "Try It On" button overlay the gallery */
.product-page {
  position: relative;
}

.pdp-gallery {
  position: relative;
}

/* Target the apps section that precedes main-product (Tolstoy Try It On) */
.shopify-section:has([class*="see-it-on-you"]),
.shopify-section:has([class*="onyou"]),
.shopify-section:has([class*="tolstoy"]) {
  position: absolute !important;
  top: 16px !important;
  right: 16px !important;
  left: auto !important;
  z-index: 100 !important;
  width: auto !important;
  pointer-events: all;
}


/* FIX 4 (continued): Force Tolstoy Try It On button to overlay gallery corner */
/* The Tolstoy app section renders above main-product in the DOM */
.template-product #main-content > .shopify-section:first-child {
  position: absolute !important;
  top: 16px !important;
  right: 16px !important;
  left: auto !important;
  bottom: auto !important;
  z-index: 100 !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}
/* Ensure the product page container is the positioning context */
.template-product #main-content {
  position: relative;
}

/* ============================================================
   FIX 9: Product page payment/info blocks
   ============================================================ */
.pdp-blocks {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.pdp-block {
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border, rgba(0,0,0,0.1));
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
}
.pdp-payment-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.pdp-payment-badge__logo {
  height: 20px;
  width: auto;
  object-fit: contain;
}
.pdp-payment-badge__text-logo {
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: lowercase;
  letter-spacing: -0.02em;
}
.pdp-payment-badge__text {
  margin: 0;
  font-size: 0.8rem;
  color: var(--color-text-muted, #666);
}
.pdp-payment-badge__link {
  font-size: 0.7rem;
  text-decoration: underline;
  color: var(--color-text-muted, #666);
  margin-left: auto;
}
.pdp-custom-block {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pdp-custom-block__icon {
  font-size: 1rem;
}
.pdp-custom-block__text {
  margin: 0;
  font-size: 0.8rem;
  color: var(--color-text-muted, #666);
}
.pdp-payment-icons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.pdp-payment-icons__heading {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted, #666);
}
.pdp-payment-icons__row {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.pdp-payment-icon {
  height: 22px;
  width: auto;
}

/* ==============================================================
   SITEWIDE VIDEO — HIDE ALL CONTROLS / UI
   Applies to ALL <video> elements across the entire store:
   collection cards, hero banners, product pages, 360° viewer, etc.
   ============================================================== */
video::-webkit-media-controls,
video::-webkit-media-controls-enclosure,
video::-webkit-media-controls-panel,
video::-webkit-media-controls-overlay-play-button,
video::-webkit-media-controls-start-playback-button,
video::-webkit-media-controls-play-button,
video::-webkit-media-controls-timeline,
video::-webkit-media-controls-current-time-display,
video::-webkit-media-controls-time-remaining-display,
video::-webkit-media-controls-mute-button,
video::-webkit-media-controls-volume-slider,
video::-webkit-media-controls-fullscreen-button,
video::-internal-media-controls-download-button,
video::-webkit-media-controls-toggle-closed-captions-button {
  display: none !important;
  -webkit-appearance: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 0 !important;
  height: 0 !important;
}

/* Firefox */
video::-moz-range-track,
video::-moz-range-thumb {
  display: none !important;
}

/* General fallback — ensure no controls attribute styling */
video {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Prevent any context menu / long-press overlay */
video:focus {
  outline: none;
}

