/*
Theme Name: Brakoon v2
Theme URI: https://brakoon.com
Author: Brakoon
Description: Professional dark theme for Brakoon offroad A-pillar brackets and roof racks.
Version: 2.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: brakoon
*/

/* ============================================================
   BRAKOON v2 — Main Stylesheet
   Design: dark industrial / off-road market leader style
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #0D0D0F;
  --bg2:      #181820;
  --bg3:      #1E1E28;
  --border:   #2A2A35;
  --orange:   #ff6d00;
  --orange2:  #ff8c2a;
  --text:     #F0EDE6;
  --muted:    #8A8880;
  --muted2:   #3A3A45;
  --font-h:   'Barlow Condensed', sans-serif;
  --font-b:   'Barlow', sans-serif;
  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 14px;
  --radius-xl: 18px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 10px; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.eyebrow {
  font-family: var(--font-h);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--orange);
}

.section-title {
  font-family: var(--font-h);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--text);
  margin-top: 12px;
  line-height: 1.1;
}

.section-sub {
  color: var(--muted);
  font-family: var(--font-b);
  font-size: .95rem;
  max-width: 56ch;
  margin-top: 12px;
}

.section-header {
  margin-bottom: 56px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--orange);
  color: var(--bg);
  font-family: var(--font-h);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .15s, transform .15s;
}
.btn-primary:hover { background: var(--orange2); transform: translateY(-1px); }
.btn-primary:active { transform: scale(.98); }

.btn-hero { padding: 16px 40px; font-size: 1rem; }

.btn-secondary {
  display: inline-block;
  padding: 13px 30px;
  background: transparent;
  color: var(--text);
  font-family: var(--font-h);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color .15s, color .15s;
}
.btn-secondary:hover { border-color: var(--orange); color: var(--orange); }

.btn-order {
  display: inline-block;
  padding: 10px 20px;
  background: var(--orange);
  color: var(--bg);
  font-family: var(--font-h);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .15s;
}
.btn-order:hover { background: var(--orange2); }

.btn-check {
  padding: 12px 24px;
  background: var(--orange);
  color: var(--bg);
  font-family: var(--font-h);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s;
}
.btn-check:hover { background: var(--orange2); }

.btn-fitment-check {
  margin-top: 24px;
  padding: 16px 48px;
  font-size: 1rem;
}

.btn-nav-cta {
  display: inline-block;
  padding: 9px 20px;
  background: var(--orange);
  color: var(--bg);
  font-family: var(--font-h);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background .15s;
}
.btn-nav-cta:hover { background: var(--orange2); }

/* ============================================================
   LAYOUT
   ============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-dark { background: var(--bg2); }
.section-border-top { border-top: 1px solid var(--border); }
.woo-page-wrap { padding-top: 108px; min-height: 100vh; background: var(--bg); }

/* ============================================================
   FREE SHIPPING BAR
   ============================================================ */
.free-ship-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1010;
  height: 36px;
  background: var(--orange);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.free-ship-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: freeShipScroll 28s linear infinite;
}
.free-ship-track span {
  font-family: var(--font-h);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--bg);
  padding: 0 36px;
}
@keyframes freeShipScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
#header {
  position: fixed;
  top: 36px;
  left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,13,15,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: top .3s, background .3s;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-mark {
  width: 32px;
  height: 32px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-mark span {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--bg);
  display: inline-block;
  transform: skewX(-6deg);
  line-height: 1;
}
.logo-text {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text);
  transition: color .15s;
}
.logo:hover .logo-text { color: var(--orange); }

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
}
@media (max-width: 900px) { .nav-links { display: none; } }

.nav-link {
  font-family: var(--font-b);
  font-size: .82rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .15s;
}
.nav-link:hover, .nav-link.active { color: var(--text); }

/* Nav right cluster */
.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Cart icon */
.nav-cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--muted);
  transition: color .15s;
  text-decoration: none;
  cursor: pointer;
}
.nav-cart:hover { color: var(--text); }
.nav-cart svg { width: 20px; height: 20px; }
.nav-cart-count {
  position: absolute;
  top: 3px;
  right: 3px;
  min-width: 18px;
  height: 18px;
  background: var(--orange);
  color: var(--bg);
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  padding: 0 4px;
  line-height: 1;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
@media (max-width: 900px) { .nav-toggle { display: flex; } }

/* Mobile menu */
.nav-mobile {
  display: none;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  flex-direction: column;
  gap: 20px;
}
.nav-mobile.open { display: flex; }
.nav-mobile .nav-link {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .1em;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .35;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13,13,15,.5) 0%,
    rgba(13,13,15,.1) 40%,
    rgba(13,13,15,.6) 70%,
    rgba(13,13,15,.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
  min-height: 400px;
}

.hero-eyebrow {
  font-family: var(--font-h);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-h);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1;
  margin-bottom: 24px;
  font-display: swap;
}
.hero-title .hl { color: var(--orange); }

