/* ═══════════════════════════════════════════════════════════
   IR CARS SERVICES — LUXURY AUTOMOTIVE DESIGN SYSTEM
   Version: 4.0 | Ferrari/Brembo Premium Edition
   Theme: Milky White × Deep Black × Performance Orange
═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;600;700;800;900&display=swap');

/* ═══════════════════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════════════════ */
:root {
  /* ── Core Brand Palette ── */
  --red-50:   #fff4ec;
  --red-100:  #ffe4d1;
  --red-200:  #ffc7a3;
  --red-300:  #ffa466;
  --red-400:  #ff8a3d;
  --red-500:  #fb7416;
  --red-600:  #ef6c0c;
  --red-700:  #c95709;
  --red-800:  #a04507;
  --red-900:  #6e2f05;
  --red-core: #f4730f;   /* primary CTA orange */
  --red-deep: #d35e08;   /* darker hover */
  --red-glow: rgba(244, 115, 15, 0.28);

  /* ── Neutrals ── */
  --white:       #ffffff;
  --milk-50:     #fefefe;
  --milk-100:    #fafafa;
  --milk-200:    #f5f5f5;
  --milk-300:    #efefef;
  --milk-400:    #e5e5e5;
  --milk-500:    #d4d4d4;
  --milk-600:    #a3a3a3;

  --ink-50:   #f2f2f2;
  --ink-100:  #e0e0e0;
  --ink-200:  #bdbdbd;
  --ink-300:  #9e9e9e;
  --ink-400:  #757575;
  --ink-500:  #4a4a4a;
  --ink-600:  #2e2e2e;
  --ink-700:  #1c1c1c;
  --ink-800:  #111111;
  --ink-900:  #080808;
  --ink-950:  #030303;
  --black:    #000000;

  /* ── Surface System ── */
  --surf-0:       #ffffff;
  --surf-1:       #fafafa;
  --surf-2:       #f5f5f5;
  --surf-3:       #efefef;
  --surf-dark-0:  #0a0a0a;
  --surf-dark-1:  #111111;
  --surf-dark-2:  #181818;
  --surf-dark-3:  #1f1f1f;

  /* ── Text ── */
  --text-primary:    #0a0a0a;
  --text-secondary:  #2e2e2e;
  --text-tertiary:   #5a5a5a;
  --text-muted:      #8a8a8a;
  --text-inverse:    #ffffff;
  --text-red:        var(--red-core);

  /* ── Borders ── */
  --border-lightest: rgba(0,0,0,.04);
  --border-light:    rgba(0,0,0,.07);
  --border-medium:   rgba(0,0,0,.12);
  --border-strong:   rgba(0,0,0,.20);
  --border-red:      rgba(244,115,15,.30);
  --border-red-soft: rgba(244,115,15,.14);

  /* ── Shadows ── */
  --shadow-xs:  0 1px 3px rgba(0,0,0,.08);
  --shadow-sm:  0 2px 8px rgba(0,0,0,.08), 0 1px 3px rgba(0,0,0,.05);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.07);
  --shadow-xl:  0 16px 56px rgba(0,0,0,.14), 0 8px 20px rgba(0,0,0,.08);
  --shadow-2xl: 0 32px 80px rgba(0,0,0,.16), 0 16px 40px rgba(0,0,0,.10);
  --shadow-red: 0 8px 28px rgba(244,115,15,.32), 0 2px 8px rgba(244,115,15,.18);
  --shadow-red-lg: 0 16px 48px rgba(244,115,15,.38), 0 4px 14px rgba(244,115,15,.22);
  --shadow-card: 0 2px 12px rgba(0,0,0,.07), 0 1px 4px rgba(0,0,0,.05);
  --shadow-card-hover: 0 16px 48px rgba(0,0,0,.13), 0 4px 16px rgba(0,0,0,.08);

  /* ── Radius ── */
  --r-xs:   4px;
  --r-sm:   8px;
  --r-md:   12px;
  --r-lg:   16px;
  --r-xl:   22px;
  --r-2xl:  32px;
  --r-3xl:  48px;
  --r-full: 9999px;

  /* ── Transitions ── */
  --ease:        cubic-bezier(.4,0,.2,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
  --ease-out:    cubic-bezier(0,.55,.45,1);
  --t1: .14s;
  --t2: .26s;
  --t3: .42s;

  /* ── Typography ── */
  --fs-2xs:  10.5px;
  --fs-xs:   12px;
  --fs-sm:   13px;
  --fs-base: 14.5px;
  --fs-md:   16px;
  --fs-lg:   18px;
  --fs-xl:   22px;
  --fs-2xl:  28px;
  --fs-3xl:  36px;

  /* ── Spacing ── */
  --sp-1:  4px;
  --sp-2:  8px;
  --sp-3:  12px;
  --sp-4:  16px;
  --sp-5:  20px;
  --sp-6:  24px;
  --sp-8:  32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-16: 64px;

  --font: 'Vazirmatn', system-ui, -apple-system, sans-serif;

  /* Mobile nav height */
  --mobile-nav-h: 64px;
}

/* ═══════════════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font);
  background: var(--surf-1);
  color: var(--text-primary);
  line-height: 1.65;
  font-size: var(--fs-base);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Add bottom padding on mobile for fixed nav */
@media (max-width: 767.98px) {
  body { padding-bottom: var(--mobile-nav-h); }
}

*, section, article, header, footer, nav { max-width: 100%; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--font); cursor: pointer; }

/* Premium scrollbar */
::-webkit-scrollbar        { width: 4px; height: 4px; }
::-webkit-scrollbar-track  { background: var(--milk-200); }
::-webkit-scrollbar-thumb  { background: var(--red-core); border-radius: var(--r-full); }

::selection { background: rgba(244,115,15,.15); color: var(--text-primary); }

/* ═══════════════════════════════════════════════════════════
   SITE WRAPPER
═══════════════════════════════════════════════════════════ */
.site-wrap {
  overflow: hidden;
  width: 100%;
  background: var(--surf-1);
}

.px-site { padding-inline: clamp(14px, 5vw, 40px); }

/* ═══════════════════════════════════════════════════════════
   SITE HEADER — Premium Milky Glass
═══════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1060;
  background: rgba(255,255,255,.90);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 1px 0 rgba(255,255,255,.8), var(--shadow-sm);
  transition:
    background var(--t2) var(--ease),
    box-shadow var(--t2) var(--ease),
    transform .32s var(--ease);
}

/* Red accent top line */
.site-header::before {
  content: '';
  position: absolute;
  top: 0; inset-inline-start: 0;
  width: 100%; height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--red-core) 25%,
    var(--red-400) 50%,
    var(--red-core) 75%,
    transparent 100%
  );
  z-index: 2;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: 12px clamp(14px, 5vw, 40px);
  min-height: 64px;
}

/* Shop */
.header-shop {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--text-primary);
  white-space: nowrap;
  flex-shrink: 0;
  padding: 8px 14px;
  border-radius: var(--r-md);
  border: 1px solid var(--border-light);
  background: var(--surf-2);
  letter-spacing: .02em;
  transition:
    background   var(--t1) var(--ease),
    border-color var(--t1) var(--ease),
    color        var(--t1) var(--ease),
    box-shadow   var(--t1) var(--ease);
}
.header-shop:hover {
  background: var(--red-50);
  border-color: var(--border-red);
  color: var(--red-core);
  box-shadow: 0 0 14px var(--red-glow);
}
.header-shop .bi-cart3 {
  font-size: 18px;
  color: var(--red-core);
}

