/*
Theme Name: Kavach Gears
Theme URI: https://kavachgears.in
Author: Kavach Gears India
Description: Premium motorcycle gear — dark by default, light mode available. WooCommerce + Razorpay ready. Beginner gear guide included.
Version: 2.1.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
Text Domain: kavach-gears
*/

/* ================================================================
   KAVACH GEARS — COMPLETE PRODUCTION THEME
   Matches kavach-gears.html + kavach-product.html + kavach-shop.html
   ================================================================ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── DARK MODE (DEFAULT) ── */
:root {
  --red: #C0392B;
  --red-dark: #96281b;
  --red-glow: rgba(192,57,43,0.18);
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #1a1a1a;
  --dark3: #222222;
  --dark4: #2d2d2d;
  --light: #f0ede8;
  --white: #ffffff;
  --bg: #0a0a0a;
  --bg-section: #111111;
  --bg-card: #1a1a1a;
  --bg-card-hover: #222222;
  --text-primary: #ffffff;
  --text-secondary: rgba(240,237,232,0.6);
  --text-muted: rgba(255,255,255,0.35);
  --text-faint: rgba(255,255,255,0.08);
  --border: rgba(255,255,255,0.06);
  --border-mid: rgba(255,255,255,0.1);
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --nav-height: 72px;
}

/* ── LIGHT MODE ── */
body.light-mode {
  --bg: #f5f3ef;
  --bg-section: #ffffff;
  --bg-card: #ffffff;
  --bg-card-hover: #f0ede8;
  --dark: #ffffff;
  --dark2: #f5f3ef;
  --dark3: #e8e4de;
  --dark4: #d8d3ca;
  --black: #f5f3ef;
  --text-primary: #1a1a1a;
  --text-secondary: rgba(30,30,30,0.65);
  --text-muted: rgba(0,0,0,0.4);
  --text-faint: rgba(0,0,0,0.04);
  --border: rgba(0,0,0,0.08);
  --border-mid: rgba(0,0,0,0.12);
  --light: #1a1a1a;
  --white: #1a1a1a;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--light);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  transition: background 0.3s, color 0.3s;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--text-primary);
}
p { line-height: 1.7; }

/* ── LAYOUT ── */
.container { max-width: 1400px; margin: 0 auto; padding: 0 4rem; }
.section-pad { padding: 7rem 0; }
.site-main { margin-top: var(--nav-height); }

/* ── GLOBAL LABELS & TITLES ── */
.section-label {
  font-family: var(--font-display); font-weight: 500; font-size: 0.75rem;
  letter-spacing: 0.4em; text-transform: uppercase; color: var(--red);
  margin-bottom: 1rem; display: flex; align-items: center; gap: 1rem;
}
.section-label::before { content: ''; display: block; width: 30px; height: 1px; background: var(--red); }
.section-title { font-family: var(--font-display); font-weight: 900; font-size: clamp(2.8rem, 5vw, 5rem); line-height: 0.95; text-transform: uppercase; color: var(--text-primary); }
.section-title em { font-style: normal; color: transparent; -webkit-text-stroke: 1px rgba(127,127,127,0.4); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block; font-family: var(--font-display); font-weight: 700;
  font-size: 0.9rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: #fff; background: var(--red); border: none;
  padding: 1rem 2.2rem; cursor: pointer; text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display); font-weight: 500; font-size: 0.9rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-muted); text-decoration: none; transition: color 0.2s;
}
.btn-ghost:hover { color: var(--text-primary); }
.btn-ghost::after { content: '→'; font-size: 1.1rem; transition: transform 0.2s; }
.btn-ghost:hover::after { transform: translateX(4px); }

/* ── NAVIGATION ── */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-height);
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}
body.light-mode #site-header {
  background: rgba(245,243,239,0.95);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.header-inner { height: var(--nav-height); display: flex; align-items: center; justify-content: space-between; }
.site-logo { font-family: var(--font-display); font-weight: 900; font-size: 1.6rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-primary); text-decoration: none; }
.site-logo span { color: var(--red); }
.primary-nav { list-style: none; display: flex; gap: 2.5rem; }
.primary-nav a { font-family: var(--font-display); font-weight: 500; font-size: 0.9rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-secondary); text-decoration: none; transition: color 0.2s; }
.primary-nav a:hover, .primary-nav .current-menu-item a { color: var(--red); }
.header-actions { display: flex; align-items: center; gap: 1rem; }
.cart-link { position: relative; color: var(--text-secondary); font-size: 1.1rem; text-decoration: none; transition: color 0.2s; display: flex; }
.cart-link:hover { color: var(--text-primary); }
.cart-count { position: absolute; top: -6px; right: -8px; background: var(--red); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 0.6rem; width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.nav-cta { font-family: var(--font-display); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; background: var(--red); border: none; padding: 0.6rem 1.4rem; cursor: pointer; text-decoration: none; transition: background 0.2s; }
.nav-cta:hover { background: var(--red-dark); }

/* Theme toggle */
.theme-toggle {
  width: 36px; height: 36px; border: 1px solid var(--border-mid);
  background: transparent; cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--text-secondary); transition: all 0.2s; border-radius: 0;
}
.theme-toggle:hover { border-color: var(--red); color: var(--red); }

/* Mobile */
.mobile-menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.mobile-menu-toggle span { display: block; width: 22px; height: 1.5px; background: var(--text-primary); transition: all 0.3s; }
.mobile-nav-drawer { position: fixed; top: 0; right: -100%; width: 80%; max-width: 320px; height: 100vh; background: var(--bg-section); z-index: 999; transition: right 0.3s ease; padding: 5rem 2rem 2rem; border-left: 1px solid var(--border); }
.mobile-nav-drawer.open { right: 0; }
.mobile-nav-close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; color: var(--text-muted); font-size: 1.2rem; cursor: pointer; }
.mobile-nav-list { list-style: none; }
.mobile-nav-list li { border-bottom: 1px solid var(--border); }
.mobile-nav-list a { display: block; padding: 1rem 0; font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-secondary); text-decoration: none; }
.mobile-nav-list a:hover { color: var(--red); }

