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

/* =========================================================
   ANIMATIONS & EFFECTS
   ========================================================= */

/* Parallax Effect */
.parallax-bg {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Micro-interaction: Hover Scale */
.hover-scale {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hover-scale:hover {
  transform: scale(1.03);
}

/* Accessibility: Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    animation-delay: -1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    background-attachment: initial !important;
    scroll-behavior: auto !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
  }
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* =========================================================
   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: 720px;
  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); }

@media (max-width: 768px) {
  .hero__arrow, .hero__dots, .section-hdr__arrows { display: none !important; }
}

.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: 900px;
  margin: 0 auto;
}
.content-page__header {
  background: linear-gradient(135deg, rgba(245,166,35,0.08) 0%, rgba(15,15,15,0.6) 100%);
  border: 1px solid rgba(245,166,35,0.15);
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}
.content-page__header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(245,166,35,0.12), transparent 70%);
  pointer-events: none;
}
.content-page__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #f0f0f0;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.content-page__subtitle {
  font-size: 16px;
  color: #aaa;
  line-height: 1.6;
  margin-bottom: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.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: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #f0f0f0;
  margin: 48px 0 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.content-page h2::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.1);
}
.content-page p {
  font-size: 15px;
  color: #aaa;
  line-height: 1.8;
  margin-bottom: 20px;
}
.content-page .lead-text {
  font-size: 18px;
  color: #f0f0f0;
  line-height: 1.7;
  font-weight: 500;
  border-left: 3px solid #f5a623;
  padding-left: 20px;
  margin-bottom: 32px;
}
.content-page__text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.content-page ul {
  padding-left: 20px;
  margin-bottom: 20px;
}
.content-page ul li {
  font-size: 15px;
  color: #aaa;
  line-height: 1.8;
  list-style: disc;
  margin-bottom: 6px;
}
.content-page ul.modern-list {
  list-style: none;
  padding: 0;
}
.content-page ul.modern-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
}
.content-page ul.modern-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: #f5a623;
  font-size: 14px;
}
.content-page a { color: #f5a623; text-decoration: none; transition: color 0.15s ease; }
.content-page a:hover { color: #e09415; text-decoration: underline; }

/* Content CTA Card */
.content-cta-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  margin-top: 56px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.content-cta-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  color: #f0f0f0;
  margin: 0 0 12px;
}
.content-cta-card p {
  color: #aaa;
  margin: 0 0 24px;
}
.content-cta-card .actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* About Us Specific */
.about-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 40px 0;
}
.mission-card {
  background: rgba(245, 166, 35, 0.05);
  border: 1px solid rgba(245, 166, 35, 0.2);
  border-radius: 12px;
  padding: 32px 28px;
  transition: all 0.3s ease;
}
.mission-card:hover {
  background: rgba(245, 166, 35, 0.08);
  border-color: rgba(245, 166, 35, 0.35);
  transform: translateY(-2px);
}
.mission-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0 0 12px 0;
  color: #f5a623;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mission-card h3 i { font-size: 18px; }
.mission-card p {
  margin: 0;
  line-height: 1.7;
  opacity: 0.9;
  font-size: 14px;
}

