.original-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 8px;
    font-size: 0.9em;
}

.discounted-price {
    color: #ff4444;
    font-weight: bold;
}

/* Animação sutil para destacar o desconto */
@keyframes priceHighlight {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.discounted-price {
    animation: priceHighlight 0.3s ease-out;
}

#promotion-banner {
    background: #2a003d;
    color: white;
    height: 40px;
    width: 100%;
    position: relative;
    z-index: 1000;
}

.promotion-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 20px;
    font-size: 14px;
}

.promotion-title {
    font-weight: bold;
}

.promotion-discount {
    background: rgba(255,255,255,0.2);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: bold;
}

.promotion-countdown {
    display: flex;
    align-items: center;
    gap: 8px;
}

.countdown-timer {
    background: rgba(0,0,0,0.1);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: monospace;
}

@keyframes slideDown {
    from { transform: translateY(-40px); }
    to { transform: translateY(0); }
}

#promotion-banner.active {
    display: block !important;
    animation: slideDown 0.3s ease-out;
}

.product-card {
    position: relative;
}

.discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff4444;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
    z-index: 2;
}

@media (max-width: 768px) {
    #promotion-banner {
        height: auto;
        padding: 10px;
    }

    .promotion-content {
        gap: 10px;
        font-size: 14px;
        flex-direction: column;
    }
    .promotion-discount {
        min-width: 150px;
        text-align: center;
        font-size: 1.2rem;
    }

}
