/*!
 * IronForge Pro — Main Stylesheet
 * Version: 1.1.0
 *
 * Token-driven design system with brand colors, typography, and components.
 * Class names match the PHP templates exactly.
 */

/* 1. DESIGN TOKENS */
:root {
  --black: #080C10;
  --black2: #0F1419;
  --steel: #1C2330;
  --steel2: #2A3343;
  --red: #E63946;
  --red-dark: #C4202E;
  --gold: #F4A429;
  --gold-dark: #D88E1F;
  --white: #FFFFFF;
  --ice: #E8ECF1;
  --ash: #8892A6;
  --muted: #6B7685;
  --border: rgba(255,255,255,0.08);
  --border2: rgba(255,255,255,0.16);
  --success: #2ECC71;
  --warning: #F39C12;
  --danger: #E74C3C;
  --hf: 'Bebas Neue', 'Barlow Condensed', system-ui, sans-serif;
  --hf2: 'Barlow Condensed', system-ui, sans-serif;
  --bf: 'Barlow', system-ui, -apple-system, sans-serif;
  --r: 4px;
  --r-lg: 8px;
  --r-xl: 16px;
  --transition: 200ms cubic-bezier(.4,0,.2,1);
  --transition-slow: 400ms cubic-bezier(.4,0,.2,1);
  --max-w: 1280px;
  --nav-h: 72px;
}

/* 2. RESET & BASE */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; -webkit-tap-highlight-color: transparent; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--bf);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ice);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.search-open, body.menu-open { overflow: hidden; }
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--ice); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red); }
button { font-family: inherit; font-size: inherit; cursor: pointer; border: none; background: none; color: inherit; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--hf);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 0.5em;
  line-height: 1.05;
}
p { margin: 0 0 1rem; }
input, textarea, select { font-family: inherit; font-size: 16px; }
::selection { background: var(--red); color: var(--white); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 9999;
  padding: 8px 16px; background: var(--red); color: var(--white); font-weight: 700;
}
.skip-link:focus { left: 8px; top: 8px; }

.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px); -webkit-clip-path: inset(50%); clip-path: inset(50%);
  height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute !important;
  width: 1px; word-wrap: normal !important;
}

/* 3. LAYOUT PRIMITIVES */
.w, .container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
@media (min-width: 768px) { .w, .container { padding: 0 32px; } }
.section-pad { padding: 80px 0; }
@media (min-width: 768px) { .section-pad { padding: 100px 0; } }
.divider { height: 1px; background: var(--border); margin: 0; }
.sep { color: var(--muted); margin: 0 8px; }

/* 4. BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 28px;
  font-family: var(--hf2); font-weight: 700; font-size: 14px;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: var(--r); cursor: pointer;
  transition: all var(--transition);
  text-align: center; min-height: 48px;
  border: 2px solid transparent; white-space: nowrap; line-height: 1.2;
}
.btn-red { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); color: var(--white); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--black); }
.btn-lg { padding: 18px 36px; font-size: 16px; min-height: 56px; }
.btns { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 420px) { .btns { flex-direction: column; } .btns .btn { width: 100%; } }

.badge {
  display: inline-block; padding: 4px 10px;
  font-family: var(--hf2); font-weight: 700; font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: var(--r); line-height: 1.4;
}
.badge-red, .badge-sale { background: var(--red); color: var(--white); }
.badge-new { background: var(--gold); color: var(--black); }

/* 5. TOPBAR */
.topbar {
  background: var(--red); color: var(--white);
  font-size: 13px; font-family: var(--hf2); font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 8px 0; text-align: center;
}
.topbar-inner { display: flex; align-items: center; justify-content: center; gap: 16px; }
.topbar .lbl { color: var(--white); }

/* 6. SITE NAV */
.site-nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(8,12,16,0.95);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h); gap: 24px;
}
.logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.logo-icon { display: inline-block; width: 32px; height: 32px; margin-right: 8px; }
.logo-text {
  font-family: var(--hf); font-size: 22px; letter-spacing: 0.04em;
  color: var(--white); text-transform: uppercase;
}
.logo-text span { color: var(--red); }

.nav-links { display: none; flex: 1; justify-content: center; }
@media (min-width: 980px) { .nav-links { display: flex; } }

.nav-menu {
  list-style: none; display: flex; gap: 32px; margin: 0; padding: 0; align-items: center;
}
.nav-menu li { position: relative; }
.nav-menu a {
  font-family: var(--hf2); font-weight: 600; font-size: 14px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ice); padding: 8px 0; display: inline-block; position: relative;
}
.nav-menu a:hover { color: var(--red); }
.nav-menu a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--red);
  transition: width var(--transition);
}
.nav-menu a:hover::after,
.nav-menu .current-menu-item > a::after,
.nav-menu .current_page_item > a::after { width: 100%; }

.nav-menu .sub-menu {
  position: absolute; top: 100%; left: 0;
  background: var(--steel); border: 1px solid var(--border);
  list-style: none; margin: 0; padding: 8px 0; min-width: 200px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all var(--transition); border-radius: var(--r);
}
.nav-menu li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-menu .sub-menu a { display: block; padding: 10px 16px; font-size: 13px; }
.nav-menu .sub-menu a::after { display: none; }

.nav-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nav-icon-btn {
  width: 44px; height: 44px; border-radius: var(--r);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ice); transition: all var(--transition); position: relative;
}
.nav-icon-btn:hover { background: var(--steel); color: var(--red); }

.nav-cart { position: relative; }
.cart-count {
  position: absolute; top: 4px; right: 4px;
  background: var(--red); color: var(--white);
  font-family: var(--hf2); font-weight: 700; font-size: 10px;
  min-width: 16px; height: 16px; padding: 0 4px;
  border-radius: 8px; display: inline-flex;
  align-items: center; justify-content: center; line-height: 1;
}
.cart-count[data-count="0"] { display: none; }

.nav-wish { position: relative; }
.wish-count {
  position: absolute; top: 4px; right: 4px;
  background: var(--gold); color: var(--black);
  font-family: var(--hf2); font-weight: 700; font-size: 10px;
  min-width: 16px; height: 16px; padding: 0 4px;
  border-radius: 8px; display: inline-flex;
  align-items: center; justify-content: center; line-height: 1;
}
.wish-count[data-count="0"] { display: none; }

.hamburger {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ice); border-radius: var(--r);
}
@media (min-width: 980px) { .hamburger { display: none; } }

/* 7. SEARCH OVERLAY (CRITICAL: hidden by default) */
.search-overlay {
  position: fixed; inset: 0;
  background: rgba(8,12,16,0.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  z-index: 1500;
  display: none;
  align-items: flex-start; justify-content: center;
  padding: 80px 20px;
}
.search-overlay.open { display: flex; }
.search-close {
  position: absolute; top: 24px; right: 24px;
  font-family: var(--hf2); font-weight: 700; font-size: 14px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ice); padding: 12px 16px;
}
.search-close:hover { color: var(--red); }
.search-form { width: 100%; max-width: 640px; position: relative; }
.nav-search-input {
  width: 100%; background: transparent; border: none;
  border-bottom: 2px solid var(--border2);
  color: var(--white); font-family: var(--hf);
  font-size: clamp(28px, 5vw, 48px);
  letter-spacing: 0.02em; padding: 14px 0; outline: none;
  text-transform: uppercase;
}
.nav-search-input::placeholder { color: var(--muted); }
.nav-search-input:focus { border-bottom-color: var(--red); }
@media (max-width: 540px) {
  .nav-search-input { font-size: 24px; padding: 10px 0; }
  .search-overlay { padding: 60px 16px; }
}

