/** Shopify CDN: Minification failed

Line 25:13 Expected identifier but found whitespace
Line 25:25 Unexpected "{"
Line 25:35 Expected ":"
Line 26:15 Expected identifier but found whitespace
Line 26:25 Unexpected "{"
Line 26:35 Expected ":"
Line 27:15 Expected identifier but found whitespace
Line 27:25 Unexpected "{"
Line 27:35 Expected ":"
Line 28:21 Expected identifier but found whitespace
... and 43 more hidden warnings

**/
/* ============================================================
   LOAM — Premium Shopify Theme
   A calm, elegant theme for home & living brands
   Version 1.0.0
   ============================================================ */

/* ── DESIGN TOKENS ───────────────────────────────────────── */
:root {
  /* Brand Colours */
  --color-bg:           {{ settings.color_background }};
  --color-bg-2:         {{ settings.color_background_2 }};
  --color-text:         {{ settings.color_text }};
  --color-text-muted:   {{ settings.color_text_muted }};
  --color-accent:       {{ settings.color_accent }};
  --color-accent-light: {{ settings.color_accent_light }};
  --color-accent-dark:  {{ settings.color_accent_dark }};
  --color-border:       {{ settings.color_border }};
  --color-dark:         {{ settings.color_dark }};

  /* Typography */
  --font-heading:       {{ settings.font_heading.family }}, {{ settings.font_heading.fallback_families }};
  --font-body:          {{ settings.font_body.family }}, {{ settings.font_body.fallback_families }};
  --font-size-base:     {{ settings.font_size_base }}px;
  --font-weight-body:   {{ settings.font_body.weight }};
  --font-weight-heading:{{ settings.font_heading.weight }};

  /* Spacing */
  --space-xs:   8px;
  --space-sm:   16px;
  --space-md:   24px;
  --space-lg:   48px;
  --space-xl:   80px;
  --space-2xl:  120px;

  /* Layout */
  --nav-height:       72px;
  --container-width:  1280px;
  --container-narrow: 960px;
  --border-radius:    {{ settings.border_radius }}px;

  /* Transitions */
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:  cubic-bezier(0, 0, 0.2, 1);
  --duration:  0.3s;

  /* Shadows */
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:  0 24px 64px rgba(0,0,0,0.14);
}

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

html {
  font-size: var(--font-size-base);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4 {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-heading);
  line-height: 1.1;
  color: var(--color-dark);
}

h1, .h1 { font-size: clamp(40px, 6vw, 80px); }
h2, .h2 { font-size: clamp(28px, 4vw, 52px); }
h3, .h3 { font-size: clamp(22px, 3vw, 36px); }
h4, .h4 { font-size: clamp(18px, 2vw, 24px); }

p { margin-bottom: var(--space-sm); }
p:last-child { margin-bottom: 0; }

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}

em { font-style: italic; color: var(--color-accent); }

.eyebrow {
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: var(--space-sm);
}

.eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--color-accent);
  flex-shrink: 0;
}

.eyebrow--centered {
  justify-content: center;
}

.eyebrow--centered::before { display: none; }

/* ── LAYOUT ───────────────────────────────────────────────── */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container--narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-2xl) 0;
}

.section--sm { padding: var(--space-xl) 0; }
.section--lg { padding: calc(var(--space-2xl) * 1.5) 0; }

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

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

/* Grid system */
.grid {
  display: grid;
  gap: var(--space-md);
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--auto { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 400;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--duration) var(--ease),
              color var(--duration) var(--ease),
              transform var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease);
}

.btn:hover::after { transform: translateX(0); }
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--color-accent);
  color: var(--color-dark);
}