.hero-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 52ch;
  line-height: 1.7;
  margin-bottom: 24px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

/* Hero mini checker */
.hero-checker {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 20px auto 0;
  padding: 0 24px;
}
.checker-label {
  font-family: var(--font-h);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.checker-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.checker-selects { display: contents; }
.checker-mobile-bar { display: none; }
.checker-select {
  padding: 10px 16px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-b);
  font-size: .88rem;
  cursor: pointer;
  min-width: 130px;
  appearance: none;
}
.checker-select:focus { outline: 1px solid var(--orange); border-radius: var(--radius); }
.hero-result {
  margin-top: 16px;
  font-family: var(--font-b);
  font-size: .9rem;
}
.hero-result.found { color: #4ade80; }
.hero-result.not-found { color: var(--muted); }

/* Hero pick buttons */
.hero-pick-btns { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.hero-pick-btn {
  padding: 9px 16px;
  background: var(--orange);
  color: var(--bg);
  font-family: var(--font-h);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .15s;
}
.hero-pick-btn:hover { background: var(--orange2); }

/* Stats bar */
.stats-bar {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  background: rgba(24,24,32,.8);
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 640px) { .stats-bar { grid-template-columns: repeat(2, 1fr); } }

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  border-right: 1px solid var(--border);
  gap: 4px;
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-h);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--orange);
}
.stat-label {
  font-family: var(--font-h);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   BUILT FOR YOU
   ============================================================ */
.bfy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
}
@media (max-width: 900px) { .bfy-grid { grid-template-columns: 1fr; } }

.bfy-card {
  background: var(--bg2);
  padding: 32px 28px;
}
.bfy-icon-wrap {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--orange);
}
.bfy-icon-wrap svg { width: 20px; height: 20px; }
.bfy-card h3 {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text);
  margin-bottom: 12px;
}
.bfy-card p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.7;
}

/* Disclaimer boxes */
.disclaimer-box {
  display: flex;
  gap: 14px;
  padding: 16px 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: .85rem;
  line-height: 1.6;
}
.disclaimer-box svg { color: var(--muted2); flex-shrink: 0; margin-top: 2px; }

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 900px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .steps-grid { grid-template-columns: 1fr; } }

.step-card {
  background: var(--bg2);
  padding: 28px 24px;
}
.step-num {
  font-family: var(--font-h);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--muted2);
  line-height: 1;
  margin-bottom: 16px;
}
.step-card h4 {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text);
  margin-bottom: 10px;
}
.step-card p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.6;
}
.step-link { color: var(--orange); }

/* ============================================================
   PRODUCTS
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 768px) { .products-grid { grid-template-columns: 1fr; } }

.product-card {
  background: var(--bg);
  display: flex;
  flex-direction: column;
  transition: background .2s;
}
.product-card:hover { background: var(--bg3); }

.product-img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg2);
}
.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.product-card:hover .product-img { transform: scale(1.04); }

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-family: var(--font-h);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
}
.badge-orange { background: var(--orange); border-color: var(--orange); color: var(--bg); }

.product-info { padding: 24px; flex: 1; display: flex; flex-direction: column; }

.product-name {
  font-family: var(--font-h);
  font-size: 1.3rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text);
  margin-bottom: 10px;
}

.product-desc {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
  flex: 1;
}
.product-features li {
  font-size: .82rem;
  color: var(--muted);
  padding-left: 14px;
  position: relative;
}
.product-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: var(--orange);
  border-radius: 50%;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  gap: 12px;
  flex-wrap: wrap;
}

.product-price {
  font-family: var(--font-h);
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
}
.product-price small {
  font-size: .75em;
  color: var(--muted);
  font-weight: 600;
}

/* ============================================================
   FITMENTS
   ============================================================ */
.fitment-checker {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 40px;
}

.fitment-selects {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.select-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 160px;
}

