/*
Theme Name: Homithing Vehicle Catalog
Theme URI: https://homithing.com/
Author: Homithing Digital Team
Author URI: https://homithing.com/
Description: Modern responsive vehicle pricing catalog with 1.91:1 slider, Variant ABOVE, Fuel/Transmission DOWN, multi-channel sharing, WhatsApp quotes, and 36-brand grid.
Version: 2.0.0
Text Domain: homithing-catalog
*/

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

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #f8fafc;
  color: #1e293b;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button, input { font-family: inherit; }

/* Announcement */
.top-notice-bar {
  background: #0f172a;
  color: #f1f5f9;
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.top-notice-bar .pill {
  background: #10b981;
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 9999px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

/* Header */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 90;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}
.header-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* Header Left Group: 3-bar Menu & Logo to its right */
.header-left-group {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.hamburger-wrap {
  position: relative;
}

.header-hamburger-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
  cursor: pointer;
  transition: all 0.15s ease;
}
.header-hamburger-btn:hover {
  background: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
}
.header-hamburger-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Dropdown Menu under 3-bar icon */
.header-menu-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 220px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  padding: 8px;
  z-index: 100;
}
.header-menu-dropdown.is-open {
  display: block;
  animation: fadeInDrop 0.15s ease;
}
@keyframes fadeInDrop {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.dropdown-section-title {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  color: #94a3b8;
  padding: 6px 10px 4px;
  letter-spacing: 0.5px;
}
.dropdown-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #334155;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: all 0.15s ease;
}
.dropdown-item:hover {
  background: #f8fafc;
  color: #0f172a;
}
.dropdown-item svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.dropdown-divider {
  height: 1px;
  background: #f1f5f9;
  margin: 4px 0;
}

/* Brand Logo (Right to 3-bar menu icon) */
.brand-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.brand-emblem {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #0f172a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 15px;
}
.brand-title {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #0f172a;
  line-height: 1.1;
}
.brand-sub {
  font-size: 9.5px;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Header Right / Search */
.header-right-tools {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-search-box {
  position: relative;
  display: none;
}
@media (min-width: 640px) {
  .header-search-box { display: block; }
}
.header-search-input {
  padding: 7px 12px 7px 32px;
  border-radius: 9999px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  font-size: 11.5px;
  width: 200px;
  outline: none;
  transition: all 0.15s ease;
}
.header-search-input:focus {
  border-color: #0f172a;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(15,23,42,0.06);
}
.header-search-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  color: #94a3b8;
  pointer-events: none;
}

/* Category Filter */
.category-filter-section {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  padding: 10px 16px;
}
.category-filter-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}
.category-filter-container::-webkit-scrollbar { display: none; }
.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  background: #f1f5f9;
  color: #475569;
  border: 1px solid transparent;
  cursor: pointer;
}
.cat-pill.is-active {
  background: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
}
.cat-count {
  font-size: 10px;
  padding: 1px 6px;
  border-radius: 9999px;
  background: #e2e8f0;
  color: #475569;
}
.cat-pill.is-active .cat-count {
  background: rgba(255,255,255,0.25);
  color: #ffffff;
}

.mobile-search-bar {
  padding: 12px 16px 0;
  max-width: 1240px;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .mobile-search-bar { display: none; }
}
.mobile-search-input {
  width: 100%;
  padding: 8px 14px;
  border-radius: 12px;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  font-size: 12px;
  outline: none;
}

/* Main */
.main-wrapper {
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px 16px 80px;
  width: 100%;
}
.results-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 12px 16px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  font-size: 12px;
  color: #475569;
}
.reset-filter-btn {
  color: #e11d48;
  font-weight: 700;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 8px;
  font-size: 11px;
}
.view-indicator-badge {
  font-size: 11px;
  font-weight: 800;
  color: #059669;
}

/* Vehicle Grid */
.vehicle-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 460px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .vehicle-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
  }
}
@media (min-width: 1080px) {
  .vehicle-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Vehicle Card */
.vehicle-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
}

.card-header {
  padding: 16px 16px 10px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.card-title-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.card-title {
  font-size: 17px;
  font-weight: 900;
  color: #0f172a;
}
.card-badge {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 9999px;
  background: #f1f5f9;
  color: #334155;
  border: 1px solid #cbd5e1;
}
.card-badge.popular { background: #eff6ff; color: #1d4ed8; border-color: #bfdbfe; }
.card-badge.bestseller { background: #fef2f2; color: #b91c1c; border-color: #fecaca; }
.card-badge.electric { background: #ecfdf5; color: #047857; border-color: #a7f3d0; }
.card-tagline {
  font-size: 11.5px;
  color: #64748b;
  margin-top: 3px;
  line-height: 1.4;
}

/* CHANGE 3: Share Button */
.card-share-btn {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  cursor: pointer;
  flex-shrink: 0;
}
.card-share-btn:hover {
  background: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
}

/* 1.91:1 Slider */
.card-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 1.91 / 1;
  background: #0f172a;
  overflow: hidden;
}
.card-slider-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.75);
  border: none;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}
.slider-prev { left: 8px; }
.slider-next { right: 8px; }
.slider-counter-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(15, 23, 42, 0.8);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 9999px;
  z-index: 2;
}
.slider-dots {
  position: absolute;
  bottom: 8px;
  left: 8px;
  display: flex;
  gap: 5px;
  background: rgba(15, 23, 42, 0.65);
  padding: 4px 8px;
  border-radius: 9999px;
  z-index: 2;
}
.slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.5);
}
.slider-dot.is-active {
  width: 16px;
  background: #ffffff;
}

