/* Quantity Plus Minus Styles */
.quantity-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.quantity-minus,
.quantity-plus {
    background: #f5f5f5;
    border: 1px solid #ddd;
    width: 30px;
    height: 30px;
    line-height: 28px;
    text-align: center;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s;
}

.quantity-minus:hover,
.quantity-plus:hover {
    background: #e0e0e0;
}

.quantity-minus {
    border-right: none;
    border-radius: 3px 0 0 3px;
}

.quantity-plus {
    border-left: none;
    border-radius: 0 3px 3px 0;
}

.woocommerce .quantity input.qty {
    width: 50px;
    height: 30px;
    text-align: center;
    border-radius: 0;
    border: 1px solid #ddd;
    margin: 0;
    -moz-appearance: textfield;
}

.woocommerce .quantity input::-webkit-outer-spin-button,
.woocommerce .quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}