.modal-wrap {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal {
    height: auto;
    width: 380px;
    text-align: center;
    background-color: #101010;
    padding: 40px;
    margin-bottom: 96px;
    border-radius: 16px;
}

.modal.fade-enter-from,
.modal.fade-leave-to {
    opacity: 0;
    transform: translateY(24px);
}

.modal.fade-enter-to,
.modal.fade-leave-from {
    opacity: 1;
    transform: translateY(0);
}

.modal.fade-enter-active,
.modal.fade-leave-active {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.modal-icon {
    height: 96px;
    width: 96px;
    color: #97041D;
    margin-bottom: 16px;
}

.modal h3 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 8px;
}

.modal p {
    font-size: 20px;
    color: #B5B5B5;
}

.modal-primary-button {
    height: 64px;
    width: 100%;
    margin-top: 32px;
    background-color: #97041D;
    color: white;
    font-size: 20px;
    border: 0;
    border-radius: 12px; 
    font-weight: 500;  
    transition: all 0.2s;
}

.modal-primary-button:hover {
    background-color: #6e0012;
}



/* PRODUCT Modal */
.product-add-wrap {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    /* display: none; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-add-modal {
    height: auto;
    width: 460px;
    background-color: #101010;
    padding: 24px;
    border-radius: 16px;
    position: relative;
    max-height: 94vh;
    overflow-y: scroll;
}

.add-mod-wrap {
    position: relative;
}

.product-add-close {
    position: absolute;
    top: 0;
    right: -64px;
    height: 48px;
    width: 48px;
    background-color: #101010;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.product-add-close:hover {
    background-color: #97041D;
}



.product-add-modal::-webkit-scrollbar {
    width: 5px;
}

.product-add-modal::-webkit-scrollbar-track {
    background: transparent;
}

.product-add-modal::-webkit-scrollbar-thumb {
    background-color: #97041D;
    border-radius: 10px;
    border: none;
}

.product-add-modal::-webkit-scrollbar-button {
    display: none;
}

.product-add-modal img {
    width: 100%;
    border-radius: 16px;
}

.product-add-modal h3 {
    font-size: 32px;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 8px;
}

.product-add-modal p {
    margin-bottom:8px;  
    color: #B5B5B5;
    font-size: 16px;
    line-height: 140%;
}

.custom-options {
    margin-top: 24px;
}

.custom-options h4 {
    font-weight: 500;
    font-size: 20px;
}

.add-alergens {
    margin-bottom: 16px;
}


@media only screen and (max-width: 440px) {
    .modal {
        width: 92%;
        padding: 32px;
    }

    .modal h3 {
        font-size: 24px;
    }

    .modal p {
        font-size: 16px;
        color: #B5B5B5;
    }
}