/* Cards dos produtos */
.produto {
    border-radius: 12px;
    transition: all .3s ease;
}

.produto:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(255,195,0,.35);
}

/* Botões */
.botao,
.botao-comprar,
.botao-commerce {
    background: linear-gradient(90deg,#d90429,#ff7b00)!important;
    border: none!important;
    color:#fff!important;
    font-weight:700!important;
    text-transform:uppercase;
    border-radius:8px!important;
}

.botao:hover,
.botao-comprar:hover,
.botao-commerce:hover {
    transform:scale(1.03);
}

/* Barra de busca */
#barraBusca,
.barra-superior {
    border-radius:10px;
}
body {
    background:#111111;
}

#corpo {
    background:#111111;
}
/* Destaque nos produtos */
.produto {
    transition: all 0.3s ease;
    border-radius: 12px;
}

.produto:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(255,195,0,0.4);
}

/* Imagem dos produtos */
.produto img {
    transition: all 0.3s ease;
}

.produto:hover img {
    transform: scale(1.03);
}

/* Nome dos produtos */
.nome-produto,
.product-name {
    font-weight: 700;
}

/* Preço */
.preco-promocional,
.preco-venda {
    color: #d90429 !important;
    font-weight: bold;
}

/* Cabeçalho */
.top-header,
.header {
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}
.snj-barra{
    background:#d90429;
    color:#fff;
    text-align:center;
    padding:10px;
    font-weight:bold;
    font-size:14px;
}
.logo img {
    max-height: 120px !important;
}
.caixa-busca,
.busca {
    border-radius: 10px;
    border: 2px solid #d90429;
}
#cabecalho,
.header,
.topo {
    background: #111 !important;
}
.footer,
#rodape {
    background:#0d0d0d !important;
}
#rodape h3,
#rodape h4 {
    color:#FFC300 !important;
}