/* WooCommerce Discount Badge Styles */

.wc-discount-badge-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.wc-discount-badge-save {
    display: inline-block;
    background-color: #e2401c;
    color: white;
    padding: 8px 10px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.85em;
    line-height: 1;
    vertical-align: middle;
}

/* Ensure the price and badge stay on the same line */
.woocommerce-Price-amount {
    display: inline-block;
}

/* Fix for specific themes that might cause issues */
.price {
    display: inline-flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
}

/* Responsive adjustments - keep on same line even on mobile */
@media (max-width: 768px) {
    .wc-discount-badge-wrapper {
        display: inline-flex !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
        white-space: nowrap !important;
    }
    
    .wc-discount-badge-save {
        margin-left: 0;
    }
    
    /* Force inline display for mobile */
    .price del, 
    .price ins {
        display: inline-block !important;
    }
}