/* ============================================
   MOSS MOUNTAIN OUTFITTERS
   "Head Up. Eyes Forward."
   326 Main Street, Danville VA
   ============================================ */

:root {
  --forest: #2B5F2B;
  --forest-light: #3A7A3A;
  --forest-dark: #1B3F1B;
  --tan: #C8A96E;
  --tan-light: #D4BA85;
  --tan-pale: #E8D9B8;
  --burnt-orange: #D4722C;
  --burnt-orange-hover: #E07F35;
  --deep-forest: #1B2A1B;
  --cream: #F7F5F0;
  --cream-dark: #EDE9E0;
  --white: #FFFFFF;
  --text-dark: #1a1a1a;
  --text-mid: #444;
  --text-light: #666;
  --text-muted: #999;

  --shadow-sm: 0 2px 8px rgba(27, 42, 27, 0.06);
  --shadow-md: 0 4px 20px rgba(27, 42, 27, 0.08);
  --shadow-lg: 0 8px 40px rgba(27, 42, 27, 0.12);
  --shadow-xl: 0 16px 60px rgba(27, 42, 27, 0.16);

  --section-padding: 120px;
  --container-max: 1280px;
  --card-radius: 20px;
  --card-radius-sm: 14px;
  --card-radius-lg: 28px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.4s var(--ease-out);
  --transition-slow: 0.6s var(--ease-out);
}

/* ============ RESET ============ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; background: #F7F5F0; overflow-x: clip; }
body { overflow-x: clip; }
/* Smooth cross-page transitions where supported (Chrome, Safari TP). Eliminates the
   white flash between page loads. Falls back gracefully on Firefox / older Safari. */
@view-transition { navigation: auto; }
::view-transition-old(root) { animation: pageFadeOut 160ms ease-out both; }
::view-transition-new(root) { animation: pageFadeIn 240ms ease-out both; }
@keyframes pageFadeOut { to { opacity: 0; } }
@keyframes pageFadeIn { from { opacity: 0; } }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: color var(--transition-base); }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
ul { list-style: none; }
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 32px; }

/* Prevent all form inputs from zooming on iOS */
@media (max-width: 768px) {
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="search"],
  input[type="number"],
  input[type="password"],
  input[type="url"],
  textarea,
  select {
    font-size: 16px;
  }
}

/* ============ TYPOGRAPHY ============ */
.display-hero {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.display-1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
}
.display-2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
}
.paragraph-lg {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-light);
}
.section-subtitle {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--burnt-orange);
  margin-bottom: 14px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--transition-base);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary { background: var(--forest); color: var(--white); }
.btn-primary:hover { background: var(--forest-light); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(43,95,43,0.3); }
.btn-secondary { background: transparent; color: var(--text-dark); border: 2px solid var(--text-dark); }
.btn-secondary:hover { background: var(--text-dark); color: var(--white); transform: translateY(-2px); }
.btn-accent { background: var(--burnt-orange); color: var(--white); }
.btn-accent:hover { background: var(--burnt-orange-hover); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(212,114,44,0.3); }
.btn-dark { background: var(--cream); color: var(--deep-forest); }
.btn-dark:hover { background: var(--white); transform: translateY(-2px); }
.btn-outline-light { background: transparent; color: var(--cream); border: 2px solid rgba(247,245,240,0.4); }
.btn-outline-light:hover { background: rgba(247,245,240,0.1); border-color: var(--cream); }
.btn-icon {
  width: 52px; height: 52px; padding: 0;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; border: 2px solid rgba(0,0,0,0.1);
  transition: all var(--transition-base);
}
.btn-icon:hover { border-color: var(--forest); background: var(--forest); color: var(--white); transform: translateY(-2px); }
.btn-icon svg { width: 20px; height: 20px; }

/* ============ ANIMATIONS ============ */
.fade-up {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

@keyframes marquee {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-20%, 0, 0); }
}

/* ============ HEADER ============ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(247,245,240,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.4s var(--ease-smooth);
}
.header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

/* Top bar */
.header-topbar {
  background: var(--deep-forest);
  padding: 8px 0;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(247,245,240,0.7);
  letter-spacing: 0.04em;
  transition: all 0.3s;
}
.header-topbar a { color: var(--tan); font-weight: 600; }
.header-topbar a:hover { color: var(--tan-light); }
.header.scrolled .header-topbar,
.header.mega-open .header-topbar { display: none; }

/* Main nav bar */
.header-main {
  padding: 12px 0;
  transition: padding 0.3s;
}
.header.scrolled .header-main { padding: 8px 0; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex; align-items: center;
  flex-shrink: 0;
}
.logo-icon {
  height: 52px;
  width: auto;
  flex-shrink: 0;
}
.logo-icon img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

/* Dual logo: green version shown by default, white version hidden */
.logo-icon .logo-white { display: none; }
.logo-icon .logo-green { display: block; }

/* Over the dark video hero: show white, hide green */
.header.over-hero .logo-icon .logo-white { display: block; }
.header.over-hero .logo-icon .logo-green { display: none; }

/* When scrolled or mega-open: always show green */
.header.scrolled .logo-icon .logo-white { display: none; }
.header.scrolled .logo-icon .logo-green { display: block; }
.header.mega-open .logo-icon .logo-white { display: none; }
.header.mega-open .logo-icon .logo-green { display: block; }

