/* ============================================================
   APEX MOTION USA — Premium Design System v2
   Technogym × Lamborghini × Ferrari
   ============================================================ */

@font-face { font-family: 'Mesmerize'; src: url('/assets/fonts/mesmerize-lt.woff2') format('woff2'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Mesmerize'; src: url('/assets/fonts/mesmerize-rg.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Mesmerize'; src: url('/assets/fonts/mesmerize-sb.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Mesmerize'; src: url('/assets/fonts/mesmerize-bd.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Mesmerize'; src: url('/assets/fonts/mesmerize-eb.woff2') format('woff2'); font-weight: 800; font-style: normal; font-display: swap; }
@font-face { font-family: 'Mesmerize'; src: url('/assets/fonts/mesmerize-ul.woff2') format('woff2'); font-weight: 900; font-style: normal; font-display: swap; }

:root {
  --red: #C30E2E;
  --red-hover: #e01235;
  --red-glow: rgba(195, 14, 46, .35);
  --dark: #1a1a1a;
  --darker: #0d0d0d;
  --darkest: #050505;
  --gold: #c9a96e;
  --gold-light: #d4bc8a;
  --gold-gradient: linear-gradient(135deg, #c9a96e 0%, #e8d5a3 40%, #c9a96e 60%, #a8854a 100%);
  --light: #f5f5f5;
  --white: #e0e0e6;
  --pure-white: #ffffff;
  --gray-100: #f0f0f0;
  --gray-200: #e0e0e0;
  --gray-300: #cccccc;
  --gray-500: #888888;
  --gray-700: #444444;
  --gray-900: #222222;
  --font: 'Mesmerize', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Mesmerize', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-w: 1320px;
  --header-h: 88px;
  --red-light: #ff3355;
  --radius: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --shadow: 0 8px 40px rgba(0,0,0,.3);
  --shadow-sm: 0 4px 16px rgba(0,0,0,.15);
  --shadow-glow: 0 0 40px var(--red-glow);
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --transition-slow: .6s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--gray-900);
  background: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red-hover); }

/* ---- RED SIDE STRIP ---- */
.side-strip {
  position: fixed;
  top: 0;
  left: 0;
  width: 64px;
  height: 100vh;
  background: var(--red);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 24px;
  box-shadow: 2px 0 20px rgba(195,14,46,.25);
  overflow: visible;
}
.side-strip-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 12px;
  flex-shrink: 0;
  transition: transform .4s cubic-bezier(.4,0,.2,1), filter .4s ease;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transform: scale(3.5);
  transform-origin: top left;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,.6));
}
.side-strip-logo:hover {
  transform: scale(3.8);
  transform-origin: top left;
  filter: drop-shadow(0 6px 30px rgba(195,14,46,.4));
}
.side-strip-info {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  display: flex;
  align-items: center;
  gap: 14px;
}
.side-strip-dealer {
  color: var(--pure-white);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .3em;
  white-space: nowrap;
}
.side-strip-divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,.3);
  flex-shrink: 0;
}
.side-strip-states {
  color: rgba(255,255,255,.55);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
  white-space: nowrap;
}
.side-strip-socials {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.side-strip-socials a {
  color: rgba(255,255,255,.7);
  transition: color var(--transition), transform var(--transition);
  display: flex;
}
.side-strip-socials a:hover {
  color: var(--pure-white);
  transform: scale(1.2);
}
.side-strip-socials svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Push body content right for the strip */
.site-main { padding-left: 64px; }
.site-footer { padding-left: 64px; }

/* ---- SVG FILTER (hidden) ---- */
.gooey-svg-filters { position: absolute; width: 0; height: 0; overflow: hidden; }

/* ---- GOOEY HAMBURGER MENU ---- */
.gooey-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1002;
  width: 340px;
  height: 300px;
  pointer-events: none;
}
.gooey-open { display: none; }

.gooey-btn {
  background: var(--red);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  position: absolute;
  top: 16px;
  right: 32px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  cursor: pointer;
  pointer-events: auto;
  transform: scale(1.1) translate3d(0,0,0);
  transition: transform 400ms cubic-bezier(0.175, 0.885, 0.320, 1.275);
  border: none;
}
.gooey-btn:hover {
  transform: scale(1.2) translate3d(0,0,0);
}
.gooey-open:checked + .gooey-btn {
  transform: scale(0.8) translate3d(0,0,0);
  transition-timing-function: linear;
  transition-duration: 200ms;
}

.gooey-bar {
  width: 22px;
  height: 2.5px;
  background: white;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -11px;
  margin-top: -1.25px;
  transition: transform 200ms;
  border-radius: 2px;
}
.gooey-bar-1 { transform: translate3d(0, -7px, 0); }
.gooey-bar-2 { transform: translate3d(0, 0, 0); }
.gooey-bar-3 { transform: translate3d(0, 7px, 0); }
.gooey-open:checked + .gooey-btn .gooey-bar-1 { transform: translate3d(0,0,0) rotate(45deg); }
.gooey-open:checked + .gooey-btn .gooey-bar-2 { transform: translate3d(0,0,0) scale(0.1, 1); }
.gooey-open:checked + .gooey-btn .gooey-bar-3 { transform: translate3d(0,0,0) rotate(-45deg); }

.gooey-item {
  background: var(--red);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  position: absolute;
  top: 16px;
  right: 32px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate3d(0,0,0);
  transition: transform ease-out 200ms, background .2s ease;
  pointer-events: auto;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0,0,0,.3);
}
.gooey-item svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
.gooey-item:hover {
  background: white;
  color: var(--red);
}

/* Staggered close timing */
.gooey-item:nth-child(3) { transition-duration: 70ms; }
.gooey-item:nth-child(4) { transition-duration: 130ms; }
.gooey-item:nth-child(5) { transition-duration: 190ms; }
.gooey-item:nth-child(6) { transition-duration: 250ms; }
.gooey-item:nth-child(7) { transition-duration: 310ms; }

