/* Reset básico e fontes */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth; /* Habilita a rolagem suave na página */
}

body, h1, ul, li, a {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f4f4f4;
}

/* Seção Hero */
.hero-section {
    position: relative;
    height: 100vh; /* Ocupa a altura total da tela */
    background-image: url('assets/bannerj.webp'); /* Caminho correto para a imagem */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

/* Adiciona uma sobreposição escura para melhorar a legibilidade do texto */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Preto com 40% de opacidade */
    z-index: 0; /* Garante que a sobreposição fique acima do fundo e abaixo do conteúdo */
}

/* Estilo para o vídeo de fundo */
.hero-section .hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1; /* Coloca o vídeo atrás do conteúdo do cabeçalho */
    background-color: #333; /* Cor de fallback caso o vídeo não carregue */
}

/* Navbar */
.navbar {
    position: absolute; /* Fica estática dentro da hero-section */
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between; /* Alinha as 3 seções */
    align-items: center;
    padding: 20px 50px;
    background-color: transparent; /* Fundo transparente inicial */
    z-index: 1; /* Garante que a navbar fique acima da sobreposição */
}

/* Estilo para a navbar padrão (não-transparente) em páginas internas */
.navbar--standard {
    position: static; /* Remove o posicionamento absoluto */
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    padding: 15px 50px;
}

.navbar--standard .navbar-brand,
.navbar--standard .navbar-nav a,
.navbar--standard .navbar-icon {
    color: #333; /* Cor escura para o texto e ícones */
    text-shadow: none; /* Remove a sombra do texto */
}

.navbar-left, .navbar-right {
    flex: 1; /* Ocupam espaço igual */
    display: flex;
    align-items: center;
}

.navbar-right {
    justify-content: flex-end; /* Alinha ícones à direita */
    gap: 20px;
}

.navbar-center {
    flex: 2; /* Ocupa mais espaço para garantir a centralização */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.navbar-icon {
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    transition: color 0.3s ease;
}

.shopping-bag-container {
    position: relative;
}

.bag-item-indicator {
    position: absolute;
    top: -2px;
    right: -4px;
    width: 10px;
    height: 10px;
    background-color: #e74c3c;
    border-radius: 50%;
    border: 2px solid #fff; /* Borda para destacar no fundo escuro */
    transform: scale(0); /* Começa invisível */
    transition: transform 0.2s ease;
    z-index: 1;
}

.navbar-brand {
    font-family: 'MonteCarlo', cursive;
    font-size: 2.8rem; /* Aumentado para melhor legibilidade da fonte cursiva */
    font-weight: 400; /* Peso correto para esta fonte */
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    text-decoration: none; /* Remove o sublinhado */
}

.navbar-nav {
    list-style: none;
    display: flex;
    gap: 40px; /* Aumenta o espaçamento entre os links */
    margin-top: 5px; /* Pequeno espaço abaixo do nome da marca */
}

.navbar-nav a {
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    font-weight: 300;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    transition: color 0.3s ease;
}

/* Estilo para o link de navegação ativo */
.navbar-nav a.active {
    /* A cor padrão do link ativo agora também é branca */
    color: #fff; 
    /* Mantemos o peso da fonte para indicar que é a página atual */
    font-weight: 400; 
}

/* O hover deve vir depois para ter prioridade */
.navbar-nav a:hover,
.navbar-nav a:focus {
    color: #D4AF37; /* Cor dourada no hover */
}

/* Conteúdo do Hero (Slogan) */
.hero-content h1 {
    font-family: 'MonteCarlo', cursive;
    font-size: 6rem; /* Levemente aumentado para a nova fonte */
    font-weight: 400;
    max-width: 800px;
    line-height: 1.1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7); /* Sombra para contraste */
    color: #fff; /* Garante que a cor do texto seja branca */
    transform: translateY(-40px); /* Ajusta a posição vertical do slogan */
}

/* --- Animação de Texto Flip --- */
.animated-title-container {
    height: 6.5rem; /* Altura para conter uma linha de texto. Ajuste se necessário. */
    overflow: hidden; /* Essencial para o efeito de flip */
}

