/** Shopify CDN: Minification failed

Line 973:14 Expected identifier but found whitespace
Line 973:15 Unexpected "var("

**/
/* ============================================
   PIMPMYEMOTO — THEME CSS v2.1
   Monochrome Edition
   ============================================ */

:root {
  --black: #0a0a0a;
  --white: #f0eeea;
  --off-white: #c8c6c2;
  --accent: #e8e6e2;          /* was orange — now bright white/cream */
  --accent-dim: #aaa8a4;
  --titanium: #8a9ba8;
  --titanium-light: #b8c8d4;
  --titanium-dark: #4a5a64;
  --grey: #141414;
  --grey-mid: #1e1e1e;
  --grey-light: #333;
  --font-display: 'Bebas Neue', sans-serif;
  --font-cond: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

/* ============================================
   IMAGES — FULL COLOUR
   ============================================ */
.hero__bg-img,
.cat-card__bg,
.potw__image-frame img,
.fp-card__img,
.product-img,
.collection-img {
  transition: transform 0.5s ease;
}

.cat-card:hover .cat-card__bg { transform: scale(1.06); }
.potw__image-frame:hover img { transform: scale(1.04); }
.fp-card:hover .fp-card__img { transform: scale(1.06); }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  background: rgba(10,10,10,0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.3s;
}

.site-header__logo img { height: 44px; width: auto; }

.site-header__logo-text {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.06em;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
}

.site-header__nav {
  display: flex;
  gap: 40px;
  list-style: none;
}

.site-header__nav a {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--off-white);
  opacity: 0.65;
  transition: opacity 0.2s, color 0.2s;
}

.site-header__nav a:hover { opacity: 1; color: var(--white); }

.site-header__cart a {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--white);
  color: var(--black);
  padding: 9px 22px;
  display: inline-block;
  transition: background 0.2s, color 0.2s;
}

.site-header__cart a:hover {
  background: var(--off-white);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  background: var(--black);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 60%, rgba(255,255,255,0.04) 0%, transparent 60%);
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.22;
}

.hero__grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.hero__bg {
  pointer-events: none;
}

.hero__bg-img {
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 64px;
  max-width: 960px;
}

.hero__logo-mark {
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero__logo-mark img {
  height: 56px;
  width: auto;
}

.hero__logo-text {
  font-family: var(--font-display);
  font-size: 42px;
  letter-spacing: 0.06em;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
  display: block;
}

.hero__eyebrow {
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--off-white);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(86px, 13vw, 190px);
  line-height: 0.88;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero__title span {
  color: var(--accent);
  -webkit-text-stroke: 2px var(--accent);
  color: transparent;
}

.hero__sub {
  font-family: var(--font-cond);
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(240,238,234,0.5);
  margin-top: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero__cta {
  display: flex;
  gap: 16px;
  margin-top: 48px;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 36px;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.btn--primary {
  background: var(--white);
  color: var(--black);
}

.btn--primary:hover {
  background: var(--off-white);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(240,238,234,0.3);
}

.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}

.btn--titanium {
  background: transparent;
  color: var(--titanium-light);
  border: 1.5px solid var(--titanium-light);
  white-space: nowrap;
}

.btn--titanium:hover {
  background: var(--titanium-light);
  color: var(--black);
  transform: translateY(-2px);
}

/* ============================================
   HERO SCROLL INDICATOR
   ============================================ */
.hero__scroll-indicator {
  position: absolute;
  bottom: 44px;
  left: 64px;
  font-family: var(--font-cond);
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero__scroll-indicator::before {
  content: '';
  display: block;
  width: 1px;
  height: 52px;
  background: rgba(255,255,255,0.25);
  animation: scrollLine 1.8s ease-in-out infinite;
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee-bar {
  background: var(--grey-mid);
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marquee 22s linear infinite;
}

.marquee-track span {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(240,238,234,0.45);
  padding: 0 36px;
}

.marquee-track span::before {
  content: '✦';
  margin-right: 36px;
  opacity: 0.4;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.section-eyebrow {
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--off-white);
  opacity: 0.5;
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--white);
}

.section-link {
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--off-white);
  border-bottom: 1px solid rgba(240,238,234,0.3);
  padding-bottom: 2px;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}

.section-link:hover {
  color: var(--white);
  border-color: var(--white);
}

/* ============================================
   PRODUCT OF THE WEEK
   ============================================ */
.potw {
  padding: 110px 64px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.potw::before {
  content: 'WEEK';
  position: absolute;
  top: 30px;
  right: -10px;
  font-family: var(--font-display);
  font-size: 240px;
  color: rgba(255,255,255,0.018);
  pointer-events: none;
  line-height: 1;
}

.potw__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.potw__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-cond);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 8px 18px;
  margin-bottom: 28px;
}

.potw__badge::before { content: '★'; font-size: 9px; }

.potw__image-wrap { position: relative; }

.potw__image-frame {
  position: relative;
  background: var(--grey-mid);
  aspect-ratio: 4/3;
  overflow: hidden;
}

.potw__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
  transition: transform 0.6s ease;
}

