/* Homepage Sections Spacing */

/* Products Carousel Tabs v5 */
.products-carousel-tabs-v5 {
    padding-top: 50px;
    padding-bottom: 50px;
}

/* Product Cards Carousel (Bestsellers) */
.home-v2-product-cards-carousel {
    padding-top: 50px;
    padding-bottom: 50px;
}

/* Full Banner Ad */
.home-v2-banner-block {
    padding-top: 50px;
    padding-bottom: 50px;
}

/* Latest Products Carousel */
.home-v2-categories-products-carousel {
    padding-top: 50px;
    padding-bottom: 50px;
}

/* Section Products Carousel */
.section-products-carousel {
    padding-top: 50px;
    padding-bottom: 50px;
}

/* Two Banners Section */
.home-two-banners {
  padding-top: 30px;
  padding-bottom: 30px;
}

.home-two-banners .banner-item {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-two-banners .banner-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.home-two-banners .banner-item img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.home-two-banners .banner-item:hover img {
  transform: scale(1.05);
}

/* Brands Carousel - Electro Style */
.brands-carousel {
  margin-bottom: 2.68em;
}

.brands-carousel .item {
  text-align: center;
  height: 50px;
  position: relative;
}

.brands-carousel .item figure {
  display: block;
  margin: 0;
  text-align: center;
}

.brands-carousel .item figure .text-overlay {
  display: none;
}

.brands-carousel .item figure:hover img {
  opacity: 1;
}

.brands-carousel .item figure img {
  opacity: 0.5;
  max-height: 50px;
  width: auto;
  margin: 0 auto;
  transition: opacity 0.3s ease;
}

.brands-carousel .item figure img.desaturate {
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}

.brands-carousel .item figure:hover img.desaturate {
  filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
}

.owl-brands {
  border-top: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  padding: 1.286em 0;
}

.owl-brands .owl-nav {
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.owl-brands .owl-nav [class*='owl-'] {
  color: #768b9e;
  font-size: 14px;
  display: inline-block;
  cursor: pointer;
  position: absolute;
  top: -30px;
  line-height: 14px;
  transition: color 0.3s ease;
}

.owl-brands .owl-nav [class*='owl-']:hover {
  color: #333e48;
}

.owl-brands .owl-nav .owl-prev {
  left: 0;
}

.owl-brands .owl-nav .owl-next {
  right: 0;
}

/* Full Banner */
.home-v2-fullbanner-ad {
  overflow: hidden;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.home-v2-fullbanner-ad:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.home-v2-fullbanner-ad img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.home-v2-fullbanner-ad:hover img {
  transform: scale(1.02);
}

/* Mobile Responsive */
@media (max-width: 991.98px) {
  .brands-carousel {
    margin-bottom: 1.5em;
  }
  
  .brands-carousel .item {
    height: 40px;
  }
  
  .brands-carousel .item figure img {
    max-height: 40px;
  }
  
  .owl-brands {
    padding: 1em 0;
  }
  
  .home-two-banners .row .col-md-6:first-child {
    margin-bottom: 15px;
  }
}

