/* ==========================================================================
   Tip Top Tire Supply — Design System
   Brand: Confident industrial. Tire-rubber black, signal-orange accent,
   cool steel, sharp white. Built to feel alive without being noisy.
   ========================================================================== */

:root {
  /* Palette */
  --ink-950: #0b0d10;
  --ink-900: #11141a;
  --ink-800: #181c24;
  --ink-700: #232834;
  --ink-600: #2f3645;
  --ink-500: #4a525f;
  --ink-400: #6f7888;
  --ink-300: #98a0ad;
  --ink-200: #c8cdd6;
  --ink-100: #e6e9ef;
  --ink-50:  #f3f5f8;

  --paper:   #ffffff;
  --paper-1: #f7f8fa;
  --paper-2: #eef0f3;

  --accent:        #ff6b1a;   /* signal orange — tire shop safety */
  --accent-hot:    #ff7d35;
  --accent-deep:   #e25400;
  --accent-soft:   #fff1e6;

  --steel:         #2a3140;
  --steel-hot:     #3a4255;
  --cool:          #5b8def;
  --cool-soft:     #e7efff;

  --good:          #1aa260;
  --warn:          #e9a825;

  /* Type */
  --font-display: 'Bebas Neue', 'Oswald', 'Impact', 'Arial Narrow', system-ui, sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, 'SF Mono', Consolas, monospace;

  /* Layout */
  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(15,18,28,.06), 0 1px 3px rgba(15,18,28,.05);
  --shadow:    0 8px 24px -8px rgba(15,18,28,.18), 0 2px 6px rgba(15,18,28,.06);
  --shadow-lg: 0 30px 60px -20px rgba(15,18,28,.35), 0 8px 20px rgba(15,18,28,.12);

  --maxw: 1280px;
  --gutter: clamp(16px, 4vw, 40px);

  /* Motion */
  --ease: cubic-bezier(.2, .8, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-900);
  background: var(--paper-1);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }

/* Container */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(11,13,16,.92);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid rgba(255,255,255,.06);
  color: #fff;
}
.nav {
  display: flex; align-items: center; gap: 28px;
  padding: 14px 0;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 22px; letter-spacing: .04em;
  color: #fff;
}
.brand-mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: var(--accent);
  color: var(--ink-950);
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(255,107,26,.35), inset 0 -2px 0 rgba(0,0,0,.18);
  position: relative;
  overflow: hidden;
}
.brand-mark::after {
  content: ''; position: absolute; inset: 4px;
  border: 2px dashed rgba(11,13,16,.55);
  border-radius: 50%;
  animation: spin 18s linear infinite;
}
.brand small { display: block; font-family: var(--font-body); font-size: 10px; letter-spacing: .25em; opacity: .6; text-transform: uppercase; font-weight: 600; }

.nav-links { display: flex; gap: 6px; margin-left: auto; align-items: center; }
.nav-links a {
  padding: 8px 14px; border-radius: 999px;
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,.78);
  transition: color .2s, background .2s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,.06); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 999px;
  background: var(--accent); color: #fff;
  font-weight: 600; font-size: 14px;
  box-shadow: 0 6px 16px rgba(255,107,26,.32);
  transition: transform .2s var(--ease), box-shadow .2s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(255,107,26,.45); }

.cart-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #fff; font-size: 13px; font-weight: 500;
  transition: background .2s;
}
.cart-pill:hover { background: rgba(255,255,255,.14); }
.cart-count {
  display: inline-grid; place-items: center;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 700;
}