/* 8. MOBILE MENU (CRITICAL: hidden by default) */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--black2); z-index: 1400;
  display: flex; flex-direction: column;
  padding: 90px 24px 40px;
  transform: translateX(-100%);
  transition: transform 300ms cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  visibility: hidden;
}
.mobile-menu.open { transform: translateX(0); visibility: visible; }
.mobile-menu .nav-menu, .mobile-menu ul {
  flex-direction: column; gap: 0;
  list-style: none; padding: 0; margin: 0;
}
.mobile-menu li { width: 100%; }
.mobile-menu a {
  font-family: var(--hf); font-size: 28px;
  letter-spacing: 0.04em; color: var(--white);
  padding: 14px 0; border-bottom: 1px solid var(--border);
  display: block; transition: var(--transition);
  text-transform: uppercase;
}
.mobile-menu a:hover, .mobile-menu a:focus {
  color: var(--red); padding-left: 10px;
}
.mobile-menu a::after { display: none; }

/* 9. HERO */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex; align-items: center;
  overflow: hidden;
  padding: 80px 0 120px;
  background: linear-gradient(180deg, var(--black) 0%, var(--steel) 100%);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  opacity: 0.4; background-size: cover; background-position: center;
}
.hero-bg-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(8,12,16,0.6), rgba(8,12,16,0.95));
}
.hero-grid-lines {
  position: absolute; inset: 0; z-index: 1;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 80px 80px; opacity: 0.3; pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 900px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--hf2); font-weight: 700; font-size: 14px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--red); margin-bottom: 24px;
}
.hero-eyebrow .dot, .hero-eyebrow .dot-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red);
  animation: pulse 1.6s infinite ease-out;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}
.hero h1, .hero .line1, .hero .line2, .hero .line3 {
  font-family: var(--hf);
  font-size: clamp(60px, 11vw, 180px);
  line-height: 0.85;
  letter-spacing: 0.01em; margin: 0;
  color: var(--white); text-transform: uppercase; display: block;
}
.hero .line2 { color: var(--red); }
.hero .line3 { -webkit-text-stroke: 2px var(--white); color: transparent; }
.hero-lead {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--ash); max-width: 600px;
  margin: 32px 0; line-height: 1.6;
}
.hero-stats {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px; margin-top: 48px;
  padding-top: 32px; border-top: 1px solid var(--border);
}
@media (min-width: 640px) { .hero-stats { grid-template-columns: repeat(4, 1fr); } }
.hero-stat-num {
  font-family: var(--hf); font-size: clamp(32px, 5vw, 56px);
  color: var(--white); display: block; line-height: 1;
}
.hero-stat-label {
  font-family: var(--hf2); font-weight: 600; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ash); margin-top: 8px; display: block;
}

/* 10. TRUST STRIP */
.trust-strip {
  background: var(--steel);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.trust-row { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 24px; }
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 640px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-item {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--hf2); font-weight: 600; font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ice); justify-content: center;
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* 11. CATEGORIES */
.categories-sec { padding: 80px 0; background: var(--black); }
.cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 48px; }
@media (min-width: 640px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .cat-grid { grid-template-columns: repeat(6, 1fr); } }
.cat-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--steel); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  transition: all var(--transition); aspect-ratio: 1;
  text-align: center; padding: 24px 16px;
  align-items: center; justify-content: center;
}
.cat-card:hover { border-color: var(--red); transform: translateY(-4px); background: var(--steel2); }
.cat-img { width: 100%; aspect-ratio: 1; object-fit: cover; margin-bottom: 12px; border-radius: var(--r); }
.cat-name { font-family: var(--hf); font-size: 18px; letter-spacing: 0.04em; color: var(--white); text-transform: uppercase; display: block; }
.cat-count { font-family: var(--bf); font-size: 12px; color: var(--ash); margin-top: 4px; display: block; }

/* 12. SECTION HEADER */
.sh, .sh-head, .prod-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 32px; flex-wrap: wrap; gap: 16px;
}
.sh h2, .sh-head h2, .prod-header h2 { font-size: clamp(36px, 5vw, 60px); margin: 0; }
.sh .s5, .sh-head .s5, .prod-header .s5 {
  font-family: var(--hf2); font-weight: 700; font-size: 13px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--red); display: block; margin-bottom: 8px;
}

/* 13. PRODUCT GRID & CARDS */
.prod-grid, .products {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
  list-style: none; padding: 0; margin: 0;
}
@media (min-width: 768px) { .prod-grid, .products { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
@media (min-width: 1024px) { .prod-grid, .products { grid-template-columns: repeat(4, 1fr); } }

.pc {
  background: var(--steel);
  border: 1px solid var(--border); border-radius: var(--r-lg);
  overflow: hidden; transition: all var(--transition);
  position: relative; display: flex; flex-direction: column;
}
.pc:hover { border-color: var(--red); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.4); }
.pc-img-link { display: block; position: relative; background: var(--black); aspect-ratio: 1; overflow: hidden; }
.pc-img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.pc:hover .pc-img { transform: scale(1.05); }
.pc-badges { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 4px; z-index: 2; }
.pc-wish-wrap { position: absolute; top: 12px; right: 12px; z-index: 3; }
.pc-wish-wrap .yith-wcwl-add-to-wishlist { margin: 0; }
.pc-wish-wrap a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(8,12,16,0.85); backdrop-filter: blur(8px);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--white);
}
.pc-wish-wrap a:hover { background: var(--red); }
.pc-body { padding: 16px; display: flex; flex-direction: column; flex: 1; }
.pc-brand { font-family: var(--hf2); font-weight: 600; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.pc-name { font-family: var(--hf); font-size: 18px; letter-spacing: 0.02em; color: var(--white); text-transform: uppercase; margin-bottom: 8px; line-height: 1.15; }
.pc-name a { color: inherit; }
.pc-name a:hover { color: var(--red); }
.pc-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 12px; color: var(--gold); font-size: 13px; }
.pc-rating-count { color: var(--muted); font-size: 12px; }
.pc-prices { display: flex; align-items: baseline; gap: 8px; margin-top: auto; margin-bottom: 12px; flex-wrap: wrap; }
.pc-price { font-family: var(--hf2); font-weight: 700; font-size: 22px; color: var(--white); }
.pc-price-old { font-family: var(--bf); font-size: 14px; color: var(--muted); text-decoration: line-through; }
.pc-footer { margin-top: auto; }
.pc-cart {
  width: 100%; display: inline-flex; align-items: center; justify-content: center;
  padding: 12px; background: var(--red); color: var(--white);
  font-family: var(--hf2); font-weight: 700; font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: var(--r); transition: var(--transition); border: none;
}
.pc-cart:hover { background: var(--red-dark); color: var(--white); }

/* 14. BRANDS */
.brands-sec {
  background: var(--black2); padding: 64px 0; overflow: hidden;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.brand-inner { overflow: hidden; }
.brand-track {
  display: flex; gap: 64px;
  animation: brandScroll 40s linear infinite;
  width: max-content;
}
@keyframes brandScroll { to { transform: translateX(-50%); } }
.brand-item, .brand-card {
  flex-shrink: 0; font-family: var(--hf);
  font-size: 32px; letter-spacing: 0.04em;
  color: var(--ash); text-transform: uppercase;
  transition: color var(--transition);
}
.brand-item:hover, .brand-card:hover { color: var(--white); }
.brands-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 640px) { .brands-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .brands-grid { grid-template-columns: repeat(5, 1fr); } }
.brand-card {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 32px 16px;
  background: var(--steel); border: 1px solid var(--border);
  border-radius: var(--r-lg); text-align: center; font-size: 18px;
}
.brand-card:hover { border-color: var(--red); background: var(--steel2); color: var(--white); }
.brand-card-name { font-family: var(--hf); font-size: 20px; color: var(--white); margin-bottom: 4px; }
.brand-card-count { font-family: var(--bf); font-size: 12px; color: var(--ash); }

