/* Base styles for header */
.offer-header {
    background-color: #fadb41; /* Matching or complementary color */
    color: black;
    padding: 5px 0;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    position: sticky;
    top: 0;
    z-index: 1000;
    overflow: hidden;
    width: 100%;
}

/* Scrolling text wrapper */
.scrolling-text-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    white-space: nowrap;
}

/* Scrolling text */
.scrolling-text {
    display: inline-block;
    white-space: nowrap;
    animation: scroll-left 20s linear infinite;
}

/* Style for the coupon code */
.coupon-code {
    font-weight: bold;
    background-color: #ffffff;
    color: #880e4f;
    padding: 3px 8px;
    border-radius: 5px;
    margin-left: 5px;
}

@keyframes scroll-left {
    0% {
        transform: translateX(100%); /* Start off-screen right */
    }
    100% {
        transform: translateX(-100%); /* Move off-screen left */
    }
}

/* Responsive styles */
@media (max-width: 768px) {
    .offer-header {
        font-size: 12px;
        padding: 8px 0;
    }
}

.product-inner slick-slide slick-current slick-active {
  width: 350px;
  
}

@media screen and (max-width: 768px) {
    .img-fluid-eq .img-fluid-eq__wrap img {
        height: 204px !important;
        -o-object-fit: contain;
        object-fit: contain;
        width: 251px !important;
    }

    .product-inner .product__title {
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        color: black; 
        font-size: 14px;
        font-weight: 400;
        height: 4em !important;
        line-height: 6.5em !important;
        margin-bottom: 0px;
        margin-top: 5px;
        overflow: hidden;
    }
}



@media (max-width: 767px) {
    .section-content.section-content__slider .section-slides-wrapper .slide-item .slide-item__image {
        height: 100vw !important;
    }
}

.lg-download {
    display: none;
}