/* Search */
.header-search { flex: 1; min-width: 0; }

.search-wrapper { position: relative; }

.search-input {
  width: 100%;
  padding: 10px 76px 10px 18px;
  border: 1.5px solid var(--border-medium);
  border-radius: var(--r-full);
  background: var(--surf-2);
  font-family: var(--font);
  font-size: var(--fs-sm);
  color: var(--text-primary);
  outline: none;
  transition:
    border-color var(--t2) var(--ease),
    background   var(--t2) var(--ease),
    box-shadow   var(--t2) var(--ease);
}
.search-input::placeholder { color: var(--text-muted); }
.search-input::-webkit-search-cancel-button,
.search-input::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
}

.search-clear-btn {
  position: absolute;
  inset-inline-end: 42px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--text-muted);
  background: transparent;
  font-size: 12px;
  transition: color var(--t1) var(--ease), background var(--t1) var(--ease);
}
.search-clear-btn:hover {
  color: var(--red-core);
  background: var(--red-50);
}
.search-clear-btn[hidden] { display: none !important; }

.search-input:focus {
  border-color: var(--red-core);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(244,115,15,.10), var(--shadow-red);
}

.search-btn {
  position: absolute;
  inset-inline-end: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 15px;
  display: flex;
  align-items: center;
  padding: 0;
  transition: color var(--t1) var(--ease);
}
.search-btn:hover { color: var(--red-core); }

/* Auth */
.header-auth {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
  flex-shrink: 0;
  padding: 8px 14px;
  border-radius: var(--r-md);
  border: 1px solid var(--border-light);
  background: var(--surf-2);
  letter-spacing: .02em;
  transition:
    background   var(--t1) var(--ease),
    border-color var(--t1) var(--ease),
    color        var(--t1) var(--ease);
}
.header-auth:hover {
  background: var(--red-50);
  border-color: var(--border-red);
  color: var(--red-core);
}
.header-auth .bi-person { font-size: 17px; }

/* ── Mobile Header ≤575px ── */
@media (max-width: 575.98px) {
  .header-inner {
    flex-wrap: wrap;
    padding: 10px 14px;
    gap: 8px;
    min-height: auto;
  }
  .header-shop {
    order: 1;
    font-size: 12px;
    padding: 7px 10px;
    gap: 5px;
    border-radius: var(--r-sm);
  }
  .header-shop .shop-label { display: none; }
  .header-auth {
    order: 2;
    margin-inline-start: auto;
    font-size: 12px;
    padding: 7px 10px;
    border-radius: var(--r-sm);
  }
  .header-search { order: 3; flex: 0 0 100%; }
  .search-input { font-size: 13px; padding: 10px 42px 10px 16px; }
}

/* ═══════════════════════════════════════════════════════════
   CATEGORY BAR
═══════════════════════════════════════════════════════════ */
.category-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.category-bar-inner {
  display: flex;
  align-items: center;
  /* justify-content: flex-end; */
  padding: 6px clamp(14px, 5vw, 40px);
  min-height: 40px;
}

.category-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-secondary);
  padding: 5px 12px;
  border-radius: var(--r-sm);
  border: none;
  background: none;
  font-family: var(--font);
  letter-spacing: .04em;
  text-transform: uppercase;
  transition:
    background var(--t1) var(--ease),
    color      var(--t1) var(--ease);
}
.category-toggle:hover {
  background: var(--red-50);
  color: var(--red-core);
}
.category-toggle .bi-list         { font-size: 17px; }
.category-toggle .bi-chevron-down { font-size: 11px; opacity: .55; }

/* ═══════════════════════════════════════════════════════════
   HERO BANNER — Performance White
═══════════════════════════════════════════════════════════ */
.hero-banner {
  position: relative;
  overflow: hidden;
  padding: clamp(52px, 9vw, 96px) 0 clamp(60px, 10vw, 108px);
  background: var(--ink-900);
}

/* Deep base */
.hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 20% 30%,
      rgba(244,115,15,.18) 0%, transparent 55%),
    radial-gradient(ellipse 60% 60% at 85% 70%,
      rgba(140,10,10,.22) 0%, transparent 50%),
    radial-gradient(ellipse 100% 40% at 50% 105%,
      rgba(0,0,0,.9) 0%, transparent 60%),
    linear-gradient(160deg,
      #050505 0%,
      #0f0f0f 30%,
      #1a0808 60%,
      #0f0505 100%
    );
  z-index: 0;
}

/* Grid mesh */
.hero-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(244,115,15,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,115,15,.055) 1px, transparent 1px);
  background-size: 52px 52px;
  z-index: 0;
  pointer-events: none;
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

.hero-speed-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hero-speed-lines::before {
  content: '';
  position: absolute;
  top: 0; inset-inline-end: 0;
  width: 60%; height: 100%;
  background: repeating-linear-gradient(
    -10deg,
    transparent,
    transparent 48px,
    rgba(244,115,15,.03) 48px,
    rgba(244,115,15,.03) 49px
  );
}

/* Orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.hero-orb-1 {
  width: clamp(280px, 50vw, 640px);
  height: clamp(280px, 50vw, 640px);
  top: -18%; inset-inline-start: -8%;
  background: radial-gradient(circle,
    rgba(244,115,15,.20) 0%,
    rgba(180,12,12,.06) 45%,
    transparent 70%);
  filter: blur(70px);
  animation: orb-drift 14s ease-in-out infinite alternate;
}
.hero-orb-2 {
  width: clamp(180px, 36vw, 460px);
  height: clamp(180px, 36vw, 460px);
  bottom: -10%; inset-inline-end: -4%;
  background: radial-gradient(circle,
    rgba(160,8,8,.18) 0%,
    rgba(244,115,15,.06) 45%,
    transparent 70%);
  filter: blur(55px);
  animation: orb-drift 18s ease-in-out infinite alternate-reverse;
}
.hero-orb-3 {
  width: clamp(140px, 28vw, 360px);
  height: clamp(140px, 28vw, 360px);
  top: 38%; inset-inline-start: 38%;
  background: radial-gradient(circle,
    rgba(244,115,15,.09) 0%, transparent 70%);
  filter: blur(45px);
  animation: orb-drift 22s ease-in-out infinite alternate;
}
@keyframes orb-drift {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(28px, 18px) scale(1.07); }
}

.hero-content { position: relative; z-index: 3; }

/* Eyebrow */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(12px);
  border-radius: var(--r-full);
  padding: 6px 18px 6px 12px;
  font-size: var(--fs-xs);
  font-weight: 800;
  color: rgba(255,255,255,.80);
  letter-spacing: .10em;
  text-transform: uppercase;
  margin-bottom: var(--sp-6);
  box-shadow: 0 0 18px rgba(244,115,15,.15), inset 0 1px 0 rgba(255,255,255,.08);
}

.hero-eyebrow-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red-400);
  box-shadow: 0 0 10px var(--red-400), 0 0 22px var(--red-glow);
  animation: pulse-live 2.2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-live {
  0%,100% { transform: scale(1);   opacity: 1; }
  50%      { transform: scale(.75); opacity: .6; }
}

