@media all {
    /* Overview & Pricing Styles */
    .overview .add-to-wishlist-button {
        color: #007ba4;
    }

    .add-to-wishlist button span:before {
        color: #007ba4 !important;
    }

    .window {
        position: absolute;
    }

    .overview .non-discounted-price {
        text-align: left;
        padding-top: 5px;
        font-size: 16px;
        font-weight: normal;
    }

    .overview .product-price,
    .overview .discounted-price {
        padding-top: 5px;
        font-size: 20px;
        text-align: left;
    }

        .overview .non-discounted-price label,
        .overview .product-price label {
            display: inline-block;
            min-width: 200px;
        }

    .overview .old-product-price label {
        display: inline-block;
        min-width: 200px;
    }

    .overview .old-product-price,
    .variant-overview .old-product-price {
        text-decoration: none;
        color: green;
        text-align: left;
        padding-top: 5px;
        font-size: 16px;
        font-weight: normal;
    }

    /* Attribute Help System */
    .attr-help {
        order: -1;
    }

        .attr-help:hover {
            color: #007bff;
        }

    .fa-question-circle {
        font-size: 1rem;
        color: #ec9546;
    }

        .fa-question-circle:hover {
            color: #ec9546;
        }

    /* Help Dialog & Overlay */
    .help-dialog {
        display: none;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: white;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        max-width: 400px;
        width: 90%;
    }

        .help-dialog.active {
            display: block;
            margin-top: 90px;
        }

    .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

        .overlay.active {
            display: block;
        }

    /* Attribute Description */
    .attribute-description {
        padding: 1rem;
        line-height: 1.5;
        overflow: auto;
        max-height: 650px;
    }

    /* Attributes Layout */
    .attributes > ul > li {
        border-bottom: none;
    }

    .attributes .attr-label {
        color: #666;
        font-weight: bold;
        padding-top: 10px;
        padding-bottom: 0px;
        width: 40%;
        padding-left: 0px;
    }

    .attributes .attr-value {
        color: #666;
        padding-top: 10px;
        padding-bottom: 10px;
        text-align: left;
    }

    /* Tooltip Styles */
    .tooltip-container {
        position: absolute;
        width: 200px;
        color: #000000;
        background: #FFFFFF;
        border: 1px solid #eeeeee;
        text-align: center;
        visibility: hidden;
        border-radius: 5px;
    }

        .tooltip-container:before {
            content: '';
            position: absolute;
            bottom: 100%;
            right: 90%;
            margin-right: -7px;
            width: 0;
            height: 0;
            border-bottom: 7px solid #eeeeee;
            border-right: 7px solid transparent;
            border-left: 7px solid transparent;
        }

        .tooltip-container:after {
            content: '';
            position: absolute;
            bottom: 100%;
            right: 90%;
            margin-right: -6px;
            width: 0;
            height: 0;
            border-bottom: 6px solid #FFFFFF;
            border-right: 6px solid transparent;
            border-left: 6px solid transparent;
        }

    .attribute-squares li:hover .tooltip-container {
        visibility: visible;
        display: block;
        margin-right: -83px;
        margin-top: 5px;
        z-index: 999;
    }

    .tooltip-container .tooltip-header {
        background-color: #F6F6F6;
        height: 25px;
        border-top-right-radius: 4px;
        border-top-left-radius: 4px;
        padding-right: 10px;
        padding-top: 5px;
        text-align: left;
        font-size: 15px;
        border-bottom: 1px #EEEEEE solid;
    }

    .tooltip-container .tooltip-body {
        margin: 5px;
    }

        .tooltip-container .tooltip-body img {
            border: 0px #FFF;
            width: 190px;
        }

    /* Checkout & Cart Styles */
    .checkout-savings {
        padding: 10px;
        border: 1px solid red;
        margin-bottom: 10px;
        color: red;
        font-size: 20px;
    }

    .attributecolorlist .color .productboxselected {
        border-color: #008000;
        border: 2px solid #008000;
        
    }

    .totals .checkout-savings {
        display: none;
    }

    .cart-total .order-total {
        border: 2px solid green;
    }

        .cart-total .order-total td.cart-total-left {
            font-weight: normal;
            text-transform: none;
        }
}

/* Add these additional styles for the attr-label to ensure proper layout */
.attr-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.text-prompt {
    font-weight: bold;
    margin: 0;
}

.required {
    color: #d00;
    font-weight: bold;
}


