/* ============================================
   BROGAINSWEAR — Global Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:wght@300;400;600;700&family=Barlow:wght@300;400;500&display=swap');

:root {
  --black:   #080808;
  --dark:    #111111;
  --card:    #161616;
  --border:  #222222;
  --red:     #990012;
  --red-hover:#b30015;
  --red-dim: #5d000b;
  --white:   #f5f5f5;
  --grey:    #888888;
  --light:   #cccccc;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 17px;
}
body {
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ---- NAV ---- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 64px;
  background: rgba(8,8,8,0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.65rem;
  letter-spacing: 0.12em;
  color: var(--white);
  text-decoration: none;
}
.brand-icon {
  width: 28px;
  height: 28px;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}
.brand-text span { color: var(--red); }
.nav-links { display: flex; gap: 0; list-style: none; }
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  text-decoration: none;
  padding: 0 1.2rem;
  height: 64px;
  display: flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--white); border-bottom-color: var(--red); }
.nav-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 9px 22px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--red-hover); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.3s; }
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: rgba(8,8,8,0.98);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 2rem 5vw;
  z-index: 199;
  flex-direction: column;
  gap: 1.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
  text-decoration: none;
  transition: color 0.2s;
  border-left: 2px solid transparent;
  padding-left: 1rem;
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--white); border-left-color: var(--red); }

/* ---- MARQUEE ---- */
.marquee-wrap {
  background: var(--red);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 22s linear infinite;
}
.marquee-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.15em;
  padding: 0 2rem;
  color: var(--white);
}
.marquee-sep { color: rgba(255,255,255,0.4); padding: 0 0.5rem; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  padding: 120px 5vw 60px;
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 90% 50%, rgba(153,0,18,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.page-hero-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  position: relative;
}
.page-hero-label::before {
  content: '';
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--red);
}
.page-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.2rem, 8.5vw, 6.4rem);
  letter-spacing: 0.04em;
  line-height: 1;
  position: relative;
}
.page-hero-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 300;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  color: var(--light);
  margin-top: 0.8rem;
  max-width: 540px;
  position: relative;
}

/* ---- SECTION HELPERS ---- */
.section { padding: 5rem 5vw; }
.section-alt { background: var(--dark); }
.section-border { border-top: 1px solid var(--border); }
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--red);
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 0.8rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--grey);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 3rem;
}

/* ---- BUTTONS ---- */
.btn-primary {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 13px 34px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.btn-primary:hover { background: var(--red-hover); transform: translateY(-2px); }
.btn-secondary {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
  padding: 13px 34px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--white); transform: translateY(-2px); }
.btn-white {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--white);
  color: var(--red);
  border: none;
  padding: 13px 34px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: all 0.2s;
}
.btn-white:hover { transform: translateY(-2px); }
.btn-outline-white {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  padding: 13px 34px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}
.btn-outline-white:hover { border-color: white; transform: translateY(-2px); }

/* ---- PRODUCT GRID ---- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5px;
}
.products-page .product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.featured-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.product-card {
  background: var(--card);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
}
.product-card:hover { transform: translateY(-4px); }
.product-card:hover .product-overlay { opacity: 1; }
.product-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #1a1a1a 0%, #222 50%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-placeholder.has-photo {
  background: #111;
}
.product-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,255,255,0.01) 20px, rgba(255,255,255,0.01) 40px);
}
.product-placeholder.has-photo::before {
  opacity: 0.45;
}
.product-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.product-placeholder.has-photo .product-icon {
  display: none;
}
.sample-placeholder {
  aspect-ratio: 1 / 1;
}
.sample-placeholder .product-photo {
  object-position: center center;
}
.product-icon,
.why-icon,
.badge-icon,
.tip-icon,
.athlete-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-icon { font-size: 3rem; opacity: 0.15; }
.why-icon svg,
.feature-icon svg,
.badge-icon svg,
.tip-icon svg,
.athlete-icon svg,
.product-icon svg,
.col-pattern svg,
.cs-icon svg,
.social-btn svg,
.contact-item > span svg {
  width: 1em;
  height: 1em;
  display: block;
  stroke-width: 2;
}
.feature-icon svg {
  width: 20px;
  height: 20px;
}
.social-btn svg {
  width: 18px;
  height: 18px;
}
.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--red);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  z-index: 2;
}
.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(153,0,18,0.08);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.product-order-btn {
  width: 100%;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 12px;
  cursor: pointer;
}
.product-info { padding: 1.2rem 1.2rem 1.5rem; border-top: 1px solid var(--border); }
.product-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.product-desc { font-size: 0.9rem; color: var(--grey); line-height: 1.5; margin-bottom: 0.8rem; }
.product-colors { display: flex; gap: 6px; }
.color-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  transition: transform 0.2s;
}
.color-dot:hover { transform: scale(1.3); }

/* ---- TABS ---- */
.tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  margin-bottom: 3rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.tabs::-webkit-scrollbar { display: none; }
.tab {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
  background: none;
  border: none;
  padding: 12px 24px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
}
.tab.active, .tab:hover { color: var(--white); border-bottom-color: var(--red); }
.tabs-content > div { display: none; }
.tabs-content > div.active { display: block; }