.hero-title {
  font-size: clamp(20px, 4.5vw, 44px);
  font-weight: 900;
  color: #fff;
  line-height: 1.35;
  margin-bottom: var(--sp-6);
  letter-spacing: -.4px;
  overflow-wrap: break-word;
  text-shadow: 0 2px 40px rgba(0,0,0,.7);
}

.hero-subtitle {
  font-size: clamp(13px, 2vw, 15px);
  color: rgba(255,255,255,.60);
  line-height: 1.95;
  margin-bottom: var(--sp-8);
  max-width: 520px;
}

.hero-features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--sp-10);
}
.hero-features li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: rgba(255,255,255,.78);
  font-size: clamp(12.5px, 2vw, 14px);
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.6;
}
.hero-features .bi-check-circle-fill {
  color: var(--red-400);
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 2px;
  filter: drop-shadow(0 0 6px rgba(244,115,15,.5));
}

/* CTA glass card */
.hero-cta-box {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(36px) saturate(180%);
  -webkit-backdrop-filter: blur(36px) saturate(180%);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-2xl);
  padding: clamp(22px, 4vw, 36px);
  box-shadow:
    0 40px 100px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.18),
    inset 0 -1px 0 rgba(0,0,0,.15);
  position: relative;
  overflow: hidden;
}
.hero-cta-box::before {
  content: '';
  position: absolute;
  top: 0; inset-inline-start: 0;
  width: 100%; height: 2px;
  background: linear-gradient(
    90deg,
    transparent, var(--red-core), var(--red-400),
    var(--red-core), transparent
  );
  opacity: .7;
}
.hero-cta-box::after {
  content: '';
  position: absolute;
  inset-inline-end: -60px; bottom: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,115,15,.10) 0%, transparent 70%);
  pointer-events: none;
}

/* Primary CTA */
.hero-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 28px;
  border-radius: var(--r-lg);
  border: none;
  background: linear-gradient(
    135deg,
    var(--red-core) 0%,
    var(--red-600)  50%,
    var(--red-700)  100%
  );
  color: #fff;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .02em;
  margin-bottom: var(--sp-4);
  box-shadow:
    var(--shadow-red),
    inset 0 1px 0 rgba(255,255,255,.22),
    inset 0 -1px 0 rgba(0,0,0,.18);
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition:
    transform  var(--t2) var(--ease-spring),
    box-shadow var(--t2) var(--ease);
}
.hero-cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.18) 0%, transparent 55%);
  border-radius: inherit;
}
.hero-cta-btn:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: var(--shadow-red-lg),
    inset 0 1px 0 rgba(255,255,255,.22);
}
.hero-cta-btn:active { transform: translateY(-1px); }
.hero-cta-btn .bi { font-size: 19px; position: relative; z-index: 1; }

.hero-cta-note {
  font-size: 11.5px;
  color: rgba(255,255,255,.45);
  line-height: 1.75;
  text-align: center;
  margin: 0;
}

@media (max-width: 991.98px) {
  .hero-banner  { padding: clamp(36px, 7vw, 60px) 0; }
  .hero-cta-box { margin-top: var(--sp-6); }
}
@media (max-width: 575.98px) {
  .hero-banner { padding: 36px 0 44px; }
  .hero-eyebrow { font-size: 10px; margin-bottom: var(--sp-4); }
  .hero-title { font-size: clamp(19px, 6.5vw, 28px); letter-spacing: -.3px; }
  .hero-subtitle { font-size: 13px; margin-bottom: var(--sp-6); }
  .hero-features { margin-bottom: var(--sp-6); }
  .hero-cta-box { padding: 20px 16px; border-radius: var(--r-xl); margin-top: var(--sp-5); }
  .hero-cta-btn { padding: 14px 20px; font-size: 14px; }
}

/* ═══════════════════════════════════════════════════════════
   BRANDS SECTION — Matte Red
═══════════════════════════════════════════════════════════ */
.brands-section {
  position: relative;
  overflow: hidden;
  padding: clamp(18px, 3vw, 28px) 0;
  background: linear-gradient(
    135deg,
    #161311 0%,
    #241b12 25%,
    var(--red-700) 55%,
    #2a1c0d 75%,
    #161311 100%
  );
}

.brands-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 130% at 50% -30%,
      rgba(255,255,255,.07) 0%, transparent 60%);
  z-index: 0;
}

/* Top + bottom shine lines */
.brands-section::after {
  content: '';
  position: absolute;
  top: 0; inset-inline-start: 0;
  width: 100%; height: 1.5px;
  background: linear-gradient(
    90deg,
    transparent 0%, rgba(255,120,120,.6) 40%,
    rgba(255,200,200,.9) 50%,
    rgba(255,120,120,.6) 60%, transparent 100%
  );
  z-index: 2;
}

.brands-scroll {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px clamp(14px, 5vw, 40px);
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  position: relative;
  z-index: 1;
}
.brands-scroll::-webkit-scrollbar { display: none; }

.brands-label { flex-shrink: 0; padding-inline-end: var(--sp-4); }
.brands-label h2 {
  font-size: clamp(15px, 2.5vw, 18px);
  font-weight: 900;
  color: #fff;
  margin: 0 0 2px;
  white-space: nowrap;
  letter-spacing: -.2px;
  text-shadow: 0 2px 14px rgba(0,0,0,.4);
}
.brands-label p {
  font-size: 11.5px;
  color: rgba(255,255,255,.55);
  margin: 0;
  white-space: nowrap;
  font-weight: 500;
}

.brand-card {
  flex-shrink: 0;
  background: rgba(255,255,255,.97);
  border-radius: var(--r-md);
  padding: 10px 14px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  min-width: 84px;
  border: 1.5px solid rgba(255,255,255,.2);
  box-shadow:
    0 6px 22px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.95);
  will-change: transform;
  transition:
    transform  var(--t2) var(--ease-spring),
    box-shadow var(--t2) var(--ease);
  position: relative;
  overflow: hidden;
}
.brand-card::before {
  content: '';
  position: absolute;
  top: 0; inset-inline-start: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--red-core), var(--red-400));
  opacity: 0;
  transition: opacity var(--t2) var(--ease);
}
.brand-card:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow:
    0 18px 44px rgba(0,0,0,.4),
    inset 0 1px 0 rgba(255,255,255,.95);
}
.brand-card:hover::before { opacity: 1; }

.brand-logo-placeholder {
  width: 52px; height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9.5px;
  font-weight: 900;
}
.brand-name {
  font-size: 11px;
  font-weight: 800;
  color: var(--text-primary);
  white-space: nowrap;
}