.select-label {
  font-family: var(--font-h);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

.fitment-select {
  padding: 11px 16px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-b);
  font-size: .9rem;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238A8880' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.fitment-select:focus { outline: 1px solid var(--orange); }

.fitment-result {
  margin-top: 24px;
}
.result-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.result-card {
  background: var(--bg2);
  overflow: hidden;
  transition: background .2s;
}
.result-card:hover { background: var(--bg3); }
.result-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.result-card-tag {
  font-family: var(--font-h);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #4ade80;
  padding: 12px 16px 0;
}
.result-card-product {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text);
  padding: 6px 16px 0;
}
.result-card-price {
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--orange);
  padding: 4px 16px 0;
}
.result-no-fit {
  padding: 20px;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
}

/* Compat table */
.compat-table-wrap {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.compat-title {
  font-family: var(--font-h);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--bg3);
}
.table-scroll { overflow-x: auto; }

.compat-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .85rem;
}
.compat-table thead tr {
  background: var(--bg3);
  border-bottom: 1px solid var(--border);
}
.compat-table th {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 12px 16px;
  text-align: left;
}
.compat-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background .15s;
}
.compat-table tbody tr:hover { background: var(--bg3); }
.compat-table td {
  padding: 12px 16px;
  color: var(--muted);
}
.compat-table td:first-child { color: var(--text); font-weight: 500; }
.price-cell { color: var(--orange) !important; font-family: var(--font-h); font-weight: 700; }
.order-link {
  font-family: var(--font-h);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange);
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 768px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .reviews-grid { grid-template-columns: 1fr; } }

.review-card {
  overflow: hidden;
  background: var(--bg);
}
.review-card img {
  width: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.review-card:hover img { transform: scale(1.03); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; } }

.gallery-item {
  overflow: hidden;
  background: var(--bg2);
}
.gallery-item.large {
  grid-column: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.gallery-item:hover img { transform: scale(1.04); }

.gallery-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}
.gallery-cta p {
  font-family: var(--font-h);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-img-col { display: none; }
}