/* 15. BLOG SECTION */
.blog-sec { background: var(--black); }
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 48px; }
@media (min-width: 640px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-card {
  background: var(--steel); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  transition: all var(--transition);
  display: flex; flex-direction: column;
}
.blog-card:hover { border-color: var(--red); transform: translateY(-4px); }
.blog-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.blog-card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.blog-card-meta {
  font-family: var(--hf2); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
  display: flex; gap: 12px; flex-wrap: wrap;
}
.blog-card-title {
  font-family: var(--hf); font-size: 22px;
  color: var(--white); margin-bottom: 12px;
  line-height: 1.2; text-transform: uppercase;
}
.blog-card-title a { color: inherit; }
.blog-card-title a:hover { color: var(--red); }
.blog-card-excerpt { color: var(--ash); font-size: 14px; line-height: 1.6; margin-bottom: 16px; flex: 1; }

/* 16. CTA BANNER */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  text-align: center; color: var(--white);
}
.cta-inner { max-width: 720px; margin: 0 auto; padding: 0 20px; }
.cta-inner h2 { color: var(--white); font-size: clamp(36px, 5vw, 64px); margin-bottom: 16px; }
.cta-inner p { font-size: 18px; margin-bottom: 32px; opacity: 0.9; }
.cta-banner .btn-outline { border-color: var(--white); color: var(--white); }
.cta-banner .btn-outline:hover { background: var(--white); color: var(--red); }

/* 17. FOOTER */
.site-footer { background: var(--black); border-top: 1px solid var(--border); padding-top: 64px; color: var(--ash); }
.foot-grid { display: grid; grid-template-columns: 1fr; gap: 40px; padding-bottom: 48px; }
@media (min-width: 640px) { .foot-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .foot-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; } }
@media (min-width: 1024px) { .foot-grid.foot-grid-5 { grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr; gap: 40px; } }
.foot-col { color: var(--ash); }
.foot-title {
  font-family: var(--hf); font-size: 16px;
  letter-spacing: 0.06em; color: var(--white);
  text-transform: uppercase; margin-bottom: 20px;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; }