.flipper-item {
    display: block; /* Garante que cada frase ocupe sua própria linha */
    height: 6.5rem; /* Define uma altura fixa igual à do contêiner */
    display: flex; /* Usa flexbox para centralizar o texto verticalmente */
    align-items: center; /* Alinha o texto no centro */
    justify-content: center; /* Alinha o texto no centro (horizontalmente) */
    font-family: 'MonteCarlo', cursive;
    font-size: 6rem;
    font-weight: 400;
    line-height: 1.1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    color: #fff;
}


/* Seta para rolar para baixo */
.scroll-down-arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    animation: bounce 2s infinite;
    cursor: pointer;
}

.navbar-icon:hover, .navbar-icon:focus,
.scroll-down-arrow:hover, .scroll-down-arrow:focus {
    color: #D4AF37; /* Cor dourada no hover */
}

/* Animação da seta */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Seção de Ocasiões */
.occasions-section {
    padding: 0px 50px; /* Padding vertical ainda mais reduzido */
    background-color: #fff;
}

.occasions-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px; /* Espaço entre as duas sub-seções */
}

.occasion-item {
    display: flex;
    align-items: center;
    gap: 60px; /* Diminui o espaço entre a imagem e o texto */
    justify-content: center; /* Centraliza o conteúdo (imagem + texto) */
}

.occasion-item--reverse {
    flex-direction: row-reverse;
}

.occasion-image {
    flex: 0.3; /* Define a proporção da imagem (ex: 40%) */
}

.occasion-image img {
    width: 100%;
    display: block;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.occasion-text {
    flex: 1;
    max-width: 480px; /* Limita a largura do bloco de texto */
}

.occasion-text p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 1.5em;
}

.text-detail-image {
    display: block;
    max-width: 200px; /* Garante que a imagem seja pequena */
    margin-top: 25px; /* Espaço entre o texto e a imagem */
    opacity: 0.8; /* Efeito sutil */
}

/* Seção de Produtos */
.products-section {
    padding: 10px 50px; /* Padding vertical removido */
    background-color: #fdfdfd;
    text-align: center;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px;
    text-align: center;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    border: 1px solid #D4AF37; /* Borda dourada fixa */
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-image-container {
    overflow: hidden; /* Garante que a imagem não vaze no hover */
}

.product-image-container img {
    width: 100%;
    height: 300px;
    object-fit: cover; /* Garante que a imagem cubra o espaço sem distorcer */
    display: block;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image-container img {
    transform: scale(1.05); /* Efeito de zoom sutil na imagem */
}

.product-info {
    padding: 20px;
    text-align: left;
}

.product-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #222;
    margin-bottom: 8px;
}

.price {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #555;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #D4AF37;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    margin-top: 15px;
    border: 1px solid transparent;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.cta-button:hover,
.cta-button:focus {
    background-color: #fff;
    color: #D4AF37;
    border-color: #D4AF37;
    outline: none; /* O contorno da borda já serve como indicador de foco */
}


/* Seção de Depoimentos */
.testimonials-section {
    padding: 40px 50px; /* Padding vertical ainda mais reduzido */
    background-color: #fdfdfd;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.stars {
    margin-bottom: 15px;
    color: #D4AF37; /* Cor dourada para as estrelas */
}

.testimonial-text {
    font-family: 'Poppins', sans-serif;
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1; /* Faz o texto ocupar o espaço disponível */
}

.customer-name {
    font-weight: 600;
    color: #333;
}

/* Rodapé */
.site-footer {
    background-color: #1a1a1a;
    color: #a0a0a0;
    padding: 60px 50px 20px;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.footer-brand {
    font-family: 'MonteCarlo', cursive;
    font-size: 2.5rem;
    color: #fff;
    margin: 0 0 10px;
    font-weight: 400;
}

.footer-tagline, .footer-column p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #a0a0a0;
    transition: color 0.3s ease;
}

.social-icons a svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.5;
}

.social-icons a:hover,
.social-icons a:focus {
    color: #D4AF37; /* Cor dourada no hover */
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 0.8rem;
}

/* --- Estilos para o Menu Off-canvas --- */

/* Base do Menu Lateral */
.off-canvas-menu {
    position: fixed; /* Fixa o menu na tela */
    top: 0;
    left: -100%; /* Inicia fora da tela, à esquerda */
    width: 80%; /* Largura do menu, ajuste conforme necessário */
    max-width: 300px; /* Largura máxima para telas maiores */
    height: 100%; /* Ocupa a altura total da tela */
    background-color: #fff; /* Fundo branco */
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3); /* Sombra para dar profundidade */
    z-index: 1000; /* Garante que o menu fique acima de outros elementos */
    transition: left 0.3s ease-out; /* Animação suave para o slide */
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-sizing: border-box; /* Inclui padding na largura total */
    overflow-y: auto; /* Adiciona scroll se o conteúdo for muito longo */
}