.potw__image-frame:hover img { transform: scale(1.04); }

.potw__corner {
  position: absolute;
  width: 28px; height: 28px;
  border-color: var(--white);
  border-style: solid;
}

.potw__corner--tl { top: -7px; left: -7px; border-width: 2px 0 0 2px; }
.potw__corner--tr { top: -7px; right: -7px; border-width: 2px 2px 0 0; }
.potw__corner--bl { bottom: -7px; left: -7px; border-width: 0 0 2px 2px; }
.potw__corner--br { bottom: -7px; right: -7px; border-width: 0 2px 2px 0; }

.potw__name {
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 84px);
  line-height: 0.93;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 22px;
}

.potw__name em {
  font-style: normal;
  -webkit-text-stroke: 1.5px var(--white);
  color: transparent;
}

.potw__desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(240,238,234,0.58);
  margin-bottom: 36px;
  max-width: 480px;
}

.potw__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 40px;
}

.potw__spec {
  background: var(--grey-mid);
  padding: 14px 18px;
  border-left: 2px solid rgba(255,255,255,0.2);
}

.potw__spec-label {
  font-family: var(--font-cond);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 5px;
}

.potw__spec-value {
  font-family: var(--font-cond);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}

.potw__price {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 30px;
}

.potw__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================
   CATEGORY CARDS
   ============================================ */
.categories {
  padding: 110px 64px;
  background: var(--grey);
}

.categories__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin-top: 60px;
}

.cat-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--grey-mid);
  cursor: pointer;
}

.cat-card__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.cat-card:hover .cat-card__bg { transform: scale(1.06); }

.cat-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.1) 60%, transparent 100%);
  pointer-events: none;
}

.cat-card__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 44px;
}

.cat-card__tag {
  font-family: var(--font-cond);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--off-white);
  opacity: 0.5;
  margin-bottom: 10px;
}

.cat-card__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}

.cat-card__desc {
  font-size: 13px;
  color: rgba(240,238,234,0.58);
  line-height: 1.55;
  margin-bottom: 22px;
}

.cat-card__link {
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.35);
  padding-bottom: 3px;
  transition: gap 0.2s, border-color 0.2s;
}

.cat-card__link:hover { gap: 18px; border-color: var(--white); }

/* ============================================
   FEATURED PRODUCTS
   ============================================ */
.featured-products {
  padding: 110px 64px;
  background: var(--grey);
}

.fp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 3px;
  margin-top: 48px;
}

.fp-card { background: var(--black); }

.fp-card__image-wrap {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--grey-mid);
}

.fp-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.fp-card__img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grey-mid);
  font-family: var(--font-display);
  font-size: 48px;
  color: rgba(255,255,255,0.08);
}