.menu-toggle { display: none; padding: 8px; border-radius: 8px; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: #fff; margin: 5px 0; transition: .25s; }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 920px) {
  .nav-links { position: fixed; inset: 64px 0 auto 0; flex-direction: column; padding: 20px var(--gutter) 32px;
               background: var(--ink-950); align-items: stretch; gap: 4px;
               transform: translateY(-110%); transition: transform .35s var(--ease); border-bottom: 1px solid rgba(255,255,255,.06); }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 14px 16px; font-size: 16px; }
  .menu-toggle { display: block; margin-left: auto; }
  .nav-cta-desktop { display: none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(1200px 600px at 20% -10%, rgba(255,107,26,.18), transparent 60%),
              radial-gradient(900px 500px at 90% 20%, rgba(91,141,239,.16), transparent 60%),
              linear-gradient(180deg, #0b0d10 0%, #11141a 100%);
  color: #fff;
  padding: 64px 0 120px;
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  line-height: .92;
  letter-spacing: -.01em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero h1 .accent { color: var(--accent); }
.hero h1 .outline {
  -webkit-text-stroke: 2px var(--accent);
  color: transparent;
}
.hero .lead { font-size: clamp(16px, 1.4vw, 19px); color: rgba(255,255,255,.78); max-width: 540px; margin-bottom: 32px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px; border-radius: 999px;
  font-weight: 600; font-size: 15px;
  transition: transform .2s var(--ease), box-shadow .2s, background .2s;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 10px 26px rgba(255,107,26,.4); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(255,107,26,.5); }
.btn-ghost { background: rgba(255,255,255,.06); color: #fff; border: 1px solid rgba(255,255,255,.12); }
.btn-ghost:hover { background: rgba(255,255,255,.12); }
.btn-dark { background: var(--ink-950); color: #fff; }
.btn-dark:hover { background: #000; }
.btn-outline { border: 1.5px solid var(--ink-900); color: var(--ink-900); }
.btn-outline:hover { background: var(--ink-900); color: #fff; }
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.hero-stats { display: flex; gap: 36px; margin-top: 48px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.08); }
.hero-stat .num { font-family: var(--font-display); font-size: 36px; color: var(--accent); }
.hero-stat .lbl { font-size: 12px; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.6); }

/* Hero tire art */
.hero-art { position: relative; aspect-ratio: 1 / 1; max-width: 560px; margin-left: auto; }
.tire {
  position: absolute; inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #1c1f29 0%, #1c1f29 22%, #0b0d10 23%, #0b0d10 32%, #1c1f29 33%, #1c1f29 100%);
  box-shadow:
    inset 0 0 0 8px #0b0d10,
    inset 0 0 0 18px #2a2e3a,
    inset 0 0 0 26px #0b0d10,
    0 50px 90px -30px rgba(0,0,0,.7);
  animation: spin 24s linear infinite;
}
.tire::before, .tire::after {
  content: ''; position: absolute; inset: 22%;
  border: 2px solid rgba(255,255,255,.04);
  border-radius: 50%;
}
.tire::after { inset: 32%; border-color: rgba(255,255,255,.06); }

.tire-hub {
  position: absolute; inset: 42%;
  background:
    conic-gradient(from 0deg, #ff6b1a, #ff7d35, #ff6b1a, #e25400, #ff6b1a);
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px #0b0d10, 0 0 40px rgba(255,107,26,.4);
}
.tire-hub::before {
  content: 'T3'; position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--font-display); color: #fff;
  font-size: 28px; letter-spacing: .05em;
}
.tire-lug {
  position: absolute; width: 18px; height: 18px;
  background: #0b0d10; border-radius: 50%;
  top: 50%; left: 50%;
  transform-origin: 0 0;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.08);
}
.tire-lug:nth-child(2) { transform: rotate(72deg) translate(36%, 0); }
.tire-lug:nth-child(3) { transform: rotate(144deg) translate(36%, 0); }
.tire-lug:nth-child(4) { transform: rotate(216deg) translate(36%, 0); }
.tire-lug:nth-child(5) { transform: rotate(288deg) translate(36%, 0); }

.float-card {
  position: absolute;
  background: rgba(255,255,255,.96); color: var(--ink-900);
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: var(--shadow-lg);
  font-size: 13px;
  font-weight: 500;
  backdrop-filter: blur(8px);
}
.float-card .lbl { font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: var(--ink-400); }
.float-card .val { font-family: var(--font-display); font-size: 22px; letter-spacing: .02em; color: var(--ink-950); }
.float-card.accent { background: var(--accent); color: #fff; }
.float-card.accent .lbl, .float-card.accent .val { color: #fff; }
.fc-1 { top: 6%; left: -2%; animation: float 6s ease-in-out infinite; }
.fc-2 { top: 38%; right: -4%; animation: float 6s ease-in-out infinite 1.5s; }
.fc-3 { bottom: 8%; left: 6%; animation: float 6s ease-in-out infinite 3s; }

@keyframes spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-art { margin: 0 auto; max-width: 380px; }
  .fc-1, .fc-2, .fc-3 { display: none; }
}

/* ==========================================================================
   Marquee
   ========================================================================== */
.marquee {
  background: var(--accent); color: #fff;
  padding: 14px 0; overflow: hidden;
  border-top: 4px solid var(--ink-950);
  border-bottom: 4px solid var(--ink-950);
}
.marquee-track {
  display: flex; gap: 48px;
  animation: marquee 35s linear infinite;
  white-space: nowrap;
  font-family: var(--font-display); font-size: 20px; letter-spacing: .04em;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 18px; }
.marquee-track .dot { width: 8px; height: 8px; background: #fff; border-radius: 50%; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ==========================================================================
   Section
   ========================================================================== */
.section { padding: clamp(60px, 8vw, 100px) 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 40px; flex-wrap: wrap; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--accent-deep); font-weight: 600;
  margin-bottom: 12px;
}
.section-eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--accent); }
.section-title { font-family: var(--font-display); font-size: clamp(36px, 5vw, 56px); line-height: 1; letter-spacing: .005em; text-transform: uppercase; color: var(--ink-950); }
.section-sub { color: var(--ink-500); max-width: 560px; font-size: 16px; }
.section-link { color: var(--ink-900); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; }
.section-link:hover { color: var(--accent-deep); }
.section-link:hover .arrow { transform: translateX(4px); }
.section-link .arrow { transition: transform .25s var(--ease); }

/* ==========================================================================
   Categories
   ========================================================================== */
.cat-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
@media (max-width: 1100px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .cat-grid { grid-template-columns: repeat(2, 1fr); } }

.cat-card {
  position: relative; overflow: hidden;
  background: #fff; border: 1px solid var(--paper-2);
  border-radius: var(--radius-lg);
  padding: 24px;
  min-height: 200px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: transform .35s var(--ease), box-shadow .35s, border-color .35s;
  cursor: pointer;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--accent); }
.cat-card .icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent-deep);
  transition: background .35s, color .35s;
}
.cat-card:hover .icon { background: var(--accent); color: #fff; }
.cat-card h3 { font-family: var(--font-display); font-size: 24px; letter-spacing: .01em; text-transform: uppercase; color: var(--ink-950); margin-top: 16px; }
.cat-card .meta { display: flex; align-items: center; justify-content: space-between; margin-top: 4px; font-size: 13px; color: var(--ink-500); }
.cat-card .arrow-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--ink-950); color: #fff;
  display: grid; place-items: center;
  transition: background .3s, transform .3s var(--ease);
  margin-top: 14px;
}
.cat-card:hover .arrow-btn { background: var(--accent); transform: rotate(-45deg); }
.cat-card.featured { grid-column: span 2; background: linear-gradient(135deg, var(--ink-950), #1c2030); color: #fff; border-color: transparent; }
.cat-card.featured h3 { color: #fff; }
.cat-card.featured .meta { color: rgba(255,255,255,.6); }
.cat-card.featured .icon { background: var(--accent); color: #fff; }
.cat-card.featured .arrow-btn { background: var(--accent); }
@media (max-width: 1100px) { .cat-card.featured { grid-column: span 2; } }
@media (max-width: 700px)  { .cat-card.featured { grid-column: span 2; } }

/* ==========================================================================
   Product Card
   ========================================================================== */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 1100px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px)  { .product-grid { grid-template-columns: repeat(2, 1fr); } }

.product-card {
  background: #fff; border: 1px solid var(--paper-2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
  display: flex; flex-direction: column;
  cursor: pointer;
  position: relative;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--ink-200); }
.product-card .img-wrap {
  aspect-ratio: 1 / 1; background: var(--paper-1);
  display: grid; place-items: center;
  position: relative; overflow: hidden;
}
.product-card .img-wrap img {
  width: 100%; height: 100%; object-fit: contain;
  transition: transform .5s var(--ease);
  padding: 14px;
}
.product-card:hover .img-wrap img { transform: scale(1.06); }
.product-card .badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--ink-950); color: #fff;
  padding: 4px 10px; border-radius: 999px;
  font-size: 10px; letter-spacing: .15em; text-transform: uppercase; font-weight: 700;
}
.product-card .badge.sale { background: var(--accent); }
.product-card .body { padding: 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-card .brand { font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--ink-400); font-weight: 600; }
.product-card h4 { font-size: 14px; font-weight: 600; line-height: 1.35; color: var(--ink-900); min-height: 38px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-card .price-row { display: flex; align-items: baseline; gap: 8px; margin-top: auto; }
.product-card .price { font-family: var(--font-display); font-size: 22px; color: var(--ink-950); letter-spacing: .01em; }
.product-card .compare { font-size: 13px; color: var(--ink-400); text-decoration: line-through; }
.product-card .quick-add {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px; border-radius: 50%;
  background: #fff; color: var(--ink-950);
  display: grid; place-items: center;
  box-shadow: var(--shadow);
  opacity: 0; transform: translateY(-4px);
  transition: opacity .25s, transform .25s, background .2s;
}
.product-card:hover .quick-add { opacity: 1; transform: translateY(0); }
.product-card .quick-add:hover { background: var(--accent); color: #fff; }

/* ==========================================================================
   Filters Bar
   ========================================================================== */
.filters {
  display: flex; flex-wrap: wrap; gap: 10px;
  padding: 18px 0; margin-bottom: 24px;
  border-bottom: 1px solid var(--paper-2);
  align-items: center;
}
.chip {
  padding: 8px 16px; border-radius: 999px;
  background: #fff; border: 1px solid var(--paper-2);
  font-size: 13px; font-weight: 500; color: var(--ink-700);
  cursor: pointer;
  transition: all .2s;
}
.chip:hover { border-color: var(--ink-300); color: var(--ink-950); }
.chip.active { background: var(--ink-950); color: #fff; border-color: var(--ink-950); }
.chip.accent { border-color: var(--accent); color: var(--accent-deep); }
.chip.accent.active { background: var(--accent); color: #fff; border-color: var(--accent); }
.search {
  margin-left: auto;
  display: flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border-radius: 999px; background: #fff; border: 1px solid var(--paper-2);
  min-width: 240px;
}
.search input { border: 0; outline: 0; background: transparent; flex: 1; font-size: 14px; }
.search svg { color: var(--ink-400); flex-shrink: 0; }
.sort {
  padding: 8px 14px; border-radius: 999px; background: #fff;
  border: 1px solid var(--paper-2);
  font-size: 13px; font-weight: 500; color: var(--ink-700);
  cursor: pointer;
}

/* ==========================================================================
   Why-us
   ========================================================================== */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
.why-card {
  background: #fff; padding: 28px; border-radius: var(--radius-lg);
  border: 1px solid var(--paper-2);
  transition: transform .3s var(--ease), border-color .3s;
}
.why-card:hover { transform: translateY(-3px); border-color: var(--accent); }
.why-card .icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--ink-950); color: var(--accent);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.why-card h3 { font-family: var(--font-display); font-size: 22px; letter-spacing: .02em; text-transform: uppercase; margin-bottom: 8px; color: var(--ink-950); }
.why-card p { color: var(--ink-500); font-size: 14px; line-height: 1.55; }

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--ink-950), var(--steel));
  color: #fff; border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 72px);
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,26,.35), transparent 70%);
}
.cta-banner h2 { font-family: var(--font-display); font-size: clamp(32px, 4vw, 56px); line-height: 1; text-transform: uppercase; margin-bottom: 16px; position: relative; }
.cta-banner h2 span { color: var(--accent); }
.cta-banner p { color: rgba(255,255,255,.7); margin-bottom: 28px; max-width: 500px; position: relative; }
.cta-banner .ctas { display: flex; gap: 14px; flex-wrap: wrap; position: relative; }
.cta-banner .ctas .btn-ghost { color: #fff; }
@media (max-width: 800px) { .cta-banner { grid-template-columns: 1fr; padding: 36px; } }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--ink-950); color: #fff; padding: 64px 0 32px; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 48px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { font-family: var(--font-display); font-size: 18px; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 16px; color: #fff; }
.footer-grid ul { list-style: none; display: grid; gap: 8px; }
.footer-grid a { color: rgba(255,255,255,.65); font-size: 14px; transition: color .2s; }
.footer-grid a:hover { color: var(--accent); }
.footer-grid p { color: rgba(255,255,255,.65); font-size: 14px; line-height: 1.65; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; color: rgba(255,255,255,.5); }
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand .brand-mark { width: 44px; height: 44px; border-radius: 12px; }
.footer-brand h3 { font-family: var(--font-display); font-size: 24px; letter-spacing: .04em; }

