/* ==============================
   MODAL EXCLUIR PRODUTO
============================== */

#modalExcluirProduto .modal-dialog {
    max-width: 500px;
}

#modalExcluirProduto .modal-content {
    border: none;
    border-radius: 22px;
    overflow: hidden;
    background: #fffaf8;
    box-shadow: 0 20px 60px rgba(97, 45, 54, 0.25);
}

/* Cabeçalho rosa */
#modalExcluirProduto .modal-header {
    border: none;
    padding: 24px 28px;
    background: linear-gradient(
        135deg,
        #d35c88,
        #c94f7b
    );
}

#modalExcluirProduto .modal-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    color: #ffffff;
    font-family: "Playfair Display", serif;
    font-size: 1.55rem;
    font-weight: 700;
}

#modalExcluirProduto .modal-title i {
    color: #ffffff !important;
    font-size: 1.35rem;
}

/* Botão fechar */
#modalExcluirProduto .btn-close {
    filter: brightness(0) invert(1);
    opacity: 1;
}

#modalExcluirProduto .btn-close:hover {
    opacity: 0.75;
}

/* Corpo */
#modalExcluirProduto .modal-body {
    padding: 32px 34px 24px;
    background: #fffaf8;
}

#modalExcluirProduto .modal-body p:first-child {
    margin-bottom: 10px !important;
    color: #74575d;
    font-size: 1rem;
}

#nomeProdutoExcluir {
    display: block;
    color: #5f2631;
    font-size: 1.2rem;
    font-weight: 700;
}

#modalExcluirProduto .modal-body .text-danger {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px !important;
    padding: 12px 14px;
    border: 1px solid #f3c7d2;
    border-radius: 12px;
    background: #fff0f4;
    color: #bd4769 !important;
    font-size: 0.9rem;
}

/* Rodapé */
#modalExcluirProduto .modal-footer {
    gap: 14px;
    padding: 12px 34px 30px;
    border: none;
    background: #fffaf8;
}

#modalExcluirProduto .modal-footer .btn {
    min-height: 48px;
    border-radius: 12px;
    padding: 10px 24px;
    font-weight: 600;
}

/* Botão cancelar */
#modalExcluirProduto .btn-secondary {
    flex: 1;
    border: 1px solid #dbcdd0;
    background: #f3edeb;
    color: #6d5157;
}

#modalExcluirProduto .btn-secondary:hover {
    border-color: #d7bfc5;
    background: #eadfdd;
    color: #5f2631;
}

/* Botão excluir */
#modalExcluirProduto .btn-danger {
    flex: 1;
    border: 1px solid #cf557b;
    background: #cf557b;
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(207, 85, 123, 0.25);
}

#modalExcluirProduto .btn-danger:hover {
    border-color: #b94268;
    background: #b94268;
    color: #ffffff;
    transform: translateY(-1px);
}

#modalExcluirProduto .btn-danger:active {
    transform: translateY(0);
}

/* Fundo escurecido */
.modal-backdrop.show {
    opacity: 0.55;
}