/* ---- PAGE-SPECIFIC LAYOUTS ---- */
/* Home */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 5vw 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(153,0,18,0.09) 0%, transparent 70%),
    radial-gradient(ellipse 40% 80% at 20% 80%, rgba(153,0,18,0.04) 0%, transparent 60%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0,1.05fr) minmax(320px,0.95fr);
  gap: 4rem;
  align-items: end;
  width: 100%;
}
.hero-content { max-width: 820px; }
.hero-tag {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid var(--red);
  padding: 5px 14px;
  margin-bottom: 2rem;
  animation: fadeUp 0.6s ease forwards;
  opacity: 0;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 8vw, 9.0rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s 0.1s ease forwards;
  opacity: 0;
}
.hero-title em { display: block; color: var(--red); font-style: normal; }
.hero-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 300;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  letter-spacing: 0.06em;
  color: var(--light);
  max-width: 500px;
  line-height: 1.55;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.6s 0.2s ease forwards;
  opacity: 0;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp 0.6s 0.3s ease forwards; opacity: 0; }
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 5vw;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  animation: fadeUp 0.6s 0.6s ease forwards;
  opacity: 0;
}
.scroll-line { width: 40px; height: 1px; background: var(--red); }
.scroll-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
}
.hero-media {
  position: relative;
  min-height: clamp(420px, 50vw, 640px);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  margin-bottom: clamp(-2.5rem, -2vw, -1rem);
  animation: fadeLeft 0.8s 0.4s ease forwards;
  opacity: 0;
}
.hero-slider {
  position: absolute;
  right: 0;
  bottom: clamp(-72px, -6vw, -24px);
  width: min(100%, clamp(320px, 42vw, 577px));
  aspect-ratio: 4 / 5;
  border: none;
  background: none;
  box-shadow: none;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.2s ease-in-out, transform 1.2s ease-in-out;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5px; }