/* Estado quando o menu está aberto */
.off-canvas-menu.open {
    left: 0; /* Desliza para a posição visível */
}

/* Botão de Fechar */
.close-menu-btn {
    align-self: flex-end; /* Alinha o botão à direita */
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-bottom: 20px;
    color: #333; /* Cor do ícone */
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-menu-btn svg {
    width: 28px;
    height: 28px;
    stroke: #333;
}

/* Barra de Pesquisa Móvel */
.mobile-search-bar {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 8px 10px;
    margin-bottom: 30px;
    background-color: #f9f9f9;
}

.mobile-search-bar svg {
    margin-right: 10px;
    color: #777;
    min-width: 20px;
}

.mobile-search-bar input {
    border: none;
    outline: none;
    flex-grow: 1;
    font-size: 1rem;
    padding: 0;
    background-color: transparent;
    font-family: 'Poppins', sans-serif;
    color: #333;
}

.mobile-search-bar input::placeholder {
    color: #aaa;
}

/* Links de Navegação Móvel */
.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-links li {
    margin-bottom: 15px;
    /* Estado inicial para a animação */
    opacity: 0;
    transform: translateX(-20px);
    /* Transição suave para opacidade e posição */
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.mobile-nav-links li a {
    text-decoration: none;
    color: #333;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    display: block;
    padding: 5px 0;
    transition: color 0.2s ease;
}

.mobile-nav-links li a:hover,
.mobile-nav-links li a:focus {
    color: #D4AF37;
}

/* Estilo para o link ativo no menu móvel */
.mobile-nav-links li a.active {
    color: #D4AF37;
}

/* Separador opcional */
.mobile-nav-links .separator {
    border-top: 1px solid #eee;
    margin: 20px 0;
}

/* Quando o menu está aberto, anima os links para a posição final */
.off-canvas-menu.open .mobile-nav-links li {
    opacity: 1;
    transform: translateX(0);
}

/* Adiciona um atraso (delay) para cada item da lista, criando o efeito cascata */
.off-canvas-menu.open .mobile-nav-links li:nth-child(1) { transition-delay: 0.1s; }
.off-canvas-menu.open .mobile-nav-links li:nth-child(2) { transition-delay: 0.15s; }
.off-canvas-menu.open .mobile-nav-links li:nth-child(3) { transition-delay: 0.2s; }
.off-canvas-menu.open .mobile-nav-links li:nth-child(4) { transition-delay: 0.25s; } /* Separador */
.off-canvas-menu.open .mobile-nav-links li:nth-child(5) { transition-delay: 0.3s; }
.off-canvas-menu.open .mobile-nav-links li:nth-child(6) { transition-delay: 0.35s; }
.off-canvas-menu.open .mobile-nav-links li:nth-child(7) { transition-delay: 0.4s; }


/* --- Estilos para o Overlay do Menu --- */
#menu-overlay {
    position: fixed; /* Fixo para cobrir a tela inteira */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Fundo preto semi-transparente */
    z-index: 999; /* Fica atrás do menu (z-index: 1000), mas na frente do resto */
    
    /* Escondido por padrão */
    opacity: 0;
    visibility: hidden;
    
    transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
}

#menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* --- Botão WhatsApp --- */
.whatsapp-btn {
    position: fixed;
    bottom: 95px; /* Posição acima do botão 'Voltar ao Topo' (30px + 50px + 15px de espaço) */
    right: 30px;
    background-color: #D4AF37; /* Mesma cor do botão de voltar ao topo */
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 998;
    transition: transform 0.3s ease;
}

.whatsapp-btn svg {
    fill: #fff; /* Garante que o ícone SVG seja branco */
    width: 28px; /* Ajusta o tamanho se necessário */
    height: 28px;
}

/* --- Botão Voltar ao Topo --- */
.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #D4AF37; /* Cor dourada do tema */
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%; /* Deixa o botão circular */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 998; /* Garante que fique acima da maioria dos elementos */

    /* Estado inicial: escondido */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px); /* Efeito sutil de subida */
    transition: opacity 0.3s ease-out, visibility 0.3s ease-out, transform 0.3s ease-out;
}

