:root {
    --primary-color: #BFA100;
    --primary-color-darker: #9d8401;

}

/* Adjust the z-index of the table */
.woocommerce-checkout-review-order-table {
    z-index: 10;
}

/* Adjust the z-index of the blockUI overlay */
.blockUI.blockOverlay {
    display: none!important;
}

.blockUI.blockOverlay.show {
    display: block!important;
}


.checkout-quantity-wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
}

.checkout-quantity-wrapper button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 6px 12px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    border-radius: 4px;
    transition: background 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
}

.checkout-quantity-wrapper button:hover {
    background: var(--primary-color-darker);
}

.checkout-quantity {
    width: 50px;
    text-align: center;
    font-size: 16px;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    padding: 5px;
}

.loading-spinner {
    display: none;
    width: 24px;
    height: 24px;
    border: 3px solid rgba(0, 0, 0, 0.15);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    position: relative;
    left: -83px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: spin 1.2s linear infinite, pulse-opacity 1.5s ease-in-out infinite;
}

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

@keyframes pulse-opacity {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}
