/* =========================================================
   LAND PARTS — Storefront CSS
   Dark industrial design system
   ========================================================= */

/* =========================================================
   RESET & BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #0f0f0f;
  color: #f0f0f0;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: #f5a623; text-decoration: none; transition: color 0.15s ease; }
a:hover { color: #e09415; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }
input, select, textarea {
  font-family: 'Inter', sans-serif;
  background: #1a1a1a;
  border: 1px solid #2e2e2e;
  color: #f0f0f0;
  padding: 10px 14px;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.15s ease;
}
input:focus, select:focus { border-color: #f5a623; }
::selection { background: rgba(245, 166, 35, 0.3); color: #fff; }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #1a1a1a; }
::-webkit-scrollbar-thumb { background: #f5a623; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #e09415; }

/* =========================================================
   TYPOGRAPHY UTILITIES
   ========================================================= */
.font-heading { font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: 0.04em; }
.font-mono { font-family: 'JetBrains Mono', monospace; }
.text-amber { color: #f5a623; }
.text-muted { color: #888; }
.text-success { color: #22c55e; }
.text-danger { color: #ef4444; }
.text-sm { font-size: 12px; }
.text-xs { font-size: 11px; }
.uppercase { text-transform: uppercase; }
.tracking-wide { letter-spacing: 0.08em; }

/* =========================================================
   LAYOUT
   ========================================================= */
.site-wrapper { display: flex; min-height: 100vh; }

/* --- Sidebar --- */
.sidebar {
  width: 240px;
  background: #0f0f0f;
  border-right: 1px solid #2e2e2e;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transition: width 0.2s ease;
}
.sidebar__logo {
  padding: 24px 20px 16px;
  border-bottom: 2px solid #f5a623;
}
.sidebar__logo-mark {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #f0f0f0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1;
}
.sidebar__logo-mark span { color: #f5a623; }
.sidebar__logo-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 4px;
}
.sidebar__nav { flex: 1; padding: 12px 0; }
.sidebar__nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #ccc;
  border-left: 2px solid transparent;
  transition: all 0.15s ease;
  cursor: pointer;
}
.sidebar__nav-item:hover {
  background: #1a1a1a;
  color: #f0f0f0;
}
.sidebar__nav-item--active {
  border-left-color: #f5a623;
  background: #242424;
  color: #f0f0f0;
}
.sidebar__nav-item i { color: #f5a623; width: 18px; text-align: center; font-size: 14px; }
.sidebar__nav-label {
  padding: 20px 20px 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: #f5a623;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.sidebar__garage {
  border-top: 1px solid #2e2e2e;
  padding: 16px 20px;
}
.sidebar__divider {
  border-top: 1px solid #2e2e2e;
  margin: 0;
}
.sidebar__garage-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: #f5a623;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}
.sidebar__vehicle-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #1a1a1a;
  border: 1px solid #2e2e2e;
  border-radius: 4px;
  padding: 8px 12px;
  font-size: 12px;
  color: #ccc;
  margin-bottom: 8px;
}
.sidebar__vehicle-pill i { color: #888; font-size: 12px; }
.sidebar__vehicle-pill .remove {
  margin-left: auto;
  color: #555;
  font-size: 11px;
  cursor: pointer;
  transition: color 0.15s ease;
}
.sidebar__vehicle-pill .remove:hover { color: #ef4444; }
.sidebar__add-vehicle {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #f5a623;
  font-size: 12px;
  font-weight: 500;
  background: none;
  border: 1px dashed #f5a623;
  border-radius: 4px;
  padding: 7px 12px;
  width: 100%;
  justify-content: center;
  transition: all 0.15s ease;
}
.sidebar__add-vehicle:hover { background: rgba(245, 166, 35, 0.08); }

/* --- Main Area --- */
.main-area {
  margin-left: 240px;
  flex: 1;
  min-width: 0;
}

/* --- Top Bar --- */
.topbar {
  height: 56px;
  background: #0f0f0f;
  border-bottom: 1px solid #2e2e2e;
  display: flex;
  align-items: center;
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 90;
  gap: 16px;
}
.topbar__toggle {
  color: #888;
  font-size: 18px;
  padding: 8px;
  transition: color 0.15s ease;
  display: none;
}
.topbar__toggle:hover { color: #f0f0f0; }
.topbar__search {
  flex: 1;
  max-width: 560px;
  position: relative;
}
.topbar__search input {
  width: 100%;
  padding: 9px 14px 9px 40px;
  font-size: 13px;
  border-radius: 4px;
}
.topbar__search i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #555;
  font-size: 13px;
}
.topbar__actions {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.topbar__vehicle-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #f5a623;
  color: #f5a623;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.15s ease;
}
.topbar__vehicle-btn:hover { background: rgba(245, 166, 35, 0.1); }
.topbar__icon-btn {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 17px;
  border-radius: 4px;
  transition: all 0.15s ease;
}
.topbar__icon-btn:hover { color: #f0f0f0; background: #1a1a1a; }
.topbar__badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: #f5a623;
  color: #0f0f0f;
  font-size: 9px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.topbar__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #2e2e2e;
  object-fit: cover;
  margin-left: 4px;
}

/* =========================================================
   VEHICLE FITMENT STRIP
   ========================================================= */
.fitment-strip {
  background: #1a1a1a;
  border-bottom: 1px solid #2e2e2e;
  padding: 24px 32px;
}
.fitment-strip__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: #f5a623;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}
.fitment-strip__row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.fitment-strip__select {
  flex: 1;
  min-width: 140px;
  padding: 10px 14px;
  font-size: 13px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23888'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}
.fitment-strip__btn {
  background: #f5a623;
  color: #0f0f0f;
  font-weight: 600;
  font-size: 13px;
  padding: 10px 24px;
  border-radius: 4px;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background 0.15s ease;
  white-space: nowrap;
}
.fitment-strip__btn:hover { background: #e09415; }

/* =========================================================
   HERO — FULL-WIDTH JUMBOTRON
   ========================================================= */
.hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  background: #0f0f0f;
  border-bottom: 1px solid #2e2e2e;
  overflow: hidden;
}
.hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero__slide--active { opacity: 1; }
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(15,15,15,0.92) 0%, rgba(15,15,15,0.7) 50%, rgba(15,15,15,0.35) 100%);
  pointer-events: none;
}
/* Carousel arrows */
.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.hero__arrow:hover { background: rgba(245,166,35,0.75); border-color: #f5a623; }
.hero__arrow--prev { left: 20px; }
.hero__arrow--next { right: 20px; }
/* Carousel dots */
.hero__dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
  align-items: center;
}
.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.hero__dot--active { background: #f5a623; transform: scale(1.4); }
.hero__content {
  position: relative;
  z-index: 1;
  padding: 56px 48px;
  max-width: 640px;
}
.hero__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: #f5a623;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero__label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: #f5a623;
}
.hero__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 52px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.08;
  color: #f0f0f0;
  margin-bottom: 16px;
}
.hero__subtitle {
  font-size: 15px;
  color: #aaa;
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 480px;
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }
.btn-amber {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f5a623;
  color: #0f0f0f!important;
  font-weight: 600;
  font-size: 13px;
  padding: 12px 24px;
  border-radius: 4px;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background 0.15s ease;
  text-decoration: none;
}
.btn-amber:hover { background: #e09415; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #f0f0f0;
  font-weight: 500;
  font-size: 13px;
  padding: 12px 24px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.2);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all 0.15s ease;
  text-decoration: none;
}
.btn-ghost:hover { border-color: #f5a623; color: #f5a623; }

/* --- Services CTA banner --- */
.svc-cta {
  background: rgba(245,166,35,.08);
  border: 1px solid rgba(245,166,35,.22);
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
  margin-top: 16px;
}
.svc-cta__title {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 700;
  color: #f0f0f0;
}
.svc-cta__sub {
  color: #a3a3a3;
  font-size: 15px;
  line-height: 1.6;
  max-width: 540px;
  margin: 0 auto 32px;
}
.svc-cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.svc-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.svc-cta__btn--primary {
  background: #f5a623;
  color: #1a1a1a!important;
  border: 1px solid #f5a623;
}
.svc-cta__btn--primary:hover {
  background: #e09415;
  border-color: #e09415;
  color: #0f0f0f;
  transform: translateY(-1px);
}
.svc-cta__btn--secondary {
  background: rgba(255,255,255,0.03);
  color: #e0e0e0;
  border: 1px solid rgba(255,255,255,0.15);
}
.svc-cta__btn--secondary:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-1px);
}

@media (max-width: 480px) {
  .svc-cta { padding: 32px 20px; }
  .svc-cta__actions { flex-direction: column; gap: 12px; }
  .svc-cta__btn { width: 100%; }
}

html[data-theme="light"] .svc-cta { background: rgba(245,166,35,.06); border-color: rgba(217,119,6,.25); }
html[data-theme="light"] .svc-cta__title { color: #1a1a1a; }
html[data-theme="light"] .svc-cta__sub { color: #666; }
html[data-theme="light"] .svc-cta__btn--secondary {
  background: transparent;
  color: #555;
  border-color: rgba(0,0,0,0.15);
}
html[data-theme="light"] .svc-cta__btn--secondary:hover {
  background: rgba(0,0,0,0.03);
  color: #1a1a1a;
  border-color: rgba(0,0,0,0.3);
}

/* --- Stats strip --- */
.stats-strip {
  display: flex;
  background: #1a1a1a;
  border-bottom: 1px solid #2e2e2e;
}
.stats-strip__item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 20px;
  border-right: 1px solid #2e2e2e;
  font-size: 13px;
}
.stats-strip__item:last-child { border-right: none; }
.stats-strip__number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #f5a623;
}
.stats-strip__text { color: #888; font-size: 13px; }

/* =========================================================
   SECTION HEADERS
   ========================================================= */
.section-hdr {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
  padding: 0 32px;
}
.section-hdr__left {}
.section-hdr__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #f0f0f0;
  line-height: 1;
}
.section-hdr__bar {
  display: block;
  width: 40px;
  height: 4px;
  background: #f5a623;
  margin-top: 8px;
  border-radius: 2px;
}
.section-hdr__arrows {
  display: flex;
  gap: 8px;
}
.section-hdr__arrow-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #f5a623;
  color: #f5a623;
  border-radius: 4px;
  font-size: 13px;
  transition: all 0.15s ease;
}
.section-hdr__arrow-btn:hover { background: #f5a623; color: #0f0f0f; }

/* =========================================================
   PRODUCT CARDS
   ========================================================= */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 16px;
  padding: 0 32px;
}
.pcard {
  background: #1a1a1a;
  border: 1px solid #2e2e2e;
  border-left: 2px solid transparent;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.15s ease;
  position: relative;
}
.pcard:hover {
  border-left-color: #f5a623;
  box-shadow: 0 8px 32px rgba(245, 166, 35, 0.12);
  transform: translateY(-2px);
}
.pcard__badge {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-top: 48px solid #f5a623;
  border-left: 48px solid transparent;
  z-index: 2;
}
.pcard__badge-text {
  position: absolute;
  top: 6px;
  right: 4px;
  font-size: 9px;
  font-weight: 700;
  color: #0f0f0f;
  text-transform: uppercase;
  transform: rotate(45deg);
  z-index: 3;
  letter-spacing: 0.04em;
}
.pcard__img {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  background: #141414;
}
.pcard__img img { max-height: 140px; object-fit: contain; }
.pcard__divider { height: 1px; background: #2e2e2e; }
.pcard__body { padding: 14px 16px 16px; }
.pcard__sku {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: #f5a623;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.pcard__name {
  font-size: 14px;
  font-weight: 600;
  color: #f0f0f0;
  line-height: 1.3;
  height: 36px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 4px;
}
.pcard__brand {
  font-size: 11px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.pcard__price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}
.pcard__price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 18px;
  font-weight: 700;
  color: #f5a623;
}
.pcard__price--old {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: #ef4444;
  text-decoration: line-through;
}
.pcard__cfp {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .03em;
  color: #f5a623;
  background: rgba(245, 166, 35, .1);
  border: 1px solid rgba(245, 166, 35, .3);
  padding: 3px 9px;
  border-radius: 4px;
}
.pcard__stock {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  margin-bottom: 12px;
}
.pcard__stock-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
}
.pcard__stock-dot--out { background: #ef4444; }
.pcard__actions {
  display: flex;
  gap: 6px;
}
.pcard__enquire {
  flex: 1;
  background: #f5a623;
  color: #0f0f0f;
  font-weight: 600;
  font-size: 11px;
  padding: 8px 12px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
  transition: background 0.15s ease;
}
.pcard__enquire:hover { background: #e09415; color: #0f0f0f; }
.pcard__action-icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #2e2e2e;
  color: #666;
  border-radius: 3px;
  font-size: 12px;
  transition: all 0.15s ease;
}
.pcard__action-icon:hover { border-color: #f5a623; color: #f5a623; }

/* Scroll row for carousels */
.product-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 0 32px 8px;
  scroll-snap-type: x mandatory;
}
.product-scroll::-webkit-scrollbar { height: 4px; }
.product-scroll::-webkit-scrollbar-track { background: transparent; }
.product-scroll::-webkit-scrollbar-thumb { background: #2e2e2e; border-radius: 2px; }
.product-scroll .pcard {
  min-width: 220px;
  max-width: 220px;
  flex-shrink: 0;
  scroll-snap-align: start;
}

/* =========================================================
   SECTIONS
   ========================================================= */
.section {
  padding: 40px 0;
}
.section--alt { background: #111; }

/* =========================================================
   SALE BLOCK
   ========================================================= */
.sale-block {
  background: #1a1a1a;
  background-image: repeating-linear-gradient(
    135deg,
    transparent,
    transparent 10px,
    rgba(34,34,34,0.5) 10px,
    rgba(34,34,34,0.5) 12px
  );
  padding: 40px 32px;
  display: flex;
  gap: 32px;
  align-items: stretch;
  border-top: 1px solid #2e2e2e;
  border-bottom: 1px solid #2e2e2e;
}
.sale-block__left {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 200px;
}
.sale-block__heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 64px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  color: #f5a623;
}
.sale-block__sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 8px;
  margin-bottom: 20px;
}
.countdown {
  display: flex;
  gap: 4px;
  align-items: center;
}
.countdown__box {
  background: #0f0f0f;
  border: 1px solid #2e2e2e;
  border-radius: 4px;
  padding: 8px 10px;
  text-align: center;
  min-width: 48px;
}
.countdown__digit {
  font-family: 'JetBrains Mono', monospace;
  font-size: 22px;
  font-weight: 700;
  color: #f0f0f0;
  line-height: 1;
}
.countdown__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 2px;
}
.countdown__sep {
  font-family: 'JetBrains Mono', monospace;
  font-size: 20px;
  font-weight: 700;
  color: #f5a623;
  padding: 0 2px;
}
.sale-block__right {
  flex: 1;
  overflow-x: auto;
  display: flex;
  gap: 16px;
  padding-bottom: 4px;
}
.sale-block__right .pcard {
  min-width: 200px;
  max-width: 200px;
  flex-shrink: 0;
}

