.countdown-timer-c {
    font-size: 24px;
    font-weight: bold;
    color: #17b300;
    display: flex;
    gap: 10px;
    flex-direction: row-reverse;
    width: max-content;
    margin: auto;
}

.countdown-timer-c span {
    display: inline-block;
    animation: pulse 1s infinite alternate;
    transition: transform 0.3s ease-in-out;
}

@keyframes pulse {
    from {
        transform: scale(1);
        opacity: 1;
    }
    to {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.countdown-timer-c .divider {
    font-size: 24px;
    font-weight: normal;
    color: #808080FF;
    animation: none;
}

.product-box {
    position: relative;
    width: 200px;
    height: 300px;
    background: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.discount-badge {
    position: absolute;
    top: 15px;
    left: 20px;
    background: #f56614;
    color: white;
    font-size: 14px;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
