.ajaxForm {
    display: none;
    align-items: center;
    opacity: 0;
    transition: .3s ease-in-out all;
    border-top: 1px solid rgba(0, 0, 0, 0.16);
}

.quantityControls {
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 50%;
}

.quantityControls button {
    width: 50px;
    height: 50px;
    border: none;
    cursor: pointer;
    background: transparent;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3;
}

.quantityControls button:hover {
    background: #e0e0e0;
}

.quantityInput {
    width: calc(100% - 100px);
    height: 50px;
    text-align: center;
    border: none;
    cursor: default;
}

.quantityInput::-webkit-outer-spin-button,
.quantityInput::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.addButton {
    width: 50%;
    height: 50px;
    background: linear-gradient(90.04deg, #F974A3 0%, #F14A7E 100%);
    color: white;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s;
}

.addButton:hover {
    background-color: #e25ac9;
}

.addButton.loading {
    opacity: 0.7;
    pointer-events: none;
}

.ajaxMessage {
    margin-left: 10px;
    color: #4CAF50;
    font-size: 14px;
}