.logo-kia        { color: #05141f; letter-spacing: 1px; }
.logo-iran       { color: #00408a; }
.logo-ssangyong  { color: #00376b; font-size: 8.5px; }
.logo-renault    { background: #f0e000; color: #000; padding: 1px 5px; border-radius: 3px; font-size: 9px; }
.logo-lifan      { color: #003087; }

/* ═══════════════════════════════════════════════════════════
   PRODUCTS SECTION — CLEAN SLIDER SYSTEM
═══════════════════════════════════════════════════════════ */

.products-section {
  padding: clamp(40px, 7vw, 72px) 0;
  background: var(--surf-2);
  position: relative;
}

.products-section::before {
  content: '';
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-medium), transparent);
}

/* ── Section Heading ── */
.section-heading {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 900;
  color: var(--text-primary);
  text-align: right;
  margin-bottom: clamp(24px, 4vw, 40px);
  letter-spacing: -.4px;
  display: inline-flex;
  flex-direction: column;
  gap: 9px;
}

.section-heading::after {
  content: '';
  width: 44px;
  height: 3px;
  background: linear-gradient(90deg, var(--red-core), var(--red-400));
  border-radius: var(--r-full);
  box-shadow: 0 0 12px var(--red-glow);
}

/* ── Slider Wrapper (Contains arrows + container) ── */
.products-slider-wrapper {
  position: relative;
  padding: 0 60px; /* Space for arrows */
}

/* ── Slider Container (Overflow hidden) ── */
.products-slider-container {
  overflow: hidden;
  border-radius: var(--r-lg);
}

/* ── Slider Track ── */
.products-slider {
  display: flex;
  gap: 16px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* ── Product Slide ── */
.product-slide {
  flex: 0 0 auto;
  width: calc(25% - 12px); /* 4 items on desktop */
  min-width: 220px;
}

/* ── Navigation Arrows ── */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: var(--r-full);
  border: 1.5px solid var(--border-medium);
  background: var(--white);
  color: var(--text-primary);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  z-index: 10;
  transition: 
    background var(--t2) var(--ease),
    border-color var(--t2) var(--ease),
    color var(--t2) var(--ease),
    transform var(--t2) var(--ease-spring),
    box-shadow var(--t2) var(--ease),
    opacity var(--t2) var(--ease);
}

.slider-arrow:hover:not(.disabled) {
  background: var(--red-core);
  border-color: var(--red-core);
  color: #fff;
  box-shadow: var(--shadow-red);
  transform: translateY(-50%) scale(1.08);
}

.slider-arrow:active:not(.disabled) {
  transform: translateY(-50%) scale(0.96);
}

/* Right Arrow - Previous (في RTL) */
.slider-arrow-right {
  right: 0;
}

/* Left Arrow - Next (في RTL) */
.slider-arrow-left {
  left: 0;
}

/* Disabled State */
.slider-arrow.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

/* ── Pagination Dots ── */
.slider-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: clamp(20px, 3vw, 32px);
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--r-full);
  background: var(--milk-500);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: 
    width var(--t2) var(--ease-spring),
    background var(--t2) var(--ease);
}

.slider-dot:hover {
  background: var(--milk-600);
}

.slider-dot.active {
  width: 24px;
  background: var(--red-core);
  box-shadow: 0 0 10px var(--red-glow);
}

/* ── Product Card ── */
.product-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  transition: 
    transform var(--t2) var(--ease-spring),
    box-shadow var(--t2) var(--ease),
    border-color var(--t2) var(--ease);
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--red-core), var(--red-400));
  opacity: 0;
  z-index: 2;
  transition: opacity var(--t2) var(--ease);
}

.product-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--border-red-soft);
}

.product-card:hover::before {
  opacity: 1;
}

/* ── Product Image ── */
.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--surf-2);
  flex-shrink: 0;
}

.product-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, rgba(0,0,0,.06) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 
    transform var(--t3) var(--ease),
    filter var(--t3) var(--ease);
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.09);
  filter: brightness(1.04) contrast(1.02);
}

/* ── Product Body ── */
.product-body {
  padding: 13px 15px 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
  z-index: 2;
}

.product-title {
  font-size: clamp(12px, 2vw, 13.5px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.55;
  text-align: right;
  margin-bottom: var(--sp-3);
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-3);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--border-lightest);
}

.product-price {
  font-size: clamp(11px, 2vw, 13px);
  font-weight: 800;
  color: var(--red-core);
  letter-spacing: -.1px;
}

.product-price-inquiry {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.product-price-inquiry::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--text-muted);
  flex-shrink: 0;
  opacity: .55;
}

/* ── Product Actions ── */
.product-actions {
  display: flex;
  gap: 7px;
  flex-direction: column;
}

.btn-details {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px 12px;
  border: 1.5px solid var(--border-medium);
  color: var(--text-secondary);
  border-radius: var(--r-sm);
  font-family: var(--font);
  font-size: 11.5px;
  font-weight: 700;
  background: var(--surf-2);
  white-space: nowrap;
  letter-spacing: .01em;
  text-transform: uppercase;
  flex: 1;
  transition: 
    background var(--t1) var(--ease),
    color var(--t1) var(--ease),
    border-color var(--t1) var(--ease),
    box-shadow var(--t1) var(--ease);
}

.btn-details:hover {
  background: var(--ink-800);
  color: #fff;
  border-color: var(--ink-800);
  box-shadow: var(--shadow-md);
}

.btn-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 12px;
  border: none;
  color: #fff;
  border-radius: var(--r-sm);
  font-family: var(--font);
  font-size: 11.5px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--red-core) 0%, var(--red-600) 100%);
  white-space: nowrap;
  letter-spacing: .01em;
  text-transform: uppercase;
  flex: 1;
  box-shadow: var(--shadow-red);
  position: relative;
  overflow: hidden;
  transition: 
    transform var(--t1) var(--ease-spring),
    box-shadow var(--t1) var(--ease);
}

.btn-cart::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.18) 0%, transparent 55%);
}

.btn-cart:hover {
  transform: scale(1.03) translateY(-1px);
  box-shadow: var(--shadow-red-lg);
}

.btn-cart:active {
  transform: scale(.98);
}

.btn-cart .bi {
  font-size: 14px;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
═══════════════════════════════════════════════════════════ */

/* ── Desktop Large (≥1200px): 4 items ── */
@media (min-width: 1200px) {
  .product-slide {
    width: calc(25% - 12px);
  }
}

/* ── Tablet/Desktop (768px - 1199px): 3 items ── */
@media (min-width: 768px) and (max-width: 1199.98px) {
  .product-slide {
    width: calc(33.333% - 11px);
  }
}

/* ── Mobile Large/Tablet (480px - 767px): 2 items ── */
@media (min-width: 480px) and (max-width: 767.98px) {
  .products-slider-wrapper {
    padding: 0 50px;
  }

  .slider-arrow {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .product-slide {
    width: calc(50% - 8px);
    min-width: 0;
  }
}

/* ── Mobile Small (<480px): 1 item ── */
@media (max-width: 479.98px) {
  .products-slider-wrapper {
    padding: 0 44px;
  }

  .slider-arrow {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }

  .slider-arrow-right {
    right: -2px;
  }

  .slider-arrow-left {
    left: -2px;
  }

  .product-slide {
    width: calc(100% - 4px);
    min-width: 0;
  }

  .slider-pagination {
    margin-top: 16px;
  }

  .slider-dot {
    width: 6px;
    height: 6px;
  }

  .slider-dot.active {
    width: 18px;
  }
}

/* ── Product Card — Premium Automotive White ── */
.product-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  height: 100%;
  will-change: transform;
  position: relative;
  transition:
    transform     var(--t2) var(--ease-spring),
    box-shadow    var(--t2) var(--ease),
    border-color  var(--t2) var(--ease);
}

/* Accent top line on hover */
.product-card::before {
  content: '';
  position: absolute;
  top: 0; inset-inline-start: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--red-core), var(--red-400));
  opacity: 0;
  z-index: 2;
  transition: opacity var(--t2) var(--ease);
}
.product-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--border-red-soft);
}
.product-card:hover::before { opacity: 1; }