/* Open: fan out in quarter-circle (down → left) for desktop right-side */
.gooey-open:checked ~ .gooey-item {
  transition-timing-function: cubic-bezier(0.935, 0.000, 0.340, 1.330);
}
.gooey-open:checked ~ .gooey-item:nth-child(3) {
  transition-duration: 160ms;
  transform: translate3d(0px, 160px, 0);
}
.gooey-open:checked ~ .gooey-item:nth-child(4) {
  transition-duration: 240ms;
  transform: translate3d(-61px, 148px, 0);
}
.gooey-open:checked ~ .gooey-item:nth-child(5) {
  transition-duration: 320ms;
  transform: translate3d(-113px, 113px, 0);
}
.gooey-open:checked ~ .gooey-item:nth-child(6) {
  transition-duration: 400ms;
  transform: translate3d(-148px, 61px, 0);
}
.gooey-open:checked ~ .gooey-item:nth-child(7) {
  transition-duration: 480ms;
  transform: translate3d(-160px, 0px, 0);
}

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s cubic-bezier(.4,0,.2,1), transform .8s cubic-bezier(.4,0,.2,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ---- HEADER ---- */
.site-header {
  display: none;
}
.header-inner {
  display: none;
}


/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--darkest);
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.25) saturate(1.1);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, transparent 0%, var(--darkest) 100%),
    linear-gradient(180deg, transparent 60%, var(--darkest) 100%);
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.4) saturate(1.2);
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, transparent 0%, var(--darkest) 100%),
    linear-gradient(180deg, transparent 50%, var(--darkest) 100%),
    linear-gradient(0deg, var(--darkest) 0%, transparent 30%);
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(195,14,46,.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 60%, rgba(201,169,110,.06) 0%, transparent 40%);
  animation: heroGlow 8s ease-in-out infinite alternate;
  z-index: 1;
}
@keyframes heroGlow {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-3%, 2%); }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 48px 32px;
  text-align: center;
  margin: 0 auto;
}
.hero-logo {
  display: block;
  width: clamp(260px, 32vw, 440px);
  height: auto;
  margin: 0 auto 24px;
  filter:
    drop-shadow(0 0 2px rgba(200,200,210,.8))
    drop-shadow(0 0 6px rgba(200,200,210,.5))
    drop-shadow(0 0 16px rgba(200,200,210,.3))
    drop-shadow(0 0 36px rgba(180,180,190,.15));
  animation: heroTextIn 1s cubic-bezier(.4,0,.2,1) .1s both;
}
.hero h1 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: .95;
  margin-bottom: 24px;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1.2px rgba(200,200,210,.9);
  paint-order: stroke fill;
  text-shadow:
    0 0 4px rgba(200,200,210,.6),
    0 0 12px rgba(200,200,210,.35),
    0 0 30px rgba(180,180,190,.15);
  animation: heroTextIn 1s cubic-bezier(.4,0,.2,1) .3s both;
}
@keyframes heroTextIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero h1 span {
  color: var(--red);
  -webkit-text-fill-color: var(--red);
  -webkit-text-stroke: 0;
  text-shadow:
    0 1px 0 #a00a24,
    0 2px 0 #8c0820,
    0 3px 0 #78061c,
    0 4px 0 #640518,
    0 5px 10px rgba(0,0,0,.4),
    0 8px 20px rgba(0,0,0,.3);
}
@keyframes shimmer {
  to { background-position: 200% center; }
}
.hero p {
  font-size: clamp(17px, 2.2vw, 22px);
  color: rgba(255,255,255,.6);
  margin-bottom: 48px;
  font-weight: 400;
  letter-spacing: .02em;
  line-height: 1.6;
  animation: heroTextIn 1s cubic-bezier(.4,0,.2,1) .5s both;
}
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: heroTextIn 1s cubic-bezier(.4,0,.2,1) .7s both;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(180deg, #e8333f 0%, #C30E2E 40%, #a00a24 70%, #C30E2E 100%);
  color: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
  padding: 20px 48px;
  border-radius: 0;
  border: 1px solid rgba(255,255,255,.15);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  -webkit-text-stroke: 1.5px currentColor;
  paint-order: stroke fill;
  text-shadow: 0 1px 2px rgba(0,0,0,.4);
}
.hero-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
  transition: left .6s ease;
}
.hero-cta:hover {
  background: linear-gradient(180deg, #ff4a55 0%, #e01235 40%, #b80c28 70%, #e01235 100%);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 40px var(--red-glow);
}
.hero-cta:hover::before { left: 100%; }
.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(180deg, #e0e0e6 0%, #b8b8c0 35%, #9a9aa4 65%, #b8b8c0 100%);
  color: var(--darkest);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: 18px 36px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 0;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  -webkit-text-stroke: 1px currentColor;
  paint-order: stroke fill;
  text-shadow: 0 1px 0 rgba(255,255,255,.3);
}
.hero-cta-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
  transition: left .6s ease;
}
.hero-cta-secondary:hover {
  background: linear-gradient(180deg, #ececf0 0%, #c8c8d0 35%, #aaaab4 65%, #c8c8d0 100%);
  color: var(--darkest);
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(200,200,210,.35);
}
.hero-cta-secondary:hover::before { left: 100%; }

/* Hero bottom fade + angle */
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(transparent, var(--darkest));
  z-index: 3;
}

/* ---- SECTIONS ---- */
.section { padding: 100px 32px; position: relative; }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-dark { background: var(--darkest); color: var(--white); }
.section-medium { background: var(--darker); color: var(--white); }
.section-light { background: var(--light); }
.section-title {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: 20px;
  line-height: 1.1;
  -webkit-text-stroke: 4px currentColor;
  paint-order: stroke fill;
  text-shadow: 0 1px 0 rgba(255,255,255,.08), 0 2px 4px rgba(0,0,0,.5), 0 4px 8px rgba(0,0,0,.3), 0 0 2px currentColor;
}
.section-title span { color: var(--red); }
.section-title-gold span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-subtitle {
  font-size: 18px;
  color: var(--gray-500);
  margin-bottom: 56px;
  font-weight: 600;
  line-height: 1.7;
  max-width: 640px;
}
.section-dark .section-subtitle { color: rgba(255,255,255,.5); }
.section-center { text-align: center; }
.section-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* Angled section divider */
.angle-top { clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%); padding-top: 140px; margin-top: -40px; }
.angle-bottom { clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), 0 100%); padding-bottom: 140px; }

/* ---- RED ACCENT LINE ---- */
.accent-line {
  width: 60px;
  height: 4px;
  background: var(--red);
  border-radius: 2px;
  margin-bottom: 32px;
}
.section-center .accent-line { margin-left: auto; margin-right: auto; }

/* ---- CATEGORY GRID ---- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}
.cat-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  display: flex;
  align-items: flex-end;
  background: var(--gray-900);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.cat-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 30px rgba(195,14,46,.15);
}
.cat-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .6s cubic-bezier(.4,0,.2,1), filter .6s ease;
  filter: brightness(.45) saturate(1.1);
}
.cat-card-bg.cat-card-bg--transparent {
  background-size: contain;
  background-repeat: no-repeat;
}
.cat-card:hover .cat-card-bg { transform: scale(1.08); filter: brightness(.35) saturate(1.2); }
.cat-card-content {
  position: relative;
  z-index: 2;
  padding: 32px;
  width: 100%;
  background: linear-gradient(transparent, rgba(0,0,0,.85));
}
.cat-card h3 {
  font-family: var(--font);
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--pure-white);
  margin-bottom: 8px;
  letter-spacing: .04em;
  text-shadow: 0 2px 8px rgba(0,0,0,.7);
}
.cat-card p {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  line-height: 1.5;
}
.cat-card-lines {
  font-size: 12px;
  color: var(--gold);
  margin-top: 8px;
  font-weight: 600;
  letter-spacing: .04em;
}
.cat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.cat-card:hover::after { transform: scaleX(1); }
.cat-card-link {
  position: absolute;
  inset: 0;
  z-index: 3;
}
.cat-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: rgba(255,255,255,.5);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 12px;
  transition: all var(--transition);
}
.cat-card-cta::after {
  content: '→';
  transition: transform var(--transition);
}
.cat-card:hover .cat-card-cta {
  color: var(--pure-white);
}
.cat-card:hover .cat-card-cta::after { transform: translateX(4px); }

/* Category page heading overrides */
.cat-page-heading {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 24px;
  color: var(--pure-white);
}

