/* Estilo do Popup */
#mc-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: white;
    color: #333;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    z-index: 1000;
    width: 300px;
    border: 1px solid #e0e0e0;
}

/* Estilo do Título */
#mc-popup strong {
    font-weight: bold;
    font-size: 16px;
    color: #000;
    display: block;
    margin-bottom: 10px;
}

/* Estilo da Descrição */
#mc-popup p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

/* Estilo do Botão de Adicionar ao Carrinho */
#mc-popup .add-to-cart-button {
    background-color: #333;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    width: 100%;
}

#mc-popup .add-to-cart-button .cart-icon {
    margin-right: 8px;
}

/* Estilo do Ícone do Carrinho */
#mc-popup .add-to-cart-button .cart-icon {
    width: 16px;
    height: 16px;
    fill: white;
}

/* Efeito de Hover no Botão */
#mc-popup .add-to-cart-button:hover {
    background-color: #444;
}

/* Fundo Geral da Página */
body {
    background-color: #f9f9f9;
}

/* Sombra e Efeito de Flutuação */
#mc-popup {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#mc-popup:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}