.about-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.about-text {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 28px;
}
.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bg);
  padding: 18px 20px;
}
.about-feature-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  width: 36px;
  text-align: center;
}
.about-feature h4 {
  font-family: var(--font-h);
  font-size: .92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text);
  margin-bottom: 4px;
}
.about-feature p { font-size: .82rem; color: var(--muted); line-height: 1.5; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}
.faq-item { background: var(--bg2); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 18px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color .15s;
}
.faq-q:hover { color: var(--orange); }
.faq-q::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform .2s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.7;
  padding: 0 24px;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 24px 20px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info-box {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.contact-info-box h4 {
  font-family: var(--font-h);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.contact-info-box p {
  font-size: .88rem;
  color: var(--muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-info-box p:last-child { border-bottom: none; }

.contact-side-title {
  font-family: var(--font-h);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: var(--bg);
  font-family: var(--font-b);
  font-size: .88rem;
  color: var(--muted);
  transition: background .15s, color .15s;
}
.social-link:hover { background: var(--bg3); color: var(--text); }
.social-link svg { width: 18px; height: 18px; flex-shrink: 0; }
.social-link--wa:hover { color: #25d366; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-logo-text {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 30ch;
  margin-top: 8px;
}

.footer-links-col h4,
.footer-social-col h4 {
  font-family: var(--font-h);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col a {
  font-size: .85rem;
  color: var(--muted);
  transition: color .15s;
}
.footer-links-col a:hover { color: var(--text); }

.footer-social-col {
  display: flex;
  flex-direction: column;
}
.footer-social-col a {
  font-size: .85rem;
  color: var(--muted);
  padding: 4px 0;
  transition: color .15s;
}
.footer-social-col a:hover { color: var(--text); }
.footer-order-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 20px;
  background: var(--orange);
  color: var(--bg) !important;
  font-family: var(--font-h);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background .15s !important;
}
.footer-order-btn:hover { background: var(--orange2) !important; }

.footer-bottom {
  padding: 16px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: .78rem;
  color: var(--muted2);
}
.footer-legal {
  display: flex;
  justify-content: center;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}
.footer-legal li a {
  font-size: .78rem;
  color: var(--muted2);
  text-decoration: none;
  transition: color .15s;
}
.footer-legal li a:hover {
  color: var(--orange);
}

/* ============================================================
   PRODUCT MODAL
   ============================================================ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,.8);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-backdrop.open { display: flex; }

.modal-box {
  position: relative;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
  transition: color .15s;
}
.modal-close:hover { color: var(--text); }

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 640px) { .modal-body { grid-template-columns: 1fr; } }

/* Modal gallery */
.modal-gallery {
  background: var(--bg);
  border-right: 1px solid var(--border);
}
.modal-main-wrap {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--bg);
  overflow: hidden;
}
.modal-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.modal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(13,13,15,.8);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  z-index: 5;
  transition: background .15s;
}
.modal-arrow:hover { background: var(--orange); border-color: var(--orange); }
.modal-prev { left: 8px; }
.modal-next { right: 8px; }
.modal-counter {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(13,13,15,.8);
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-family: var(--font-h);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  padding: 3px 8px;
}
.modal-thumbs {
  display: flex;
  gap: 6px;
  background: var(--border);
  border-top: 1px solid var(--border);
  overflow-x: auto;
  padding: 8px;
}
.modal-thumb {
  width: 56px;
  height: 42px;
  object-fit: cover;
  cursor: pointer;
  opacity: .5;
  transition: opacity .15s;
  flex-shrink: 0;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
}
.modal-thumb.active { opacity: 1; border-color: var(--orange); }

/* Modal info / form */
.modal-info {
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.modal-title {
  font-family: var(--font-h);
  font-size: 1.25rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--text);
  margin-bottom: 4px;
}
.modal-years {
  font-family: var(--font-h);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.modal-notes {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.modal-price {
  font-family: var(--font-h);
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
}

/* Order form */
.order-form { flex: 1; display: flex; flex-direction: column; gap: 0; }

.of-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 400px) { .of-row { grid-template-columns: 1fr; } }

.of-group { display: flex; flex-direction: column; gap: 6px; }

.of-label {
  font-family: var(--font-h);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.of-req { color: var(--orange); }

.of-input {
  padding: 10px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-b);
  font-size: .9rem;
  transition: border-color .15s;
}
.of-input:focus { outline: none; border-color: var(--orange); }

.of-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.of-radio {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-b);
  font-size: .85rem;
  color: var(--muted);
  cursor: pointer;
}
.of-radio input { accent-color: var(--orange); cursor: pointer; }

.of-hint {
  font-size: .75rem;
  color: var(--muted2);
  margin-top: 2px;
}

.of-char-counter {
  font-family: var(--font-b);
  font-size: .72rem;
  color: var(--muted2);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.of-divider { border: none; border-top: 1px solid var(--border); margin: 16px 0; }

.of-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.of-price-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.of-price-label {
  font-family: var(--font-h);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
}

.of-submit {
  padding: 12px 28px;
  background: var(--orange);
  color: var(--bg);
  font-family: var(--font-h);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .15s;
  white-space: nowrap;
}
.of-submit:hover:not(:disabled) { background: var(--orange2); }
.of-submit:disabled { opacity: .5; cursor: not-allowed; }

.of-woo-note {
  margin-top: 10px;
  font-size: .72rem;
  color: var(--muted2);
  font-family: var(--font-b);
}

.of-feedback {
  margin-top: 8px;
  font-size: .82rem;
  font-family: var(--font-b);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
}
.of-feedback--error { color: #f87171; background: rgba(248,113,113,.08); }
.of-feedback--success { color: #4ade80; background: rgba(74,222,128,.08); }

/* ============================================================
   PHOTO FULLSCREEN
   ============================================================ */
.photo-fs-backdrop {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0,0,0,.95);
  display: none;
  align-items: center;
  justify-content: center;
}
.photo-fs-backdrop.open { display: flex; }
.photo-fs-img {
  max-width: 92vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.photo-fs-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* ============================================================
   WOOCOMMERCE PRODUCT PAGE (single-product)
   ============================================================ */
.product-page {
  padding: 0;
  min-height: 100vh;
  background: var(--bg);
}

.product-breadcrumb {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 12px 24px;
}
.product-breadcrumb nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-b);
  font-size: .78rem;
  color: var(--muted);
}
.product-breadcrumb a { transition: color .15s; }
.product-breadcrumb a:hover { color: var(--orange); }
.product-breadcrumb .sep { color: var(--muted2); }

.product-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 768px) { .product-hero { grid-template-columns: 1fr; gap: 28px; } }

/* Gallery column */
.pgallery {
  position: sticky;
  top: 80px;
}
.pgallery-main {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: zoom-in;
}
.pgallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.pgallery-main:hover img { transform: scale(1.03); }
.pgallery-counter {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(13,13,15,.85);
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-family: var(--font-h);
  font-size: .72rem;
  font-weight: 600;
  padding: 3px 8px;
}
.pgallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  background: rgba(13,13,15,.8);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  z-index: 5;
  transition: background .15s;
}
.pgallery-arrow:hover { background: var(--orange); border-color: var(--orange); }
.pgallery-prev { left: 8px; }
.pgallery-next { right: 8px; }
.pgallery-thumbs {
  display: flex;
  gap: 6px;
  margin-top: 8px;
  overflow-x: auto;
  padding: 4px 2px;
}
.pgallery-thumb {
  width: 64px;
  height: 48px;
  object-fit: cover;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  opacity: .5;
  transition: opacity .15s, border-color .15s;
}
.pgallery-thumb.active { opacity: 1; border-color: var(--orange); }

/* Configurator column */
.pconfig-make {
  font-family: var(--font-h);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.pconfig-title {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 6px;
}
.pconfig-years {
  font-family: var(--font-h);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.pconfig-price {
  font-family: var(--font-h);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
}
.pconfig-price-note {
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: 24px;
}
.pconfig-notes {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.7;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}

.pconfig-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pconfig-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pconfig-label {
  font-family: var(--font-h);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

.pconfig-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pconfig-opt {
  padding: 9px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg2);
  color: var(--muted);
  font-family: var(--font-h);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color .15s, color .15s, background .15s;
  user-select: none;
}
.pconfig-opt:hover { border-color: var(--muted); color: var(--text); }
.pconfig-opt.selected { border-color: var(--orange); background: var(--orange); color: var(--bg); }

.pconfig-input {
  padding: 11px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-b);
  font-size: .9rem;
  width: 100%;
  transition: border-color .15s;
}
.pconfig-input:focus { outline: none; border-color: var(--orange); }

.pconfig-hint {
  font-size: .75rem;
  color: var(--muted2);
}

.pconfig-submit {
  width: 100%;
  padding: 16px;
  background: var(--orange);
  color: var(--bg);
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .15s;
}
.pconfig-submit:hover { background: var(--orange2); }
.pconfig-submit:disabled { opacity: .5; cursor: not-allowed; }

.pconfig-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--muted);
  font-family: var(--font-h);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color .15s, color .15s;
}
.pconfig-wa:hover { border-color: #25d366; color: #25d366; }

.pconfig-trust {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}
.pconfig-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  color: var(--muted2);
}
.pconfig-trust-item::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--muted2);
  border-radius: 50%;
  flex-shrink: 0;
}