/* ---- PRODUCT GRID ---- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
  border-color: var(--red);
}
.product-card-img {
  aspect-ratio: 1;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow: hidden;
  position: relative;
}
.product-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(195,14,46,.05));
  opacity: 0;
  transition: opacity var(--transition);
}
.product-card:hover .product-card-img::after { opacity: 1; }
.product-card-img img {
  max-height: 100%;
  object-fit: contain;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.product-card:hover .product-card-img img { transform: scale(1.08); }
.product-card-body { padding: 20px 24px 24px; }
.product-card-line {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--red);
  margin-bottom: 6px;
}
.product-card h3 {
  font-family: var(--font);
  font-size: 17px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-card-sku {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 16px;
}
.product-card-actions { display: flex; gap: 8px; }

/* Dark product cards (for dark sections) */
.section-dark .product-card {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.08);
}
.section-dark .product-card:hover {
  border-color: var(--red);
  box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 20px rgba(195,14,46,.15);
}
.section-dark .product-card h3 { color: var(--white); }
.section-dark .product-card-sku { color: rgba(255,255,255,.5); }
.section-dark .product-card-img { background: rgba(255,255,255,.06); }

/* ---- PRODUCT DETAIL ---- */
.product-detail { padding: 48px 32px; }
.product-detail-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.product-gallery { background: var(--gray-100); border-radius: var(--radius-lg); padding: 48px; display: flex; align-items: center; justify-content: center; align-self: start; }
.product-gallery img { max-width: 100%; max-height: 600px; object-fit: contain; }
.product-info h1 { font-family: var(--font); font-size: 38px; font-weight: 800; text-transform: uppercase; margin-bottom: 8px; letter-spacing: .02em; color: var(--red); }
.product-info .product-line-badge { font-size: 13px; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: .14em; margin-bottom: 20px; }
.product-info .product-sku { font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 24px; }
.product-info .product-desc { font-size: 16px; color: rgba(255,255,255,.75); line-height: 1.8; margin-bottom: 32px; }
.product-info .spec-heading { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px; color: rgba(255,255,255,.6); }
.spec-table { width: 100%; border-collapse: collapse; margin-bottom: 32px; }
.spec-table tr { border-bottom: 1px solid rgba(255,255,255,.1); }
.spec-table td { padding: 14px 0; font-size: 15px; }
.spec-table td:first-child { font-weight: 600; color: rgba(255,255,255,.5); width: 40%; }
.spec-table td:last-child { color: rgba(255,255,255,.85); }
.product-info .target-muscles { margin-bottom: 24px; padding-left: 20px; font-size: 14px; color: rgba(255,255,255,.7); line-height: 1.8; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  -webkit-text-stroke: .6px currentColor;
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
  transition: left .5s ease;
}
.btn:hover::before { left: 100%; }
.btn-primary { background: transparent; color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.2); }
.btn-primary:hover { background: rgba(255,255,255,.08); color: var(--pure-white); border-color: rgba(255,255,255,.4); transform: translateY(-2px); }
.btn-secondary { background: transparent; color: var(--red); border: 1px solid var(--red); }
.btn-secondary:hover { background: var(--red); color: var(--white); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--darkest); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,169,110,.3); }
.btn-dark { background: var(--gray-900); color: var(--white); }
.btn-dark:hover { background: var(--dark); transform: translateY(-2px); }
.btn-sm { font-size: 12px; padding: 10px 20px; letter-spacing: .1em; }
.btn-lg { font-size: 16px; padding: 20px 52px; }
.btn-primary.btn-lg { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-primary.btn-lg:hover { background: var(--red-hover); box-shadow: 0 8px 30px var(--red-glow); }
.btn-block { display: flex; width: 100%; }

/* ---- FORMS ---- */
.form-group { margin-bottom: 24px; }
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--gray-700);
  margin-bottom: 8px;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  font-family: var(--font);
  font-size: 16px;
  padding: 16px 20px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--gray-900);
  transition: all var(--transition);
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(195,14,46,.08), 0 4px 20px rgba(195,14,46,.1);
}
.form-textarea { resize: vertical; min-height: 140px; }
.form-input-dark, .form-textarea-dark, .form-select-dark {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.1);
  color: var(--white);
}
.form-label-dark { color: rgba(255,255,255,.5); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

/* ---- BREADCRUMBS ---- */
.breadcrumbs {
  padding: 20px 32px;
  background: var(--darkest);
  font-size: 13px;
  border-bottom: 1px solid rgba(195,14,46,.15);
}
.breadcrumbs-inner { max-width: var(--max-w); margin: 0 auto; display: flex; flex-wrap: wrap; gap: 6px; }
.breadcrumbs a { color: rgba(255,255,255,.4); font-weight: 600; letter-spacing: .06em; }
.breadcrumbs a:hover { color: var(--red); }
.breadcrumbs span { color: rgba(255,255,255,.3); }
.breadcrumbs .current { color: var(--white); font-weight: 700; }

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--darker);
  padding: 64px 32px;
  position: relative;
  overflow: hidden;
}
.trust-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(195,14,46,.06) 0%, transparent 70%);
}
.trust-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.trust-item {
  text-align: center;
  padding: 24px 16px;
  position: relative;
}
.trust-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,.08);
}
.trust-item:last-child::after { display: none; }
.trust-number {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: clamp(44px, 4.5vw, 60px);
  font-weight: 900;
  letter-spacing: -.02em;
  background: linear-gradient(135deg, var(--red), var(--red-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.trust-label {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 700;
}

/* ---- ITALIAN HERITAGE BANNER ---- */
.heritage-banner {
  background: var(--darkest);
  padding: 80px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.heritage-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #009246, #fff, #CE2B37);
}
.heritage-tagline {
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 400;
  color: rgba(255,255,255,.7);
  letter-spacing: .06em;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.5;
}
.heritage-tagline em {
  font-style: italic;
  color: var(--gold);
  font-weight: 600;
}

/* ---- CONTACT GRID ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }

/* ---- ABOUT FEATURES ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.feature-card {
  padding: 40px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.feature-card:hover {
  border-color: rgba(195,14,46,.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
}
.feature-card h3 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: .06em;
  -webkit-text-stroke: 2px currentColor;
  paint-order: stroke fill;
  text-shadow: 0 0 1px currentColor;
}
.feature-card p {
  font-size: 15px;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(195,14,46,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--red);
}

/* ---- CATALOG / FILTER PAGE ---- */
.catalog-section { padding-top: 0; }
.catalog-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--pure-white);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 8px;
}
.catalog-count {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.catalog-count strong { color: var(--pure-white); }

.catalog-search-bar {
  position: relative;
  max-width: 400px;
  margin-bottom: 32px;
}
.catalog-search-bar input {
  width: 100%;
  background: var(--gray-900);
  border: 1px solid var(--gray-700);
  color: var(--pure-white);
  padding: 12px 16px 12px 44px;
  font-size: 15px;
  font-family: var(--font);
  border-radius: var(--radius);
  outline: none;
  transition: border-color .2s;
}
.catalog-search-bar input::placeholder { color: var(--gray-500); }
.catalog-search-bar input:focus { border-color: var(--red); }
.catalog-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  fill: var(--gray-500);
  pointer-events: none;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

/* Sidebar */
.catalog-sidebar { position: sticky; top: 24px; }
.catalog-filter-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  background: var(--gray-900);
  border: 1px solid var(--gray-700);
  color: var(--pure-white);
  padding: 10px 20px;
  font-size: 14px;
  font-family: var(--font);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  border-radius: var(--radius);
  cursor: pointer;
  width: 100%;
  justify-content: center;
  margin-bottom: 16px;
}
.catalog-filter-toggle svg { width: 20px; height: 20px; fill: currentColor; }
.catalog-filter-toggle.is-active { background: var(--red); border-color: var(--red); }

.filter-group {
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.filter-heading {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--pure-white);
  margin-bottom: 12px;
}
.filter-scroll {
  max-height: 320px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--gray-700) transparent;
}
.filter-scroll::-webkit-scrollbar { width: 4px; }
.filter-scroll::-webkit-scrollbar-track { background: transparent; }
.filter-scroll::-webkit-scrollbar-thumb { background: var(--gray-700); border-radius: 2px; }

.filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  cursor: pointer;
  font-size: 14px;
  color: rgba(255,255,255,.7);
  transition: color .15s;
}
.filter-option:hover { color: var(--pure-white); }
.filter-option input { display: none; }
.filter-checkbox {
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--gray-500);
  border-radius: 3px;
  flex-shrink: 0;
  position: relative;
  transition: border-color .15s, background .15s;
}
.filter-option input:checked ~ .filter-checkbox {
  background: var(--red);
  border-color: var(--red);
}
.filter-option input:checked ~ .filter-checkbox::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.filter-label { flex: 1; }
.filter-count { color: var(--gray-500); font-size: 13px; }

.filter-clear {
  background: none;
  border: 1px solid var(--gray-700);
  color: var(--gray-500);
  padding: 8px 16px;
  font-size: 13px;
  font-family: var(--font);
  border-radius: var(--radius);
  cursor: pointer;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: .05em;
  transition: color .2s, border-color .2s;
}
.filter-clear:hover { color: var(--pure-white); border-color: var(--pure-white); }

/* Active filter chips */
.catalog-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  min-height: 0;
}
.active-filter {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(195,14,46,.15);
  border: 1px solid rgba(195,14,46,.3);
  color: var(--red-light);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.active-filter button {
  background: none;
  border: none;
  color: inherit;
  font-size: 16px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

/* Product grid */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.catalog-card {
  background: var(--gray-900);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--pure-white);
  transition: transform .2s, box-shadow .2s;
  border: 1px solid rgba(255,255,255,.05);
}
.catalog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  border-color: rgba(195,14,46,.3);
}
.catalog-card-img {
  aspect-ratio: 1;
  background: var(--pure-white);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 16px;
}
.catalog-card-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.catalog-card-info { padding: 16px; }
.catalog-card-sku {
  font-size: 12px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 4px;
}
.catalog-card-name {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
}

.catalog-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 24px;
  color: var(--gray-500);
  font-size: 16px;
}

/* Pagination */
.catalog-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.page-btn {
  background: var(--gray-900);
  border: 1px solid var(--gray-700);
  color: var(--pure-white);
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 14px;
  font-family: var(--font);
  transition: background .15s, border-color .15s;
}
.page-btn:hover { background: var(--gray-700); }
.page-btn.active { background: var(--red); border-color: var(--red); }
.page-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  color: var(--gray-500);
}


/* ---- NEWSLETTER SECTION ---- */
.newsletter-section {
  background: var(--red);
  padding: 72px 32px;
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.15) 0%, transparent 50%, rgba(0,0,0,.1) 100%);
  pointer-events: none;
}
.newsletter-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: center;
}
.newsletter-heading {
  font-family: var(--font), -apple-system, sans-serif;
  font-size: 40px;
  font-weight: 900;
  color: var(--pure-white);
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1.1;
  margin-bottom: 12px;
}
.newsletter-sub {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,.8);
}
.newsletter-form-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr auto;
  gap: 16px;
  align-items: end;
}
.newsletter-field label {
  display: block;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: rgba(255,255,255,.7);
  margin-bottom: 8px;
}
.newsletter-field input,
.newsletter-field select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(0,0,0,.2);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 6px;
  color: var(--pure-white);
  font-size: 14px;
  font-family: var(--font), -apple-system, sans-serif;
  transition: all var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.newsletter-field input::placeholder {
  color: rgba(255,255,255,.4);
}
.newsletter-field input:focus,
.newsletter-field select:focus {
  border-color: var(--pure-white);
  background: rgba(0,0,0,.3);
  box-shadow: 0 0 0 3px rgba(255,255,255,.15);
}
.newsletter-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}
.newsletter-field select option {
  background: var(--dark);
  color: var(--pure-white);
}
.newsletter-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--darkest);
  color: var(--pure-white);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  padding: 13px 28px;
  border: 2px solid var(--darkest);
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font), -apple-system, sans-serif;
  white-space: nowrap;
}
.newsletter-submit:hover {
  background: transparent;
  border-color: var(--pure-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
}
.newsletter-submit svg {
  transition: transform var(--transition);
}
.newsletter-submit:hover svg {
  transform: translateX(4px);
}
.newsletter-privacy {
  margin-top: 16px;
  font-size: 11px;
  color: rgba(255,255,255,.5);
  line-height: 1.5;
}
.newsletter-privacy a {
  color: rgba(255,255,255,.7);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.newsletter-privacy a:hover {
  color: var(--pure-white);
}

/* Newsletter responsive */
@media (max-width: 1024px) {
  .newsletter-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .newsletter-form-row {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .newsletter-field-btn {
    grid-column: 1 / -1;
  }
  .newsletter-submit { width: 100%; justify-content: center; }
  .newsletter-privacy { text-align: center; }
}
@media (max-width: 768px) {
  .newsletter-section { padding: 56px 20px; }
  .newsletter-heading { font-size: 32px; }
  .newsletter-form-row {
    grid-template-columns: 1fr;
  }
}

/* ---- FOOTER v2 — World-Class ---- */
.site-footer {
  background: var(--darkest);
  color: rgba(255,255,255,.5);
  position: relative;
  font-family: var(--font), -apple-system, BlinkMacSystemFont, sans-serif;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(195,14,46,.5) 30%, rgba(195,14,46,.8) 50%, rgba(195,14,46,.5) 70%, transparent 95%);
}

/* Heritage Strip */
.footer-heritage {
  padding: 40px 32px;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.footer-heritage-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer-heritage-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);
}
.footer-heritage-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.heritage-flag {
  display: flex;
  border-radius: 2px;
  overflow: hidden;
  height: 14px;
  width: 21px;
  flex-shrink: 0;
}
.flag-green { background: #009246; flex: 1; }
.flag-white { background: #ffffff; flex: 1; }
.flag-red   { background: #ce2b37; flex: 1; }
.heritage-text {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: rgba(255,255,255,.5);
  white-space: nowrap;
}
.heritage-dot {
  color: rgba(255,255,255,.15);
  font-size: 14px;
}

/* Main Grid */
.footer-main {
  padding: 64px 32px;
}
.footer-main-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1.5fr;
  gap: 48px;
}

/* Brand Column */
.footer-brand-link {
  display: inline-block;
  transition: all var(--transition);
}
.footer-brand-link:hover { transform: scale(1.05); }
.footer-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 20px rgba(195,14,46,.2));
}
.footer-tagline {
  font-size: 14px;
  color: var(--gold);
  font-weight: 600;
  font-style: italic;
  margin-bottom: 12px;
  letter-spacing: .02em;
}
.footer-brand-desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,.5);
  margin-bottom: 24px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social-link {
  color: rgba(255,255,255,.45);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
}
.footer-social-link:hover {
  color: var(--red);
  border-color: var(--red);
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(195,14,46,.25);
}