/* Dark mode: always show white */
[data-theme="dark"] .logo-icon .logo-white { display: block; }
[data-theme="dark"] .logo-icon .logo-green { display: none; }

.header.scrolled .logo-icon {
  height: 44px;
}

/* ============ MEGA MENU NAV ============ */
.mega-nav { display: flex; align-items: center; gap: 0; }

.mega-nav-item {
  position: relative;
  padding: 10px 18px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-mid);
  cursor: pointer;
  transition: color 0.35s var(--ease-smooth);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Header is always solid — nav text always dark green */

/* When scrolled or mega-open, nav text goes dark */
.header.scrolled .mega-nav-item,
.header.mega-open .mega-nav-item {
  color: var(--text-mid);
}

.mega-nav-item::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s var(--ease-out), background 0.4s;
}
.header.scrolled .mega-nav-item::after,
.header.mega-open .mega-nav-item::after { background: var(--forest); }

.mega-nav-item:hover { color: var(--forest); }
.mega-nav-item.active { color: var(--forest); }
.mega-nav-item.active::after { transform: scaleX(1); }

.mega-nav-item .nav-arrow {
  width: 10px; height: 10px;
  transition: transform 0.4s var(--ease-out);
}

.mega-nav-item:hover .nav-arrow { transform: rotate(180deg); }
.mega-nav-item.active .nav-arrow { transform: rotate(180deg); }

.header-right {
  display: flex; align-items: center; gap: 6px; flex-shrink: 0;
}

.header-search-btn,
.cart-btn {
  position: relative;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: all var(--transition-base);
}
.header-search-btn:hover,
.cart-btn:hover { background: rgba(255,255,255,0.15); }
.header.scrolled .header-search-btn:hover,
.header.scrolled .cart-btn:hover,
.header.mega-open .header-search-btn:hover,
.header.mega-open .cart-btn:hover { background: rgba(43,95,43,0.06); }

/* Icons: always dark */
.header-search-btn svg,
.cart-btn svg { width: 20px; height: 20px; stroke: var(--text-dark); fill: none; stroke-width: 1.8; transition: stroke 0.35s; }

.cart-badge {
  position: absolute; top: 4px; right: 4px;
  width: 18px; height: 18px;
  background: var(--burnt-orange); color: var(--white);
  font-size: 0.65rem; font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* Shop Now button */
.header .btn-primary { padding: 10px 24px; font-size: 0.85rem; }

/* Hamburger lines: always dark */
.hamburger span { background: var(--text-dark); }

/* ============ MEGA MENU PANELS ============ */
.mega-overlay {
  position: fixed; inset: 0; z-index: 1050;
  background: rgba(27,42,27,0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.6s var(--ease-smooth);
}
.mega-overlay.active { opacity: 1; pointer-events: auto; }

.mega-panel {
  position: fixed;
  left: 0; right: 0;
  z-index: 1100;
  background: var(--white);
  box-shadow: 0 20px 80px rgba(27,42,27,0.15);
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.65s var(--ease-out), opacity 0.5s var(--ease-smooth);
  max-height: 80vh;
  overflow-y: auto;
}
.mega-panel.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* Stagger children inside mega panel for a cascading feel */
.mega-panel .mega-col {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.mega-panel.active .mega-col {
  opacity: 1;
  transform: translateY(0);
}
.mega-panel.active .mega-col:nth-child(1) { transition-delay: 0.08s; }
.mega-panel.active .mega-col:nth-child(2) { transition-delay: 0.14s; }
.mega-panel.active .mega-col:nth-child(3) { transition-delay: 0.20s; }

.mega-panel .mega-featured {
  opacity: 0;
  transform: translateY(16px) scale(0.97);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
  transition-delay: 0.15s;
}
.mega-panel.active .mega-featured {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.mega-panel .mega-brands {
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
  transition-delay: 0.25s;
}
.mega-panel.active .mega-brands {
  opacity: 1;
}

.mega-panel-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0 16px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.mega-panel-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest);
}

.mega-close {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
  cursor: pointer;
}
.mega-close:hover { background: var(--cream); }
.mega-close svg { width: 20px; height: 20px; stroke: var(--text-mid); }

.mega-panel-body {
  display: grid;
  gap: 0;
  padding: 32px 0 40px;
}

/* Column layouts per panel */
.mega-cols-4 { grid-template-columns: 1fr 1fr 1fr 320px; gap: 40px; }
.mega-cols-3 { grid-template-columns: 1fr 1fr 1fr 320px; gap: 40px; }
.mega-cols-story { grid-template-columns: 1fr 1fr 1fr; gap: 40px; }

.mega-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--burnt-orange);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--cream-dark);
}

.mega-col ul { display: flex; flex-direction: column; gap: 6px; }

.mega-col a {
  display: block;
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--text-mid);
  transition: color 0.35s var(--ease-smooth), padding-left 0.4s var(--ease-out);
}
.mega-col a:hover { color: var(--forest); padding-left: 8px; }

.mega-col .mega-link-bold {
  font-weight: 700;
  color: var(--forest);
  margin-top: 6px;
}
.mega-col .mega-link-bold:hover { color: var(--forest-light); }

/* Subcategory headings inside columns */
.mega-sub-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 18px;
  margin-bottom: 8px;
}
.mega-sub-title:first-child { margin-top: 0; }

