/* ===========================
   Hero Car Showcase Slider
   =========================== */
.hero-showcase {
  position: relative;
  height: calc(100vh - var(--header-height));
  min-height: 560px;
  max-height: 820px;
  overflow: hidden;
  background: #1a3a5c;
  transition: background 0.8s ease;
}

/* Animated gradient overlay */
.hero-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, transparent 50%, rgba(16,167,240,0.08) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Bottom gradient for dots area */
.hero-showcase::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-showcase__slider {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Individual slide */
.hero-showcase__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

.hero-showcase__slide.active {
  opacity: 1;
  pointer-events: all;
  z-index: 2;
}

.hero-showcase__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(16, 167, 240, 0.15) 0%, transparent 60%);
}

/* Inner layout: info left, car right */
.hero-showcase__inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  height: 100%;
  gap: 40px;
}

/* Info side */
.hero-showcase__info {
  flex: 1;
  min-width: 0;
  padding: 40px 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s 0.3s, transform 0.6s 0.3s;
}

.hero-showcase__slide.active .hero-showcase__info {
  opacity: 1;
  transform: translateY(0);
}

/* Brand badge — pill style */
.hero-showcase__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding: 8px 18px 8px 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 40px;
  backdrop-filter: blur(12px);
}

.hero-showcase__brand-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  padding: 6px;
}

.hero-showcase__brand-label {
  display: block;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.hero-showcase__brand-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
}

/* Large watermark title */
.hero-showcase__title {
  font-family: var(--font-heading);
  font-size: 80px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.06);
  text-transform: uppercase;
  line-height: 0.85;
  margin-bottom: 8px;
  letter-spacing: -3px;
  user-select: none;
}

/* Price */
.hero-showcase__price {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 28px;
}

.hero-showcase__price strong {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}

/* Specs grid — modern glassmorphism cards */
.hero-showcase__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
  max-width: 440px;
}

.hero-showcase__spec {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  backdrop-filter: blur(16px);
  transition: background 0.3s, border-color 0.3s;
}

.hero-showcase__spec:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(16, 167, 240, 0.3);
}

.hero-showcase__spec-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(16, 167, 240, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-showcase__spec-icon i {
  font-size: 16px;
  color: var(--color-orange);
}

/* Legacy: if i is directly in __spec (without __spec-icon wrapper) */
.hero-showcase__spec > i {
  font-size: 20px;
  color: var(--color-orange);
  margin-top: 2px;
  flex-shrink: 0;
}

.hero-showcase__spec-label {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-showcase__spec strong {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

/* Buttons */
.hero-showcase__buttons {
  display: flex;
  gap: 14px;
}

/* Car image side */
.hero-showcase__car {
  flex: 0 0 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(60px) scale(0.95);
  transition: opacity 0.7s 0.2s, transform 0.7s 0.2s;
}

.hero-showcase__slide.active .hero-showcase__car {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.hero-showcase__car img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
  transition: filter 0.4s;
}

.hero-showcase__car:hover img {
  filter: drop-shadow(0 24px 70px rgba(0, 0, 0, 0.6));
}

/* Navigation arrows */
.hero-showcase__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}

.hero-showcase__nav:hover {
  background: var(--color-orange);
  border-color: var(--color-orange);
  transform: translateY(-50%) scale(1.1);
}

.hero-showcase__nav--prev { left: 24px; }
.hero-showcase__nav--next { right: 24px; }

/* ---- Progress dots — modern pill-bar style ---- */
.hero-showcase__dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.3);
  padding: 6px 10px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.hero-showcase__dot {
  width: 24px;
  height: 4px;
  border-radius: 2px;
  border: none;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.4s;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero-showcase__dot.active {
  width: 40px;
  background: rgba(255, 255, 255, 0.2);
}

/* Animated fill for active dot */
.hero-showcase__dot.active::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: var(--color-orange);
  border-radius: 2px;
  animation: dotProgress 7s linear forwards;
}

@keyframes dotProgress {
  0% { width: 0%; }
  100% { width: 100%; }
}

.hero-showcase__dot:hover {
  background: rgba(255, 255, 255, 0.4);
}

/* Counter (1 / 5) */
.hero-showcase__counter {
  position: absolute;
  bottom: 28px;
  right: 24px;
  z-index: 10;
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-family: var(--font-heading);
  font-weight: 600;
}

.hero-showcase__counter-current {
  font-size: 24px;
  color: #fff;
  font-weight: 800;
}

.hero-showcase__counter-total {
  font-size: 14px;
}

/* Swipe hint (mobile) */
.hero-showcase__swipe-hint {
  display: none;
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 500;
  gap: 6px;
  align-items: center;
  animation: swipeHint 2s ease-in-out infinite;
}

.hero-showcase__swipe-hint i {
  font-size: 16px;
  animation: swipeArrow 2s ease-in-out infinite;
}

@keyframes swipeHint {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

@keyframes swipeArrow {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}

/* ===========================
   News Carousel
   =========================== */
.news-carousel {
  padding: 70px 0 80px;
  background: var(--color-light-gray);
  overflow: hidden;
}

.news-carousel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.news-carousel__header .section-title {
  margin-bottom: 0;
}

.news-carousel__nav {
  display: flex;
  gap: 8px;
}

.news-carousel__nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--color-text);
  font-size: 14px;
}