/* ==========================================================================
   Toast
   ========================================================================== */
.toast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(120%);
  background: var(--ink-950); color: #fff;
  padding: 14px 22px; border-radius: 999px;
  font-size: 14px; font-weight: 500;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 10px;
  z-index: 100; opacity: 0;
  transition: transform .4s var(--ease), opacity .3s;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.toast .check { width: 22px; height: 22px; border-radius: 50%; background: var(--accent); display: grid; place-items: center; }

/* ==========================================================================
   Page: PDP
   ========================================================================== */
.pdp { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; padding-top: 40px; }
@media (max-width: 900px) { .pdp { grid-template-columns: 1fr; gap: 32px; } }
.pdp-img { aspect-ratio: 1 / 1; background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--paper-2); display: grid; place-items: center; overflow: hidden; padding: 40px; }
.pdp-img img { max-width: 90%; max-height: 90%; object-fit: contain; }
.pdp-body h1 { font-family: var(--font-display); font-size: clamp(28px, 3vw, 44px); line-height: 1.05; text-transform: uppercase; letter-spacing: .005em; color: var(--ink-950); margin-bottom: 8px; }
.pdp-meta { display: flex; gap: 16px; color: var(--ink-500); font-size: 13px; margin-bottom: 18px; }
.pdp-meta .sep { color: var(--ink-300); }
.pdp-price-row { display: flex; align-items: baseline; gap: 12px; margin: 24px 0; padding: 20px 0; border-top: 1px solid var(--paper-2); border-bottom: 1px solid var(--paper-2); }
.pdp-price { font-family: var(--font-display); font-size: 56px; color: var(--ink-950); letter-spacing: .005em; }
.pdp-compare { font-size: 18px; color: var(--ink-400); text-decoration: line-through; }
.pdp-save { background: var(--accent); color: #fff; padding: 4px 12px; border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: .05em; }
.pdp-desc { color: var(--ink-700); line-height: 1.7; margin-bottom: 28px; }
.pdp-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-bottom: 36px; }
.qty {
  display: flex; align-items: center; gap: 4px;
  border: 1.5px solid var(--paper-2); border-radius: 999px;
  padding: 4px;
}
.qty button { width: 38px; height: 38px; border-radius: 50%; font-size: 18px; font-weight: 600; color: var(--ink-700); }
.qty button:hover { background: var(--paper-1); }
.qty input { width: 50px; text-align: center; border: 0; outline: 0; font-weight: 600; font-size: 16px; background: transparent; }
.pdp-features { display: grid; gap: 10px; padding: 24px; background: var(--paper-1); border-radius: var(--radius); }
.pdp-features .row { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--ink-700); }
.pdp-features .row svg { color: var(--accent); flex-shrink: 0; }
.breadcrumb { padding: 24px 0; font-size: 13px; color: var(--ink-500); }
.breadcrumb a { color: var(--ink-700); }
.breadcrumb a:hover { color: var(--accent); }

