/* ═══════════════════════════════════════════════════════
   FOOTWEAR PAGE
   Extends style.css — uses same CSS custom properties
═══════════════════════════════════════════════════════ */

/* ══════════════════════════════════════
   HERO — static image instead of video
══════════════════════════════════════ */
.footwear-hero .hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  filter: brightness(0.6) saturate(0.85);
  z-index: 0;
}

/* ══════════════════════════════════════
   PRODUCTS HEADER — sub paragraph
══════════════════════════════════════ */
.products-header-sub {
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  color: var(--c-text-muted);
  line-height: 1.75;
  max-width: 420px;
}

/* ══════════════════════════════════════
   RANGE ROWS — alternating image + content
══════════════════════════════════════ */
.range-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--c-border);
  position: relative;
}
.range-row:last-child { border-bottom: none; }
.range-row:first-of-type { padding-top: 24px; }

/* Flip every other row */
.range-row-flip .range-row-img     { order: 2; }
.range-row-flip .range-row-content { order: 1; }

/* ── Image side ── */
.range-row-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--c-bg-alt);
}
.range-row-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s var(--ease-out);
  filter: saturate(0.95) contrast(1.02);
}
.range-row:hover .range-row-img img { transform: scale(1.05); }

/* Subtle inner vignette */
.range-row-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(27,19,14,0.1) 100%);
  pointer-events: none;
  border-radius: 20px;
}

/* Floating number badge on image */
.range-row-img::before {
  content: attr(data-num);
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.7);
  background: rgba(27,19,14,0.45);
  backdrop-filter: blur(6px);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.15);
  z-index: 1;
}

/* ── Content side ── */
.range-row-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.range-row-num {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text-light);
  letter-spacing: 3px;
}
.range-row-cat {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--c-accent);
  background: rgba(184,147,90,0.1);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(184,147,90,0.22);
}

.range-row-title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.1;
  color: var(--c-dark);
  margin-bottom: 16px;
}

.range-row-divider {
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--c-accent), var(--c-accent-light), transparent);
  border-radius: 2px;
  margin-bottom: 20px;
  transition: width 1s var(--ease-out);
}
.reveal.visible .range-row-divider { width: 80px; }

.range-row-desc {
  font-size: 15px;
  color: var(--c-text-muted);
  line-height: 1.85;
  margin-bottom: 28px;
  max-width: 460px;
}

.range-row-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .range-row { gap: 48px; padding: 52px 0; }
}

@media (max-width: 768px) {
  .products-header-sub { max-width: none; }

  .range-row {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 0;
  }
  .range-row-flip .range-row-img     { order: 0; }
  .range-row-flip .range-row-content { order: 1; }
  .range-row-img { aspect-ratio: 16/10; }
  .range-row-title { font-size: clamp(26px, 6vw, 34px); }
}
