    /* Out of stock options styling */
    .js_out_of_stock,
    .out_of_stock {
        opacity: 0.8 !important;
        pointer-events: none !important;
        cursor: not-allowed !important;
        position: relative;
    }

    .js_out_of_stock::after,
    .out_of_stock::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(255, 255, 255, 0.3);
        pointer-events: none;
        z-index: 1;
    }

    /* Out of stock label */
    .no-stock-label {
        background-color: #e74c3c;
        color: white;
        padding: 2px 5px !important;

        border-radius: 3px;
        font-size: 12px;
        font-weight: bold;
        margin: 5px 0;
        display: inline-block;
        position: relative;
        z-index: 2;
        right: 0 !important;
  
    }

    .no-stock-label sup {
        font-size: 13px;
        margin-left: 2px;
        top: 0;

    }

/* Prevent clicks on out of stock options */
.js_out_of_stock input[type="radio"],
.out_of_stock input[type="radio"] {
    pointer-events: none !important;
}

/* Contact message for out of stock steps */
.step-contact-message {
    margin-top: 1rem;
    animation: fadeIn 0.3s ease-in;
}

.step-contact-message a {
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
}

.step-contact-message a:hover {
    color: #a01820 !important;
    text-decoration: none;
}

.step-contact-message svg {
    transition: transform 0.2s ease;
}

.step-contact-message a:hover svg {
    transform: scale(1.1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile responsive for contact message */
@media (max-width: 767px) {
    .step-contact-message {
        font-size: 14px;
    }
    
    .step-contact-message svg {
        height: 20px;
        width: 20px;
    }
}

@media (max-width: 575px) {
    .step-contact-message {
        font-size: 13px;
        padding: 0.75rem !important;
    }
    
    .step-contact-message svg {
        height: 18px;
        width: 18px;
        margin-right: 8px !important;
    }
}

    @media (max-width: 1200px) {

        /* Out of stock label */
        .no-stock-label {
            color: white;
            padding: 5px 10px;
            font-size: 13px;
            right: 10px !important;
            font-weight: bold;
            margin: 5px 0;
            display: inline-block;
            position: relative;
            z-index: 2;
        }

    }

    /* ========================================
   RESPONSIVE - MOBILE
   ======================================== */

    /* Tablets (portrait) */
    @media (max-width: 991px) {
        .no-stock-label {
            font-size: 12px;
            padding: 4px 8px;
        }
    }

    /* Mobile */
    @media (max-width: 767px) {

        .no-stock-label {
            font-size: 11px;
            padding: 3px 7px;
            margin: 3px 0;
            text-align: center;
            display: block;
            right: 0 !important;
        }
    }

    /* Very small mobile */
    @media (max-width: 575px) {
        .no-stock-label {
            font-size: 10px;
            padding: 2px 5px;
        }

        /* Stack options vertically on very small screens */
        .js_out_of_stock.option_div,
        .out_of_stock.option_div {
            margin-bottom: 10px;
        }
    }