.btn--primary:hover {
  background: var(--color-accent-light);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.btn--dark {
  background: var(--color-dark);
  color: var(--color-bg);
}

.btn--dark:hover {
  background: var(--color-text);
}

.btn--outline {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.btn--outline:hover {
  border-color: var(--color-dark);
  color: var(--color-dark);
}

.btn--ghost {
  background: none;
  color: var(--color-text-muted);
  padding: 0;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 2px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.btn--ghost:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
  transform: none;
}

.btn--ghost::after { display: none; }

.btn--full { width: 100%; }

.btn--sm { padding: 12px 28px; font-size: 9px; }
.btn--lg { padding: 20px 52px; font-size: 11px; }

/* ── FORMS ────────────────────────────────────────────────── */
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: var(--space-sm);
}

.form-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.form-input,
.form-select,
.form-textarea {
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text);
  outline: none;
  transition: border-color var(--duration),
              box-shadow var(--duration);
  border-radius: var(--border-radius);
  width: 100%;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(var(--color-accent-rgb, 184,151,106), 0.12);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-muted);
  opacity: 0.6;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238C8278' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.form-textarea { resize: vertical; min-height: 120px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.form-row--single { grid-template-columns: 1fr; }

/* ── CARDS ────────────────────────────────────────────────── */
.card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: transform var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ── PRODUCT CARD ─────────────────────────────────────────── */
.product-card {
  position: relative;
  background: var(--color-bg-2);
  cursor: pointer;
  transition: transform 0.35s var(--ease),
              box-shadow 0.35s var(--ease);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

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

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.product-card:hover .product-card__media img {
  transform: scale(1.06);
}

.product-card__badges {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}

.badge {
  display: inline-block;
  padding: 4px 10px;
  font-size: 8px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 400;
}

.badge--accent    { background: var(--color-accent); color: var(--color-dark); }
.badge--dark      { background: var(--color-dark); color: var(--color-bg); }
.badge--sale      { background: #C4845A; color: #fff; }
.badge--new       { background: var(--color-dark); color: var(--color-bg); }
.badge--exclusive { background: var(--color-dark); color: var(--color-accent); }

.product-card__wishlist {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  background: rgba(253,252,250,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  border: none;
  z-index: 2;
}

.product-card:hover .product-card__wishlist {
  opacity: 1;
  transform: scale(1);
}

.product-card__wishlist:hover { background: var(--color-accent); }
.product-card__wishlist svg {
  width: 14px; height: 14px;
  stroke: var(--color-text);
  fill: none;
  stroke-width: 1.5;
}

.product-card__wishlist.is-active svg {
  fill: #C4845A;
  stroke: #C4845A;
}

.product-card__quick-add {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--color-dark);
  color: var(--color-bg);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 14px;
  text-align: center;
  z-index: 2;
  transform: translateY(100%);
  transition: transform 0.35s var(--ease);
  cursor: pointer;
  border: none;
  width: 100%;
  font-family: var(--font-body);
}

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

.product-card__quick-add:hover { background: var(--color-text); }

.product-card__info {
  padding: 18px 20px 22px;
}

.product-card__category {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.product-card__title {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--color-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.product-card__price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card__price { font-size: 15px; color: var(--color-text); }
.product-card__price s {
  color: var(--color-text-muted);
  font-size: 12px;
  margin-right: 6px;
  text-decoration: line-through;
}

.product-card__rating {
  display: flex;
  gap: 2px;
  color: var(--color-accent);
  font-size: 11px;
}

/* ── ANNOUNCEMENT BAR ─────────────────────────────────────── */
.announcement-bar {
  background: var(--color-accent);
  padding: 11px 0;
  overflow: hidden;
  position: relative;
}

.announcement-bar__inner {
  display: inline-flex;
  white-space: nowrap;
  animation: loam-marquee 30s linear infinite;
}

.announcement-bar__item {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--color-dark);
  padding: 0 48px;
}

.announcement-bar__sep {
  color: rgba(0,0,0,0.25);
  padding: 0 4px;
}

@keyframes loam-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── HEADER / NAV ─────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-lg);
  z-index: 500;
  background: rgba(var(--color-bg-rgb, 247,244,239), 0.94);
  backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: border-color var(--duration),
              box-shadow var(--duration),
              background var(--duration);
}

.site-header.is-scrolled {
  border-color: var(--color-border);
  box-shadow: 0 4px 40px rgba(0,0,0,0.06);
}

.site-header.is-dark {
  background: rgba(26,24,20,0.96);
  border-color: rgba(255,255,255,0.05);
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo__mark {
  width: 34px;
  height: 34px;
}

.site-logo__text {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-dark);
  transition: letter-spacing 0.4s var(--ease), color var(--duration);
}

.site-header.is-dark .site-logo__text { color: var(--color-bg); }
.site-logo:hover .site-logo__text { letter-spacing: 0.32em; }

/* Nav links */
.nav-links {
  display: flex;
  list-style: none;
  height: var(--nav-height);
  align-items: center;
}

.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-item__link {
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  text-decoration: none;
  padding: 0 18px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  transition: color var(--duration);
}

.nav-item__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 18px; right: 18px;
  height: 1.5px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s var(--ease);
}