/* Featured card in mega menu */
.mega-featured {
  position: relative;
  border-radius: var(--card-radius);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.mega-featured img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.mega-featured:hover img { transform: scale(1.05); }

.mega-featured::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(27,42,27,0.8) 0%, rgba(27,42,27,0.1) 60%);
}
.mega-featured-content {
  position: relative; z-index: 2;
  padding: 28px;
}
.mega-featured-content .mega-feat-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--tan);
  margin-bottom: 8px;
}
.mega-featured-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 6px;
}
.mega-featured-content p {
  font-size: 0.85rem;
  color: rgba(247,245,240,0.7);
  line-height: 1.5;
  margin-bottom: 16px;
}
.mega-featured-content .btn {
  padding: 10px 22px;
  font-size: 0.82rem;
}

/* Brand bar at bottom of mega panels */
.mega-brands {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 0 0;
  border-top: 1px solid var(--cream-dark);
  margin-top: 8px;
  flex-wrap: wrap;
}
.mega-brands-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  white-space: nowrap;
}
.mega-brands span {
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 500;
  white-space: nowrap;
}
.mega-brands-divider {
  width: 1px; height: 14px;
  background: var(--cream-dark);
}

/* ============ HAMBURGER ============ */
.hamburger {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; cursor: pointer;
}
.hamburger span {
  width: 20px; height: 2px;
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed; inset: 0; z-index: 1001;
  background: var(--cream);
  overflow-y: auto;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-nav.open { opacity: 1; pointer-events: auto; }

/* ════════════════════════════════════════════════════════════════════════
   MOBILE NAV V2 — Visual category cards + quick actions
   ════════════════════════════════════════════════════════════════════════ */
.mobile-nav-v2 {
  background: var(--cream);
  -webkit-overflow-scrolling: touch;
}
.mobile-nav-v2 .mn-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px 14px 20px;
  background: var(--cream);
  border-bottom: 1px solid rgba(27,42,27,0.06);
  position: sticky; top: 0; z-index: 5;
  padding-top: calc(14px + env(safe-area-inset-top, 0px));
}
.mobile-nav-v2 .mn-brand img { height: 36px; display: block; }
.mobile-nav-v2 .mn-close {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(27,42,27,0.06); border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s;
}
.mobile-nav-v2 .mn-close:hover { background: rgba(27,42,27,0.12); }
.mobile-nav-v2 .mn-close svg { width: 20px; height: 20px; stroke: var(--text-dark); }

.mobile-nav-v2 .mn-body {
  padding: 18px 20px 80px;
  display: flex; flex-direction: column; gap: 22px;
  animation: mnFadeIn 0.5s cubic-bezier(0.16,1,0.3,1) both;
}
@keyframes mnFadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* Search bar */
.mobile-nav-v2 .mn-search {
  display: flex; align-items: center; gap: 12px;
  width: 100%; padding: 14px 18px;
  background: rgba(27,42,27,0.05); border: 1px solid rgba(27,42,27,0.08);
  border-radius: 14px; color: var(--text-muted);
  font-family: inherit; font-size: 15px;
  text-align: left; cursor: pointer;
  transition: all 0.2s;
}
.mobile-nav-v2 .mn-search:hover { background: rgba(27,42,27,0.08); border-color: rgba(27,42,27,0.15); }
.mobile-nav-v2 .mn-search svg { width: 18px; height: 18px; stroke: var(--text-muted); flex-shrink: 0; }

