/* ==========================================================================
   ABAZAR AUTO ACCESSORIES - BLACK & RED AUTOMOTIVE THEME
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700;800&family=Montserrat:wght@500;600;700;800;900&family=Tajawal:wght@400;500;700;800&family=Roboto+Mono:wght@500;700&display=swap');

:root {
  --bg-body: #080c14;
  --bg-darkest: #04060a;
  --bg-header: #0d1322;
  --bg-card: #12192c;
  --bg-card-hover: #19233c;
  --bg-input: #1a233a;
  
  --primary-red: #e11d48;
  --primary-red-hover: #be123c;
  --primary-red-glow: rgba(225, 29, 72, 0.35);
  --primary-red-soft: rgba(225, 29, 72, 0.15);
  
  --accent-cyan: #06b6d4;
  --accent-gold: #f59e0b;
  --accent-emerald: #10b981;
  --whatsapp-green: #25d366;
  --whatsapp-green-hover: #20ba59;

  --text-white: #ffffff;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-dark: #0f172a;

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-red: rgba(225, 29, 72, 0.4);
  --border-red-solid: #e11d48;

  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;

  --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Montserrat', sans-serif;
  --font-arabic: 'Tajawal', sans-serif;
  --font-mono: 'Roboto Mono', monospace;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-card: 0 6px 20px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 25px var(--primary-red-glow);
  --shadow-drawer: -8px 0 30px rgba(0, 0, 0, 0.8);

  --transition: all 0.22s ease-in-out;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  background-image: 
    radial-gradient(circle at 85% 15%, rgba(225, 29, 72, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 15% 45%, rgba(225, 29, 72, 0.04) 0%, transparent 40%);
}

body[dir="rtl"] {
  font-family: var(--font-arabic);
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.container {
  width: 100%;
  max-width: 1260px;
  margin-inline: auto;
  padding-inline: 1rem;
}

/* ==========================================================================
   1. TOP BAR (BLACK & RED)
   ========================================================================== */
.top-header-bar {
  background: var(--bg-darkest);
  color: #94a3b8;
  font-size: 0.78rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(225, 29, 72, 0.3);
}

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

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.store-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.74rem;
}

.store-live-pill.closed {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  border-color: rgba(239, 68, 68, 0.3);
}

.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 6px currentColor;
}

.top-shipping-note {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #cbd5e1;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-switch-box {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.lang-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: #cbd5e1;
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-xs);
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.lang-btn.active, .lang-btn:hover {
  background: var(--primary-red);
  color: #fff;
  border-color: var(--primary-red);
}

/* ==========================================================================
   2. MAIN BLACK & RED BRAND HEADER
   ========================================================================== */
.main-white-header {
  background: var(--bg-header);
  padding: 1.1rem 0;
  border-bottom: 2px solid var(--primary-red);
  box-shadow: var(--shadow-sm);
}

.main-header-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
}

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

.logo-badge-red {
  background: var(--primary-red);
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(225, 29, 72, 0.5);
}

.logo-headings h1 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--text-white);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.logo-headings span {
  font-size: 0.72rem;
  color: var(--primary-red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Search Bar (Red Outline) */
.header-search-bar {
  display: flex;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.search-input-wrap {
  display: flex;
  width: 100%;
  border: 2px solid var(--primary-red);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-input);
}

.search-input-control {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
  color: #ffffff;
}

.search-input-control:focus {
  outline: none;
}

.search-input-control::placeholder {
  color: #64748b;
}

.search-submit-btn {
  background: var(--primary-red);
  color: #ffffff;
  border: none;
  padding: 0 1.25rem;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}

.search-submit-btn:hover {
  background: var(--primary-red-hover);
}

/* Contacts & Cart */
.header-right-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-contact-box {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding-right: 1rem;
  border-right: 1px solid var(--border-subtle);
}

.phone-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-red-soft);
  color: var(--primary-red);
  border: 1px solid rgba(225, 29, 72, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.phone-text-group strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
}

.phone-text-group span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.btn-header-cart {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--primary-red);
  color: #ffffff;
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.88rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(225, 29, 72, 0.35);
  transition: var(--transition);
}

