/**
 * Custom Quantity Buttons Styles
 */
.custom-quantity-buttons {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    width: fit-content;
}

.quantity-btn {
    background-color: #f7f7f7;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
}

.quantity-btn:hover {
    background-color: #e7e7e7;
}

.custom-quantity-buttons input[type="number"] {
    border: none;
    width: 60px;
    text-align: center;
    -moz-appearance: textfield;
    margin: 0;
    padding: 8px 5px;
}

.custom-quantity-buttons input[type="number"]::-webkit-outer-spin-button,
.custom-quantity-buttons input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}