/* Nav Columns */
.footer-heading {
  font-family: var(--font), -apple-system, sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 14px;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--red);
  border-radius: 1px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,.6);
  font-size: 13px;
  font-weight: 500;
  transition: all var(--transition);
  letter-spacing: .02em;
  text-decoration: none;
  display: inline-block;
}
.footer-links a:hover {
  color: var(--white);
  transform: translateX(4px);
}
.footer-link-accent {
  color: var(--gold) !important;
  font-weight: 700 !important;
  margin-top: 4px;
}
.footer-link-accent:hover {
  color: var(--gold-light) !important;
}

/* Contact Column */
.footer-contact-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: all var(--transition);
  line-height: 1.5;
}
a.footer-contact-item:hover { color: var(--white); }
.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--red);
  opacity: .7;
}
.footer-contact-address { font-style: normal; }
.footer-quote-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  padding: 12px 24px;
  border-radius: var(--radius);
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.footer-quote-btn:hover {
  background: var(--red-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}
.footer-quote-btn svg {
  transition: transform var(--transition);
}
.footer-quote-btn:hover svg {
  transform: translateX(4px);
}

/* Partner Logos Strip */
.footer-partners {
  border-top: 1px solid rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.04);
  background: rgba(255,255,255,.01);
  padding: 40px 32px;
}
.footer-partners-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}
.footer-partner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.footer-partner-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .4;
  transition: all var(--transition);
}
.footer-partner:hover .footer-partner-logo {
  opacity: .7;
}
.footer-partner-logo-apex {
  height: 48px;
  filter: none;
  opacity: .6;
}
.footer-partner:hover .footer-partner-logo-apex {
  opacity: .8;
}
.footer-partner-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: rgba(255,255,255,.2);
}
.footer-partner-divider {
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,.06);
}

/* Legal Bar */
.footer-legal {
  padding: 24px 32px;
  background: rgba(0,0,0,.3);
}
.footer-legal-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copyright {
  font-size: 12px;
  color: rgba(255,255,255,.2);
  letter-spacing: .04em;
}
.footer-legal-links {
  display: flex;
  gap: 24px;
}
.footer-legal-links a {
  font-size: 12px;
  color: rgba(255,255,255,.2);
  text-decoration: none;
  transition: color var(--transition);
  letter-spacing: .04em;
}
.footer-legal-links a:hover { color: rgba(255,255,255,.5); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1280px) {
  .footer-main-inner {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
  }
  .footer-contact-col {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: start;
    border-top: 1px solid rgba(255,255,255,.04);
    padding-top: 32px;
  }
  .footer-contact-col .footer-heading {
    grid-column: 1 / -1;
  }
}
@media (max-width: 1024px) {
  .product-detail-inner { grid-template-columns: 1fr; }
  .footer-main-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand-col {
    grid-column: 1 / -1;
    text-align: center;
  }
  .footer-brand-col .footer-brand-desc { max-width: 480px; margin-left: auto; margin-right: auto; }
  .footer-social { justify-content: center; }
  .footer-contact-col {
    grid-column: 1 / -1;
    display: block;
    text-align: center;
  }
  .footer-contact-card { align-items: center; }
  .footer-contact-item { justify-content: center; }
  .footer-heading::after { left: 50%; transform: translateX(-50%); }
  .footer-nav-col { text-align: center; }
  .footer-nav-col .footer-links a:hover { transform: none; }
  .footer-quote-btn { margin: 0 auto; }
  .features-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root { --header-h: 72px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-grid { grid-template-columns: 1fr; }
  .side-strip { display: none; }
  .site-main { padding-left: 0; }
  .site-footer { padding-left: 0; }
  .footer-heritage { padding: 28px 20px; }
  .footer-heritage-inner { flex-wrap: wrap; justify-content: center; gap: 12px; }
  .footer-heritage-line { display: none; }
  .footer-main { padding: 48px 20px; }
  .footer-main-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand-col { text-align: center; }
  .footer-brand-col .footer-brand-desc { max-width: 100%; }
  .footer-partners { padding: 32px 20px; }
  .footer-partners-inner { gap: 32px; }
  .footer-partner-logo { height: 32px; }
  .footer-partner-logo-apex { height: 40px; }
  .footer-partner-divider { height: 40px; }
  .footer-legal { padding: 20px 20px; }
  .footer-legal-inner { flex-direction: column; gap: 12px; text-align: center; }
  .footer-legal-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .footer-contact-col { display: block; text-align: center; }
  .footer-heading::after { left: 50%; transform: translateX(-50%); }
  .footer-nav-col { text-align: center; }
  .gooey-menu { right: auto; left: 50%; transform: translateX(-50%); width: 380px; height: 250px; }
  .gooey-btn { width: 48px; height: 48px; top: 12px; right: auto; left: 50%; margin-left: -24px; }
  .gooey-item { width: 48px; height: 48px; top: 12px; right: auto; left: 50%; margin-left: -24px; }
  .gooey-item svg { width: 20px; height: 20px; }
  .gooey-bar { width: 20px; margin-left: -10px; }
  .gooey-open:checked ~ .gooey-item:nth-child(3) { transform: translate3d(138px, 24px, 0); }
  .gooey-open:checked ~ .gooey-item:nth-child(4) { transform: translate3d(90px, 107px, 0); }
  .gooey-open:checked ~ .gooey-item:nth-child(5) { transform: translate3d(0px, 140px, 0); }
  .gooey-open:checked ~ .gooey-item:nth-child(6) { transform: translate3d(-90px, 107px, 0); }
  .gooey-open:checked ~ .gooey-item:nth-child(7) { transform: translate3d(-138px, 24px, 0); }
  .hero-content { padding-top: 200px; }
  .hero-logo { margin-top: 24px; }
  .hero { min-height: 85vh; }
  .hero-logo { width: clamp(160px, 50vw, 260px); }
  .hero-ctas { flex-direction: column; }
  .hero-cta { width: 100%; justify-content: center; padding: 18px 32px; }
  .hero-cta-secondary { width: 100%; justify-content: center; }
  .section { padding: 64px 20px; }
  .cat-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .trust-item::after { display: none; }
  .angle-top { clip-path: polygon(0 20px, 100% 0, 100% 100%, 0 100%); padding-top: 100px; margin-top: -20px; }
  .angle-bottom { clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), 0 100%); padding-bottom: 100px; }
  .heritage-tagline { font-size: 18px; }
  .section-title { -webkit-text-stroke: 2px currentColor; font-size: clamp(28px, 6vw, 40px); }
  .feature-card h3 { -webkit-text-stroke: 1px currentColor; }
  .catalog-layout { grid-template-columns: 1fr; gap: 0; }
  .catalog-filter-toggle { display: flex; }
  .catalog-filters { display: none; }
  .catalog-filters.is-open { display: block; margin-bottom: 24px; }
  .catalog-sidebar { position: static; }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .catalog-search-bar { max-width: 100%; }
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .catalog-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 36px; -webkit-text-stroke: .8px rgba(200,200,210,.9); }
  .section-title { -webkit-text-stroke: 1.5px currentColor; font-size: clamp(24px, 5.5vw, 32px); }
  .feature-card h3 { -webkit-text-stroke: .8px currentColor; }
  .hero-logo { width: clamp(140px, 45vw, 200px); }
  .trust-bar-inner { grid-template-columns: 1fr; }
  .cat-grid { gap: 16px; }
  .heritage-text { font-size: 9px; letter-spacing: .12em; }
  .heritage-dot { font-size: 10px; }
  .footer-heritage-badge { gap: 8px; }
  .footer-partners-inner { flex-direction: column; gap: 24px; }
  .footer-partner-divider { width: 40px; height: 1px; }
}