/* Image */
.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--surf-2);
  flex-shrink: 0;
}
.product-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; inset-inline-start: 0;
  width: 100%; height: 40%;
  background: linear-gradient(to top, rgba(0,0,0,.06) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition:
    transform var(--t3) var(--ease),
    filter   var(--t3) var(--ease);
}
.product-card:hover .product-img-wrap img {
  transform: scale(1.09);
  filter: brightness(1.04) contrast(1.02);
}

/* Quick badge */
.product-badge {
  position: absolute;
  top: 10px; inset-inline-start: 10px;
  z-index: 3;
  background: var(--red-core);
  color: #fff;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: var(--r-full);
  box-shadow: var(--shadow-red);
  display: none;
}
.product-badge.visible { display: block; }

/* Body */
.product-body {
  padding: 13px 15px 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
  z-index: 2;
}

.product-title {
  font-size: clamp(12px, 2vw, 13.5px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.55;
  text-align: right;
  margin-bottom: var(--sp-3);
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-3);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--border-lightest);
}

.product-price {
  font-size: clamp(11px, 2vw, 13px);
  font-weight: 800;
  color: var(--red-core);
  letter-spacing: -.1px;
}
.product-price-inquiry {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.product-price-inquiry::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--text-muted);
  flex-shrink: 0; opacity: .55;
}

/* ── DUAL ACTION BUTTONS ── */
.product-actions {
  display: flex;
  gap: 7px;
  flex-direction: column;
}

/* Details button */
.btn-details {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px 12px;
  border: 1.5px solid var(--border-medium);
  color: var(--text-secondary);
  border-radius: var(--r-sm);
  font-family: var(--font);
  font-size: 11.5px;
  font-weight: 700;
  background: var(--surf-2);
  white-space: nowrap;
  letter-spacing: .01em;
  text-transform: uppercase;
  flex: 1;
  transition:
    background    var(--t1) var(--ease),
    color         var(--t1) var(--ease),
    border-color  var(--t1) var(--ease),
    box-shadow    var(--t1) var(--ease);
}
.btn-details:hover {
  background: var(--ink-800);
  color: #fff;
  border-color: var(--ink-800);
  box-shadow: var(--shadow-md);
}

/* Add to cart button */
.btn-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 12px;
  border: none;
  color: #fff;
  border-radius: var(--r-sm);
  font-family: var(--font);
  font-size: 11.5px;
  font-weight: 800;
  background: linear-gradient(
    135deg,
    var(--red-core) 0%,
    var(--red-600)  100%
  );
  white-space: nowrap;
  letter-spacing: .01em;
  text-transform: uppercase;
  flex: 1;
  box-shadow: var(--shadow-red);
  position: relative;
  overflow: hidden;
  transition:
    transform  var(--t1) var(--ease-spring),
    box-shadow var(--t1) var(--ease);
}
.btn-cart::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.18) 0%, transparent 55%);
}
.btn-cart:hover {
  transform: scale(1.03) translateY(-1px);
  box-shadow: var(--shadow-red-lg);
}
.btn-cart:active { transform: scale(.98); }
.btn-cart .bi { font-size: 14px; }

@media (max-width: 399px) {
  .col-xxs-12 { flex: 0 0 100%; max-width: 100%; }
}

/* Slider responsive */
@media (max-width: 1199.98px) {
  .products-slider .product-slide { flex: 0 0 calc(33.33% - 11px); }
}
@media (max-width: 767.98px) {
  .products-slider .product-slide {
    flex: 0 0 calc(50% - 8px);
    min-width: 0;
  }
  .slider-btn--prev { inset-inline-end: -14px; width: 38px; height: 38px; font-size: 15px; }
  .slider-btn--next { inset-inline-start: -14px; width: 38px; height: 38px; font-size: 15px; }
}
@media (max-width: 479px) {
  .products-slider .product-slide { flex: 0 0 calc(100% - 4px); }
}

/* ═══════════════════════════════════════════════════════════
   QR SECTION
═══════════════════════════════════════════════════════════ */
.qr-section {
  padding: clamp(40px, 7vw, 64px) 0;
  background: var(--surf-1);
  position: relative;
  overflow: hidden;
}
.qr-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 60% at 50% 50%,
    rgba(244,115,15,.04) 0%, transparent 70%
  );
  pointer-events: none;
}

.qr-card {
  background: var(--white);
  border-radius: var(--r-2xl);
  border: 1px solid var(--border-light);
  padding: clamp(28px, 5vw, 52px) clamp(20px, 4vw, 44px);
  text-align: center;
  box-shadow: var(--shadow-xl),
    inset 0 1px 0 rgba(255,255,255,.9);
  position: relative;
  overflow: hidden;
}
.qr-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 72px; height: 3px;
  background: linear-gradient(90deg, transparent, var(--red-core), var(--red-400), var(--red-core), transparent);
  border-radius: 0 0 var(--r-full) var(--r-full);
  box-shadow: 0 0 14px var(--red-glow);
}
.qr-card::after {
  content: '';
  position: absolute;
  inset-inline-end: -80px; bottom: -80px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,115,15,.05) 0%, transparent 70%);
  pointer-events: none;
}

.qr-title {
  font-size: clamp(16px, 3vw, 22px);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: clamp(20px, 3vw, 28px);
  line-height: 1.5;
  letter-spacing: -.25px;
  overflow-wrap: break-word;
}

.qr-image-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--surf-2);
  border-radius: var(--r-lg);
  padding: 14px 22px;
  box-shadow: var(--shadow-md);
  margin-bottom: var(--sp-5);
  border: 1px solid var(--border-light);
  flex-wrap: wrap;
}
.qr-image-wrap img { width: 72px; height: 72px; object-fit: contain; border-radius: var(--r-sm); }
.qr-label { font-size: 13px; font-weight: 700; color: var(--text-secondary); }

.qr-description {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.9;
  margin: 0 auto;
  max-width: 440px;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════════════════════════ */
.about-section {
  padding: clamp(44px, 7vw, 80px) 0;
  background: var(--surf-2);
  position: relative;
}
.about-section::before {
  content: '';
  position: absolute;
  top: 0; inset-inline-start: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-medium), transparent);
}

.section-heading-center {
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: 900;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: clamp(24px, 4vw, 40px);
  letter-spacing: -.35px;
}
.section-heading-center::after {
  content: '';
  display: block;
  width: 52px; height: 3px;
  background: linear-gradient(90deg, var(--red-core), var(--red-400));
  border-radius: var(--r-full);
  margin: 11px auto 0;
  box-shadow: 0 0 14px var(--red-glow);
}

.about-card {
  background: var(--white);
  border-radius: var(--r-2xl);
  border: 1px solid var(--border-light);
  padding: clamp(28px, 5vw, 48px) clamp(22px, 4vw, 44px);
  box-shadow: var(--shadow-lg),
    inset 0 1px 0 rgba(255,255,255,.9);
  position: relative;
  overflow: hidden;
}
.about-card::before {
  content: '';
  position: absolute;
  top: 0; inset-inline-start: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--red-600), transparent);
  opacity: .45;
}