.nav-item:hover > .nav-item__link { color: var(--color-dark); }
.nav-item:hover > .nav-item__link::after { transform: scaleX(1); }
.site-header.is-dark .nav-item__link { color: var(--color-border); }
.site-header.is-dark .nav-item:hover > .nav-item__link { color: var(--color-bg); }

.nav-chevron {
  width: 7px; height: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform var(--duration);
  flex-shrink: 0;
}

.nav-item:hover .nav-chevron { transform: rotate(-135deg) translateY(0); }

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.nav-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  text-decoration: none;
  color: var(--color-text);
  transition: color var(--duration), transform var(--duration);
  border-radius: 50%;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-icon:hover { color: var(--color-accent); transform: translateY(-1px); }
.site-header.is-dark .nav-icon { color: var(--color-border); }
.site-header.is-dark .nav-icon:hover { color: var(--color-accent); }

.nav-icon svg {
  width: 19px; height: 19px;
  stroke: currentColor; fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-sep {
  width: 1px; height: 18px;
  background: var(--color-border);
  margin: 0 4px;
  flex-shrink: 0;
}

.site-header.is-dark .nav-sep { background: rgba(255,255,255,0.08); }

.cart-count {
  position: absolute;
  top: 6px; right: 6px;
  width: 14px; height: 14px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 500;
  color: var(--color-dark);
  transform: scale(0);
  transition: transform 0.3s var(--ease);
}

.cart-count.is-visible { transform: scale(1); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0;
}

.nav-hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--color-text);
  transition: transform 0.35s var(--ease), opacity 0.3s, width 0.3s;
  transform-origin: center;
}

.nav-hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MEGA MENU ────────────────────────────────────────────── */
.mega-menu {
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  border-bottom: 2px solid var(--color-accent);
  box-shadow: var(--shadow-lg);
  display: grid;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.3s var(--ease),
              transform 0.35s var(--ease),
              visibility 0.3s;
  z-index: 490;
  pointer-events: none;
}

.nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
}

.mega-menu--3 { grid-template-columns: 220px 1fr 260px; min-height: 340px; }
.mega-menu--4 { grid-template-columns: 220px 1fr 1fr 260px; min-height: 300px; }

.mega-col {
  padding: 44px 36px;
  border-right: 1px solid var(--color-border);
}

.mega-col:last-child { border-right: none; padding: 0; overflow: hidden; position: relative; }

.mega-col__eyebrow {
  font-size: 9px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.mega-col__eyebrow::after {
  content: '';
  flex: 1; height: 1px;
  background: var(--color-border);
  max-width: 48px;
}

.mega-col__title {
  font-family: var(--font-heading);
  font-size: 34px;
  font-style: italic;
  color: var(--color-dark);
  line-height: 1.1;
  margin-bottom: 14px;
}

.mega-col__desc {
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.mega-col__cta {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-accent);
  text-decoration: none;
  border-bottom: 1px solid var(--color-accent);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}

.mega-col__cta:hover { opacity: 0.7; }

/* Mega links */
.mega-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mega-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  text-decoration: none;
  color: var(--color-text);
  font-size: 13px;
  border-radius: 2px;
  transition: background 0.2s, padding-left 0.25s, color 0.2s;
}

.mega-links a:hover {
  background: var(--color-bg-2);
  color: var(--color-dark);
  padding-left: 18px;
}

.mega-link__icon {
  width: 30px; height: 30px;
  background: var(--color-bg-2);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  transition: background 0.2s;
}