.pconfig-feedback {
  font-size: .85rem;
  font-family: var(--font-b);
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
}
.pconfig-feedback.success { border-color: #4ade80; color: #4ade80; background: rgba(74,222,128,.06); }
.pconfig-feedback.error { border-color: #f87171; color: #f87171; background: rgba(248,113,113,.06); }

/* Product specs section */
.product-specs {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 64px 0;
}
.product-specs .container { max-width: 1200px; }
.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 640px;
}
.spec-row {
  background: var(--bg2);
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.spec-key {
  font-family: var(--font-h);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}
.spec-val {
  font-size: .88rem;
  color: var(--text);
  text-align: right;
}

/* Related products */
.related-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 64px 0;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 900px) { .related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .related-grid { grid-template-columns: 1fr; } }

.related-card {
  background: var(--bg2);
  transition: background .2s;
  text-decoration: none;
  display: block;
}
.related-card:hover { background: var(--bg3); }
.related-card-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg);
}
.related-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.related-card:hover .related-card-img { transform: scale(1.05); }
.related-card-info { padding: 16px; }
.related-card-model {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 4px;
}
.related-card-sub {
  font-size: .78rem;
  color: var(--muted);
  margin-bottom: 8px;
}
.related-card-price {
  font-family: var(--font-h);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--orange);
}

/* ============================================================
   SHOP / ARCHIVE PAGE
   ============================================================ */
.shop-page {
  min-height: 100vh;
  background: var(--bg);
  padding-top: 64px;
}

.shop-header {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 48px 0 40px;
}

