/* 隱藏原生箭頭 */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* 為 Firefox 隱藏箭頭 */
input[type="number"] {
    -moz-appearance: textfield;
}

/* 自定義按钮样式 */
.custom-quantity-wrapper {
    display: inline-flex;
    align-items: center;
}

.custom-quantity-wrapper .minus,
.custom-quantity-wrapper .plus {
    background-color: #ddd;
    border: none;
    padding: 8px;
    cursor: pointer;
}

.custom-quantity-wrapper .minus {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.custom-quantity-wrapper .plus {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}