/* =========================================================
   BRANDS STRIP
   ========================================================= */
.brands-strip {
  background: #111;
  border-top: 1px solid #2e2e2e;
  border-bottom: 1px solid #2e2e2e;
  padding: 40px 32px;
}
.brands-strip__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.brands-strip__item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 148px;
  min-height: 84px;
  padding: 18px 28px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  opacity: 0.65;
  filter: grayscale(1) brightness(1.8);
  transition: opacity 0.2s ease, filter 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  text-decoration: none;
}
.brands-strip__item:hover {
  opacity: 1;
  filter: grayscale(0) brightness(1);
  border-color: rgba(245,166,35,.35);
  background: rgba(245,166,35,.06);
}
.brands-strip__item img { height: 46px; width: auto; max-width: 120px; object-fit: contain; display: block; }
.brands-strip__item span { font-weight: 700; font-size: 13px; letter-spacing: .04em; color: #fff; opacity: .8; text-align: center; }

/* =========================================================
   BLOG SECTION
   ========================================================= */
.blog-card {
  background: #1a1a1a;
  border: 1px solid #2e2e2e;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.15s ease;
}
.blog-card:hover {
  border-color: #f5a623;
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.08);
}
.blog-card__img { height: 180px; overflow: hidden; }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__body { padding: 16px; }
.blog-card__date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: #f5a623;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.blog-card__title {
  font-size: 15px;
  font-weight: 600;
  color: #f0f0f0;
  line-height: 1.3;
  height: 40px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 8px;
}
.blog-card__excerpt {
  font-size: 13px;
  color: #888;
  line-height: 1.5;
  height: 60px;
  overflow: hidden;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  padding: 0 32px;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: #0a0a0a;
  border-top: 1px solid #2e2e2e;
  padding: 48px 32px 24px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.footer__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  color: #f0f0f0;
}
.footer__about {
  font-size: 13px;
  color: #888;
  line-height: 1.7;
  max-width: 320px;
}
.footer__links li { margin-bottom: 8px; }
.footer__links a {
  color: #888;
  font-size: 13px;
  transition: color 0.15s ease;
}
.footer__links a:hover { color: #f5a623; }
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #888;
  margin-bottom: 10px;
}
.footer__contact-item i { color: #f5a623; width: 16px; text-align: center; }
.footer__bottom {
  border-top: 1px solid #2e2e2e;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy { font-size: 12px; color: #555; }
.footer__legal { display: flex; gap: 16px; }
.footer__legal a { font-size: 12px; color: #555; text-decoration: none; transition: color 0.15s ease; }
.footer__legal a:hover { color: #f5a623; }
.footer__socials { display: flex; gap: 12px; }
.footer__socials a {
  color: #555;
  font-size: 16px;
  transition: color 0.15s ease;
}
.footer__socials a:hover { color: #f5a623; }

/* =========================================================
   MOBILE BOTTOM NAV
   ========================================================= */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: #0f0f0f;
  border-top: 1px solid #2e2e2e;
  z-index: 200;
  justify-content: space-around;
  align-items: center;
}
.mobile-bottom-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: #666;
  font-size: 10px;
  transition: color 0.15s ease;
}
.mobile-bottom-nav__item i { font-size: 18px; }
.mobile-bottom-nav__item--active { color: #f5a623; }

/* =========================================================
   CONTENT PAGES (About, Contact, Terms, Privacy, etc.)
   ========================================================= */
.content-page {
  padding: 40px 32px;
  /* max-width: 800px; */
}
.content-page__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #f0f0f0;
  margin-bottom: 8px;
}
.content-page__bar {
  display: block;
  width: 40px;
  height: 4px;
  background: #f5a623;
  border-radius: 2px;
  margin-bottom: 32px;
}
.content-page h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #f0f0f0;
  margin: 32px 0 12px;
}
.content-page p {
  font-size: 14px;
  color: #aaa;
  line-height: 1.8;
  margin-bottom: 16px;
}
.content-page ul {
  padding-left: 20px;
  margin-bottom: 16px;
}
.content-page ul li {
  font-size: 14px;
  color: #aaa;
  line-height: 1.8;
  list-style: disc;
}
.content-page a { color: #f5a623; }
.content-page a:hover { color: #e09415; }

/* Contact form */
/* Contact page layout */
.cp-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}
.cp-section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #f0f0f0;
  margin: 0 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #2e2e2e;
}
.cp-section-title i { color: #f5a623; margin-right: 8px; }

/* Contact form */
.contact-form .form-group { margin-bottom: 18px; }
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #888;
  margin-bottom: 7px;
}
.contact-form label .req { color: #ef4444; margin-left: 2px; }
.contact-form .form-input {
  width: 100%;
  background: #1a1a1a;
  border: 1px solid #2e2e2e;
  color: #f0f0f0;
  padding: 11px 14px;
  border-radius: 4px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.15s ease;
  box-sizing: border-box;
}
.contact-form .form-input:focus { border-color: #f5a623; }
.contact-form .form-input::placeholder { color: #444; }
.contact-form textarea.form-input { resize: vertical; min-height: 130px; }

/* Contact info sidebar */
.cp-info {
  background: #111;
  border: 1px solid #2e2e2e;
  border-radius: 10px;
  padding: 28px 24px;
}
.cp-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}
.cp-info-item:last-of-type { margin-bottom: 24px; }
.cp-info-item__icon {
  width: 36px;
  height: 36px;
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid rgba(245, 166, 35, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cp-info-item__icon i { color: #f5a623; font-size: 14px; }
.cp-info-item__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #f5a623;
  margin-bottom: 4px;
}
.cp-info-item__value { font-size: 13px; color: #aaa; line-height: 1.7; }
.cp-info-item__value a { color: #aaa; transition: color 0.15s ease; }
.cp-info-item__value a:hover { color: #f5a623; }

/* Responsive */
@media (max-width: 767px) {
  .cp-layout { grid-template-columns: 1fr; gap: 28px; }
  .contact-form__row { grid-template-columns: 1fr; gap: 0; }
}

/* Light overrides */
html[data-theme="light"] .cp-section-title { color: #1a1a1a; border-bottom-color: #e0e0e0; }
html[data-theme="light"] .contact-form label { color: #666; }
html[data-theme="light"] .contact-form .form-input { background: #f9f9f9; border-color: #ddd; color: #1a1a1a; }
html[data-theme="light"] .contact-form .form-input:focus { border-color: #d97706; }
html[data-theme="light"] .contact-form .form-input::placeholder { color: #aaa; }
html[data-theme="light"] .cp-info { background: #f7f7f7; border-color: #e4e4e4; }
html[data-theme="light"] .cp-info-item__icon { background: rgba(217,119,6,0.08); border-color: rgba(217,119,6,0.2); }
html[data-theme="light"] .cp-info-item__icon i { color: #d97706; }
html[data-theme="light"] .cp-info-item__label { color: #d97706; }
html[data-theme="light"] .cp-info-item__value { color: #555; }
html[data-theme="light"] .cp-info-item__value a { color: #555; }
html[data-theme="light"] .cp-info-item__value a:hover { color: #d97706; }

/* =========================================================
   ALERTS
   ========================================================= */
.lp-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 13px;
  margin-bottom: 20px;
}
.lp-alert--success {
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.25);
  color: #22c55e;
}
.lp-alert--error {
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.25);
  color: #ef4444;
}
.lp-alert--warning {
  background: rgba(234,179,8,0.08);
  border: 1px solid rgba(234,179,8,0.25);
  color: #eab308;
}
.lp-alert--info {
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.25);
  color: #3b82f6;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
/* --- Sidebar Overlay --- */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 99;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.sidebar-overlay--visible {
  display: block;
  opacity: 1;
}
.sidebar__close {
  display: none;
  position: absolute;
  top: 16px;
  right: 16px;
  color: #888;
  font-size: 20px;
  padding: 4px;
  z-index: 10;
  transition: color 0.15s ease;
}
.sidebar__close:hover { color: #f0f0f0; }
html[data-theme="light"] .sidebar-overlay { background: rgba(0, 0, 0, 0.4); }
html[data-theme="light"] .sidebar__close { color: #999; }
html[data-theme="light"] .sidebar__close:hover { color: #1a1a1a; }

@media (max-width: 1199px) {
  .sidebar {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  .sidebar--open {
    transform: translateX(0);
  }
  .sidebar__close { display: block; }
  .main-area { margin-left: 0; }
  .topbar__toggle { display: flex; }
}
@media (max-width: 991px) {
  .hero { min-height: 340px; }
  .hero__content { padding: 40px 24px; }
  .hero__title { font-size: 40px; }
  .hero__overlay { background: linear-gradient(0deg, rgba(15,15,15,0.92) 0%, rgba(15,15,15,0.6) 100%); }
  .stats-strip { flex-wrap: wrap; }
  .stats-strip__item { flex: 1 1 45%; border-bottom: 1px solid #2e2e2e; }
  .sale-block { flex-direction: column; }
  .sale-block__left { min-width: unset; }
  .sale-block__heading { font-size: 48px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .fitment-strip { padding: 20px 24px; }
  .section-hdr { padding: 0 24px; }
  .product-grid { padding: 0 24px; }
  .product-scroll { padding: 0 24px 8px; }
  .blog-grid { padding: 0 24px; }
  .content-page { padding: 32px 24px; }
}
@media (max-width: 767px) {
  .hero { min-height: 300px; }
  .hero__content { padding: 32px 16px; }
  .hero__title { font-size: 32px; }
  .hero__subtitle { font-size: 14px; margin-bottom: 20px; }
  .hero__label { font-size: 10px; }
  .btn-amber, .btn-ghost { font-size: 12px; padding: 10px 18px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 0 16px; }
  .pcard__img { height: 140px; padding: 12px; }
  .pcard__body { padding: 10px 12px 14px; }
  .footer__grid { grid-template-columns: 1fr; }
  .stats-strip__item { flex: 1 1 100%; }
  .topbar__vehicle-btn span { display: none; }
  .topbar__actions { gap: 2px; }
  .topbar { padding: 0 12px; gap: 8px; }
  .fitment-strip__row { flex-direction: column; }
  .fitment-strip__select { min-width: 100%; }
  .mobile-bottom-nav { display: flex; }
  body { padding-bottom: 56px; }
  .section-hdr { padding: 0 16px; }
  .sale-block { padding: 24px 16px; }
  .blog-grid { padding: 0 16px; grid-template-columns: 1fr; }
  .brands-strip { padding: 24px 16px; }
  .brands-strip__item { min-width: 110px; min-height: 68px; padding: 14px 18px; }
  .brands-strip__item img { height: 36px; max-width: 90px; }
  .site-footer { padding: 32px 16px 80px; }
  .content-page { padding: 24px 16px; }
  .content-page__title { font-size: 28px; }
}
@media (max-width: 480px) {
  .hero__title { font-size: 28px; }
  .hero__subtitle { font-size: 13px; }
  .hero__content { padding: 28px 16px; }
  .topbar__vehicle-btn { display: none; }
  .fitment-strip { padding: 16px; }
  .sale-block__heading { font-size: 36px; }
  .countdown__box { min-width: 48px; padding: 8px 6px; }
  .countdown__digit { font-size: 20px; }
}

/* =========================================================
   THEME TRANSITION (added after first paint via JS)
   ========================================================= */
html.theme-ready,
html.theme-ready body,
html.theme-ready .sidebar,
html.theme-ready .topbar,
html.theme-ready .pcard,
html.theme-ready .blog-card,
html.theme-ready .fitment-strip,
html.theme-ready .hero,
html.theme-ready .hero__bg::after,
html.theme-ready .hero__content,
html.theme-ready .stats-strip,
html.theme-ready .sale-block,
html.theme-ready .brands-strip,
html.theme-ready .site-footer,
html.theme-ready .mobile-bottom-nav,
html.theme-ready input,
html.theme-ready select {
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

/* =========================================================
   THEME TOGGLE
   ========================================================= */
.theme-switcher {
  display: flex;
  align-items: center;
  border: 1px solid #2e2e2e;
  border-radius: 6px;
  overflow: hidden;
  margin-right: 4px;
}
.theme-switcher__btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #666;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.15s ease;
  padding: 0;
}
.theme-switcher__btn:hover { color: #f0f0f0; }
.theme-switcher__btn--active {
  background: #f5a623;
  color: #0f0f0f !important;
}

/* =========================================================
   ABOUT PREVIEW SECTION  (.about-*)
   ========================================================= */
.about-section { padding: 56px 40px; }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.about-text__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #f0f0f0;
  margin: 0 0 10px;
}
.about-text__bar {
  display: block;
  width: 40px;
  height: 4px;
  background: #f5a623;
  border-radius: 2px;
  margin-bottom: 20px;
}
.about-text p {
  font-size: 14px;
  line-height: 1.8;
  color: #aaa;
  margin-bottom: 16px;
}
.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.about-card {
  background: rgba(245, 166, 35, 0.07);
  border: 1px solid rgba(245, 166, 35, 0.18);
  border-radius: 10px;
  padding: 22px 16px;
  text-align: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.about-card:hover {
  background: rgba(245, 166, 35, 0.12);
  border-color: rgba(245, 166, 35, 0.35);
}
.about-card i {
  font-size: 26px;
  color: #f5a623;
  margin-bottom: 10px;
  display: block;
}
.about-card__title {
  font-weight: 700;
  font-size: 13px;
  color: #f0f0f0;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.about-card__sub { font-size: 12px; color: #777; line-height: 1.5; }

@media (max-width: 991px) {
  .about-section { padding: 40px 24px; }
  .about-inner { gap: 32px; }
}
@media (max-width: 767px) {
  .about-section { padding: 36px 16px; }
  .about-inner { grid-template-columns: 1fr; gap: 28px; }
  .about-text__title { font-size: 26px; }
  .about-cards { grid-template-columns: 1fr 1fr; gap: 10px; }
}
@media (max-width: 400px) {
  .about-cards { grid-template-columns: 1fr; }
}

/* Light theme overrides */
html[data-theme="light"] .about-text__title { color: #1a1a1a; }
html[data-theme="light"] .about-text__bar { background: #d97706; }
html[data-theme="light"] .about-text p { color: #555; }
html[data-theme="light"] .about-card { background: rgba(217,119,6,0.06); border-color: rgba(217,119,6,0.18); }
html[data-theme="light"] .about-card:hover { background: rgba(217,119,6,0.11); border-color: rgba(217,119,6,0.3); }
html[data-theme="light"] .about-card i { color: #d97706; }
html[data-theme="light"] .about-card__title { color: #1a1a1a; }
html[data-theme="light"] .about-card__sub { color: #888; }

/* =========================================================
   PRODUCT DETAIL PAGE  (.pd-*)
   ========================================================= */
.pd-page { padding: 32px; }

/* Breadcrumb */
.pd-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 12px;
  color: #666;
  margin-bottom: 28px;
}
.pd-breadcrumb a { color: #666; transition: color 0.15s ease; }
.pd-breadcrumb a:hover { color: #f5a623; }
.pd-breadcrumb__sep { margin: 0 7px; font-size: 9px; color: #3a3a3a; }
.pd-breadcrumb__current { color: #aaa; }

/* Two-column layout */
.pd-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}

/* Image panel */
.pd-images { position: sticky; top: 72px; }
.pd-main-img {
  background: #141414;
  border: 1px solid #2e2e2e;
  border-radius: 10px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  margin-bottom: 12px;
}
.pd-main-img img {
  max-height: 300px;
  max-width: 100%;
  object-fit: contain;
  display: block;
  transition: opacity 0.15s ease;
}
.pd-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.pd-thumbs::-webkit-scrollbar { height: 3px; }
.pd-thumbs::-webkit-scrollbar-track { background: transparent; }
.pd-thumbs::-webkit-scrollbar-thumb { background: #2e2e2e; border-radius: 2px; }
.pd-thumb {
  flex-shrink: 0;
  width: 74px;
  height: 74px;
  background: #141414;
  border: 2px solid #2e2e2e;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 6px;
  transition: border-color 0.15s ease;
  overflow: hidden;
}
.pd-thumb img { max-height: 100%; max-width: 100%; object-fit: contain; }
.pd-thumb:hover,
.pd-thumb--active { border-color: #f5a623; }

/* Info panel */
.pd-badge {
  display: inline-block;
  background: #f5a623;
  color: #0f0f0f;
  padding: 3px 12px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.pd-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: #f0f0f0;
  margin: 0 0 14px;
}
.pd-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.pd-meta__chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: #888;
  background: #1a1a1a;
  border: 1px solid #2e2e2e;
  padding: 4px 10px;
  border-radius: 4px;
}
.pd-meta__chip i { color: #f5a623; font-size: 10px; }
.pd-meta__chip a { color: #f5a623; text-decoration: none; }
.pd-meta__chip a:hover { color: #e09415; }
.pd-divider { height: 1px; background: #2e2e2e; margin: 20px 0; }

/* Price */
.pd-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.pd-price__amount {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #f5a623;
  line-height: 1;
}
.pd-price__old {
  font-family: 'JetBrains Mono', monospace;
  font-size: 18px;
  color: #555;
  text-decoration: line-through;
}
.pd-price__save {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  padding: 3px 8px;
  border-radius: 4px;
  align-self: center;
}

/* Contact-for-price callout */
.pd-cfp {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(245, 166, 35, 0.07);
  border: 1px solid rgba(245, 166, 35, 0.22);
  border-left: 3px solid #f5a623;
  border-radius: 8px;
  margin-bottom: 18px;
}
.pd-cfp__icon {
  width: 42px;
  height: 42px;
  background: rgba(245, 166, 35, 0.14);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pd-cfp__icon i { color: #f5a623; font-size: 18px; }
.pd-cfp__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #f5a623;
  line-height: 1.1;
  margin-bottom: 3px;
}
.pd-cfp__sub { font-size: 12px; color: #888; }

/* Stock */
.pd-stock {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 18px;
}
.pd-stock--in { color: #22c55e; }
.pd-stock--out { color: #ef4444; }

/* Description */
.pd-desc {
  font-size: 14px;
  line-height: 1.75;
  color: #aaa;
  margin-bottom: 24px;
}
.pd-desc p { margin-bottom: 12px; }
.pd-desc p:last-child { margin-bottom: 0; }
.pd-desc ul, .pd-desc ol { padding-left: 22px; margin-bottom: 12px; }
.pd-desc li { margin-bottom: 4px; }
.pd-desc strong, .pd-desc b { color: #e0e0e0; font-weight: 600; }
.pd-desc em, .pd-desc i { font-style: italic; }
.pd-desc a { color: #f5a623; text-decoration: none; }
.pd-desc a:hover { text-decoration: underline; }
.pd-desc h1, .pd-desc h2, .pd-desc h3, .pd-desc h4 { color: #f0f0f0; font-weight: 600; margin-bottom: 8px; }
.pd-desc h3 { font-size: 16px; }
.pd-desc h4 { font-size: 15px; }

/* Action row */
.pd-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 16px;
}
.pd-cart-form {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pd-qty {
  width: 64px;
  padding: 11px 8px;
  background: #141414;
  border: 1px solid #2e2e2e;
  color: #f0f0f0;
  border-radius: 4px;
  text-align: center;
  font-size: 15px;
  font-family: 'JetBrains Mono', monospace;
  outline: none;
  transition: border-color 0.15s ease;
}
.pd-qty:focus { border-color: #f5a623; }

/* WhatsApp button */
.pd-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(37, 211, 102, 0.1);
  color: #25d366;
  border: 1px solid rgba(37, 211, 102, 0.3);
  padding: 14px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all 0.2s ease;
  margin-top: 8px;
  width: 100%;
}
.pd-wa:hover { 
  background: #25d366; 
  color: #0f0f0f; 
  border-color: #25d366;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.2); 
}
.pd-wa i { font-size: 18px; }

/* Specifications (full-width below layout) */
.pd-specs-section {
  background: #111;
  border: 1px solid #2e2e2e;
  border-radius: 10px;
  padding: 28px 32px;
  margin-bottom: 40px;
}
.pd-specs__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #f0f0f0;
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.pd-specs__title i { color: #f5a623; font-size: 16px; }
.pd-specs__title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #2e2e2e;
}
.pd-specs__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.pd-specs__table tr:nth-child(odd) td { background: #161616; }
.pd-specs__table td {
  padding: 10px 14px;
  vertical-align: top;
  border-bottom: 1px solid #1e1e1e;
}
.pd-specs__table td:first-child {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  width: 36%;
}
.pd-specs__table td:last-child { color: #ddd; font-weight: 500; }

/* Related products wrapper */
.pd-related { margin-bottom: 40px; }

/* Responsive */
@media (max-width: 991px) {
  .pd-page { padding: 24px; }
  .pd-images { position: static; }
}
@media (max-width: 767px) {
  .pd-page { padding: 20px 16px; }
  .pd-layout { grid-template-columns: 1fr; gap: 24px; }
  .pd-title { font-size: 28px; }
  .pd-price__amount { font-size: 34px; }
  .pd-specs-section { padding: 20px 16px; }
}

/* =========================================================
   LIGHT THEME OVERRIDES
   ========================================================= */
html[data-theme="light"] { color-scheme: light; }
html[data-theme="light"] body { background: #ffffff; color: #1a1a1a; }
html[data-theme="light"] a { color: #d97706; }
html[data-theme="light"] a:hover { color: #b45309; }
html[data-theme="light"] ::selection { background: rgba(217, 119, 6, 0.2); color: #000; }
html[data-theme="light"] ::-webkit-scrollbar-track { background: #f0f0f0; }
html[data-theme="light"] ::-webkit-scrollbar-thumb { background: #d97706; }
html[data-theme="light"] ::-webkit-scrollbar-thumb:hover { background: #b45309; }
html[data-theme="light"] input,
html[data-theme="light"] select,
html[data-theme="light"] textarea { background: #f7f7f7; border-color: #ddd; color: #1a1a1a; }
html[data-theme="light"] .sidebar { background: #ffffff; border-right-color: #e0e0e0; }
html[data-theme="light"] .sidebar__logo { border-bottom-color: #d97706; }
html[data-theme="light"] .sidebar__logo img { background: #1c1c1c; border-radius: 8px; padding: 8px 14px; }
html[data-theme="light"] .sidebar__logo-mark { color: #1a1a1a; }
html[data-theme="light"] .sidebar__logo-mark span { color: #d97706; }
html[data-theme="light"] .sidebar__logo-sub { color: #999; }
html[data-theme="light"] .sidebar__nav-label { color: #d97706; }
html[data-theme="light"] .sidebar__nav-item { color: #555; }
html[data-theme="light"] .sidebar__nav-item:hover { background: #f5f5f5; color: #1a1a1a; }
html[data-theme="light"] .sidebar__nav-item--active { background: #f0f0f0; color: #1a1a1a; border-left-color: #d97706; }
html[data-theme="light"] .sidebar__nav-item i { color: #d97706; }
html[data-theme="light"] .sidebar__divider { border-top-color: #e0e0e0; }
html[data-theme="light"] .sidebar__garage { border-top-color: #e0e0e0; }
html[data-theme="light"] .sidebar__garage-title { color: #d97706; }
html[data-theme="light"] .sidebar__vehicle-pill { background: #f5f5f5; border-color: #e0e0e0; color: #555; }
html[data-theme="light"] .sidebar__vehicle-pill i { color: #999; }
html[data-theme="light"] .sidebar__vehicle-pill .remove { color: #bbb; }
html[data-theme="light"] .sidebar__vehicle-pill .remove:hover { color: #ef4444; }
html[data-theme="light"] .sidebar__add-vehicle { color: #d97706; border-color: #d97706; }
html[data-theme="light"] .sidebar__add-vehicle:hover { background: rgba(217, 119, 6, 0.06); }
html[data-theme="light"] .topbar { background: #ffffff; border-bottom-color: #e0e0e0; }
html[data-theme="light"] .topbar__toggle { color: #999; }
html[data-theme="light"] .topbar__toggle:hover { color: #1a1a1a; }
html[data-theme="light"] .topbar__search i { color: #aaa; }
html[data-theme="light"] .topbar__vehicle-btn { border-color: #d97706; color: #d97706; }
html[data-theme="light"] .topbar__vehicle-btn:hover { background: rgba(217, 119, 6, 0.08); }
html[data-theme="light"] .topbar__icon-btn { color: #777; }
html[data-theme="light"] .topbar__icon-btn:hover { color: #1a1a1a; background: #f5f5f5; }
html[data-theme="light"] .topbar__badge { background: #f5a623; color: #0f0f0f; }
html[data-theme="light"] .topbar__avatar { border-color: #e0e0e0; }
html[data-theme="light"] .theme-switcher { border-color: #e0e0e0; }
html[data-theme="light"] .theme-switcher__btn { color: #999; }
html[data-theme="light"] .theme-switcher__btn:hover { color: #1a1a1a; }
html[data-theme="light"] .fitment-strip { background: #f7f7f7; border-bottom-color: #e0e0e0; }
html[data-theme="light"] .fitment-strip__label { color: #d97706; }
html[data-theme="light"] .fitment-strip__btn { background: #f5a623; color: #0f0f0f; }
html[data-theme="light"] .fitment-strip__btn:hover { background: #e09415; }
html[data-theme="light"] .hero { background: #f7f7f7; border-bottom-color: #e0e0e0; }
html[data-theme="light"] .hero__overlay { background: linear-gradient(90deg, rgba(255,255,255,0.88) 0%, rgba(255,255,255,0.65) 50%, rgba(255,255,255,0.25) 100%); }
html[data-theme="light"] .hero__label { color: #d97706; }
html[data-theme="light"] .hero__label::before { background: #d97706; }
html[data-theme="light"] .hero__title { color: #1a1a1a; }
html[data-theme="light"] .hero__subtitle { color: #555; }
html[data-theme="light"] .btn-amber { background: #f5a623; color: #0f0f0f; }
html[data-theme="light"] .btn-amber:hover { background: #e09415; }
html[data-theme="light"] .btn-ghost { color: #1a1a1a; border-color: rgba(0,0,0,0.2); }
html[data-theme="light"] .btn-ghost:hover { border-color: #d97706; color: #d97706; }
html[data-theme="light"] .stats-strip { background: #f7f7f7; border-bottom-color: #e0e0e0; }
html[data-theme="light"] .stats-strip__item { border-right-color: #e0e0e0; }
html[data-theme="light"] .stats-strip__number { color: #d97706; }
html[data-theme="light"] .stats-strip__text { color: #666; }
html[data-theme="light"] .section-hdr__title { color: #1a1a1a; }
html[data-theme="light"] .section-hdr__bar { background: #d97706; }
html[data-theme="light"] .section-hdr__arrow-btn { border-color: #d97706; color: #d97706; }
html[data-theme="light"] .section-hdr__arrow-btn:hover { background: #d97706; color: #fff; }
html[data-theme="light"] .pcard { background: #ffffff; border-color: #e8e8e8; }
html[data-theme="light"] .pcard:hover { border-left-color: #d97706; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08); }
html[data-theme="light"] .pcard__badge { border-top-color: #f5a623; }
html[data-theme="light"] .pcard__badge-text { color: #0f0f0f; }
html[data-theme="light"] .pcard__img { background: #f5f5f5; }
html[data-theme="light"] .pcard__divider { background: #e8e8e8; }
html[data-theme="light"] .pcard__sku { color: #d97706; }
html[data-theme="light"] .pcard__name { color: #1a1a1a; }
html[data-theme="light"] .pcard__brand { color: #999; }
html[data-theme="light"] .pcard__price { color: #d97706; }
html[data-theme="light"] .pcard__enquire { background: #f5a623; color: #0f0f0f; }
html[data-theme="light"] .pcard__enquire:hover { background: #e09415; color: #0f0f0f; }
html[data-theme="light"] .pcard__action-icon { border-color: #e0e0e0; color: #999; }
html[data-theme="light"] .pcard__action-icon:hover { border-color: #d97706; color: #d97706; }
html[data-theme="light"] .product-scroll::-webkit-scrollbar-thumb { background: #ddd; }
html[data-theme="light"] .section--alt { background: #fafafa; }
html[data-theme="light"] .sale-block {
  background: #f7f7f7;
  background-image: repeating-linear-gradient(135deg, transparent, transparent 10px, rgba(0,0,0,0.015) 10px, rgba(0,0,0,0.015) 12px);
  border-top-color: #e0e0e0;
  border-bottom-color: #e0e0e0;
}
html[data-theme="light"] .sale-block__heading { color: #d97706; }
html[data-theme="light"] .sale-block__sub { color: #888; }
html[data-theme="light"] .countdown__box { background: #ffffff; border-color: #e0e0e0; }
html[data-theme="light"] .countdown__digit { color: #1a1a1a; }
html[data-theme="light"] .countdown__label { color: #999; }
html[data-theme="light"] .countdown__sep { color: #d97706; }
html[data-theme="light"] .brands-strip { background: #f4f4f4; border-top-color: #e0e0e0; border-bottom-color: #e0e0e0; }
html[data-theme="light"] .brands-strip__item { background: #fff; border-color: #e4e4e4; filter: grayscale(1) brightness(0.65); opacity: 0.6; }
html[data-theme="light"] .brands-strip__item:hover { opacity: 1; filter: grayscale(0) brightness(1); border-color: #f5a623; background: #fffbf2; }
html[data-theme="light"] .brands-strip__item span { color: #1a1a1a; }
html[data-theme="light"] .blog-card { background: #ffffff; border-color: #e8e8e8; }
html[data-theme="light"] .blog-card:hover { border-color: #d97706; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06); }
html[data-theme="light"] .blog-card__date { color: #d97706; }
html[data-theme="light"] .blog-card__title { color: #1a1a1a; }
html[data-theme="light"] .blog-card__excerpt { color: #666; }
html[data-theme="light"] .site-footer { background: #f2f2f2; border-top-color: #e0e0e0; }
html[data-theme="light"] .footer__title { color: #1a1a1a; }
html[data-theme="light"] .footer__title img { background: #1c1c1c; border-radius: 8px; padding: 8px 14px; }
html[data-theme="light"] .footer__about { color: #666; }
html[data-theme="light"] .footer__links a { color: #666; }
html[data-theme="light"] .footer__links a:hover { color: #d97706; }
html[data-theme="light"] .footer__contact-item { color: #666; }
html[data-theme="light"] .footer__contact-item i { color: #d97706; }
html[data-theme="light"] .footer__bottom { border-top-color: #e0e0e0; }
html[data-theme="light"] .footer__copy { color: #aaa; }
html[data-theme="light"] .footer__legal a { color: #aaa; }
html[data-theme="light"] .footer__legal a:hover { color: #d97706; }
html[data-theme="light"] .footer__socials a { color: #aaa; }
html[data-theme="light"] .footer__socials a:hover { color: #d97706; }
html[data-theme="light"] .mobile-bottom-nav { background: #ffffff; border-top-color: #e0e0e0; }
html[data-theme="light"] .mobile-bottom-nav__item { color: #aaa; }
html[data-theme="light"] .mobile-bottom-nav__item--active { color: #d97706; }

/* Content pages light */
html[data-theme="light"] .content-page__title { color: #1a1a1a; }
html[data-theme="light"] .content-page__bar { background: #d97706; }
html[data-theme="light"] .content-page h2 { color: #1a1a1a; }
html[data-theme="light"] .content-page p { color: #555; }
html[data-theme="light"] .content-page ul li { color: #555; }
html[data-theme="light"] .content-page a { color: #d97706; }
/* Alerts light */
html[data-theme="light"] .lp-alert--success { background: rgba(34,197,94,0.06); border-color: rgba(34,197,94,0.2); }
html[data-theme="light"] .lp-alert--error { background: rgba(239,68,68,0.06); border-color: rgba(239,68,68,0.2); }

/* Responsive overrides for light */
@media (max-width: 991px) {
  html[data-theme="light"] .stats-strip__item { border-bottom-color: #e0e0e0; }
  html[data-theme="light"] .hero__overlay { background: linear-gradient(0deg, rgba(255,255,255,0.90) 0%, rgba(255,255,255,0.50) 100%); }
}

/* Product detail page light */
html[data-theme="light"] .pd-breadcrumb { color: #999; }
html[data-theme="light"] .pd-breadcrumb a { color: #888; }
html[data-theme="light"] .pd-breadcrumb a:hover { color: #d97706; }
html[data-theme="light"] .pd-breadcrumb__sep { color: #ccc; }
html[data-theme="light"] .pd-breadcrumb__current { color: #666; }
html[data-theme="light"] .pd-main-img { background: #f5f5f5; border-color: #e0e0e0; }
html[data-theme="light"] .pd-thumb { background: #f5f5f5; border-color: #ddd; }
html[data-theme="light"] .pd-thumb:hover,
html[data-theme="light"] .pd-thumb--active { border-color: #d97706; }
html[data-theme="light"] .pd-title { color: #1a1a1a; }
html[data-theme="light"] .pd-meta__chip { background: #f5f5f5; border-color: #e0e0e0; color: #666; }
html[data-theme="light"] .pd-meta__chip i { color: #d97706; }
html[data-theme="light"] .pd-meta__chip a { color: #d97706; }
html[data-theme="light"] .pd-meta__chip a:hover { color: #b45309; }
html[data-theme="light"] .pd-divider { background: #e0e0e0; }
html[data-theme="light"] .pd-price__amount { color: #d97706; }
html[data-theme="light"] .pd-price__old { color: #bbb; }
html[data-theme="light"] .pd-cfp { background: rgba(217,119,6,0.06); border-color: rgba(217,119,6,0.22); border-left-color: #d97706; }
html[data-theme="light"] .pd-cfp__icon { background: rgba(217,119,6,0.11); }
html[data-theme="light"] .pd-cfp__icon i { color: #d97706; }
html[data-theme="light"] .pd-cfp__title { color: #d97706; }
html[data-theme="light"] .pd-cfp__sub { color: #888; }
html[data-theme="light"] .pd-desc { color: #555; }
html[data-theme="light"] .pd-desc strong, html[data-theme="light"] .pd-desc b { color: #1a1a1a; }
html[data-theme="light"] .pd-desc a { color: #d97706; }
html[data-theme="light"] .pd-desc h1, html[data-theme="light"] .pd-desc h2,
html[data-theme="light"] .pd-desc h3, html[data-theme="light"] .pd-desc h4 { color: #1a1a1a; }
html[data-theme="light"] .pd-qty { background: #f5f5f5; border-color: #ddd; color: #1a1a1a; }
html[data-theme="light"] .pd-qty:focus { border-color: #d97706; }
html[data-theme="light"] .pd-wa { background: rgba(37, 211, 102, 0.08); border-color: rgba(37, 211, 102, 0.4); color: #16a34a; }
html[data-theme="light"] .pd-wa:hover { background: #22c55e; color: #fff; border-color: #22c55e; }
html[data-theme="light"] .pd-specs-section { background: #f9f9f9; border-color: #e4e4e4; }
html[data-theme="light"] .pd-specs__title { color: #1a1a1a; }
html[data-theme="light"] .pd-specs__title::after { background: #e0e0e0; }
html[data-theme="light"] .pd-specs__title i { color: #d97706; }
html[data-theme="light"] .pd-specs__table tr:nth-child(odd) td { background: #f0f0f0; }
html[data-theme="light"] .pd-specs__table td { border-bottom-color: #e8e8e8; }
html[data-theme="light"] .pd-specs__table td:first-child { color: #999; }
html[data-theme="light"] .pd-specs__table td:last-child { color: #333; }
