:root {
  --bg: #faf8f4;
  --bg-warm: #f3efe8;
  --bg-dark: #2c3227;
  --fg: #2c3227;
  --fg-light: #5a6354;
  --fg-muted: #8a917f;
  --accent: #c07830;
  --accent-light: #d4974e;
  --accent-soft: rgba(192,120,48,0.1);
  --swim: #3a7ca5;
  --active: #6b8c42;
  --outdoor: #b86e2a;
  --radius: 12px;
  --radius-lg: 20px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 32px;
  background: rgba(250,248,244,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--fg);
}
.nav-icon { color: var(--accent); }
.nav-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 32px 60px;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}
.hero-bg-shapes { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 0; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
}
.shape-1 {
  width: 500px; height: 500px;
  background: var(--outdoor);
  top: -100px; right: -150px;
}
.shape-2 {
  width: 300px; height: 300px;
  background: var(--swim);
  bottom: 60px; right: 20%;
}
.shape-3 {
  width: 200px; height: 200px;
  background: var(--active);
  top: 30%; left: -60px;
}
.hero-content { position: relative; z-index: 1; }
.hero-tag {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-accent {
  color: var(--accent);
  font-style: normal;
}
.hero-sub {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--fg-light);
  max-width: 540px;
  font-weight: 300;
}
.hero-stat-row {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(44,50,39,0.1);
}
.hero-stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--fg);
}
.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
  font-weight: 500;
}

/* SECTION LABEL */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 20px;
  padding: 6px 14px;
  background: var(--accent-soft);
  border-radius: 100px;
}

/* PHILOSOPHY */
.philosophy {
  padding: 120px 32px;
  background: var(--bg-warm);
}
.philosophy-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.philosophy-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 24px;
}
.philosophy-title em {
  font-style: normal;
  color: var(--accent);
}
.philosophy-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--fg-light);
  font-weight: 300;
}

/* CATEGORIES */
.categories {
  padding: 120px 32px;
}
.categories-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}
.cat-card {
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  background: var(--bg-warm);
  border: 1px solid rgba(44,50,39,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(44,50,39,0.08);
}
.cat-icon-wrap {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.cat-outdoor .cat-icon-wrap { background: rgba(184,110,42,0.12); color: var(--outdoor); }
.cat-active .cat-icon-wrap { background: rgba(107,140,66,0.12); color: var(--active); }
.cat-swim .cat-icon-wrap { background: rgba(58,124,165,0.12); color: var(--swim); }
.cat-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--fg);
}
.cat-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--fg-light);
  font-weight: 300;
}

/* DIFFERENCE */
.difference {
  padding: 120px 32px;
  background: var(--bg-dark);
  color: #fff;
}
.difference-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.difference .section-label {
  background: rgba(192,120,48,0.2);
  color: var(--accent-light);
}
.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 64px;
  margin-top: 24px;
}
.diff-number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: rgba(212,151,78,0.25);
  margin-bottom: 8px;
  line-height: 1;
}
.diff-item h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #f5f3ee;
}
.diff-item p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(245,243,238,0.65);
  font-weight: 300;
}

/* CLOSING */
.closing {
  padding: 140px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
  pointer-events: none;
}
.closing-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.closing-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 20px;
}
.closing-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--fg-light);
  font-weight: 300;
}

/* FOOTER */
.footer {
  padding: 60px 32px 24px;
  background: var(--bg-warm);
  border-top: 1px solid rgba(44,50,39,0.08);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}
.footer-brand .nav-name {
  display: block;
  margin-bottom: 8px;
}
.footer-brand p, .footer-contact p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
}
.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(44,50,39,0.08);
}
.footer-bottom p {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 14px 20px; }
  .hero { padding: 120px 20px 48px; min-height: auto; }
  .hero-stat-row { gap: 24px; flex-wrap: wrap; }
  .philosophy, .categories, .difference, .closing { padding: 80px 20px; }
  .cat-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-inner { flex-direction: column; }
  .hero-title { font-size: 2.4rem; }
  .shape-1 { width: 300px; height: 300px; right: -100px; }
  .shape-2 { width: 180px; height: 180px; }
  .shape-3 { width: 120px; height: 120px; }
}

/* ============================================================
   NAVIGATION — extended with links
   ============================================================ */
