.img-fluid-eq .img-fluid-eq__wrap img {
    border-radius: 8% !important;
}

/* Base styles for header */
.offer-header {
    background-color: #FFD700; /* Matching or complementary color */
    color: white;
    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;
}