/* =========================
   HERO SLIDE (DESKTOP)
========================= */
.hero-slide {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #0f172a;
    color: white;
    padding: 90px 60px;
    border-radius: 12px;
    gap: 30px;
}

/* TEXT */
.hero-text {
    max-width: 50%;
}

.hero-text h1 {
    font-size: 40px;
    font-weight: bold;
}

.hero-text p {
    font-size: 18px;
    margin: 15px 0;
    color: #cbd5e1;
}

/* IMAGE */
.hero-img {
    width: 600px;
    border-radius: 10px;
    object-fit: contain;
}

/* =========================
   CAROUSEL
========================= */
.carousel-item {
    padding: 20px;
}

/* =========================
   ARROWS
========================= */
#heroCarousel {
    position: relative;
}

/* LEFT/RIGHT BUTTONS */
#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
    width: 80px;
}

/* LEFT */
#heroCarousel .carousel-control-prev {
    left: 5px;
}

/* RIGHT */
#heroCarousel .carousel-control-next {
    right: 5px;
}

/* ICON STYLE */
#heroCarousel .carousel-control-prev-icon,
#heroCarousel .carousel-control-next-icon {
    background-color: black;
    border-radius: 50%;
    padding: 15px;
    background-size: 50% 50%;
}

/* =========================
   TABLET RESPONSIVE
========================= */
@media (max-width: 992px) {

    .hero-slide {
        flex-direction: column;
        text-align: center;
        padding: 60px 30px;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-img {
        width: 300px;
        margin-top: 20px;
    }
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 576px) {

    .hero-slide {
        padding: 40px 20px;
    }

    .hero-text h1 {
        font-size: 24px;
    }

    .hero-text p {
        font-size: 14px;
    }

    .hero-img {
        width: 220px;
    }

    /* hide arrows on mobile */
    #heroCarousel .carousel-control-prev,
    #heroCarousel .carousel-control-next {
        display: none;
    }
}
.top-brands {
  padding: 40px 0;
  background: #f9fafb;
}

.top-brands .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.top-brands h2 {
  font-size: 22px;
  font-weight: 600;
}

.top-brands .brands-wrapper {
  display: flex;
  gap: 20px;
  overflow-x: auto;
}

.brand-card {
  min-width: 140px;
  background: white;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  border: 1px solid #eee;
  transition: 0.3s;
}

.brand-card:hover {
  transform: translateY(-5px);
}

.brand-card img {
  max-width: 80px;
  margin-bottom: 10px;
}

.brand-card p {
  font-size: 14px;
  font-weight: 500;
}
/* =========================
   BRANDS ARROWS (ADD THIS)
========================= */

.brands-container {
  position: relative;
}

.brands-wrapper {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 50px; /* space for arrows */
}

.brands-wrapper::-webkit-scrollbar {
  display: none;
}

/* ARROW BUTTONS */
.scroll-btn {
  position: absolute;
  top: 35%;
  transform: translateY(-50%);
  background: white;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  z-index: 10;
  cursor: pointer;
}

/* LEFT */
.scroll-btn.left {
  left: 0;
}

/* RIGHT */
.scroll-btn.right {
  right: 0;
}

.scroll-btn:hover {
  background: #f1f1f1;
}
.brand-item {
  text-align: center;
  min-width: 140px;
}

.brand-name {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 500;
}
/* HEADER */
/* WRAPPER */
.category-slider {
  position: relative;
}

/* SCROLL AREA */
.category-wrapper {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 40px;
}

.category-wrapper::-webkit-scrollbar {
  display: none;
}

/* ITEM */
.category-item {
  text-align: center;
  min-width: 110px;
  text-decoration: none;
  color: #000;
}

/* CIRCLE CARD */
.category-card {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  margin: auto;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ARROWS */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: 1px solid #ddd;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  z-index: 10;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.slider-btn.left {
  left: 0;
}

.slider-btn.right {
  right: 0;
}

.slider-btn:hover {
  background: #f0f0f0;
}
.category-header {
  display: flex;
  justify-content: space-between;  /* 🔥 key line */
  align-items: center;
  margin-bottom: 20px;
}

.category-header h3 {
  margin: 0;
  font-weight: 600;
}