.quick-countdown-box {
    background: linear-gradient(135deg, #ff3333, #ff6b6b);
    color: white;
    border-radius: 25px;
    padding: 6px 12px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    min-width: 200px;
    justify-content: center;
}

.quick-countdown-box .js-countdown {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
}

.quick-countdown-box .js-countdown>div {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    padding: 3px 8px;
    min-width: 40px;
    text-align: center;
}

.quick-countdown-box .js-countdown .label {
    color: rgba(255, 255, 255, 0.7);
    margin-left: 3px;
    font-size: 14px;
}

.quick-product-status-content {
    background: linear-gradient(135deg, #ff6b00, #ffa500);
    color: white;
    display: flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 25px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.quick-product-status-content .icon-lightning {
    margin-right: 5px;
    font-size: 20px;
    color: yellow;
    text-shadow: 0 0 5px rgba(255, 255, 0, 0.5);
}

.quick-product-status-content .fw-6 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
}

/* Animaciones para llamar la atención */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.quick-countdown-box,
.quick-product-status-content {
    animation: pulse 1.5s ease-in-out infinite;
    transition: all 0.3s ease;
}

.quick-countdown-box:hover,
.quick-product-status-content:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tf-product-info-badges {
        top: 5px;
        right: 5px;
        gap: 5px;
    }

    .quick-countdown-box,
    .quick-product-status-content {
        font-size: 14px;
        padding: 4px 8px;
        min-width: 160px;
    }

    .quick-countdown-box .js-countdown {
        font-size: 14px;
    }

    .quick-countdown-box .js-countdown .label {
        font-size: 12px;
    }
}