.foot-col li { margin-bottom: 8px; }
.foot-col a { color: var(--ash); font-size: 14px; transition: color var(--transition); }
.foot-col a:hover { color: var(--red); }
.foot-brand .logo-text { color: var(--white); }
.foot-brand .logo-text span { color: var(--red); }
.foot-tag { margin-top: 16px; font-size: 14px; line-height: 1.6; }
.social-icons { display: flex; gap: 12px; margin-top: 24px; }
.social-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--steel); display: inline-flex;
  align-items: center; justify-content: center;
  color: var(--ice); transition: all var(--transition);
}
.social-icon:hover { background: var(--red); color: var(--white); transform: translateY(-2px); }
.foot-bottom {
  border-top: 1px solid var(--border); padding: 24px 0;
  display: flex; flex-direction: column; gap: 12px;
  align-items: center; font-size: 13px; color: var(--muted); text-align: center;
}
@media (min-width: 768px) { .foot-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.foot-copy { font-size: 13px; color: var(--muted); }

.newsletter {
  background: var(--steel); padding: 56px 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.nl-inner { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
@media (min-width: 768px) { .nl-inner { grid-template-columns: 1fr 1fr; } }
.nl-inner h2 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 8px; }
.nl-inner p { color: var(--ash); margin: 0; }
.nl-form { display: flex; gap: 8px; flex-wrap: wrap; }
.nl-form input[type="email"] {
  flex: 1; min-width: 200px;
  padding: 14px 16px; background: var(--black);
  border: 1px solid var(--border2); color: var(--white);
  border-radius: var(--r); font-family: var(--bf);
}
.nl-form input[type="email"]:focus { outline: none; border-color: var(--red); }
.nl-form button {
  padding: 14px 28px;
  background: var(--red); color: var(--white);
  font-family: var(--hf2); font-weight: 700; font-size: 14px;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: var(--r); cursor: pointer;
}
.nl-form button:hover { background: var(--red-dark); }

/* 18. PAGE HERO */
.page-hero {
  background: linear-gradient(180deg, var(--steel) 0%, var(--black) 100%);
  padding: 64px 0 48px; border-bottom: 1px solid var(--border);
}
.page-hero-inner { max-width: 800px; }
.page-title, .entry-title { font-size: clamp(36px, 6vw, 72px); margin-bottom: 16px; }
.page-subtitle { font-size: 18px; color: var(--ash); margin: 0; max-width: 600px; }
.breadcrumb {
  font-family: var(--hf2); font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 16px;
}
.breadcrumb a { color: var(--ash); }
.breadcrumb a:hover { color: var(--red); }

/* 19. SHOP / ARCHIVE */
.shop-layout { display: grid; grid-template-columns: 1fr; gap: 32px; padding: 48px 0; }
@media (min-width: 980px) { .shop-layout { grid-template-columns: 240px 1fr; } }
.shop-sidebar { color: var(--ash); }
@media (min-width: 980px) {
  .shop-sidebar {
    position: sticky; top: calc(var(--nav-h) + 16px);
    max-height: calc(100vh - var(--nav-h) - 32px); overflow-y: auto;
  }
}
.shop-main { min-width: 0; }
.shop-main .products { margin-top: 24px; }
.woocommerce-shop .site-main, .woocommerce-main { padding: 32px 0; }
.woocommerce-result-count { color: var(--ash); font-size: 14px; margin: 0 0 16px; }
.woocommerce-ordering select {
  padding: 10px 12px; background: var(--steel); color: var(--white);
  border: 1px solid var(--border); border-radius: var(--r); font-family: var(--bf);
}

.pagination, .woocommerce-pagination { display: flex; justify-content: center; margin-top: 48px; }
.pagination ul, .woocommerce-pagination ul {
  list-style: none; padding: 0; margin: 0; display: flex; gap: 8px;
}
.pagination .page-numbers, .woocommerce-pagination .page-numbers {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--steel); color: var(--ice);
  border-radius: var(--r); font-family: var(--hf2); font-weight: 600;
  transition: var(--transition);
}
.pagination .page-numbers.current, .woocommerce-pagination .page-numbers.current,
.pagination .page-numbers:hover, .woocommerce-pagination .page-numbers:hover {
  background: var(--red); color: var(--white);
}

/* 20. PRODUCT DETAIL */
.woocommerce-single .site-main { padding: 32px 0; }
.pdp-grid { display: grid; grid-template-columns: 1fr; gap: 40px; padding: 32px 0; }
@media (min-width: 900px) { .pdp-grid { grid-template-columns: 1.1fr 1fr; gap: 56px; } }
.pdp-gallery { position: relative; background: var(--steel); border-radius: var(--r-lg); overflow: hidden; }
.pdp-gallery img { width: 100%; }
.pdp-summary, .summary, .entry-summary { padding: 0; }
.pdp-brand {
  font-family: var(--hf2); font-weight: 600; font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.pdp-name, .product_title { font-size: clamp(28px, 4vw, 48px); margin-bottom: 16px; }
.pdp-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; color: var(--gold); }
.pdp-rating-text { color: var(--muted); font-size: 14px; }
.pdp-price-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.pdp-price-row ins { background: none; text-decoration: none; font-family: var(--hf2); font-weight: 700; font-size: 32px; color: var(--white); }
.pdp-price-row del { font-family: var(--bf); font-size: 18px; color: var(--muted); }
.pdp-price-row .amount { font-family: var(--hf2); font-weight: 700; font-size: 32px; color: var(--white); }
.pdp-stock {
  font-family: var(--hf2); font-weight: 600; font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 24px; display: inline-flex; align-items: center; gap: 6px;
}
.pdp-stock.in-stock, .stock.in-stock { color: var(--success); }
.pdp-stock.out-of-stock, .stock.out-of-stock { color: var(--danger); }
.pdp-stock::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.pdp-actions, .cart {
  display: grid; grid-template-columns: auto 1fr;
  gap: 12px; align-items: stretch; margin-bottom: 24px;
}
@media (max-width: 540px) { .pdp-actions, .cart { grid-template-columns: 1fr; } }
.cart .quantity input, .pdp-actions input.qty, .qty {
  width: 80px; padding: 14px 12px;
  background: var(--steel); color: var(--white);
  border: 1px solid var(--border); border-radius: var(--r);
  font-family: var(--hf2); font-weight: 700; font-size: 16px; text-align: center;
}
.single_add_to_cart_button {
  padding: 14px 28px;
  background: var(--red); color: var(--white);
  font-family: var(--hf2); font-weight: 700; font-size: 14px;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: 2px solid var(--red); border-radius: var(--r);
  min-height: 50px; cursor: pointer; transition: var(--transition);
}
.single_add_to_cart_button:hover { background: var(--red-dark); border-color: var(--red-dark); color: var(--white); }
.pdp-wishlist, .pdp-wish-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; background: var(--steel); color: var(--ice);
  border-radius: var(--r);
  font-family: var(--hf2); font-weight: 600; font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: 1px solid var(--border); transition: var(--transition);
}
.pdp-wishlist:hover, .pdp-wish-btn:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.pdp-meta { border-top: 1px solid var(--border); padding-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.pdp-meta-item { display: flex; gap: 8px; font-size: 14px; }
.pdp-meta-item strong {
  color: var(--white);
  font-family: var(--hf2); font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; min-width: 80px;
}
.pdp-meta-item .lbl { color: var(--ash); }

.pdp-tabs-wrap, .woocommerce-tabs {
  margin-top: 48px; border-top: 1px solid var(--border); padding-top: 32px;
}
.woocommerce-tabs ul.tabs {
  list-style: none; padding: 0; margin: 0 0 24px;
  display: flex; gap: 24px; border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.woocommerce-tabs ul.tabs li { margin: 0; padding: 0; }
.woocommerce-tabs ul.tabs li a {
  display: inline-block; padding: 12px 0;
  font-family: var(--hf2); font-weight: 700; font-size: 13px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted);
  border-bottom: 2px solid transparent; margin-bottom: -1px;
}
.woocommerce-tabs ul.tabs li.active a, .woocommerce-tabs ul.tabs li a:hover {
  color: var(--white); border-bottom-color: var(--red);
}

/* 21. CART PAGE */
.cart-page, .woocommerce-cart { padding: 32px 0 64px; }
.cart-grid { display: grid; grid-template-columns: 1fr; gap: 32px; margin-top: 24px; }
@media (min-width: 900px) { .cart-grid { grid-template-columns: 1fr 360px; } }
.cart-items {
  background: var(--steel); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 24px;
}
.shop_table, .woocommerce-cart-form__contents, table.cart {
  width: 100%; border-collapse: collapse; margin: 0;
}
.shop_table thead { display: none; }
.shop_table tr, .woocommerce-cart-form__cart-item {
  display: grid; grid-template-columns: 80px 1fr auto;
  gap: 16px; align-items: center;
  padding: 16px 0; border-bottom: 1px solid var(--border);
}
.shop_table tr:last-child, .woocommerce-cart-form__cart-item:last-child { border-bottom: none; }
.shop_table td { padding: 0; border: none; }
.product-thumbnail img { width: 80px; height: 80px; object-fit: cover; border-radius: var(--r); background: var(--black); }
.product-name { font-family: var(--hf); font-size: 18px; color: var(--white); }
.product-name a { color: inherit; }
.product-name a:hover { color: var(--red); }
.product-price, .product-subtotal { font-family: var(--hf2); font-weight: 700; font-size: 18px; color: var(--white); }
.product-quantity input.qty { width: 60px; padding: 8px; font-size: 14px; }
.product-remove a, .remove {
  color: var(--muted); font-size: 24px; line-height: 1;
  display: inline-block; width: 32px; height: 32px; text-align: center;
}
.product-remove a:hover, .remove:hover { color: var(--red); }
.actions { padding-top: 16px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.coupon { display: flex; gap: 8px; }
.coupon input[type="text"] {
  padding: 12px;
  background: var(--black); color: var(--white);
  border: 1px solid var(--border); border-radius: var(--r); font-family: var(--bf);
}
.coupon button {
  padding: 12px 20px;
  background: var(--steel2); color: var(--white);
  font-family: var(--hf2); font-weight: 700; font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: var(--r);
}
.coupon button:hover { background: var(--red); }
.cart-collaterals {
  background: var(--steel); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 24px;
}
.cart-collaterals h2 { font-size: 24px; margin-bottom: 16px; }
.cart-collaterals .shop_table tr { grid-template-columns: 1fr auto; padding: 12px 0; }
.ship-progress { margin-bottom: 16px; }
.ship-bar { height: 8px; background: var(--black); border-radius: 4px; overflow: hidden; }
.ship-bar-fill {
  height: 100%; background: linear-gradient(90deg, var(--red), var(--gold));
  width: 0; transition: width 600ms;
}
.ship-bar-fill.qualified { background: var(--success); width: 100%; }

/* 22. CHECKOUT */
.checkout-page, .woocommerce-checkout { padding: 32px 0 64px; }
.checkout-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 900px) { .checkout-grid { grid-template-columns: 1.4fr 1fr; } }
.checkout-main { background: var(--steel); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 32px; }
.checkout-section { margin-bottom: 32px; }
.checkout-section:last-child { margin-bottom: 0; }
.checkout-section-title {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--hf); font-size: 22px;
  letter-spacing: 0.04em; color: var(--white);
  text-transform: uppercase; margin-bottom: 20px;
}
.step-num {
  width: 32px; height: 32px;
  background: var(--red); color: var(--white); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--hf2); font-weight: 700; font-size: 14px;
}
.woocommerce-checkout .form-row, .checkout-page .form-row {
  display: flex; flex-direction: column; margin-bottom: 16px;
}
.woocommerce-checkout label, .checkout-page label {
  font-family: var(--hf2); font-weight: 600; font-size: 12px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ash); margin-bottom: 6px;
}
.woocommerce-checkout input[type="text"], .woocommerce-checkout input[type="email"],
.woocommerce-checkout input[type="tel"], .woocommerce-checkout textarea,
.woocommerce-checkout select, .checkout-page input[type="text"],
.checkout-page input[type="email"], .checkout-page input[type="tel"],
.checkout-page textarea, .checkout-page select, .input-text {
  width: 100%; padding: 12px 14px;
  background: var(--black); color: var(--white);
  border: 1px solid var(--border2); border-radius: var(--r);
  font-family: var(--bf); font-size: 16px;
}
.woocommerce-checkout input:focus, .woocommerce-checkout textarea:focus, .woocommerce-checkout select:focus,
.checkout-page input:focus, .input-text:focus { outline: none; border-color: var(--red); }