/* Mini specs */
.card-specs-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.card-specs-strip::-webkit-scrollbar { display: none; }
.spec-mini-pill {
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #475569;
  white-space: nowrap;
}

/* CHANGE 2: Variant ABOVE, Fuel & Transmission DOWN */
.card-config {
  padding: 14px 16px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.config-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.config-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 4px;
}
.variant-label { background: #eef2ff; color: #3730a3; border: 1px solid #e0e7ff; }
.fuel-trans-label { background: #fff7ed; color: #9a3412; border: 1px solid #ffedd5; }
.config-subtext { font-size: 11px; color: #64748b; font-weight: 600; }

.option-grid-variants {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}
.option-grid-variants::-webkit-scrollbar { display: none; }
.option-grid-fuel-trans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.opt-btn {
  min-height: 34px;
  padding: 5px 10px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: #334155;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}
.opt-btn.is-active[data-kind="variant"] { background: #0f172a; color: #ffffff; border-color: #0f172a; }
.opt-btn.is-active[data-kind="fuel"] { background: #b94a23; color: #ffffff; border-color: #b94a23; }
.opt-btn.is-active[data-kind="trans"] { background: #0d7482; color: #ffffff; border-color: #0d7482; }

/* Pricing */
.card-pricing {
  margin: 14px 16px 0;
  padding: 10px 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.price-block-label { font-size: 10px; font-weight: 800; text-transform: uppercase; color: #64748b; }
.price-block.on-road .price-block-label { color: #065f46; }
.price-block-val { font-size: 15px; font-weight: 900; color: #0f172a; display: block; margin-top: 2px; }
.price-block.on-road .price-block-val { color: #059669; }
.breakdown-badge-btn {
  font-size: 10px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
  cursor: pointer;
}

.breakdown-panel {
  display: none;
  margin: 8px 16px 0;
  padding: 10px 12px;
  border-radius: 12px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  font-size: 11px;
}
.breakdown-panel.is-open { display: block; }
.breakdown-panel .spec-row {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  border-bottom: 1px solid #e2e8f0;
  color: #475569;
}
.breakdown-panel .spec-row:last-child {
  border-bottom: none;
  font-weight: 800;
  color: #059669;
}

.specs-toggle {
  margin: 12px 16px 0;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px dashed #cbd5e1;
  background: #ffffff;
  color: #334155;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.15s ease;
}
.specs-toggle:hover {
  border-color: #0f172a;
  background: #f8fafc;
}
.specs-toggle-left {
  display: flex;
  align-items: center;
  gap: 7px;
}
.specs-toggle-icon {
  width: 15px;
  height: 15px;
  stroke: #64748b;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.specs-panel {
  display: none;
  margin: 8px 16px 0;
  padding: 10px 12px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  font-size: 11px;
}
.specs-panel.is-open {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.specs-panel .spec-box {
  padding: 8px 10px;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  min-height: 48px;
}
.specs-panel .spec-name {
  color: #64748b;
  font-size: 9.5px;
  text-transform: uppercase;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
}
.specs-panel .spec-icon {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.specs-panel .spec-val {
  font-weight: 800;
  color: #0f172a;
  font-size: 11.5px;
}

/* Actions */
.card-actions {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}
.btn-primary-quotation {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #0f172a;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  border: 0;
  cursor: pointer;
  width: 100%;
}
.contact-actions-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

/* CHANGE 5: WhatsApp & Call CTAs WITH OFFICIAL ICONS */
.btn-action-wa {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 10px;
  background: #1eaa59;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
}
.btn-action-wa svg { width: 16px; height: 16px; fill: currentColor; }

.btn-action-call {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 10px;
  background: #f1f5f9;
  color: #0f172a;
  border: 1px solid #cbd5e1;
  font-size: 12px;
  font-weight: 800;
}
.btn-action-call svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2; }

/* CHANGE 4: Fixed Mobile Bottom Nav */
.mobile-bottom-nav { display: none; }
.viewing-model-pill-container { display: none; }

@media (max-width: 767px) {
  .viewing-model-pill-container {
    position: fixed;
    bottom: 66px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 999;
    pointer-events: none;
  }
  .viewing-model-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 9999px;
    background: rgba(15, 23, 42, 0.95);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    border: 1px solid rgba(255,255,255,0.2);
  }
  .viewing-pulse { width: 6px; height: 6px; border-radius: 50%; background: #10b981; }

  .mobile-bottom-nav {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
    border-top: 1px solid #e2e8f0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.08);
  }
  .mobile-nav-left {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
  }
  .mobile-nav-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 44px;
    border-radius: 8px;
    border: 0;
    background: transparent;
    font-size: 10px;
    font-weight: 800;
    color: #334155;
    cursor: pointer;
  }
  .mobile-nav-action svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; }
  .mobile-nav-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    flex: 1;
  }
  .mobile-nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 44px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 800;
    color: #ffffff;
  }
  .mobile-nav-wa { background: #1eaa59; }
  .mobile-nav-call { background: #0f172a; }
}

/* Modals */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.65);
  backdrop-filter: blur(4px);
  z-index: 1100;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.modal-overlay.is-active { display: flex; }
.modal-box {
  background: #ffffff;
  border-radius: 20px;
  max-width: 480px;
  width: 100%;
  padding: 24px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f1f5f9;
  border: 0;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-title { font-size: 18px; font-weight: 900; color: #0f172a; }
.modal-desc { font-size: 12px; color: #64748b; margin: 6px 0 16px; }

.form-group { margin-bottom: 12px; }
.form-label { display: block; font-size: 11px; font-weight: 700; color: #475569; margin-bottom: 4px; text-transform: uppercase; }
.form-control {
  width: 100%;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  font-size: 13px;
  outline: none;
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 12px; }

.modal-submit-btn {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  background: #1eaa59;
  color: #ffffff;
  border: none;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.brands-modal-box {
  max-width: 800px;
  width: 100%;
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  position: relative;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
}
.brands-grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  overflow-y: auto;
  max-height: 55vh;
  padding: 8px 2px;
}
@media (min-width: 640px) {
  .brands-grid-container { grid-template-columns: repeat(6, 1fr); }
}
.brand-card-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 6px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  cursor: pointer;
}
.brand-card-btn.is-selected {
  background: #eff6ff;
  border-color: #3b82f6;
}
.brand-card-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
  margin-bottom: 6px;
}
.brand-card-url {
  font-size: 9px;
  font-weight: 600;
  color: #64748b;
  font-family: monospace;
  margin-top: 2px;
}
.brand-card-btn:hover .brand-card-url {
  color: #2563eb;
}
.brand-card-name {
  font-size: 11px;
  font-weight: 700;
  color: #1e293b;
}

.share-channels-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 14px;
}
.share-ch-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 800;
  color: #ffffff;
  cursor: pointer;
  border: 0;
}
.share-ch-wa { background: #25d366; }
.share-ch-fb { background: #1877f2; }
.share-ch-x { background: #000000; }
.share-ch-tg { background: #229ed9; }
.share-ch-email { background: #334155; }
.share-ch-copy { background: #f1f5f9; color: #0f172a; border: 1px solid #cbd5e1; }

.copy-toast {
  display: none;
  margin-top: 10px;
  padding: 8px;
  background: #ecfdf5;
  color: #047857;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

/* Footer */
.site-footer {
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  padding: 32px 16px 40px;
  font-size: 12px;
  color: #64748b;
  margin-top: auto;
}
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f1f5f9;
}
.footer-brand h4 { font-size: 14px; font-weight: 900; color: #0f172a; margin-bottom: 6px; }
.footer-brand p { max-width: 460px; line-height: 1.5; }
.footer-links h5 { font-size: 12px; font-weight: 800; color: #0f172a; margin-bottom: 8px; }
.footer-link-group { display: flex; flex-direction: column; gap: 6px; }
.footer-link-group button {
  background: none;
  border: none;
  padding: 0;
  color: #64748b;
  font-size: 12px;
  cursor: pointer;
  text-align: left;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 11px;
  color: #94a3b8;
}

/* Standard WordPress Pages & Posts Layout (Guarantees isolation from vehicle catalog) */
.standard-page-wrapper {
  padding: 40px 16px 80px;
  min-height: 60vh;
  background: #f8fafc;
}
.standard-page-container {
  max-width: 860px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.05);
}
.standard-page-header {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f1f5f9;
}
.standard-page-title {
  font-size: 28px;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin: 0;
}
.standard-page-content {
  font-size: 15px;
  line-height: 1.75;
  color: #334155;
}
.standard-page-content p { margin-bottom: 18px; }
.standard-page-content h2 { font-size: 20px; font-weight: 800; color: #0f172a; margin: 28px 0 12px; }
.standard-page-content h3 { font-size: 17px; font-weight: 700; color: #0f172a; margin: 20px 0 10px; }
.standard-page-content ul, .standard-page-content ol { margin: 0 0 18px 24px; }
.standard-page-content li { margin-bottom: 6px; }

/* Active Brand Filter Banner */
.active-brand-banner {
  max-width: 1240px;
  margin: 16px auto 0;
  padding: 14px 20px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.brand-banner-info {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.brand-banner-tag {
  background: #2563eb;
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 6px;
}
.brand-banner-name {
  font-size: 15px;
  font-weight: 900;
  color: #1e3a8a;
}
.brand-banner-sub {
  font-size: 13px;
  color: #3b82f6;
}
.clear-brand-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  color: #1e40af;
  border: 1px solid #93c5fd;
  border-radius: 10px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.15s ease;
}
.clear-brand-btn:hover {
  background: #dbeafe;
  color: #1d4ed8;
}
