.modal-delete-product {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 99999;
    display: none;
    justify-content: center;
    align-items: center;
}

.modal-delete-product.open {
    display: flex;
    left: 0;
    top: 0;
    transform: none;
}

.h2-title {
    color: var(--color-primary-blue);
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 10px;
}

.modal-delete-product .internal-modal {
    width: 90%;
    max-width: 400px;
    background: #fff;
    padding: 41px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.modal-delete-product .internal-modal .text-modal {
    text-align: center;
}

.modal-delete-product .internal-modal .button-modal {
    display: flex;
    justify-content: space-between;
    margin-top: 28px;
    flex-direction: column-reverse;
    gap: 20px;
}

.modal-delete-product .internal-modal .button-modal .confirm-delete,
.modal-delete-product .internal-modal .button-modal .cancel-delete {
    border: 1px solid #05325F;
    padding: 11px 21px;
    background: var(--color-primary-blue);
    border-radius: 15px;
    font-weight: 400;
    cursor: pointer;
    color: #fff;
}

.modal-delete-product .internal-modal .button-modal .cancel-delete {
    border: 1px solid #05325F;
    color: var(--color-primary-blue);
    padding: 11px 21px;
    background: transparent;
    border-radius: 15px;
}