.about-text {
  font-size: clamp(13.5px, 2vw, 15px);
  color: var(--text-secondary);
  line-height: 2.0;
  text-align: center;
  margin-bottom: var(--sp-5);
  overflow-wrap: break-word;
}
.about-text-secondary {
  font-size: clamp(13px, 2vw, 14.5px);
  color: var(--text-muted);
  line-height: 2.0;
  text-align: center;
  margin: 0;
  overflow-wrap: break-word;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT SECTION
═══════════════════════════════════════════════════════════ */
.contact-section {
  padding: clamp(44px, 7vw, 80px) 0;
  background: var(--surf-1);
}

.contact-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: clamp(24px, 3.5vw, 36px) clamp(18px, 3vw, 28px);
  text-align: center;
  border: 1px solid var(--border-light);
  height: 100%;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  will-change: transform;
  transition:
    transform    var(--t2) var(--ease-spring),
    box-shadow   var(--t2) var(--ease),
    border-color var(--t2) var(--ease);
}
.contact-card::before {
  content: '';
  position: absolute;
  bottom: 0; inset-inline-start: 0;
  width: 100%; height: 2.5px;
  background: linear-gradient(90deg, transparent, var(--red-core), transparent);
  opacity: 0;
  transition: opacity var(--t2) var(--ease);
}
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--border-red-soft);
}
.contact-card:hover::before { opacity: 1; }

.contact-icon {
  width: 54px; height: 54px;
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-4);
  background: linear-gradient(
    135deg, var(--red-core) 0%, var(--red-700) 100%
  );
  box-shadow: var(--shadow-red);
  transition:
    box-shadow var(--t2) var(--ease),
    transform  var(--t2) var(--ease-spring);
}
.contact-card:hover .contact-icon {
  box-shadow: 0 0 30px var(--red-glow), 0 0 60px rgba(244,115,15,.14);
  transform: scale(1.10);
}
.contact-icon .bi { font-size: 22px; color: #fff; }

.contact-card-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: -.1px;
}
.contact-card-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.85;
  margin: 0;
}
.contact-card-text a {
  color: var(--text-muted);
  transition: color var(--t1) var(--ease);
}
.contact-card-text a:hover { color: var(--red-core); }

.contact-hours-wrap {
  display: flex;
  justify-content: center;
  margin-top: var(--sp-4);
}
.contact-hours-card { max-width: 260px; width: 100%; }

.icon-purple {
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%) !important;
  box-shadow: 0 8px 28px rgba(124,58,237,.30) !important;
}
.contact-card:hover .icon-purple {
  box-shadow: 0 0 36px rgba(168,85,247,.40), 0 0 70px rgba(124,58,237,.18) !important;
}

/* ═══════════════════════════════════════════════════════════
   SOCIAL SECTION
═══════════════════════════════════════════════════════════ */
.social-section {
  padding: clamp(36px, 6vw, 60px) 0;
  background: var(--surf-2);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.social-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2vw, 16px);
  flex-wrap: wrap;
}

.btn-social {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px clamp(18px, 3vw, 28px);
  border-radius: var(--r-lg);
  font-family: var(--font);
  font-size: 13.5px;
  font-weight: 700;
  border: 1.5px solid var(--border-medium);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  color: var(--text-secondary);
  letter-spacing: .02em;
  transition:
    transform    var(--t2) var(--ease-spring),
    box-shadow   var(--t2) var(--ease),
    background   var(--t2) var(--ease),
    color        var(--t2) var(--ease),
    border-color var(--t2) var(--ease);
}

.btn-whatsapp:hover {
  color: #fff; border-color: #16a34a; background: #16a34a;
  box-shadow: 0 12px 36px rgba(22,163,74,.38);
  transform: translateY(-4px);
}
.btn-telegram:hover {
  color: #fff; border-color: #0284c7; background: #0284c7;
  box-shadow: 0 12px 36px rgba(2,132,199,.38);
  transform: translateY(-4px);
}
.btn-instagram:hover {
  color: #fff; border-color: transparent;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  box-shadow: 0 12px 36px rgba(219,39,119,.38);
  transform: translateY(-4px);
}

@media (max-width: 575.98px) {
  .social-section { padding: 28px 0 36px; }
  .btn-social { font-size: 13px; padding: 11px 18px; }
}

/* ═══════════════════════════════════════════════════════════
   FOOTER LINKS
═══════════════════════════════════════════════════════════ */
.footer-links-section {
  background: var(--ink-900);
  padding: clamp(48px, 7vw, 72px) 0 clamp(36px, 5vw, 56px);
  position: relative;
}
.footer-links-section::before {
  content: '';
  position: absolute;
  top: 0; inset-inline-start: 0;
  width: 100%; height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%, var(--red-core) 30%,
    var(--red-400) 50%, var(--red-core) 70%, transparent 100%
  );
  opacity: .7;
}

.footer-col-title {
  font-size: 13.5px;
  font-weight: 800;
  color: rgba(255,255,255,.90);
  margin-bottom: var(--sp-5);
  padding-bottom: 11px;
  position: relative;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0; inset-inline-end: 0;
  width: 28px; height: 2px;
  background: linear-gradient(90deg, var(--red-core), var(--red-400));
  border-radius: var(--r-full);
  box-shadow: 0 0 8px var(--red-glow);
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 13.5px;
  color: rgba(255,255,255,.42);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  transition:
    color              var(--t1) var(--ease),
    padding-inline-end var(--t1) var(--ease);
}
.footer-links a::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--red-400);
  flex-shrink: 0;
  opacity: 0;
  transition: opacity var(--t1) var(--ease), transform var(--t1) var(--ease-spring);
}
.footer-links a:hover {
  color: rgba(255,255,255,.82);
  padding-inline-end: 4px;
}
.footer-links a:hover::before { opacity: 1; transform: scale(1.4); }

@media (max-width: 575.98px) {
  .footer-links-section { padding: 36px 0 28px; }
}

/* ═══════════════════════════════════════════════════════════
   FOOTER BOTTOM
═══════════════════════════════════════════════════════════ */
.footer-bottom {
  background: var(--ink-950);
  border-top: 1px solid rgba(255,255,255,.05);
  padding: clamp(22px, 4vw, 32px) 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 3vw, 24px);
  flex-wrap: wrap;
}

.enamad-badge { display: flex; flex-direction: column; align-items: center; gap: 6px; flex-shrink: 0; }

.enamad-icon-wrap {
  width: 68px; height: 68px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.04);
  border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,.08);
  cursor: pointer;
  transition: background var(--t2) var(--ease), border-color var(--t2) var(--ease);
}
.enamad-icon-wrap:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(244,115,15,.30);
}
.enamad-icon-text { font-size: 8px; color: rgba(255,255,255,.35); font-weight: 700; letter-spacing: .8px; margin-top: 3px; }
.enamad-stars { display: flex; gap: 2px; }
.enamad-stars .bi-star-fill { font-size: 11px; color: #f59e0b; }
.enamad-label { font-size: 10px; color: rgba(255,255,255,.30); }

.footer-site-desc {
  font-size: 12.5px;
  color: rgba(255,255,255,.36);
  text-align: center;
  line-height: 1.85;
  flex: 1;
  min-width: 180px;
}

@media (max-width: 767.98px) {
  .footer-bottom-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer-site-desc { text-align: center; min-width: 0; }
}

/* ═══════════════════════════════════════════════════════════
   COPYRIGHT
═══════════════════════════════════════════════════════════ */
.footer-copy {
  background: #000;
  padding: 12px 0;
  text-align: center;
}
.footer-copy p { font-size: 11.5px; color: rgba(255,255,255,.20); margin: 0; letter-spacing: .02em; }

/* ═══════════════════════════════════════════════════════════
   SCROLL TO TOP
═══════════════════════════════════════════════════════════ */
.scroll-top-btn {
  position: fixed;
  bottom: 88px;
  inset-inline-start: 20px;
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--red-core) 0%, var(--red-700) 100%);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  box-shadow: var(--shadow-red);
  opacity: 0;
  pointer-events: none;
  z-index: 980;
  transition: opacity var(--t2) var(--ease), transform var(--t2) var(--ease-spring), box-shadow var(--t2) var(--ease);
}
.scroll-top-btn.visible { opacity: 1; pointer-events: auto; }
.scroll-top-btn:hover {
  transform: translateY(-4px) scale(1.10);
  box-shadow: 0 0 36px var(--red-glow), 0 0 70px rgba(244,115,15,.15);
}