.mega-links a:hover .mega-link__icon { background: var(--color-border); }

.mega-link__name {
  display: block;
  font-size: 13px;
  color: inherit;
}

.mega-link__sub {
  display: block;
  font-size: 10px;
  color: var(--color-text-muted);
}

.mega-link__arrow {
  color: var(--color-text-muted);
  margin-left: auto;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s, transform 0.2s;
}

.mega-links a:hover .mega-link__arrow { opacity: 1; transform: translateX(0); }

/* Staggered animation */
.nav-item:hover .mega-links li { animation: loam-mega-in 0.3s ease both; }
.nav-item:hover .mega-links li:nth-child(1){animation-delay:0.05s}
.nav-item:hover .mega-links li:nth-child(2){animation-delay:0.10s}
.nav-item:hover .mega-links li:nth-child(3){animation-delay:0.15s}
.nav-item:hover .mega-links li:nth-child(4){animation-delay:0.20s}
.nav-item:hover .mega-links li:nth-child(5){animation-delay:0.25s}
.nav-item:hover .mega-links li:nth-child(6){animation-delay:0.30s}
@keyframes loam-mega-in { from{opacity:0;transform:translateX(-8px)} to{opacity:1;transform:translateX(0)} }

/* Mega featured */
.mega-featured {
  position: absolute;
  inset: 0;
  cursor: pointer;
  overflow: hidden;
}

.mega-featured__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease);
}

.mega-featured:hover .mega-featured__bg { transform: scale(1.04); }

.mega-featured__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,24,20,0.78), rgba(26,24,20,0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}

.mega-featured__tag {
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.mega-featured__title {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--color-bg);
  line-height: 1.2;
  margin-bottom: 6px;
}

.mega-featured__sub { font-size: 11px; color: var(--color-border); }

/* ── MOBILE MENU ──────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--color-dark);
  z-index: 450;
  display: flex;
  flex-direction: column;
  padding: calc(var(--nav-height) + 32px) 32px 40px;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  overflow-y: auto;
}

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

.mobile-nav-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mobile-nav-item > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--color-bg);
  text-decoration: none;
  transition: color var(--duration);
}

.mobile-nav-item > a:hover { color: var(--color-accent); }

.mobile-sub { display: none; padding: 8px 0 16px; }
.mobile-sub.is-open { display: block; }

.mobile-sub a {
  display: block;
  padding: 10px 0;
  font-size: 13px;
  color: var(--color-border);
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: color 0.2s, padding-left 0.2s;
}

.mobile-sub a:hover { color: var(--color-accent); padding-left: 8px; }

/* ── SEARCH OVERLAY ───────────────────────────────────────── */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,24,20,0.72);
  backdrop-filter: blur(8px);
  z-index: 600;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 100px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}

.search-overlay.is-open { opacity: 1; visibility: visible; }

.search-box {
  background: var(--color-bg);
  width: 100%;
  max-width: 700px;
  padding: 48px 52px;
  position: relative;
  transform: translateY(-24px);
  transition: transform 0.4s var(--ease-out);
  box-shadow: var(--shadow-lg);
}

.search-overlay.is-open .search-box { transform: translateY(0); }

.search-box__eyebrow {
  font-size: 9px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 24px;
}

.search-box__row {
  display: flex;
  align-items: center;
  border-bottom: 1.5px solid var(--color-dark);
  gap: 16px;
  padding-bottom: 10px;
}

.search-box__row svg {
  width: 20px; height: 20px;
  stroke: var(--color-text-muted);
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  flex-shrink: 0;
}

.search-box__input {
  flex: 1;
  border: none;
  background: none;
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--color-dark);
  outline: none;
}

.search-box__input::placeholder { color: var(--color-border); }

.search-box__close {
  position: absolute;
  top: 20px; right: 20px;
  background: none; border: none;
  cursor: pointer;
  color: var(--color-text-muted);
  font-size: 18px;
  padding: 8px;
  transition: color 0.2s;
}

.search-box__close:hover { color: var(--color-accent); }

