/**
 * Lunnar Discount Frontend Styles
 *
 * @package LunnarDiscount
 * @version 1.0.2
 */

/* Discount badge styles */
.lunnar-discount-badge {
    display: inline-block;
    background: #e74c3c;
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 3px;
    margin-left: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lunnar-discount-badge.percentage {
    background: #27ae60;
}

.lunnar-discount-badge.fixed {
    background: #e74c3c;
}

/* Price display enhancements */
.woocommerce .price .lunnar-discount-price {
    color: #e74c3c;
    font-weight: bold;
}

.woocommerce .price del .lunnar-discount-original-price {
    color: #999;
    font-size: 0.9em;
}

/* Cart item discount display */
.cart .lunnar-discount-item-discount {
    font-size: 12px;
    color: #27ae60;
    font-weight: bold;
}

/* Checkout discount summary */
.woocommerce-checkout .lunnar-discount-summary {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 15px;
    margin: 10px 0;
}

.woocommerce-checkout .lunnar-discount-summary h4 {
    margin: 0 0 10px 0;
    color: #495057;
}

.woocommerce-checkout .lunnar-discount-summary .discount-item {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px solid #e9ecef;
}

.woocommerce-checkout .lunnar-discount-summary .discount-item:last-child {
    border-bottom: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .lunnar-discount-badge {
        font-size: 10px;
        padding: 3px 6px;
        margin-left: 4px;
    }
    
    .woocommerce-checkout .lunnar-discount-summary {
        padding: 10px;
    }
}

/* Animation for discount badges */
@keyframes lunnar-discount-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.lunnar-discount-badge.animated {
    animation: lunnar-discount-pulse 2s infinite;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .lunnar-discount-badge {
        border: 2px solid #000;
    }
    
    .lunnar-discount-badge.percentage {
        background: #006400;
    }
    
    .lunnar-discount-badge.fixed {
        background: #8B0000;
    }
}

/* Print styles */
@media print {
    .lunnar-discount-badge {
        background: #000 !important;
        color: #fff !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
}