/* ==========================================================================
   Page: Cart
   ========================================================================== */
.cart-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 48px; padding: 40px 0; }
@media (max-width: 900px) { .cart-layout { grid-template-columns: 1fr; } }
.cart-items { background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--paper-2); overflow: hidden; }
.cart-row { display: grid; grid-template-columns: 90px 1fr auto auto; gap: 20px; padding: 20px; align-items: center; border-bottom: 1px solid var(--paper-2); }
.cart-row:last-child { border-bottom: 0; }
.cart-row .img { width: 90px; height: 90px; border-radius: 12px; background: var(--paper-1); display: grid; place-items: center; padding: 8px; }
.cart-row .img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.cart-row .info h4 { font-size: 14px; font-weight: 600; line-height: 1.3; color: var(--ink-950); margin-bottom: 4px; }
.cart-row .info .meta { font-size: 12px; color: var(--ink-500); }
.cart-row .price { font-family: var(--font-display); font-size: 22px; color: var(--ink-950); }
.cart-row .remove { color: var(--ink-400); padding: 8px; border-radius: 8px; transition: .2s; }
.cart-row .remove:hover { color: var(--accent); background: var(--accent-soft); }
.cart-empty { padding: 80px 20px; text-align: center; color: var(--ink-500); }
.cart-empty svg { color: var(--ink-300); margin-bottom: 16px; }
.cart-empty h3 { font-family: var(--font-display); font-size: 28px; color: var(--ink-900); margin-bottom: 8px; text-transform: uppercase; }