@media (max-width: 767.98px) {
  .scroll-top-btn { bottom: calc(var(--mobile-nav-h) + 14px); inset-inline-start: 14px; width: 42px; height: 42px; font-size: 16px; }
}
@media (min-width: 768px) {
  .scroll-top-btn { bottom: 24px; }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE BOTTOM NAVIGATION BAR
═══════════════════════════════════════════════════════════ */
.mobile-nav {
  display: none;
  position: fixed;
  bottom: 0; inset-inline-start: 0;
  width: 100%;
  height: var(--mobile-nav-h);
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -4px 24px rgba(0,0,0,.10), 0 -1px 0 rgba(0,0,0,.06);
  z-index: 1055;
  padding: 0 4px;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.mobile-nav::before {
  content: '';
  position: absolute;
  top: 0; inset-inline-start: 0;
  width: 100%; height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%, var(--red-core) 25%,
    var(--red-400) 50%, var(--red-core) 75%, transparent 100%
  );
  opacity: .65;
}

@media (max-width: 767.98px) {
  .mobile-nav { display: flex; }
}

.mobile-nav-inner {
  display: flex;
  align-items: stretch;
  width: 100%;
  height: 100%;
}

.mobile-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 4px 6px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .01em;
  cursor: pointer;
  position: relative;
  border-radius: var(--r-md);
  transition:
    color      var(--t1) var(--ease),
    background var(--t1) var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.mobile-nav-item:active {
  background: rgba(244,115,15,.06);
  transform: scale(.96);
}

.mobile-nav-icon {
  font-size: 21px;
  line-height: 1;
  position: relative;
  transition: transform var(--t2) var(--ease-spring);
}

.mobile-nav-item:active .mobile-nav-icon {
  transform: scale(.88);
}

.mobile-nav-item.active {
  color: var(--red-core);
}
.mobile-nav-item.active .mobile-nav-icon {
  transform: scale(1.08);
}

/* Active indicator dot */
.mobile-nav-item.active::after {
  content: '';
  position: absolute;
  top: 6px;
  width: 28px; height: 3px;
  background: var(--red-core);
  border-radius: 0 0 var(--r-full) var(--r-full);
  box-shadow: 0 0 8px var(--red-glow);
  top: 0;
}

/* Center CTA nav item */
.mobile-nav-item--cta {
  flex: 0 0 68px;
}
.mobile-nav-item--cta .mobile-nav-icon-wrap {
  width: 48px; height: 48px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--red-core) 0%, var(--red-700) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-red), inset 0 1px 0 rgba(255,255,255,.18);
  transition:
    transform  var(--t2) var(--ease-spring),
    box-shadow var(--t2) var(--ease);
  margin-bottom: 2px;
}
.mobile-nav-item--cta:active .mobile-nav-icon-wrap {
  transform: scale(.90);
  box-shadow: var(--shadow-red-lg);
}
.mobile-nav-item--cta .mobile-nav-icon {
  font-size: 22px;
  color: #fff;
}
.mobile-nav-item--cta .mobile-nav-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--red-core);
}
.mobile-nav-item--cta::after { display: none; }

/* ═══════════════════════════════════════════════════════════
   REVEAL ANIMATION
═══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity   .62s var(--ease-out),
    transform .62s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════════════════════
   NO-HOVER DEVICES
═══════════════════════════════════════════════════════════ */
@media (hover: none) {
  .product-card:hover { transform: none; }
  .brand-card:hover   { transform: none; }
  .contact-card:hover { transform: none; }
  .btn-social:hover   { transform: none; }
  .scroll-top-btn:hover { transform: none; }
}
/* ═══════════════════════════════════════════════════════════
   MOBILE HEADER REDESIGN - FIX #1
═══════════════════════════════════════════════════════════ */

/* ── Logo Styles ── */
.header-logo {
  display: none; /* Hidden on desktop */
  text-decoration: none;
  flex-shrink: 0;
}

.logo-box {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  background: linear-gradient(135deg, var(--red-core) 0%, var(--red-700) 100%);
  border-radius: var(--r-md);
  box-shadow: 0 4px 14px rgba(244,115,15,.35);
  transition: transform var(--t2) var(--ease-spring);
}

.logo-box:active {
  transform: scale(.96);
}

.logo-box .bi-car-front-fill {
  font-size: 18px;
  color: #fff;
}

.logo-text {
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  letter-spacing: .3px;
  white-space: nowrap;
}

/* ── Header Actions Group (Auth + Cart) ── */
.header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

/* ── Cart Icon Redesign ── */
.header-cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  background: var(--surf-2);
  border: 1.5px solid var(--border-medium);
  color: var(--text-primary);
  transition:
    background var(--t1) var(--ease),
    border-color var(--t1) var(--ease),
    transform var(--t1) var(--ease-spring);
}

.header-cart:active {
  transform: scale(.94);
}

.header-cart .bi-cart3 {
  font-size: 18px;
}

.cart-badge {
  position: absolute;
  top: -4px;
  left: -4px;
  min-width: 17px;
  height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red-core);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  border-radius: var(--r-full);
  padding: 0 4px;
  box-shadow: 0 2px 8px rgba(244,115,15,.45);
  border: 1.5px solid var(--white);
}

/* ── Mobile Header Layout (≤575px) ── */
@media (max-width: 575.98px) {
  .header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
      "logo search actions"
      "search-full search-full search-full";
    gap: 10px;
    padding: 10px 14px;
  }

  .header-logo {
    display: block;
    grid-area: logo;
  }

  .header-search {
    grid-area: search-full;
    order: 3;
  }

  .header-actions {
    grid-area: actions;
  }

  .header-auth {
    font-size: 11px;
    padding: 7px 10px;
    border-radius: var(--r-sm);
  }

  .header-auth span {
    display: inline;
  }

  .header-cart {
    width: 38px;
    height: 38px;
  }

  /* Remove old shop button on mobile */
  .header-shop {
    display: none;
  }
}

/* ── Tablet/Desktop - Keep original layout ── */
@media (min-width: 576px) {
  .header-logo {
    display: none;
  }

  .header-cart {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }
}

/* ═══════════════════════════════════════════════════════════
   CATEGORY DROPDOWN - FIX #4 & #5
═══════════════════════════════════════════════════════════ */

.category-bar {
  position: relative;
}

.category-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  padding: 8px 16px;
  border-radius: var(--r-md);
  border: 1.5px solid var(--border-medium);
  background: var(--white);
  font-family: var(--font);
  letter-spacing: .02em;
  transition:
    background var(--t1) var(--ease),
    border-color var(--t1) var(--ease),
    color var(--t1) var(--ease);
  cursor: pointer;
}

.category-toggle:hover {
  background: var(--red-50);
  border-color: var(--border-red);
  color: var(--red-core);
}

