/* مخفی کردن ستون تعداد */
.woocommerce-cart-form .product-quantity {
    display: none !important;
}

/* مخفی کردن ستون زیرمجموع */
.woocommerce-cart-form .product-subtotal {
    display: none !important;
}

/* مخفی کردن دکمه بروزرسانی سبد خرید */
.woocommerce-cart-form .actions button[name="update_cart"] {
    display: none !important;
}

/* ظاهر رادیوباتن‌ها */
.tamland-payment-option label {
    cursor: pointer;
    font-size: 0.9em;
}

/* ----- لودینگ هنگام به‌روزرسانی سبد خرید ----- */
.woocommerce-cart-form {
    position: relative;
}

.tamland-cart-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.7);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tamland-cart-loading-overlay::after {
    content: '';
    width: 40px;
    height: 40px;
    border: 4px solid #ddd;
    border-top-color: #666;
    border-radius: 50%;
    animation: tamland-spin 0.8s linear infinite;
}

@keyframes tamland-spin {
    to { transform: rotate(360deg); }
}