/* Expiry Discount Frontend Styles */

/* Price with Badge Layout */
.price-with-expiry-badge {
    display: flex !important;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.price-with-expiry-badge del {
    margin: 0 !important;
    opacity: 0.5;
}

.price-with-expiry-badge ins {
    margin: 0 !important;
    text-decoration: none;
    font-weight: 600;
}

/* Badge Styles */
.expiry-badge {
    display: contents!important;
    padding: 3px 8px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    vertical-align: middle;
    border: 1px solid transparent;
}

/* Badge Color Variants */
.expiry-level-clearance {
    background-color: #fbeaea;
    color: #d63638;
    border-color: #d63638;
    animation: pulse 2s infinite;
}

.expiry-level-high {
    background-color: #fff0e1;
    color: #dc8b0b;
    border-color: #dc8b0b;
    animation: pulse 2s infinite;
}

.expiry-level-medium {
    background-color: #fff8e1;
    color: #dba617;
    border-color: #dba617;
}

.expiry-level-small {
    background-color: #eaf2fa;
    color: #72aee6;
    border-color: #72aee6;
}

.expiry-level-expired {
    background-color: #fdeaea;
    color: #a00;
    border-color: #a00;
}

/* CGKit Integration */
.cgkit-variation-price {
    margin-top: 5px;
}

.cgkit-as-variation-price .price-with-expiry-badge {
    display: inline-flex !important;
}

/* Badge Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Price Display */
.price del {
    opacity: 0.7;
    margin-right: 5px;
}

.price ins {
    text-decoration: none;
    font-weight: bold;
}

/* Shop/Category Page Badges */
.woocommerce ul.products li.product .expiry-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 9;
}

/* Single Product Page Badges */
.single-product div.product .expiry-badge {
    display: block;
    width: fit-content;
    margin-bottom: 10px;
}

/* Mini Cart and Cart Styles */
.woocommerce-mini-cart .price-with-expiry-badge,
.woocommerce-cart-form .price-with-expiry-badge {
    display: inline-flex !important;
    align-items: center;
    gap: 4px;
}

/* Checkout Notice */
.woocommerce-info.wc-expiry-notice {
    border-top-color: #f0ad4e;
}

.woocommerce-info.wc-expiry-notice::before {
    color: #f0ad4e;
}

/* Price Display */
.price del {
    opacity: 0.7;
    margin-right: 5px;
}

.price ins {
    text-decoration: none;
    font-weight: bold;
}

/* Adjustments for specific locations */
.woocommerce ul.products li.product .expiry-badge {
    /* Style for badges on shop/category pages */
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 9;
}

.single-product div.product .expiry-badge {
    /* Style for badges on single product page */
    display: block;
    width: fit-content;
    margin-bottom: 10px;
}

/* Checkout Notice */
.woocommerce-info.wc-expiry-notice {
    /* Add specific styles if needed */
    border-top-color: #f0ad4e; /* Example: Orange border */
}

.woocommerce-info.wc-expiry-notice::before {
    color: #f0ad4e; /* Example: Orange icon */
}