.category-toggle .bi-grid-3x3-gap-fill {
  font-size: 16px;
}

.toggle-arrow {
  font-size: 12px;
  transition: transform var(--t2) var(--ease);
}

.category-toggle[aria-expanded="true"] .toggle-arrow {
  transform: rotate(180deg);
}

/* ── Dropdown Menu ── */
.category-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  max-width: 920px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-2xl);
  margin-top: 8px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-12px);
  transition:
    max-height var(--t3) var(--ease),
    opacity var(--t2) var(--ease),
    transform var(--t2) var(--ease);
  z-index: 1050;
}

.category-dropdown.active {
  max-height: 600px;
  opacity: 1;
  transform: translateY(0);
}

.category-dropdown-inner {
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  max-height: 540px;
  overflow-y: auto;
}

/* ── Category Group ── */
.category-group {
  background: var(--surf-2);
  border-radius: var(--r-md);
  padding: 12px 14px;
  border: 1px solid var(--border-lightest);
  transition:
    background var(--t1) var(--ease),
    border-color var(--t1) var(--ease),
    box-shadow var(--t1) var(--ease);
}

.category-group:hover {
  background: var(--white);
  border-color: var(--border-red-soft);
  box-shadow: var(--shadow-sm);
}

.category-parent {
  font-size: 12px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1.5px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 7px;
  letter-spacing: .01em;
}

.category-parent .bi {
  font-size: 14px;
  color: var(--red-core);
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list li {
  margin-bottom: 6px;
}

.category-list a {
  font-size: 11.5px;
  color: var(--text-muted);
  font-weight: 500;
  display: block;
  padding: 5px 8px;
  border-radius: var(--r-sm);
  transition:
    background var(--t1) var(--ease),
    color var(--t1) var(--ease),
    padding-right var(--t1) var(--ease);
}

.category-list a:hover {
  background: var(--red-50);
  color: var(--red-core);
  padding-right: 12px;
}

/* ── Mobile Category Dropdown ── */
@media (max-width: 767.98px) {
  .category-dropdown {
    position: fixed;
    top: auto;
    bottom: var(--mobile-nav-h);
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    border-radius: var(--r-lg) var(--r-lg) 0 0;
    margin: 0;
    max-height: 0;
  }

  .category-dropdown.active {
    max-height: 70vh;
  }

  .category-dropdown-inner {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px;
    max-height: calc(70vh - 32px);
  }

  .category-group {
    padding: 10px 12px;
  }

  .category-parent {
    font-size: 11.5px;
    margin-bottom: 8px;
    padding-bottom: 7px;
  }

  .category-list a {
    font-size: 11px;
    padding: 4px 7px;
  }
}

/* ═══════════════════════════════════════════════════════════
   CONTACT SECTION REDESIGN - FIX #2 (MINIMAL)
═══════════════════════════════════════════════════════════ */

.contact-section {
  padding: clamp(36px, 6vw, 56px) 0;
  background: var(--surf-2);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}

/* ── Contact Item (Minimal Card) ── */
.contact-item {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 18px 16px;
  text-align: center;
  transition:
    transform var(--t2) var(--ease-spring),
    box-shadow var(--t2) var(--ease),
    border-color var(--t2) var(--ease);
  position: relative;
  overflow: hidden;
}

.contact-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red-core), transparent);
  opacity: 0;
  transition: opacity var(--t2) var(--ease);
}

.contact-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-red-soft);
}

.contact-item:hover::before {
  opacity: 1;
}

/* ── Icon (Smaller & Elegant) ── */
.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  transition: transform var(--t2) var(--ease-spring);
}

.contact-item:hover .contact-item-icon {
  transform: scale(1.08);
}

.contact-icon-phone {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 6px 20px rgba(16,185,129,.30);
}

.contact-icon-email {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  box-shadow: 0 6px 20px rgba(59,130,246,.30);
}

.contact-icon-location {
  background: linear-gradient(135deg, var(--red-core) 0%, var(--red-700) 100%);
  box-shadow: 0 6px 20px rgba(244,115,15,.30);
}

.contact-icon-hours {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  box-shadow: 0 6px 20px rgba(139,92,246,.30);
}

.contact-item-icon .bi {
  font-size: 20px;
  color: #fff;
}

/* ── Typography ── */
.contact-item-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: -.05px;
}

.contact-item-link {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--red-core);
  margin-bottom: 4px;
  transition: color var(--t1) var(--ease);
  direction: ltr;
  text-align: center;
}

.contact-item-link:hover {
  color: var(--red-700);
}

.contact-item-link-sm {
  font-size: 11px;
  color: var(--text-muted);
}

.contact-item-note,
.contact-item-text {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ── Mobile Adjustments ── */
@media (max-width: 575.98px) {
  .contact-section {
    padding: 32px 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-item {
    padding: 16px 14px;
  }

  .contact-item-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }

  .contact-item-icon .bi {
    font-size: 18px;
  }

  .contact-item-title {
    font-size: 12px;
  }

  .contact-item-link {
    font-size: 12px;
  }
}

/* Remove old contact card styles if exist */
.contact-card,
.contact-hours-wrap,
.contact-hours-card {
  display: none !important;
}

/* Django dynamic integration additions */
.header-user-menu { position: relative; flex-shrink: 0; }
.header-user-toggle { border: 1px solid var(--border-light); }
.user-toggle-arrow { font-size: 10px; opacity: .55; transition: transform var(--t2) var(--ease); }
.header-user-menu.open .user-toggle-arrow { transform: rotate(180deg); }
.header-user-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  inset-inline-end: 0;
  min-width: 180px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-xl);
  padding: 8px;
  z-index: 1080;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity var(--t2) var(--ease), transform var(--t2) var(--ease);
}
.header-user-menu.open .header-user-dropdown { opacity: 1; transform: translateY(0); pointer-events: auto; }
.header-user-dropdown a {
  display: block;
  padding: 9px 10px;
  border-radius: var(--r-sm);
  color: var(--text-secondary);
  font-size: 12.5px;
  font-weight: 600;
}
.header-user-dropdown a:hover { background: var(--red-50); color: var(--red-core); }
.header-user-dropdown a.danger { color: var(--red-core); }
.search-suggestions {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  inset-inline: 0;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  z-index: 1085;
}
.search-suggestions.active { display: block; }
.search-suggestions a,
.search-suggestions .empty {
  display: block;
  padding: 10px 14px;
  font-size: 12.5px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-lightest);
}
.search-suggestions a:hover { background: var(--red-50); color: var(--red-core); }
.search-suggestions a:last-child { border-bottom: 0; }
.category-parent { text-decoration: none; }
.header-cart { text-decoration: none; }
.mobile-nav-item { text-decoration: none; }
.brand-logo-img { width: 58px; height: 36px; object-fit: contain; }
.brand-card { text-decoration: none; }
.hero-cta-btn { text-decoration: none; }
.btn-details { text-decoration: none; }
.footer-links-section { margin-top: 0; }
.enamad-badge { text-decoration: none; }
.enamad-icon-wrap img { max-width: 62px; max-height: 62px; object-fit: contain; }
@media (min-width: 576px) { .header-cart { display: flex; } }
@media (max-width: 575.98px) {
  .header-shop { display: none; }
  .header-auth span { max-width: 72px; overflow: hidden; text-overflow: ellipsis; }
}
