/* ==========================================================================
   WHEEL EXPERT FITMENT CENTER — PURE CSS STYLESHEET
   Behind Total Garage R82, De Deur, South Africa
   ========================================================================== */

:root {
  --color-primary: #f59e0b;
  --color-primary-dark: #d97706;
  --color-primary-light: #fef3c7;
  --color-yellow: #fdc82f;
  --color-yellow-hover: #eab308;
  --color-dark: #081d38;
  --color-navy: #092241;
  --color-navy-dark: #06162a;
  --color-navy-light: #0d2d53;
  --color-navy-nav: #0b2f5c;
  --color-slate-900: #0f172a;
  --color-slate-800: #1e293b;
  --color-slate-700: #334155;
  --color-slate-600: #475569;
  --color-slate-500: #64748b;
  --color-slate-400: #94a3b8;
  --color-slate-300: #cbd5e1;
  --color-slate-200: #e2e8f0;
  --color-slate-100: #f1f5f9;
  --color-slate-50: #f8fafc;
  --color-white: #ffffff;
  --color-red: #dc2626;
  --color-red-dark: #b91c1c;
  --color-red-light: #fee2e2;
  --color-emerald: #059669;
  --color-emerald-dark: #047857;
  --color-emerald-light: #d1fae5;
  --color-blue: #2563eb;
  --color-purple: #7c3aed;

  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-heading: 'Space Grotesk', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.06);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  --container-max: 1280px;
}

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

html {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--color-slate-900);
  background-color: #f4f6f8;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, select, textarea {
  font-family: inherit;
  font-size: 0.9rem;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* ==========================================================================
   TIER 1: TOP ANNOUNCEMENT BAR
   ========================================================================== */
.top-banner {
  background-color: var(--color-navy-dark);
  color: #94a3b8;
  font-size: 0.78rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-banner .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-locale-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-sm);
  color: #e2e8f0;
  font-size: 0.72rem;
  font-weight: 700;
}

.top-pill {
  background-color: var(--color-yellow);
  color: var(--color-slate-900);
  font-weight: 800;
  padding: 0.18rem 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  letter-spacing: 0.03em;
}

.top-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.top-links a {
  color: #cbd5e1;
  transition: color 0.15s ease;
}

.top-links a:hover {
  color: var(--color-yellow);
}

/* ==========================================================================
   TIER 2: MAIN STORE HEADER (AUTOMOTIVE NAVY + SEARCH BAR + CART/QUOTE)
   ========================================================================== */
.main-header {
  background-color: var(--color-navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 4px 20px rgba(6, 22, 42, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1.25rem;
}

/* Brand Identity with Official Logo */
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  user-select: none;
  flex-shrink: 0;
  cursor: pointer;
  text-decoration: none;
}

.brand-logo-badge {
  height: 48px;
  padding: 4px 8px;
  border-radius: var(--radius-md);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  border: 2px solid var(--color-yellow);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease;
  flex-shrink: 0;
}

.brand-logo-badge:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 14px rgba(253, 200, 47, 0.45);
}

.brand-logo-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(253, 200, 47, 0.35), transparent);
  animation: badgeShine 4s infinite;
}

@keyframes badgeShine {
  0% { left: -100%; }
  20% { left: 100%; }
  100% { left: 100%; }
}

.brand-logo-img {
  height: 38px;
  width: auto;
  max-width: 95px;
  object-fit: contain;
  display: block;
}

.brand-name {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--color-white);
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-family: var(--font-heading);
}

.brand-name span {
  color: var(--color-yellow);
}

.brand-location {
  font-size: 0.73rem;
  color: #94a3b8;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* Central Search Bar with Dropdown & Yellow Search Button (Inspired by image) */
.header-search-bar {
  flex: 1;
  max-width: 580px;
  display: flex;
  align-items: stretch;
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  border: 2px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search-bar:focus-within {
  border-color: var(--color-yellow);
  box-shadow: 0 0 0 3px rgba(253, 200, 47, 0.25);
}

.header-search-category {
  background: #f8fafc;
  border: none;
  border-right: 1px solid #e2e8f0;
  padding: 0 0.85rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #334155;
  cursor: pointer;
  outline: none;
  flex-shrink: 0;
  max-width: 140px;
}

.header-search-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0.55rem 0.85rem;
  font-size: 0.88rem;
  color: #0f172a;
  min-width: 120px;
}

.header-search-input::placeholder {
  color: #94a3b8;
  font-size: 0.83rem;
}

.header-search-btn {
  background: var(--color-yellow);
  color: #0f172a;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0 1.25rem;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: background-color 0.15s ease;
  white-space: nowrap;
}

.header-search-btn:hover {
  background: var(--color-yellow-hover);
}

/* Header Right Actions (Compare Heart + Quote Cart Yellow Pill) */
.header-right-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.header-compare-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(253, 200, 47, 0.35);
  border-radius: var(--radius-md);
  padding: 0.5rem 0.85rem;
  color: #f8fafc;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.18s ease;
}

.header-compare-btn .compare-heart-icon {
  color: var(--color-yellow);
  font-size: 1.1rem;
  line-height: 1;
  filter: drop-shadow(0 0 4px rgba(253, 200, 47, 0.4));
}

.header-compare-btn:hover {
  background: rgba(253, 200, 47, 0.15);
  color: var(--color-yellow);
  border-color: var(--color-yellow);
  transform: translateY(-1px);
}

.header-cart-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--color-yellow);
  color: #092241;
  border-radius: var(--radius-md);
  padding: 0.5rem 0.95rem;
  font-weight: 900;
  font-size: 0.86rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  border: 1px solid #eab308;
  transition: all 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.header-cart-pill:hover {
  background: var(--color-yellow-hover);
  transform: translateY(-1.5px);
  box-shadow: 0 4px 12px rgba(253, 200, 47, 0.45);
}

.header-cart-pill:active {
  transform: translateY(0);
}

.header-account-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  min-width: 132px;
  color: #fff;
  text-decoration: none;
}

.header-account-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border: 2px solid var(--color-yellow);
  border-radius: 50%;
  background: #fff;
  color: var(--color-slate-900);
  font-size: .78rem;
  font-weight: 900;
}

.header-account-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.1;
}