.search-hints {
  margin-top: 28px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.search-hint {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding: 6px 14px;
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: all 0.2s;
}

.search-hint:hover { border-color: var(--color-accent); color: var(--color-accent); }

/* ── CART DRAWER ──────────────────────────────────────────── */
.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(480px, 100vw);
  background: var(--color-bg);
  z-index: 700;
  display: flex;
  flex-direction: column;
  box-shadow: -24px 0 80px rgba(0,0,0,0.15);
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
}

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

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,24,20,0.5);
  backdrop-filter: blur(4px);
  z-index: 699;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}

.cart-overlay.is-open { opacity: 1; visibility: visible; }

.cart-drawer__header {
  padding: 24px 28px;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

.cart-drawer__title {
  font-family: var(--font-heading);
  font-size: 26px;
  color: var(--color-dark);
}

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

.cart-drawer__close:hover { color: var(--color-accent); }
.cart-drawer__close svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.4; }

.cart-drawer__progress {
  padding: 12px 28px;
  background: var(--color-bg-2);
  border-bottom: 1px solid var(--color-border);
}

.cart-drawer__progress-label {
  font-size: 11px;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.cart-drawer__progress-bar {
  height: 3px;
  background: var(--color-border);
  border-radius: 2px;
  overflow: hidden;
}

.cart-drawer__progress-fill {
  height: 100%;
  background: var(--color-accent);
  transition: width 0.6s var(--ease);
}

.cart-drawer__items {
  flex: 1;
  overflow-y: auto;
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
}

.cart-item__media {
  width: 80px; height: 100px;
  background: var(--color-border);
  flex-shrink: 0;
  overflow: hidden;
}

.cart-item__media img { width: 100%; height: 100%; object-fit: cover; }

.cart-item__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cart-item__title {
  font-family: var(--font-heading);
  font-size: 17px;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.cart-item__variant {
  font-size: 11px;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.cart-item__price { font-size: 15px; color: var(--color-text); }

.cart-qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border);
  width: fit-content;
}

.cart-qty__btn {
  width: 30px; height: 30px;
  background: none; border: none;
  cursor: pointer;
  font-size: 16px;
  color: var(--color-text);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}

.cart-qty__btn:hover { background: var(--color-bg-2); }
.cart-qty__num { padding: 0 10px; font-size: 13px; }

.cart-item__remove {
  background: none; border: none;
  cursor: pointer;
  color: var(--color-text-muted);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
  margin-top: 4px;
  width: fit-content;
  padding: 0;
  font-family: var(--font-body);
}

.cart-item__remove:hover { color: #C4845A; }

.cart-drawer__footer {
  padding: 24px 28px;
  border-top: 1px solid var(--color-border);
  flex-shrink: 0;
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}

.cart-subtotal__label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.cart-subtotal__value {
  font-family: var(--font-heading);
  font-size: 26px;
  color: var(--color-dark);
}

.cart-shipping-note {
  font-size: 11px;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.cart-shipping-note--success { color: var(--color-accent); }

/* ── TOAST ────────────────────────────────────────────────── */
.loam-toast {
  position: fixed;
  bottom: 32px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--color-dark);
  color: var(--color-bg);
  padding: 14px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  z-index: 800;
  opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
}

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

.loam-toast__icon { color: var(--color-accent); font-size: 16px; }

/* ── HERO SPLIT ───────────────────────────────────────────── */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--nav-height) - 40px);
}

.hero-split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
  position: relative;
  overflow: hidden;
}

.hero-split__content--dark { background: var(--color-dark); }

.hero-split__content--dark::before {
  content: '';
  position: absolute;
  bottom: -120px; right: -120px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,151,106,0.06), transparent 70%);
  pointer-events: none;
}

.hero-split__title {
  margin-bottom: var(--space-md);
  animation: loam-fade-up 0.9s var(--ease) 0.8s both;
}

.hero-split__subtitle {
  font-size: 14px;
  line-height: 1.85;
  max-width: 380px;
  margin-bottom: var(--space-lg);
  animation: loam-fade-up 0.9s var(--ease) 1s both;
}

.hero-split__ctas {
  display: flex;
  gap: 20px;
  align-items: center;
  animation: loam-fade-up 0.9s var(--ease) 1.2s both;
}

