/* ============================================
   SCROLLING TICKER STYLES
   ============================================ */
.offers-ticker-wrapper.offers-ticker-scroll {
        overflow: hidden;
        width: 100%;
        position: relative;
}

.offers-ticker-scroll .offers-ticker-content {
        display: flex;
        align-items: center;
        white-space: nowrap;
}

.offers-ticker-scroll .offers-ticker-inner {
        display: inline-flex;
        align-items: center;
        animation: ticker-scroll linear infinite;
        will-change: transform;
}

.offers-ticker-scroll .offers-ticker-content a {
        text-decoration: none;
        font-weight: 600;
        display: inline-block;
        white-space: nowrap;
}

.offers-ticker-scroll .separator-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
        color: inherit;
}

.offers-ticker-scroll .separator-icon i,
.offers-ticker-scroll .separator-icon svg {
        display: inline-block;
        font-size: 10px;
        color: inherit;
        fill: currentColor;
        width: auto;
        height: auto;
}

@keyframes ticker-scroll {
        from {
                transform: translateX(0);
        }

        to {
                transform: translateX(-50%);
        }
}

/* ============================================
       BLINKER (STATIC) STYLES
       ============================================ */
.offers-blinker-wrapper {
        width: 100%;
        display: block;
        position: relative;
        overflow: hidden;
}

.offers-blinker-wrapper .blinker-content {
        display: inline-block;
        white-space: nowrap;
}

.offers-blinker-wrapper .blinker-text {
        text-decoration: none;
        font-weight: 600;
        display: inline-block;
}

/* Inline countdown - inside the link */
.offers-blinker-wrapper.countdown-inline .blinker-text {
        display: inline-flex;
        align-items: center;
        gap: 10px;
}

.offers-blinker-wrapper.countdown-inline .countdown-timer {
        display: inline-block;
}

/* Block countdown - below the text */
.offers-blinker-wrapper.countdown-block .countdown-timer {
        display: block;
        margin-top: 10px;
}

.offers-blinker-wrapper .countdown-timer {
        font-weight: 700;
        white-space: nowrap;
}

/* ============================================
       COUNTDOWN TIMER (SHARED)
       ============================================ */
.countdown-timer {
        display: inline-block;
        font-weight: 700;
        white-space: nowrap;
}

/* ============================================
       ELEMENTOR EDITOR SPECIFIC
       ============================================ */
.elementor-editor-active .offers-ticker-inner {
        animation-play-state: running !important;
}