.why-card { background: var(--card); padding: 2.2rem 1.8rem; border-top: 2px solid transparent; transition: border-color 0.2s; }
.why-card:hover { border-color: var(--red); }
.why-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(153,0,18,0.08);
  border: 1px solid rgba(153,0,18,0.22);
  border-radius: 12px;
  color: var(--red);
  margin-bottom: 1rem;
}
.why-icon svg { width: 20px; height: 20px; }
.why-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.why-desc { font-size: 0.92rem; color: var(--grey); line-height: 1.6; }
.featured-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.view-all {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.view-all::after { content: '→'; transition: transform 0.2s; }
.view-all:hover::after { transform: translateX(4px); }
.col-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; }
.col-card {
  aspect-ratio: 1;
  background: var(--card);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-decoration: none;
}
.col-card:first-child { grid-column: span 2; aspect-ratio: 2 / 1; }
.col-bg { position: absolute; inset: 0; transition: transform 0.4s; }
.col-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.col-card:hover .col-bg { transform: scale(1.04); }
.bg1 { background: linear-gradient(135deg,#0a0a0a,#1c1010); }
.bg2 { background: linear-gradient(135deg,#080808,#0d1220); }
.bg3 { background: linear-gradient(135deg,#090c0a,#0c1a10); }
.bg4 { background: linear-gradient(135deg,#0c0808,#1a0d0d); }
.bg5 { background: linear-gradient(135deg,#0a0a0a,#1a1a0d); }
.col-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  font-size: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.col-card.has-photo .col-pattern,
.col-hero-card.has-photo .col-pattern {
  opacity: 0.03;
}
.col-content { position: absolute; bottom: 0; z-index: 2; text-align: center; padding: 2rem; }
.col-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.6rem;
}
.col-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
  color: var(--white);
}
.col-sub { font-size: 0.9rem; color: #fff; margin-bottom: 1rem; }
.col-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.col-link::after { content: '→'; transition: transform 0.2s; }
.col-card:hover .col-link::after { transform: translateX(4px); }
.features-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.features-box {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 3rem;
  position: relative;
}
.features-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--red);
}
.features-big {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 7rem;
  color: var(--red);
  line-height: 1;
  opacity: 0.12;
  position: absolute;
  right: 2rem;
  bottom: 1rem;
  pointer-events: none;
}
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 1.6rem; }
.feature-item { display: flex; gap: 1rem; align-items: flex-start; }
.feature-icon {
  width: 36px;
  height: 36px;
  background: rgba(153,0,18,0.12);
  border: 1px solid rgba(153,0,18,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-text h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.feature-text p { font-size: 0.92rem; color: var(--grey); line-height: 1.6; }

/* Collections */
.collections-hero-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  margin-bottom: 1.5px;
}
.collections-hero-grid-wrap { padding: 0 5vw; }
.col-hero-card {
  aspect-ratio: 1;
  background: var(--card);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.col-hero-card:first-child { grid-column: span 2; aspect-ratio: 2 / 1; }
.col-hero-card:hover .col-bg { transform: scale(1.05); }
.col-hero-card .col-name { font-size: 2.8rem; }
.col-hero-card:first-child .col-name { font-size: 4rem; }
.col-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 10px 24px;
  cursor: pointer;
  display: inline-block;
}
.collection-section {
  padding: 5rem 5vw;
  border-top: 1px solid var(--border);
}
.collection-section:nth-child(odd) { background: var(--dark); }
.cs-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.cs-layout.reverse { direction: rtl; }
.cs-layout.reverse > * { direction: ltr; }
.cs-icon { font-size: 4rem; margin-bottom: 1.2rem; }
.cs-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom: 0.6rem;
}
.cs-desc { font-size: 0.9rem; color: var(--grey); line-height: 1.65; margin-bottom: 2rem; max-width: 400px; }
.cs-items { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; }
.cs-item { display: flex; align-items: center; gap: 0.8rem; font-size: 0.88rem; color: var(--light); }
.cs-item::before { content: '→'; color: var(--red); font-size: 0.8rem; }
.cs-products { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5px; }

/* Custom */
.custom-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.steps { display: flex; flex-direction: column; gap: 0; }
.step { display: flex; gap: 1.35rem; padding: 1.8rem 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.step:last-child { border-bottom: none; }
.step-icon {
  width: 3.35rem;
  height: 3.35rem;
  flex: 0 0 3.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,0.12), transparent 38%),
    linear-gradient(180deg, rgba(153,0,18,0.98), rgba(114,0,14,0.94));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 14px 30px rgba(153,0,18,0.22),
    inset 0 1px 0 rgba(255,255,255,0.12);
  color: #fff;
  position: relative;
}
.step-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,0.04);
  pointer-events: none;
}
.step-icon i {
  width: 1.35rem;
  height: 1.35rem;
  stroke-width: 2.15;
}
.step-body h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.step-body p { font-size: 0.85rem; color: var(--grey); line-height: 1.55; }
.product-picker { display: flex; flex-direction: column; gap: 1rem; }
.product-picker-summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015)),
    rgba(255,255,255,0.02);
}
.product-picker-summary img {
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 1rem;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 12px 24px rgba(0,0,0,0.28);
}
.product-picker-summary-copy { min-width: 0; }
.product-picker-summary-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.25rem;
}
.product-picker-summary-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--light);
  line-height: 1.2;
}
.product-picker-summary-desc {
  font-size: 0.88rem;
  color: var(--grey);
  margin-top: 0.2rem;
  line-height: 1.45;
}
.product-picker-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  max-height: 28rem;
  overflow: auto;
  padding-right: 0.2rem;
}
.product-picker-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  text-align: left;
  font: inherit;
  padding: 0.8rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.product-picker-card img {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 0.85rem;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.08);
}
.product-picker-card-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}
.product-picker-card-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}
.product-picker-card strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--light);
  line-height: 1.25;
}
.product-picker-card:hover,
.product-picker-card.active {
  transform: translateY(-1px);
  border-color: rgba(153,0,18,0.65);
  background: rgba(153,0,18,0.1);
  box-shadow: 0 14px 28px rgba(153,0,18,0.12);
}
.product-picker-card:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}
.badges { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 2.5rem; }
.badge { background: var(--dark); border: 1px solid var(--border); padding: 1.2rem; text-align: center; }
.badge-icon { font-size: 1.6rem; margin-bottom: 0.5rem; }
.badge-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.badge-desc { font-size: 0.85rem; color: var(--grey); }
.order-form { background: var(--card); border: 1px solid var(--border); padding: 2.5rem; }
.form-title { font-family: 'Bebas Neue', sans-serif; font-size: 2.15rem; letter-spacing: 0.06em; margin-bottom: 0.3rem; }
.form-subtitle { font-size: 0.9rem; color: var(--grey); margin-bottom: 2rem; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 1rem; }
.form-group label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); }
.form-group select option { background: var(--dark); }
.form-group textarea { resize: vertical; min-height: 88px; }
.form-submit {
  width: 100%;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 14px;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.5rem;
}
.form-submit:hover { background: var(--red-hover); }
.form-note { font-size: 0.85rem; color: var(--grey); margin-top: 0.8rem; text-align: center; line-height: 1.5; }
.samples-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5px; }
.care-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.care-card { background: var(--card); border: 1px solid var(--border); padding: 1.5rem; }
.care-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.care-title span { color: var(--red); }
.care-title-muted { color: #666; }
.care-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.care-list li {
  font-size: 0.92rem;
  color: var(--grey);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.care-list li::before {
  content: '✓';
  color: var(--red);
  font-size: 0.8rem;
  margin-top: 1px;
  flex-shrink: 0;
}
.care-list li.no::before { content: '✗'; color: #666; }

/* Legal */
.legal-wrap { display: grid; gap: 1.5rem; }
.legal-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 2rem;
}
.legal-meta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.4rem;
}
.legal-card h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.legal-card p,
.legal-card li {
  color: var(--grey);
  font-size: 0.9rem;
  line-height: 1.7;
}
.legal-card ul {
  margin: 0.8rem 0 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.55rem;
}

/* Reviews */
.review-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5px; margin-bottom: 3rem; }
.stat-card { background: var(--card); padding: 2rem; text-align: center; }
.stat-big { font-family: 'Bebas Neue', sans-serif; font-size: 3.5rem; color: var(--white); line-height: 1; }
.stat-big span { color: var(--red); }
.stat-desc {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 0.4rem;
}
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5px; }
.review-card { background: var(--card); padding: 2rem; border-left: 2px solid transparent; transition: border-color 0.3s; }
.review-card:hover { border-left-color: var(--red); }
.review-stars { color: var(--red); font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 1rem; }
.review-text { font-size: 0.95rem; color: var(--light); line-height: 1.7; font-style: italic; margin-bottom: 1.5rem; }
.review-author { display: flex; align-items: center; gap: 0.8rem; }
.review-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg,var(--red-dim),#220004);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  flex-shrink: 0;
}
.review-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.review-meta { font-size: 0.9rem; color: var(--grey); margin-top: 1px; }
.review-product {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid rgba(153,0,18,0.3);
  padding: 2px 8px;
  margin-top: 4px;
}
.athletes-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5px; }
.athlete-card { background: var(--card); position: relative; overflow: hidden; }
.athlete-placeholder {
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg,#1a1a1a,#222);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.athlete-placeholder.has-photo {
  background: #111;
}
.athlete-placeholder.has-photo .athlete-icon {
  display: none;
}
.athlete-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.athlete-icon { font-size: 3.5rem; opacity: 0.15; }
.athlete-info { padding: 1.2rem; border-top: 1px solid var(--border); }
.athlete-handle {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.athlete-product { font-size: 0.92rem; color: var(--grey); }
.sponsor-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--red);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
}
/* Sizes */
.sizes-table { width: 100%; border-collapse: collapse; margin-top: 2rem; }
.sizes-table th {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.sizes-table td { font-size: 0.9rem; padding: 14px 16px; border-bottom: 1px solid rgba(255,255,255,0.04); }
.sizes-table tr:hover td { background: rgba(255,255,255,0.02); }
.size-badge {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  background: var(--card);
  border: 1px solid var(--border);
  display: inline-block;
  width: 46px;
  text-align: center;
  padding: 4px 0;
}
.colors-grid { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.color-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 10px 18px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.color-swatch { width: 22px; height: 22px; border: 1px solid rgba(255,255,255,0.1); flex-shrink: 0; }
.color-swatch.black { background: #111; }
.color-swatch.white { background: #f5f5f5; border-color: rgba(255,255,255,0.3); }
.color-swatch.grey { background: #888; }
.color-swatch.navy { background: #1a3a6e; }
.color-swatch.green { background: #2d5a27; }
.color-swatch.red { background: #990012; }
.color-swatch.custom { background: linear-gradient(135deg,#990012,#3a1a7e); }
.type-tabs { display: flex; gap: 0; margin-bottom: 2rem; border-bottom: 1px solid var(--border); }
.type-tab {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
  background: none;
  border: none;
  padding: 12px 22px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
}
.type-tab.active, .type-tab:hover { color: var(--white); border-bottom-color: var(--red); }
.size-tables > div { display: none; }
.size-tables > div.active { display: block; }
.tips-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 2rem; }
.tip-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)),
    var(--card);
  border: 1px solid var(--border);
  border-top: 2px solid var(--red);
  padding: 1.5rem;
}
.tip-card::before {
  content: '';
  position: absolute;
  inset: auto auto 0 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--red), transparent 78%);
  opacity: 0.85;
}
.tip-card:hover { border-color: rgba(153,0,18,0.35); }
.tip-card .tip-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  margin-bottom: 1rem;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.16), transparent 55%),
    linear-gradient(135deg, rgba(153,0,18,0.24), rgba(153,0,18,0.06));
  border: 1px solid rgba(153,0,18,0.28);
  box-shadow: 0 10px 24px rgba(153,0,18,0.12);
  color: var(--red);
  position: relative;
}
.tip-card .tip-icon::after {
  content: '';
  position: absolute;
  inset: 7px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
}
.tip-card .tip-icon svg {
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 1;
}
.tip-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.tip-desc { font-size: 0.9rem; color: var(--grey); line-height: 1.55; }
.how-measure { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 2rem; }
.measure-step { display: flex; gap: 1rem; align-items: flex-start; }
.measure-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--red);
  opacity: 0.4;
  line-height: 1;
  min-width: 36px;
}
.measure-text h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.measure-text p { font-size: 0.9rem; color: var(--grey); line-height: 1.5; }