.header-account-copy strong,
.header-account-copy small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-account-copy strong { font-size: .76rem; }
.header-account-copy small { margin-top: .18rem; color: #cbd5e1; font-size: .66rem; }

.header-account-pill:hover .header-account-copy strong { color: var(--color-yellow); }

.header-logout-form {
  margin: 0;
}

.header-logout-btn {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  min-height: 32px;
  padding: .35rem .55rem;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: var(--radius-md);
  background: transparent;
  color: #cbd5e1;
  font-size: .72rem;
  font-weight: 800;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.header-logout-btn:hover,
.header-logout-btn:focus-visible {
  border-color: var(--color-yellow);
  background: var(--color-yellow);
  color: var(--color-slate-900);
}

@media (max-width: 1024px) {
  .header-account-pill { min-width: auto; }
  .header-account-copy { display: none; }
  .header-logout-btn span { display: none; }
  .header-logout-btn { padding: .4rem; }
}

.header-cart-icon-box {
  width: 28px;
  height: 28px;
  background: #092241;
  color: var(--color-yellow);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  position: relative;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.header-cart-count-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--color-red);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 900;
  border-radius: var(--radius-full);
  min-width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   TIER 3: CATEGORY NAVIGATION BAR (RICH AUTOMOTIVE BLUE)
   ========================================================================== */
.category-nav-bar {
  background-color: var(--color-navy-nav);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.category-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.nav-tabs {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  flex-wrap: wrap;
}

.nav-tab {
  padding: 0.55rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #cbd5e1;
  transition: all 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: none;
  background: transparent;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
}

.nav-tab .nav-tab-icon {
  color: var(--color-yellow);
  stroke: var(--color-yellow);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.18s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-tab:hover .nav-tab-icon {
  transform: scale(1.2);
  filter: drop-shadow(0 0 5px rgba(253, 200, 47, 0.6));
}

.nav-tab.active .nav-tab-icon {
  color: var(--color-yellow);
  stroke: var(--color-yellow);
  filter: drop-shadow(0 0 6px rgba(253, 200, 47, 0.75));
}

.nav-tab:hover {
  color: var(--color-white);
  background-color: rgba(255, 255, 255, 0.06);
}

.nav-tab.active {
  color: var(--color-yellow);
  border-bottom-color: var(--color-yellow);
  background-color: rgba(253, 200, 47, 0.08);
  font-weight: 800;
}

.nav-tab.highlight {
  color: #fca5a5;
}

.nav-tab.highlight.active {
  color: #f87171;
  border-bottom-color: #ef4444;
}

.nav-tab.admin-tab {
  color: #94a3b8;
}

.nav-tab.admin-tab.active {
  color: #e2e8f0;
  border-bottom-color: #cbd5e1;
}

.nav-book-btn {
  font-weight: 800;
  white-space: nowrap;
  background: var(--color-yellow);
  color: #0f172a;
  border-radius: var(--radius-sm);
  padding: 0.42rem 0.95rem;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  margin-left: auto;
}

.nav-book-btn:hover {
  background: var(--color-yellow-hover);
  transform: translateY(-1px);
}

/* ==========================================================================
   TIER 4: POPULAR SEARCH TAGS RIBBON (INSPIRED BY IMAGE)
   ========================================================================== */
.tags-ribbon {
  background-color: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  padding: 0.45rem 0;
  font-size: 0.76rem;
}

.tags-ribbon-inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}

.tags-ribbon-inner::-webkit-scrollbar {
  display: none;
}

.tag-label {
  font-weight: 800;
  color: #0f172a;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 0;
}

.tag-pill {
  display: inline-block;
  background: #f1f5f9;
  color: #334155;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-full);
  padding: 0.15rem 0.6rem;
  font-size: 0.74rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
  flex-shrink: 0;
}

.tag-pill:hover {
  background: var(--color-yellow);
  color: #0f172a;
  border-color: #eab308;
}

.badge-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.15rem 0.45rem;
  background-color: var(--color-red);
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: var(--radius-full);
}

/* Mobile Header Action Elements (Hidden on desktop, shown on <= 1024px) */
.mobile-nav-actions {
  display: none;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.mobile-nav-book-btn {
  background: var(--color-slate-900);
  color: var(--color-yellow);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0.42rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-slate-900);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.16);
  transition: all 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}
.mobile-nav-book-btn:hover {
  background: #000000;
  transform: translateY(-1px);
}
.mobile-nav-book-btn:active {
  transform: scale(0.96);
}

.mobile-nav-call-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.08);
  color: var(--color-slate-900);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid rgba(15, 23, 42, 0.18);
  transition: all 0.18s ease;
  flex-shrink: 0;
}
.mobile-nav-call-btn:hover {
  background: rgba(15, 23, 42, 0.15);
  transform: translateY(-1px);
}
.mobile-nav-call-btn:active {
  transform: scale(0.95);
}

/* Hamburger toggle button */
.nav-hamburger-btn {
  width: 42px;
  height: 42px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: var(--color-slate-900);
  border: 1px solid var(--color-slate-900);
  border-radius: var(--radius-md);
  cursor: pointer;
  padding: 0;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
  flex-shrink: 0;
}
.nav-hamburger-btn:hover {
  background: #000000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}
.nav-hamburger-btn:active {
  transform: scale(0.95);
}

.hamburger-bar {
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--color-yellow);
  border-radius: 2px;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
  transform-origin: center;
}

.nav-hamburger-btn.active .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger-btn.active .hamburger-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger-btn.active .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer Backdrop */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.68);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 198;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.mobile-nav-backdrop.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(350px, 86vw);
  background-color: #ffffff;
  z-index: 199;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.32);
  display: flex;
  flex-direction: column;
  transform: translateX(105%);
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  visibility: hidden;
  outline: none;
}

.mobile-nav-drawer.open {
  transform: translateX(0);
  visibility: visible;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.15rem;
  background-color: var(--color-yellow);
  border-bottom: 2px solid #eab308;
  flex-shrink: 0;
}

.drawer-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  cursor: pointer;
}

.drawer-brand .brand-badge {
  width: 38px;
  height: 38px;
  font-size: 1rem;
}

.drawer-brand .brand-name {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--color-slate-900);
  line-height: 1.15;
}

.drawer-brand .brand-location {
  font-size: 0.72rem;
  color: #334155;
  font-weight: 700;
}

.drawer-close-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-slate-900);
  color: var(--color-yellow);
  border: none;
  border-radius: var(--radius-md);
  font-size: 1.25rem;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.15s ease;
}
.drawer-close-btn:hover, .drawer-close-btn:active {
  background: #000000;
  transform: scale(0.95);
}

.mobile-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.15rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  -webkit-overflow-scrolling: touch;
}

.drawer-status-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 0.65rem 0.85rem;
  border-left: 3px solid #10b981;
}

.mobile-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.7rem 0.85rem;
  border-radius: var(--radius-md);
  background: transparent;
  border: 1px solid transparent;
  text-align: left;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--color-slate-800);
  position: relative;
}

.mobile-nav-link:hover {
  background-color: #f1f5f9;
  color: var(--color-slate-950);
}

.mobile-nav-link:active {
  background-color: #e2e8f0;
}

.mobile-nav-link.active {
  background-color: #fef08a;
  border-color: #eab308;
  color: #0f172a;
}

.mobile-nav-link.active .mobile-nav-title {
  font-weight: 900;
  color: #0f172a;
}

.mobile-nav-link.highlight {
  border-left: 3px solid #dc2626;
}

.mobile-nav-link.highlight.active {
  background-color: #fee2e2;
  border-color: #fca5a5;
  border-left: 4px solid #dc2626;
}

.mobile-nav-link.admin-link {
  border-left: 3px solid #64748b;
  margin-top: 0.35rem;
  background-color: rgba(15, 23, 42, 0.04);
}
.mobile-nav-link.admin-link.active {
  background-color: #fef08a;
  border-color: #0f172a;
  border-left: 4px solid #0f172a;
}

.mobile-nav-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
}

.mobile-nav-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.mobile-nav-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-slate-900);
  line-height: 1.2;
}

.mobile-nav-sub {
  font-size: 0.72rem;
  color: #64748b;
  line-height: 1.2;
}

.drawer-pill-badge {
  font-size: 0.65rem;
  font-weight: 800;
  background: #dc2626;
  color: #fff;
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.03em;
}

.mobile-drawer-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.drawer-book-cta-btn {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--color-slate-900);
  color: var(--color-yellow);
  border: 1px solid var(--color-slate-900);
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 0.88rem;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.2);
  transition: all 0.18s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.drawer-book-cta-btn:active {
  background: #000;
  transform: translateY(1px);
}

.drawer-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.drawer-contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.5rem;
  border-radius: var(--radius-md);
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-slate-800);
  text-decoration: none;
  text-align: center;
  transition: all 0.15s ease;
}
.drawer-contact-btn.whatsapp {
  background: #ecfdf5;
  border-color: #a7f3d0;
  color: #065f46;
}
.drawer-contact-btn:active {
  transform: scale(0.98);
}

.drawer-trading-hours {
  font-size: 0.7rem;
  color: #64748b;
  text-align: center;
  line-height: 1.35;
}

/* Main Content Area */
.main-content {
  flex: 1;
  padding-top: 1.5rem;
  padding-bottom: 3rem;
}

/* ==========================================================================
   INSPIRATION SECTION 1: SPLIT HERO BANNERS (65% / 35% AS IN SCREENSHOT)
   ========================================================================== */
.store-hero-grid {
  display: grid;
  grid-template-columns: 1.85fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

@media (max-width: 960px) {
  .store-hero-grid {
    grid-template-columns: 1fr;
  }
}

/* Left Feature Banner (White/Light Canvas + High-Contrast Display) */
.hero-main-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  padding: 2.25rem 2.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
}

.hero-main-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(253, 200, 47, 0.12) 0%, rgba(241, 245, 249, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-main-card-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
  flex: 1;
}

.hero-main-text {
  max-width: 380px;
}

.hero-main-tag {
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
  margin-bottom: 0.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.hero-main-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.2vw, 2.45rem);
  font-weight: 900;
  line-height: 1.08;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
  text-transform: uppercase;
}