/* ── MARQUEE ── */
.marquee-bar { background: var(--red); padding: 0.8rem 0; overflow: hidden; }
.marquee-inner { display: flex; gap: 3rem; animation: marquee 22s linear infinite; white-space: nowrap; width: max-content; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item { font-family: var(--font-display); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.9); display: flex; align-items: center; gap: 1rem; }
.marquee-item::after { content: '✦'; font-size: 0.5rem; opacity: 0.7; }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 0 6rem; position: relative; background: var(--bg); overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(192,57,43,0.08) 0%, transparent 70%),
              linear-gradient(to bottom, transparent 40%, var(--bg) 100%);
}
body.light-mode .hero-bg {
  background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(192,57,43,0.05) 0%, transparent 70%),
              linear-gradient(to bottom, transparent 40%, var(--bg) 100%);
}
.hero-grid-lines {
  position: absolute; inset: 0; z-index: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px),
                    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-tag { position: absolute; top: 40%; right: 4rem; z-index: 3; font-family: var(--font-display); font-weight: 300; font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-muted); writing-mode: vertical-rl; transform: rotate(180deg); }
.hero-content { position: relative; z-index: 3; max-width: 900px; }
.hero-eyebrow { font-family: var(--font-display); font-weight: 500; font-size: 0.8rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--red); margin-bottom: 1.2rem; display: flex; align-items: center; gap: 1rem; animation: fadeUp 0.8s 0.2s both; }
.hero-eyebrow::before { content: ''; display: block; width: 40px; height: 1px; background: var(--red); }
.hero-title { font-family: var(--font-display); font-weight: 900; font-size: clamp(4.5rem, 10vw, 9rem); line-height: 0.9; text-transform: uppercase; letter-spacing: -0.01em; color: var(--text-primary); margin-bottom: 2rem; animation: fadeUp 0.9s 0.35s both; }
.hero-title em { font-style: normal; color: transparent; -webkit-text-stroke: 1px rgba(127,127,127,0.4); }
.hero-desc { font-size: 1.05rem; font-weight: 300; color: var(--text-secondary); max-width: 480px; margin-bottom: 2.5rem; line-height: 1.7; animation: fadeUp 0.8s 0.55s both; }
.hero-actions { display: flex; gap: 1.2rem; align-items: center; animation: fadeUp 0.8s 0.7s both; }
.hero-stats { position: absolute; bottom: 6rem; right: 4rem; z-index: 3; display: flex; flex-direction: column; gap: 2rem; text-align: right; }
.hero-stat-num { font-family: var(--font-display); font-weight: 900; font-size: 2.4rem; color: var(--text-primary); line-height: 1; }
.hero-stat-label { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ── CATEGORIES ── */
.categories { background: var(--bg-section); }
.cat-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 4rem; }
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--dark4); }
.cat-card { background: var(--bg-card); padding: 3rem 2rem; position: relative; overflow: hidden; cursor: pointer; text-decoration: none; display: block; transition: background 0.3s; }
.cat-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.cat-card:hover { background: var(--bg-card-hover); }
.cat-card:hover::before { transform: scaleX(1); }
.cat-num { font-family: var(--font-display); font-weight: 900; font-size: 5rem; color: var(--text-faint); position: absolute; top: 1rem; right: 1.5rem; line-height: 1; user-select: none; }
.cat-icon { font-size: 2rem; margin-bottom: 1.5rem; display: block; }
.cat-name { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-primary); margin-bottom: 0.5rem; }
.cat-count { font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); }
.cat-arrow { position: absolute; bottom: 2rem; right: 2rem; font-size: 1.3rem; color: var(--red); opacity: 0; transform: translateX(-6px); transition: opacity 0.3s, transform 0.3s; }
.cat-card:hover .cat-arrow { opacity: 1; transform: translateX(0); }

/* ── PRODUCTS GRID ── */
.products { background: var(--bg); }
.prod-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 4rem; }
.prod-filter { display: flex; }
.filter-btn { font-family: var(--font-display); font-weight: 500; font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); background: transparent; border: 1px solid var(--border-mid); border-right: none; padding: 0.5rem 1.2rem; cursor: pointer; transition: all 0.2s; }
.filter-btn:last-child { border-right: 1px solid var(--border-mid); }
.filter-btn.active, .filter-btn:hover { background: var(--red); border-color: var(--red); color: #fff; }
.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.prod-card { background: var(--bg-card); position: relative; overflow: hidden; cursor: pointer; text-decoration: none; display: block; transition: background 0.25s; }
.prod-card:hover { background: var(--bg-card-hover); }
.prod-card:hover .prod-img-main { transform: scale(1.05); }
.prod-img-wrap { aspect-ratio: 4/3; background: var(--dark3); overflow: hidden; display: flex; align-items: center; justify-content: center; position: relative; }
.prod-img-main { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.prod-img-placeholder { font-family: var(--font-display); font-size: 4rem; color: var(--text-faint); font-weight: 900; text-transform: uppercase; letter-spacing: -0.03em; }
.prod-badge { position: absolute; top: 1rem; left: 1rem; font-family: var(--font-display); font-weight: 700; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; background: var(--red); color: #fff; padding: 0.3rem 0.7rem; }
.prod-gender-badge { position: absolute; top: 1rem; right: 1rem; font-family: var(--font-display); font-weight: 700; font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; background: rgba(10,10,10,0.7); color: rgba(255,255,255,0.6); padding: 0.25rem 0.6rem; border: 1px solid rgba(255,255,255,0.1); }
.prod-info { padding: 1.5rem; border-top: 1px solid var(--border); }
.prod-category, .prod-cat-label { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); margin-bottom: 0.4rem; }
.prod-name { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-primary); margin-bottom: 0.4rem; }
.prod-sub, .prod-meta { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1rem; }
.prod-footer { display: flex; justify-content: space-between; align-items: center; }
.prod-price { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: var(--text-primary); }
.prod-cta, .prod-action { font-family: var(--font-display); font-weight: 700; font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--red); display: flex; align-items: center; gap: 0.4rem; transition: gap 0.2s; }
.prod-card:hover .prod-cta, .prod-card:hover .prod-action { gap: 0.7rem; }
.prod-colors { display: flex; gap: 0.4rem; margin-bottom: 1rem; }
.color-dot-sm { width: 12px; height: 12px; border-radius: 50%; border: 1px solid var(--border-mid); }
.terrain-tag { font-family: var(--font-display); font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.2rem 0.5rem; border: 1px solid var(--border-mid); color: var(--text-muted); }