/* 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; }

/* Request Quote — step items */
.rq-step { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 20px; }
.rq-step__num {
  width: 30px; height: 30px; border-radius: 50%;
  background: #f5a623; color: #0f0f0f;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px; flex-shrink: 0;
}
.rq-step__title { font-weight: 600; font-size: 14px; margin-bottom: 4px; color: #f0f0f0; }
.rq-step__text { font-size: 13px; color: #888; margin: 0; line-height: 1.6; }

/* Responsive */
@media (max-width: 767px) {
  .content-page { padding: 24px 16px; }
  .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; }
html[data-theme="light"] .rq-step__title { color: #1a1a1a; }
html[data-theme="light"] .rq-step__text { color: #777; }

/* =========================================================
   ALERTS
   ========================================================= */
.lp-alert {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 13px;
  margin-bottom: 24px;
  border: 1px solid transparent;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.lp-alert i {
  font-size: 16px;
  flex-shrink: 0;
}
.lp-alert--success {
  background: rgba(34, 197, 94, 0.05);
  border-color: rgba(34, 197, 94, 0.2);
  color: #4ade80;
}
.lp-alert--error {
  background: rgba(239, 68, 68, 0.05);
  border-color: rgba(239, 68, 68, 0.2);
  color: #f87171;
}
.lp-alert--warning {
  background: rgba(245, 158, 11, 0.05);
  border-color: rgba(245, 158, 11, 0.2);
  color: #fbbf24;
}
.lp-alert--info {
  background: rgba(59, 130, 246, 0.05);
  border-color: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
}

html[data-theme="light"] .lp-alert--success { 
  background: rgba(22, 163, 74, 0.05); 
  border-color: rgba(22, 163, 74, 0.15); 
  color: #16a34a; 
}
html[data-theme="light"] .lp-alert--error { 
  background: rgba(220, 38, 38, 0.05); 
  border-color: rgba(220, 38, 38, 0.15); 
  color: #dc2626; 
}
html[data-theme="light"] .lp-alert--warning { 
  background: rgba(217, 119, 6, 0.05); 
  border-color: rgba(217, 119, 6, 0.15); 
  color: #d97706; 
}
html[data-theme="light"] .lp-alert--info { 
  background: rgba(37, 99, 235, 0.05); 
  border-color: rgba(37, 99, 235, 0.15); 
  color: #2563eb; 
}

/* =========================================================
   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__header { padding: 32px 20px; }
  .content-page__title { font-size: 28px; }
  .content-page__text-grid { grid-template-columns: 1fr; gap: 20px; }
  .content-cta-card { padding: 32px 20px; margin-top: 40px; }
  .about-mission-grid { grid-template-columns: 1fr; gap: 16px; margin: 24px 0; }
  .mission-card { padding: 24px 20px; }
}
@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 {
  position: relative;
  margin-right: 8px;
}
.theme-switcher__toggle {
  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;
  cursor: pointer;
  border: 1px solid #2e2e2e;
  background: transparent;
}
.theme-switcher__toggle:hover {
  color: #f0f0f0;
  background: #1a1a1a;
  border-color: #f5a623;
}
.theme-switcher__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #1a1a1a;
  border: 1px solid #2e2e2e;
  border-radius: 6px;
  padding: 6px;
  min-width: 140px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  display: none;
  z-index: 1000;
}
.theme-switcher--open .theme-switcher__dropdown {
  display: block;
}
.theme-switcher__btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  font-size: 13px;
  color: #aaa;
  background: transparent;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.15s ease;
  text-align: left;
}
.theme-switcher__btn:hover {
  background: #242424;
  color: #f0f0f0;
}
.theme-switcher__btn i {
  width: 16px;
  text-align: center;
}
.theme-switcher__btn--active {
  background: rgba(245, 166, 35, 0.1);
  color: #f5a623 !important;
}

html[data-theme="light"] .theme-switcher__toggle { border-color: #ddd; color: #666; }
html[data-theme="light"] .theme-switcher__dropdown { background: #fff; border-color: #eee; box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
html[data-theme="light"] .theme-switcher__btn:hover { background: #f5f5f5; color: #1a1a1a; }
html[data-theme="light"] .theme-switcher__btn--active { background: rgba(245, 166, 35, 0.08); }

/* =========================================================
   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__header { background: linear-gradient(135deg, rgba(217,119,6,0.05) 0%, rgba(255,255,255,1) 100%); border-color: rgba(217,119,6,0.15); }
html[data-theme="light"] .content-page__header::before { background: radial-gradient(circle at 50% 0%, rgba(217,119,6,0.1), transparent 70%); }
html[data-theme="light"] .content-page__title { color: #1a1a1a; }
html[data-theme="light"] .content-page__subtitle { color: #555; }
html[data-theme="light"] .content-page__bar { background: #d97706; }
html[data-theme="light"] .content-page h2 { color: #1a1a1a; }
html[data-theme="light"] .content-page h2::after { background: rgba(0,0,0,0.1); }
html[data-theme="light"] .content-page p { color: #555; }
html[data-theme="light"] .content-page .lead-text { color: #1a1a1a; border-left-color: #d97706; }
html[data-theme="light"] .content-page ul li { color: #555; }
html[data-theme="light"] .content-page ul.modern-list li::before { color: #d97706; }
html[data-theme="light"] .content-page a { color: #d97706; }
html[data-theme="light"] .content-cta-card { background: rgba(255,255,255,0.8); border-color: rgba(0,0,0,0.05); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
html[data-theme="light"] .content-cta-card h3 { color: #1a1a1a; }
html[data-theme="light"] .content-cta-card p { color: #555; }
html[data-theme="light"] .mission-card { background: rgba(217, 119, 6, 0.04); border-color: rgba(217, 119, 6, 0.15); }
html[data-theme="light"] .mission-card:hover { background: rgba(217, 119, 6, 0.08); border-color: rgba(217, 119, 6, 0.3); box-shadow: 0 4px 15px rgba(217, 119, 6, 0.05); }
html[data-theme="light"] .mission-card h3 { color: #d97706; }
html[data-theme="light"] .mission-card p { color: #555; }
/* 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; }

/* =========================================================
   HOME 5 — PREMIUM HOMEPAGE
   ========================================================= */
.home5 { background: #0f0f0f; }
.home5 .sidebar,
.home5 .topbar,
.home5 .site-footer,
.home5 .mobile-bottom-nav { display: none; }
.home5 .main-area { margin-left: 0; }

.home5 {
  --lp5-bg: #0f0f0f;
  --lp5-card: #1a1a1a;
  --lp5-gold: #f5a623;
  --lp5-text: #ffffff;
  --lp5-muted: #aaa;
  --lp5-line: rgba(245,166,35,0.22);
  --lp5-ease: 0.25s ease;
}

/* Navbar */
.lp5-nav {
  position: sticky;
  top: 0;
  z-index: 220;
  background: rgba(15,15,15,0.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--lp5-ease), border-color var(--lp5-ease);
}
.lp5-nav__topline {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--lp5-gold);
  z-index: 240;
}
.lp5-nav--scrolled {
  background: rgba(15,15,15,0.98);
  border-bottom-color: rgba(245,166,35,0.2);
}
.lp5-nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.lp5-nav__logo img { height: 44px; width: auto; display: block; }
.lp5-nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.lp5-nav__link {
  color: var(--lp5-text);
  font-weight: 600;
  transition: color var(--lp5-ease);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.lp5-nav__link:hover { color: var(--lp5-gold); }
.lp5-nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lp5-nav__icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--lp5-text);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  transition: all var(--lp5-ease);
}
.lp5-nav__icon:hover {
  color: var(--lp5-gold);
  border-color: var(--lp5-line);
  
}
.lp5-nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lp5-gold);
  color: var(--lp5-bg);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform var(--lp5-ease), box-shadow var(--lp5-ease), background var(--lp5-ease);
}
.lp5-nav__cta:hover { transform: translateY(-1px);  background: #e09415; }
.lp5-nav__burger { display: none; color: #e0e0e0; font-size: 18px; padding: 8px; }

.lp5-nav__dropdown { position: relative; }
.lp5-nav__link--dropdown { background: none; border: none; cursor: pointer; }
.lp5-mega {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  width: 420px;
  background: rgba(26,26,26,0.98);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 14px;
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  box-shadow: 0 24px 50px rgba(0,0,0,0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--lp5-ease), transform var(--lp5-ease);
}
.lp5-nav__dropdown:hover .lp5-mega,
.lp5-nav__dropdown:focus-within .lp5-mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.lp5-mega__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  transition: all var(--lp5-ease);
  color: #e0e0e0;
  font-size: 12px;
}
.lp5-mega__item:hover { border-color: var(--lp5-line); color: var(--lp5-gold); background: rgba(245,166,35,0.08); }
.lp5-mega__icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--lp5-gold);
}

/* Drawer */
.lp5-drawer {
  position: fixed;
  inset: 0;
  z-index: 230;
  pointer-events: none;
}
.lp5-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity var(--lp5-ease);
}
.lp5-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(86vw, 360px);
  background: var(--lp5-bg);
  border-left: 1px solid rgba(245,166,35,0.2);
  transform: translateX(100%);
  transition: transform var(--lp5-ease);
  padding: 20px 18px 28px;
  overflow-y: auto;
}
.lp5-drawer--open { pointer-events: auto; }
.lp5-drawer--open .lp5-drawer__overlay { opacity: 1; }
.lp5-drawer--open .lp5-drawer__panel { transform: translateX(0); }
.lp5-drawer__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.lp5-drawer__title { font-weight: 700; color: var(--lp5-text); letter-spacing: 0.06em; text-transform: uppercase; font-size: 12px; }
.lp5-drawer__close { color: #ccc; font-size: 18px; }
.lp5-drawer__nav a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--lp5-text);
  border: 1px solid transparent;
  transition: all var(--lp5-ease);
}
.lp5-drawer__nav a:hover { border-color: var(--lp5-line); color: var(--lp5-gold); background: rgba(245,166,35,0.08); }
.lp5-drawer__label { margin: 18px 0 10px; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--lp5-gold); }
.lp5-drawer__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.lp5-drawer__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px;
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  font-size: 11px;
  color: var(--lp5-text);
  transition: all var(--lp5-ease);
}
.lp5-drawer__item i { color: var(--lp5-gold); }
.lp5-drawer__item:hover { border-color: var(--lp5-line); color: var(--lp5-gold); }