.checkout-sidebar { position: sticky; top: calc(var(--nav-h) + 16px); align-self: flex-start; }
.checkout-summary {
  background: var(--steel); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 24px; margin-bottom: 16px;
}
.checkout-summary-title { font-size: 20px; margin-bottom: 16px; color: var(--white); }
.checkout-summary-items {
  list-style: none; padding: 0; margin: 0 0 16px;
  border-bottom: 1px solid var(--border); padding-bottom: 16px;
}
.cs-line { display: grid; grid-template-columns: 56px 1fr auto; gap: 12px; align-items: center; margin-bottom: 12px; }
.cs-thumb-wrap { position: relative; width: 56px; height: 56px; }
.cs-thumb-wrap img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--r); background: var(--black); }
.cs-qty {
  position: absolute; top: -6px; right: -6px;
  background: var(--red); color: var(--white);
  font-family: var(--hf2); font-weight: 700; font-size: 11px;
  min-width: 20px; height: 20px; padding: 0 5px;
  border-radius: 10px; display: inline-flex;
  align-items: center; justify-content: center;
}
.cs-info { min-width: 0; }
.cs-name {
  font-family: var(--hf2); font-weight: 600; font-size: 14px;
  color: var(--white); letter-spacing: 0.04em; text-transform: uppercase;
}
.cs-price { font-family: var(--hf2); font-weight: 700; font-size: 14px; color: var(--white); }
.cs-discount { color: var(--success); }
.cs-totals { list-style: none; padding: 0; margin: 0; }
.cs-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 14px; color: var(--ash); }
.cs-total {
  border-top: 1px solid var(--border); margin-top: 12px; padding-top: 12px;
  font-family: var(--hf2); font-weight: 700; font-size: 18px; color: var(--white);
}
.checkout-trust {
  display: flex; flex-direction: column; gap: 12px;
  font-size: 13px; color: var(--ash);
  padding: 16px; background: var(--black2); border-radius: var(--r);
  border: 1px solid var(--border); margin-top: 16px;
}
.checkout-trust > div { display: flex; align-items: center; gap: 8px; }

.customer-details-col, .customer-details-billing, .customer-details-shipping { display: grid; gap: 12px; }
@media (min-width: 600px) { .customer-details-col { grid-template-columns: 1fr 1fr; } }

.woocommerce-checkout-payment {
  background: var(--black2); border-radius: var(--r-lg);
  padding: 16px; border: 1px solid var(--border);
}
.wc_payment_methods { list-style: none; padding: 0; margin: 0 0 16px; }
.wc_payment_method { padding: 12px 0; border-bottom: 1px solid var(--border); }
.wc_payment_method:last-child { border-bottom: none; }
.wc_payment_method label {
  font-family: var(--hf2); font-weight: 600;
  color: var(--white); text-transform: none;
  letter-spacing: 0; font-size: 14px; margin-bottom: 0;
}
.payment_box {
  margin-top: 12px; padding: 12px;
  background: var(--black); border-radius: var(--r);
  font-size: 13px; color: var(--ash);
}
.place-order .button, #place_order {
  width: 100%; padding: 16px;
  background: var(--red); color: var(--white);
  font-family: var(--hf2); font-weight: 700; font-size: 16px;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: none; border-radius: var(--r); cursor: pointer; margin-top: 16px;
}
#place_order:hover { background: var(--red-dark); }

/* 23. THANK YOU */
.thankyou-page, .woocommerce-order { max-width: 700px; margin: 0 auto; padding: 64px 20px; text-align: center; }
.confirm-success { padding: 32px 0; }
.confirm-fail { padding: 32px 0; color: var(--ice); }
.confirm-check {
  width: 96px; height: 96px; border-radius: 50%;
  background: var(--success); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.thankyou-title { font-size: clamp(36px, 5vw, 64px); margin-bottom: 16px; color: var(--white); }
.thankyou-title span { color: var(--red); }
.thankyou-lead { font-size: 18px; color: var(--ash); margin-bottom: 32px; }
.confirm-summary {
  background: var(--steel); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 24px;
  text-align: left; margin-bottom: 32px;
}
.order-overview, .woocommerce-thankyou-order-details {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr; gap: 12px;
}
@media (min-width: 600px) {
  .order-overview, .woocommerce-thankyou-order-details { grid-template-columns: repeat(2, 1fr); }
}
.order-overview li, .woocommerce-thankyou-order-details li {
  padding: 12px;
  background: var(--black2); border-radius: var(--r);
  border: 1px solid var(--border);
}
.order-overview .lbl, .woocommerce-thankyou-order-details .lbl {
  display: block;
  font-family: var(--hf2); font-weight: 600; font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ash); margin-bottom: 4px;
}
.order-overview strong, .woocommerce-thankyou-order-details strong {
  font-family: var(--hf2); font-weight: 700; color: var(--white);
}

/* 24. ABOUT, CONTACT, BLOG */
.content-section { padding: 64px 0; }
.page-content { font-size: 17px; line-height: 1.7; color: var(--ice); }
.page-content p { margin-bottom: 1.2em; }
.page-content h2 { font-size: clamp(28px, 4vw, 44px); margin: 1.5em 0 0.6em; }
.page-content h3 { font-size: clamp(22px, 3vw, 32px); margin: 1.2em 0 0.5em; }
.about-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin: 48px 0; }
@media (min-width: 768px) { .about-stats { grid-template-columns: repeat(4, 1fr); } }
.about-stat {
  text-align: center; padding: 24px;
  background: var(--steel); border: 1px solid var(--border); border-radius: var(--r-lg);
}
.about-stat-num {
  display: block;
  font-family: var(--hf); font-size: clamp(36px, 5vw, 56px);
  color: var(--red); line-height: 1;
}
.about-stat-label {
  display: block;
  font-family: var(--hf2); font-weight: 600; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ash); margin-top: 8px;
}
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 48px; } }
.contact-block {
  background: var(--steel); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 32px; margin-bottom: 16px;
}
.contact-title {
  font-family: var(--hf); font-size: 20px;
  letter-spacing: 0.04em; color: var(--white);
  text-transform: uppercase; margin-bottom: 12px;
}
.contact-info { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.contact-link { font-family: var(--hf2); font-weight: 600; color: var(--white); }
.contact-link:hover { color: var(--red); }
.contact-form-wrap {
  background: var(--steel); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 32px;
}

.post-hero {
  position: relative; min-height: 400px;
  background: var(--steel); display: flex; align-items: flex-end;
  overflow: hidden; margin-bottom: 48px;
}
.post-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.post-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,12,16,0.4), rgba(8,12,16,0.95));
  z-index: 1;
}
.post-hero .container { position: relative; z-index: 2; padding-top: 80px; padding-bottom: 48px; }
.post-cat {
  display: inline-block; padding: 6px 14px;
  background: var(--red); color: var(--white);
  font-family: var(--hf2); font-weight: 700; font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: var(--r); margin-bottom: 16px;
}
.post-title { font-size: clamp(36px, 6vw, 72px); margin-bottom: 16px; color: var(--white); }
.post-meta {
  display: flex; gap: 16px; flex-wrap: wrap;
  font-family: var(--hf2); font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--ash);
}
.post-meta .post-date { color: var(--ash); }
.post-meta .post-reading { color: var(--gold); }
.post-meta .post-comments { color: var(--ash); }
.post-body {
  max-width: 720px; margin: 0 auto;
  padding: 0 20px 64px;
  font-size: 18px; line-height: 1.75; color: var(--ice);
}
.post-body h2 { font-size: clamp(28px, 4vw, 44px); margin: 2em 0 0.6em; }
.post-body h3 { font-size: clamp(22px, 3vw, 32px); margin: 1.5em 0 0.5em; }
.post-body p { margin-bottom: 1.3em; }
.post-body img { border-radius: var(--r); margin: 1.5em 0; }
.post-body a { color: var(--red); text-decoration: underline; }
.post-body a:hover { color: var(--gold); }
.post-body blockquote {
  border-left: 4px solid var(--red);
  padding: 12px 0 12px 24px; margin: 2em 0;
  background: var(--steel); font-style: italic; color: var(--white);
  border-radius: 0 var(--r) var(--r) 0;
}

.comments-area {
  max-width: 720px; margin: 0 auto;
  padding: 48px 20px; border-top: 1px solid var(--border);
}
.comments-title { font-size: 28px; margin-bottom: 24px; }
.comment-list { list-style: none; padding: 0; margin: 0 0 32px; }
.comment-list li { padding: 16px 0; border-bottom: 1px solid var(--border); }
.no-comments { color: var(--ash); font-style: italic; margin-bottom: 24px; }