.shop-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 32px;
}
.shop-filter {
  padding: 8px 20px;
  font-family: var(--font-h);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: border-color .15s, color .15s, background .15s;
}
.shop-filter:hover { border-color: var(--muted); color: var(--text); }
.shop-filter.active { background: var(--orange); border-color: var(--orange); color: var(--bg); }

.shop-grid-wrap { padding: 48px 0; }

.shop-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 900px) { .shop-product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .shop-product-grid { grid-template-columns: 1fr; } }

.shop-card {
  background: var(--bg);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: background .2s;
}
.shop-card:hover { background: var(--bg3); }
.shop-card-img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg2);
}
.shop-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.shop-card:hover .shop-card-img { transform: scale(1.04); }
.shop-card-make-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-family: var(--font-h);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 8px;
}
.shop-card-special {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--orange);
  border-radius: var(--radius-sm);
  color: var(--bg);
  font-family: var(--font-h);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 8px;
}
.shop-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.shop-card-model {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text);
  line-height: 1.2;
}
.shop-card-years { font-size: .78rem; color: var(--muted); }
.shop-card-product { font-size: .85rem; color: var(--muted); flex: 1; }
.shop-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  gap: 8px;
}
.shop-card-price {
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--orange);
}
.shop-card-price .usd {
  font-size: .7em;
  color: var(--muted);
  font-weight: 600;
}
.shop-card-cta {
  font-family: var(--font-h);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .15s;
}
.shop-card:hover .shop-card-cta { color: var(--orange); }

/* ============================================================
   RESPONSIVE ADJUSTMENTS
   ============================================================ */
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero { padding: 120px 0 60px; }
  .hero-title { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .hero-sub { font-size: 1rem; margin-bottom: 20px; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .bfy-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .modal-body { grid-template-columns: 1fr; }
  .pgallery { position: static; }
  .product-hero { padding: 24px 16px; gap: 24px; }
  .shop-page { padding-top: 56px; }

  /* Hero checker — mobile accordion */
  .checker-mobile-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 50px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0 18px;
    cursor: pointer;
    font-family: var(--font-h);
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .08em;
    color: var(--muted);
    text-transform: uppercase;
  }
  .checker-bar-chevron { font-size: 1rem; transition: transform .2s; }

  .checker-row { flex-direction: column; gap: 8px; width: 100%; }

  .checker-selects {
    display: none;
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
  .checker-selects.open { display: flex; }

  .checker-selects .checker-select {
    width: 100%;
    min-width: 0;
    height: 50px;
    padding: 0 18px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-h);
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .08em;
    color: var(--muted);
    text-transform: uppercase;
    appearance: none;
  }
  .checker-selects .checker-select:focus { outline: 1px solid var(--orange); }

  .checker-selects .btn-check {
    width: 100%;
    height: 50px;
    border-radius: var(--radius);
    font-size: .9rem;
    letter-spacing: .12em;
    padding: 0;
  }
}

@media (max-width: 480px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }

  /* Ocultar párrafo largo para que el checker aparezca antes */
  .hero-sub { display: none; }
}

/* ============================================================
   CART CONFIRMATION MODAL
   ============================================================ */
.cart-modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2100;
  background: rgba(0,0,0,.82);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.cart-modal-backdrop.open { display: flex; }
.cart-modal-box {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 460px;
  padding: 36px 32px;
  position: relative;
}
.cart-modal-close {
  position: absolute;
  top: 14px; right: 18px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color .15s;
}
.cart-modal-close:hover { color: var(--text); }
.cart-modal-title {
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 20px;
}
.cart-modal-item {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  margin-bottom: 20px;
  overflow: hidden;
}
.cart-modal-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
  margin-bottom: 14px;
}
.cart-modal-badge {
  display: inline-block;
  background: #16a34a;
  color: #fff;
  font-family: var(--font-h);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}