/* Buttons */
.lp5-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all var(--lp5-ease);
  padding: 12px 22px;
}
.lp5-btn--gold { background: var(--lp5-gold); color: var(--lp5-bg); border: 1px solid var(--lp5-gold); }
.lp5-btn--gold:hover { background: #e09415; border-color: #e09415;  }
.lp5-btn--ghost { background: transparent; color: var(--lp5-gold); border: 1px solid rgba(245,166,35,0.6); }
.lp5-btn--ghost:hover { background: rgba(245,166,35,0.12); color: var(--lp5-text); }
.lp5-btn--block { width: 100%; }
.lp5-btn--sm { font-size: 12px; padding: 10px 18px; }

/* Hero */
.lp5-hero {
  position: relative;
  min-height: 92vh;
  background: var(--lp5-bg);
  padding: 120px 28px 70px;
  overflow: hidden;
}
.lp5-hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.lp5-hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.lp5-hero__slide--active { opacity: 1; }
.lp5-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;
}
.lp5-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.18);
  color: var(--lp5-text);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all var(--lp5-ease);
}
.lp5-hero__arrow:hover { background: rgba(245,166,35,0.75); border-color: var(--lp5-gold); }
.lp5-hero__arrow--prev { left: 20px; }
.lp5-hero__arrow--next { right: 20px; }
.lp5-hero__dots {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
  align-items: center;
}
.lp5-hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  transition: all var(--lp5-ease);
}
.lp5-hero__dot--active { background: var(--lp5-gold); transform: scale(1.35); }
.lp5-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 40px;
  align-items: center;
}
.lp5-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.35);
  color: var(--lp5-gold);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.lp5-hero__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(40px, 5vw, 70px);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin-bottom: 18px;
}
.lp5-hero__title span {
  display: inline-block;
  margin-right: 6px;
  opacity: 0;
  transform: translateY(16px);
}
.lp5-hero--animate .lp5-hero__title span {
  animation: lp5-fadeup 0.6s ease forwards;
  animation-delay: var(--delay);
}
.lp5-hero__sub {
  color: var(--lp5-muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 26px;
  max-width: 520px;
}
.lp5-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.lp5-hero__chips {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--lp5-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.lp5-chip { display: inline-flex; align-items: center; gap: 8px; }
.lp5-chip i { color: var(--lp5-gold); }
.lp5-chip__sep {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.12);
}
.lp5-quick__card {
  background: rgba(26,26,26,0.9);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 22px 50px rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
}
.lp5-quick__title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lp5-gold);
  margin-bottom: 16px;
}
.lp5-form__group { margin-bottom: 14px; }
.lp5-form__group label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lp5-muted);
  margin-bottom: 6px;
}
.lp5-form__group input,
.lp5-form__group select {
  width: 100%;
  background: var(--lp5-card);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--lp5-text);
  border-radius: 10px;
  padding: 10px 12px;
}
.lp5-quick__trust {
  margin-top: 14px;
  font-size: 12px;
  color: var(--lp5-muted);
  text-align: center;
  letter-spacing: 0.05em;
}
.lp5-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--lp5-gold);
  font-size: 12px;
}
.lp5-scroll__line {
  width: 2px;
  height: 22px;
  background: var(--lp5-gold);
  animation: lp5-pulse 1.6s ease-in-out infinite;
}