.hero-main-heading .highlight {
  color: #092241;
  position: relative;
  display: inline-block;
}

.hero-main-heading .highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 6px;
  background: var(--color-yellow);
  z-index: -1;
  opacity: 0.8;
  border-radius: 2px;
}

.hero-main-sub {
  font-size: 0.92rem;
  color: #64748b;
  margin-bottom: 1.5rem;
  line-height: 1.45;
  font-weight: 500;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--color-yellow);
  color: #0f172a;
  font-weight: 900;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 12px rgba(253, 200, 47, 0.45);
  border: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-cta-btn:hover {
  background: var(--color-yellow-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(253, 200, 47, 0.6);
}

.hero-cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.12);
  width: 24px;
  height: 24px;
  border-radius: 4px;
  font-weight: 900;
  font-size: 0.85rem;
}

.hero-main-artwork {
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-main-artwork svg {
  filter: drop-shadow(0 14px 24px rgba(15, 23, 42, 0.14));
  transition: transform 0.35s ease;
}

.hero-main-card:hover .hero-main-artwork svg {
  transform: scale(1.03) rotate(2deg);
}

/* Dots indicator at bottom like in image */
.hero-slider-dots {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: #cbd5e1;
  transition: all 0.2s ease;
  cursor: pointer;
}

.hero-dot.active {
  width: 22px;
  background: var(--color-yellow);
}

/* Right Stacked Promo Banners */
.hero-side-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-promo-card {
  flex: 1;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.hero-promo-card:hover {
  transform: translateY(-2px);
  border-color: #cbd5e1;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.promo-category-badge {
  font-size: 0.72rem;
  font-weight: 800;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}

.promo-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.15;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

.promo-subtitle {
  font-size: 0.78rem;
  color: #64748b;
  margin-bottom: 0.85rem;
}

.promo-link {
  font-size: 0.8rem;
  font-weight: 800;
  color: #092241;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border-bottom: 2px solid var(--color-yellow);
  padding-bottom: 1px;
}

.hero-promo-card:hover .promo-link {
  color: #000;
}

.promo-visual {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-visual svg {
  filter: drop-shadow(0 6px 12px rgba(15, 23, 42, 0.12));
  transition: transform 0.25s ease;
}

.hero-promo-card:hover .promo-visual svg {
  transform: scale(1.05);
}

/* ==========================================================================
   INSPIRATION SECTION 2: 5-COLUMN FEATURE & TRUST RIBBON (EXACTLY AS IN IMAGE)
   ========================================================================== */
.store-trust-strip {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  margin-bottom: 2rem;
  padding: 1.1rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

@media (max-width: 1024px) {
  .store-trust-strip {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-right: 1px solid #f1f5f9;
  padding-right: 0.75rem;
}

.trust-item:last-child {
  border-right: none;
  padding-right: 0;
}

.trust-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fefce8 0%, #fef08a 100%);
  border: 2px solid var(--color-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-navy);
  box-shadow: 0 2px 8px rgba(253, 200, 47, 0.28);
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.trust-item:hover .trust-icon-box {
  background: var(--color-yellow);
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 6px 16px rgba(253, 200, 47, 0.45);
}

.trust-icon-box .trust-icon-svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-navy);
  color: var(--color-navy);
  display: block;
}

.trust-title {
  font-size: 0.78rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.trust-sub {
  font-size: 0.7rem;
  color: #64748b;
  line-height: 1.2;
  margin-top: 0.15rem;
}

/* ==========================================================================
   INSPIRATION SECTION 3: "OUR PRODUCTS" WITH CATEGORY TABS & RED BADGES
   ========================================================================== */
.our-products-section {
  margin-bottom: 2.25rem;
}

.our-products-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 2px solid #e2e8f0;
  margin-bottom: 1.25rem;
}

.our-products-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 900;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  position: relative;
}

.our-products-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.95rem;
  width: 60px;
  height: 3px;
  background: var(--color-yellow);
}

.our-products-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.our-products-tabs {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.our-products-tab-btn {
  font-size: 0.82rem;
  font-weight: 700;
  color: #64748b;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.15s ease;
}

.our-products-tab-btn:hover {
  color: #0f172a;
  background: #f1f5f9;
}

.our-products-tab-btn.active {
  color: #0f172a;
  font-weight: 800;
  background: #fef08a;
}

.our-products-arrows {
  display: flex;
  gap: 0.25rem;
  margin-left: 0.5rem;
}

.carousel-nav-arrow {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #334155;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.15s ease;
}

.carousel-nav-arrow:hover {
  background: #0f172a;
  color: #fff;
  border-color: #0f172a;
}

/* Modern Product Card Grid (Clean White Card + Red Corner Badge) */
.featured-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.15rem;
}

@media (max-width: 640px) {
  .featured-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}

.product-store-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-store-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  border-color: #cbd5e1;
}

.product-discount-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--color-red);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  letter-spacing: 0.02em;
  z-index: 2;
}

.product-thumb-container {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  position: relative;
}

.product-thumb-container svg {
  max-height: 120px;
  width: auto;
  filter: drop-shadow(0 6px 12px rgba(15, 23, 42, 0.08));
  transition: transform 0.25s ease;
}

.product-store-card:hover .product-thumb-container svg {
  transform: scale(1.06);
}

.product-brand-name {
  font-size: 0.72rem;
  color: #64748b;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.product-model-name {
  font-size: 0.92rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 0.35rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.3em;
}

.product-rating-stars {
  display: flex;
  align-items: center;
  gap: 2px;
  color: #f59e0b;
  font-size: 0.75rem;
  margin-bottom: 0.55rem;
}

.product-pricing-box {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: auto;
  margin-bottom: 0.85rem;
}

.product-old-price {
  font-size: 0.78rem;
  color: #94a3b8;
  text-decoration: line-through;
}

.product-sale-price {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--color-red);
  font-family: var(--font-heading);
}

.product-actions-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
}

.product-action-btn {
  padding: 0.42rem 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.74rem;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.product-action-btn.compare {
  background: #f1f5f9;
  color: #334155;
  border: 1px solid #cbd5e1;
}

.product-action-btn.compare:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.product-action-btn.compare.active {
  background: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
}

.product-action-btn.whatsapp {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #86efac;
}

.product-action-btn.whatsapp:hover {
  background: #bbf7d0;
}

/* ==========================================================================
   INSPIRATION SECTION 4: WIDE PROMO BANNER (CUSTOM WHEELS - SYSTEMS NEW TECH)
   ========================================================================== */
.custom-wheels-wide-banner {
  background: linear-gradient(135deg, #092241 0%, #06162a 100%);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2.25rem;
  color: #ffffff;
  margin-bottom: 2.25rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(6, 22, 42, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.wide-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.wide-banner-text {
  max-width: 580px;
}

.wide-banner-tag {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--color-yellow);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}

.wide-banner-title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.95rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.wide-banner-sub {
  font-size: 0.88rem;
  color: #94a3b8;
  line-height: 1.45;
  margin-bottom: 1.25rem;
}

.wide-banner-visual {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.yellow-chevrons {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--color-yellow);
  letter-spacing: -4px;
  animation: pulseChevrons 2s infinite ease-in-out;
}

@keyframes pulseChevrons {
  0%, 100% { opacity: 0.7; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(4px); }
}

/* ==========================================================================
   INSPIRATION SECTION 5: "TODAY HOT DEALS" WITH COUNTDOWN TIMERS
   ========================================================================== */
.hot-deals-section {
  margin-bottom: 2.5rem;
}

.hot-deals-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 0.85rem;
  margin-bottom: 1.25rem;
}

.hot-deals-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 900;
  color: #0f172a;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hot-deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 1.25rem;
}

.hot-deal-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.25rem;
  align-items: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
  position: relative;
  transition: all 0.22s ease;
}

.hot-deal-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.hot-deal-card .deal-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-red);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
}

.hot-deal-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hot-deal-thumb svg {
  filter: drop-shadow(0 6px 14px rgba(15, 23, 42, 0.12));
}

.hot-deal-content {
  display: flex;
  flex-direction: column;
}