/* 25. WIDGETS */
.widget {
  background: var(--steel); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 20px; margin-bottom: 16px;
}
.widget-title {
  font-family: var(--hf); font-size: 18px;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--white); margin-bottom: 16px;
}
.widget ul { list-style: none; padding: 0; margin: 0; }
.widget li { padding: 6px 0; }
.widget a { color: var(--ice); }
.widget a:hover { color: var(--red); }

/* WC notices */
.woocommerce-message, .woocommerce-info, .woocommerce-error {
  padding: 14px 18px; border-radius: var(--r);
  margin: 0 0 24px; font-size: 14px;
}
.woocommerce-message { background: rgba(46,204,113,0.15); border: 1px solid var(--success); color: var(--success); }
.woocommerce-info { background: rgba(244,164,41,0.15); border: 1px solid var(--gold); color: var(--gold); }
.woocommerce-error { background: rgba(231,76,60,0.15); border: 1px solid var(--danger); color: var(--danger); }
.woocommerce-message a, .woocommerce-info a, .woocommerce-error a { color: inherit; text-decoration: underline; }

/* 26. TOAST */
.toast-stack {
  position: fixed; bottom: 24px; right: 24px; z-index: 2000;
  display: flex; flex-direction: column; gap: 8px; pointer-events: none;
}
.toast-stack .toast {
  pointer-events: auto;
  background: var(--steel); border: 1px solid var(--border);
  color: var(--white); padding: 12px 16px;
  border-radius: var(--r); font-size: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3); max-width: 320px;
}

/* 27. ANIMATIONS */
.fade-in { animation: fadeIn 600ms ease-out both; }
.stagger > * { animation: fadeIn 600ms ease-out both; }
.stagger > *:nth-child(1) { animation-delay: 0ms; }
.stagger > *:nth-child(2) { animation-delay: 60ms; }
.stagger > *:nth-child(3) { animation-delay: 120ms; }
.stagger > *:nth-child(4) { animation-delay: 180ms; }
.stagger > *:nth-child(5) { animation-delay: 240ms; }
.stagger > *:nth-child(6) { animation-delay: 300ms; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* 28. WC FALLBACK */
.wc-fallback { padding: 32px 0; }
.out, .out-of-stock { color: var(--danger); }

/* 29. RESPONSIVE TWEAKS */
@media (max-width: 980px) { .nav-links { display: none; } }
@media (max-width: 540px) {
  .section-pad { padding: 56px 0; }
  .hero { padding: 48px 0 64px; min-height: auto; }
  .topbar { font-size: 11px; padding: 6px 0; }
  .topbar-inner { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .brand-track { animation: none; }
}

@media print {
  .topbar, .site-nav, .site-footer, .nav-actions, .pdp-actions, .checkout-trust, .cta-banner { display: none; }
  body { color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
}

:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }
button:focus-visible, a:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }

/* CONTACT FORM (built-in) */
.ironforge-contact-form { display: flex; flex-direction: column; gap: 16px; }
.ironforge-contact-form .form-row-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
@media (min-width: 600px) {
  .ironforge-contact-form .form-row-grid { grid-template-columns: 1fr 1fr; }
}
.ironforge-contact-form .form-field { display: flex; flex-direction: column; gap: 6px; }
.ironforge-contact-form label {
  font-family: var(--hf2);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ash);
}
.ironforge-contact-form input,
.ironforge-contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--border2);
  border-radius: var(--r);
  font-family: var(--bf);
  font-size: 16px;
  resize: vertical;
}
.ironforge-contact-form input:focus,
.ironforge-contact-form textarea:focus {
  outline: none;
  border-color: var(--red);
}
.ironforge-contact-form .btn { align-self: flex-start; margin-top: 8px; }
.contact-msg {
  padding: 14px 18px;
  border-radius: var(--r);
  font-size: 14px;
  margin-bottom: 8px;
}
.contact-msg-success {
  background: rgba(46, 204, 113, 0.15);
  border: 1px solid var(--success);
  color: var(--success);
}
.contact-msg-error {
  background: rgba(231, 76, 60, 0.15);
  border: 1px solid var(--danger);
  color: var(--danger);
}

/* HOMEPAGE FEATURED PRODUCTS — fix grid alignment */
.products .prod-grid > * { width: 100%; min-width: 0; }
.prod-grid li.product, .prod-grid .pc { list-style: none; }
.products .pc-img-link img,
.products .pc img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   Why IronForge — value props grid
   ============================================================ */
.why-sec { background: linear-gradient(180deg, #0a0a0c 0%, #111114 100%); }
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}
.why-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
    padding: 32px 28px;
    transition: border-color 0.25s ease, transform 0.25s ease;
    position: relative;
}
.why-card:hover {
    border-color: rgba(192, 32, 32, 0.4);
    transform: translateY(-3px);
}
.why-icon {
    color: #c02020;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 4px;
    background: rgba(192, 32, 32, 0.08);
    border: 1px solid rgba(192, 32, 32, 0.2);
}
.why-card h3 {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #fff;
    margin: 0 0 12px;
}
.why-card p {
    color: rgba(255,255,255,0.65);
    font-size: 14.5px;
    line-height: 1.65;
    margin: 0;
}

/* ============================================================
   Testimonials grid
   ============================================================ */