/* Products */
.product-section { margin-bottom: 4rem; }
.product-section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.product-section-title span {
  color: var(--grey);
  font-size: 1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 400;
  letter-spacing: 0.06em;
}

/* ---- CTA BANNER ---- */
.cta-banner {
  background: var(--red);
  padding: 5rem 5vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: 'BROGAINSWEAR';
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18vw;
  color: rgba(0,0,0,0.08);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  position: relative;
}
.cta-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
  position: relative;
}
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* ---- FOOTER ---- */
footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 4rem 5vw 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
}
.footer-brand .brand-icon {
  width: 34px;
  height: 34px;
}
.footer-brand .brand-text span { color: var(--red); }
.footer-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  color: var(--grey);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.footer-social { display: flex; gap: 0.8rem; }
.social-btn {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--grey);
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  background: none;
}
.social-icon {
  width: 16px;
  height: 16px;
  display: block;
}
.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0.35rem;
  color: var(--grey);
  flex-shrink: 0;
  font-size: 0.92rem;
  line-height: 1;
}
.contact-item > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.social-btn:hover { border-color: var(--red); color: var(--red); }
.footer-col-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.9rem; color: var(--grey); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-contact { display: flex; flex-direction: column; gap: 0.6rem; }
.contact-item { display: flex; align-items: flex-start; gap: 8px; font-size: 0.9rem; color: var(--grey); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: 0.85rem; color: rgba(255,255,255,0.25); letter-spacing: 0.06em; }
.footer-copy a { color: var(--white); text-decoration: none; }
.footer-copy a:hover { color: var(--red); }
.footer-policy-links {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer-policy-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-policy-links a:hover { color: var(--white); }

/* ---- TOAST ---- */
.toast {
  position: fixed;
  bottom: 2rem; right: 2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  padding: 1rem 1.5rem;
  z-index: 999;
  transform: translateX(200%);
  transition: transform 0.3s;
  max-width: 300px;
}
.toast.show { transform: translateX(0); }
.toast-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.toast-msg { font-size: 0.85rem; color: var(--grey); }

/* ---- ANIMATIONS ---- */
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}
.anim { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.anim.visible { opacity: 1; transform: translateY(0); }
.anim-delay-1 { transition-delay: 0.1s; }
.anim-delay-2 { transition-delay: 0.2s; }
.anim-delay-3 { transition-delay: 0.3s; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1238px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 960px) {
  .hero-layout { grid-template-columns: 1fr; gap: 2.5rem; align-items: start; }
  .hero-media { min-height: auto; margin-bottom: 0; justify-content: center; }
  .hero-slider { position: relative; right: auto; bottom: auto; width: min(100%, 560px); }
  .features-layout { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .col-grid { grid-template-columns: 1fr 1fr; }
  .col-card:first-child { grid-column: span 2; aspect-ratio: 16 / 9; }
  .collections-hero-grid { grid-template-columns: 1fr 1fr; }
  .col-hero-card:first-child { grid-column: span 2; aspect-ratio: 16 / 9; }
  .cs-layout,
  .cs-layout.reverse { grid-template-columns: 1fr; direction: ltr; }
  .custom-layout { grid-template-columns: 1fr; }
  .samples-grid { grid-template-columns: repeat(2,1fr); }
  .review-stats { grid-template-columns: repeat(2,1fr); }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .athletes-grid { grid-template-columns: repeat(2,1fr); }
  .tips-grid { grid-template-columns: 1fr 1fr; }
  .how-measure { grid-template-columns: 1fr 1fr; }
  .product-picker-grid { max-height: 24rem; }
  .products-page .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .featured-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .why-grid { grid-template-columns: 1fr; }
  .col-grid { grid-template-columns: 1fr; }
  .col-card:first-child { grid-column: span 1; aspect-ratio: 4 / 3; }
  .hero-slider { aspect-ratio: 3 / 4; width: min(100%, 430px); }
  .collections-hero-grid { grid-template-columns: 1fr; }
  .col-hero-card:first-child { grid-column: span 1; aspect-ratio: 4 / 3; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .product-picker-grid { grid-template-columns: 1fr; }
  .product-picker-summary { align-items: flex-start; }
  .product-picker-summary img { width: 4rem; height: 4rem; }
  .badges { grid-template-columns: 1fr; }
  .care-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .athletes-grid { grid-template-columns: 1fr 1fr; }
  .tips-grid { grid-template-columns: 1fr; }
  .how-measure { grid-template-columns: 1fr; }
  .products-page .product-grid { grid-template-columns: 1fr; }
  .featured-product-grid { grid-template-columns: 1fr; }
  .sizes-table { font-size: 0.9rem; }
  .sizes-table th,
  .sizes-table td { padding: 10px 8px; }
  .footer-top { grid-template-columns: 1fr; }
}