.news-carousel__nav-btn:hover {
  border-color: var(--color-orange);
  color: var(--color-orange);
}

.news-carousel__track-wrap {
  clip-path: inset(-30px -100vw -60px -20px);
  margin-right: calc(-1 * (100vw - 100%) / 2 - 24px);
  padding: 30px 0 60px 20px;
  user-select: none;
  cursor: grab;
}

.news-carousel__track-wrap:active {
  cursor: grabbing;
}

.news-carousel__track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
  will-change: transform;
}

/* News Card */
.news-carousel__card {
  flex: 0 0 calc((100% - 72px) / 4);
  min-width: 260px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  text-decoration: none;
  color: var(--color-text);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* Bumble hover effect */
.news-carousel__card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 24px 56px rgba(16, 167, 240, 0.18), 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: var(--color-orange);
}

.news-carousel__card:active {
  transform: translateY(-4px) scale(1.01);
}

.news-carousel__card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.news-carousel__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-carousel__card:hover .news-carousel__card-image img {
  transform: scale(1.08);
}

.news-carousel__card-body {
  padding: 16px 20px 20px;
}

.news-carousel__card-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text);
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s;
}

.news-carousel__card:hover .news-carousel__card-title {
  color: var(--color-orange);
}

.news-carousel__card-date {
  font-size: 13px;
  color: var(--color-text-muted);
}

.news-carousel__footer {
  text-align: center;
  margin-top: 36px;
}

/* ===========================
   Hero Showcase Responsive
   =========================== */
@media (max-width: 1199px) {
  .hero-showcase__car {
    flex: 0 0 400px;
  }

  .hero-showcase__title {
    font-size: 60px;
  }

  .hero-showcase__price strong {
    font-size: 26px;
  }
}

