.elementor-1482 .elementor-element.elementor-element-53cdcf1{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1482 .elementor-element.elementor-element-53cdcf1:not(.elementor-motion-effects-element-type-background), .elementor-1482 .elementor-element.elementor-element-53cdcf1 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#222222;}/* Start custom CSS for shortcode, class: .elementor-element-e42e7d7 *//* ==========================================
   LAYOUT DO CATÁLOGO: APENAS GRID (SEM MENU)
============================================= */

/* 1. Estrutura Principal */
.dfc-catalogo-wrapper {
    display: block !important; /* Mudei de flex para block já que não tem mais itens lado a lado */
    padding: 40px 20px;
    background-color: #222222; 
    font-family: 'Arial', sans-serif;
    box-sizing: border-box;
}

/* 2. ESCONDER O MENU LATERAL DEFINITIVAMENTE */
.dfc-sidebar-filtros {
    display: none !important;
}

/* 3. ÁREA DO GRID DE PRODUTOS (Ocupando 100%) */
.dfc-grid-produtos {
    width: 100% !important;
}

/* A Grade (Responsiva automaticamente) */
.dfc-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important; /* Calcula colunas sozinho */
    gap: 20px !important;
}

/* ==========================================
   O CARD DO PRODUTO 
============================================= */
.dfc-produto-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 100%; /* Faz todos os cards terem a mesma altura */
    box-sizing: border-box;
}

/* Imagem do Produto (Altura fixa 210px) */
.dfc-produto-thumbnail {
    width: 100%; 
    height: 210px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f5f5f5;
}

.dfc-produto-thumbnail a {
    display: block;
    width: 100%;
    height: 100%;
}

.dfc-produto-thumbnail img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important; 
    display: block;
}

/* Informações Internas */
.dfc-produto-info {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Cabeçalho do Card */
.dfc-produto-header {
    display: block; 
    position: relative;
    margin-bottom: 2px;
    padding-right: 45px;
    min-height: 40px;
}

.dfc-produto-titulo {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.2;
}

.dfc-produto-titulo a {
    text-decoration: none;
    color: #000000;
}

/* Selo Cinza da Tatuagem */
.dfc-produto-tatuagem {
    font-size: 0.85rem;
    color: #555555;
    background-color: #f2f2f2;
    padding: 5px 10px;
    border-radius: 6px;
    display: inline-block; 
    width: fit-content;    
    margin-bottom: 15px;
    margin-top: 5px;
    font-weight: 600;
}

/* Logo Circular Redondo */
.dfc-produto-logo-placeholder {
    position: absolute;
    right: 0;
    top: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #f0f0f0; 
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dfc-card-logo-direct {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Botão de Comprar */
.dfc-botao-detalhes {
    width: 100%;
    background-color: #222222;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 12px 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease;
    margin-top: auto;
}

.dfc-botao-detalhes:hover {
    background-color: #444444;
}

/* ==========================================
   BOTÃO "CARREGAR MAIS" E PAGINAÇÃO
============================================= */
.dfc-pagination-area {
    text-align: center;
    margin-top: 40px;
    width: 100%;
}

.dfc-load-more-btn {
    background-color: #f5b700;
    color: #1a1a1a;
    border: none;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dfc-load-more-btn:hover {
    background-color: #d49e00;
}/* End custom CSS */