.back-to-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* --- Animação de Fade-in ao Rolar --- */
.fade-in-element {
    opacity: 0;
    transform: translateY(20px); /* Começa um pouco para baixo */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-element.is-visible {
    opacity: 1;
    transform: translateY(0); /* Volta para a posição original */
}

/* --- Seção FAQ --- */
.faq-section {
    padding: 80px 50px;
    background-color: #fff;
    text-align: center;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
}

.faq-arrow {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    overflow: hidden;
    /* GSAP irá controlar a altura e visibilidade */
}

.faq-answer p {
    padding: 0 10px 20px;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    color: #555;
    line-height: 1.6;
}

/* --- Seção Newsletter --- */
.newsletter-section {
    padding: 80px 50px;
    background-color: #f9f9f9;
    text-align: center;
}

.newsletter-section .container, .newsletter-section .newsletter-form {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-section h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.newsletter-section p {
    color: #555;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.newsletter-form input {
    flex: 1;
    min-width: 200px;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: 2px solid #D4AF37;
    border-color: #D4AF37;
}

/* Ajuste específico para o botão na newsletter */
.newsletter-form .cta-button {
    padding: 12px 25px; /* Aumenta o padding vertical para corresponder ao input */
    font-size: 1rem;      /* Iguala o tamanho da fonte */
    margin-top: 0;        /* Remove a margem superior que não é mais necessária no flexbox */
    border-radius: 4px;   /* Opcional: deixa o botão retangular como os inputs */
}

/* --- Estilos do Pop-up da Sacola --- */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    width: 90%;
    max-width: 400px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.popup-overlay.show, .popup.show {
    opacity: 1;
    visibility: visible;
}

/* --- Media Queries para Responsividade Mobile --- */

@media (max-width: 768px) {
    /* --- Ajustes Gerais --- */
    .navbar,
    .occasions-section,
    .products-section,
    .testimonials-section,
    .faq-section,
    .newsletter-section,
    .site-footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    /* --- Navbar --- */
    .navbar-nav {
        display: none; /* Esconde a navegação principal no mobile */
    }
    .navbar-center .navbar-brand {
        font-size: 2.5rem;
    }

    /* --- Hero Section --- */
    .hero-content h1,
    .flipper-item {
        font-size: 3.5rem; /* Reduz o tamanho da fonte do slogan */
    }
    .animated-title-container,
    .flipper-item {
        height: 5.5rem; /* Aumenta a altura para evitar corte no mobile */
    }

    /* --- Seção Ocasiões --- */
    .occasion-item,
    .occasion-item--reverse {
        flex-direction: column; /* Empilha imagem e texto */
        gap: 30px;
    }
    .occasion-text {
        text-align: center;
    }
    .text-detail-image {
        margin-left: auto;
        margin-right: auto;
    }

    /* --- Seção Produtos --- */
    .product-grid {
        gap: 20px;
    }

    /* --- Seção Depoimentos --- */
    .testimonials-grid {
        gap: 20px;
    }

    /* --- Seção FAQ --- */
    .faq-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    /* --- Rodapé --- */
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .social-icons {
        justify-content: center;
    }
}

.popup.show {
    transform: translate(-50%, -50%) scale(1);
}

.close-popup-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    cursor: pointer;
    color: #888;
}

.popup-icon {
    margin-bottom: 20px;
}

.popup-content p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 30px;
}