/* Quick action row */
.mobile-nav-v2 .mn-quick-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
.mobile-nav-v2 .mn-quick-action {
  position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 16px 8px; background: var(--white, #fff); border: 1px solid rgba(27,42,27,0.06);
  border-radius: 14px; color: var(--text-dark);
  font-size: 12.5px; font-weight: 600; text-align: center;
  transition: all 0.2s;
}
.mobile-nav-v2 .mn-quick-action:hover { border-color: var(--forest, #2B5F2B); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(27,42,27,0.08); }
.mobile-nav-v2 .mn-quick-action svg { width: 22px; height: 22px; stroke: var(--forest, #2B5F2B); }
.mobile-nav-v2 .mn-quick-badge {
  position: absolute; top: 6px; right: 8px;
  min-width: 18px; height: 18px; padding: 0 5px; border-radius: 999px;
  background: var(--burnt-orange, #C1440E); color: #fff;
  font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* Section labels */
.mobile-nav-v2 .mn-section-label {
  font-family: 'DM Sans', sans-serif; font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted);
  margin: 4px 0 -8px;
}

/* Category card grid */
.mobile-nav-v2 .mn-card-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.mobile-nav-v2 .mn-cat-card {
  position: relative; display: block; aspect-ratio: 1/1.05;
  border-radius: 16px; overflow: hidden;
  background: rgba(27,42,27,0.05); color: #fff;
  text-decoration: none; transition: transform 0.3s ease;
}
.mobile-nav-v2 .mn-cat-card:hover { transform: scale(0.98); }
.mobile-nav-v2 .mn-cat-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.5s ease;
}
.mobile-nav-v2 .mn-cat-card:hover .mn-cat-img { transform: scale(1.05); }
.mobile-nav-v2 .mn-cat-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.55) 100%);
}
.mobile-nav-v2 .mn-cat-meta {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 14px 16px;
  display: flex; align-items: center; justify-content: space-between;
  z-index: 1; color: #fff;
}
.mobile-nav-v2 .mn-cat-name {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: 17px; letter-spacing: -0.2px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.mobile-nav-v2 .mn-cat-arrow { font-size: 18px; opacity: 0.85; }

/* Chips */
.mobile-nav-v2 .mn-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.mobile-nav-v2 .mn-chip {
  display: inline-flex; align-items: center; padding: 9px 14px;
  background: var(--white, #fff); border: 1px solid rgba(27,42,27,0.1);
  border-radius: 999px; font-size: 13px; font-weight: 500;
  color: var(--text-dark); transition: all 0.2s;
}
.mobile-nav-v2 .mn-chip:hover { background: var(--forest, #2B5F2B); color: #fff; border-color: var(--forest, #2B5F2B); }
.mobile-nav-v2 .mn-chip-bold { background: var(--forest, #2B5F2B); color: #fff; border-color: var(--forest, #2B5F2B); font-weight: 600; }

/* Link list */
.mobile-nav-v2 .mn-link-list {
  display: flex; flex-direction: column;
  background: var(--white, #fff);
  border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(27,42,27,0.06);
}
.mobile-nav-v2 .mn-link {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  color: var(--text-dark); font-size: 15px; font-weight: 500;
  border-bottom: 1px solid rgba(27,42,27,0.05);
  transition: background 0.15s;
}
.mobile-nav-v2 .mn-link:last-child { border-bottom: none; }
.mobile-nav-v2 .mn-link:hover { background: rgba(27,42,27,0.03); }
.mobile-nav-v2 .mn-link svg:first-of-type { width: 20px; height: 20px; stroke: var(--forest, #2B5F2B); flex-shrink: 0; }
.mobile-nav-v2 .mn-link span { flex: 1; }
.mobile-nav-v2 .mn-link .mn-link-arrow { width: 16px; height: 16px; stroke: var(--text-muted); }

/* Store info card */
.mobile-nav-v2 .mn-store-card {
  background: linear-gradient(135deg, #1B3F1B 0%, #2B5F2B 100%);
  color: var(--cream, #F7F5F0);
  padding: 20px 22px; border-radius: 16px;
  box-shadow: 0 8px 24px rgba(11,26,11,0.18);
}
.mobile-nav-v2 .mn-store-status {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 12px;
  background: rgba(247,245,240,0.1); border-radius: 999px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.05em;
  color: rgba(247,245,240,0.85); margin-bottom: 14px;
}
.mobile-nav-v2 .mn-store-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #7BC97B; box-shadow: 0 0 0 0 rgba(123,201,123,0.5);
  animation: mnPulse 2s infinite;
}
@keyframes mnPulse {
  0% { box-shadow: 0 0 0 0 rgba(123,201,123,0.5); }
  70% { box-shadow: 0 0 0 8px rgba(123,201,123,0); }
  100% { box-shadow: 0 0 0 0 rgba(123,201,123,0); }
}
.mobile-nav-v2 .mn-store-name {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: 17px; line-height: 1.25;
  margin-bottom: 6px;
}
.mobile-nav-v2 .mn-store-addr {
  font-size: 12.5px; color: rgba(247,245,240,0.65); margin-bottom: 14px;
  line-height: 1.45;
}
.mobile-nav-v2 .mn-store-actions { display: flex; gap: 8px; }
.mobile-nav-v2 .mn-store-btn {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 11px 0;
  background: rgba(247,245,240,0.1); color: var(--cream, #F7F5F0);
  border: 1px solid rgba(247,245,240,0.15);
  border-radius: 10px; font-size: 13px; font-weight: 600;
  transition: all 0.2s;
}
.mobile-nav-v2 .mn-store-btn:hover { background: rgba(247,245,240,0.18); }
.mobile-nav-v2 .mn-store-btn svg { width: 14px; height: 14px; stroke: var(--cream, #F7F5F0); }

.mobile-nav-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid var(--cream-dark);
}

.mobile-nav-body { padding: 16px 24px; }

.mobile-nav-section {
  border-bottom: 1px solid var(--cream-dark);
  padding: 8px 0;
}

.mobile-nav-trigger {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 14px 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700;
  color: var(--text-dark);
}
.mobile-nav-trigger svg {
  width: 18px; height: 18px;
  stroke: var(--text-muted);
  transition: transform 0.3s;
}
.mobile-nav-section.open .mobile-nav-trigger svg {
  transform: rotate(180deg);
}

.mobile-nav-dropdown {
  display: none;
  padding: 0 0 16px;
}
.mobile-nav-section.open .mobile-nav-dropdown { display: block; }

.mobile-nav-dropdown .mega-sub-title {
  margin-top: 14px;
}
.mobile-nav-dropdown a {
  display: block;
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--text-mid);
}
.mobile-nav-dropdown a:hover { color: var(--forest); }

.mobile-nav-link {
  display: block; padding: 14px 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700;
  color: var(--text-dark); border-bottom: 1px solid var(--cream-dark);
  min-height: 44px;
}

/* Ensure mobile nav dropdown links are touch-friendly */
.mobile-nav-dropdown a {
  min-height: 44px;
  display: flex;
  align-items: center;
}

/* ============ HERO ============ */
.hero { padding-top: 0; }

.hero-card {
  position: relative; border-radius: 0 0 var(--card-radius-lg) var(--card-radius-lg);
  overflow: hidden; min-height: 90vh;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--deep-forest);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(27,42,27,0.4) 100%),
    linear-gradient(to bottom, rgba(27,42,27,0.35) 0%, rgba(27,42,27,0.05) 35%, rgba(27,42,27,0.7) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 160px 40px 160px;
  max-width: 780px; margin: 0 auto;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px;
  background: rgba(200,169,110,0.2);
  border: 1px solid rgba(200,169,110,0.3);
  border-radius: 100px;
  color: var(--tan-light);
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 28px;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px;
  background: var(--tan); border-radius: 50%;
}
.hero .display-hero {
  color: var(--cream); margin-bottom: 20px;
  text-shadow: 0 4px 40px rgba(0,0,0,0.3);
}
.hero .paragraph-lg { color: rgba(247,245,240,0.75); max-width: 560px; margin: 0 auto 36px; }
.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Marquee */
.hero-marquee {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 3;
  background: rgba(27,42,27,0.6);
  backdrop-filter: blur(10px); padding: 18px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  animation: marquee 35s linear infinite;
  width: max-content;
}
.marquee-content { display: flex; align-items: center; flex-shrink: 0; }
.marquee-item {
  font-size: 0.88rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: rgba(247,245,240,0.7); white-space: nowrap; padding: 0 16px;
}
.marquee-dot { width: 5px; height: 5px; background: var(--tan); border-radius: 50%; flex-shrink: 0; }

/* ============ STORY BANNER ============ */
.story-banner {
  background: var(--white);
  border-radius: var(--card-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.story-banner-content {
  padding: 64px 56px;
  display: flex; flex-direction: column; justify-content: center;
}
.story-banner-image {
  position: relative; overflow: hidden; min-height: 500px;
}
.story-banner-image img {
  width: 100%; height: 100%; object-fit: cover;
}
.story-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 500;
  font-style: italic; line-height: 1.5;
  color: var(--forest);
  padding: 24px 0;
  border-top: 3px solid var(--tan);
  margin-top: 28px;
}
.story-quote-attr {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem; font-weight: 600;
  font-style: normal; color: var(--text-muted);
  margin-top: 12px;
}

/* ============ IMPACT STATS ============ */
.impact-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 48px;
  background: var(--white);
  border-radius: var(--card-radius-lg);
  box-shadow: var(--shadow-sm);
}

.impact-stat { text-align: center; }

.impact-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
}

.impact-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 8px;
}

.impact-stat-divider {
  width: 1px;
  height: 48px;
  background: var(--cream-dark);
  flex-shrink: 0;
}

/* ============ HUEF BANNER ============ */
.huef-banner {
  background: var(--deep-forest);
  border-radius: var(--card-radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
  position: relative;
}

.huef-banner-content {
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

.huef-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--tan);
  margin-bottom: 16px;
}

.huef-banner-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 16px;
}

.huef-banner-content p {
  font-size: 1rem;
  color: rgba(247,245,240,0.6);
  line-height: 1.7;
  max-width: 440px;
}

.huef-banner-image {
  position: relative;
  overflow: hidden;
}

.huef-banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============ SECTIONS ============ */
.section { padding: var(--section-padding) 0; }
.section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 56px;
}
.section-header-centered {
  text-align: center; max-width: 600px; margin: 0 auto 56px;
}

/* ============ CATEGORIES ============ */
.category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}
.category-card {
  position: relative; border-radius: var(--card-radius);
  overflow: hidden; cursor: pointer; display: block;
}
.category-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.category-card:hover img { transform: scale(1.08); }
.category-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(27,42,27,0.7) 0%, rgba(27,42,27,0.05) 60%);
}
.category-card-content {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 28px;
}
.category-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 700; color: var(--cream);
  transition: transform var(--transition-base);
}
.category-card:hover .category-card-title { transform: translateY(-4px); }
.category-card-count {
  font-size: 0.85rem; color: rgba(247,245,240,0.6); margin-top: 4px;
}
.cat-hiking { grid-column: 1; grid-row: 1; min-height: 320px; }
.cat-camping { grid-column: 2; grid-row: 1; min-height: 320px; }
.cat-footwear { grid-column: 3; grid-row: 1 / 3; }
.cat-clothing { grid-column: 1; grid-row: 2; min-height: 280px; }
.cat-promo {
  grid-column: 2; grid-row: 2;
  background: var(--forest); border-radius: var(--card-radius);
  padding: 36px; display: flex; flex-direction: column; justify-content: center;
  min-height: 280px;
}
.cat-promo::after { display: none; }
.cat-promo-tag {
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--tan); margin-bottom: 16px;
}
.cat-promo h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 700;
  color: var(--cream); line-height: 1.15; margin-bottom: 24px;
}

/* ============ FEATURES ============ */
.features-card {
  background: var(--white); border-radius: var(--card-radius-lg);
  overflow: hidden; box-shadow: var(--shadow-md);
  display: grid; grid-template-columns: 1fr 1fr; min-height: 620px;
}
.features-image { position: relative; overflow: hidden; }
.features-image img { width: 100%; height: 100%; object-fit: cover; }
.features-content { padding: 64px 56px; display: flex; flex-direction: column; justify-content: center; }
.features-list { display: flex; flex-direction: column; gap: 32px; margin-top: 40px; }
.feature-item { display: flex; gap: 20px; align-items: flex-start; }
.feature-icon {
  width: 56px; height: 56px; background: var(--cream);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.feature-icon svg { width: 26px; height: 26px; stroke: var(--forest); }
.feature-text h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.feature-text p { font-size: 0.95rem; color: var(--text-light); line-height: 1.5; }

/* ============ PRODUCTS ============ */
.products-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; margin-bottom: 40px; flex-wrap: wrap;
}
.products-toolbar-right { display: flex; gap: 12px; align-items: center; }
.search-input { position: relative; }
.search-input input {
  width: 280px; padding: 14px 20px 14px 48px;
  border: 2px solid rgba(0,0,0,0.08); border-radius: 100px;
  font-family: 'DM Sans', sans-serif; font-size: 0.92rem;
  background: var(--white); transition: all var(--transition-base); outline: none;
}
.search-input input:focus { border-color: var(--forest); box-shadow: 0 0 0 4px rgba(43,95,43,0.08); }
.search-input svg {
  position: absolute; left: 18px; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; stroke: var(--text-muted);
}
.category-dropdown { position: relative; }
.category-dropdown select {
  appearance: none; padding: 14px 44px 14px 20px;
  border: 2px solid rgba(0,0,0,0.08); border-radius: 100px;
  font-family: 'DM Sans', sans-serif; font-size: 0.92rem;
  background: var(--white); cursor: pointer; outline: none;
}
.category-dropdown::after {
  content: ''; position: absolute; right: 18px; top: 50%;
  transform: translateY(-50%);
  border-left: 5px solid transparent; border-right: 5px solid transparent;
  border-top: 5px solid var(--text-muted); pointer-events: none;
}
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-card { display: block; transition: transform var(--transition-base); }
.product-card:hover { transform: translateY(-6px); }
.product-card-image {
  position: relative; border-radius: var(--card-radius);
  overflow: hidden; aspect-ratio: 3/4; background: var(--cream-dark);
}
.product-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.product-card:hover .product-card-image img { transform: scale(1.06); }
.product-price-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--white); padding: 6px 16px; border-radius: 100px;
  font-size: 0.85rem; font-weight: 700; color: var(--forest); box-shadow: var(--shadow-sm);
}
.product-card-info { padding: 18px 4px 0; }
.product-card-info h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 6px; }
.product-card:hover .product-card-info h3 { color: var(--forest); }
.product-card-category {
  font-size: 0.82rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.06em; font-weight: 500;
}