.summary { background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--paper-2); padding: 28px; position: sticky; top: 88px; }
.summary h3 { font-family: var(--font-display); font-size: 24px; text-transform: uppercase; margin-bottom: 20px; color: var(--ink-950); }
.summary .line { display: flex; justify-content: space-between; padding: 10px 0; font-size: 14px; }
.summary .line.total { border-top: 1px solid var(--paper-2); padding-top: 16px; margin-top: 12px; font-size: 18px; font-weight: 700; color: var(--ink-950); }
.summary .line .val { font-weight: 600; }
.summary .line.total .val { font-family: var(--font-display); font-size: 28px; }
.summary .btn { width: 100%; justify-content: center; margin-top: 12px; }
.summary .note { font-size: 12px; color: var(--ink-400); margin-top: 14px; text-align: center; }

/* ==========================================================================
   Page: Checkout
   ========================================================================== */
.checkout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; padding: 40px 0; }
@media (max-width: 900px) { .checkout { grid-template-columns: 1fr; } }
.form-section { background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--paper-2); padding: 32px; }
.form-section h3 { font-family: var(--font-display); font-size: 22px; text-transform: uppercase; margin-bottom: 18px; color: var(--ink-950); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-row.full { grid-template-columns: 1fr; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--ink-700); margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--paper-2);
  border-radius: 10px; background: #fff;
  font-size: 14px;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 0; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,107,26,.15);
}
.field textarea { resize: vertical; min-height: 100px; }
.field-hint { font-size: 12px; color: var(--ink-400); margin-top: 4px; }
.delivery-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 14px; }
.delivery-toggle label { display: block; padding: 14px 16px; border: 1.5px solid var(--paper-2); border-radius: 12px; cursor: pointer; transition: .2s; }
.delivery-toggle input { display: none; }
.delivery-toggle input:checked + span { color: var(--accent-deep); }
.delivery-toggle label:has(input:checked) { border-color: var(--accent); background: var(--accent-soft); }
.delivery-toggle .opt-name { display: block; font-weight: 700; font-size: 14px; margin-bottom: 2px; }
.delivery-toggle .opt-desc { display: block; font-size: 12px; color: var(--ink-500); }

