/* -- Promotions Slider Styles -- */

/* Override overly specific padding from main css */
.lb_celeb {
    padding: 80px 0 60px !important;
    overflow: hidden; /* Prevent horizontal scroll */
}

.lb_celeb .celeb_wrap {
    display: block !important;
    width: 100%;
    max-width: 1530px;
    margin: 0 auto;
    padding-top: 20px;
    overflow: hidden; /* Prevent overflow */
}

.lb_celeb .celeb_wrap h2 {
    width: 100% !important;
    text-align: center;
    margin: 0 0 50px !important;
    font-size: 60px !important;
    line-height: normal !important;
    color: #fff;
    font-weight: bold;
}
.lb_celeb .celeb_wrap h2 span{
   color: #d7417e;
}

.promo_slider_wrap {
    width: 100%;
    max-width: 1300px; /* Constrain the slider width */
    margin: 0 auto 50px;
    padding: 0 20px;
}

.promo_slider .item {
    padding: 10px;
    transition: transform 0.3s ease;
}

.promo_slider .item:hover {
    transform: scale(1.05);
}

.promo_slider .item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 120px;
    filter: brightness(0) invert(1); /* Make logos white */
    transition: all 0.3s ease;
    opacity: 0.9;
}

.promo_slider .item:hover img {
    opacity: 1;
    transform: scale(1.1);
}

/* Owl Carousel Customizations */
.promo_slider .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.promo_slider .owl-dot span {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    display: block;
    border-radius: 50%;
    margin: 5px 7px;
    transition: all 0.3s ease;
}

.promo_slider .owl-dot.active span {
    background: #d7417e;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .lb_celeb .celeb_wrap h2 {
        font-size: 40px !important;
        margin-bottom: 30px !important;
    }
    
    .promo_slider_wrap {
        padding: 0 20px;
    }
    
    .promo_slider .item img {
        max-height: 90px;
    }
}