.nav-brand { text-decoration: none; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 100px;
  color: var(--fg-light);
  transition: color 0.2s ease, background 0.2s ease;
  letter-spacing: 0.01em;
}
.nav-link:hover { color: var(--fg); background: rgba(44,50,39,0.06); }
.nav-link--outdoor:hover { color: var(--outdoor); }
.nav-link--active:hover  { color: var(--active); }
.nav-link--swim:hover    { color: var(--swim); }
.nav-link--collections   { color: var(--accent); }
.nav-link--collections:hover { background: var(--accent-soft); color: var(--accent); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 12px 20px 20px;
  border-top: 1px solid rgba(44,50,39,0.08);
  margin-top: 12px;
}
.nav-mobile.open { display: flex; }
.nav-mobile-link {
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  padding: 12px 4px;
  border-bottom: 1px solid rgba(44,50,39,0.06);
}
.nav-mobile-link:last-child { border-bottom: none; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  padding: 13px 26px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(192,120,48,0.3);
}
.btn--primary:hover {
  background: var(--accent-light);
  box-shadow: 0 6px 24px rgba(192,120,48,0.4);
}
.btn--ghost {
  background: transparent;
  color: var(--fg);
  border: 2px solid rgba(44,50,39,0.18);
}
.btn--ghost:hover { border-color: rgba(44,50,39,0.35); background: rgba(44,50,39,0.04); }
.btn--full { width: 100%; }

/* ============================================================
   HERO CTAs
   ============================================================ */
.hero-ctas {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* ============================================================
   CATEGORY CARDS — make them links
   ============================================================ */
.cat-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
.cat-cta {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.cat-outdoor .cat-cta { color: var(--outdoor); }
.cat-active  .cat-cta { color: var(--active);  }
.cat-swim    .cat-cta { color: var(--swim);    }

/* ============================================================
   PAGE HERO (category / collection pages)
   ============================================================ */
.page-hero {
  padding: 140px 32px 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  opacity: 0.1;
}
.page-hero--outdoor::before   { background: var(--outdoor); }
.page-hero--active::before    { background: var(--active);  }
.page-hero--swim::before      { background: var(--swim);    }
.page-hero--collections::before { background: var(--accent); }
.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 16px;
  line-height: 1.1;
}
.page-tagline {
  font-size: 1.05rem;
  color: var(--fg-light);
  font-weight: 300;
  max-width: 560px;
  line-height: 1.7;
}
.breadcrumb {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--fg-muted);
  text-decoration: none;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.2s ease;
}
.breadcrumb:hover { color: var(--accent); }
.breadcrumb-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.82rem;
  color: var(--fg-muted);
}
.breadcrumb-row a { color: var(--fg-muted); text-decoration: none; }
.breadcrumb-row a:hover { color: var(--accent); }

/* ============================================================
   SHOP LAYOUT
   ============================================================ */
.shop-main { padding: 60px 32px 100px; }
.shop-inner { max-width: 1200px; margin: 0 auto; }
.gender-section { margin-bottom: 64px; }
.gender-heading {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--fg);
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 2px solid rgba(44,50,39,0.08);
}

/* ============================================================
   PRODUCT GRID & CARDS
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(44,50,39,0.07);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(44,50,39,0.1);
}
.product-card-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.product-card-img--outdoor    { background: rgba(184,110,42,0.08); color: var(--outdoor); }
.product-card-img--active     { background: rgba(107,140,66,0.08); color: var(--active);  }
.product-card-img--swim       { background: rgba(58,124,165,0.08); color: var(--swim);    }
.upf-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(44,50,39,0.08);
  color: var(--fg-light);
}
.product-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-gender-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
  margin-bottom: 8px;
}
.product-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fg);
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--fg-light);
  font-weight: 300;
  flex: 1;
  margin-bottom: 16px;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
}
.product-price {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--fg);
}
.product-sizes-preview {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.size-chip {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 3px 7px;
  border-radius: 6px;
  background: rgba(44,50,39,0.06);
  color: var(--fg-muted);
  text-transform: uppercase;
}
.size-chip--more { background: transparent; color: var(--accent); }
.product-cat-tag {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--fg-muted);
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(44,50,39,0.05);
}
/* When card has a real photo — override colored bg, let photo fill */
.product-card-img--photo {
  background: #f5f3ef;
  padding: 0;
}
.product-card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.product-detail-wrap {
  padding: 100px 32px 60px;
}
.product-detail-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.product-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--fg-muted);
  margin-bottom: 40px;
}
.product-breadcrumb a { color: var(--fg-muted); text-decoration: none; }
.product-breadcrumb a:hover { color: var(--accent); }
.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.product-detail-visual {
  border-radius: var(--radius-lg);
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: sticky;
  top: 100px;
}
.product-detail-visual--outdoor    { background: rgba(184,110,42,0.08); color: var(--outdoor); }
.product-detail-visual--active     { background: rgba(107,140,66,0.08); color: var(--active);  }
.product-detail-visual--swim       { background: rgba(58,124,165,0.08); color: var(--swim);    }
.product-detail-icon { opacity: 0.9; }
/* Photo state overrides the square placeholder */
.product-detail-visual--photo {
  background: #f5f3ef;
  aspect-ratio: 4/5;
  overflow: hidden;
  padding: 0;
}
.product-detail-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: var(--radius-lg);
}
.product-detail-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(44,50,39,0.08);
  color: var(--fg-light);
}
.product-detail-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.product-detail-gender {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
}
.product-detail-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 14px;
}
.product-detail-price {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 24px;
}
.product-detail-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--fg-light);
  font-weight: 300;
  margin-bottom: 32px;
}
.size-selector { margin-bottom: 28px; }
.size-selector-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: 12px;
}
.size-selector-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.size-btn {
  padding: 9px 16px;
  border-radius: 10px;
  border: 1.5px solid rgba(44,50,39,0.14);
  background: transparent;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--fg);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.size-btn:hover { border-color: var(--accent); color: var(--accent); }