.deal-brand {
  font-size: 0.72rem;
  color: #64748b;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.deal-title {
  font-size: 1.05rem;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 0.35rem;
}

.deal-prices {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 0.4rem;
}

.deal-desc {
  font-size: 0.76rem;
  color: #64748b;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Countdown Timer Box */
.countdown-box {
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.75rem;
  margin-bottom: 0.75rem;
}

.countdown-label {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--color-red);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
}

.countdown-digits-row {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.time-digit-block {
  background: #0f172a;
  color: #fff;
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
  min-width: 32px;
  text-align: center;
}

.time-sep {
  font-weight: 900;
  color: #94a3b8;
}

/* Tyre Finder Box */
.finder-box {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-slate-200);
  margin-bottom: 2.5rem;
}

.finder-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.finder-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-slate-900);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.finder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  align-items: flex-end;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-slate-700);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.form-select, .form-input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-slate-300);
  background-color: var(--color-slate-50);
  color: var(--color-slate-900);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.form-select:focus, .form-input:focus {
  border-color: var(--color-primary-dark);
  background-color: var(--color-white);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--color-yellow);
  color: var(--color-slate-900);
}
.btn-primary:hover {
  background-color: #eab308;
}

.btn-dark {
  background-color: var(--color-slate-900);
  color: var(--color-white);
}
.btn-dark:hover {
  background-color: var(--color-slate-800);
}

.btn-success {
  background-color: var(--color-emerald);
  color: var(--color-white);
}
.btn-success:hover {
  background-color: var(--color-emerald-dark);
}

.btn-red {
  background-color: var(--color-red);
  color: var(--color-white);
}
.btn-red:hover {
  background-color: var(--color-red-dark);
}

.btn-outline {
  border: 1px solid var(--color-slate-300);
  background-color: var(--color-white);
  color: var(--color-slate-700);
}
.btn-outline:hover {
  background-color: var(--color-slate-100);
  border-color: var(--color-slate-400);
}

.btn-sm {
  padding: 0.4rem 0.75rem;
  font-size: 0.75rem;
}

/* Category Filter Bar */
.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill-btn {
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid var(--color-slate-200);
  background-color: var(--color-white);
  color: var(--color-slate-600);
  transition: all 0.15s ease;
}

.pill-btn:hover {
  background-color: var(--color-slate-100);
  color: var(--color-slate-900);
}

.pill-btn.active {
  background-color: var(--color-slate-900);
  color: var(--color-white);
  border-color: var(--color-slate-900);
}

/* Tyre Cards Grid */
.tyre-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.tyre-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-slate-200);
  padding: 1.35rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}

.tyre-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px -5px rgba(15, 23, 42, 0.12), 0 4px 6px -2px rgba(15, 23, 42, 0.05);
  border-color: #cbd5e1;
}

.tyre-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.85rem;
}

.tyre-category-tag {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.22rem 0.6rem;
  border-radius: var(--radius-sm);
  background-color: var(--color-slate-100);
  color: var(--color-slate-700);
  letter-spacing: 0.04em;
}

.tyre-category-tag.taxi {
  background-color: #fee2e2;
  color: var(--color-red);
  border: 1px solid #fca5a5;
}

.tyre-category-tag.commercial {
  background-color: #e0f2fe;
  color: #0369a1;
  border: 1px solid #bae6fd;
}

.tyre-size {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-slate-900);
  letter-spacing: -0.02em;
  margin-bottom: 0.2rem;
  line-height: 1.15;
}

.tyre-brand {
  font-size: 0.82rem;
  font-weight: 700;
  color: #64748b;
  margin-bottom: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.tyre-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.15rem;
}

.spec-badge {
  font-size: 0.72rem;
  font-weight: 700;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 0.22rem 0.55rem;
  border-radius: 6px;
  color: #475569;
}

.tyre-price-box {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--color-slate-100);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0.95rem;
}

.tyre-price {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--color-slate-900);
}

.tyre-stock-status {
  font-size: 0.75rem;
  font-weight: 800;
  color: #059669;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.tyre-stock-status.out {
  color: #dc2626;
}

.tyre-actions {
  display: flex;
  gap: 0.5rem;
}

.tyre-actions button, .tyre-actions a {
  flex: 1;
  text-align: center;
}

/* Mag Wheels Grid */
.mag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.mag-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-slate-200);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.mag-card-img {
  width: 100%;
  height: 180px;
  background: radial-gradient(circle at center, #1e293b, #0f172a);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.mag-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--color-yellow);
  color: var(--color-slate-900);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
}

.mag-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.mag-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-slate-900);
  margin-bottom: 0.5rem;
}

.mag-specs-table {
  width: 100%;
  font-size: 0.8rem;
  margin-bottom: 1rem;
  border-collapse: collapse;
}

.mag-specs-table td {
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--color-slate-100);
}
.mag-specs-table td:first-child {
  color: var(--color-slate-500);
  width: 35%;
}
.mag-specs-table td:last-child {
  font-weight: 700;
  color: var(--color-slate-800);
}

.mag-price-row {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--color-slate-100);
  margin-bottom: 0.75rem;
}

.mag-price-val {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--color-slate-900);
  font-family: var(--font-heading);
}

/* Fleet Quote Calculator */
.calc-container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  background-color: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-slate-200);
}

@media (max-width: 900px) {
  .calc-container {
    grid-template-columns: 1fr;
  }
}

.calc-summary-card {
  background-color: var(--color-slate-900);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}

.summary-total {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--color-yellow);
  margin-bottom: 0.25rem;
}

.calc-breakdown-table {
  width: 100%;
  font-size: 0.85rem;
  margin: 1.25rem 0;
  border-collapse: collapse;
}

.calc-breakdown-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.calc-breakdown-table td {
  padding: 0.6rem 0;
}
.calc-breakdown-table td:last-child {
  text-align: right;
  font-weight: 700;
}

/* Combos Section */
.combos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.combo-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--color-slate-200);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease;
}

.combo-card.featured {
  border-color: var(--color-yellow);
}

.combo-card-header {
  background: var(--color-slate-900);
  color: var(--color-white);
  padding: 1.25rem;
}

.combo-card-body {
  padding: 1.5rem;
}

.combo-items-list {
  list-style: none;
  margin: 1rem 0;
}

.combo-items-list li {
  padding: 0.35rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
}

/* Admin Panel */
.admin-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--color-slate-200);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  margin-top: 1rem;
}

.admin-table th {
  background-color: var(--color-slate-100);
  padding: 0.75rem;
  text-align: left;
  font-weight: 700;
  color: var(--color-slate-700);
}

.admin-table td {
  padding: 0.75rem;
  border-bottom: 1px solid var(--color-slate-200);
}

/* Modals */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(4px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
}

.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  background-color: var(--color-white);
  border-radius: var(--radius-xl);
  max-width: 580px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-slate-200);
  overflow: hidden;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--color-slate-100);
}

.modal-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-slate-900);
}

.modal-close {
  font-size: 1.5rem;
  color: var(--color-slate-400);
  line-height: 1;
}
.modal-close:hover {
  color: var(--color-slate-700);
}

.modal-body {
  padding: 1.5rem;
  overflow-y: auto;
}

.modal-footer {
  padding: 1rem 1.5rem;
  background-color: var(--color-slate-50);
  border-top: 1px solid var(--color-slate-100);
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
}

#promo-modal .promo-modal-dialog {
  max-width: 540px;
  width: min(540px, calc(100vw - 2rem));
  max-height: calc(100vh - 2rem);
  border-radius: 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 2rem 3rem rgba(15, 23, 42, 0.24);
}

#promo-modal .promo-modal-header {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem 1rem;
  background: linear-gradient(135deg, #facc15 0%, #f59e0b 100%);
  border-bottom: none;
}

#promo-modal .promo-modal-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-width: 0;
}

#promo-modal .promo-modal-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(120, 53, 15, 0.14);
  color: #78350f;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#promo-modal .promo-modal-title {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.25;
  font-weight: 900;
  color: #111827;
}

#promo-modal .promo-modal-close {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(17, 24, 39, 0.08);
  color: #111827;
  border: none;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
}

