/*
Theme Name: Elessi Theme Child
Theme URI: https://elessi.nasatheme.com
Description: This is a child theme for Elessi Theme
Author: Apposys team
Author URI: https://nasatheme.com
Template: elessi-theme
Version: 1.0
*/


/*************** ADD YOUR CUSTOM CSS IN THIS AREA ***************/

/* Offer Carousel Wrapper */
.offer-carousel {
    width: 100%;
    overflow: hidden;
    color: #ffd700;
    padding: 8px 0;
    position: relative;
}

/* Track */
.offer-track {
    display: flex;
    width: max-content;
    animation: offerScroll 20s linear infinite;
}

/* Individual Offer */
.offer-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 40px;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500;
}

/* Emoji Size */
.offer-item .emoji {
    width: 18px;
    height: 18px;
}

/* Infinite Scroll Animation */
@keyframes offerScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Pause on hover (optional) */
.offer-carousel:hover .offer-track {
    animation-play-state: paused;
}

@media (max-width:768px) {
    .offer-item {
        padding: 0 20px;
        font-size: 13px;
    }
}