/* Description read-more */
.product-desc-wrap { position: relative; margin-bottom: 24px; }
.product-desc-wrap .product-desc { transition: max-height 0.3s ease; }
.read-more-btn { background: none; border: none; color: var(--red); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; cursor: pointer; padding: 8px 0; margin-top: 4px; }
.read-more-btn:hover { text-decoration: underline; }

/* ═══════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════ */

/* Hero */
.about-hero {
  padding: 120px 32px 80px;
  text-align: center;
  background: var(--darkest);
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.about-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(195,14,46,.4), transparent);
  z-index: 2;
}
.about-hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.about-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5,5,5,.82) 0%, rgba(5,5,5,.7) 50%, rgba(5,5,5,.9) 100%);
  z-index: 1;
}
.about-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.about-hero-title {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: .02em;
  margin-bottom: 24px;
  -webkit-text-stroke: 4px currentColor;
  paint-order: stroke fill;
  text-shadow: 0 1px 0 rgba(255,255,255,.08), 0 2px 4px rgba(0,0,0,.5), 0 4px 8px rgba(0,0,0,.3), 0 0 2px currentColor;
}
.about-hero-title span {
  color: var(--red);
}
.about-hero-sub {
  font-size: clamp(16px, 1.8vw, 20px);
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

/* Section Headings */
.about-section-heading {
  font-family: var(--font);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: .02em;
  margin-bottom: 32px;
  line-height: 1.1;
  -webkit-text-stroke: 3px currentColor;
  paint-order: stroke fill;
}
.about-section-heading span {
  color: var(--red);
}

/* Story Section */
.about-story {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}
.about-story-text p {
  color: rgba(255,255,255,.7);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-story-text strong {
  color: var(--white);
}
.about-story-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  position: sticky;
  top: 120px;
}
.about-stat {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
}
.about-stat:hover {
  border-color: rgba(195,14,46,.3);
  background: rgba(195,14,46,.05);
}
.about-stat-number {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 40px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
  -webkit-text-stroke: 1.5px currentColor;
  paint-order: stroke fill;
}
.about-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: 1.3;
}

/* Founders */
.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
}
.founder-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
}
.founder-card:hover {
  border-color: rgba(195,14,46,.25);
  box-shadow: 0 20px 60px rgba(0,0,0,.3), 0 0 30px rgba(195,14,46,.08);
}
.founder-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.founder-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.founder-card:hover .founder-img-wrap img {
  transform: scale(1.04);
}
.founder-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(195,14,46,.1) 0%, rgba(20,20,20,.95) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.founder-img-placeholder span {
  font-size: 13px;
  color: rgba(255,255,255,.25);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.founder-info {
  padding: 32px;
}
.founder-name {
  font-family: var(--font);
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.founder-role {
  font-size: 14px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
  margin-bottom: 20px;
}
.founder-bio p {
  color: rgba(255,255,255,.6);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 14px;
}
.founder-bio em {
  color: rgba(255,255,255,.8);
  font-style: italic;
}
.founder-highlights {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.founder-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.6);
}
.founder-highlight svg {
  flex-shrink: 0;
}

/* Trinity Section */
.about-trinity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-trinity-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(195,14,46,.12) 0%, rgba(20,20,20,.95) 100%);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.about-trinity-img-placeholder span {
  font-size: 13px;
  color: rgba(255,255,255,.2);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.about-trinity-img img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
}
.about-trinity-tagline {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 20px;
}
.about-trinity-text p {
  color: rgba(255,255,255,.6);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.trinity-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0;
}
.trinity-feature {
  display: flex;
  gap: 12px;
  align-items: baseline;
}
.trinity-feature strong {
  color: var(--white);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .04em;
  min-width: 130px;
  flex-shrink: 0;
}
.trinity-feature span {
  color: rgba(255,255,255,.5);
  font-size: 14px;
}
.trinity-locations {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 14px;
  color: rgba(255,255,255,.5);
  margin-top: 8px;
}
.trinity-locations strong {
  color: var(--white);
}
.trinity-locations svg {
  flex-shrink: 0;
}

/* Panatta Logo Draw Animation */
.panatta-draw-wrap {
  max-width: 560px;
  margin: 0 auto 40px;
}
.panatta-draw-logo {
  width: 100%;
  height: auto;
}
.draw-path {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
}
.draw-text {
  opacity: 0;
}
.panatta-draw-wrap.is-visible .draw-outer {
  animation: drawLine 2s cubic-bezier(.4,0,.2,1) forwards;
}
.panatta-draw-wrap.is-visible .draw-inner {
  animation: drawLine 1.5s cubic-bezier(.4,0,.2,1) .6s forwards;
}
.panatta-draw-wrap.is-visible .draw-tip-left,
.panatta-draw-wrap.is-visible .draw-tip-right {
  animation: drawLine .6s cubic-bezier(.4,0,.2,1) 1.2s forwards;
}
.panatta-draw-wrap.is-visible .draw-text {
  animation: fadeInText .8s ease 1.8s forwards;
}
@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}
@keyframes fadeInText {
  to { opacity: 1; }
}