/* ==========================================================================
   Page: Wholesale / About / Contact
   ========================================================================== */
.hero-mini {
  background: linear-gradient(135deg, var(--ink-950), var(--steel));
  color: #fff; padding: 72px 0 56px; position: relative; overflow: hidden;
}
.hero-mini::after {
  content: ''; position: absolute; top: 50%; right: -50px; width: 200px; height: 200px;
  border-radius: 50%; background: var(--accent); opacity: .15; transform: translateY(-50%);
}
.hero-mini h1 { font-family: var(--font-display); font-size: clamp(40px, 6vw, 72px); line-height: 1; text-transform: uppercase; }
.hero-mini p { color: rgba(255,255,255,.7); max-width: 580px; margin-top: 12px; }
.crumbs { padding: 16px 0; font-size: 13px; color: var(--ink-500); }
.crumbs a { color: var(--ink-700); }
.crumbs a:hover { color: var(--accent); }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding: 60px 0; align-items: center; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }
.about-grid h2 { font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px); line-height: 1; text-transform: uppercase; color: var(--ink-950); margin-bottom: 20px; }
.about-grid h2 span { color: var(--accent); }
.about-grid p { color: var(--ink-700); line-height: 1.75; margin-bottom: 14px; }
.about-art { aspect-ratio: 4/3; border-radius: var(--radius-xl); background: linear-gradient(135deg, var(--ink-950), var(--steel)); position: relative; overflow: hidden; }
.about-art .tire-static { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 80%; max-width: 360px; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding: 60px 0; }
@media (max-width: 800px) { .values-grid { grid-template-columns: 1fr; } }
.value-card { background: #fff; padding: 32px; border-radius: var(--radius-lg); border: 1px solid var(--paper-2); }
.value-card .num { font-family: var(--font-display); font-size: 56px; color: var(--accent); line-height: 1; margin-bottom: 12px; }
.value-card h3 { font-family: var(--font-display); font-size: 22px; text-transform: uppercase; color: var(--ink-950); margin-bottom: 8px; }

.team-card { display: flex; align-items: center; gap: 24px; padding: 28px; background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--paper-2); margin-top: 24px; }
.team-card .avatar { width: 84px; height: 84px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent-deep)); display: grid; place-items: center; color: #fff; font-family: var(--font-display); font-size: 32px; flex-shrink: 0; }
.team-card h4 { font-family: var(--font-display); font-size: 22px; text-transform: uppercase; }
.team-card .role { color: var(--ink-500); font-size: 13px; letter-spacing: .1em; text-transform: uppercase; margin: 4px 0 12px; }
.team-card p { color: var(--ink-700); font-size: 14px; }