.cart-modal-product {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 10px;
}
.cart-modal-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}
.cart-modal-specs li {
  font-size: .85rem;
  color: var(--muted);
  padding: 2px 0;
}
.cart-modal-specs li strong { color: var(--text); }
.cart-modal-total {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--orange);
  border-top: 1px solid var(--border);
  padding-top: 10px;
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-modal-total span {
  color: var(--muted);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.cart-modal-checkout {
  width: 100%;
  background: var(--orange);
  color: var(--bg);
  font-family: var(--font-h);
  font-size: .95rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  padding: 16px;
  cursor: pointer;
  transition: background .15s;
  margin-bottom: 10px;
  display: block;
}
.cart-modal-checkout:hover { background: var(--orange2); }
.cart-modal-payments {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}
.cart-modal-pay-btn {
  flex: 1;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-h);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px;
  cursor: pointer;
  transition: border-color .15s, color .15s;
}
.cart-modal-pay-btn:hover { border-color: var(--orange); color: var(--orange); }
.cart-modal-continue {
  width: 100%;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--muted);
  font-family: var(--font-h);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px;
  cursor: pointer;
  transition: border-color .15s, color .15s;
  display: block;
}
.cart-modal-continue:hover { border-color: var(--text); color: var(--text); }
@media (max-width: 520px) {
  .cart-modal-box { padding: 28px 20px; }
}

/* ============================================================
   WOOCOMMERCE — DARK THEME OVERRIDES
   ============================================================ */
.woocommerce,
.woocommerce-page {
  background: var(--bg);
  color: var(--text);
}

/* Form fields */
.woocommerce .woocommerce-billing-fields,
.woocommerce .woocommerce-shipping-fields,
.woocommerce #order_review,
.woocommerce-page .woocommerce-billing-fields,
.woocommerce-page .woocommerce-shipping-fields {
  color: var(--text);
}

.woocommerce form .form-row label,
.woocommerce-page form .form-row label {
  color: var(--muted);
}

.woocommerce form .form-row .input-text,
.woocommerce-page form .form-row .input-text,
.woocommerce input[type="text"],
.woocommerce input[type="email"],
.woocommerce input[type="tel"],
.woocommerce input[type="number"],
.woocommerce input[type="password"],
.woocommerce select,
.woocommerce textarea,
.woocommerce-page input[type="text"],
.woocommerce-page input[type="email"],
.woocommerce-page input[type="tel"],
.woocommerce-page input[type="number"],
.woocommerce-page input[type="password"],
.woocommerce-page select,
.woocommerce-page textarea {
  background: var(--bg3) !important;
  border: 1px solid var(--border) !important;
  color: var(--text) !important;
  border-radius: var(--radius-sm) !important;
}

.woocommerce input::placeholder,
.woocommerce-page input::placeholder,
.woocommerce textarea::placeholder,
.woocommerce-page textarea::placeholder {
  color: var(--muted) !important;
}

/* Order review table */
.woocommerce table.shop_table,
.woocommerce-page table.shop_table {
  background: var(--bg2);
  border-color: var(--border) !important;
  color: var(--text);
}
.woocommerce table.shop_table th,
.woocommerce table.shop_table td,
.woocommerce-page table.shop_table th,
.woocommerce-page table.shop_table td {
  background: transparent !important;
  border-color: var(--border) !important;
  color: var(--text) !important;
}

/* Payment box */
.woocommerce #payment,
.woocommerce-page #payment {
  background: var(--bg2) !important;
  border-radius: var(--radius) !important;
  color: var(--text) !important;
}
.woocommerce #payment ul.payment_methods,
.woocommerce-page #payment ul.payment_methods {
  border-bottom-color: var(--border) !important;
}
.woocommerce #payment ul.payment_methods li,
.woocommerce-page #payment ul.payment_methods li {
  color: var(--text);
}
.woocommerce #payment div.payment_box,
.woocommerce-page #payment div.payment_box {
  background: var(--bg3) !important;
  color: var(--muted) !important;
}
.woocommerce #payment div.payment_box::before,
.woocommerce-page #payment div.payment_box::before {
  border-bottom-color: var(--bg3) !important;
}

/* Cart page */
.woocommerce .cart-collaterals,
.woocommerce-page .cart-collaterals {
  background: var(--bg2);
  border-radius: var(--radius);
  color: var(--text);
}
.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals {
  color: var(--text);
}
.woocommerce .cart-collaterals h2,
.woocommerce-page .cart-collaterals h2 {
  color: var(--text);
}

/* Notices */
.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
  background: var(--bg2) !important;
  border-top-color: var(--orange) !important;
  color: var(--text) !important;
}

/* Place order button */
#place_order {
  background: var(--orange) !important;
  color: var(--bg) !important;
  border: none !important;
  font-family: var(--font-h) !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
}
#place_order:hover { background: var(--orange2) !important; }

/* ============================================================
   URGENCY BADGE — Product page
   ============================================================ */
.brakon-urgency {
  color: #F97316;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
}
