/* --- 1. FUNDO UNIFICADO E REMOÇÃO DE BLOCOS BRANCOS --- */
body, #corpo, .conteiner, .secao-principal, .conteudo-paginas, .caixa-sombreada {
    background-color: #001816 !important;
    border: none !important;
    box-shadow: none !important;
    color: #f1f1f1 !important;
}

/* --- 2. CABEÇALHO E BUSCA --- */
#cabecalho, .barra-inicial, .menu.superior {
    background-color: #001816 !important;
}

.busca, .busca input {
    background-color: #002623 !important;
    border: 1px solid #004d47 !important;
    color: #ffffff !important;
}

/* --- 3. MENU LATERAL (ESTILO DARK COM BORDA) --- */
.coluna .componente, .menu.lateral, .menu.lateral .nivel-um {
    background-color: transparent !important;
    border: none !important;
}

.menu.lateral .nivel-um > li {
    background-color: #002623 !important; 
    border: 1px solid #004d47 !important; 
    margin-bottom: 5px;
    border-radius: 4px;
}

.menu.lateral .nivel-um > li > a {
    color: #e2c08d !important;
    font-weight: bold;
    padding: 12px 10px !important;
    display: block;
    font-size: 15px;
}

/* --- 4. TEXTOS E VITRINE --- */
.nome-produto, .titulo-categoria, h1, h2, h3 {
    color: #e2c08d !important;
    text-transform: uppercase;
    font-weight: bold !important; /* Títulos mais marcantes */
}

.preco-venda {
    color: #ffffff !important;
    font-weight: bold;
}

.listagem-item, .listagem .span3 {
    background-color: #002623 !important;
    border: 1px solid #004d47 !important;
}

/* --- 5. BOTÃO DE COMPRAR (DESTAQUE) --- */
.botao-comprar, .botao-finalizar-compra {
    background-color: #d97706 !important;
    color: #ffffff !important;
    border: none !important;
    font-weight: bold;
    text-transform: uppercase;
}

/* --- 6. AJUSTES EXCLUSIVOS PARA CELULAR (MOBILE) --- */
@media (max-width: 767px) {
    /* Aumenta os links do menu lateral para facilitar o toque */
    .menu.lateral .nivel-um > li > a {
        font-size: 17px !important;
        padding: 16px 12px !important;
    }
    
    /* Nome do Disco/Artista maior e em negrito no celular */
    .nome-produto {
        font-size: 16px !important;
        line-height: 1.2 !important;
        margin-bottom: 10px !important;
        display: block !important;
        height: auto !important;
    }

    /* Preço maior para facilitar a visualização rápida */
    .preco-venda {
        font-size: 18px !important;
    }

    /* Ajuste para o banner não ficar com bordas sobrando */
    .banner-principal {
        margin-top: 10px !important;
    }
}