/* Google Fonts - Combinação clássica para luxo */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Montserrat:wght@400;500&display=swap');

/* Variáveis de Cor para o Tema Claro */
:root {
    --gold: #B48F5B; /* Dourado elegante */
    --bg-light: #f8f9fa; /* Fundo geral (cinza bem claro) */
    --bg-white: #ffffff; /* Fundo dos cards e header */
    --text-dark: #212529; /* Texto principal */
    --text-muted: #6c757d; /* Texto secundário */
    --border-color: #e9ecef;
}

body {
    /* A linha abaixo foi removida para que o fundo fique transparente */
    /* background-color: var(--bg-light) !important; */ 
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    font-weight: 400;
}

/* Header */
.site-header {
    border-bottom: 1px solid var(--border-color);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark) !important;
    font-size: 1.6rem;
}
.navbar-brand i {
    color: var(--gold);
}

/* Títulos de Seção */
.section-title {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    font-size: 2.5rem;
    font-weight: 700;
}

/* Botões de Filtro */
.btn-filter {
    font-family: 'Montserrat', sans-serif;
    background: transparent;
    border: 1px solid #ddd;
    color: var(--text-muted);
    padding: 8px 25px;
    margin: 5px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}
.btn-filter:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--bg-white);
}
.btn-filter.active {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--bg-white);
    font-weight: 500;
}

/* Cards de Produto - Onde a mágica acontece */
.product-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden; /* Garante que a imagem com zoom não saia do card */
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

/* Wrapper da imagem para controlar o zoom */
.product-image-wrapper {
    overflow: hidden; /* Essencial para o efeito de zoom */
    height: 320px;
}
.product-card .card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease; /* Animação do zoom */
}
.product-card:hover .card-img-top {
    transform: scale(1.05); /* Efeito de zoom na imagem */
}

.product-card .card-body {
    padding: 20px;
}
.product-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 1px;
    font-weight: 500;
}
.product-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--text-dark);
    font-weight: 700;
}
.product-description {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.5;
}
.btn-whatsapp {
    background-color: var(--gold);
    border: 1px solid var(--gold);
    color: var(--bg-white);
    font-weight: 500;
    padding: 10px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}
.btn-whatsapp:hover {
    background-color: #a37f50; /* Um tom de dourado um pouco mais escuro */
    border-color: #a37f50;
    color: var(--bg-white);
}

/* Footer */
footer {
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
}
footer a {
    text-decoration: none;
}
footer a:hover {
    color: var(--gold) !important;
}

/* Carrossel */
.carousel-item img {
    height: 50vh;
    object-fit: cover;
    filter: brightness(0.9) contrast(1.05); /* Suaviza a imagem sem escurecer demais */
}
.carousel-caption {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 10px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Páginas de Login e Admin (ajustado para o tema escuro original, se precisar) */
.login-container, .admin-container {
    background-color: #111;
    min-height: 100vh;
}
.form-wrapper {
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: 10px;
    border: 1px solid #333;
}
.form-control {
    background-color: #333;
    border: 1px solid #555;
    color: #e0e0e0;
}
.form-control:focus {
    background-color: #333;
    border-color: var(--gold);
    color: #e0e0e0;
    box-shadow: 0 0 0 0.25rem rgba(180, 143, 91, 0.25);
}
.form-label {
    color: #ccc;
}

/* Estilo da Paginação do Carrossel "Mais Vendidos" */
.bestsellers-swiper .swiper-pagination-bullet-active {
    background-color: var(--gold);
}

#particles-js {
  position: fixed; /* Fica fixo na tela */
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1; /* Garante que fique atrás de todo o conteúdo */
  background-color: #f8f9fa; /* Cor de fundo do seu site */
}

/* ========================================= */
/* ===== RODAPÉ PROFISSIONAL (NOVO) ======== */
/* ========================================= */
.site-footer-pro {
    background-color: var(--bg-white);
    color: var(--text-muted);
    border-top: 1px solid var(--border-color);
}
.site-footer-pro h5 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    letter-spacing: 1px;
}
.site-footer-pro h5 i {
    color: var(--gold);
}
.site-footer-pro p, 
.site-footer-pro li {
    font-size: 0.9rem;
}
.site-footer-pro .list-unstyled a {
    text-decoration: none;
    transition: all 0.3s ease;
}
.site-footer-pro .list-unstyled a:hover {
    color: var(--gold) !important;
    padding-left: 5px; /* Efeito sutil de deslocamento */
}
.site-footer-pro i {
    color: var(--gold);
    font-size: 1.1rem;
}
.footer-bottom {
    background-color: var(--border-color);
    font-size: 0.8rem;
    color: var(--text-muted);
}
/* ========================================= */
/* ===== LÓGICA PARA FILTRO INICIAL ======== */
/* ========================================= */
/* Classe única para esconder/mostrar produtos do filtro */
.product-item.hidden {
    display: none;
}