/* Why Panatta Values */
.panatta-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.panatta-value {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}
.panatta-value:hover {
  border-color: rgba(195,14,46,.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.3);
}
.panatta-value-icon {
  margin-bottom: 20px;
}
.panatta-value h3 {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.panatta-value p {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
}

/* Timeline */
.about-timeline {
  position: relative;
  max-width: 700px;
  margin: 48px auto 0;
  padding-left: 40px;
}
.about-timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--red), rgba(195,14,46,.15));
}
.timeline-item {
  position: relative;
  padding-bottom: 48px;
}
.timeline-item:last-child {
  padding-bottom: 0;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -36px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red);
  border: 3px solid var(--darkest);
  box-shadow: 0 0 0 2px var(--red), 0 0 12px rgba(195,14,46,.4);
}
.timeline-year {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 800;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 8px;
}
.timeline-content h4 {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.timeline-content p {
  font-size: 15px;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
}

/* ── RESPONSIVE ── */
@media (max-width: 1280px) {
  .panatta-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .about-story {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-story-stats {
    position: static;
    grid-template-columns: repeat(4, 1fr);
  }
  .founders-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }
  .about-trinity-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 100px 20px 60px;
  }
  .about-hero-title { -webkit-text-stroke: 2px currentColor; }
  .about-section-heading { -webkit-text-stroke: 1.5px currentColor; }
  .about-story-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .panatta-values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .panatta-value {
    padding: 28px 24px;
  }
  .founder-info {
    padding: 24px;
  }
  .trinity-feature {
    flex-direction: column;
    gap: 4px;
  }
  .trinity-feature strong {
    min-width: auto;
  }
  .trinity-locations {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .about-timeline {
    padding-left: 32px;
  }
  .timeline-item::before {
    left: -28px;
  }
}

@media (max-width: 480px) {
  .about-hero-title {
    font-size: 36px;
    -webkit-text-stroke: 1.5px currentColor;
  }
  .about-section-heading { -webkit-text-stroke: 1px currentColor; }
  .founder-name {
    font-size: 22px;
  }
  .about-stat-number {
    font-size: 32px;
  }
  .about-stat {
    padding: 20px 16px;
  }
}
/* ═══════════════════════════════════════
   MOBILE ALIGNMENT FIX — 2026-06-30
   Fixes: hamburger position, mobile header,
   card spacing, padding, button stacking
   ═══════════════════════════════════════ */

/* ---- MOBILE HEADER BAR ---- */
.mobile-header {
  display: none;
}

@media (max-width: 768px) {
  /* Show mobile header with logo */
  .mobile-header {
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: rgba(5,5,5,.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    padding: 0 16px;
    border-bottom: 1px solid rgba(195,14,46,.15);
  }
  .mobile-header-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
  }

  /* Fix hamburger — top-right, NOT centered */
  .gooey-menu {
    right: 0;
    left: auto;
    transform: none;
    width: 320px;
    height: 280px;
  }
  .gooey-btn {
    width: 44px;
    height: 44px;
    top: 8px;
    right: 12px;
    left: auto;
    margin-left: 0;
  }
  .gooey-item {
    width: 44px;
    height: 44px;
    top: 8px;
    right: 12px;
    left: auto;
    margin-left: 0;
  }
  .gooey-item svg { width: 18px; height: 18px; }
  .gooey-bar { width: 18px; margin-left: -9px; }

  /* Fan out downward-left from top-right corner */
  .gooey-open:checked ~ .gooey-item:nth-child(3) {
    transform: translate3d(0px, 60px, 0);
  }
  .gooey-open:checked ~ .gooey-item:nth-child(4) {
    transform: translate3d(-50px, 48px, 0);
  }
  .gooey-open:checked ~ .gooey-item:nth-child(5) {
    transform: translate3d(-66px, 0px, 0);
  }
  .gooey-open:checked ~ .gooey-item:nth-child(6) {
    transform: translate3d(-50px, -48px, 0);
  }
  .gooey-open:checked ~ .gooey-item:nth-child(7) {
    transform: translate3d(0px, -60px, 0);
  }

  /* Push main content below mobile header */
  .hero-content {
    padding-top: 120px;
  }
  .page-category .section:first-of-type,
  .page-product-line .section:first-of-type,
  .page-product .section:first-of-type,
  .page-about .about-hero,
  .page-contact .section:first-of-type,
  .page-blog .section:first-of-type,
  .page-geo .section:first-of-type {
    padding-top: 80px;
  }
  .breadcrumbs {
    padding-top: 68px;
  }

  /* Section subtitle — full width on mobile */
  .section-subtitle {
    max-width: 100%;
  }

  /* Reduce section padding */
  .section {
    padding: 56px 16px;
  }

  /* Hero adjustments */
  .hero {
    min-height: 90vh;
  }
  .hero-content {
    padding: 120px 16px 48px;
  }
  .hero-logo {
    width: clamp(140px, 40vw, 220px);
    margin-bottom: 16px;
  }
  .hero p {
    font-size: 16px;
    margin-bottom: 32px;
  }
  .hero-cta {
    padding: 16px 28px;
    font-size: 14px;
    letter-spacing: .1em;
  }
  .hero-cta-secondary {
    padding: 14px 24px;
    font-size: 13px;
  }

  /* Category card mobile aspect ratio */
  .cat-card {
    aspect-ratio: 16/10;
  }
  .cat-card-content h3 {
    font-size: 22px;
  }

  /* Product card buttons — stack on mobile */
  .product-card-actions {
    flex-direction: column;
  }
  .product-card-actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Product detail — tighter spacing */
  .product-gallery {
    padding: 24px;
  }
  .product-detail-info h1 {
    font-size: 24px;
  }

  /* Cat intro text — full width with padding */
  .cat-intro {
    font-size: 15px !important;
    line-height: 1.7 !important;
    margin: 16px auto 32px !important;
  }

  /* Product grid card tweaks */
  .product-card-body {
    padding: 12px;
  }
  .product-card-img {
    height: 180px;
  }

  /* Trust bar spacing */
  .trust-item {
    padding: 20px 16px;
  }

  /* Form adjustments */
  .form-grid {
    gap: 16px;
  }

  /* Newsletter tighter */
  .newsletter-section {
    padding: 48px 16px;
  }
  .newsletter-heading {
    font-size: 28px;
  }
  .newsletter-submit {
    width: 100%;
    justify-content: center;
  }

  /* Footer tighter padding */
  .footer-main {
    padding: 40px 16px;
  }
  .footer-brand-col {
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-nav-col {
    text-align: center;
  }
  .footer-quote-btn {
    margin: 0 auto;
  }
  .footer-contact-col {
    text-align: center;
  }

  /* Breadcrumbs */
  .breadcrumbs-inner {
    font-size: 13px;
    padding: 12px 0;
  }

  /* Blog cards on homepage */
  .home-blog-card {
    padding: 20px;
  }

  /* Geo cards */
  .geo-card {
    padding: 20px;
  }

  /* About page tweaks */
  .about-hero {
    padding: 80px 16px 60px;
  }
  .founders-grid {
    gap: 32px;
  }
  .founder-info {
    padding: 20px;
  }

  /* Contact page */
  .contact-grid {
    gap: 32px;
  }
}

@media (max-width: 480px) {
  /* Even tighter on small phones */
  .section {
    padding: 40px 12px;
  }
  .hero-content {
    padding: 100px 12px 32px;
  }
  .hero-logo {
    width: clamp(120px, 35vw, 180px);
  }
  .hero h1 {
    font-size: 32px;
    margin-bottom: 16px;
  }
  .hero p {
    font-size: 15px;
    margin-bottom: 24px;
  }
  .hero-cta {
    padding: 14px 20px;
    font-size: 13px;
  }
  .hero-cta-secondary {
    padding: 12px 20px;
    font-size: 12px;
  }

  /* Category cards */
  .cat-card {
    aspect-ratio: 16/11;
  }
  .cat-card-content h3 {
    font-size: 20px;
  }
  .cat-card-content p {
    font-size: 13px;
  }

  /* Product card */
  .product-card-body {
    padding: 10px;
  }
  .product-card-img {
    height: 160px;
  }
  .product-card h3 {
    font-size: 14px;
  }
  .product-card-sku {
    font-size: 11px;
  }

  /* Newsletter */
  .newsletter-section {
    padding: 40px 12px;
  }
  .newsletter-heading {
    font-size: 24px;
  }

  /* Footer */
  .footer-main {
    padding: 32px 12px;
  }
  .footer-heritage {
    padding: 20px 12px;
  }
  .footer-legal {
    padding: 16px 12px;
  }
  .footer-partners {
    padding: 24px 12px;
  }

  /* About */
  .about-hero {
    padding: 72px 12px 48px;
    min-height: 360px;
  }
  .about-story-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .about-stat {
    padding: 16px 12px;
  }

  /* Section title */
  .section-title {
    font-size: clamp(22px, 5vw, 30px);
    margin-bottom: 16px;
  }

  /* Why card */
  .why-card {
    padding: 20px;
  }
  .why-card h3 {
    font-size: 1rem;
  }
  .why-card p {
    font-size: 14px;
  }

  /* Breadcrumbs even smaller */
  .breadcrumbs-inner {
    font-size: 12px;
  }
}
/* ═══════════════════════════════════════
   MOBILE ALIGNMENT FIX — 2026-06-30
   Fixes: hamburger position, mobile header,
   card spacing, padding, button stacking
   ═══════════════════════════════════════ */

/* ---- MOBILE HEADER BAR ---- */
.mobile-header {
  display: none;
}

@media (max-width: 768px) {
  /* Show mobile header with logo */
  .mobile-header {
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: rgba(5,5,5,.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    padding: 0 16px;
    border-bottom: 1px solid rgba(195,14,46,.15);
  }
  .mobile-header-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
  }

  /* Hamburger — keep centered, shrink slightly */
  .gooey-menu {
    top: 4px;
  }
  .gooey-btn {
    width: 44px;
    height: 44px;
  }
  .gooey-item {
    width: 44px;
    height: 44px;
  }
  .gooey-item svg { width: 18px; height: 18px; }
  .gooey-bar { width: 18px; margin-left: -9px; }

  /* Push main content below mobile header */
  .hero-content {
    padding-top: 120px;
  }
  .page-category .section:first-of-type,
  .page-product-line .section:first-of-type,
  .page-product .section:first-of-type,
  .page-about .about-hero,
  .page-contact .section:first-of-type,
  .page-blog .section:first-of-type,
  .page-geo .section:first-of-type {
    padding-top: 80px;
  }
  .breadcrumbs {
    padding-top: 68px;
  }

  /* Section subtitle — full width on mobile */
  .section-subtitle {
    max-width: 100%;
  }

  /* Reduce section padding */
  .section {
    padding: 56px 16px;
  }

  /* Hero adjustments */
  .hero {
    min-height: 90vh;
  }
  .hero-content {
    padding: 120px 16px 48px;
    overflow: hidden;
  }
  .hero h1 {
    font-size: clamp(32px, 8vw, 52px) !important;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .hero-logo {
    width: clamp(140px, 40vw, 220px);
    margin-bottom: 16px;
  }
  .hero p {
    font-size: 16px;
    margin-bottom: 32px;
  }
  .hero-cta {
    padding: 16px 28px;
    font-size: 14px;
    letter-spacing: .1em;
  }
  .hero-cta-secondary {
    padding: 14px 24px;
    font-size: 13px;
  }

  /* Category card mobile aspect ratio */
  .cat-card {
    aspect-ratio: 16/10;
  }
  .cat-card-content h3 {
    font-size: 22px;
  }

  /* Product card buttons — stack on mobile */
  .product-card-actions {
    flex-direction: column;
  }
  .product-card-actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Product detail — tighter spacing */
  .product-gallery {
    padding: 24px;
  }
  .product-detail-info h1 {
    font-size: 24px;
  }

  /* Cat intro text — full width with padding */
  .cat-intro {
    font-size: 15px !important;
    line-height: 1.7 !important;
    margin: 16px auto 32px !important;
  }

  /* Product grid card tweaks */
  .product-card-body {
    padding: 12px;
  }
  .product-card-img {
    height: 180px;
  }

  /* Trust bar spacing */
  .trust-item {
    padding: 20px 16px;
  }

  /* Form adjustments */
  .form-grid {
    gap: 16px;
  }

  /* Newsletter tighter */
  .newsletter-section {
    padding: 48px 16px;
  }
  .newsletter-heading {
    font-size: 28px;
  }
  .newsletter-submit {
    width: 100%;
    justify-content: center;
  }

  /* Footer tighter padding */
  .footer-main {
    padding: 40px 16px;
  }
  .footer-brand-col {
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
  .footer-heading::after {
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
  .footer-nav-col {
    text-align: center;
  }
  .footer-quote-btn {
    margin: 0 auto;
  }
  .footer-contact-col {
    text-align: center;
  }
  .footer-contact-col .footer-contact-item {
    justify-content: center;
  }
  .footer-contact-col a {
    justify-content: center;
  }
  .footer-legal-inner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .footer-heritage-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }
  .footer-heritage-line {
    display: none;
  }

  /* Breadcrumbs */
  .breadcrumbs-inner {
    font-size: 13px;
    padding: 12px 0;
  }

  /* Blog cards on homepage */
  .home-blog-card {
    padding: 20px;
  }

  /* Geo cards */
  .geo-card {
    padding: 20px;
  }

  /* About page tweaks */
  .about-hero {
    padding: 80px 16px 60px;
  }
  .founders-grid {
    gap: 32px;
  }
  .founder-info {
    padding: 20px;
  }

  /* Contact page */
  .contact-grid {
    gap: 32px;
  }

  /* Catalog page — push below mobile header + tighten */
  .page-catalog .catalog-section {
    padding-top: 0;
  }
  .page-catalog .breadcrumbs + .catalog-section {
    padding-top: 0;
  }
  .catalog-title {
    font-size: clamp(24px, 6vw, 36px) !important;
    margin-bottom: 4px;
  }
  .catalog-layout {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
  .catalog-sidebar {
    position: static !important;
  }
  .catalog-filter-toggle {
    display: flex !important;
  }
  .catalog-filters {
    display: none;
  }
  .catalog-filters.is-open {
    display: block;
    margin-bottom: 24px;
  }
  .catalog-search-bar {
    max-width: 100% !important;
  }
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  .catalog-card-img {
    height: 140px;
  }
  .catalog-card-name {
    font-size: 13px;
  }
  .catalog-card-sku {
    font-size: 10px;
  }
  .catalog-card-info {
    padding: 10px;
  }
  .catalog-pagination {
    flex-wrap: wrap;
    justify-content: center;
  }
  .page-btn {
    min-width: 36px;
    height: 36px;
    font-size: 13px;
  }
  .active-filter {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  /* Even tighter on small phones */
  .section {
    padding: 40px 12px;
  }
  .hero-content {
    padding: 100px 12px 32px;
  }
  .hero-logo {
    width: clamp(120px, 35vw, 180px);
  }
  .hero h1 {
    font-size: 28px !important;
    margin-bottom: 16px;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .hero p {
    font-size: 15px;
    margin-bottom: 24px;
  }
  .hero-cta {
    padding: 14px 20px;
    font-size: 13px;
  }
  .hero-cta-secondary {
    padding: 12px 20px;
    font-size: 12px;
  }

  /* Category cards */
  .cat-card {
    aspect-ratio: 16/11;
  }
  .cat-card-content h3 {
    font-size: 20px;
  }
  .cat-card-content p {
    font-size: 13px;
  }

  /* Product card */
  .product-card-body {
    padding: 10px;
  }
  .product-card-img {
    height: 160px;
  }
  .product-card h3 {
    font-size: 14px;
  }
  .product-card-sku {
    font-size: 11px;
  }

  /* Newsletter */
  .newsletter-section {
    padding: 40px 12px;
  }
  .newsletter-heading {
    font-size: 24px;
  }

  /* Footer */
  .footer-main {
    padding: 32px 12px;
  }
  .footer-heritage {
    padding: 20px 12px;
  }
  .footer-legal {
    padding: 16px 12px;
  }
  .footer-partners {
    padding: 24px 12px;
  }

  /* About */
  .about-hero {
    padding: 72px 12px 48px;
    min-height: 360px;
  }
  .about-story-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .about-stat {
    padding: 16px 12px;
  }

  /* Section title */
  .section-title {
    font-size: clamp(22px, 5vw, 30px);
    margin-bottom: 16px;
  }

  /* Why card */
  .why-card {
    padding: 20px;
  }
  .why-card h3 {
    font-size: 1rem;
  }
  .why-card p {
    font-size: 14px;
  }

  /* Breadcrumbs even smaller */
  .breadcrumbs-inner {
    font-size: 12px;
  }

  /* Catalog — single column on small phones */
  .catalog-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .catalog-card-img {
    height: 160px;
  }
  .catalog-title {
    font-size: 24px !important;
  }
}