.size-btn.active {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}
.product-detail-actions { margin-bottom: 12px; }
.product-detail-note {
  font-size: 0.82rem;
  color: var(--fg-muted);
  margin-top: 12px;
  line-height: 1.5;
}
.notify-form { margin-bottom: 32px; }
.notify-form-row {
  display: flex;
  gap: 8px;
}
.notify-input {
  flex: 1;
  padding: 12px 16px;
  border-radius: var(--radius);
  border: 1.5px solid rgba(44,50,39,0.14);
  background: var(--bg-warm);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: var(--fg);
  outline: none;
  transition: border-color 0.2s ease;
}
.notify-input:focus { border-color: var(--accent); }
.notify-success {
  font-size: 0.9rem;
  color: var(--active);
  font-weight: 600;
  padding: 12px 0;
}
.product-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(44,50,39,0.08);
}
.product-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--fg-light);
  font-weight: 400;
}
.product-feature svg { flex-shrink: 0; color: var(--active); }
.back-to-cat {
  padding: 0 32px 80px;
}
.back-to-cat-inner { max-width: 1100px; margin: 0 auto; }

/* ============================================================
   COLLECTIONS PAGE
   ============================================================ */
.collections-main { padding: 60px 32px 100px; }
.collections-inner { max-width: 1200px; margin: 0 auto; }
.collection-row {
  margin-bottom: 72px;
  padding-bottom: 72px;
  border-bottom: 1px solid rgba(44,50,39,0.08);
}
.collection-row:last-child { border-bottom: none; margin-bottom: 0; }
.collection-row-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.collection-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 8px;
}
.collection-tagline {
  font-size: 0.95rem;
  color: var(--fg-light);
  font-weight: 300;
  max-width: 480px;
}
.collection-products-preview {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.col-preview-card {
  background: var(--bg-warm);
  border-radius: var(--radius);
  border: 1px solid rgba(44,50,39,0.07);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.col-preview-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(44,50,39,0.08); }
.col-preview-img {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.col-preview-img.col-preview-img--outdoor    { background: rgba(184,110,42,0.08); color: var(--outdoor); }
.col-preview-img.col-preview-img--activewear { background: rgba(107,140,66,0.08); color: var(--active);  }
.col-preview-img.col-preview-img--swimwear   { background: rgba(58,124,165,0.08); color: var(--swim);    }
.col-preview-body {
  padding: 14px 16px;
}
.col-preview-cat {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
}
.col-preview-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--fg);
  margin: 4px 0;
  line-height: 1.3;
}
.col-preview-price {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--accent);
}
.col-preview-card--more {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(192,120,48,0.06);
  border: 1.5px dashed rgba(192,120,48,0.3);
  min-height: 180px;
}
.col-more-count {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--accent);
}
.col-more-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-light);
}
.collection-desc-block {
  background: var(--bg-warm);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 40px;
  font-size: 0.97rem;
  line-height: 1.75;
  color: var(--fg-light);
  font-weight: 300;
  border-left: 3px solid var(--accent);
}

/* ============================================================
   RESPONSIVE — catalog & detail pages
   ============================================================ */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .page-hero { padding: 100px 20px 48px; }
  .shop-main, .collections-main, .product-detail-wrap, .back-to-cat { padding-left: 20px; padding-right: 20px; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .product-detail-layout { grid-template-columns: 1fr; gap: 32px; }
  .product-detail-visual { position: static; aspect-ratio: auto; min-height: 240px; }
  .collection-row-header { flex-direction: column; }
  .collection-products-preview { grid-template-columns: 1fr 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .notify-form-row { flex-direction: column; }
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .collection-products-preview { grid-template-columns: 1fr; }
}