/* Quantity Buttons Styling */
.quantity {
    display: inline-flex !important;
    align-items: center;
    border: 1px solid #000000;
    border-radius: 6px; /* Slightly smaller radius to match smaller size */
    overflow: hidden;
    height: 32px; /* Reduced from 40px */
}

.quantity .qty-btn {
    background-color: transparent !important;
    border: none !important;
    color: #000000 !important;
    font-size: 16px; /* Reduced from 20px */
    font-weight: bold;
    width: 28px; /* Reduced from 35px */
    height: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    outline: none !important;
}

.quantity .qty-btn:hover {
    background-color: #f5f5f5 !important;
}

.quantity .qty {
    border: none !important;
    border-left: 1px solid #000000 !important;
    border-right: 1px solid #000000 !important;
    border-radius: 0 !important;
    width: 36px !important; /* Reduced from 45px */
    height: 100% !important;
    text-align: center;
    font-weight: bold;
    font-size: 14px; /* Added explicit smaller font size for input */
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    outline: none !important;
    background-color: transparent !important;
    -moz-appearance: textfield;
}

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