/* Sections */
.lp5-section { padding: 84px 28px; }
.lp5-section__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 34px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--lp5-text);
  margin: 0 0 10px;
}
.lp5-section__rule {
  display: block;
  width: 56px;
  height: 4px;
  background: var(--lp5-gold);
  border-radius: 999px;
}
.lp5-section__head { max-width: 1280px; margin: 0 auto 34px; }
.lp5-section__head--center { text-align: center; }
.lp5-section__head--center .lp5-section__rule { margin: 0 auto; }
.lp5-section__head--split { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; }
.lp5-section__controls { display: flex; gap: 10px; }
.lp5-overline {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--lp5-gold);
  margin-bottom: 10px;
}
.lp5-link { color: var(--lp5-gold); display: inline-flex; align-items: center; gap: 8px; font-weight: 600; }

/* About */
.lp5-about__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.lp5-about__text p { color: var(--lp5-muted); line-height: 1.8; margin-bottom: 16px; }
.lp5-about__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.lp5-icon-card {
  background: var(--lp5-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 20px 18px;
  transition: all var(--lp5-ease);
  position: relative;
}
.lp5-icon-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: rgba(245,166,35,0.2);
  border-radius: 12px 12px 0 0;
  transition: background var(--lp5-ease);
}
.lp5-icon-card:hover { border-color: var(--lp5-line);  }
.lp5-icon-card:hover::before { background: var(--lp5-gold); }
.lp5-icon-card i { color: var(--lp5-gold); font-size: 22px; margin-bottom: 12px; }
.lp5-icon-card__title { font-weight: 700; font-size: 14px; margin-bottom: 6px; }
.lp5-icon-card__sub { font-size: 12px; color: var(--lp5-muted); line-height: 1.6; }