/* ── BEGINNER GUIDE SECTION ── */
.beginner-guide { background: var(--bg-section); }
.beginner-intro { max-width: 600px; margin-bottom: 4rem; }
.beginner-intro p { font-size: 1rem; color: var(--text-secondary); line-height: 1.8; margin-top: 1rem; }

.guide-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--dark4); margin-bottom: 4rem; }
.guide-step { background: var(--bg-card); padding: 2.5rem 2rem; position: relative; overflow: hidden; }
.guide-step-num { font-family: var(--font-display); font-weight: 900; font-size: 4rem; color: var(--text-faint); position: absolute; top: 1rem; right: 1.5rem; line-height: 1; }
.guide-step-icon { width: 48px; height: 48px; background: var(--red-glow); border: 1px solid rgba(192,57,43,0.3); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1.5rem; }
.guide-step-title { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-primary); margin-bottom: 0.8rem; }
.guide-step-desc { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; }
.guide-step-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1.2rem; }
.guide-tag { font-family: var(--font-display); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.25rem 0.6rem; border: 1px solid rgba(192,57,43,0.3); color: var(--red); }

.gear-essentials { margin-top: 4rem; }
.essentials-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 2rem; }
.essential-card { background: var(--bg-card); padding: 1.5rem; border-left: 3px solid var(--red); transition: background 0.2s; }
.essential-card:hover { background: var(--bg-card-hover); }
.essential-card-icon { font-size: 1.8rem; margin-bottom: 1rem; }
.essential-card-title { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; text-transform: uppercase; color: var(--text-primary); margin-bottom: 0.5rem; }
.essential-card-desc { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; }
.essential-card-priority { font-family: var(--font-display); font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--red); margin-top: 0.8rem; display: flex; align-items: center; gap: 0.4rem; }
.essential-card-priority::before { content: ''; display: block; width: 16px; height: 1px; background: var(--red); }

/* ── FEATURES ── */
.features { background: var(--bg-section); position: relative; overflow: hidden; }
.features-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.features-list { margin-top: 3rem; }
.feature-item { display: flex; gap: 1.5rem; padding: 1.8rem 0; border-bottom: 1px solid var(--border); }
.feature-item:first-child { border-top: 1px solid var(--border); }
.feature-num { font-family: var(--font-display); font-weight: 900; font-size: 0.75rem; color: var(--red); letter-spacing: 0.1em; min-width: 32px; margin-top: 0.2rem; }
.feature-title { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-primary); margin-bottom: 0.4rem; }
.feature-desc { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }
.features-visual { position: relative; }
.features-visual-box { background: var(--bg-card); aspect-ratio: 3/4; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.features-visual-box img { width: 100%; height: 100%; object-fit: cover; }
.gallery-placeholder { font-family: var(--font-display); font-weight: 900; font-size: 8rem; color: var(--text-faint); text-transform: uppercase; letter-spacing: -0.03em; text-align: center; line-height: 1; padding: 2rem; }
.fv-label { position: absolute; bottom: 2rem; left: 2rem; right: 2rem; background: rgba(10,10,10,0.9); backdrop-filter: blur(8px); padding: 1.2rem 1.5rem; border-left: 3px solid var(--red); }
body.light-mode .fv-label { background: rgba(245,243,239,0.95); }
.fv-label-title { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; text-transform: uppercase; color: var(--text-primary); margin-bottom: 0.2rem; }
.fv-label-sub { font-size: 0.8rem; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; }

/* ── GENDER SPLIT ── */
.gender-section { padding: 0; }
.gender-grid { display: grid; grid-template-columns: 1fr 1fr; }
.gender-panel { padding: 6rem 4rem; position: relative; overflow: hidden; min-height: 500px; display: flex; flex-direction: column; justify-content: flex-end; cursor: pointer; text-decoration: none; background: var(--bg-section); }
.gender-panel.womens { background: var(--bg-card); }
.gender-panel::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,10,0.7) 0%, transparent 60%); }
body.light-mode .gender-panel::after { background: linear-gradient(to top, rgba(245,243,239,0.8) 0%, transparent 60%); }
.gender-panel:hover .gender-arrow { transform: translateX(8px); }
.gender-content { position: relative; z-index: 2; }
.gender-label { font-family: var(--font-display); font-weight: 500; font-size: 0.75rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--red); margin-bottom: 0.8rem; }
.gender-title { font-family: var(--font-display); font-weight: 900; font-size: 3.5rem; text-transform: uppercase; letter-spacing: -0.01em; color: var(--text-primary); line-height: 0.95; margin-bottom: 1.5rem; }
.gender-link { font-family: var(--font-display); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-primary); display: inline-flex; align-items: center; gap: 0.6rem; }
.gender-arrow { transition: transform 0.3s; display: inline-block; }

/* ── TERRAIN ── */
.terrain { background: var(--bg-section); }
.terrain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--dark4); margin-top: 4rem; }
.terrain-card { background: var(--bg-card); padding: 3rem 2.5rem; position: relative; overflow: hidden; transition: background 0.3s; cursor: pointer; text-decoration: none; display: block; }
.terrain-card:hover { background: var(--bg-card-hover); }
.terrain-bg-text { position: absolute; bottom: -1rem; right: -0.5rem; font-family: var(--font-display); font-weight: 900; font-size: 7rem; line-height: 1; color: var(--text-faint); text-transform: uppercase; pointer-events: none; white-space: nowrap; }
.terrain-icon { width: 48px; height: 48px; background: var(--red-glow); border: 1px solid rgba(192,57,43,0.3); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 2rem; }
.terrain-name { font-family: var(--font-display); font-weight: 700; font-size: 1.6rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-primary); margin-bottom: 0.6rem; }
.terrain-types { font-size: 0.8rem; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; }