.hero-split__media {
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.hero-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-split__badge {
  position: absolute;
  top: 40px; right: 40px;
  width: 90px; height: 90px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: loam-rotate 12s linear infinite;
}

@keyframes loam-rotate { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }

.hero-split__badge-inner {
  animation: loam-rotate-reverse 12s linear infinite;
}

@keyframes loam-rotate-reverse { from{transform:rotate(0deg)} to{transform:rotate(-360deg)} }

.hero-split__badge-text {
  font-size: 7px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-dark);
  line-height: 1.4;
}

.hero-split__scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--color-text-muted);
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  animation: loam-fade-up 1s var(--ease) 1.8s both;
}

.hero-split__scroll::after {
  content: '';
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--color-border), transparent);
  animation: loam-pulse 2s ease infinite;
}

/* ── COLLECTION GRID ──────────────────────────────────────── */
.collection-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 300px 300px;
  gap: 3px;
}

.collection-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.collection-card:first-child { grid-row: 1 / 3; }

.collection-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease);
}

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

.collection-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,24,20,0.72), transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: background 0.4s;
}

.collection-card:hover .collection-card__overlay {
  background: linear-gradient(to top, rgba(26,24,20,0.82), transparent 60%);
}

.collection-card__name {
  font-family: var(--font-heading);
  font-size: 26px;
  color: var(--color-bg);
  margin-bottom: 4px;
}

.collection-card__count {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.collection-card__arrow {
  position: absolute;
  bottom: 28px; right: 28px;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-bg);
  font-size: 14px;
  transform: translateX(12px);
  opacity: 0;
  transition: transform 0.35s var(--ease), opacity 0.35s;
}

.collection-card:hover .collection-card__arrow { transform: translateX(0); opacity: 1; }

/* ── SECTION HEADER ───────────────────────────────────────── */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
}

.section-header__left .section-title { line-height: 1.15; }

/* ── QUOTE ────────────────────────────────────────────────── */
.brand-quote {
  padding: var(--space-2xl) var(--space-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.brand-quote::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 400px;
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  color: var(--color-border);
  line-height: 1;
  z-index: 0;
}

.brand-quote blockquote {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.5vw, 44px);
  font-style: italic;
  color: var(--color-dark);
  line-height: 1.4;
  max-width: 820px;
  margin: 0 auto var(--space-md);
}

