/* Quantity Buttons Styling */
.woocommerce .quantity {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-color: transparent;
    border-radius: 10px;
    padding: 5px 10px;
    width: fit-content;
}

.quantity-label {
    flex-basis: 100%;
    /* Take full width to force new line */
    width: 100%;
    font-weight: bold;
    color: #000;
    margin-bottom: 10px;
    font-size: 16px;
}

.woocommerce .quantity button {
    background: transparent !important;
    border: none;
    border-radius: 0;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    color: #333;
    line-height: 1.4;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 40px;
    margin: 0 !important;
    transition: all 0.3s ease;
}

.woocommerce .quantity button:hover {
    color: #fff;
    background-color: #3559c7 !important;
}

.woocommerce .quantity input.qty {
    background: #f5f5f5;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    width: 80px;
    height: 40px !important;
    /* Adjust width appropriately */
    color: #333;
    -moz-appearance: textfield;
    /* Remove spin buttons for number input */
    appearance: textfield;
    padding: 0;
    transition: all 0.3s ease;
}

/* Remove default spin buttons */
.woocommerce .quantity input.qty::-webkit-outer-spin-button,
.woocommerce .quantity input.qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}