/* ============ COLLECTIONS ============ */
.collections-slider {
  display: flex; gap: 24px; overflow-x: auto;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none; scrollbar-width: none;
}
.collections-slider::-webkit-scrollbar { display: none; }
.collection-card {
  flex: 0 0 min(85vw, 960px); scroll-snap-align: start;
  background: var(--white); border-radius: var(--card-radius-lg);
  overflow: hidden; box-shadow: var(--shadow-md);
  display: grid; grid-template-columns: 1fr 1fr; min-height: 420px;
}
.collection-card:nth-child(2) { background: var(--deep-forest); }
.collection-card:nth-child(2) h3, .collection-card:nth-child(2) p { color: var(--cream); }
.collection-card:nth-child(2) p { opacity: 0.7; }
.collection-card-content {
  padding: 48px; display: flex; flex-direction: column; justify-content: center;
}
.collection-card-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 700; line-height: 1.2; margin-bottom: 16px;
}
.collection-card-content p { color: var(--text-light); line-height: 1.6; margin-bottom: 28px; }
.collection-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 0.95rem; color: var(--forest);
  transition: gap var(--transition-base);
}
.collection-link:hover { gap: 14px; }
.collection-link svg { width: 18px; height: 18px; }
.collection-card-image img { width: 100%; height: 100%; object-fit: cover; }

