/* Preț promoțional */
.product-price {
    color: #d60000 !important;
    font-weight: 700;
    font-size: 22px;
    background-color: #ffe5e5;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
}

/* Preț vechi */
.product-price-old {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
    margin-right: 8px;
    display: inline-block;
}

/* Badge reducere */
.product-discount-badge {
    background-color: #e60000;
    color: white;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 14px;
    position: absolute;
    top: 10px;
    left: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Eticheta Lichidare (dacă vrei să fie vizibilă) */
.product-tag[data-tag*="Lichidare"] {
    background-color: #f99b00;
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 12px;
    margin-top: 5px;
    display: inline-block;
    font-weight: 600;
}

/* Alternativ – ascunde eticheta Lichidare */
/*
.product-tag[data-tag*="Lichidare"] {
    display: none !important;
}
*/

/* Stil buton */
.product-card .product-actions .btn {
    border: 1px solid #d76b6b;
    border-radius: 25px;
    background-color: transparent;
    color: #d76b6b;
    font-weight: 500;
    padding: 8px 20px;
    transition: all 0.3s ease;
}

.product-card .product-actions .btn:hover {
    background-color: #d76b6b;
    color: white;
}