.woocommerce .custom-add-to-cart {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    margin stutter: none;
    margin: 10px auto !important;
    width: 100% !important;
    max-width: 160px !important;
    padding: 5px !important;
    direction: ltr !important; /* اطمینان از چیدمان چپ به راست */
}

.woocommerce .custom-add-to-cart .button {
    color: #fff !important;
    border: none !important;
    padding: 0 !important;
    cursor: pointer !important;
    font-size: 20px !important;
    border-radius: 6px !important;
    width: 36px !important;
    height: 36px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    transition: all 0.3s ease !important;
}

.woocommerce .custom-add-to-cart .plus-button {
    background-color: #28a745 !important;
    box-shadow: 0 0 8px #28a745, 0 0 12px rgba(40, 167, 69, 0.5) !important;
}

.woocommerce .custom-add-to-cart .plus-button:hover {
    background-color: #218838 !important;
    box-shadow: 0 0 12px #28a745, 0 0 16px rgba(40, 167, 69, 0.8) !important;
    filter: brightness(1.1) !important;
}

.woocommerce .custom-add-to-cart .minus-button {
    background-color: #dc3545 !important;
    box-shadow: 0 0 8px #dc3545, 0 0 12px rgba(220, 53, 69, 0.5) !important;
}

.woocommerce .custom-add-to-cart .minus-button:hover {
    background-color: #c82333 !important;
    box-shadow: 0 0 12px #dc3545, 0 0 16px rgba(220, 53, 69, 0.8) !important;
    filter: brightness(1.1) !important;
}

.woocommerce .custom-add-to-cart .button:disabled {
    background-color: #ccc !important;
    cursor: not-allowed !important;
    opacity: 0.6 !important;
    box-shadow: none !important;
}

.woocommerce .custom-add-to-cart .cart-quantity {
    font-size: 16px !important;
    min-width: 32px !important;
    text-align: center !important;
    line-height: 32px !important;
    color: #333 !important;
    font-weight: bold !important;
}

.woocommerce .custom-add-to-cart .button.loading::after {
    content: '' !important;
    position: absolute !important;
    width: 16px !important;
    height: 16px !important;
    border: 2px solid #fff !important;
    border-top: 2px solid transparent !important;
    border-radius: 50% !important;
    animation: spin 0.6s linear infinite !important;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.woocommerce ul.products {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    margin: 0 -5px !important;
    padding: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

@media (min-width: 960px) {
    .woocommerce ul.products li.product {
        width: 25% !important;
        margin: 0 0 15px !important;
        padding: 0 5px !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        text-align: center !important;
        flex: 0 0 25% !important;
    }
}

@media (min-width: 500px) and (max-width: 959px) {
    .woocommerce ul.products li.product {
        width: 33.33% !important;
        margin: 0 0 15px !important;
        padding: 0 5px !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        text-align: center !important;
        flex: 0 0 33.33% !important;
    }
}

@media (max-width: 499px) {
    .woocommerce ul.products li.product {
        width: 50% !important;
        margin: 0 0 15px !important;
        padding: 0 5px !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        text-align: center !important;
        flex: 0 0 50% !important;
    }

    .woocommerce .custom-add-to-cart {
        width: 100% !important;
        max-width: 160px !important;
        justify-content: center !important;
        margin: 10px auto !important;
    }
}