.brand-quote__attr {
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: var(--color-dark);
  padding: 80px var(--space-lg) 40px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.site-footer__brand-name {
  font-family: var(--font-heading);
  font-size: 28px;
  letter-spacing: 0.22em;
  color: var(--color-bg);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-footer__brand-desc {
  font-size: 13px;
  color: #8C8278;
  line-height: 1.8;
  max-width: 260px;
  margin-bottom: 24px;
}

.site-footer__socials {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: #8C8278;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 13px;
}

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

.site-footer__col-title {
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 22px;
}

.site-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer__links a {
  font-size: 13px;
  color: #8C8278;
  text-decoration: none;
  transition: color 0.3s, padding-left 0.2s;
}

.site-footer__links a:hover { color: var(--color-border); padding-left: 4px; }

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-footer__copy { font-size: 11px; color: #8C8278; }

.site-footer__legal {
  display: flex;
  gap: 28px;
}

.site-footer__legal a {
  font-size: 11px;
  color: #8C8278;
  text-decoration: none;
  transition: color 0.3s;
}

.site-footer__legal a:hover { color: var(--color-border); }

.payment-methods {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.payment-method {
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: #8C8278;
}

/* ── ANIMATIONS ───────────────────────────────────────────── */
@keyframes loam-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes loam-pulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

/* Scroll reveal */
.loam-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

.loam-reveal--delay-1 { transition-delay: 0.1s; }
.loam-reveal--delay-2 { transition-delay: 0.2s; }
.loam-reveal--delay-3 { transition-delay: 0.3s; }
.loam-reveal--delay-4 { transition-delay: 0.4s; }

/* ── ACCORDION ────────────────────────────────────────────── */
.accordion-item { border-top: 1px solid var(--color-border); }
.accordion-item:last-child { border-bottom: 1px solid var(--color-border); }

.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  background: none; border: none;
  cursor: pointer;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-text);
  font-family: var(--font-body);
  text-align: left;
}

.accordion-icon {
  font-size: 18px;
  color: var(--color-accent);
  transition: transform var(--duration);
  flex-shrink: 0;
}

.accordion-item.is-open .accordion-icon { transform: rotate(45deg); }

.accordion-body {
  display: none;
  padding-bottom: 16px;
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.8;
}

.accordion-item.is-open .accordion-body { display: block; }

/* ── PRODUCT PAGE ─────────────────────────────────────────── */
.product-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding-top: var(--nav-height);
}

.product-gallery {
  position: sticky;
  top: var(--nav-height);
  height: calc(100vh - var(--nav-height));
  overflow: hidden;
}

.product-gallery__main {
  width: 100%; height: 100%;
  position: relative;
  background: var(--color-bg-2);
}

.product-gallery__main img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.product-gallery__thumbs {
  position: absolute;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.product-gallery__thumb {
  width: 40px; height: 40px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s;
  overflow: hidden;
  background: var(--color-border);
}

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

.product-detail {
  padding: 64px 56px;
  overflow-y: auto;
  max-height: calc(100vh - var(--nav-height));
}

.product-breadcrumb {
  font-size: 11px;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.product-breadcrumb a { color: var(--color-text-muted); transition: color 0.2s; }
.product-breadcrumb a:hover { color: var(--color-accent); }
.product-breadcrumb span { color: var(--color-border); }

.product-badge-row { display: flex; gap: 8px; margin-bottom: 16px; }

.product-title {
  font-family: var(--font-heading);
  font-size: clamp(34px, 3.5vw, 52px);
  color: var(--color-dark);
  line-height: 1.1;
  margin-bottom: 12px;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.product-stars { display: flex; gap: 3px; color: var(--color-accent); font-size: 12px; }
.product-review-count { font-size: 12px; color: var(--color-text-muted); text-decoration: underline; cursor: pointer; }

.product-price {
  font-family: var(--font-heading);
  font-size: 36px;
  color: var(--color-text);
  margin-bottom: 24px;
}

.product-price__compare {
  font-size: 20px;
  color: var(--color-text-muted);
  text-decoration: line-through;
  margin-right: 12px;
}

.product-divider { height: 1px; background: var(--color-border); margin: 24px 0; }

/* Variant options */
.variant-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 12px;
}

.variant-label span {
  color: var(--color-accent);
  margin-left: 8px;
  font-style: italic;
  letter-spacing: 0;
  text-transform: none;
  font-size: 11px;
}

.option-btns { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }

.option-btn {
  padding: 10px 20px;
  border: 1px solid var(--color-border);
  background: none;
  font-size: 12px;
  font-family: var(--font-body);
  color: var(--color-text);
  cursor: pointer;
  transition: all 0.25s;
  border-radius: var(--border-radius);
}

.option-btn:hover { border-color: var(--color-text); }
.option-btn.is-active { border-color: var(--color-dark); background: var(--color-dark); color: var(--color-bg); }
.option-btn.is-unavailable { opacity: 0.35; text-decoration: line-through; cursor: not-allowed; }

/* Quantity */
.qty-row { display: flex; gap: 12px; margin-bottom: 24px; align-items: center; }
.qty-label { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--color-text); }

.qty-ctrl {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border);
}

.qty-ctrl__btn {
  width: 40px; height: 40px;
  background: none; border: none;
  font-size: 18px; cursor: pointer;
  color: var(--color-text);
  transition: background 0.2s;
  display: flex; align-items: center; justify-content: center;
}

.qty-ctrl__btn:hover { background: var(--color-bg-2); }
.qty-ctrl__value { width: 48px; text-align: center; font-size: 14px; }

/* Trust row */
.trust-row {
  display: flex;
  gap: 20px;
  margin: 24px 0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--color-text-muted);
}

.trust-item svg {
  width: 16px; height: 16px;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}