.fp-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.fp-card:hover .fp-card__overlay { opacity: 1; }

.fp-card__quick {
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
  padding: 12px 28px;
}

.fp-card__info {
  padding: 18px 0 22px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.fp-card__name {
  font-family: var(--font-cond);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  flex: 1;
}

.fp-card__price {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  white-space: nowrap;
}

.fp-card__price--was {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  text-decoration: line-through;
  margin-left: 6px;
}

/* ============================================
   TITANIUM SECTION
   ============================================ */
.titanium {
  padding: 130px 64px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.titanium__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(120px, 18vw, 280px);
  color: rgba(138,155,168,0.035);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.titanium__inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}

.titanium__header { margin-bottom: 72px; }

.titanium__eyebrow {
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--titanium-light);
  opacity: 0.6;
  margin-bottom: 16px;
}

.titanium__title {
  font-family: var(--font-display);
  font-size: clamp(60px, 9vw, 120px);
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--white);
}

.titanium__title span { color: var(--titanium-light); display: block; }

.titanium__subtitle {
  font-size: 16px;
  color: rgba(240,238,234,0.48);
  line-height: 1.7;
  max-width: 540px;
  margin-top: 24px;
}

/* Two-kit grid */
.titanium__grid--two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin-bottom: 3px;
}

.ti-card--kit {
  background: var(--grey);
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: background 0.3s;
}

.ti-card--kit::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--titanium-dark), var(--titanium-light), var(--titanium-dark));
  transform: scaleX(0);
  transition: transform 0.45s ease;
  transform-origin: left;
}

.ti-card--kit:hover::before { transform: scaleX(1); }
.ti-card--kit:hover { background: var(--grey-mid); }

.ti-card__number {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 1;
  color: rgba(138,155,168,0.1);
  position: absolute;
  top: 20px;
  right: 28px;
  pointer-events: none;
}

.ti-card__bike-label {
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--titanium-light);
  margin-bottom: 14px;
}

.ti-card__name {
  font-family: var(--font-display);
  font-size: clamp(36px, 3.5vw, 52px);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}

.ti-card__desc {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(240,238,234,0.5);
  margin-bottom: 28px;
  flex: 1;
}

.ti-card__includes {
  list-style: none;
  margin-bottom: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.ti-card__includes li {
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(240,238,234,0.6);
  padding-left: 16px;
  position: relative;
}

.ti-card__includes li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--titanium-light);
  font-size: 10px;
}

.ti-card__image-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-bottom: 28px;
  background: var(--grey-mid);
}

.ti-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.ti-card--kit:hover .ti-card__image-wrap img {
  transform: scale(1.03);
}

.ti-card__footer { margin-top: auto; }

.ti-card__spec-row {
  display: flex;
  gap: 28px;
  margin-bottom: 24px;
}

.ti-card__spec-item {
  font-family: var(--font-cond);
  font-size: 14px;
  font-weight: 600;
  color: var(--titanium-light);
}

.ti-spec-label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(184,200,212,0.5);
  margin-right: 6px;
}

.ti-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
}

.ti-price--sale {
  font-family: var(--font-display);
  font-size: 38px;
  color: var(--white);
  line-height: 1;
}

.ti-price--was {
  font-family: var(--font-cond);
  font-size: 16px;
  color: rgba(255,255,255,0.3);
  text-decoration: line-through;
}

.potw__price--sale {
  display: block;
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--white);
  line-height: 1;
}

.potw__price--was {
  font-family: var(--font-cond);
  font-size: 20px;
  color: rgba(255,255,255,0.3);
  text-decoration: line-through;
  margin-top: 4px;
  display: block;
}
  font-family: var(--font-cond);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--titanium-light);
  border-bottom: 1px solid rgba(184,200,212,0.35);
  padding-bottom: 3px;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s;
}

.ti-card__cta:hover {
  color: var(--white);
  border-color: var(--white);
}