.btn-header-cart:hover {
  background: var(--primary-red-hover);
  transform: translateY(-1px);
}

.cart-icon-wrap {
  position: relative;
}

.cart-badge-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: #ffffff;
  color: var(--primary-red);
  font-size: 0.68rem;
  font-weight: 900;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   3. HORIZONTAL NAV BAR (BLACK & RED)
   ========================================================================== */
.horizontal-nav-bar {
  background: var(--bg-darkest);
  border-bottom: 1px solid var(--border-subtle);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.nav-links-list {
  display: flex;
  align-items: center;
  list-style: none;
  overflow-x: auto;
  white-space: nowrap;
}

.nav-item-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #cbd5e1;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.85rem 1.15rem;
  border-right: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.nav-item-link:hover, .nav-item-link.active {
  background: var(--primary-red);
  color: #ffffff;
}

.nav-item-link.b2b-highlight {
  background: rgba(225, 29, 72, 0.2);
  color: #ff4b72;
}

/* ==========================================================================
   4. HERO & VEHICLE FINDER (BLACK & RED)
   ========================================================================== */
.hero-banner-section {
  padding: 1.75rem 0;
}

.hero-banner-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1.5rem;
  align-items: stretch;
}

.hero-promo-card {
  background: linear-gradient(135deg, #0e1422 0%, #060911 100%);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow-card);
}

.hero-promo-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 45%;
  background: radial-gradient(circle at center, rgba(225, 29, 72, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.hero-promo-tag {
  display: inline-block;
  background: var(--primary-red);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-xs);
  margin-bottom: 1rem;
  width: fit-content;
}

.hero-promo-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 900;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 0.85rem;
}

.hero-promo-title span {
  color: var(--primary-red);
}

.hero-promo-desc {
  font-size: 0.95rem;
  color: #cbd5e1;
  margin-bottom: 1.75rem;
  max-width: 520px;
}

.hero-promo-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.btn-hero-cta {
  background: var(--primary-red);
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.88rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 15px rgba(225, 29, 72, 0.4);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-hero-cta:hover {
  background: var(--primary-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(225, 29, 72, 0.6);
}

.btn-hero-wa {
  background: var(--whatsapp-green);
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.88rem;
  padding: 0.75rem 1.35rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-hero-wa:hover {
  background: var(--whatsapp-green-hover);
  transform: translateY(-2px);
}

/* Vehicle Selector Widget (Dark & Red) */
.vehicle-selector-card {
  background: var(--bg-card);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vehicle-card-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
  border-bottom: 2px solid var(--primary-red);
  padding-bottom: 0.75rem;
}

.vehicle-card-head h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
}

.vehicle-form-group {
  margin-bottom: 0.85rem;
}

.vehicle-form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: #94a3b8;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
}

.vehicle-select-input {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  color: #ffffff;
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-xs);
  font-size: 0.85rem;
  font-weight: 600;
}

.vehicle-select-input:focus {
  outline: none;
  border-color: var(--primary-red);
}

.btn-search-vehicle {
  width: 100%;
  background: var(--primary-red);
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.88rem;
  padding: 0.75rem;
  border-radius: var(--radius-xs);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  box-shadow: 0 4px 12px rgba(225, 29, 72, 0.4);
}

.btn-search-vehicle:hover {
  background: var(--primary-red-hover);
}

/* ==========================================================================
   5. BLOCK REASSURANCE (BLACK & RED)
   ========================================================================== */
.reassurance-section {
  padding: 1.5rem 0;
}

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

.reassurance-block {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 1.15rem 1rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.reassurance-block:hover {
  border-color: var(--primary-red);
  transform: translateY(-2px);
}

.reassurance-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-red-soft);
  color: var(--primary-red);
  border: 1px solid rgba(225, 29, 72, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.reassurance-text h4 {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.15rem;
}

.reassurance-text p {
  font-size: 0.76rem;
  color: #94a3b8;
  line-height: 1.35;
}

/* ==========================================================================
   6. CATEGORY TILES (BLACK & RED)
   ========================================================================== */
.category-tiles-section {
  padding: 2rem 0;
}

.section-title-box {
  border-bottom: 2px solid var(--border-subtle);
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.section-title-box h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  position: relative;
  padding-bottom: 0.5rem;
  margin-bottom: -2px;
  border-bottom: 2px solid var(--primary-red);
}

.cat-tiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.cat-tile-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition);
}