@media (max-width: 991px) {
  .hero-showcase {
    min-height: auto;
    max-height: none;
    height: auto;
  }

  .hero-showcase__slider {
    height: auto;
  }

  /* Active slide becomes relative so it creates height for the container */
  .hero-showcase__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }

  .hero-showcase__slide.active {
    position: relative;
  }

  .hero-showcase__inner {
    flex-direction: column;
    padding: 32px 0 90px;
    text-align: center;
    gap: 20px;
    height: auto;
  }

  /* Break __info so its children join __inner flex and can be reordered */
  .hero-showcase__info {
    padding: 0;
    display: contents;
  }

  /* Re-apply entrance animation to children since display:contents removes __info box */
  .hero-showcase__brand,
  .hero-showcase__title,
  .hero-showcase__price,
  .hero-showcase__specs,
  .hero-showcase__buttons {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s 0.3s, transform 0.6s 0.3s;
  }

  .hero-showcase__slide.active .hero-showcase__brand,
  .hero-showcase__slide.active .hero-showcase__title,
  .hero-showcase__slide.active .hero-showcase__price,
  .hero-showcase__slide.active .hero-showcase__specs,
  .hero-showcase__slide.active .hero-showcase__buttons {
    opacity: 1;
    transform: translateY(0);
  }

  /* Order: brand → car photo → title → price → specs → buttons */
  .hero-showcase__brand {
    margin-left: auto;
    margin-right: auto;
    order: 1;
  }

  .hero-showcase__car {
    flex: 0 0 auto;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    order: 2;
  }

  .hero-showcase__car img {
    max-height: 280px;
  }

  .hero-showcase__title {
    font-size: 48px;
    order: 3;
  }

  .hero-showcase__price {
    order: 4;
  }

  .hero-showcase__specs {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    order: 5;
  }

  .hero-showcase__buttons {
    justify-content: center;
    order: 6;
  }

  .hero-showcase__nav {
    width: 42px;
    height: 42px;
    font-size: 14px;
  }

  .hero-showcase__nav--prev { left: 12px; }
  .hero-showcase__nav--next { right: 12px; }

  .hero-showcase__counter {
    right: 16px;
    bottom: 24px;
  }

  .hero-showcase__swipe-hint {
    display: flex;
  }

  .news-carousel__card {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: 240px;
  }
}

@media (max-width: 767px) {
  .hero-showcase__inner {
    padding: 24px 0 90px;
    gap: 16px;
  }

  .hero-showcase__brand-logo {
    width: 32px;
    height: 32px;
    padding: 4px;
  }

  .hero-showcase__brand {
    padding: 6px 14px 6px 6px;
    gap: 10px;
  }

  .hero-showcase__brand-name {
    font-size: 13px;
  }

  .hero-showcase__brand-label {
    font-size: 9px;
  }

  .hero-showcase__title {
    font-size: 36px;
    letter-spacing: -1px;
  }

  .hero-showcase__price {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .hero-showcase__price strong {
    font-size: 22px;
  }

  .hero-showcase__specs {
    gap: 8px;
  }

  .hero-showcase__spec {
    padding: 10px 12px;
    border-radius: 10px;
  }

  .hero-showcase__spec-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }

  .hero-showcase__spec-icon i {
    font-size: 13px;
  }

  .hero-showcase__spec > i {
    font-size: 16px;
  }

  .hero-showcase__spec strong {
    font-size: 12px;
  }

  .hero-showcase__spec-label {
    font-size: 9px;
  }

  .hero-showcase__car img {
    max-height: 200px;
  }

  .hero-showcase__nav {
    display: none;
  }

  .hero-showcase__dots {
    bottom: 20px;
    padding: 5px 8px;
  }

  .hero-showcase__counter {
    bottom: 20px;
    right: 16px;
    font-size: 12px;
  }

  .hero-showcase__counter-current {
    font-size: 18px;
  }

  .news-carousel {
    padding: 48px 0 56px;
  }

  .news-carousel__card {
    flex: 0 0 calc((100% - 24px) / 2);
    min-width: 220px;
  }
}

