




/* =====================
   DESKTOP / MOBILE TOGGLE
===================== */
.desktop-grid,
.desktop-slider {
  display: flex;
}
.mobile-slider {
  display: none;
}

@media (max-width: 768px) {
  .desktop-grid,
  .desktop-slider {
    display: none;
  }
  .mobile-slider {
    display: block;
  }
  .hide-mobile {
    display: none !important;
  }
}

/* =====================
   HERO SLIDER
===================== */
.hero-slider {
  position: relative;
  height: 470px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  max-width: 100%;
  max-height: 455px;
  opacity: 0;
  transition: opacity 1s ease;
  object-fit: contain;
  border-radius: 15px;
  margin-left: -107px;
}

.hero-slide.active {
  opacity: 1;
  position: relative;
}

@media (max-width: 768px) {
  .hero-slider {
    height: 330px;
  }
  .hero-slide {
    height: 330px;
    margin-left: 0;
  }
}

/* =====================
   STACKED IMAGES (RIGHT SIDE)
===================== */
.stacked-slide-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.stacked-slide-image {
  width: 100%;
  height: 216px;
  border-radius: 6px;
  object-fit: contain;
  margin-left: -102px;
}

/* =====================
   FEATURED PRODUCTS SLIDER
===================== */
.featured-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 12px;
  padding-bottom: 10px;
}

.featured-slider::-webkit-scrollbar {
  display: none;
}

.featured-slider .p-2 {
  flex: 0 0 48%;
  scroll-snap-align: start;

    
}



@media (min-width: 768px) {
  .featured-slider .p-2 {
    flex: 0 0 33.33%;
  }
}

@media (min-width: 1024px) {
  .featured-slider .p-2 {
    flex: 0 0 25%;
  }
}

/* =====================
   PRODUCT CARD
===================== */
.product-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 10px;
  height: 100%;
}

.product-card img {
  width: 100%;
  
  object-fit: contain;
}

.product-card h6 {
  font-size: 14px;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
}

.product-card p {
  font-weight: bold;
  color: #e60000;
  text-align: center;
}

/* =====================
   SUB CATEGORY SLIDER
===================== */
.subCategorySlider .swiper-slide {
  width: 160px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .subCategorySlider .swiper-slide {
    width: 120px;
  }
}

.subCategorySlider img {
  height: 170px;
  object-fit: contain;
}

/* HIDE SWIPER ARROWS */
.swiper-button-next,
.swiper-button-prev {
  display: none !important;
}