.testimonials-sec { background: #0a0a0c; }
.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 48px;
}
.testi-card {
    background: linear-gradient(135deg, #14141a 0%, #0f0f12 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
    padding: 32px 28px;
    margin: 0;
    position: relative;
    transition: border-color 0.3s ease;
}
.testi-card:hover { border-color: rgba(212, 166, 90, 0.3); }
.testi-card::before {
    content: '"';
    position: absolute;
    top: 12px;
    right: 24px;
    font-size: 80px;
    line-height: 1;
    font-family: Georgia, serif;
    color: rgba(212, 166, 90, 0.15);
    pointer-events: none;
}
.testi-stars {
    color: #d4a65a;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}
.testi-card blockquote {
    color: rgba(255,255,255,0.85);
    font-size: 15.5px;
    line-height: 1.7;
    margin: 0 0 24px;
    padding: 0;
    border: none;
    font-style: normal;
}
.testi-card figcaption {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 18px;
}
.testi-name {
    font-weight: 700;
    color: #fff;
    font-size: 14.5px;
    margin-bottom: 4px;
}
.testi-role {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ============================================================
   FAQ accordion
   ============================================================ */
.faq-sec { background: linear-gradient(180deg, #111114 0%, #0a0a0c 100%); }
.faq-grid {
    max-width: 880px;
    margin: 48px auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
    overflow: hidden;
    transition: border-color 0.25s ease;
}
.faq-item[open] { border-color: rgba(192, 32, 32, 0.4); }
.faq-item summary {
    cursor: pointer;
    padding: 20px 56px 20px 24px;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    list-style: none;
    position: relative;
    user-select: none;
    transition: background 0.2s ease;
}
.faq-item summary:hover { background: rgba(255,255,255,0.03); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    line-height: 1;
    color: #c02020;
    font-weight: 300;
    transition: transform 0.25s ease;
}
.faq-item[open] summary::after {
    content: '−';
    transform: translateY(-50%) rotate(0deg);
}
.faq-body {
    padding: 0 24px 24px;
    color: rgba(255,255,255,0.7);
    font-size: 14.5px;
    line-height: 1.7;
}
.faq-body p { margin: 0; }

/* ============================================================
   Shop value strip
   ============================================================ */
.shop-value-strip {
    background: linear-gradient(90deg, rgba(192,32,32,0.05) 0%, rgba(212,166,90,0.05) 100%);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 20px 0;
}
.shop-value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}
.shop-value-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.85);
    font-size: 14px;
}
.shop-value-item svg { color: #c02020; flex-shrink: 0; }
.shop-value-item strong { color: #fff; font-weight: 700; }

/* ============================================================
   Shop help (buying guide + quick FAQ)
   ============================================================ */
.shop-help-sec {
    background: linear-gradient(180deg, #0a0a0c 0%, #111114 100%);
    border-top: 1px solid rgba(255,255,255,0.06);
}
.shop-help-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}
@media (max-width: 880px) {
    .shop-help-grid { grid-template-columns: 1fr; gap: 40px; }
}
.shop-help-intro h2 {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin: 12px 0 16px;
    line-height: 1.2;
}
.shop-help-intro p {
    color: rgba(255,255,255,0.7);
    font-size: 15.5px;
    line-height: 1.7;
    margin-bottom: 24px;
}
.shop-help-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}
.shop-help-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255,255,255,0.85);
    font-size: 14.5px;
    line-height: 1.6;
}
.shop-help-point svg {
    color: #c02020;
    flex-shrink: 0;
    margin-top: 2px;
}
.shop-help-faq h3 {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #fff;
    margin: 0 0 24px;
}
.shop-help-faq .faq-item { margin-bottom: 12px; }

/* ============================================================
 * v1.3.0 — Homepage extensions: Why, Press, Compare table
 * ============================================================ */

/* Why IronForge Pro */
.why-sec { background: var(--bg, #0a0a0a); position: relative; }
.why-sec .why-lead {
    color: var(--muted, #a0a0a0);
    max-width: 720px;
    margin: 18px auto 0;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.7;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 56px;
}
.why-card {
    position: relative;
    padding: 32px 28px 28px;
    background: linear-gradient(180deg, rgba(20,20,20,0.95), rgba(15,15,15,0.85));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
    transition: border-color 0.25s, transform 0.25s;
}
.why-card:hover {
    border-color: rgba(220,38,38,0.4);
    transform: translateY(-3px);
}
.why-card .why-num {
    font-family: var(--font-display, 'Bebas Neue', sans-serif);
    font-size: 2.4rem;
    color: var(--accent, #dc2626);
    line-height: 1;
    margin-bottom: 14px;
    letter-spacing: 0.02em;
}
.why-card h3 {
    font-family: var(--font-display, 'Bebas Neue', sans-serif);
    font-size: 1.5rem;
    letter-spacing: 0.04em;
    color: #fff;
    margin: 0 0 12px;
}
.why-card p {
    color: var(--muted, #a0a0a0);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Press strip */
.press-strip {
    background: rgba(0,0,0,0.4);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 32px 0;
}
.press-strip .press-lbl {
    display: block;
    text-align: center;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    color: var(--muted, #a0a0a0);
    margin-bottom: 18px;
    text-transform: uppercase;
}
.press-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px 44px;
    align-items: center;
}
.press-logo {
    font-family: var(--font-display, 'Bebas Neue', sans-serif);
    font-size: 1.05rem;
    letter-spacing: 0.14em;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    transition: color 0.2s;
    white-space: nowrap;
}
.press-logo:hover { color: #fff; }

/* Comparison table */
.compare-sec { background: var(--bg-alt, #0d0d0d); }
.compare-table-wrap {
    overflow-x: auto;
    margin-top: 40px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
    background: rgba(15,15,15,0.6);
}
.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}
.compare-table th, .compare-table td {
    padding: 16px 18px;
    text-align: left;
    font-size: 0.92rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    color: #d8d8d8;
    vertical-align: middle;
}
.compare-table thead th {
    background: rgba(0,0,0,0.5);
    font-family: var(--font-display, 'Bebas Neue', sans-serif);
    font-size: 1rem;
    letter-spacing: 0.08em;
    color: #fff;
    text-transform: uppercase;
    border-bottom: 2px solid rgba(220,38,38,0.5);
    font-weight: 500;
}
.compare-table thead th.ifp-col {
    color: var(--accent, #dc2626);
    border-bottom-color: var(--accent, #dc2626);
}
.compare-table tbody tr:hover { background: rgba(220,38,38,0.04); }
.compare-table td.ifp-col {
    background: rgba(220,38,38,0.06);
    color: #fff;
    font-weight: 500;
}
.compare-table .check {
    display: inline-block;
    width: 22px;
    height: 22px;
    text-align: center;
    line-height: 22px;
    color: #fff;
    background: #16a34a;
    border-radius: 50%;
    font-size: 0.85rem;
    margin-right: 8px;
    font-weight: 700;
}
.compare-table .x {
    display: inline-block;
    width: 22px;
    height: 22px;
    text-align: center;
    line-height: 22px;
    color: #fff;
    background: #404040;
    border-radius: 50%;
    font-size: 0.8rem;
    margin-right: 8px;
    font-weight: 700;
}
.compare-table td:first-child {
    font-weight: 500;
    color: #fff;
}

/* ============================================================
 * v1.3.0 — Shop page extensions
 * ============================================================ */

/* Shop intro / SEO content */
.shop-intro-sec { background: var(--bg-alt, #0d0d0d); }
.shop-intro-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    align-items: start;
}
.shop-intro-text .lbl {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    color: var(--accent, #dc2626);
    font-weight: 600;
}
.shop-intro-text h2 {
    font-family: var(--font-display, 'Bebas Neue', sans-serif);
    font-size: 2rem;
    line-height: 1.15;
    color: #fff;
    margin: 0 0 20px;
    letter-spacing: 0.02em;
}
.shop-intro-text p {
    color: var(--muted, #a0a0a0);
    line-height: 1.75;
    font-size: 0.97rem;
    margin: 0 0 18px;
}
.shop-intro-guides {
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
    padding: 24px 26px;
}
.shop-intro-guides h3 {
    font-family: var(--font-display, 'Bebas Neue', sans-serif);
    font-size: 1.2rem;
    letter-spacing: 0.06em;
    color: #fff;
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.shop-intro-links {
    list-style: none;
    margin: 0;
    padding: 0;
}
.shop-intro-links li {
    margin-bottom: 10px;
}
.shop-intro-links a {
    color: #d4d4d4;
    text-decoration: none;
    font-size: 0.93rem;
    line-height: 1.45;
    border-left: 2px solid transparent;
    padding-left: 12px;
    display: block;
    transition: color 0.2s, border-color 0.2s, padding-left 0.2s;
}
.shop-intro-links a:hover {
    color: var(--accent, #dc2626);
    border-left-color: var(--accent, #dc2626);
    padding-left: 16px;
}

@media (max-width: 900px) {
    .shop-intro-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* Shop testimonials reuse the global .testi-grid styles */
.shop-testimonials { background: var(--bg, #0a0a0a); }

/* Shop by discipline */
.shop-discipline { background: var(--bg-alt, #0d0d0d); }
.discipline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
    margin-top: 48px;
}
.discipline-card {
    padding: 28px 26px;
    background: linear-gradient(180deg, rgba(20,20,20,0.9), rgba(15,15,15,0.7));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
    transition: border-color 0.25s, transform 0.25s;
    display: flex;
    flex-direction: column;
}
.discipline-card:hover {
    border-color: rgba(220,38,38,0.45);
    transform: translateY(-3px);
}
.discipline-card h3 {
    font-family: var(--font-display, 'Bebas Neue', sans-serif);
    font-size: 1.45rem;
    letter-spacing: 0.04em;
    color: #fff;
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent, #dc2626);
    display: inline-block;
    align-self: flex-start;
}
.discipline-card p {
    color: var(--muted, #a0a0a0);
    font-size: 0.93rem;
    line-height: 1.65;
    margin: 0 0 18px;
    flex-grow: 1;
}
.discipline-link {
    color: var(--accent, #dc2626);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
    align-self: flex-start;
    transition: color 0.2s, gap 0.2s;
    border-bottom: 1px solid transparent;
}
.discipline-link:hover {
    color: #fff;
    border-bottom-color: var(--accent, #dc2626);
}

@media (max-width: 600px) {
    .compare-table th, .compare-table td { padding: 12px 10px; font-size: 0.85rem; }
    .why-grid { grid-template-columns: 1fr; }
    .press-logos { gap: 18px 24px; }
    .press-logo { font-size: 0.92rem; }
}

/* ==========================================================
   Trust bar (above newsletter)
   ========================================================== */
.trust-bar {
  background: var(--steel);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) { .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (min-width: 1024px) { .trust-grid { grid-template-columns: repeat(4, 1fr); gap: 32px; } }
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}
.trust-item svg { color: var(--red); flex-shrink: 0; }
.trust-title {
  font-family: var(--hf);
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 4px;
}
.trust-sub {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}

/* ==========================================================
   Footer: contact column
   ========================================================== */
.foot-contact-list { list-style: none; padding: 0; margin: 0; }
.foot-contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--ash);
}
.foot-contact-list li svg { color: var(--red); flex-shrink: 0; }
.foot-contact-list a { color: var(--ash); transition: color var(--transition); }
.foot-contact-list a:hover { color: var(--red); }

/* ==========================================================
   Footer: payments + legal
   ========================================================== */
.foot-payments {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
@media (min-width: 768px) {
  .foot-payments { flex-direction: row; justify-content: space-between; }
}
.foot-pay-label {
  font-family: var(--hf);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}
.foot-pay-icons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.pay-pill {
  background: var(--steel);
  border: 1px solid var(--border2);
  color: var(--ash);
  font-family: var(--hf);
  font-size: 10px;
  letter-spacing: 0.06em;
  padding: 6px 10px;
  border-radius: 4px;
  font-weight: 700;
}
.foot-legal {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 20px; flex-wrap: wrap;
}
.foot-legal li { margin: 0; }
.foot-legal a {
  color: var(--muted);
  font-size: 13px;
  transition: color var(--transition);
}
.foot-legal a:hover { color: var(--red); }

/* ==========================================================
   Page hero / lede
   ========================================================== */
.page-lede {
  margin-top: 16px;
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--ash);
  line-height: 1.7;
  max-width: 720px;
}

/* ==========================================================
   About: prose blocks and sections
   ========================================================== */
.about-section { padding: 64px 0; }
.about-section-alt { background: var(--steel); }
.prose { color: var(--ash); font-size: 16px; line-height: 1.8; }
.prose p { margin: 0 0 18px; }
.prose strong { color: var(--white); }
.prose ul, .prose ol { margin: 18px 0 24px 0; padding-left: 24px; }
.prose li { margin-bottom: 10px; }

.checklist-ul { list-style: none; padding: 0; margin: 18px 0; }
.checklist-ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--ash);
  line-height: 1.6;
}
.checklist-ul li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: var(--red);
  font-weight: 800;
  font-size: 16px;
}
.checklist-ol { list-style: decimal; padding-left: 28px; margin: 18px 0; }
.checklist-ol li { margin-bottom: 14px; color: var(--ash); line-height: 1.7; }
.checklist-ol li::marker { color: var(--red); font-weight: 800; }

/* ==========================================================
   Values grid
   ========================================================== */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 32px;
}
@media (min-width: 700px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }
.value-card {
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px;
  transition: all var(--transition);
}
.value-card:hover { border-color: var(--red); transform: translateY(-4px); }
.value-num {
  font-family: var(--hf);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 12px;
}
.value-card h3 {
  color: var(--white);
  font-family: var(--hf);
  font-size: 18px;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.value-card p { color: var(--ash); font-size: 14px; line-height: 1.7; margin: 0; }

/* ==========================================================
   Team grid
   ========================================================== */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 32px;
}
@media (min-width: 700px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }
.team-card {
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 24px;
  text-align: center;
}
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), #8a0d18);
  color: var(--white);
  font-family: var(--hf);
  font-size: 24px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.team-card h3 {
  color: var(--white);
  font-family: var(--hf);
  font-size: 16px;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.team-role {
  color: var(--red);
  font-size: 12px;
  font-family: var(--hf);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.team-card p { color: var(--ash); font-size: 13px; line-height: 1.7; margin: 0; }

/* ==========================================================
   Warranty promise block
   ========================================================== */
.warranty-promise {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: start;
  background: var(--black);
  border: 2px solid var(--red);
  border-radius: var(--r);
  padding: 40px;
}
@media (max-width: 640px) {
  .warranty-promise { grid-template-columns: 1fr; padding: 28px; text-align: center; }
}
.warranty-icon { color: var(--red); }
.warranty-promise h2 { margin-top: 8px; }
.warranty-promise p {
  color: var(--ash);
  font-size: 16px;
  line-height: 1.7;
  margin: 16px 0 24px;
}
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 640px) { .cta-row { justify-content: center; } }

/* ==========================================================
   Brand vetting (brands page top)
   ========================================================== */
.brand-vetting {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 32px 0 64px;
}
@media (min-width: 700px) { .brand-vetting { grid-template-columns: repeat(3, 1fr); } }
.vetting-card {
  background: var(--steel);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px 24px;
  text-align: center;
}
.vetting-num {
  font-family: var(--hf);
  font-size: 56px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
}
.vetting-label {
  color: var(--white);
  font-family: var(--hf);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.vetting-card p { color: var(--ash); font-size: 13px; line-height: 1.6; margin: 0; }

/* ==========================================================
   Brand cards
   ========================================================== */
.brand-category-section { padding: 48px 0; }
.brand-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 700px) { .brand-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .brand-cards { grid-template-columns: repeat(3, 1fr); } }
.brand-card-full {
  display: block;
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px;
  transition: all var(--transition);
  color: inherit;
}
.brand-card-full:hover {
  border-color: var(--red);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.brand-card-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.brand-card-head h3 {
  color: var(--white);
  font-family: var(--hf);
  font-size: 17px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 0;
}
.brand-loc {
  color: var(--muted);
  font-size: 11px;
  font-family: var(--hf);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.brand-blurb { color: var(--ash); font-size: 13px; line-height: 1.7; margin: 0 0 16px; }
.brand-link {
  color: var(--red);
  font-family: var(--hf);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ==========================================================
   Contact: response SLA strip
   ========================================================== */
.response-sla {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 48px;
}
@media (min-width: 640px) { .response-sla { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .response-sla { grid-template-columns: repeat(4, 1fr); } }
.sla-card {
  background: var(--steel);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px;
  text-align: center;
}
.sla-icon { color: var(--red); margin-bottom: 12px; }
.sla-title {
  color: var(--white);
  font-family: var(--hf);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.sla-time { color: var(--ash); font-size: 13px; }

/* ==========================================================
   Contact: showrooms
   ========================================================== */
.contact-meta { color: var(--muted); font-size: 13px; margin-top: 4px; }
.showroom-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 32px;
}
@media (min-width: 700px) { .showroom-grid { grid-template-columns: repeat(2, 1fr); } }
.showroom-card {
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px;
  transition: all var(--transition);
}
.showroom-card:hover { border-color: var(--red); }
.showroom-card .lbl { color: var(--red); margin-bottom: 12px; display: block; }
.showroom-card h3 {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 16px;
  line-height: 1.5;
}
.showroom-meta {
  font-size: 13px;
  color: var(--ash);
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.showroom-meta div { margin-bottom: 4px; }
.showroom-meta strong { color: var(--white); margin-right: 6px; }
.showroom-card p { color: var(--ash); font-size: 14px; line-height: 1.7; margin: 0; }

/* ==========================================================
   Contact: free consultation block
   ========================================================== */
.consultation-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 40px;
}
@media (min-width: 800px) { .consultation-block { grid-template-columns: 1.5fr 1fr; } }
.consultation-block p { color: var(--ash); line-height: 1.7; margin: 0 0 16px; }
.consultation-checklist {
  background: var(--steel);
  border-radius: var(--r);
  padding: 28px;
}
.consultation-checklist h4 {
  color: var(--red);
  font-family: var(--hf);
  font-size: 13px;
  letter-spacing: 0.1em;
  margin: 0 0 16px;
}
