/**
 * WooCommerce Discount Display Styles
 */
 
.wdd-discount-container {
    margin: 12px 0;
    margin-top: -1em;
    /* padding: 0; */
}

/*.wdd-discount-info.wdd-js-discount {
    display: table;
}*/

.wdd-discount-info {
    display: inline-block;
    background: #e74c3c;
    /* background: var(--e-global-color-primary, #e74c3c); */
    color: #ffffff;
    padding: 0 0 0 1em;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    /* margin: 5px 0; */
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
    transition: all 0.4s ease-in-out; 
    cursor: default;
}

/* Smooth transitions for JS-generated discounts */
/*.wdd-discount-info.wdd-js-discount {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.9s ease, visibility 0.9s ease;
}*/

/* Hidden state for JS discounts */
.wdd-discount-info.wdd-js-discount.wdd-hidden {
    opacity: 0;
    visibility: hidden;
    display: none;
}

.wdd-discount-info:hover {
    /*background: #c0392b;*/
    /*transform: translateY(-1px);*/
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Percentage badge styling */
.wdd-percentage {
    display: inline-block;
    background: #2c3e50;
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    margin-left: 5px;
    vertical-align: middle;
    /* border: 2px solid #ffffff; */
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); */
}

/* Alternative green style - uncomment to use */
/*
.wdd-discount-info {
    background: #27ae60;
}

*/


/* Responsive adjustments */

@media screen and (min-width: 768px) {
    .woocommerce-variation-price {
        display: flex;
        align-items: center;
    }
}
/*@media (max-width: 768px) {
    .wdd-discount-info {
        font-size: 13px;
        padding: 6px 12px;
    }
    
    .wdd-percentage {
        font-size: 11px;
        padding: 3px 6px;
        margin-left: 3px;
    }
}*/

/*@media (max-width: 480px) {
    .wdd-discount-info {
        font-size: 12px;
        padding: 5px 10px;
        display: block;
        text-align: center;
        margin: 8px 0;
    }
    
    .wdd-percentage {
        font-size: 10px;
        padding: 2px 5px;
        margin-left: 2px;
        display: inline-block;
        margin-top: 2px;
    }
}*/

/* Integration with popular themes */

/* Storefront theme compatibility */
.storefront .wdd-discount-container {
    margin: 15px 0;
}

/* Astra theme compatibility */
.astra-theme .wdd-discount-container {
    margin: 12px 0;
}

/* OceanWP theme compatibility */
.oceanwp-theme .wdd-discount-container {
    margin: 10px 0;
}

/* GeneratePress theme compatibility */
.generate-theme .wdd-discount-container {
    margin: 10px 0;
}