@media (max-width: 480px) {
  .hero-showcase__inner {
    padding: 16px 0 80px;
  }

  .hero-showcase__title {
    font-size: 28px;
  }

  .hero-showcase__price {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .hero-showcase__price strong {
    font-size: 20px;
  }

  .hero-showcase__specs {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  .hero-showcase__spec {
    padding: 8px 10px;
    gap: 8px;
    border-radius: 8px;
  }

  .hero-showcase__spec-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
  }

  .hero-showcase__spec-icon i {
    font-size: 11px;
  }

  .hero-showcase__spec > i {
    font-size: 14px;
  }

  .hero-showcase__spec-label {
    font-size: 8px;
  }

  .hero-showcase__spec strong {
    font-size: 11px;
  }

  .hero-showcase__buttons {
    flex-direction: column;
    gap: 10px;
  }

  .hero-showcase__buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-showcase__car img {
    max-height: 160px;
  }

  .hero-showcase__dots {
    bottom: 14px;
  }

  .hero-showcase__counter {
    bottom: 14px;
    right: 12px;
  }

  .hero-showcase__swipe-hint {
    bottom: 50px;
  }

  .news-carousel__card {
    flex: 0 0 85%;
    min-width: 0;
  }
}

/* Dark theme */
body.dark-theme .news-carousel {
  background: #1c1c1e;
}

body.dark-theme .news-carousel__card {
  background: #2c2c2e;
  border-color: #3a3a3c;
}

body.dark-theme .news-carousel__nav-btn {
  background: #2c2c2e;
  border-color: #3a3a3c;
  color: rgba(255, 255, 255, 0.7);
}

/* ===========================
   Old Parallax Slider Styles (kept for compatibility)
   =========================== */
.hero-slider {
  position: relative;
  height: calc(100vh - var(--header-height));
  min-height: 520px;
  max-height: 800px;
  overflow: hidden;
  user-select: none;
  cursor: grab;
  background: var(--color-dark);
}

.hero-slider:active {
  cursor: grabbing;
}

.slider-control {
  z-index: 10;
  position: absolute;
  top: 0;
  width: 12%;
  height: 100%;
  transition: opacity 0.3s;
  opacity: 0;
}

.slider-control:not(.inactive):hover {
  opacity: 1;
  cursor: pointer;
}

.slider-control.left {
  left: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 100%);
}

.slider-control.right {
  right: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.25) 100%);
}

.slider-pagi {
  position: absolute;
  z-index: 15;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  font-size: 0;
  list-style-type: none;
  display: flex;
  gap: 0.5rem;
}

.slider-pagi__elem {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #fff;
  cursor: pointer;
  transition: all 0.3s;
}

.slider-pagi__elem:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s;
  transform: translate(-50%, -50%) scale(0);
}

.slider-pagi__elem.active:before,
.slider-pagi__elem:hover:before {
  transform: translate(-50%, -50%) scale(1);
}

.slider {
  z-index: 1;
  position: relative;
  height: 100%;
  will-change: transform;
}

.slider.animating {
  transition: transform 0.5s ease-out;
}

.slider.animating .slide__bg {
  transition: transform 0.5s ease-out;
}

.slide {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slide:nth-child(1) { left: 0; }
.slide:nth-child(2) { left: 100%; }
.slide:nth-child(3) { left: 200%; }
.slide:nth-child(4) { left: 300%; }

.slide__bg {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.slide:nth-child(1) .slide__bg { left: 0; }
.slide:nth-child(2) .slide__bg { left: -50%; }
.slide:nth-child(3) .slide__bg { left: -100%; }
.slide:nth-child(4) .slide__bg { left: -150%; }

.slide__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(28,28,30,0.92) 0%, rgba(28,28,30,0.6) 50%, rgba(28,28,30,0.3) 100%);
}

.slide__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.slide__text {
  position: relative;
  z-index: 5;
  max-width: 750px;
  padding: 0 48px 0 calc((100% - 1280px) / 2 + 48px);
  color: #fff;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s 0.4s, transform 0.6s 0.4s;
}

.slide.active .slide__text {
  opacity: 1;
  transform: translateY(0);
}

.slide__text-heading {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #fff;
}

.slide__text-heading span {
  color: var(--color-orange);
}

.slide__text-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 600px;
}

.slide__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: nowrap;
}

/* ===========================
   Parallax Sections on Scroll
   =========================== */
.parallax-section {
  position: relative;
}

