/* --- ISOLAMENTO DA ÁREA DE PÁSCOA --- */
.area-pascoa {
    background-color: #ffffff !important; /* Força fundo branco só aqui */
    color: #333333 !important;           /* Força texto escuro só aqui */
    padding: 60px 0;
    font-family: 'Segoe UI', sans-serif;
}

/* Garante que títulos dentro da área de páscoa sejam escuros */
.area-pascoa h1, 
.area-pascoa h2, 
.area-pascoa h3, 
.area-pascoa p,
.area-pascoa span:not(#novo) {
    color: #333333 !important;
}

/* Container de Filtros */
.area-pascoa .PASCOA-CATEGORIAS {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.area-pascoa .btn-filtro {
    background: #fff;
    border: 1px solid #e0e0e0;
    color: #666 !important; /* Texto do botão */
    padding: 10px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.area-pascoa .btn-filtro.active {
    background: #4A0E0E !important;
    color: #ffffff !important;
    border-color: #4A0E0E;
}

/* Layout em Duas Colunas */
.area-pascoa .LOJA-CONTEUDO {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
    padding: 20px;
}

.area-pascoa .VITRINE-ESQUERDA { flex: 1; }

.area-pascoa .VITRINE-GRID {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 25px;
}

/* Card de Produto */
.area-pascoa .CARD-PASCOA {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 15px;
    padding: 15px;
    text-align: center;
}

.area-pascoa .CARD-PASCOA img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
}

/* Carrinho Lateral */
.area-pascoa .CARRINHO-DIREITA { width: 350px; }

.area-pascoa .CARD-PEDIDO {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 25px;
    position: sticky;
    top: 100px; /* Ajustado para não bater no seu header fixo */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Botão de Compra */
.area-pascoa .BTN-COMPRAR {
    background: #4A0E0E;
    color: #fff !important;
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
}

/* Ajuste para o ID #novo não sumir no fundo branco */
#novo {
    color: #4A0E0E !important; /* Mudei para vinho para aparecer no branco */
    font-weight: bold;
}

/* Responsividade */
@media (max-width: 900px) {
    .area-pascoa .LOJA-CONTEUDO { flex-direction: column; }
    .area-pascoa .CARRINHO-DIREITA { width: 100%; }
    .area-pascoa .CARD-PEDIDO { position: relative; top: 0; }
}

/* Título da Seção */
.area-pascoa .titulo-sessao {
    text-align: center;
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: #4A0E0E !important;
    margin-bottom: 10px;
    padding-top: 20px;
}

.area-pascoa .titulo-sessao span {
    color: #770623; /* Bordô Katia Boni */
    font-weight: bold;
}

/* Container dos Filtros */
.area-pascoa .PASCOA-CATEGORIAS {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 30px 0 50px 0;
    flex-wrap: wrap;
}

/* Botões de Filtro Elegantes */
.area-pascoa .btn-filtro {
    background: transparent;
    border: 1px solid #dcdcdc;
    color: #4A0E0E !important; /* Cor do texto forçada */
    padding: 12px 28px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

/* Botão Ativo ou Hover */
.area-pascoa .btn-filtro:hover, 
.area-pascoa .btn-filtro.active {
    background: #4A0E0E !important;
    color: #ffffff !important; /* Texto fica branco no fundo escuro */
    border-color: #4A0E0E;
    box-shadow: 0 4px 15px rgba(74, 14, 14, 0.2);
    transform: translateY(-2px);
}

/* Garante visibilidade em telas menores */
@media (max-width: 768px) {
    .area-pascoa .btn-filtro {
        padding: 8px 18px;
        font-size: 0.75rem;
    }
    .area-pascoa .titulo-sessao {
        font-size: 1.8rem;
    }
}

/* --- ESTILO DO CARRINHO (DENTRO DA AREA PASCOA) --- */

.area-pascoa .CARRINHO-DIREITA {
    width: 350px;
}

.area-pascoa .CARD-PEDIDO {
    background: #ffffff !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 20px;
    padding: 25px;
    position: sticky;
    top: 120px; /* Evita bater no seu header fixo */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Título Seu Pedido */
.area-pascoa .CARD-PEDIDO h3 {
    color: #4A0E0E !important;
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #f8f8f8;
    padding-bottom: 10px;
    text-align: center;
}

/* Área onde os itens aparecem */
#itens-carrinho {
    margin-bottom: 20px;
    max-height: 300px;
    overflow-y: auto;
    color: #333 !important;
}

/* Estilo do Total */
.area-pascoa #resumo-carrinho {
    background: #fdfaf9;
    padding: 15px;
    border-radius: 12px;
    border: 1px dashed #dcdcdc;
}

.area-pascoa #resumo-carrinho p {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    color: #333 !important;
    margin: 0;
    font-size: 1.1rem;
}

.area-pascoa #total-produtos {
    color: #770623 !important; /* Cor Bordô Katia Boni */
    font-size: 1.2rem;
}

/* Botão WhatsApp do Carrinho */
.area-pascoa .BTN-FINALIZAR {
    background: #25d366 !important; /* Verde WhatsApp */
    color: #ffffff !important;
    border: none;
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: 15px;
    transition: transform 0.2s ease, background 0.2s ease;
    display: block;
    text-align: center;
}

.area-pascoa .BTN-FINALIZAR:hover {
    background: #1eb954 !important;
    transform: scale(1.02);
}

/* Ajuste Mobile */
@media (max-width: 900px) {
    .area-pascoa .CARRINHO-DIREITA {
        width: 100%;
        margin-top: 40px;
    }
    .area-pascoa .CARD-PEDIDO {
        position: relative;
        top: 0;
    }
}

.TAG-CATEGORIA {
    background: #f0f0f0;
    color: #4A0E0E;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
}