/* Offer Countdown Timer Styling */
.offer-countdown-timer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.801) 0%, rgba(184, 135, 11, 0.678) 100%);
   
    ;
    padding: 20px;
    z-index: 10;
    text-align: center;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.3);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.timer-label {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.95;
}

.timer-display {
    display: flex;
    justify-content: center;
   
    gap: 8px;
    flex-wrap: wrap;
}

.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 55px;
}

.timer-value {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    min-width: 50px;
    display: block;
}

.timer-unit-label {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timer-separator {
    color: rgba(255, 255, 255, 0.7);
    font-size: 24px;
    font-weight: 700;
    margin: 0 2px;
    line-height: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .offer-countdown-timer {
        padding: 15px;
    }

    .timer-label {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .timer-value {
        font-size: 22px;
        min-width: 40px;
    }

    .timer-unit {
        min-width: 45px;
        gap: 2px;
    }

    .timer-unit-label {
        font-size: 14px;
    }

    .timer-separator {
        font-size: 18px;
        margin: 0 1px;
    }
}

@media (max-width: 480px) {
    .offer-countdown-timer {
        padding: 12px;
    }

    .timer-label {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .timer-value {
        font-size: 18px;
        min-width: 35px;
    }

    .timer-unit {
        min-width: 38px;
        gap: 2px;
    }

    .timer-unit-label {
        font-size: 8px;
    }

    .timer-separator {
        font-size: 14px;
        margin: 0 1px;
    }
}

/* Timer Color Variations - Can be customized based on design */
.offer-countdown-timer.color-rose {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.95) 0%, rgba(239, 68, 68, 0.95) 100%);
}

.offer-countdown-timer.color-purple {
    background: linear-gradient(135deg, rgba(109, 40, 217, 0.95) 0%, rgba(139, 92, 246, 0.95) 100%);
}

.offer-countdown-timer.color-blue {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.95) 0%, rgba(59, 130, 246, 0.95) 100%);
}

.offer-countdown-timer.color-emerald {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.95) 0%, rgba(16, 185, 129, 0.95) 100%);
}

.offer-countdown-timer.color-amber {
    background: linear-gradient(135deg, rgba(180, 83, 9, 0.95) 0%, rgba(217, 119, 6, 0.95) 100%);
}

.offer-countdown-timer.color-pink {
    background: linear-gradient(135deg, rgba(190, 24, 93, 0.95) 0%, rgba(236, 72, 153, 0.95) 100%);
}