/* Stats strip */
.titanium__feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(138,155,168,0.12);
  margin-bottom: 72px;
}

.ti-stat {
  padding: 40px;
  border-right: 1px solid rgba(138,155,168,0.12);
  text-align: center;
}

.ti-stat:last-child { border-right: none; }

.ti-stat__value {
  font-family: var(--font-display);
  font-size: 52px;
  color: var(--titanium-light);
  line-height: 1;
  margin-bottom: 8px;
}

.ti-stat__label {
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240,238,234,0.35);
}

.titanium__cta {
  display: flex;
  align-items: center;
  gap: 48px;
}

.ti-cta-text {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 52px);
  color: var(--white);
  line-height: 1;
}

.ti-cta-text span { color: var(--titanium-light); }

/* ============================================
   ETHOS / ABOUT
   ============================================ */
.ethos {
  padding: 130px 64px;
  background: var(--grey);
}

.ethos__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.ethos__quote {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
  border-left: 2px solid rgba(255,255,255,0.25);
  padding-left: 40px;
}

.ethos__quote span {
  -webkit-text-stroke: 1.5px var(--white);
  color: transparent;
}

.ethos__body {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(240,238,234,0.58);
}

.ethos__body p + p { margin-top: 20px; }
.ethos__body .btn { margin-top: 32px; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 88px 64px 44px;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
}

.footer-col__logo img { height: 38px; margin-bottom: 20px; }

.footer-col__tagline {
  font-family: var(--font-cond);
  font-size: 14px;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  margin-bottom: 28px;
}

.footer-col__title {
  font-family: var(--font-cond);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }
.footer-col ul li + li { margin-top: 10px; }
.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--white); }

.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-family: var(--font-cond);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.2);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.25; transform: scaleY(1); }
  50% { opacity: 0.6; transform: scaleY(0.55); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .potw__inner, .ethos__inner { grid-template-columns: 1fr; gap: 64px; }
  .titanium__grid--two { grid-template-columns: 1fr; }
  .titanium__feature-strip { grid-template-columns: 1fr 1fr; }
  .ti-stat:nth-child(2) { border-right: none; }
  .ti-stat:nth-child(3) { border-top: 1px solid rgba(138,155,168,0.12); border-right: 1px solid rgba(138,155,168,0.12); }
  .ti-stat:nth-child(4) { border-top: 1px solid rgba(138,155,168,0.12); }
  .titanium__cta { flex-direction: column; align-items: flex-start; gap: 24px; }
  .site-footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .site-header { padding: 0 20px; }
  .site-header__nav { display: none; }
  .hero__content { padding: 0 24px; }
  .hero__scroll-indicator { left: 24px; }
  .hero__cta { flex-direction: column; }
  .potw, .categories, .featured-products, .titanium, .ethos { padding: 72px 24px; }
  .categories__grid { grid-template-columns: 1fr; }
  .fp-grid { grid-template-columns: 1fr 1fr; }
  .site-footer { padding: 64px 24px 32px; }
  .site-footer__top { grid-template-columns: 1fr; gap: 40px; }
  .site-footer__bottom { flex-direction: column; gap: 14px; text-align: center; }
}

/* ============================================
   COLLECTION PAGE
   ============================================ */
.collection-page {
  padding: 120px 64px 100px;
  max-width: 1400px;
  margin: 0 auto;
}

.collection-header {
  margin-bottom: 64px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.collection-desc {
  font-size: 15px;
  color: rgba(240,238,234,0.55);
  line-height: 1.7;
  max-width: 600px;
  margin-top: 16px;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 3px;
}

.collection-empty {
  color: rgba(255,255,255,0.35);
  font-family: var(--font-cond);
  letter-spacing: 0.1em;
  grid-column: 1/-1;
  padding: 60px 0;
}

/* ============================================
   PRODUCT PAGE
   ============================================ */
.product-page {
  padding: 120px 64px 100px;
  max-width: 1400px;
  margin: 0 auto;
}

.product-page__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.product-page__main-img {
  background: var(--grey-mid);
  overflow: hidden;
}

.product-page__main-img img {
  width: 100%;
  height: auto;
  display: block;
}

.product-page__thumbs {
  display: flex;
  gap: 6px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.product-thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
  cursor: pointer;
  transition: opacity 0.2s;
  flex-shrink: 0;
  opacity: 0.7;
}

.product-thumb:hover, .product-thumb.active {
  opacity: 1;
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

.product-page__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 68px);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--white);
  margin: 14px 0 24px;
}

