﻿

/* RTL/LTR adjustments */
.rtl-align {
    text-align: right;
}

.ltr-align {
    text-align: left;
}

#starRating span {
    color: #ccc;
    transition: color 0.3s ease;
}

    #starRating span.hover,
    #starRating span.selected {
        color: #FFD700;
    }

.getwhitecolor {
    color: #fff;
}

/* Responsive Styles */
@@media screen and (max-width: 768px) {
    .product-attributes {
        flex-direction: column;
        align-items: stretch;
    }

    #quantity-wanted-p {
        width: 100% !important;
        max-width: 100%;
        justify-content: center;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .cart-plus-minus-box {
        width: 100px;
    }

    .btn-add-cart {
        margin-top: 1rem;
        padding: 0.55rem 1.35rem;
        border: 1.5px solid #fff;
        background: transparent;
        color: #fff;
        font-weight: 600;
        font-size: 0.9rem;
        border-radius: 3px;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: background-color 0.3s ease, color 0.3s ease;
        width: 100%;
        justify-content: center;
    }

        .btn-add-cart:hover {
            background-color: #fff;
            color: #000;
        }

    .product-attributes span {
        width: 100%;
    }

    #quantity-wanted-p .qtybutton {
        width: 50px;
        font-size: 14px;
    }

    #quantity-wanted-p input {
        width: 55%;
    }
}