.parallax-section__bg-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.parallax-section__bg {
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 200%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.parallax-section__content {
  position: relative;
  z-index: 2;
}

/* ===========================
   Mobile Brands Sidebar
   =========================== */
.brands-sidebar {
  display: none;
  position: fixed;
  left: 0;
  top: var(--header-height);
  width: 60px;
  height: calc(100vh - var(--header-height));
  background: var(--color-white);
  border-right: 1px solid var(--color-border);
  z-index: 100;
  overflow-y: auto;
  overflow-x: hidden;
  flex-direction: column;
  align-items: center;
  padding: 12px 0;
  gap: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--color-orange) var(--color-light-gray);
}

.brands-sidebar::-webkit-scrollbar {
  width: 4px;
}

.brands-sidebar::-webkit-scrollbar-track {
  background: var(--color-light-gray);
}

.brands-sidebar::-webkit-scrollbar-thumb {
  background: var(--color-orange);
  border-radius: 4px;
}

.brands-sidebar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 4px;
  border-radius: 8px;
  transition: all 0.2s;
  cursor: pointer;
  width: 52px;
  text-align: center;
}

.brands-sidebar__item:hover {
  background: var(--color-orange-light);
}

.brands-sidebar__item img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.brands-sidebar__item span {
  font-size: 9px;
  font-weight: 600;
  color: var(--color-text-secondary);
  line-height: 1.1;
}

/* ===========================
   Delivery Section (Autovoz)
   =========================== */
.delivery-banner {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: var(--color-dark);
}

.delivery-banner__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: filter 0.5s ease, transform 0.5s ease;
  filter: blur(0);
  transform: scale(1);
}

.delivery-banner:hover .delivery-banner__bg {
  filter: blur(8px);
  transform: scale(1.05);
}

.delivery-banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(28, 28, 30, 0.6);
  transition: background 0.5s ease;
}

.delivery-banner:hover .delivery-banner__overlay {
  background: rgba(28, 28, 30, 0.75);
}

.delivery-banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-text-light);
  transition: transform 0.3s ease;
}

.delivery-banner:hover .delivery-banner__content {
  transform: scale(1.02);
}

.delivery-banner__icon {
  font-size: 56px;
  color: var(--color-orange);
  margin-bottom: 24px;
}

.delivery-banner__content h2 {
  color: #fff;
  margin-bottom: 20px;
}

.delivery-banner__content p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.delivery-banner__features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.delivery-banner__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.9);
}

.delivery-banner__feature i {
  font-size: 24px;
  color: var(--color-orange);
}

.delivery-banner__feature span {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
}

/* ===========================
   Responsive for slider & sidebar
   =========================== */
@media (max-width: 991px) {
  .brands-sidebar {
    display: flex;
  }

  body {
    padding-left: 60px;
  }

  .header {
    left: 60px;
    width: calc(100% - 60px);
  }

  .mobile-menu {
    left: 60px;
    width: calc(100% - 60px);
  }

  .brands-section {
    display: none;
  }

  .slide__text {
    padding: 0 32px;
    max-width: 100%;
  }

  .slide__text-heading {
    font-size: 40px;
  }

  .slide__text-desc {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .hero-slider {
    min-height: 450px;
    height: 70vh;
  }

  .slide__text-heading {
    font-size: 32px;
  }

  .slide__text-desc {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .slide__buttons {
    flex-wrap: wrap;
  }

  .brands-sidebar {
    width: 50px;
  }

  .brands-sidebar__item {
    width: 44px;
    padding: 6px 2px;
  }

  .brands-sidebar__item img {
    width: 24px;
    height: 24px;
  }

  .brands-sidebar__item span {
    font-size: 8px;
  }

  body {
    padding-left: 50px;
  }

  .header {
    left: 50px;
    width: calc(100% - 50px);
  }

  .mobile-menu {
    left: 50px;
    width: calc(100% - 50px);
  }

  .delivery-banner {
    padding: 60px 0;
  }

  .delivery-banner__features {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .slide__text {
    padding: 0 20px;
  }

  .slide__text-heading {
    font-size: 26px;
  }

  .slide__text-desc {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .slide__buttons {
    flex-direction: column;
    gap: 10px;
  }

  .slide__buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .slider-pagi {
    bottom: 1rem;
  }
}