/* ============ CTA ============ */
.cta-card {
  position: relative; background: var(--deep-forest);
  border-radius: var(--card-radius-lg); overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr; min-height: 480px;
  width: 100%;
  box-sizing: border-box;
}
.cta-content {
  padding: 64px 56px;
  display: flex; flex-direction: column; justify-content: center; z-index: 2;
  min-width: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.cta-content .display-2 { color: var(--cream); margin-bottom: 16px; word-wrap: break-word; }
.cta-content .paragraph-lg { color: rgba(247,245,240,0.65); margin-bottom: 32px; max-width: 420px; }
.cta-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-image { min-width: 0; }
.cta-image img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 768px) {
  .cta-card {
    min-height: auto;
    grid-template-columns: 1fr;
  }
  .cta-content {
    padding: 36px 24px;
  }
  .cta-image {
    min-height: 220px;
    order: -1;
  }
  .cta-content .display-2 {
    font-size: 1.5rem;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============ TESTIMONIALS ============ */
.testimonials-section {
  overflow: hidden;
  padding: var(--section-padding) 0;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
}
.testimonials-track {
  display: flex;
  animation: marquee 70s linear infinite;
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.testimonials-track:hover {
  animation-play-state: paused;
}
.testimonials-set {
  display: flex;
  gap: 24px;
  padding-right: 24px;
  flex-shrink: 0;
}
.testimonial-card {
  flex-shrink: 0; width: 420px; background: var(--white);
  border-radius: var(--card-radius); padding: 36px; box-shadow: var(--shadow-sm);
}
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 20px; }
.testimonial-stars svg { width: 18px; height: 18px; fill: var(--tan); }
.testimonial-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 500; line-height: 1.5;
  color: var(--text-dark); margin-bottom: 24px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testimonial-name { font-weight: 700; font-size: 0.95rem; }
.testimonial-location { font-size: 0.82rem; color: var(--text-muted); margin-top: 2px; }

/* ============ BLOG ============ */
.blog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.blog-card { display: block; transition: transform var(--transition-base); }
.blog-card:hover { transform: translateY(-6px); }
.blog-card-image { border-radius: var(--card-radius); overflow: hidden; aspect-ratio: 16/10; }
.blog-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-info { padding: 22px 4px 0; max-width: 500px; }
.blog-card-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700; line-height: 1.25; margin-bottom: 14px;
}
.blog-card:hover .blog-card-info h3 { color: var(--forest); }
.blog-meta { display: flex; align-items: center; gap: 14px; }
.blog-tag {
  padding: 5px 14px; background: var(--cream-dark); border-radius: 100px;
  font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-mid);
}
.blog-date { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }

/* ============ INSTAGRAM ============ */
.instagram-section { padding: 0 0 var(--section-padding); overflow: hidden; }
.instagram-card {
  background: var(--white); border-radius: var(--card-radius-lg);
  padding: 56px 0 0; box-shadow: var(--shadow-sm); overflow: hidden;
}
.instagram-header { padding: 0 56px; margin-bottom: 40px; }
.instagram-track {
  display: flex; animation: marquee 60s linear infinite; width: max-content;
}
.instagram-set { display: flex; gap: 20px; padding: 0 10px 40px; }
.insta-card {
  flex-shrink: 0; width: 340px; background: var(--white);
  border-radius: var(--card-radius); box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06); overflow: hidden;
}
.insta-card-header {
  display: flex; align-items: center; justify-content: space-between; padding: 14px 18px;
}
.insta-user { display: flex; align-items: center; gap: 10px; }
.insta-avatar {
  width: 36px; height: 36px; background: var(--forest);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.insta-avatar svg { width: 18px; height: 18px; fill: var(--cream); }
.insta-username { font-size: 0.85rem; font-weight: 700; }
.insta-handle { font-size: 0.75rem; color: var(--text-muted); }
.insta-image { aspect-ratio: 1; overflow: hidden; }
.insta-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.insta-card:hover .insta-image img { transform: scale(1.05); }
.insta-card-footer { padding: 14px 18px; }
.insta-actions { display: flex; justify-content: space-between; align-items: center; }
.insta-actions-left { display: flex; gap: 14px; }
.insta-actions svg {
  width: 22px; height: 22px; stroke: var(--text-dark); fill: none;
  stroke-width: 1.8; cursor: pointer;
}
.insta-likes { font-size: 0.85rem; font-weight: 700; margin-top: 10px; }
.insta-comments { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; }

/* ============ FOOTER ============ */
.footer { background: var(--deep-forest); }
.footer-card {
  border-radius: var(--card-radius-lg) var(--card-radius-lg) 0 0;
  padding: 80px 56px 0;
}
.footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 56px;
  border-bottom: 1px solid rgba(247,245,240,0.1);
}
.footer-brand p {
  color: rgba(247,245,240,0.55); font-size: 0.95rem;
  line-height: 1.6; margin: 18px 0 28px; max-width: 320px;
}
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(247,245,240,0.15);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition-base);
}
.social-link:hover {
  background: rgba(247,245,240,0.1);
  border-color: rgba(247,245,240,0.3);
  transform: translateY(-2px);
}
.social-link svg { width: 18px; height: 18px; fill: rgba(247,245,240,0.7); stroke: rgba(247,245,240,0.7); color: rgba(247,245,240,0.7); }
.footer-col h4 {
  font-size: 0.82rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--tan); margin-bottom: 24px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.92rem; color: rgba(247,245,240,0.55); }
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 40px 0; flex-wrap: wrap; gap: 24px;
}
.footer-newsletter { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-newsletter h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700; color: var(--cream); white-space: nowrap;
}
.newsletter-form { display: flex; position: relative; }
.newsletter-form input {
  width: 300px; padding: 14px 130px 14px 22px;
  border: 2px solid rgba(247,245,240,0.15); border-radius: 100px;
  background: rgba(247,245,240,0.05); color: var(--cream);
  font-family: 'DM Sans', sans-serif; font-size: 0.92rem; outline: none;
}
.newsletter-form input::placeholder { color: rgba(247,245,240,0.35); }
.newsletter-form input:focus { border-color: var(--tan); }
.newsletter-form button {
  position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  padding: 10px 24px; background: var(--cream); color: var(--deep-forest);
  border-radius: 100px; font-size: 0.85rem; font-weight: 700;
}
.newsletter-form button:hover { background: var(--white); }
.footer-copyright { font-size: 0.85rem; color: rgba(247,245,240,0.35); }
.footer-copyright a { color: rgba(247,245,240,0.55); text-decoration: underline; }
.footer-address {
  font-size: 0.85rem; color: rgba(247,245,240,0.4); margin-top: 8px; line-height: 1.6;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  :root { --section-padding: 80px; }
  .mega-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; flex-direction: column; }
  .header-topbar { font-size: 0.72rem; }

  .category-grid { grid-template-columns: 1fr 1fr; }
  .cat-footwear { grid-column: 1; grid-row: 2; min-height: 300px; }
  .cat-clothing { grid-column: 2; grid-row: 2; }
  .cat-promo { grid-column: 1 / -1; grid-row: 3; min-height: 200px; }

  .features-card, .cta-card { grid-template-columns: 1fr; }
  .features-image, .cta-image { min-height: 360px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .collection-card { flex: 0 0 90vw; grid-template-columns: 1fr; }
  .collection-card-image { min-height: 280px; }
  .story-banner { grid-template-columns: 1fr; }
  .story-banner-image { min-height: 350px; }
  .huef-banner { grid-template-columns: 1fr; }
  .huef-banner-image { min-height: 280px; }
  .impact-stats { gap: 32px; padding: 36px; flex-wrap: wrap; }
  .impact-stat-divider { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-card { padding: 56px 32px 0; }

  .mega-panel { display: none; }
}

@media (max-width: 768px) {
  :root { --section-padding: 64px; }
  .container { padding: 0 20px; }
  .btn { min-height: 44px; padding: 12px 24px; }
  .hero-card { min-height: 80vh; border-radius: 0 0 var(--card-radius) var(--card-radius); }
  .hero-content { padding: 140px 24px 120px; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .category-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .products-toolbar { flex-direction: column; align-items: stretch; }
  .search-input input { width: 100%; }
  .blog-grid { grid-template-columns: 1fr; }
  .testimonial-card { width: 320px; padding: 28px; }
  .insta-card { width: 280px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-newsletter { flex-direction: column; align-items: flex-start; width: 100%; }
  .social-link { width: 44px; height: 44px; }
  .newsletter-form { width: 100%; }
  .newsletter-form input { width: 100%; }
  .features-content { padding: 40px 28px; }
  .story-banner-content { padding: 40px 28px; }
  .huef-banner-content { padding: 36px 24px; }
  .impact-stats { gap: 20px; padding: 32px 24px; }
  .impact-stat-number { font-size: 2rem; }
  .collection-card-content { padding: 32px; }
  .cta-content { padding: 40px 28px; }
  .instagram-header { padding: 0 28px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  /* Products become horizontal scroll carousel on mobile */
  #shopify-products.products-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    padding-bottom: 8px;
    scrollbar-width: none;
  }
  #shopify-products.products-grid::-webkit-scrollbar { display: none; }
  #shopify-products.products-grid .product-card {
    flex: 0 0 70vw;
    scroll-snap-align: start;
    max-width: 280px;
  }
  #shopify-products.products-grid .product-card-image {
    aspect-ratio: 3/4;
  }
  .category-grid { grid-template-columns: 1fr; }
  .cat-hiking, .cat-camping, .cat-footwear, .cat-clothing, .cat-promo {
    grid-column: 1; grid-row: auto; min-height: 200px;
  }
  .cat-promo { min-height: auto; }
  .header .btn-primary { display: none; }
  .cta-card { grid-template-columns: 1fr; min-height: auto; }
  .cta-content { padding: 28px 20px; }
  .cta-image { min-height: 180px; order: -1; }
  .cta-buttons { flex-direction: column; }
  .cta-buttons .btn { justify-content: center; width: 100%; }
  .hero-content { padding: 120px 16px 100px; }
  .hero-badge { font-size: 0.72rem; padding: 6px 14px; }
  .section-subtitle { font-size: 0.78rem; }
  .paragraph-lg { font-size: 1rem; }
  .footer-card { padding: 40px 16px 0; }
  .footer-bottom { gap: 16px; }
  .footer-col h4 { margin-bottom: 16px; }
  .impact-stats { flex-direction: column; align-items: center; gap: 16px; padding: 24px 16px; }
  .impact-stat-number { font-size: 1.8rem; }
  .cat-promo { padding: 28px 20px; }
  .cat-promo h3 { font-size: 1.4rem; }
  .story-banner-content { padding: 32px 20px; }
  .story-quote { font-size: 1.2rem; }
  .features-content { padding: 32px 20px; }
  .collection-card-content { padding: 24px 20px; }
  .huef-banner-content { padding: 28px 20px; }
  .testimonial-card { width: 280px; padding: 24px; }
  .testimonial-text { font-size: 1rem; }
  .insta-card { width: 260px; }
  .header-topbar { font-size: 0.7rem; padding: 6px 0; }
  .header-topbar .container { padding: 0 12px; }
  .instagram-header { padding: 0 20px; }
  .instagram-card { padding: 40px 0 0; }
  .footer-newsletter h3 { white-space: normal; font-size: 1.2rem; }
  .newsletter-form input { padding: 12px 110px 12px 18px; font-size: 16px; }
  .newsletter-form button { padding: 8px 18px; font-size: 0.82rem; }
  .footer-copyright { font-size: 0.78rem; }
  .footer-col a { font-size: 0.88rem; padding: 4px 0; min-height: 36px; display: flex; align-items: center; }
  .category-card-title { font-size: 1.3rem; }
  .category-card-content { padding: 20px; }
}