.cat-tile-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary-red);
  box-shadow: 0 8px 20px rgba(225, 29, 72, 0.25);
}

.cat-tile-icon {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.cat-tile-title {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
}

/* ==========================================================================
   7. PRODUCT CATALOG & FILTERS (BLACK & RED)
   ========================================================================== */
.catalog-section {
  padding: 2.5rem 0;
}

.catalog-toolbar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  margin-bottom: 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.pricing-mode-tabs {
  display: flex;
  background: var(--bg-darkest);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xs);
  padding: 0.2rem;
}

.pricing-tab-btn {
  background: transparent;
  border: none;
  color: #94a3b8;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-xs);
  cursor: pointer;
  transition: var(--transition);
}

.pricing-tab-btn.active {
  background: var(--primary-red);
  color: #ffffff;
}

.cat-filter-pills-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.cat-filter-btn {
  background: var(--bg-darkest);
  border: 1px solid var(--border-subtle);
  color: #cbd5e1;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
}

.cat-filter-btn:hover, .cat-filter-btn.active {
  background: var(--primary-red);
  color: #ffffff;
  border-color: var(--primary-red);
}

/* Products Grid */
.products-ecommerce-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.product-item-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.product-item-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-red);
  box-shadow: 0 10px 25px rgba(225, 29, 72, 0.2);
}

.product-image-container {
  background: #ffffff;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  position: relative;
  border-bottom: 1px solid var(--border-subtle);
}

.product-image-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-item-card:hover .product-image-container img {
  transform: scale(1.05);
}

.badge-flag-stock {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.4);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
}

.product-card-body {
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-sku-code {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent-cyan);
  font-weight: 600;
}

.product-item-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0.25rem 0 0.5rem;
  line-height: 1.35;
}

.product-rating-stars {
  color: var(--accent-gold);
  font-size: 0.75rem;
  margin-bottom: 0.75rem;
}

.product-pricing-wrap {
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.price-big-amount {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--primary-red);
}

.price-sub-note {
  font-size: 0.74rem;
  color: #94a3b8;
  font-weight: 600;
}

.product-card-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
  margin-top: 0.85rem;
}

.btn-card-add-cart {
  background: var(--bg-darkest);
  border: 1px solid var(--border-subtle);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.55rem 0.35rem;
  border-radius: var(--radius-xs);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  transition: var(--transition);
}

.btn-card-add-cart:hover {
  background: var(--primary-red);
  border-color: var(--primary-red);
}

.btn-card-wa-order {
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid var(--whatsapp-green);
  color: #34d399;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.55rem 0.35rem;
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  transition: var(--transition);
}

.btn-card-wa-order:hover {
  background: var(--whatsapp-green);
  color: #ffffff;
}

/* ==========================================================================
   8. SHOWROOM & STORE LOCATION (BLACK & RED)
   ========================================================================== */
.showroom-section {
  padding: 2.5rem 0;
}

.showroom-block-card {
  background: var(--bg-card);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.showroom-photo-wrap {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 3;
}

.showroom-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.showroom-details-content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.35rem;
}

.showroom-tagline {
  color: var(--primary-red);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.showroom-info-table {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.showroom-info-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
}

.showroom-info-row strong {
  color: #cbd5e1;
  min-width: 110px;
}

/* ==========================================================================
   9. FOOTER (BLACK & RED)
   ========================================================================== */
.main-ecommerce-footer {
  background: var(--bg-darkest);
  color: #cbd5e1;
  padding: 3.5rem 0 1.5rem;
  border-top: 3px solid var(--primary-red);
  margin-top: 3rem;
}

.footer-columns-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.15rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-red);
}