/* Services */
.lp5-services { background: var(--lp5-card); }
.lp5-services__grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.lp5-service-card {
  background: var(--lp5-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 22px;
  position: relative;
  transition: all var(--lp5-ease);
}
.lp5-service-card i { color: var(--lp5-gold); font-size: 28px; margin-bottom: 14px; display: block; }
.lp5-service-card__title { font-weight: 700; font-size: 16px; margin-bottom: 8px; }
.lp5-service-card p { color: var(--lp5-muted); font-size: 13px; line-height: 1.7; margin: 0 0 12px; }
.lp5-service-card__link { color: var(--lp5-gold); font-size: 18px; }
.lp5-service-card:hover { transform: translateY(-4px); border-color: var(--lp5-line);  }
.lp5-section__cta { text-align: center; margin-top: 28px; }

/* Products */
.lp5-products { background: var(--lp5-bg); }
.lp5-products__grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.lp5-products__grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.lp5-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(245,166,35,0.15);
  color: var(--lp5-gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
  margin-bottom: 8px;
}
.lp5-arrow {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(245,166,35,0.5);
  color: var(--lp5-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--lp5-ease);
}
.lp5-arrow:hover { background: var(--lp5-gold); color: var(--lp5-bg); }

.home5 .pcard {
  background: var(--lp5-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  transition: transform var(--lp5-ease), box-shadow var(--lp5-ease), border-color var(--lp5-ease);
}
.home5 .pcard:hover { transform: scale(1.02); border-color: var(--lp5-line);  }
.home5 .pcard__img { background: var(--lp5-bg); height: 200px; }
.home5 .pcard__badge { display: none; }
.home5 .pcard__badge-text {
  position: absolute;
  top: 12px;
  left: 12px;
  transform: none;
  background: var(--lp5-gold);
  color: var(--lp5-bg);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.06em;
}
.home5 .pcard__sku { color: var(--lp5-muted); font-size: 9px; letter-spacing: 0.16em; }
.home5 .pcard__brand { color: var(--lp5-gold); letter-spacing: 0.16em; font-size: 10px; }
.home5 .pcard__price { font-size: 20px; }
.home5 .pcard__price--old { color: #7b7b7b; }
.home5 button.pcard__enquire { border-radius: 999px; padding: 9px 12px; font-size: 11px; }
.home5 a.pcard__enquire { background: transparent; color: var(--lp5-gold); border: 1px solid rgba(245,166,35,0.5); border-radius: 999px; }
.home5 a.pcard__enquire:hover { background: rgba(245,166,35,0.12); color: var(--lp5-text); }
.home5 .pcard__action-icon { border-radius: 10px; }

/* Brands */
.lp5-brands { background: var(--lp5-card); }
.lp5-marquee { overflow: hidden; border-top: 1px solid rgba(245,166,35,0.2); border-bottom: 1px solid rgba(245,166,35,0.2); padding: 24px 0; }
.lp5-marquee__track { display: flex; gap: 24px; width: max-content; animation: lp5-marquee 26s linear infinite; }
.lp5-marquee:hover .lp5-marquee__track { animation-play-state: paused; }
.lp5-marquee__row { display: flex; gap: 20px; }
.lp5-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  height: 90px;
  padding: 18px 26px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  transition: all var(--lp5-ease);
}
.lp5-brand img { max-height: 50px; filter: grayscale(1); transition: filter var(--lp5-ease); }
.lp5-brand span { color: #e0e0e0; font-weight: 700; font-size: 12px; letter-spacing: 0.08em; }
.lp5-brand:hover { border-color: var(--lp5-line); background: rgba(245,166,35,0.08); }
.lp5-brand:hover img { filter: grayscale(0); }

/* New arrivals live */
.lp5-live { display: inline-flex; align-items: center; gap: 8px; color: var(--lp5-gold); text-transform: uppercase; letter-spacing: 0.18em; font-size: 10px; margin-bottom: 8px; }
.lp5-live span { width: 8px; height: 8px; border-radius: 50%; background: var(--lp5-gold); box-shadow: 0 0 0 rgba(245,166,35,0.5); animation: lp5-ping 1.6s infinite; }

/* Why choose us */
.lp5-why__strip {
  max-width: 1280px;
  margin: 0 auto;
  background: var(--lp5-card);
  border-left: 3px solid var(--lp5-gold);
  border-radius: 12px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  padding: 26px;
}
.lp5-why__item { display: flex; flex-direction: column; gap: 8px; }
.lp5-why__num { color: transparent; -webkit-text-stroke: 1px var(--lp5-gold); font-size: 26px; font-weight: 800; }
.lp5-why__title { font-weight: 700; font-size: 13px; }
.lp5-why__text { color: var(--lp5-muted); font-size: 12px; line-height: 1.6; }

/* Expansion */
.lp5-expansion {
  background: linear-gradient(135deg, #0f0f0f 0%, #10141a 100%);
  padding: 90px 28px;
  position: relative;
  overflow: hidden;
}
.lp5-expansion::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(245,166,35,0.12), transparent 55%),
    radial-gradient(circle at 80% 30%, rgba(245,166,35,0.1), transparent 50%),
    repeating-linear-gradient(90deg, rgba(245,166,35,0.08), rgba(245,166,35,0.08) 1px, transparent 1px, transparent 60px),
    repeating-linear-gradient(0deg, rgba(245,166,35,0.08), rgba(245,166,35,0.08) 1px, transparent 1px, transparent 60px);
  opacity: 0.25;
  pointer-events: none;
}
.lp5-expansion__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.lp5-expansion__title { font-size: 34px; font-weight: 700; margin-bottom: 12px; }
.lp5-expansion p { color: var(--lp5-muted); line-height: 1.8; margin-bottom: 24px; }
.lp5-expansion__pulse {
  margin: 26px auto 0;
  width: 140px;
  height: 3px;
  background: var(--lp5-gold);
  border-radius: 999px;
  animation: lp5-pulse 1.8s ease-in-out infinite;
}

/* Partner CTA */
.lp5-partner { background: var(--lp5-card); }
.lp5-partner__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  background: var(--lp5-bg);
  border: 1px solid rgba(245,166,35,0.35);
  border-radius: 16px;
  padding: 46px 28px;
  position: relative;
  overflow: hidden;
}
.lp5-partner__inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(245,166,35,0.06), rgba(245,166,35,0.06) 1px, transparent 1px, transparent 14px);
  opacity: 0.3;
}
.lp5-partner__inner h2 { position: relative; z-index: 1; font-size: 30px; margin-bottom: 10px; }
.lp5-partner__inner p { position: relative; z-index: 1; color: var(--lp5-muted); margin-bottom: 24px; }
.lp5-partner__actions { position: relative; z-index: 1; display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* Footer */
.lp5-footer {
  background: #0a0a0a;
  padding: 60px 28px 26px;
  position: relative;
}
.lp5-footer__glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--lp5-gold);
  
}
.lp5-footer__grid {
  max-width: 1280px;
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px;
}
.lp5-footer__brand img { height: 50px; margin-bottom: 14px; }
.lp5-footer__brand p { color: var(--lp5-muted); font-size: 13px; line-height: 1.8; margin-bottom: 18px; }
.lp5-footer__title {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lp5-gold);
  margin-bottom: 10px;
  position: relative;
}
.lp5-footer__title::after {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--lp5-gold);
  margin-top: 6px;
}
.lp5-footer__links li { margin-bottom: 8px; }
.lp5-footer__links a { color: #c1c1c1; font-size: 13px; transition: color var(--lp5-ease); }
.lp5-footer__links a:hover { color: var(--lp5-gold); }
.lp5-footer__contact { color: var(--lp5-muted); display: flex; gap: 10px; align-items: center; margin-bottom: 10px; font-size: 13px; }
.lp5-footer__contact i { color: var(--lp5-gold); }
.lp5-footer__bottom {
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid rgba(245,166,35,0.2);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.lp5-footer__copy { color: #7f8790; font-size: 12px; }
.lp5-footer__legal { display: flex; gap: 16px; }
.lp5-footer__legal a { color: #7f8790; font-size: 12px; }
.lp5-footer__legal a:hover { color: var(--lp5-gold); }

/* Animations */
@keyframes lp5-fadeup {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes lp5-pulse {
  0%, 100% { opacity: 0.4; transform: scaleX(0.8); }
  50% { opacity: 1; transform: scaleX(1); }
}
@keyframes lp5-ping {
  0% { box-shadow: 0 0 0 0 rgba(245,166,35,0.6); }
  70% { box-shadow: 0 0 0 10px rgba(245,166,35,0); }
  100% { box-shadow: 0 0 0 0 rgba(245,166,35,0); }
}
@keyframes lp5-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .lp5-hero__title span { opacity: 1; transform: none; animation: none; }
  .lp5-scroll__line,
  .lp5-expansion__pulse,
  .lp5-live span,
  .lp5-marquee__track { animation: none !important; }
}

/* Responsive */
@media (max-width: 1199px) {
  .lp5-nav__links { gap: 12px; font-size: 11px; }
  .lp5-hero__inner { grid-template-columns: 1fr; }
  .lp5-services__grid { grid-template-columns: 1fr 1fr; }
  .lp5-products__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lp5-products__grid--three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lp5-why__strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lp5-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 991px) {
  .lp5-nav__links { display: none; }
  .lp5-nav__burger { display: inline-flex; }
  .lp5-nav__inner { grid-template-columns: auto 1fr auto; }
  .lp5-hero { padding-top: 110px; }
  .lp5-about__inner { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .lp5-nav__inner { padding: 14px 18px; }
  .lp5-nav__logo img { height: 36px; }
  .lp5-nav__cta { display: none; }
  .lp5-hero { padding: 100px 18px 60px; }
  .lp5-hero__overlay {
    background: linear-gradient(0deg, rgba(15,15,15,0.92) 0%, rgba(15,15,15,0.6) 100%);
  }
  .lp5-hero__title { font-size: 34px; }
  .lp5-hero__sub { font-size: 13px; max-width: 100%; }
  .lp5-hero__chips { display: none; }
  .lp5-hero__actions { flex-direction: column; align-items: flex-start; }
  .lp5-hero__chips { flex-direction: column; align-items: flex-start; }
  .lp5-chip__sep { display: none; }
  .lp5-section { padding: 70px 18px; }
  .lp5-services__grid { grid-template-columns: 1fr; }
  .lp5-products__grid,
  .lp5-products__grid--three {
    display: flex;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }
  .lp5-products__grid .pcard,
  .lp5-products__grid--three .pcard { min-width: 220px; scroll-snap-align: start; }
  .lp5-section__head--split { flex-direction: column; align-items: flex-start; }
  .lp5-why__strip { grid-template-columns: 1fr; }
  .lp5-footer__grid { grid-template-columns: 1fr; }
  .lp5-footer__bottom { flex-direction: column; align-items: flex-start; }
}
