/* ===================================
   Pricing & Discount Styles
   =================================== */

/* Original Price Strikethrough */
.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
    font-weight: 400;
}

/* Discount Badge on Product Cards */
.exclusive-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.exclusive-badge i {
    font-size: 0.75rem;
}

/* Price Section with Discount */
.product-price-section {
    margin-bottom: 1.5rem;
}

.product-price-section .original-price {
    font-size: 12px;
}

/* Savings Display */
.price-savings {
    color: #059669;
    font-weight: 600;
    margin-top: 0.5rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-savings i {
    font-size: 1rem;
}

/* Product Details Page Large Prices */
.product-price-large.strikethrough {
    text-decoration: line-through;
    color: #999;
    font-size: 1.5rem;
}

/* Responsive Adjustments */
@media (max-width: 640px) {
    .exclusive-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }

    .product-price-large.strikethrough {
        font-size: 1.25rem;
    }
}