/* O fundo escurecido */
#suw-modal-overlay {
    display: none; /* Escondido por padrão */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9998;
}

/* O conteúdo do popup (branco e centralizado) */
#suw-modal-content {
    display: none; /* Escondido por padrão */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 9999;
    width: 90%;
    max-width: 450px; /* Largura máxima do popup */
    text-align: center;
}

/* Estilo da mensagem */
#suw-modal-content p {
    font-size: 1.1em;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.5;
}

/* Botão de fechar (X) no canto */
#suw-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    color: #aaa;
    cursor: pointer;
    line-height: 1;
}
#suw-modal-close:hover {
    color: #333;
}

/* Botão de confirmação */
#suw-confirm-add {
    width: 100%;
	font-size: 1rem !important;
    /* O WooCommerce geralmente já define o estilo de .button.alt */
    /* Você pode adicionar mais estilos aqui se desejar */
}
#suw-confirm-add:before {
    content: "\e90c";
    font-family: 'xstore-icons';
	padding-right: 6px;
}