/* Wholesale perks */
.perk-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .perk-grid { grid-template-columns: 1fr; } }
.perk { background: #fff; padding: 28px; border-radius: var(--radius-lg); border: 1px solid var(--paper-2); transition: .3s; }
.perk:hover { border-color: var(--accent); transform: translateY(-3px); }
.perk .icon { width: 52px; height: 52px; border-radius: 14px; background: var(--accent-soft); color: var(--accent-deep); display: grid; place-items: center; margin-bottom: 16px; }
.perk h3 { font-family: var(--font-display); font-size: 22px; text-transform: uppercase; margin-bottom: 6px; color: var(--ink-950); }
.perk p { color: var(--ink-500); font-size: 14px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; padding: 40px 0; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { background: var(--ink-950); color: #fff; border-radius: var(--radius-lg); padding: 36px; }
.contact-info h3 { font-family: var(--font-display); font-size: 24px; text-transform: uppercase; margin-bottom: 24px; }
.contact-info .item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.contact-info .item:last-child { border-bottom: 0; }
.contact-info .item .icon { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,107,26,.15); color: var(--accent); display: grid; place-items: center; flex-shrink: 0; }
.contact-info .item .lbl { font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 4px; }
.contact-info .item .val { font-size: 15px; color: #fff; }
.contact-info .item a:hover { color: var(--accent); }
.map { aspect-ratio: 16/10; border-radius: var(--radius-lg); overflow: hidden; background: var(--paper-2); border: 1px solid var(--paper-2); }
.map iframe { width: 100%; height: 100%; border: 0; }

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }

/* Video strip — Shop in action */
.video-strip {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 18px;
  margin-top: 8px;
}
@media (max-width: 900px) {
  .video-strip { grid-template-columns: 1fr 1fr; }
  .vid-card-1 { grid-column: span 2; }
}
@media (max-width: 600px) {
  .video-strip { grid-template-columns: 1fr; }
  .vid-card-1 { grid-column: span 1; }
}
.vid-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--ink-900);
  box-shadow: var(--shadow);
}
.vid-card-1 { aspect-ratio: 16 / 11; }
.vid-card video {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.85) contrast(1.05);
}
.vid-card .vid-label {
  position: absolute; left: 18px; bottom: 16px;
  background: rgba(11,13,16,.78);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px; letter-spacing: .15em; text-transform: uppercase; font-weight: 600;
  backdrop-filter: blur(8px);
}

/* ==========================================================================
   Video elements
   ========================================================================== */
.hero-video-bg {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-video-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(11,13,16,.92) 0%, rgba(11,13,16,.5) 50%, rgba(11,13,16,.7) 100%);
}
.hero-video-bg video {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.7) contrast(1.05);
  opacity: .7;
}

.hero > .wrap { position: relative; z-index: 2; }

/* Category card with video background */
.cat-card { position: relative; overflow: hidden; }
.cat-card .cat-video {
  position: absolute; inset: 0; z-index: 0;
  opacity: 0; transition: opacity .5s var(--ease);
  pointer-events: none;
}
.cat-card .cat-video video {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.6) brightness(.55);
}
.cat-card:hover .cat-video { opacity: 1; }
.cat-card:hover { background: var(--ink-900); border-color: var(--accent); }
.cat-card:hover h3, .cat-card:hover .meta { color: #fff; }
.cat-card:hover .meta span { color: rgba(255,255,255,.6) !important; }
.cat-card > * { position: relative; z-index: 1; }
.cat-card.featured .cat-video { display: none; } /* keep the dark hero for the featured card */
.flex { display: flex; }
.gap-12 { gap: 12px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.center { text-align: center; }