.footer-links-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.85rem;
}

.footer-links-menu a {
  color: #94a3b8;
  transition: var(--transition);
}

.footer-links-menu a:hover {
  color: var(--primary-red);
  padding-left: 4px;
}

.footer-bottom-bar {
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: #94a3b8;
}

.footer-admin-link {
  color: #94a3b8;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.footer-admin-link:hover {
  color: #ffffff;
}

/* ==========================================================================
   10. CART SLIDE-OVER DRAWER (BLACK & RED)
   ========================================================================== */
.cart-overlay-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cart-overlay-backdrop.open {
  display: flex;
  justify-content: flex-end;
  opacity: 1;
}

.cart-sliding-drawer {
  width: 100%;
  max-width: 480px;
  height: 100%;
  background: var(--bg-header);
  border-left: 1px solid var(--border-red);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-drawer);
  animation: drawerSlide 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes drawerSlide {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

.cart-drawer-header {
  padding: 1.25rem 1.5rem;
  background: var(--bg-darkest);
  border-bottom: 1px solid var(--border-subtle);
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-drawer-header h2 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-close-drawer {
  background: transparent;
  border: none;
  color: #cbd5e1;
  font-size: 1.3rem;
  cursor: pointer;
}

.cart-drawer-body {
  padding: 1.25rem;
  overflow-y: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.cart-row-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xs);
  padding: 0.75rem;
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 0.75rem;
  align-items: center;
}

.cart-thumb-box {
  width: 50px;
  height: 50px;
  background: #ffffff;
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.15rem;
}

.cart-thumb-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.cart-info-box h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.cart-info-box span {
  font-size: 0.72rem;
  color: var(--primary-red);
  font-weight: 600;
}

.cart-qty-ctrls {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.3rem;
}

.btn-ctrl-qty {
  width: 22px;
  height: 22px;
  background: var(--bg-darkest);
  border: 1px solid var(--border-subtle);
  color: #ffffff;
  border-radius: 2px;
  font-weight: 800;
  font-size: 0.8rem;
  cursor: pointer;
}

.cart-qty-val {
  font-size: 0.82rem;
  font-weight: 700;
  min-width: 18px;
  text-align: center;
  color: #ffffff;
}

.cart-side-subtotal {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
}

.cart-subtotal-price {
  font-weight: 800;
  color: var(--primary-red);
  font-size: 0.92rem;
}

.btn-del-item {
  background: transparent;
  border: none;
  color: #64748b;
  font-size: 0.82rem;
  cursor: pointer;
}

.btn-del-item:hover {
  color: var(--primary-red);
}

.cart-drawer-footer {
  padding: 1.25rem 1.5rem;
  background: var(--bg-darkest);
  border-top: 1px solid var(--border-subtle);
}

.cart-total-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.cart-final-total {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary-red);
}

.btn-submit-cart-whatsapp {
  width: 100%;
  background: var(--whatsapp-green);
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.85rem;
  border-radius: var(--radius-xs);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

.btn-submit-cart-whatsapp:hover {
  background: var(--whatsapp-green-hover);
}

/* Floating WhatsApp Direct */
.floating-wa-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--whatsapp-green);
  color: #ffffff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.5);
  z-index: 999;
  transition: var(--transition);
}

.floating-wa-btn:hover {
  transform: scale(1.08);
}

/* Responsive */
@media (max-width: 960px) {
  .main-header-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .header-search-bar {
    max-width: 100%;
  }
  .hero-banner-grid, .showroom-block-card {
    grid-template-columns: 1fr;
  }
  .footer-columns-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .footer-columns-grid {
    grid-template-columns: 1fr;
  }
  .product-card-buttons {
    grid-template-columns: 1fr;
  }
}