#promo-modal .promo-modal-close:hover {
  background: rgba(17, 24, 39, 0.16);
  color: #111827;
}

#promo-modal .promo-modal-body {
  padding: 1.3rem 1.25rem 1rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  overflow-y: auto;
}

#promo-modal .promo-highlight-card {
  background: #fffdf2;
  border: 1px solid #f6d96a;
  border-radius: 1rem;
  padding: 1rem 1rem 0.9rem;
  margin-bottom: 1rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

#promo-modal .promo-highlight-topline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
  color: #92400e;
}

#promo-modal .promo-highlight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.16);
  font-size: 0.95rem;
}

#promo-modal .promo-highlight-topline strong {
  font-size: 1.05rem;
  line-height: 1.35;
  color: #78350f;
}

#promo-modal .promo-highlight-card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: #b45309;
}

#promo-modal .promo-list {
  margin: 0;
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.75;
  padding-left: 1.2rem;
}

#promo-modal .promo-list li::marker {
  color: #16a34a;
}

#promo-modal .promo-modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.7rem;
  padding: 0.9rem 1.25rem 1.1rem;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  background: #ffffff;
  flex-wrap: wrap;
}

#promo-modal .promo-modal-secondary {
  border: 1px solid #dfe7f1;
  background: #ffffff;
  color: #0f172a;
  font-weight: 700;
  border-radius: 0.8rem;
  padding: 0.8rem 1rem;
}

#promo-modal .promo-modal-secondary:hover {
  background: #f8fafc;
  color: #0f172a;
}

#promo-modal .promo-modal-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border: none;
  box-shadow: 0 0.8rem 1.5rem rgba(34, 197, 94, 0.28);
  font-weight: 800;
  color: #ffffff;
  border-radius: 0.8rem;
  padding: 0.85rem 1.15rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

@media (max-width: 600px) {
  #promo-modal {
    align-items: flex-end;
    padding: 0.75rem;
  }

  #promo-modal .promo-modal-dialog {
    width: 100%;
    max-height: min(86vh, 540px);
    border-radius: 1.1rem;
  }

  #promo-modal .promo-modal-header {
    padding: 0.85rem 0.9rem;
    gap: 0.65rem;
  }

  #promo-modal .promo-modal-title {
    font-size: 1.05rem;
  }

  #promo-modal .promo-modal-body {
    padding: 0.9rem;
  }

  #promo-modal .promo-highlight-card {
    padding: 0.85rem;
    margin-bottom: 0.75rem;
  }

  #promo-modal .promo-highlight-topline strong {
    font-size: 0.95rem;
  }

  #promo-modal .promo-highlight-card p,
  #promo-modal .promo-list {
    font-size: 0.82rem;
    line-height: 1.45;
  }

  #promo-modal .promo-list {
    padding-left: 1.05rem;
  }

  #promo-modal .promo-modal-footer {
    justify-content: stretch;
    gap: 0.5rem;
    padding: 0.75rem 0.9rem 0.9rem;
  }

  #promo-modal .promo-modal-secondary,
  #promo-modal .promo-modal-primary {
    flex: 1 1 0;
    min-width: 0;
    padding: 0.7rem 0.65rem;
    font-size: 0.82rem;
    text-align: center;
  }
}

#promo-modal .promo-modal-primary:hover {
  background: linear-gradient(135deg, #1fb55c 0%, #148c3a 100%);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 0.9rem 1.6rem rgba(34, 197, 94, 0.3);
}

/* Footer — Same Navy Color as Navigation Bar (var(--color-navy) / #092241) */
.main-footer {
  background-color: #092241;
  background-image: none;
  color: #cbd5e1;
  border-top: 3px solid #fdc82f;
  box-shadow: 0 -8px 24px rgba(6, 22, 42, 0.35);
  padding: 3.5rem 0 2rem;
  font-size: 0.85rem;
  position: relative;
}