.product-page__price {
  margin-bottom: 28px;
}

.pp-price--sale {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--white);
  line-height: 1;
}

.pp-price--was {
  font-family: var(--font-cond);
  font-size: 20px;
  color: rgba(255,255,255,0.3);
  text-decoration: line-through;
  margin-left: 14px;
}

.product-page__desc {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(240,238,234,0.58);
  margin-bottom: 32px;
}

.product-page__variants {
  margin-bottom: 28px;
}

.variant-label {
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  display: block;
  margin-bottom: 10px;
}

.variant-select {
  background: var(--grey-mid);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 12px 16px;
  font-family: var(--font-cond);
  font-size: 15px;
  width: 100%;
  cursor: pointer;
  appearance: none;
}

.product-page__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================
   CART PAGE
   ============================================ */
.cart-page {
  padding: 120px 64px 100px;
  max-width: 900px;
  margin: 0 auto;
}

.cart-page__header {
  margin-bottom: 48px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 48px;
}

.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 24px;
  align-items: center;
  background: var(--grey);
  padding: 20px;
}

.cart-item__img img {
  width: 100px;
  height: 100px;
  object-fit: cover;
}

.cart-item__name {
  font-family: var(--font-cond);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}

.cart-item__variant {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 12px;
}

.cart-item__qty {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-item__qty label {
  font-family: var(--font-cond);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.cart-qty-input {
  background: var(--grey-mid);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  width: 60px;
  padding: 8px 10px;
  font-family: var(--font-cond);
  font-size: 16px;
  text-align: center;
}

.cart-item__price {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--white);
  white-space: nowrap;
}

.cart-footer {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 32px;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 28px;
}

.cart-total__label {
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.cart-total__value {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--white);
}

.cart-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
}

.cart-note {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  font-family: var(--font-cond);
  letter-spacing: 0.05em;
}

.cart-empty {
  text-align: center;
  padding: 80px 0;
}

.cart-empty p {
  font-family: var(--font-cond);
  font-size: 18px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 28px;
}

/* ============================================
   PAGE / 404 / SEARCH
   ============================================ */
.page-content, .not-found, .search-page {
  padding: 120px 64px 100px;
  max-width: 900px;
  margin: 0 auto;
}

.not-found {
  text-align: center;
}

.not-found p {
  color: rgba(255,255,255,0.4);
  font-family: var(--font-cond);
  font-size: 18px;
  margin: 16px 0 32px;
}

.search-bar {
  display: flex;
  gap: 12px;
  margin-top: 40px;
}

.search-input {
  flex: 1;
  background: var(--grey-mid);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  padding: 16px 20px;
  font-family: var(--font-cond);
  font-size: 16px;
  outline: none;
}

.search-input:focus {
  border-color: rgba(255,255,255,0.3);
}

.page-body {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(240,238,234,0.6);
  margin-top: 32px;
}

/* ============================================
   RESPONSIVE — templates
   ============================================ */
@media (max-width: 768px) {
  .collection-page, .product-page, .cart-page,
  .page-content, .not-found, .search-page { padding: 100px 24px 72px; }
  .product-page__inner { grid-template-columns: 1fr; gap: 40px; }
  .cart-item { grid-template-columns: 80px 1fr; }
  .cart-item__price { grid-column: 2; }
  .search-bar { flex-direction: column; }
}