/* ── COLLECTION PAGE ──────────────────────────────────────── */
.collection-hero {
  background: var(--color-dark);
  padding: 80px var(--space-lg);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.collection-hero__title { font-family: var(--font-heading); font-size: clamp(40px, 6vw, 72px); color: var(--color-bg); line-height: 1.05; }
.collection-hero__desc { font-size: 14px; color: var(--color-border); margin-top: 12px; max-width: 400px; }

.collection-layout { display: grid; grid-template-columns: 240px 1fr; }

.filter-sidebar {
  padding: 40px 32px;
  border-right: 1px solid var(--color-border);
  position: sticky;
  top: var(--nav-height);
  height: calc(100vh - var(--nav-height));
  overflow-y: auto;
}

.filter-group { margin-bottom: 32px; }
.filter-group__title {
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.filter-option { display: flex; align-items: center; gap: 10px; padding: 7px 0; cursor: pointer; }
.filter-option input { accent-color: var(--color-accent); width: 14px; height: 14px; }
.filter-option label { font-size: 13px; color: var(--color-text); cursor: pointer; transition: color 0.2s; }
.filter-option:hover label { color: var(--color-accent); }

.color-swatches { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }
.color-swatch { width: 22px; height: 22px; border-radius: 50%; border: 2px solid transparent; cursor: pointer; transition: border-color 0.2s, transform 0.2s; }
.color-swatch.is-active { border-color: var(--color-dark); transform: scale(1.15); }

.collection-products { padding: 40px 48px; }

.collection-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}

.collection-toolbar__count { font-size: 12px; color: var(--color-text-muted); }

/* ── CHECKOUT ─────────────────────────────────────────────── */
.checkout-layout { display: grid; grid-template-columns: 1fr 420px; min-height: 100vh; }

.checkout-form { padding: 56px 64px 56px 72px; border-right: 1px solid var(--color-border); }
.checkout-summary { padding: 56px 48px; background: var(--color-bg-2); }

.checkout-steps {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 40px;
}

.checkout-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.checkout-step__num {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  color: var(--color-text-muted);
}

.checkout-step.is-active .checkout-step__num { background: var(--color-dark); border-color: var(--color-dark); color: var(--color-bg); }
.checkout-step.is-done .checkout-step__num { background: var(--color-accent); border-color: var(--color-accent); color: var(--color-dark); }
.checkout-step__label { color: var(--color-text-muted); }
.checkout-step.is-active .checkout-step__label { color: var(--color-text); }
.checkout-step__div { flex: 1; height: 1px; background: var(--color-border); max-width: 40px; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .grid--4 { grid-template-columns: repeat(3, 1fr); }
  .collection-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .collection-grid .collection-card:first-child { grid-row: auto; grid-column: 1 / 3; height: 300px; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-summary { order: -1; }
}

@media (max-width: 900px) {
  :root { --nav-height: 60px; }
  .site-header { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-split { grid-template-columns: 1fr; }
  .hero-split__media { min-height: 320px; }
  .hero-split__content { padding: 60px 32px; }
  .container { padding: 0 32px; }
  .section { padding: var(--space-xl) 0; }
  .collection-grid { grid-template-columns: 1fr; }
  .collection-grid .collection-card:first-child { grid-column: auto; height: 280px; }
  .grid--4 { grid-template-columns: 1fr 1fr; }
  .grid--3 { grid-template-columns: 1fr 1fr; }
  .product-page { grid-template-columns: 1fr; }
  .product-gallery { position: relative; height: 400px; }
  .product-detail { padding: 40px 24px; max-height: none; }
  .collection-layout { grid-template-columns: 1fr; }
  .filter-sidebar { display: none; }
  .collection-hero { padding: 52px 32px; flex-direction: column; align-items: flex-start; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 40px; }
  .site-footer__bottom { flex-direction: column; gap: 16px; }
  .brand-quote { padding: 80px 32px; }
  .checkout-form { padding: 40px 24px; }
  .checkout-summary { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 600px) {
  .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr 1fr; }
  .hero-split__ctas { flex-direction: column; align-items: flex-start; }
  #cart-drawer { width: 100vw; }
  .trust-row { gap: 12px; }
  .site-footer { padding: 60px 24px 32px; }
}