.main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #fdc82f 25%, #fdc82f 75%, transparent);
  opacity: 0.9;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-col-card {
  background: rgba(6, 22, 42, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(4, 16, 32, 0.25);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-col-card:hover {
  border-color: rgba(253, 200, 47, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(4, 16, 32, 0.4);
}

.footer-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-title svg {
  color: #fdc82f;
  flex-shrink: 0;
}

.footer-hours-table {
  width: 100%;
  font-size: 0.82rem;
  border-collapse: collapse;
}

.footer-hours-table td {
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-hours-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: #f1f5f9;
}

.footer-hours-table tr.sunday-highlight td {
  color: #34d399;
  font-weight: 800;
  border-bottom: none;
  padding-top: 0.6rem;
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.6rem 0.85rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #f8fafc;
  text-decoration: none;
  font-weight: 700;
  margin-bottom: 0.6rem;
  transition: all 0.2s ease;
}

.footer-contact-link:hover {
  background: rgba(253, 200, 47, 0.15);
  border-color: #fdc82f;
  color: #fdc82f;
}

.footer-contact-link.whatsapp-link:hover {
  background: rgba(16, 185, 129, 0.2);
  border-color: #10b981;
  color: #34d399;
}

.footer-bottom {
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.78rem;
  color: #94a3b8;
}

.footer-back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 700;
  transition: all 0.2s ease;
}

.footer-back-to-top:hover {
  background: #fdc82f;
  color: #092241;
  border-color: #fdc82f;
}

/* Print Styles */
@media print {
  .no-print, .main-header, .top-banner, .main-footer, .nav-tabs, .btn {
    display: none !important;
  }
  body, .main-content {
    background: #fff !important;
    color: #000 !important;
    padding: 0 !important;
  }
  .print-only {
    display: block !important;
  }
}
.print-only {
  display: none;
}

/* ==========================================================================
   OFFICIAL WORKSHOP SERVICES SIGNBOARD & DETAIL SECTION
   Inspired by Wheel Expert De Deur Official Billboard (Yellow/Black/Red)
   ========================================================================== */

.official-signboard {
  background: var(--color-yellow);
  border-radius: var(--radius-xl);
  border: 4px solid var(--color-slate-900);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.18);
  margin-bottom: 2.5rem;
  overflow: hidden;
  position: relative;
}

.signboard-top-brands {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1.5rem;
  background: rgba(0, 0, 0, 0.05);
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
  gap: 0.75rem;
}

.brand-logos-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.brand-badge-chip {
  background: #0f172a;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  user-select: none;
}

.brand-badge-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Authentic manufacturer accent borders & hovers */
.brand-badge-chip[data-brand="Continental"]:hover { background: #ea580c; border-color: #ea580c; }
.brand-badge-chip[data-brand="Dunlop"]:hover { background: #ca8a04; border-color: #facc15; color: #000; }
.brand-badge-chip[data-brand="Goodyear"]:hover { background: #1d4ed8; border-color: #60a5fa; }
.brand-badge-chip[data-brand="Michelin"]:hover { background: #1e40af; border-color: #3b82f6; }
.brand-badge-chip[data-brand="Bridgestone"]:hover { background: #dc2626; border-color: #ef4444; }
.brand-badge-chip[data-brand="Firestone"]:hover { background: #b91c1c; border-color: #f87171; }
.brand-badge-chip[data-brand="Sumitomo"]:hover { background: #991b1b; border-color: #fca5a5; }
.brand-badge-chip[data-brand="Yokohama"]:hover { background: #e11d48; border-color: #fb7185; }
.brand-badge-chip[data-brand="Pirelli"]:hover { background: #d97706; border-color: #fcd34d; color: #000; }
.brand-badge-chip[data-brand="Falken"]:hover { background: #0891b2; border-color: #22d3ee; }
.brand-badge-chip[data-brand="Rapid"]:hover { background: #059669; border-color: #34d399; }
.brand-badge-chip[data-brand="Winrun"]:hover { background: #2563eb; border-color: #93c5fd; }

/* Status pulse indicator */
.status-pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  display: inline-block;
  position: relative;
}

.status-pulse-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid #10b981;
  animation: pulseAnim 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulseAnim {
  0% { transform: scale(0.8); opacity: 0.9; }
  50% { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(0.8); opacity: 0; }
}

/* Quick Vehicle Fit Chips */
.quick-fit-pills {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-slate-200);
}

.quick-fit-label {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--color-slate-700);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.quick-fit-chip {
  background: var(--color-slate-100);
  border: 1px solid var(--color-slate-300);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-slate-800);
  cursor: pointer;
  transition: all 0.15s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.quick-fit-chip:hover {
  background: var(--color-slate-900);
  color: var(--color-yellow);
  border-color: var(--color-slate-900);
  transform: translateY(-1px);
}

/* Sticky Mobile Bottom Bar */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0f172a;
  border-top: 2px solid #fdc82f;
  z-index: 95;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.25);
  padding: 0.5rem 0.75rem;
  padding-bottom: max(0.5rem, env(safe-area-inset-bottom));
  justify-content: space-around;
  align-items: center;
  gap: 0.5rem;
}

.mobile-bar-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  padding: 0.45rem 0.25rem;
  border-radius: 8px;
  color: #cbd5e1;
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.15s ease;
}

.mobile-bar-btn span:first-child {
  font-size: 1.15rem;
  line-height: 1;
}

.mobile-bar-btn:active, .mobile-bar-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.mobile-bar-btn.primary {
  background: #fdc82f;
  color: #0f172a;
  font-weight: 800;
  box-shadow: 0 2px 6px rgba(253, 200, 47, 0.35);
}
.mobile-bar-btn.primary:active {
  background: #eab308;
}

.mobile-bar-btn.whatsapp {
  color: #4ade80;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  pointer-events: none;
  max-width: 380px;
  width: 90%;
}

.toast {
  pointer-events: auto;
  background: #0f172a;
  color: #fff;
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3), 0 8px 10px -6px rgba(0, 0, 0, 0.2);
  border-left: 4px solid #fdc82f;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  animation: toastSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.toast.toast-success { border-left-color: #10b981; }
.toast.toast-danger { border-left-color: #ef4444; }
.toast.toast-info { border-left-color: #3b82f6; }

@keyframes toastSlideIn {
  from {
    opacity: 0;
    transform: translateX(100%) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.toast-close {
  color: #94a3b8;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
}
.toast-close:hover {
  color: #fff;
}

/* Enhanced Responsive Styles */
@media (min-width: 1025px) and (max-width: 1260px) {
  .nav-tabs {
    gap: 0.2rem;
  }
  .nav-tab {
    padding: 0.4rem 0.55rem;
    font-size: 0.76rem;
    gap: 0.25rem;
  }
  .nav-book-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.76rem;
    margin-left: 0.15rem;
  }
}

@media (max-width: 1024px) {
  .header-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0;
  }
  .brand {
    justify-content: flex-start;
    width: auto;
  }
  .brand-name {
    font-size: 1.1rem;
  }
  .brand-location {
    font-size: 0.72rem;
  }
  .nav-tabs {
    display: none !important;
  }
  .mobile-nav-actions {
    display: flex !important;
    visibility: visible;
    opacity: 1;
    position: relative;
    z-index: 210;
  }

  .nav-hamburger-btn,
  .hamburger-bar {
    visibility: visible;
  }

  .hamburger-bar {
    background-color: var(--color-yellow);
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 70px; /* offset for sticky bottom bar */
  }
  .mobile-bottom-bar {
    display: flex;
  }
  .hero-card {
    padding: 1.75rem 1.25rem;
  }
  .hero-title {
    font-size: 1.9rem;
  }
  .finder-box {
    padding: 1.15rem;
  }
  .signboard-services-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .signboard-services-row {
    grid-template-columns: 1fr;
  }
  .finder-grid {
    grid-template-columns: 1fr;
  }
  .brand-name {
    font-size: 1rem;
  }
  .brand-badge {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
  .mobile-nav-book-btn {
    padding: 0.35rem 0.65rem;
    font-size: 0.74rem;
  }
  .mobile-nav-call-btn {
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
  }
  .nav-hamburger-btn {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 360px) {
  .brand-location {
    display: none;
  }
}

.signboard-hero {
  text-align: center;
  padding: 1.75rem 1.25rem 1.25rem;
}

.signboard-logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 8px 18px;
  border-radius: var(--radius-md);
  border: 2px solid #0f172a;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
  margin-bottom: 0.85rem;
  transition: transform 0.2s ease;
}

.signboard-logo-badge:hover {
  transform: scale(1.02);
}

.signboard-official-logo {
  height: 85px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

@media (max-width: 640px) {
  .signboard-official-logo {
    height: 60px;
  }
}

.signboard-main-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
  margin: 0;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.4);
}

.signboard-sub-title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.6rem);
  font-weight: 900;
  color: #dc2626;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.signboard-services-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 3px solid #0f172a;
  background: var(--color-yellow);
}

.signboard-service-col {
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: background-color 0.2s ease;
  cursor: pointer;
}

.signboard-service-col:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 15%;
  right: 0;
  height: 70%;
  width: 2px;
  background: #0f172a;
}

.signboard-service-col:hover {
  background: rgba(0, 0, 0, 0.04);
}

.signboard-icon-box {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  color: var(--color-navy);
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.signboard-service-col:hover .signboard-icon-box {
  transform: scale(1.12);
}

.signboard-icon-box svg {
  stroke: var(--color-navy);
  color: var(--color-navy);
}

.signboard-service-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 900;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.35rem;
  line-height: 1.2;
}

.signboard-service-desc {
  font-size: 0.78rem;
  color: #334155;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  max-width: 190px;
}

.signboard-action-btn {
  font-size: 0.72rem;
  font-weight: 800;
  background: #0f172a;
  color: #fff;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid #0f172a;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.15s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.signboard-action-btn:hover {
  background: #dc2626;
  border-color: #dc2626;
}

.signboard-banner-footer {
  display: flex;
  align-items: stretch;
  background: #0f172a;
  border-top: 3px solid #0f172a;
  flex-wrap: wrap;
}

.signboard-footer-loc {
  flex: 1.2;
  background: #dc2626;
  color: #fff;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-heading);
  font-size: clamp(0.85rem, 2vw, 1.2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  clip-path: polygon(0 0, 96% 0, 100% 100%, 0% 100%);
  padding-right: 2.5rem;
}

.signboard-footer-contact {
  flex: 1;
  background: #0f172a;
  color: #fff;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.contact-pill-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: opacity 0.15s ease;
}

.contact-pill-link:hover {
  opacity: 0.9;
  color: var(--color-yellow);
}

/* Detailed Services Tab Cards */
.services-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.service-full-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-full-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: #cbd5e1;
}

.service-card-header {
  padding: 1.25rem 1.5rem;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-checklist {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-checklist li {
  font-size: 0.85rem;
  color: #334155;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.service-checklist li::before {
  content: '✓';
  color: #059669;
  font-weight: 900;
}

@media (max-width: 992px) {
  .signboard-services-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .signboard-service-col:not(:last-child)::after {
    display: none;
  }
  .signboard-service-col {
    border-bottom: 1px solid #0f172a;
    border-right: 1px solid #0f172a;
  }
  .signboard-footer-loc {
    clip-path: none;
    padding-right: 1.5rem;
    flex: 100%;
  }
  .signboard-footer-contact {
    flex: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .signboard-services-row {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   WORKSHOP FITMENT & BOOKING CART STYLING
   ========================================================================== */

.cart-modal-dialog {
  max-width: 720px;
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(253, 200, 47, 0.3);
}

.cart-header-navy {
  background: linear-gradient(135deg, #092241, #0f172a);
  color: #ffffff;
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #fdc82f;
}

.cart-header-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 800;
  font-family: var(--font-heading);
}

.cart-header-badge {
  background: #fdc82f;
  color: #092241;
  font-size: 0.75rem;
  font-weight: 900;
  padding: 0.2rem 0.65rem;
  border-radius: 9999px;
  letter-spacing: 0.03em;
}

.cart-banner-alert {
  background: #fef3c7;
  border: 1px solid #fde68a;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.84rem;
  color: #92400e;
}

.cart-items-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.cart-item-row {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: all 0.2s ease;
}

.cart-item-row:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.cart-item-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  min-width: 0;
}

.cart-item-icon {
  width: 46px;
  height: 46px;
  background: #f1f5f9;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  border: 1px solid #e2e8f0;
}

.cart-item-name {
  font-weight: 800;
  font-size: 0.98rem;
  color: #0f172a;
  margin-bottom: 0.15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-meta {
  font-size: 0.8rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.cart-item-stepper {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 2px 4px;
}

.cart-stepper-btn {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: none;
  background: #ffffff;
  color: #0f172a;
  font-weight: 900;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: all 0.15s ease;
}

.cart-stepper-btn:hover:not(:disabled) {
  background: #fdc82f;
  color: #092241;
}

.cart-stepper-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.cart-stepper-val {
  min-width: 24px;
  text-align: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: #0f172a;
}

.cart-item-pricing {
  text-align: right;
  min-width: 90px;
}

.cart-item-total {
  font-size: 1.05rem;
  font-weight: 900;
  color: #0f172a;
  font-family: var(--font-heading);
}

.cart-item-unit-price {
  font-size: 0.75rem;
  color: #64748b;
}

.cart-item-remove-btn {
  background: none;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  padding: 0.4rem;
  border-radius: 6px;
  font-size: 1.1rem;
  line-height: 1;
  transition: all 0.15s ease;
}

.cart-item-remove-btn:hover {
  color: #ef4444;
  background: #fee2e2;
}

.cart-quick-qty-pills {
  display: flex;
  gap: 0.35rem;
  margin-top: 0.35rem;
}

.cart-qty-pill {
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #475569;
  padding: 0.15rem 0.45rem;
  cursor: pointer;
  transition: all 0.15s ease;
}

.cart-qty-pill:hover, .cart-qty-pill.active {
  background: #092241;
  color: #ffffff;
  border-color: #092241;
}

/* Addons Section */
.cart-addons-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.cart-addons-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.cart-addon-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.65rem;
}

.cart-addon-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 0.65rem 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  transition: all 0.15s ease;
}

.cart-addon-item:hover {
  border-color: #fdc82f;
  background: #fffbeb;
}

.cart-addon-item.selected {
  border-color: #fdc82f;
  background: #fefce8;
  box-shadow: 0 0 0 1px #fdc82f;
}

.cart-addon-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #1e293b;
}

.cart-addon-price {
  font-size: 0.8rem;
  font-weight: 800;
  color: #059669;
}

/* Cost Summary Panel */
.cart-summary-panel {
  background: #092241;
  color: #ffffff;
  border-radius: 12px;
  padding: 1.35rem;
  margin-bottom: 1.5rem;
}

.cart-summary-table {
  width: 100%;
  font-size: 0.85rem;
  border-collapse: collapse;
}

.cart-summary-table td {
  padding: 0.4rem 0;
  color: #cbd5e1;
}

.cart-summary-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: #ffffff;
}

.cart-summary-table tr.total-row td {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 0.85rem;
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
}

.cart-summary-table tr.total-row td:last-child {
  font-size: 1.65rem;
  font-weight: 900;
  color: #fdc82f;
  font-family: var(--font-heading);
}

/* Quick Vehicle Form */
.cart-fast-reservation {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.cart-section-subtitle {
  font-size: 0.88rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cart-input-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.cart-field-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.cart-field-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #475569;
}

.cart-fast-input {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 0.85rem;
  color: #0f172a;
  background: #ffffff;
  outline: none;
  transition: border-color 0.15s ease;
}

.cart-fast-input:focus {
  border-color: #092241;
  box-shadow: 0 0 0 2px rgba(9, 34, 65, 0.1);
}

.cart-vehicle-chips {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-top: 0.35rem;
}

.cart-chip-btn {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 0.75rem;
  padding: 0.2rem 0.5rem;
  color: #334155;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.15s ease;
}

.cart-chip-btn:hover {
  background: #092241;
  color: #ffffff;
  border-color: #092241;
}

/* Empty State */
.cart-empty-view {
  text-align: center;
  padding: 3rem 1.5rem;
  background: #f8fafc;
  border: 2px dashed #cbd5e1;
  border-radius: 12px;
}

.cart-empty-icon {
  width: 64px;
  height: 64px;
  background: #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #64748b;
  font-size: 1.8rem;
}

.cart-empty-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.4rem;
}

.cart-empty-text {
  font-size: 0.88rem;
  color: #64748b;
  max-width: 420px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

/* Modal Bottom Actions */
.cart-actions-toolbar {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

@media (max-width: 640px) {
  .cart-input-grid {
    grid-template-columns: 1fr;
  }
  .cart-item-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .cart-item-info {
    width: 100%;
  }
  .cart-item-pricing {
    text-align: left;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
  }
}

/* ==========================================
   WORKSHOP FITMENT & 3D ALIGNMENT BOOKING MODAL
   ========================================== */

.booking-modal-dialog {
  max-width: 640px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(253, 200, 47, 0.35);
  background: #ffffff;
}

.booking-header-navy {
  background: linear-gradient(135deg, #092241 0%, #0f172a 100%);
  color: #ffffff;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #fdc82f;
  position: relative;
}

.booking-header-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.booking-header-badge {
  width: 42px;
  height: 42px;
  background: rgba(253, 200, 47, 0.15);
  border: 1.5px solid #fdc82f;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
}

.booking-header-title {
  font-size: 1.18rem;
  font-weight: 800;
  color: #ffffff;
  font-family: var(--font-heading);
  line-height: 1.2;
}

.booking-header-sub {
  font-size: 0.78rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.2rem;
}

.booking-header-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.booking-status-pill {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
}

.booking-status-dot {
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
}

.booking-close-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1;
}

.booking-close-btn:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: #ef4444;
  color: #f87171;
}

.booking-banner-notice {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: #475569;
  line-height: 1.5;
}

.booking-banner-icon {
  font-size: 1.15rem;
  flex-shrink: 0;
}

.booking-body-wrap {
  padding: 1.5rem;
  max-height: calc(88vh - 130px);
  overflow-y: auto;
}

/* Form Sections */
.booking-section {
  margin-bottom: 1.25rem;
}

.booking-section-title {
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.6rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px dashed #e2e8f0;
}

.booking-field-group {
  margin-bottom: 0.9rem;
}

.booking-field-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 0.35rem;
}

.booking-field-required {
  color: #ef4444;
  margin-left: 0.2rem;
}

.booking-field-help {
  font-size: 0.72rem;
  color: #94a3b8;
  font-weight: 500;
}

.booking-input-container {
  position: relative;
  display: flex;
  align-items: center;
}

.booking-input-prefix-icon {
  position: absolute;
  left: 0.85rem;
  font-size: 1rem;
  pointer-events: none;
  opacity: 0.75;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
}

.booking-input,
.booking-select,
.booking-textarea {
  width: 100%;
  padding: 0.7rem 0.85rem 0.7rem 2.6rem;
  background-color: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  font-size: 0.88rem;
  font-family: inherit;
  font-weight: 600;
  color: #0f172a;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.02);
}

.booking-input::placeholder,
.booking-textarea::placeholder {
  color: #94a3b8;
  font-weight: 500;
}

.booking-input:focus,
.booking-select:focus,
.booking-textarea:focus {
  outline: none;
  border-color: #fdc82f;
  background-color: #ffffff;
  box-shadow: 0 0 0 3.5px rgba(253, 200, 47, 0.25);
}

.booking-input:hover,
.booking-select:hover,
.booking-textarea:hover {
  border-color: #94a3b8;
}

.booking-select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f172a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
  cursor: pointer;
}

/* Quick Vehicle Selection Chips */
.booking-vehicle-chips {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.booking-chip-btn {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  padding: 0.25rem 0.55rem;
  font-size: 0.74rem;
  font-weight: 700;
  color: #475569;
  cursor: pointer;
  transition: all 0.15s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.booking-chip-btn:hover {
  background: #f1f5f9;
  border-color: #94a3b8;
  color: #0f172a;
}

.booking-chip-btn.active {
  background: #092241;
  border-color: #092241;
  color: #ffffff;
}

/* Two Column Responsive Grid */
.booking-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

@media (max-width: 600px) {
  .booking-grid-2col {
    grid-template-columns: 1fr;
  }
}

/* Highlight Card for Workshop Guarantees */
.booking-guarantee-strip {
  background: linear-gradient(135deg, rgba(253, 200, 47, 0.08), rgba(253, 200, 47, 0.15));
  border: 1px solid rgba(253, 200, 47, 0.35);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  font-size: 0.78rem;
  color: #1e293b;
  font-weight: 600;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.booking-guarantee-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* Form Footer Actions */
.booking-actions-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
}

.booking-btn-cancel {
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  color: #475569;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.booking-btn-cancel:hover {
  background: #f1f5f9;
  border-color: #94a3b8;
  color: #0f172a;
}

.booking-btn-submit {
  background: #fdc82f;
  border: 1.5px solid #eab308;
  color: #092241;
  font-weight: 900;
  font-size: 0.95rem;
  padding: 0.75rem 1.6rem;
  border-radius: 10px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(253, 200, 47, 0.35);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.booking-btn-submit:hover {
  background: #eab308;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(253, 200, 47, 0.45);
}

.booking-btn-submit:active {
  transform: translateY(0);
}

/* Success Pass Styling */
.booking-success-card {
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
  margin-bottom: 1.25rem;
}

.booking-success-header {
  background: #092241;
  color: #ffffff;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.booking-success-body {
  padding: 1.25rem;
}

.booking-ticket-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 0;
  border-bottom: 1px dashed #e2e8f0;
  font-size: 0.85rem;
}

.booking-ticket-row:last-child {
  border-bottom: none;
}

/* ==========================================================================
   PROFESSIONAL LUCIDE ICONS & FORM ARCHITECTURE
   ========================================================================== */
.lucide, svg.lucide {
  width: 1.15em;
  height: 1.15em;
  stroke-width: 2px;
  stroke: currentColor;
  fill: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: -0.16em;
  flex-shrink: 0;
  transition: transform 0.15s ease, stroke 0.15s ease;
}

.lucide-xs { width: 0.85em; height: 0.85em; }
.lucide-sm { width: 1em; height: 1em; }
.lucide-md { width: 1.25em; height: 1.25em; }
.lucide-lg { width: 1.5em; height: 1.5em; }
.lucide-xl { width: 2.25em; height: 2.25em; }

/* Status pulse indicator */
.status-pulse-dot, .booking-status-dot {
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* Professional Input Container Prefix Icon Alignment */
.booking-input-container {
  position: relative;
  display: flex;
  align-items: center;
}

.booking-input-container .booking-input-prefix-icon {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  font-size: 1rem;
}

.booking-input-container .booking-input,
.booking-input-container .booking-select {
  padding-left: 2.6rem !important;
  width: 100%;
}

/* Form Select Dropdowns with Clean Minimalist SVG Caret */
.booking-select,
.form-select,
.cart-fast-input select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 0.85rem center !important;
  background-size: 16px 16px !important;
  padding-right: 2.6rem !important;
  cursor: pointer;
}

/* Professional Chip Buttons (Quantum, Hilux, Polo, etc.) */
.booking-chip-btn, .cart-chip-btn, .quick-fit-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 9999px;
  background: #f8fafc;
  color: #334155;
  border: 1px solid #cbd5e1;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.booking-chip-btn:hover, .cart-chip-btn:hover, .quick-fit-chip:hover {
  background: #092241;
  color: #fdc82f;
  border-color: #092241;
  transform: translateY(-1px);
}

.booking-chip-btn.active, .cart-chip-btn.active, .quick-fit-chip.active {
  background: #092241;
  color: #fdc82f;
  border-color: #fdc82f;
  box-shadow: 0 2px 8px rgba(9, 34, 65, 0.25);
}

.booking-chip-btn .lucide, .cart-chip-btn .lucide, .quick-fit-chip .lucide {
  width: 0.95em;
  height: 0.95em;
}

/* Professional Stepper & Cart Buttons */
.cart-stepper-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  color: #0f172a;
  cursor: pointer;
  transition: all 0.15s ease;
}

.cart-stepper-btn:hover:not(:disabled) {
  background: #092241;
  color: #fdc82f;
  border-color: #092241;
}

.cart-item-remove-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #ef4444;
  cursor: pointer;
  transition: all 0.15s ease;
}

.cart-item-remove-btn:hover {
  background: #ef4444;
  color: #ffffff;
  border-color: #ef4444;
}

/* Mobile Quick Navigation Action Bar Icons */
.mobile-bar-btn .lucide {
  width: 1.35em;
  height: 1.35em;
  margin-bottom: 2px;
}

/* ==========================================================================
   AI WORKSHOP COPILOT & INTELLIGENT ADVISOR STYLES
   ========================================================================== */

/* Floating AI Copilot Trigger Button */
.floating-ai-copilot-btn {
  position: fixed;
  bottom: 84px;
  right: 20px;
  z-index: 990;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #092241 0%, #0369a1 100%);
  color: #ffffff;
  padding: 0.65rem 1.15rem;
  border-radius: 9999px;
  border: 1px solid rgba(56, 189, 248, 0.4);
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 10px 25px -5px rgba(2, 132, 199, 0.4), 0 8px 10px -6px rgba(2, 132, 199, 0.2);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-ai-copilot-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 15px 30px -5px rgba(2, 132, 199, 0.5);
  background: linear-gradient(135deg, #0f172a 0%, #0284c7 100%);
  border-color: #38bdf8;
}

.floating-ai-copilot-btn .lucide {
  color: #fdc82f;
  animation: pulseRotate 3s infinite ease-in-out;
}

@keyframes pulseRotate {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.15) rotate(15deg); }
}

@media (max-width: 768px) {
  .floating-ai-copilot-btn {
    bottom: 70px;
    right: 12px;
    padding: 0.55rem 0.9rem;
    font-size: 0.78rem;
  }
}

/* AI Copilot Modal Dialog */
.ai-modal-dialog {
  max-width: 760px;
  width: 95%;
  max-height: 90vh;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: modalPop 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.ai-copilot-header {
  background: linear-gradient(135deg, #092241 0%, #0f172a 100%);
  color: #ffffff;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-status-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  text-transform: uppercase;
}

/* AI Symptom Chips */
.ai-symptom-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  color: #334155;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.ai-symptom-chip:hover {
  background: #092241;
  color: #ffffff;
  border-color: #092241;
  transform: translateY(-1px);
}

/* Severity Badges */
.severity-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.severity-low {
  background: #dcfce7;
  color: #15803d;
  border: 1px solid #86efac;
}

.severity-medium {
  background: #fef9c3;
  color: #a16207;
  border: 1px solid #fde047;
}

.severity-high {
  background: #ffedd5;
  color: #c2410c;
  border: 1px solid #fdba74;
}

.severity-critical {
  background: #fee2e2;
  color: #b91c1c;
  border: 1px solid #fca5a5;
  animation: pulseCritical 1.5s infinite;
}

@keyframes pulseCritical {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
  50% { box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
}

/* Smart Vehicle Match Card */
.smart-vehicle-card {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 1px solid #bae6fd;
  border-radius: 14px;
  padding: 1.15rem;
  box-shadow: 0 4px 6px -1px rgba(2, 132, 199, 0.1);
  animation: fadeIn 0.2s ease-in-out;
}

/* AI Fleet Analysis Output */
.ai-fleet-result-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.ai-stat-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.ai-stat-val {
  font-size: 1.4rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: #0f172a;
  margin-top: 0.25rem;
}

.ai-stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.floating-cart-actions {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1200;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 14px;
  background: rgba(9, 34, 65, 0.96);
  box-shadow: 0 12px 30px rgba(9, 34, 65, 0.24);
}

.floating-cart-action {
  position: relative;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 0.85rem;
  border: 0;
  border-radius: 10px;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.floating-cart-action:hover {
  transform: translateY(-2px);
}

.floating-cart-button {
  color: #092241;
  background: #fdc82f;
}

.floating-checkout-button {
  color: #ffffff;
  background: #059669;
}

.floating-cart-count {
  min-width: 1.25rem;
  height: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.25rem;
  border-radius: 999px;
  color: #ffffff;
  background: #dc2626;
  font-size: 0.68rem;
  line-height: 1;
}

@media (max-width: 767px) {
  .floating-cart-actions {
    display: none;
  }

  .floating-cart-action {
    flex: 1;
  }
}