/* ── NEWSLETTER ── */
.newsletter { background: var(--red); padding: 5rem 4rem; display: flex; justify-content: space-between; align-items: center; gap: 4rem; }
.nl-title { font-family: var(--font-display); font-weight: 900; font-size: 3rem; text-transform: uppercase; color: #fff; line-height: 0.95; flex: 1; }
.nl-title span { opacity: 0.45; }
.nl-form { display: flex; flex: 1; max-width: 500px; }
.nl-input { flex: 1; padding: 1rem 1.4rem; background: rgba(0,0,0,0.25); border: 1px solid rgba(255,255,255,0.2); border-right: none; color: #fff; font-family: var(--font-body); font-size: 0.95rem; outline: none; }
.nl-input::placeholder { color: rgba(255,255,255,0.45); }
.nl-submit { font-family: var(--font-display); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.15em; text-transform: uppercase; background: #0a0a0a; color: #fff; border: none; padding: 1rem 1.8rem; cursor: pointer; transition: background 0.2s; }
.nl-submit:hover { background: #1a1a1a; }

/* ── FOOTER ── */
#site-footer { background: var(--bg-section); border-top: 1px solid var(--border); }
.footer-top-wrap { padding: 5rem 0 4rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; }
.footer-brand-name { font-family: var(--font-display); font-weight: 900; font-size: 1.8rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-primary); text-decoration: none; display: block; margin-bottom: 1rem; }
.footer-brand-name span { color: var(--red); }
.footer-tagline { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; max-width: 260px; margin-bottom: 2rem; }
.footer-social { display: flex; gap: 0.8rem; }
.social-link { width: 36px; height: 36px; border: 1px solid var(--border-mid); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 0.75rem; color: var(--text-muted); text-decoration: none; transition: border-color 0.2s, color 0.2s; }
.social-link:hover { border-color: var(--red); color: var(--red); }
.footer-col h3 { font-family: var(--font-display); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.75rem; }
.footer-col ul li a { font-size: 0.9rem; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--text-primary); }
.footer-bottom-wrap { border-top: 1px solid var(--border); padding: 2rem 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 0.8rem; color: var(--text-muted); }
.footer-legal { display: flex; gap: 2rem; }
.footer-legal a { font-size: 0.8rem; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: var(--text-primary); }

/* ── BREADCRUMB ── */
.breadcrumb-bar { padding: 1rem 0; background: var(--bg-section); border-bottom: 1px solid var(--border); }
.breadcrumbs { display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; }
.breadcrumbs a, .breadcrumbs span { font-family: var(--font-display); font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--red); }
.breadcrumb_last { color: var(--text-secondary) !important; }
.breadcrumb-sep { color: var(--border-mid); }

/* ── SHOP PAGE ── */
.shop-hero { padding: 4rem 0 3rem; background: var(--bg-section); border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.shop-hero-bg { position: absolute; right: 2rem; top: -2rem; font-family: var(--font-display); font-weight: 900; font-size: 12rem; color: var(--text-faint); text-transform: uppercase; line-height: 1; pointer-events: none; letter-spacing: -0.03em; }
.shop-eyebrow { font-family: var(--font-display); font-size: 0.78rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--red); margin-bottom: 0.8rem; display: flex; align-items: center; gap: 0.8rem; }
.shop-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--red); }
.shop-title { font-family: var(--font-display); font-weight: 900; font-size: clamp(3rem, 6vw, 6rem); text-transform: uppercase; line-height: 0.92; color: var(--text-primary); margin-bottom: 0.8rem; }
.shop-count { font-size: 0.88rem; color: var(--text-muted); letter-spacing: 0.1em; }
.shop-layout { display: grid; grid-template-columns: 260px 1fr; }
.shop-sidebar { background: var(--bg-section); padding: 3rem 2rem; border-right: 1px solid var(--border); position: sticky; top: var(--nav-height); height: calc(100vh - var(--nav-height)); overflow-y: auto; }
.shop-main { padding: 2.5rem 3rem; background: var(--bg); }
.filter-section { margin-bottom: 2.5rem; }
.filter-heading { font-family: var(--font-display); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1.2rem; padding-bottom: 0.8rem; border-bottom: 1px solid var(--border); }
.filter-list { list-style: none; }
.filter-list label { display: flex; align-items: center; gap: 0.7rem; padding: 0.5rem 0.4rem; cursor: pointer; font-size: 0.9rem; color: var(--text-secondary); transition: color 0.2s; }
.filter-list label:hover { color: var(--text-primary); }
.filter-list input[type="checkbox"] { accent-color: var(--red); width: 14px; height: 14px; }
.filter-tag-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.filter-tag { font-family: var(--font-display); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.35rem 0.8rem; border: 1px solid var(--border-mid); color: var(--text-muted); cursor: pointer; transition: all 0.2s; background: transparent; }
.filter-tag.active, .filter-tag:hover { background: var(--red); border-color: var(--red); color: #fff; }
.clear-btn { width: 100%; font-family: var(--font-display); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--red); background: transparent; border: 1px solid rgba(192,57,43,0.3); padding: 0.7rem; cursor: pointer; transition: all 0.2s; margin-top: 1rem; }
.clear-btn:hover { background: var(--red-glow); }
.toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2.5rem; gap: 1rem; }
.active-filters { display: flex; gap: 0.5rem; flex-wrap: wrap; flex: 1; }
.active-chip { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-display); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.3rem 0.8rem; background: var(--red-glow); border: 1px solid rgba(192,57,43,0.3); color: var(--red); }
.chip-x { cursor: pointer; opacity: 0.7; }
.toolbar-right { display: flex; gap: 1rem; align-items: center; flex-shrink: 0; }
.sort-select { font-family: var(--font-display); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; background: var(--bg-card); border: 1px solid var(--border-mid); color: var(--text-secondary); padding: 0.5rem 1rem; cursor: pointer; outline: none; }
.view-btns { display: flex; }
.view-btn { width: 36px; height: 36px; border: 1px solid var(--border-mid); border-right: none; background: transparent; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: all 0.2s; font-size: 0.8rem; }
.view-btn:last-child { border-right: 1px solid var(--border-mid); }
.view-btn.active { background: var(--bg-card); color: var(--text-primary); }
.prod-grid.list-view { grid-template-columns: 1fr; }
.list-view .prod-card { display: grid; grid-template-columns: 280px 1fr; }
.list-view .prod-img-wrap { aspect-ratio: auto; height: 100%; min-height: 160px; }
.list-view .prod-info { display: flex; flex-direction: column; justify-content: center; padding: 2rem; }
.pagination { display: flex; justify-content: center; gap: 0.4rem; margin-top: 4rem; padding-bottom: 4rem; }
.page-btn { font-family: var(--font-display); font-weight: 700; font-size: 0.85rem; width: 40px; height: 40px; border: 1px solid var(--border-mid); background: transparent; color: var(--text-muted); cursor: pointer; transition: all 0.2s; }
.page-btn.active, .page-btn:hover { background: var(--red); border-color: var(--red); color: #fff; }

/* ── PRODUCT DETAIL ── */
.product-main { display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - 110px); }
.gallery-side { position: sticky; top: var(--nav-height); height: calc(100vh - var(--nav-height)); background: var(--bg-card); overflow: hidden; }
.gallery-main { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; position: relative; }
.gallery-main-img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { position: absolute; left: 1.5rem; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 0.6rem; }
.thumb { width: 52px; height: 52px; background: var(--bg-card-hover); border: 1px solid var(--border-mid); cursor: pointer; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 0.55rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; text-align: center; transition: border-color 0.2s; overflow: hidden; }
.thumb.active { border-color: var(--red); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-badge { position: absolute; top: 2rem; right: 2rem; background: var(--red); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.4rem 0.9rem; }
.product-info { padding: 4rem; overflow-y: auto; background: var(--bg); }
.prod-cat-tag { font-family: var(--font-display); font-size: 0.78rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--red); margin-bottom: 0.8rem; display: flex; align-items: center; gap: 0.8rem; }
.prod-cat-tag::before { content: ''; display: block; width: 24px; height: 1px; background: var(--red); }
.product-info h1 { font-size: clamp(3rem, 5vw, 5rem); color: var(--text-primary); margin-bottom: 0.5rem; }
.prod-subtitle { font-size: 1rem; color: var(--text-muted); margin-bottom: 2rem; font-weight: 300; letter-spacing: 0.05em; }
.prod-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2.5rem; }
.tag { font-family: var(--font-display); font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.3rem 0.8rem; border: 1px solid var(--border-mid); color: var(--text-muted); }
.tag.season { border-color: rgba(192,57,43,0.4); color: var(--red); }
.divider { height: 1px; background: var(--border); margin: 2rem 0; }
.option-label { font-family: var(--font-display); font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1rem; }
.color-selected { color: var(--text-primary); font-weight: 500; }
.colors { display: flex; gap: 0.7rem; margin-bottom: 2rem; }
.color-dot { width: 32px; height: 32px; border-radius: 50%; cursor: pointer; border: 2px solid transparent; transition: border-color 0.2s; }
.color-dot.active { border-color: var(--red); }
.sizes { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.size-btn { font-family: var(--font-display); font-weight: 700; font-size: 0.85rem; width: 52px; height: 52px; border: 1px solid var(--border-mid); background: transparent; color: var(--text-muted); cursor: pointer; letter-spacing: 0.05em; transition: all 0.2s; }
.size-btn:hover { border-color: var(--text-secondary); color: var(--text-primary); }
.size-btn.active { background: var(--red); border-color: var(--red); color: #fff; }
.cta-row { display: flex; gap: 1rem; margin-bottom: 2rem; }
.btn-cart { flex: 1; font-family: var(--font-display); font-weight: 700; font-size: 1rem; letter-spacing: 0.15em; text-transform: uppercase; background: var(--red); color: #fff; border: none; padding: 1.1rem 2rem; cursor: pointer; transition: background 0.2s; }
.btn-cart:hover { background: var(--red-dark); }
.btn-wish { width: 56px; background: transparent; border: 1px solid var(--border-mid); color: var(--text-muted); font-size: 1.2rem; cursor: pointer; transition: all 0.2s; }
.btn-wish:hover { border-color: var(--red); color: var(--red); }
.guarantee { display: flex; gap: 1.5rem; padding: 1.2rem 1.5rem; background: var(--bg-card); border-left: 3px solid var(--red); margin-bottom: 2.5rem; }
.g-item { flex: 1; }
.g-label { font-family: var(--font-display); font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.2rem; }
.g-val { font-size: 0.88rem; color: var(--text-secondary); }
.specs-title { font-family: var(--font-display); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1.2rem; }
.spec-row { display: flex; justify-content: space-between; align-items: center; padding: 0.9rem 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.spec-key { color: var(--text-muted); }
.spec-val { color: var(--text-secondary); text-align: right; }
.accordion { margin-top: 2.5rem; }
.acc-item { border-top: 1px solid var(--border); }
.acc-toggle { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1.2rem 0; background: none; border: none; cursor: pointer; font-family: var(--font-display); font-weight: 700; font-size: 1rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-secondary); transition: color 0.2s; }
.acc-toggle:hover { color: var(--text-primary); }
.acc-icon { font-size: 1.2rem; color: var(--red); transition: transform 0.3s; }
.acc-item.open .acc-icon { transform: rotate(45deg); }
.acc-body { display: none; padding-bottom: 1.5rem; font-size: 0.9rem; color: var(--text-secondary); line-height: 1.8; }
.acc-item.open .acc-body { display: block; }
.related { padding: 6rem 0; background: var(--bg-section); }
.rel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.rel-card { background: var(--bg-card); text-decoration: none; display: block; transition: background 0.2s; }
.rel-card:hover { background: var(--bg-card-hover); }
.rel-img { aspect-ratio: 3/2; background: var(--bg-card-hover); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.rel-img img { width: 100%; height: 100%; object-fit: cover; }
.rel-ph { font-family: var(--font-display); font-weight: 900; font-size: 3rem; color: var(--text-faint); text-transform: uppercase; }
.rel-info { padding: 1.2rem 1.5rem; }
.rel-cat { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); margin-bottom: 0.3rem; }
.rel-name { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; text-transform: uppercase; color: var(--text-primary); }

/* ── RAZORPAY BUTTON STYLE ── */
.razorpay-payment-button { display: block; width: 100%; font-family: var(--font-display) !important; font-weight: 700 !important; font-size: 1rem !important; letter-spacing: 0.15em !important; text-transform: uppercase !important; background: var(--red) !important; color: #fff !important; border: none !important; border-radius: 0 !important; padding: 1.1rem 2rem !important; cursor: pointer !important; }

/* ── WOOCOMMERCE ── */
.woocommerce .button, .woocommerce button.button, .woocommerce input.button, .woocommerce #respond input#submit { font-family: var(--font-display) !important; font-weight: 700 !important; font-size: 0.9rem !important; letter-spacing: 0.15em !important; text-transform: uppercase !important; background: var(--red) !important; color: #fff !important; border: none !important; border-radius: 0 !important; padding: 0.9rem 2rem !important; cursor: pointer !important; transition: background 0.2s !important; }
.woocommerce .button:hover, .woocommerce button.button:hover { background: var(--red-dark) !important; }
.woocommerce .woocommerce-message, .woocommerce .woocommerce-info { background: var(--bg-card); border-top-color: var(--red); color: var(--text-primary); }
.woocommerce ul.products li.product { background: var(--bg-card) !important; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { font-family: var(--font-display) !important; font-weight: 700 !important; font-size: 1.2rem !important; text-transform: uppercase !important; color: var(--text-primary) !important; }
.woocommerce div.product p.price, .woocommerce div.product span.price, .woocommerce ul.products li.product .price { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: var(--text-primary); }
.woocommerce .star-rating span::before { color: var(--red); }
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea { background: var(--bg-card) !important; border: 1px solid var(--border-mid) !important; color: var(--text-primary) !important; border-radius: 0 !important; padding: 0.8rem 1rem !important; }
.woocommerce form .form-row label { color: var(--text-secondary); font-family: var(--font-display); letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.78rem; }
.woocommerce table.shop_table { color: var(--text-primary); border-color: var(--border); }
.woocommerce table.shop_table th { font-family: var(--font-display); letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); font-size: 0.78rem; background: var(--bg-section); border-bottom: 1px solid var(--border); }
.woocommerce table.shop_table td { border-bottom: 1px solid var(--border); color: var(--text-primary); }
.woocommerce-cart .cart-collaterals, .woocommerce-checkout #order_review { background: var(--bg-card); padding: 2rem; }
.woocommerce #payment { background: var(--bg-card) !important; border-radius: 0 !important; }
.woocommerce #payment ul.payment_methods { border-bottom: 1px solid var(--border) !important; }
.woocommerce #payment div.payment_box { background: var(--bg-card-hover) !important; color: var(--text-secondary) !important; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .container { padding: 0 2rem; }
  .section-pad { padding: 5rem 0; }
  .primary-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .features-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .newsletter { flex-direction: column; padding: 3rem 2rem; }
  .hero-stats { display: none; }
  .hero-tag { display: none; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: relative; top: 0; height: auto; }
  .shop-main { padding: 2rem; }
  .product-main { grid-template-columns: 1fr; }
  .gallery-side { position: relative; height: 60vw; top: 0; }
  .product-info { padding: 2rem; }
  .gender-panel { padding: 4rem 2rem; }
  .guide-steps { grid-template-columns: 1fr; }
  .essentials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .cat-grid, .prod-grid, .gender-grid, .terrain-grid, .rel-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-inner { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-legal { justify-content: center; }
  .cat-header, .prod-header { flex-direction: column; gap: 1.5rem; align-items: flex-start; }
  .hero-title { font-size: 3.8rem; }
  .nl-form { flex-direction: column; }
  .nl-input { border-right: 1px solid rgba(255,255,255,0.2); border-bottom: none; }
  .newsletter { padding: 3rem 1.5rem; }
  .guarantee { flex-direction: column; gap: 1rem; }
  .essentials-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   KAVACH GEARS — VARIATION SWATCHES (v1.1)
   ================================================================ */

/* ── WooCommerce variation table wrapper ── */
.variations_form .variations { width: 100%; border: none; }
.variations_form .variations td,
.variations_form .variations th { padding: 0.25rem 0 0.75rem; border: none; vertical-align: top; }
.variations_form .variations th label {
  font-family: var(--font-display); font-weight: 700; font-size: 0.75rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted);
}

/* ── Swatch container ── */
.kv-swatches {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.5rem;
}

/* ── Label swatches (size, riding style, etc.) ── */
.kv-swatches--label .kv-swatch {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 3rem; padding: 0.35rem 0.8rem;
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-secondary); background: transparent;
  border: 1px solid var(--border-mid); cursor: pointer;
  transition: border-color 0.18s, color 0.18s, background 0.18s;
}
.kv-swatches--label .kv-swatch:hover {
  border-color: var(--text-secondary); color: var(--text-primary);
}
.kv-swatches--label .kv-swatch.active {
  border-color: var(--red); color: var(--text-primary); background: var(--red-glow);
}

/* ── Colour swatches ── */
.kv-swatches--color .kv-swatch {
  width: 2rem; height: 2rem; border-radius: 50%;
  background: var(--kv-bg, #888);
  border: 2px solid transparent;
  outline: 2px solid transparent;
  outline-offset: 2px;
  cursor: pointer;
  transition: outline-color 0.18s, transform 0.15s;
  position: relative;
}
.kv-swatches--color .kv-swatch:hover { transform: scale(1.12); }
.kv-swatches--color .kv-swatch.active {
  outline-color: var(--red);
  border-color: var(--bg);  /* creates gap ring effect */
}
/* White/light swatch needs a border so it's visible on dark bg */
.kv-swatches--color .kv-swatch[style*="f5f5f5"],
.kv-swatches--color .kv-swatch[style*="#fff"] {
  border-color: var(--border-mid);
}

/* ── WooCommerce add-to-cart button (styled to match Kavach) ── */
.single_add_to_cart_button,
.woocommerce .single_add_to_cart_button.button {
  font-family: var(--font-display) !important; font-weight: 700 !important;
  font-size: 0.9rem !important; letter-spacing: 0.15em !important; text-transform: uppercase !important;
  color: #fff !important; background: var(--red) !important;
  border: none !important; border-radius: 0 !important;
  padding: 1rem 2.5rem !important; cursor: pointer !important;
  transition: background 0.2s, transform 0.15s !important;
  width: 100% !important; margin-top: 1.5rem !important;
}
.single_add_to_cart_button:hover { background: var(--red-dark) !important; transform: translateY(-1px) !important; }
.single_add_to_cart_button:disabled { opacity: 0.45 !important; cursor: not-allowed !important; transform: none !important; }

/* ── WooCommerce quantity input ── */
.woocommerce .quantity .qty {
  background: var(--dark3) !important; color: var(--text-primary) !important;
  border: 1px solid var(--border-mid) !important; border-radius: 0 !important;
  font-family: var(--font-body) !important; font-size: 1rem !important;
  padding: 0.75rem 1rem !important; width: 4.5rem !important; text-align: center !important;
}

/* ── WooCommerce price on product page ── */
.woocommerce .product .price {
  font-family: var(--font-display) !important; font-weight: 700 !important;
  font-size: 2rem !important; color: var(--text-primary) !important;
  display: block !important; margin: 1.25rem 0 !important;
}
.woocommerce .product .price del { opacity: 0.4; font-size: 1.25rem !important; }
.woocommerce .product .price ins { text-decoration: none; color: var(--red) !important; }

/* ── WooCommerce notices (cart / checkout errors) ── */
.woocommerce-error, .woocommerce-info, .woocommerce-message {
  background: var(--dark2) !important; border-left: 3px solid var(--red) !important;
  color: var(--text-secondary) !important; font-family: var(--font-body) !important;
  padding: 1rem 1.5rem !important; margin-bottom: 1.5rem !important; list-style: none !important;
}

/* ── RIDER QUOTE (homepage editorial pull-quote) ── */
.rider-quote-section {
  padding: 5rem 0; background: var(--dark2);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.rider-quote {
  max-width: 860px; margin: 0 auto; text-align: center; padding: 0 2rem;
}
.rq-mark {
  font-family: var(--font-display); font-size: 8rem; line-height: 0.5;
  color: var(--red); opacity: 0.5; margin-bottom: 1rem;
}
.rq-text {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.4rem, 2.5vw, 2rem); line-height: 1.35;
  color: var(--text-primary); letter-spacing: 0.01em;
  font-style: italic; margin-bottom: 2rem;
}
.rq-credit {
  font-family: var(--font-body); font-size: 0.85rem;
  letter-spacing: 0.1em; color: var(--text-muted); text-transform: uppercase;
}

/* ── Shop filter tags — ensure <a> tags look like the button tags ── */
.filter-tag {
  display: inline-flex; align-items: center;
  padding: 0.3rem 0.75rem;
  font-family: var(--font-display); font-weight: 500; font-size: 0.7rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-muted); background: transparent;
  border: 1px solid var(--border); cursor: pointer; text-decoration: none;
  transition: border-color 0.18s, color 0.18s;
}
.filter-tag:hover { border-color: var(--text-muted); color: var(--text-primary); }
.filter-tag.active { border-color: var(--red); color: var(--red); }


/* ═══════════════════════════════════════════════════
   KAVACH v2 — Footer, Product, Back-to-Top
   ═══════════════════════════════════════════════════ */

/* ─ MOUNTAIN SILHOUETTE ─ */
.footer-mountain { display:block; line-height:0; }
.footer-mountain svg { width:100%; display:block; }

/* ─ FOOTER ─ */
#site-footer { background:#111; padding:0; }
.footer-top-wrap { padding:4rem 0 3.5rem; }
.footer-grid {
  display:grid;
  grid-template-columns:1.6fr 1fr 1fr 1fr;
  gap:2.5rem 3rem;
}
.footer-logo {
  font-family:var(--font-display); font-size:1.75rem; font-weight:900;
  text-transform:uppercase; letter-spacing:0.05em;
  color:var(--text-primary); text-decoration:none;
  display:inline-block; margin-bottom:1rem;
}
.footer-logo span { color:var(--red); }
.footer-tagline {
  font-size:0.85rem; color:var(--text-muted); line-height:1.75;
  margin-bottom:1.5rem; max-width:26ch;
}
/* Social icons */
.footer-social { display:flex; gap:0.6rem; margin-bottom:1.5rem; }
.fsoc-link {
  display:inline-flex; align-items:center; justify-content:center;
  width:36px; height:36px; border-radius:50%;
  border:1px solid var(--border);
  color:var(--text-muted); text-decoration:none;
  transition:border-color .18s, color .18s;
}
.fsoc-link:hover { border-color:var(--red); color:var(--red); }
/* Payment badges */
.footer-payments { display:flex; flex-wrap:wrap; gap:0.4rem; }
.fpay-badge {
  padding:0.2rem 0.55rem;
  border:1px solid var(--border); border-radius:3px;
  font-size:0.65rem; font-weight:600; letter-spacing:0.08em;
  color:var(--text-muted); font-family:var(--font-display);
  text-transform:uppercase;
}
/* Footer columns */
.footer-col-title {
  font-family:var(--font-display); font-size:0.7rem; font-weight:700;
  letter-spacing:0.2em; text-transform:uppercase;
  color:var(--text-primary); margin-bottom:1.1rem;
}
.footer-col ul { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:0.6rem; }
.footer-col ul a {
  font-size:0.875rem; color:var(--text-muted); text-decoration:none;
  transition:color .15s;
}
.footer-col ul a:hover { color:var(--red); }
.footer-contact-block p { font-size:0.875rem; color:var(--text-muted); line-height:1.65; margin-bottom:0.6rem; }
.footer-contact-block a { color:var(--text-muted); text-decoration:none; transition:color .15s; }
.footer-contact-block a:hover { color:var(--red); }
.footer-contact-block strong a { color:var(--text-primary); }
/* Footer bottom bar */
.footer-bottom {
  border-top:1px solid var(--border); padding:1.25rem 0;
}
.footer-bottom .container {
  display:flex; align-items:center; justify-content:space-between; gap:1rem;
}
.footer-copy, .footer-pride {
  font-size:0.78rem; color:var(--text-muted);
}
.footer-pride { font-style:italic; }

/* ─ BACK TO TOP ─ */
.btn-top {
  position:fixed; bottom:1.75rem; right:1.75rem; z-index:800;
  width:44px; height:44px; border-radius:50%;
  background:var(--red); color:#fff; border:none; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 18px rgba(192,57,43,.4);
  opacity:0; transform:translateY(10px);
  transition:opacity .25s, transform .25s;
  pointer-events:none;
}
.btn-top.visible { opacity:1; transform:translateY(0); pointer-events:all; }
.btn-top:hover { background:#a93226; }

/* ─ BEST SELLER BADGE ─ */
.badge-bs, .rel-bs-badge {
  position:absolute; top:0.75rem; left:0.75rem; z-index:3;
  background:var(--red); color:#fff;
  font-family:var(--font-display); font-size:0.58rem; font-weight:700;
  letter-spacing:0.18em; text-transform:uppercase;
  padding:0.28rem 0.6rem; border-radius:2px;
}

/* ─ PRODUCT PAGE ─ */
.gallery-main-img-wrap { position:relative; }
.prod-cat-tag { font-size:0.75rem; text-transform:uppercase; letter-spacing:0.15em; color:var(--text-muted); margin-bottom:0.5rem; }
.product-info h1 { margin-bottom:1.25rem; }

/* Trust strip */
.trust-strip {
  display:flex; flex-wrap:wrap; gap:1rem;
  padding:1rem 0; border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  margin-bottom:1.5rem;
}
.trust-item { display:flex; align-items:center; gap:0.4rem; font-size:0.8rem; color:var(--text-muted); }
.trust-icon { font-size:1rem; }

/* Specs table */
.specs-table { margin-bottom:1.5rem; }
.spec-row {
  display:flex; justify-content:space-between; align-items:center;
  padding:0.6rem 0; border-bottom:1px solid var(--border);
  gap:1rem;
}
.spec-key {
  font-size:0.72rem; text-transform:uppercase; letter-spacing:0.15em;
  color:var(--text-muted); font-family:var(--font-display); font-weight:600;
}
.spec-val { font-size:0.875rem; color:var(--text-primary); font-weight:500; }

/* Size table */
.size-table { width:100%; border-collapse:collapse; font-size:0.82rem; }
.size-table th, .size-table td {
  text-align:left; padding:0.5rem 0.75rem;
  border-bottom:1px solid var(--border);
}
.size-table th {
  font-size:0.7rem; text-transform:uppercase; letter-spacing:0.12em;
  color:var(--text-muted); font-weight:600;
}
.size-table td { color:var(--text-muted); }
.size-note { margin-top:0.75rem; font-size:0.78rem; color:var(--text-muted); }

/* ─ PRODUCT HIGHLIGHTS (feature icons) ─ */
.product-highlights {
  padding:4.5rem 0;
  background:var(--surface);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.product-highlights .section-label { margin-bottom:2.5rem; }
.ph-grid {
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:1rem;
}
.ph-item {
  display:flex; flex-direction:column; align-items:center;
  text-align:center; gap:0.8rem;
}
.ph-icon {
  width:52px; height:52px;
  color:var(--text-primary);
  transition:color .2s;
}
.ph-item:hover .ph-icon { color:var(--red); }
.ph-label {
  font-family:var(--font-display); font-size:0.68rem; font-weight:600;
  text-transform:uppercase; letter-spacing:0.12em;
  color:var(--text-muted); line-height:1.5;
}

/* ─ IN-ACTION STRIP ─ */
.inaction-strip { padding:4rem 0; }
.inaction-strip .section-label { margin-bottom:1.5rem; }
.inaction-track {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:3px;
}
.inaction-frame {
  aspect-ratio:3/4; overflow:hidden;
}
.inaction-frame img {
  width:100%; height:100%; object-fit:cover;
  display:block;
  transition:transform .5s ease;
}
.inaction-frame:hover img { transform:scale(1.04); }

/* ─ RELATED PRODUCTS (4-col) ─ */
.rel-grid { grid-template-columns:repeat(4,1fr); }
.rel-img-wrap { position:relative; aspect-ratio:4/3; overflow:hidden; }
.rel-img { width:100%; height:100%; object-fit:cover; display:block; }
.rel-bs-badge { font-size:0.55rem; }
.rel-season {
  position:absolute; bottom:0.75rem; left:0.75rem;
  background:rgba(0,0,0,.7); color:#fff;
  font-family:var(--font-display); font-size:0.58rem; font-weight:600;
  letter-spacing:0.1em; text-transform:uppercase;
  padding:0.22rem 0.5rem; border-radius:2px;
}
.rel-cat { font-size:0.7rem; text-transform:uppercase; letter-spacing:0.1em; color:var(--text-muted); margin-bottom:0.2rem; }
.rel-name { font-size:0.95rem; font-weight:600; color:var(--text-primary); margin-bottom:0.2rem; }
.rel-terrain { font-size:0.75rem; color:var(--text-muted); margin-bottom:0.2rem; }
.rel-price { color:var(--red); font-weight:600; font-size:0.9rem; }

/* ─ ARCHIVE — colour swatches on cards ─ */
.card-swatches { display:flex; align-items:center; gap:4px; }
.card-swatch {
  display:inline-block; width:14px; height:14px;
  border-radius:50%; border:1.5px solid rgba(255,255,255,.2);
  cursor:default; transition:transform .15s;
}
.prod-card:hover .card-swatch { transform:scale(1.15); }
.card-swatch-more {
  font-size:0.62rem; font-weight:600;
  color:var(--text-muted); font-family:var(--font-display);
}
/* Best seller badge on archive cards */
.prod-img-wrap .badge-bs {
  position:absolute; top:0.75rem; left:0.75rem; z-index:3;
}

/* ─ MOBILE NAV CTA ─ */
.mobile-nav-cta { padding:1.5rem; border-top:1px solid var(--border); margin-top:auto; }

/* ─ RESPONSIVE ─ */
@media (max-width:1100px) {
  .footer-grid { grid-template-columns:1fr 1fr; gap:2rem; }
  .ph-grid { grid-template-columns:repeat(3,1fr); gap:1.5rem; }
  .rel-grid { grid-template-columns:repeat(2,1fr); }
  .inaction-track { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:768px) {
  .footer-grid { grid-template-columns:1fr 1fr; }
  .footer-brand-col { grid-column:1/-1; }
  .ph-grid { grid-template-columns:repeat(3,1fr); gap:1rem; }
  .ph-icon { width:42px; height:42px; }
  .product-highlights { padding:3rem 0; }
  .inaction-strip { padding:3rem 0; }
  .footer-bottom .container { flex-direction:column; text-align:center; gap:0.4rem; }
  .trust-strip { gap:0.75rem; }
  .rel-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:540px) {
  .footer-grid { grid-template-columns:1fr; }
  .ph-grid { grid-template-columns:repeat(2,1fr); }
  .inaction-track { grid-template-columns:1fr 1fr; }
}

/* ─ LIGHT MODE FOOTER MOUNTAIN ─ */
.light-mode .footer-mountain svg path[fill="#2a2a2a"] { fill:#c8c8c8; }
.light-mode .footer-mountain svg path[fill="#1a1a1a"] { fill:#b8b8b8; }
.light-mode .footer-mountain svg path[fill="#111111"] { fill:#e8e6e2; }
.light-mode #site-footer { background:#f0efec; }
.light-mode .fsoc-link { border-color:#ddd; }
.light-mode .fpay-badge { border-color:#ddd; }