
    body {
    background: var(--color-background);
    margin: 0;
    padding: 0;
}

:root {
        --brand-logo-max-height: 110px;
        --brand-logo-max-width: 220px;
        --brand-logo-max-height-mobile: 110px;
        --brand-logo-max-width-mobile: 220px;
    }

    .faixa-container {
        background-color: #C7A333;
        color: #ffffff;
        font-family: 'Helvetica', 'Arial', sans-serif;
        font-size: 14px;
        font-weight: bold;
        text-transform: uppercase;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 0;
        width: 100%;
        margin: 0;
        box-sizing: border-box;
        position: relative;
        z-index: 100;
    }
    .faixa-btn {
        background: none;
        border: none;
        color: #ffffff;
        cursor: pointer;
        font-size: 18px;
        padding: 0 20px;
        transition: opacity 0.2s ease;
        outline: none;
        user-select: none;
    }
    .faixa-btn:hover { opacity: 0.6; }
    .faixa-texto {
        flex-grow: 1;
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        user-select: none;
        opacity: 1;
        transition: opacity 0.4s ease-in-out;
    }
    .faixa-texto a {
        color: inherit;
        text-decoration: none;
    }
    .faixa-texto a:hover {
        text-decoration: underline;
    }
    .faixa-texto.escondido { opacity: 0; }
    @media (max-width: 480px) {
        .faixa-texto { font-size: 12px; }
        .faixa-btn { padding: 0 10px; }
    }

.vitrine-page, .public-main, .public-main-content {
    background-color: transparent !important;
}

/* Header color handled in dynamic-colors.php */

    /* Container principal - Fundo branco e APENAS a borda visível */
    .search-input-wrapper {
        background-color: #ffffff !important; /* Fundo branco */
        display: flex;
        align-items: center;
        padding: 5px 15px; /* Reduzido para alinhar perfeitamente com o botão */
        border-radius: 12px; /* Deixa as pontas arredondadas (estilo pílula) */
        border: 1px solid #000000; /* A borda preta que você solicitou */
        box-shadow: none !important;
        height: 60px; /* Altura fixa para alinhar com o botão */
        box-sizing: border-box;
    }
    /* Campo de entrada de texto */
    .search-input {
        background-color: transparent !important; /* Usa o fundo do wrapper */
        color: #000000 !important; /* Texto digitado em preto */
        border: none !important;
        outline: none !important;
        padding: 0 12px;
        width: 100%;
        font-size: 14px;
        height: 100%;
    }
    /* PLACEHOLDER: Texto em Preto */
    .search-input::placeholder {
        color: #000000 !important;
        opacity: 0.7;
    }
    /* LUPA: Em Preto e sem fundo de botão */
    .search-icon,
    .search-submit-btn {
        color: #000000 !important;
        background: transparent !important;
        border: none !important;
        padding: 0;
        margin: 0;
        cursor: pointer;
        display: flex;
        align-items: center;
        box-shadow: none !important;
    }
    .search-filters-container {
        display: flex;
        gap: 1.25rem;
        align-items: center;
        flex: 1;
        width: 100% !important;
        max-width: none !important; /* Removida restrição de largura */
        margin: 0;
    }
    .vitrine-search-form {
        flex: 1;
        min-width: 0;
    }


    /* Brand Popover Styles */
    .brand-popover-wrapper {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .brand-popover {
        display: none;
        position: absolute;
        top: calc(100% + 14px);
        left: 50%;
        transform: translateX(-50%);
        width: 280px;
        background-color: #ffffff;
        border-radius: 0.75rem; /* rounded-xl */
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        border: 1px solid #eeeeee;
        z-index: 999;
        overflow: hidden;
        animation: menuIn 0.2s ease-out forwards;
    }
    @media (max-width: 768px) {
        .brand-popover-wrapper {
            position: static;
        }
        .search-filters-container {
            position: relative;
        }
        .brand-popover {
            position: absolute; /* Keep it absolute relative to wrapper */
            top: calc(100% + 10px); /* Slightly closer than desktop */
            left: 50%;
            transform: translateX(-50%);
            width: 90vw; /* Wider on mobile */
            max-width: 360px;
        }
    }
    @media (min-width: 640px) {
        .brand-popover { width: 320px; }
    }
    .brand-popover.active {
        display: block;
    }
    .brand-popover-arrow {
        position: absolute;
        top: -8px;
        left: 50%;
        transform: translateX(-50%) rotate(45deg);
        width: 16px;
        height: 16px;
        background-color: #ffffff;
        border-left: 1px solid #eeeeee;
        border-top: 1px solid #eeeeee;
    }
    .brand-popover-content {
        position: relative;
        background-color: #ffffff;
        padding: 1rem;
    }
    .brand-popover-title {
        text-align: center;
        margin-bottom: 1rem;
    }
    .brand-popover-title span {
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.2em;
        color: #999999;
        text-transform: uppercase;
    }
    .brand-grid-container {
        overflow-y: auto;
        max-height: 190px;
        padding: 0 4px;
    }
    .brand-grid-container::-webkit-scrollbar {
        width: 4px;
    }
    .brand-grid-container::-webkit-scrollbar-track {
        background: #f5f5f5;
    }
    .brand-grid-container::-webkit-scrollbar-thumb {
        background: #cccccc;
        border-radius: 10px;
    }
    .brand-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }
    .brand-item {
        aspect-ratio: 1 / 1;
        background: #f8f8f8;
        border-radius: 0.5rem;
        border: 1px solid #eeeeee;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        transition: all 0.3s;
        text-decoration: none;
        will-change: transform, border-color;
    }
    .brand-item:hover {
        border-color: #cccccc;
        background: #f0f0f0;
    }
    .brand-item img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 4px;
        transition: transform 0.5s;
    }
    .brand-item:hover img {
        transform: scale(1.1);
    }
    .popover-gradient {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1.5rem;
        background: linear-gradient(to top, #ffffff, transparent);
        pointer-events: none;
    }
    @keyframes menuIn {
        from { opacity: 0; transform: translateX(-50%) scale(0.95); }
        to { opacity: 1; transform: translateX(-50%) scale(1); }
    }

/* Estilos dinâmicos aplicados via dynamic-colors.php */

    /* Mobile Menu Optimization */
    @media (max-width: 768px) {
        .vitrine-top-bar-wrapper {
            flex-direction: column !important;
            align-items: center !important;
            gap: 15px !important;
            padding: 0 !important;
        }
        .search-filters-container {
            display: flex !important;
            width: 100% !important;
            gap: 10px !important;
            align-items: stretch !important;
            justify-content: flex-start !important;
            flex-direction: column !important;
        }
        .vitrine-search-form {
            flex: 1 !important;
            margin: 0 !important;
            order: 1 !important;
        }
        .brand-popover-wrapper {
            width: 100% !important;
            order: 2 !important;
            justify-content: flex-start !important;
        }
        .search-input-wrapper {
            width: 100% !important;
        }
        .filter-toggle-btn {
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            width: 100% !important;
            height: auto !important;
            min-width: 0 !important;
            padding: 12px 14px !important;
            border-radius: 12px !important;
            border: 1.196px solid rgba(212, 175, 55, 0.30) !important;
            background: radial-gradient(67.54% 100.03% at 50% 0%,
                #F7EF8A 0%,
                #D4AF37 25.48%,
                #8A6623 62.5%,
                #4C3B1A 100%) !important;
            box-shadow: 0 5.98px 23.203px 0 rgba(138, 102, 35, 0.20),
                        0 14.352px 53.701px 0 rgba(138, 102, 35, 0.50) !important;
            color: #ffffff !important;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3) !important;
            margin: 0 !important;
            overflow: hidden !important;
            position: relative !important;
            z-index: 1 !important;
        }
        .vitrine-top-bar .filter-toggle-btn span,
        .vitrine-top-bar .filter-toggle-btn .filter-badge {
            display: inline-flex !important;
        }
        .vitrine-top-bar .filter-toggle-btn i {
            margin: 0 !important;
            font-size: 20px !important;
            color: #ffffff !important;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3) !important;
        }
       
        /* Logo Scroll Animation */
        .header-logo-vitrine {
            transition: all 0.4s ease-in-out !important;
        }
        .logo-scrolled {
            width: 70px !important;
            height: auto !important;
            max-width: 70px !important;
            max-height: none !important;
        }
    }
   
    /* Desktop Logo Transition */
    .header-logo-vitrine {
        transition: all 0.4s ease-in-out !important;
    }
    .logo-scrolled-desktop {
        transform: scale(0.85);
    }
    
    /* Empty State Styles */
    .empty-state-wrapper {
        padding: 3rem 1rem;
    }
    .empty-state {
        text-align: center;
        padding: 2.5rem 2rem;
        background: #ffffff;
        border: 1px solid #eeeeee;
        border-radius: 24px;
        max-width: 480px;
        margin: 0 auto;
        position: relative;
        overflow: hidden;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
    }
    .empty-state::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, #eeeeee, transparent);
    }
    .empty-state::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle at 30% 20%, rgba(0, 0, 0, 0.02) 0%, transparent 50%);
        pointer-events: none;
    }
    .empty-state-icon {
        width: 72px;
        height: 72px;
        background: #f8f8f8;
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        border: 1px solid #eeeeee;
        position: relative;
        z-index: 1;
    }
    .empty-state-icon i {
        font-size: 1.75rem;
        color: #333333;
    }
    .empty-state h3 {
        font-family: 'Sora', sans-serif;
        font-size: 1.35rem;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 0.5rem;
        position: relative;
        z-index: 1;
    }
    .empty-state p {
        color: #666666;
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.75rem;
        position: relative;
        z-index: 1;
    }
    .empty-state-actions {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
        position: relative;
        z-index: 1;
    }
    .btn-clear-filters-empty,
    .btn-expert-empty {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.85rem 1.75rem;
        border-radius: 14px;
        font-weight: 600;
        font-size: 0.875rem;
        text-decoration: none;
        transition: all 0.25s ease;
        min-width: 200px;
        justify-content: center;
    }
    .btn-clear-filters-empty {
        background: #1a1a1a;
        color: #ffffff;
        border: none;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }
    .btn-clear-filters-empty:hover {
        background: #333333;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }
    .btn-expert-empty {
        background: #f8f8f8;
        color: #1a1a1a;
        border: 1px solid #eeeeee;
    }
    .btn-expert-empty:hover {
        background: #f0f0f0;
        border-color: #cccccc;
        transform: translateY(-2px);
    }


    @media (max-width: 480px) {
        .btn-whatsapp-modern.btn-responsive {
            padding: 10px 15px 10px 45px !important;
            border-radius: 10px !important;
        }
        .btn-whatsapp-modern.btn-responsive i {
            width: 28px !important;
            height: 28px !important;
            font-size: 16px !important;
            left: 8px !important;
        }
        .btn-whatsapp-modern.btn-responsive span {
            font-size: 11px !important;
            letter-spacing: 0 !important;
        }
    }

/* Configuração da Seção com Degradê Animado */
.marcas-carousel-section {
    position: relative;
    overflow: hidden;
    padding: 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
  
    /* Degradê Ouro Naipers (Linear para facilitar a animação de movimento) */
    background: linear-gradient(270deg,
        #4C3B1A 0%,
        #8A6623 25%,
        #D4AF37 50%,
        #F7EF8A 75%,
        #D4AF37 100%
    ) !important;

    /* Aumentamos o tamanho do fundo para que ele possa "correr" */
    background-size: 400% 400% !important;
  
    /* Animação de movimento do fundo */
    animation: goldFlow 10s ease infinite;
    will-change: background-position;
  
    border-bottom: none !important;
}

/* Carrossel de Marcas - Logos menores para hierarquia */
.marcas-carousel-section .swiper-slide img {
    max-height: var(--brand-logo-max-height) !important;
    max-width: var(--brand-logo-max-width) !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    object-position: center !important;
}

@media (max-width: 768px) {
    .marcas-carousel-section {
        padding: 20px 0 !important;
        align-items: center;
        justify-content: center;
    }
    .container-marcas {
        height: auto !important;
    }
    .marcas-carousel-section .swiper-slide img {
        max-height: var(--brand-logo-max-height-mobile) !important;
        max-width: var(--brand-logo-max-width-mobile) !important;
    }
}

/* Banner Principal - Maior destaque */
.carousel-banner-wrapper {
    margin-bottom: 0;
}

/* ============================================
   SHOWCASE CAROUSEL STYLES - Destaques & Lançamentos
   ============================================ */
.showcase-carousel-section {
    content-visibility: auto;
    contain-intrinsic-size: 500px;
    padding: 2.5rem 0;
    position: relative;
    overflow: hidden;
}
.showcase-carousel-section .container {
    max-width: 100%;
    padding: 0 6px;
}
@media (min-width: 1024px) {
    .showcase-carousel-section .container {
        max-width: 1400px;
        padding: 0 20px;
    }
}

.showcase-carousel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.showcase-header-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.showcase-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.875rem;
    background: linear-gradient(135deg, #C7A333 0%, #B8962E 100%);
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 20px;
    width: fit-content;
    box-shadow: 0 2px 8px rgba(199, 163, 51, 0.3);
}

.showcase-carousel-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.showcase-carousel-description {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    max-width: 500px;
}

.showcase-nav-controls {
    display: flex;
    gap: 0.5rem;
}

.showcase-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #1a1a1a;
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.showcase-nav-btn:hover {
    background: #C7A333;
    color: #000;
    transform: scale(1.05);
}

.showcase-nav-btn:active {
    transform: scale(0.95);
}

.showcase-nav-btn i {
    font-size: 1rem;
}

/* Swiper Container */
.showcase-products-carousel {
    padding: 0 6px 2.5rem !important;
    overflow: visible !important;
}

.showcase-products-carousel .swiper-wrapper {
    align-items: stretch;
}

.showcase-products-carousel .swiper-slide {
    height: auto;
    display: flex;
}

.showcase-products-carousel .product-card-modern.showcase-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    background: var(--color-surface);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.showcase-products-carousel .product-card-modern.showcase-card:hover {
    border-color: #C7A333;
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(199, 163, 51, 0.25);
}
.showcase-products-carousel .product-info-modern {
    gap: 0.35rem;
}
.showcase-products-carousel .product-name-modern {
    min-height: 0;
}
.showcase-products-carousel .product-price-modern,
.showcase-products-carousel .showcase-price {
    margin-top: 0;
}

/* Price styling for showcases */
.showcase-price {
    font-size: 1.35rem !important;
    font-weight: 800 !important;
}

.price-prefix {
    font-size: 0.7rem;
    font-weight: 500;
    color: #888;
    text-decoration: none;
    display: inline;
}

/* Swiper Pagination */
.showcase-products-carousel .swiper-pagination {
    bottom: 0 !important;
}

.showcase-products-carousel .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 1;
    transition: all 0.3s ease;
}

.showcase-products-carousel .swiper-pagination-bullet-active {
    background: #C7A333;
    width: 24px;
    border-radius: 5px;
}

/* Responsive Showcase - Tablets */
@media (max-width: 1023px) {
    .showcase-carousel-section {
        padding: 2rem 0;
    }
    
    .showcase-carousel-header {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }
    
    .showcase-carousel-title {
        font-size: 1.5rem;
    }
    
    .showcase-products-carousel .product-card-modern.showcase-card {
        min-height: auto;
    }
}

/* Responsive Showcase - Phones Landscape */
@media (max-width: 767px) {
    .showcase-carousel-section {
        padding: 1.5rem 0;
    }
    
    .showcase-carousel-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .showcase-carousel-title {
        font-size: 1.375rem;
    }
    
    .showcase-carousel-description {
        font-size: 0.85rem;
        display: none;
    }
    
    .showcase-nav-controls {
        position: absolute;
        right: 0;
        top: 0;
    }
    
    .showcase-header-left {
        position: relative;
        width: 100%;
        padding-right: 100px;
    }
    
    .showcase-nav-btn {
        width: 36px;
        height: 36px;
    }
    
    .showcase-products-carousel {
        margin: 0;
        padding: 0 6px 2rem !important;
    }
    
    /* Product card inside carousel */
    .showcase-products-carousel .product-info-modern {
        background: var(--color-surface);
        padding: 10px;
    }
    
    .showcase-products-carousel .product-name-modern {
        font-size: 0.8rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .showcase-products-carousel .product-brand-modern {
        font-size: 0.65rem;
    }
    
    .showcase-products-carousel .showcase-price {
        font-size: 1rem !important;
    }
    
    .showcase-products-carousel .price-prefix {
        font-size: 0.6rem;
    }
    
    .showcase-products-carousel .price-installments {
        font-size: 0.6rem !important;
    }
    
    .showcase-products-carousel .product-actions-modern {
        background: var(--color-surface);
        padding: 6px 10px 10px;
    }
    
    .showcase-products-carousel .product-actions-modern a {
        padding: 8px 10px;
        font-size: 0.7rem;
    }
    
    .showcase-products-carousel .product-actions-modern span {
        display: inline-block;
    }
}

/* Responsive Showcase - Small Phones */
@media (max-width: 479px) {
    .showcase-carousel-section {
        padding: 1.25rem 0;
    }
    
    .showcase-carousel-title {
        font-size: 1.125rem;
    }
    
    .showcase-badge {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
    }
    
    .showcase-header-left {
        padding-right: 80px;
    }
    
    .showcase-nav-btn {
        width: 32px;
        height: 32px;
    }
    
    .showcase-nav-btn i {
        font-size: 0.75rem;
    }
    
    .showcase-products-carousel {
        margin: 0;
        padding: 0 6px;
    }
    
    /* Ultra compact product cards */
    .showcase-products-carousel .product-card-modern.showcase-card {
        border-radius: 10px;
    }
    
    .showcase-products-carousel .product-info-modern {
        padding: 8px;
    }
    
    .showcase-products-carousel .product-name-modern {
        font-size: 0.75rem;
        min-height: auto;
    }
    
    .showcase-products-carousel .product-brand-modern {
        font-size: 0.6rem;
        margin-bottom: 2px;
    }
    
    .showcase-products-carousel .showcase-price {
        font-size: 0.9rem !important;
    }
    
    .showcase-products-carousel .price-installments {
        font-size: 0.55rem !important;
        margin-top: 1px !important;
    }
    
    .showcase-products-carousel .product-actions-modern {
        padding: 4px 8px 8px;
        gap: 4px;
    }
    
    .showcase-products-carousel .product-actions-modern a {
        padding: 6px 8px;
        font-size: 0.65rem;
        border-radius: 6px;
    }
    
    .showcase-products-carousel .btn-view-details {
        min-width: fit-content;
        padding: 6px 12px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 4px !important;
    }
    
    .showcase-products-carousel .btn-view-details i,
    .showcase-products-carousel .btn-view-details span {
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Swiper pagination smaller */
    .showcase-products-carousel .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
    
    .showcase-products-carousel .swiper-pagination-bullet-active {
        width: 18px;
    }
}

.carousel-banner-wrapper .carousel-slide img,
.carousel-banner-wrapper .render-carousel img {
    width: 100%;
    aspect-ratio: 1650 / 630;
    height: auto;
    object-fit: cover !important;
    object-position: center;
    display: block;
}

@media (min-width: 769px) {
    .carousel-banner-wrapper .carousel-slide img,
    .carousel-banner-wrapper .render-carousel img {
        aspect-ratio: 1650 / 630;
    }
}

@media (max-width: 768px) {
    .carousel-banner-wrapper .carousel-slide img,
    .carousel-banner-wrapper .render-carousel img {
        aspect-ratio: 600 / 717;
    }
}
/* Efeito de Brilho Extra (Overlay) */
.marcas-carousel-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}
/* Keyframes para o movimento do degradê */
@keyframes goldFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
/* Ajuste opcional para os itens dentro do carrossel */
.marcas-carousel-section .elementor-image,
.marcas-carousel-section img {
    filter: drop-shadow(0px 4px 10px rgba(0,0,0,0.2));
}

/* Vitrine Page */
.vitrine-page {
    min-height: 100vh;
    background: var(--color-background);
    padding-top: 0;
    padding-bottom: 0;
}
/* Top Bar - Design Compacto */
.vitrine-top-bar {
    background: var(--color-header-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 0.75rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}
.vitrine-top-bar .container,
.vitrine-top-bar-wrapper {
    background: transparent !important;
}
.vitrine-top-bar .container {
    padding: 0;
}
.vitrine-top-bar + .container,
.vitrine-top-bar + .carousel,
.vitrine-top-bar + div:not(.product-page-wrapper) {
    margin-top: 0;
}
.vitrine-top-bar-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between !important; /* Espaça a logo da pesquisa/botão */
    gap: 2rem;
    width: 100%;
    min-height: 80px;
    max-height: 120px;
    transition: all 0.3s ease;
}
.logo-link-vitrine {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 1;
    flex-basis: auto;
    max-width: 30%;
    min-width: 100px;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), max-width 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease, padding 0.6s ease, margin 0.6s ease, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.header-logo-vitrine {
    object-fit: contain;
    display: block;
}
.search-filters-container {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    flex: 1;
    width: 100% !important;
    max-width: none !important;
    justify-content: flex-end; /* Alinha a pesquisa e o botão à direita */
}
.best-options-title,
.best-options-description {
    max-width: 100%;
}
/* Mobile Layout */
@media (max-width: 768px) {
    .vitrine-top-bar {
        padding: 0.5rem;
        transition: padding 0.6s cubic-bezier(0.4, 0, 0.2, 1), background 0.6s ease, box-shadow 0.6s ease, border-color 0.6s ease;
        will-change: padding;
    }
    .vitrine-page {
        padding-top: 0;
    }
  
    .vitrine-top-bar-wrapper {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
        min-height: auto;
        max-height: 260px;
        overflow: visible;
        transition: gap 0.6s cubic-bezier(0.4, 0, 0.2, 1), max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }
  
    .logo-link-vitrine {
        max-width: 100%;
        justify-content: center;
        padding-bottom: 0;
        border-bottom: none;
        transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), max-width 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease, padding 0.6s ease, margin 0.6s ease, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        max-height: 200px;
        overflow: hidden;
    }
  
    .header-logo-vitrine {
        /* Tamanho controlado pelo admin via estilo inline */
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease, width 0.6s cubic-bezier(0.4, 0, 0.2, 1), margin 0.6s ease;
        transform-origin: left center;
    }
  
    .vitrine-top-bar .search-filters-container {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: nowrap;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    .vitrine-top-bar .filter-toggle-btn {
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        max-height: 100px;
        opacity: 1;
        margin-top: 0;
        transform: translateY(0);
        width: 100%;
        height: auto !important;
        min-width: 0 !important;
        padding: 12px 14px !important;
    }
    .logo-link-vitrine {
        transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease, margin 0.6s ease;
        display: inline-block;
        width: auto;
    }
    .scrolled-down.vitrine-top-bar {
        padding: 5px 5px 10px 5px;
    }
    .scrolled-down .vitrine-top-bar-wrapper {
        min-height: auto;
        gap: 0;
        max-height: 110px;
    }
    .scrolled-down .header-logo-vitrine {
        transform: scale(0.85);
        opacity: 0;
        width: 0 !important;
        margin: 0 !important;
        pointer-events: none;
    }
    .scrolled-down .filter-toggle-btn {
        opacity: 1;
        max-height: 100px;
        margin-top: 0;
        pointer-events: auto;
        transform: translateY(0);
    }
    .scrolled-down .logo-link-vitrine {
        max-height: 0 !important;
        max-width: 0 !important;
        opacity: 0;
        margin: 0 !important;
        padding: 0 !important;
        transform: translateY(-6px) scale(0.98);
        pointer-events: none;
        flex: 0 0 0 !important;
    }
    .scrolled-down .search-filters-container {
        margin-top: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        flex: 1 1 100% !important;
    }
    .scrolled-down .search-input-wrapper {
        padding: 2px 10px !important;
        border-radius: 8px !important;
    }
}
/* Desktop Layout */
@media (min-width: 769px) {
    .best-options-title {
        width: min(100%, 720px) !important;
        font-size: 34px !important;
    }
    .best-options-description {
        width: min(100%, 860px) !important;
        font-size: 20px !important;
    }
    .vitrine-top-bar {
        padding: 0.875rem;
    }
  
    .vitrine-top-bar-wrapper {
        gap: 15px;
    }
  
    .logo-link-vitrine {
        max-width: 30%;
        flex-shrink: 1;
    }
  
    .search-filters-container {
        flex: 1 1 65%;
        min-width: 520px;
    }
  
    .search-filters-container {
        flex-wrap: nowrap;
        gap: 15px;
    }
}
/* Tamanho da logo controlado pelo admin */
/* O tamanho configurado no admin é respeitado via estilo inline */
@media (min-width: 769px) {
    .logo-link-vitrine {
        /* Container flexível para a logo */
        overflow: hidden;
    }
}
@media (max-width: 768px) {
    .logo-link-vitrine {
        /* Container flexível para a logo */
        overflow: hidden;
    }
    .vitrine-search-form {
        min-width: 0;
    }
}
.vitrine-search-form {
    flex: 1;
    min-width: 300px;
    max-width: 650px;
    width: 100%;
}
@media (min-width: 1200px) {
    .vitrine-search-form {
        max-width: 650px;
    }
}
.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}
@media (min-width: 769px) {
    .search-input-wrapper {
        max-width: 650px;
    }
}
.search-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: #999999; /* Cor neutra para fundo branco */
    font-size: 1.1rem;
    pointer-events: none;
    z-index: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.search-input-wrapper:focus-within .search-icon {
    color: #333333; /* Cinza escuro quando focado */
    transform: translateY(-50%) scale(1.1);
}
/* Ícone de busca ativa - igual ao do botão de buscar */
.search-active-icon {
    position: absolute;
    right: 150px;
    top: 50%;
    transform: translateY(-50%);
    color: #333333;
    font-size: 1rem;
    pointer-events: none;
    z-index: 2;
    animation: searchPulse 2s ease-in-out infinite;
}
@keyframes searchPulse {
    0%, 100% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
    50% {
        opacity: 0.7;
        transform: translateY(-50%) scale(1.1);
    }
}
.search-input {
    width: 100%;
    padding: 1rem 1.25rem 1rem 3rem;
    padding-right: 140px; /* Espaço para o botão de busca */
    border: 2px solid #eeeeee;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    color: #333333;
    box-sizing: border-box;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}
.search-input::placeholder {
    color: #999999;
    opacity: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
}
.search-input:focus {
    outline: none;
    border-color: #C7A333;
    background: #1F1F1F;
    box-shadow: 0 0 0 4px rgba(199, 163, 51, 0.15), 0 2px 8px rgba(0, 0, 0, 0.3);
    transform: translateY(-1px);
    padding-right: 140px;
}
.search-input:focus::placeholder {
    color: #B3B3B3;
}
.clear-search {
    position: absolute;
    right: 150px; /* Ajustado para não sobrepor o botão de busca */
    color: #999999;
    text-decoration: none;
    padding: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}
.clear-search:hover {
    background: #3A3A3A;
    color: #E0E0E0;
    transform: scale(1.1);
}
/* Botão de Buscar - Visível e Destacado */
.search-submit-btn {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: #333333;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}
.search-submit-btn:hover {
    background: #1a1a1a;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.search-submit-btn:active {
    transform: translateY(-50%) scale(0.98);
}
.search-submit-btn i {
    font-size: 1rem;
}

/* ============================================
   SEARCH BAR RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .search-input {
        padding: 0.875rem 1rem 0.875rem 2.75rem;
        padding-right: 55px;
        font-size: 16px; /* Prevents iOS zoom on focus */
        border-radius: 10px;
    }
    
    .search-icon {
        left: 1rem;
        font-size: 1rem;
    }
    
    .search-submit-btn {
        padding: 0.625rem;
        width: 44px;
        height: 44px;
        border-radius: 8px;
    }
    
    .search-submit-btn span {
        display: none;
    }
    
    .search-submit-btn i {
        margin: 0;
    }
    
    .clear-search {
        right: 55px;
    }
    
    .search-active-icon {
        display: none;
    }
}

@media (max-width: 479px) {
    .search-input {
        padding: 0.75rem 0.875rem 0.75rem 2.5rem;
        padding-right: 50px;
        font-size: 16px;
    }
    
    .search-icon {
        left: 0.875rem;
        font-size: 0.9rem;
    }
    
    .search-submit-btn {
        padding: 0.5rem;
        width: 40px;
        height: 40px;
    }
    
    .clear-search {
        right: 50px;
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 359px) {
    .search-input {
        padding: 0.625rem 0.75rem 0.625rem 2.25rem;
        padding-right: 45px;
        border-radius: 8px;
    }
    
    .search-submit-btn {
        width: 36px;
        height: 36px;
        padding: 0.375rem;
    }
    
    .clear-search {
        right: 45px;
        width: 22px;
        height: 22px;
    }
}

/* Top Bar Responsive */
@media (max-width: 768px) {
    .vitrine-top-bar {
        padding: 0.5rem;
    }
    
    .vitrine-top-bar-wrapper {
        gap: 0.75rem;
        min-height: 50px;
        flex-wrap: nowrap;
        flex-direction: column;
        align-items: stretch;
    }
    
    .logo-link-vitrine {
        max-width: 40%;
        min-width: 80px;
    }
    
    .vitrine-top-bar .search-filters-container {
        display: flex !important;
        width: 100% !important;
        flex: 1 1 100%;
        order: 3;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    .vitrine-top-bar .vitrine-search-form {
        order: 1;
        width: 100% !important;
    }
    .vitrine-top-bar .brand-popover-wrapper {
        order: 2;
        width: 100%;
        justify-content: flex-start;
    }
    .vitrine-top-bar .filter-toggle-btn {
        width: 100% !important;
        height: auto !important;
        min-width: 0 !important;
        padding: 12px 14px !important;
    }
    .vitrine-top-bar .filter-toggle-btn span,
    .vitrine-top-bar .filter-toggle-btn .filter-badge {
        display: inline-flex !important;
    }
    .filter-toggle-btn::before {
        content: "";
    }
}

@media (max-width: 479px) {
    .vitrine-top-bar {
        padding: 0.375rem;
    }
    
    .vitrine-top-bar-wrapper {
        gap: 0.5rem;
        min-height: 45px;
    }
    
    .logo-link-vitrine {
        max-width: 35%;
        min-width: 70px;
    }
}

@media (max-width: 359px) {
    .vitrine-top-bar-wrapper {
        gap: 0.375rem;
        min-height: 40px;
    }
    
    .logo-link-vitrine {
        max-width: 30%;
        min-width: 60px;
    }
}
.filter-toggle-btn {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.25rem; /* Padding harmonizado */
    background: radial-gradient(67.54% 100.03% at 50% 0%,
        #F7EF8A 0%,
        #D4AF37 25.48%,
        #8A6623 62.5%,
        #4C3B1A 100%);
    border: 1.196px solid rgba(212, 175, 55, 0.30);
    box-shadow: 0 5.98px 23.203px 0 rgba(138, 102, 35, 0.20),
                0 14.352px 53.701px 0 rgba(138, 102, 35, 0.50);
    border-radius: 12px; /* Harmonizado */
    font-weight: 600;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
#filterToggleBtnMobile {
    margin-bottom: 10px;
}
.filter-toggle-btn:hover {
    filter: brightness(1.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(138, 102, 35, 0.4);
}
/* Desktop Filter Toggle Button */
.filter-toggle-btn-desktop {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 0 50px;
    height: 60px; /* Altura fixa igual à da barra de pesquisa */
    border-radius: 12px; /* Arredondamento igual ao da barra de pesquisa */
    border: 1.196px solid rgba(212, 175, 55, 0.30) !important;
    background: radial-gradient(67.54% 100.03% at 50% 0%,
        #F7EF8A 0%,
        #D4AF37 25.48%,
        #8A6623 62.5%,
        #4C3B1A 100%) !important;
    box-shadow: 0 5.98px 23.203px 0 rgba(138, 102, 35, 0.20),
                0 14.352px 53.701px 0 rgba(138, 102, 35, 0.50) !important;
    font-weight: 700;
    color: #ffffff !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: 0.5s ease all;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}
/* Added brilho animation effect */
.filter-toggle-btn-desktop::before {
    content: "";
    height: 100%;
    width: 100px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    background: #ffffff;
    box-shadow: 0 0 30px 20px rgba(255, 255, 255, 0.4);
    transform: skewX(-20deg);
    mix-blend-mode: plus-lighter;
    pointer-events: none;
    z-index: 1;
    animation: brilho 2.5s linear infinite;
}
.filter-toggle-btn::before {
    content: "";
    height: 100%;
    width: 100px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    background: #ffffff;
    box-shadow: 0 0 30px 20px rgba(255, 255, 255, 0.4);
    transform: skewX(-20deg);
    mix-blend-mode: plus-lighter;
    pointer-events: none;
    z-index: 1;
    animation: brilho 2.5s linear infinite;
}
.filter-toggle-btn > *,
.filter-toggle-btn-desktop > * {
    position: relative;
    z-index: 2;
}
@keyframes brilho {
    0% { opacity: 0; left: -20%; }
    25% { opacity: 0.3; }
    50% { opacity: 0.5; left: 50%; }
    75% { opacity: 0.3; }
    100% { opacity: 0; left: 120%; }
}
.filter-toggle-btn-desktop:hover {
    filter: brightness(1.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(138, 102, 35, 0.4);
}
.filter-toggle-btn-desktop:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(138, 102, 35, 0.2);
}
.filter-toggle-btn-desktop span {
    color: #ffffff !important;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    transition: 0.5s ease all;
}
.filter-toggle-btn-desktop i.fa-chevron-down,
.filter-toggle-btn-desktop i.fa-chevron-up {
    font-size: 0.75rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 0.25rem;
    color: #ffffff !important;
}
.filter-toggle-btn-desktop.active i.fa-chevron-down,
.filter-toggle-btn-desktop.active i.fa-chevron-up {
    transform: rotate(180deg); /* Rotação suave da seta */
}
.filter-toggle-btn-desktop.active i.fa-chevron-up {
    transform: rotate(180deg); /* Ícone up já vem rotacionado */
}
.filter-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    background: #ef4444;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
    z-index: 4;
    pointer-events: none;
}
/* Mobile Filters Panel */
.mobile-filters-panel {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    overflow-y: auto;
}
.mobile-filters-panel.active {
    display: block;
}
.mobile-filters-header {
    background: #1F1F1F;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #2A2A2A;
    position: sticky;
    top: 0;
    z-index: 10;
}
.mobile-filters-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #B3B3B3;
}
.close-filters-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666666;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    transition: all 0.2s;
}
.close-filters-btn:hover {
    background: #2A2A2A;
    color: #B3B3B3;
}
.mobile-filters-content {
    background: #1F1F1F;
    padding: 1.5rem;
    min-height: calc(100vh - 80px);
}
.filter-section-mobile {
    margin-bottom: 2rem;
}
.filter-label-mobile {
    display: block;
    font-weight: 600;
    color: #B3B3B3;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
}
.filter-options-mobile {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.filter-chip {
    padding: 0.625rem 1rem;
    border: 2px solid #2A2A2A;
    border-radius: 20px;
    background: #1F1F1F;
    color: #B3B3B3;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.filter-chip:hover {
    border-color: #C7A333;
    color: #C7A333;
}
.filter-chip.active {
    background: #C7A333;
    border-color: #C7A333;
    color: #000000;
}
.chip-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
}
.filter-chip.active .chip-count {
    background: rgba(255, 255, 255, 0.3);
}
.filter-select-mobile {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #2A2A2A;
    border-radius: 12px;
    font-size: 1rem;
    background: #1F1F1F;
    color: #B3B3B3;
    cursor: pointer;
}
.mobile-filters-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #2A2A2A;
}
.btn-clear-filters,
.btn-apply-filters {
    flex: 1;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}
.btn-clear-filters {
    background: #2A2A2A;
    color: #B3B3B3;
}
.btn-clear-filters:hover {
    background: #333333;
}
.btn-apply-filters {
    background: #C7A333;
    color: #000000;
}
.btn-apply-filters:hover {
    background: #D4B84A;
}
/* Showcase Section */
.showcase-section {
    padding: 2rem 0;
    background: var(--color-showcase-bg) !important;
}
.showcase-banner {
    margin-bottom: 2rem;
    border-radius: 16px;
    overflow: hidden;
}
.showcase-banner-img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 16px;
}
.showcase-header {
    text-align: center;
    margin-bottom: 2rem;
}
.showcase-title {
    font-size: 2rem;
    font-weight: 700;
    color: #C7A333;
    margin: 0 0 0.5rem 0;
}
.showcase-description {
    font-size: 1.125rem;
    color: #666666;
    margin: 0;
}
.products-grid-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2rem;
}
/* Showcase Swiper Carousel */
.showcase-section .swiper {
    padding: 0 0 40px 0;
}
.showcase-section .swiper-slide {
    height: auto;
}
.showcase-section .swiper-slide .product-card-modern {
    height: 100%;
}
.showcase-section .swiper-button-next,
.showcase-section .swiper-button-prev {
    color: #C7A333;
    top: 50%;
    transform: translateY(-50%);
}
.showcase-section .swiper-button-next::after,
.showcase-section .swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
}
/* Desktop Showcase Grid Optimization - 3 produtos por linha a partir de 769px */
@media (min-width: 769px) {
    .products-grid-showcase {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 2rem;
    }
}
@media (min-width: 1200px) {
    .products-grid-showcase {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 2rem;
    }
}
@media (min-width: 1400px) {
    .products-grid-showcase {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.25rem;
    }
}
/* Products Section */
.products-section {
    padding: 2rem 0;
    background: var(--color-products-bg) !important;
    min-height: 60vh;
}
@media (min-width: 768px) and (max-width: 1023px) {
    .products-section .container {
        max-width: 100% !important;
        padding-left: 6px !important;
        padding-right: 6px !important;
    }
}
.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #C7A333;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Section Title Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.5rem;
        gap: 0.75rem;
    }
}

@media (max-width: 479px) {
    .section-title {
        font-size: 1.25rem;
        gap: 0.5rem;
    }
}

@media (max-width: 359px) {
    .section-title {
        font-size: 1.1rem;
        gap: 0.4rem;
    }
}

.products-count-badge {
    background: rgba(199, 163, 51, 0.1);
    color: #999999;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 600;
    opacity: 0.7;
    white-space: nowrap;
    margin-left: 0;
}

.products-pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    margin-top: 24px;
    flex-wrap: wrap;
}

.pagination-btn {
    padding: 10px 14px;
    border-radius: 999px;
    background: #ffffff;
    color: #111111;
    border: 1px solid #e6e6e6;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.pagination-btn:hover {
    background: #C7A333;
    color: #000000;
    border-color: #C7A333;
}

.pagination-btn.active {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

.pagination-btn.disabled {
    opacity: 0.5;
    pointer-events: none;
}

/* Products Count Badge Responsive */
@media (max-width: 479px) {
    .products-count-badge {
        padding: 0.25rem 0.6rem;
        font-size: 0.7rem;
    }
}

@media (max-width: 479px) {
    .pagination-btn {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
}

/* Products Section Responsive */
@media (max-width: 768px) {
    .products-section {
        padding: 1.5rem 0;
    }
    
    .products-header {
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 479px) {
    .products-section {
        padding: 1rem 0;
    }
    
    .products-header {
        margin-bottom: 1rem;
        gap: 0.75rem;
    }
}
/* ============================================
   PRODUCTS GRID RESPONSIVE
   Mobile First Approach
   ============================================ */
.products-grid-main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

/* Extra Small Phones (max-width: 359px) */
@media (max-width: 359px) {
    .products-grid-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
    
    .product-card-modern {
        border-radius: 10px;
    }
    
    .product-info-modern {
        padding: 8px;
    }
    
    .product-name-modern {
        font-size: 0.7rem;
        line-height: 1.2;
    }
    
    .product-brand-modern {
        font-size: 0.55rem;
    }
    
    .product-price-modern {
        font-size: 0.85rem;
    }
}

/* Small Phones (360px - 479px) */
@media (min-width: 360px) and (max-width: 479px) {
    .products-grid-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .product-card-modern {
        border-radius: 12px;
    }
    
    .product-info-modern {
        padding: 10px;
    }
    
    .product-name-modern {
        font-size: 0.75rem;
    }
    
    .product-brand-modern {
        font-size: 0.6rem;
    }
    
    .product-price-modern {
        font-size: 0.9rem;
    }
}

/* Medium Phones (480px - 639px) */
@media (min-width: 480px) and (max-width: 639px) {
    .products-grid-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .product-info-modern {
        padding: 12px;
    }
    
    .product-name-modern {
        font-size: 0.8rem;
    }
    
    .product-price-modern {
        font-size: 0.95rem;
    }
}

/* Large Phones / Small Tablets (640px - 768px) */
@media (min-width: 640px) and (max-width: 768px) {
    .products-grid-main {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }
    
    .product-info-modern {
        padding: 14px;
    }
    
    .product-name-modern {
        font-size: 0.85rem;
    }
}

/* Tablets (769px - 1023px) */
@media (min-width: 769px) and (max-width: 1023px) {
    .products-grid-main {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    
    .product-card-modern {
        min-height: 400px;
    }
}

/* Desktop Grid Optimization - 4 produtos por linha a partir de 1024px */
@media (min-width: 1024px) {
    .products-grid-main {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    
    .product-card-modern {
        min-height: 440px;
    }
}

@media (min-width: 1200px) {
    .products-grid-main {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
  
    .product-card-modern {
        min-height: 480px;
    }
  
    .product-actions-modern {
        padding: 1rem 1.25rem;
        gap: 0.75rem;
    }
  
    .btn-view-details,
    .btn-whatsapp-modern {
        padding: 0.875rem 1rem;
        font-size: 0.9375rem;
    }
}

@media (min-width: 1400px) {
    .products-grid-main {
        grid-template-columns: repeat(4, 1fr);
        gap: 28px;
    }
    
    .product-card-modern {
        min-height: 500px;
    }
}

@media (min-width: 1600px) {
    .products-grid-main {
        grid-template-columns: repeat(5, 1fr);
        gap: 32px;
    }
}
/* Modern Product Card */
@media (min-width: 769px) {
    .product-card-modern {
        display: flex;
        flex-direction: column;
        min-height: 450px;
    }
  
    .product-info-modern {
        flex: 1;
        padding: 1.25rem;
    }
  
    .product-actions-modern {
        margin-top: auto;
        padding: 1rem 1.25rem;
  
        display: flex;
        gap: 0.75rem;
    }
  
    .btn-view-details,
    .btn-whatsapp-modern {
        flex: 1;
        padding: 0.875rem 1rem;
        font-size: 0.9375rem;
        font-weight: 600;
    }
}
.product-card-modern {
    background: #ffffff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: none;
}
.product-card-modern:hover {
    transform: translateY(-4px);
    box-shadow: none;
}
.product-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.product-image-modern {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-img-modern {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.product-card-modern:hover .product-img-modern {
    transform: scale(1.05);
}
.product-image-placeholder-modern {
    font-size: 3rem;
    color: #666666;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #f9f9f9;
    overflow: hidden;
}
/* Logo de fundo com blur usando pseudo-elemento */
.product-image-placeholder-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 60% auto;
    background-repeat: no-repeat;
    background-position: center;
    /* Logo será aplicada via JavaScript do data attribute */
    /* Blur na logo de fundo - valor dinâmico do admin (0-100% = 0-10px) */
    filter: blur(2.00px);
    z-index: 0;
    opacity: 0.3;
    pointer-events: none;
}
/* Overlay muito transparente para reduzir opacidade da logo de fundo */
.product-image-placeholder-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 15, 15, 0.5);
    z-index: 0;
    pointer-events: none;
}
/* Wrapper do ícone - sem blur */
.placeholder-icon-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Ícone por cima da logo - SEM blur, apenas sombra */
.placeholder-icon-wrapper i {
    color: #666666;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    font-size: 3rem;
}
.product-vip-badge-modern {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: linear-gradient(135deg, #C7A333 0%, #B8962E 100%);
    color: #000000;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    box-shadow: 0 2px 8px rgba(199, 163, 51, 0.3);
}
.vip-star {
    font-size: 0.875rem;
}
.product-images-badge {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 0.375rem 0.625rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    backdrop-filter: blur(4px);
    z-index: 2;
}
.product-images-badge i {
    font-size: 0.875rem;
}
.product-info-modern {
    background: #ffffff;
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.product-brand-modern {
    font-size: 0.75rem;
    font-weight: 600;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}
.product-name-modern {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #000000;
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8em;
}
.products-section .product-name {
    margin-bottom: 0;
}
.product-price-modern {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333333;
    margin-top: auto;
}
.product-actions-modern {
    background: #ffffff;
    display: flex;
    gap: 0.5rem;
    padding: 1rem 1.25rem;
    margin-top: auto;
}
.btn-discover-perfume {
    flex: 1;
    padding: 0.75rem;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}
@media (min-width: 769px) {
    .btn-discover-perfume {
        flex: 1;
        padding: 0.875rem 1rem;
        font-size: 0.9375rem;
        font-weight: 600;
    }
}
a.btn-discover-perfume[data-product-id] {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    overflow: hidden !important;
    padding: 12px 25px !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    z-index: 10 !important;
    transition: all 0.5s ease !important;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    border: 1px solid #075E54 !important;
    box-shadow: 0 4px 15px rgba(18, 140, 126, 0.4) !important;
}
a.btn-discover-perfume[data-product-id] span {
    color: #ffffff !important;
    font-weight: 800 !important;
    font-size: 13px !important;
    text-transform: uppercase !important;
    z-index: 11 !important;
    visibility: visible !important;
    display: inline-block !important;
    letter-spacing: 0.5px !important;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2) !important;
}
a.btn-discover-perfume[data-product-id]:hover {
    filter: brightness(1.1) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(18, 140, 126, 0.6) !important;
}
a.btn-discover-perfume[data-product-id]::after {
    content: "" !important;
    position: absolute !important;
    top: -50% !important;
    left: -150% !important;
    width: 80px !important;
    height: 200% !important;
    background: rgba(255, 255, 255, 0.4) !important;
    transform: rotate(30deg) !important;
    animation: goldenSweep 3s infinite !important;
    z-index: 11 !important;
}
@keyframes goldenSweep {
    0% { left: -150%; }
    20% { left: 250%; }
    100% { left: 250%; }
}
.btn-discover-perfume {
    background: linear-gradient(135deg, #D4AF37 0%, #C7A333 100%);
    color: #000000;
}
.btn-discover-perfume:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}
@media (max-width: 480px) {
    .product-actions-modern {
        background: #ffffff;
        flex-direction: column;
        gap: 0.5rem;
        padding: 0 0.75rem 0.75rem 0.75rem;
    }
    .btn-discover-perfume {
        width: 100%;
    }
    a.btn-discover-perfume[data-product-id] {
        padding: 14px 18px !important;
        border-radius: 14px !important;
    }
    a.btn-discover-perfume[data-product-id] span {
        font-size: 11px !important;
        letter-spacing: 0.6px !important;
    }
}
/* Estilos para ocultar scrollbar nos cards de produto */
.product-card-modern::-webkit-scrollbar,
.product-info-modern::-webkit-scrollbar,
.product-actions-modern::-webkit-scrollbar {
    display: none !important;
}

.product-card-modern,
.product-info-modern,
.product-actions-modern {
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
}

.btn-view-details,
.btn-whatsapp-modern {
    flex: 1;
    padding: 0.75rem;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}
.btn-view-details {
    background: #C7A333;
    color: #000000;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn-view-details::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        #4C3F01 0%,
        #8A6623 20%,
        #D4AF37 40%,
        #F7EF8A 50%,
        #D4AF37 60%,
        #8A6623 80%,
        #4C3F01 100%
    );
    background-size: 300% 300%;
    animation: goldFlow 4s ease-in-out infinite;
    z-index: -1;
}
.btn-view-details:hover {
    background: transparent;
    color: #000000;
    transform: scale(1.02);
}
.btn-whatsapp-modern {
    background: #25d366;
    color: #ffffff;
}
.btn-whatsapp-modern:hover {
    background: #20ba5a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}
/* Support Footer */
.vitrine-support-footer {
    --color-primary: #C7A333;
    --color-primary-light: #D4B84A;
    --color-primary-dark: #B8962E;
    --color-text-muted: #B3B3B3;
    padding: 4rem 2rem;
    margin-top: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.support-content-wrapper {
    background: #ffffff;
    padding: 0;
    border-radius: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    border: 1px solid #eeeeee;
}

.support-content-wrapper::before {
    display: none;
}

.support-content {
    background: #ffffff;
    border-radius: 2rem;
    padding: 3.5rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    position: relative;
    z-index: 1;
}

.support-icon-large {
    font-size: 2.5rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: #25D366;
    border-radius: 50%;
    margin-bottom: 0.5rem;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
}
.support-icon-large i {
    color: #ffffff !important;
}

.support-title-large {
    font-size: 1.85rem;
    font-weight: 800;
    background: linear-gradient(135deg, #C7A333 0%, #E5C06D 50%, #B8962E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #C7A333; /* Fallback */
    margin: 0;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.support-text-large {
    font-size: 1.05rem;
    color: #666666;
    margin: 0;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    max-width: 400px;
}

.btn-support-whatsapp-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.15rem 2.5rem;
    background: #25D366;
    color: #ffffff !important;
    border: none;
    border-radius: 100px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    margin-top: 1rem;
}

.btn-support-whatsapp-large:hover {
    background: #1ebc5a;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.35);
    color: #ffffff !important;
}

.btn-support-whatsapp-large i {
    font-size: 1.4rem;
    color: #ffffff !important;
}

.btn-support-whatsapp-large span {
    color: #ffffff !important;
}

.btn-support-whatsapp-large:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.animate__animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}
.animate__pulse {
    animation-name: animate__pulse;
    animation-iteration-count: infinite;
}
@keyframes animate__pulse {
    0% {
        transform: scale3d(1, 1, 1);
    }
    50% {
        transform: scale3d(1.05, 1.05, 1.05);
    }
    100% {
        transform: scale3d(1, 1, 1);
    }
}
/* Empty State */
.empty-state-wrapper {
    max-width: 600px;
    margin: 0 auto;
}
.empty-state-quote {
    text-align: center;
    font-size: 1.25rem;
    font-style: italic;
    color: #C7A333;
    font-weight: 500;
    margin: 0 0 2rem 0;
    letter-spacing: 0.01em;
    opacity: 0.9;
}
.empty-state {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F8F8 100%);
    border-radius: 20px;
    border: 2px solid rgba(199, 163, 51, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08),
                0 0 0 1px rgba(199, 163, 51, 0.1);
    position: relative;
    overflow: hidden;
}
.empty-state::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(199, 163, 51, 0.05) 0%, transparent 70%);
    animation: pulse-glow 4s ease-in-out infinite;
}
@keyframes pulse-glow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}
.empty-state-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #C7A333;
    position: relative;
    z-index: 1;
    animation: icon-float 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 12px rgba(199, 163, 51, 0.3));
}
@keyframes icon-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}
.empty-state-icon i {
    border: 3px solid #C7A333;
    border-radius: 50%;
    padding: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: rgba(199, 163, 51, 0.05);
}
.empty-state h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #000000;
    margin: 0 0 1rem 0;
    position: relative;
    z-index: 1;
    letter-spacing: -0.01em;
}
.empty-state p {
    color: #666666;
    margin: 0 0 2rem 0;
    font-size: 1.0625rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.empty-state-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.btn-clear-filters-empty,
.btn-expert-empty {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid;
}
.btn-clear-filters-empty {
    background: transparent;
    border-color: #C7A333;
    color: #C7A333;
}
.btn-clear-filters-empty:hover {
    background: #C7A333;
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(199, 163, 51, 0.3);
}
.btn-clear-filters-empty:hover span,
.btn-clear-filters-empty:hover i {
    color: #FFFFFF !important;
}
.btn-expert-empty {
    background: linear-gradient(135deg, #C7A333 0%, #D4B84A 100%);
    border-color: #C7A333;
    color: #000000 !important;
}
.btn-expert-empty span,
.btn-expert-empty i {
    color: #000000 !important;
}
.btn-expert-empty:hover {
    background: linear-gradient(135deg, #D4B84A 0%, #E0C55F 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(199, 163, 51, 0.4);
    color: #000000 !important;
}
.btn-expert-empty:hover span,
.btn-expert-empty:hover i {
    color: #000000 !important;
}
/* Banners Mobile Only - Esconder no desktop, mostrar no mobile */
.banners-mobile-only {
    display: none;
}
@media (max-width: 768px) {
    .btn-view-details i,
    .btn-view-details span,
    .btn-whatsapp-modern i,
    .btn-whatsapp-modern span {
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    .banners-mobile-only {
        display: block;
    }
}
/* Responsive - Mobile e Tablet */
@media (max-width: 768px) {
    .products-grid-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
  
    .products-grid-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}
@media (min-width: 769px) {
    .filter-toggle-btn-desktop {
        display: flex !important;
    }
  
    .filter-toggle-btn {
        display: none !important;
    }
}
@media (max-width: 768px) {
    .vitrine-search-form {
        max-width: 100%;
        width: 100%;
    }
  
    .search-input {
        font-size: 16px; /* Evita zoom no iOS */
        padding-right: 120px; /* Menos espaço no mobile */
    }
  
    .search-submit-btn {
        padding: 0.65rem 1rem;
        font-size: 0.85rem;
    }
  
    .search-submit-btn span {
        display: none; /* Esconder texto no mobile, só ícone */
    }
  
    .clear-search {
        right: 130px; /* Ajustado para mobile */
    }
  
    .search-active-icon {
        right: 120px; /* Ajustado para mobile */
        font-size: 0.9rem;
    }
  
    .filter-toggle-btn {
        display: flex;
        width: 100%;
        justify-content: center;
        padding: 1rem;
        font-size: 1rem;
        border: 1.196px solid rgba(212, 175, 55, 0.30);
        background: radial-gradient(67.54% 100.03% at 50% 0%,
            #F7EF8A 0%,
            #D4AF37 25.48%,
            #8A6623 62.5%,
            #4C3B1A 100%);
        color: #ffffff;
        border-radius: 12px;
        font-weight: 700;
        box-shadow: 0 5.98px 23.203px 0 rgba(138, 102, 35, 0.20),
                    0 14.352px 53.701px 0 rgba(138, 102, 35, 0.50);
        overflow: hidden;
    }
  
    .filter-toggle-btn:active {
        transform: scale(0.98);
        filter: brightness(0.95);
    }
  
    .filter-toggle-btn-desktop {
        display: none !important;
    }
    .quick-filters-desktop {
        display: none !important;
    }
    .products-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .showcase-title {
        font-size: 1.5rem;
    }
    .support-title-large {
        font-size: 1.75rem;
    }
    .support-text-large {
        font-size: 1rem;
    }
    .support-icon-large {
        font-size: 3rem;
    }
    .vitrine-support-footer {
        padding: 3rem 1.5rem;
    }
  
    .support-content {
        padding: 2.5rem 2rem;
    }
  
    .support-title-large {
        font-size: 1.75rem;
    }
  
    .support-text-large {
        font-size: 1rem;
    }
  
    .btn-support-whatsapp-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
  
    .empty-state-quote {
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
    }
  
    .empty-state {
        padding: 2.5rem 1.5rem;
    }
  
    .empty-state-icon i {
        width: 100px;
        height: 100px;
        padding: 1.25rem;
    }
  
    .empty-state-actions {
        flex-direction: column;
    }
  
    .btn-clear-filters-empty,
    .btn-expert-empty {
        width: 100%;
        justify-content: center;
    }
}
@media (max-width: 480px) {
    .products-grid-main,
    .products-grid-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    .product-info-modern {
        background: #ffffff;
        padding: 0.75rem;
    }
  
    .section-title {
        font-size: 1.75rem;
    }
  
    .empty-state-quote {
        font-size: 1rem;
    }
    .product-name-modern {
        font-size: 0.875rem;
        min-height: 2.4em;
    }
    .product-price-modern {
        font-size: 1.125rem;
    }
    .product-actions-modern {
        background: #ffffff;
        flex-direction: column;
        gap: 0.5rem;
        padding: 0 0.75rem 0.75rem 0.75rem;
    }
    .btn-view-details,
    .btn-whatsapp-modern {
        width: 100%;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.5rem !important;
    }
    .btn-view-details i,
    .btn-view-details span,
    .btn-whatsapp-modern i,
    .btn-whatsapp-modern span {
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    .support-title-large {
        font-size: 1.5rem;
    }
}
/* ============================================
   PREMIUM CAROUSEL STYLES
   ============================================ */
.carousel-banner-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}
/* Mobile: 100% largura, sem padding/margem, sem bordas */
@media (max-width: 768px) {
    .carousel-banner-wrapper {
        padding: 0;
        margin: 0;
        width: 100%;
    }
  
    .carousel-banner-wrapper .mySwiper,
    .carousel-banner-wrapper .swiper-slide,
    .carousel-banner-wrapper picture,
    .carousel-banner-wrapper img {
        width: 100% !important;
        border-radius: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
    }
}
.premium-carousel-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}
/* Integração menu + banner */
.vitrine-top-bar + .premium-carousel-container {
    margin-top: 0;
}
.carousel-main-container {
    position: relative;
    width: 100%;
    height: 55vh;
    min-height: 450px;
    max-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    margin-top: 0;
    border-radius: 0;
}
/* Logo movement based on hover */
.carousel-main-container:has(.carousel-slide:nth-child(1):hover) .moving-logo-container {
    left: 35%;
}
.carousel-main-container:has(.carousel-slide:nth-child(2):hover) .moving-logo-container {
    left: 50%;
}
.carousel-main-container:has(.carousel-slide:nth-child(3):hover) .moving-logo-container {
    left: 65%;
}
.carousel-main-container:has(.carousel-slide:nth-child(4):hover) .moving-logo-container {
    left: 65%;
}
/* Carousel Dots */
.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 50;
}
.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}
.carousel-dot:hover {
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}
.carousel-dot.active {
    background: #C7A333;
    border-color: #C7A333;
    width: 24px;
    border-radius: 6px;
}
/* Pause Indicators */
.pause-indicator {
    position: absolute;
    bottom: 25px;
    font-size: 0.7rem;
    opacity: 0.6;
    color: #fff;
    z-index: 10;
    pointer-events: none;
}
.left-pause {
    left: 25px;
}
.right-pause {
    right: 25px;
}
/* Responsive */
@media (max-width: 1024px) {
    .carousel-main-container {
        height: 30vh;
        min-height: 220px;
        max-height: 300px;
    }
  
    .moving-logo-container {
        width: 15vw;
        max-width: 180px;
    }
}
@media (max-width: 768px) {
    .carousel-main-container {
        height: 22vh !important;
        min-height: 160px !important;
        max-height: 220px !important;
    }
  
    .moving-logo-container {
        width: 100px;
        left: 50% !important;
    }
  
    .carousel-dots {
        bottom: 15px;
    }
  
    .pause-indicator {
        bottom: 12px;
        font-size: 0.6rem;
    }
  
    .left-pause {
        left: 12px;
    }
  
    .right-pause {
        right: 12px;
    }
}
@media (max-width: 480px) {
    .carousel-main-container {
        height: 22vh;
        min-height: 180px;
        max-height: 250px;
    }
  
    .moving-logo-container {
        width: 100px;
    }
  
    .carousel-dot {
        width: 10px;
        height: 10px;
    }
  
    .carousel-dot.active {
        width: 20px;
    }
}
/* Carrossel de Marcas */
.marcas-carousel-section {
    padding: 40px 0;
    /* Background color moved to inline style in HTML */
    border-bottom: none !important;
    max-height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.container-marcas {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    width: 100%;
    height: 100%;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.marcasSwiper {
    padding: 0 !important;
    min-height: 180px;
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    position: relative;
}
.marcasSwiper .swiper-wrapper {
    align-items: center;
}
.marcasSwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    padding: 10px 0;
}
.brand-logo-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}
.marcasSwiper .swiper-slide img {
    max-width: var(--brand-logo-max-width);
    max-height: var(--brand-logo-max-height);
    width: auto;
    height: auto;
    filter: brightness(0) invert(1) !important;
    transition: all 0.3s ease;
    opacity: 1 !important;
    display: block;
    margin: auto;
    object-fit: contain;
    object-position: center;
}
.marcasSwiper .swiper-slide img:hover {
    filter: brightness(0) invert(1) !important;
    opacity: 1;
    transform: scale(1.05);
}
.marcasSwiper .swiper-button-next,
.marcasSwiper .swiper-button-prev {
    color: #000;
    transform: scale(0.7);
    /* Adjusted to perfectly align with centered logos */
    top: 50%;
    margin-top: 0;
    transform: translateY(-50%) scale(0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}
.marcasSwiper .swiper-button-next,
.marcasSwiper .swiper-button-prev {
    display: none !important;
}
.marcasSwiper .swiper-button-prev {
    left: 0;
}
.marcasSwiper .swiper-button-next {
    right: 0;
}
@media (max-width: 768px) {
    .marcasSwiper {
        padding: 0 !important;
        min-height: 120px;
    }
  
    .marcasSwiper .swiper-slide {
        height: auto;
        padding: 8px 0;
    }
  
    .marcasSwiper .swiper-slide img {
        max-width: var(--brand-logo-max-width-mobile);
        max-height: var(--brand-logo-max-height-mobile);
        filter: brightness(0) invert(1) !important;
        opacity: 1 !important;
    }
}
/* FORÇAR BOTÃO VERDE - REGRAS ULTRA ESPECÍFICAS */
/* 1. O Botão (Fundo Verde e Formato) */
a.btn-whatsapp-modern[data-product-id] {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    overflow: hidden !important;
    padding: 12px 25px 12px 55px !important; /* Espaço para a bolinha branca */
    border-radius: 12px !important;
    text-decoration: none !important;
    z-index: 10 !important;
    transition: all 0.5s ease !important;
  
    /* Gradiente Verde WhatsApp Premium */
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    border: 1px solid #075E54 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}
/* 2. O Ícone (Bolinha Branca com o símbolo do Whats) */
a.btn-whatsapp-modern[data-product-id] i {
    position: absolute !important;
    left: 10px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background-color: #ffffff !important; /* Fundo Branco */
    color: #25D366 !important; /* S��mbolo Verde */
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18px !important;
    z-index: 12 !important;
    transition: all 0.5s ease !important;
}
/* 3. O Texto "Comprar" */
a.btn-whatsapp-modern[data-product-id] span {
    color: #ffffff !important;
    font-weight: 800 !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    z-index: 11 !important;
    visibility: visible !important;
    display: inline-block !important;
}
/* 4. Efeito de Passar o Mouse (Hover) */
a.btn-whatsapp-modern[data-product-id]:hover {
    padding: 12px 55px 12px 25px !important; /* Inverte o lado */
    filter: brightness(1.1) !important;
}
a.btn-whatsapp-modern[data-product-id]:hover i {
    left: calc(100% - 42px) !important; /* Move a bolinha para a direita */
    transform: translateY(-50%) rotate(360deg) !important;
}
/* 5. Animação do Brilho Passando */
a.btn-whatsapp-modern[data-product-id]::after {
    content: "" !important;
    position: absolute !important;
    top: -50% !important;
    left: -150% !important;
    width: 80px !important;
    height: 200% !important;
    background: rgba(255, 255, 255, 0.3) !important;
    transform: rotate(30deg) !important;
    animation: lightSweep 3s infinite !important;
    z-index: 11 !important;
}
@keyframes lightSweep {
    0% { left: -150%; }
    20% { left: 250%; }
    100% { left: 250%; }
}
        

a.btn-whatsapp-modern[data-product-id] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 12px 25px 12px 55px;
    border-radius: 12px;
    text-decoration: none;
    background: #0f0f0f;
    border: 1px solid #b8860b;
    box-shadow:
        0 4px 15px rgba(0,0,0,0.5),
        inset 0 0 8px rgba(184,134,11,0.15);
    transition: all 0.4s ease;
}
a.btn-whatsapp-modern[data-product-id] i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    color: #25D366;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
    transition: all 0.5s ease;
}
a.btn-whatsapp-modern[data-product-id] span {
    color: #d4af37;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    transition: all 0.5s ease;
    line-height: 1.2;
}
/* ─────────────── HOVER ─────────────── */
a.btn-whatsapp-modern[data-product-id]:hover {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border-color: #ffd700;
    box-shadow:
        0 8px 25px rgba(184,134,11,0.35),
        0 0 20px rgba(212,175,55,0.15);
    transform: translateY(-2px);
}
a.btn-whatsapp-modern[data-product-id]:hover i {
    left: calc(100% - 46px);
    transform: translateY(-50%) rotate(360deg);
    background: #ffffff;
    color: #25D366;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5);
}
a.btn-whatsapp-modern[data-product-id]:hover span {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(212,175,55,0.4);
    transform: translateX(-34px);
}
/* Pulse glow */
@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(212,175,55,0.12); }
    70% { box-shadow: 0 0 0 15px rgba(212,175,55,0); }
    100% { box-shadow: 0 0 0 0 rgba(212,175,55,0); }
}
a.btn-whatsapp-modern[data-product-id]:hover {
    animation: pulse-glow 1.8s infinite ease-in-out;
}
/* Responsivo */
@media (max-width: 768px) {
    a.btn-whatsapp-modern[data-product-id] {
        padding: 10px 20px 10px 50px;
        font-size: 12px;
    }
  
    a.btn-whatsapp-modern[data-product-id] i {
        width: 30px;
        height: 30px;
        font-size: 18px;
        left: 10px;
    }
  
    a.btn-whatsapp-modern[data-product-id] span {
        font-size: 12px;
    }
}


.cart-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 0.75rem 1rem;
    box-shadow: 0 -8px 20px rgba(0,0,0,0.35);
    border-top: 2px solid #C7A333;
}

.cart-bottom-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    text-decoration: none;
    color: #fff;
    transition: none;
}

.cart-bottom-link:hover,
.cart-bottom-link:focus,
.cart-bottom-link:active {
    color: #fff;
    text-decoration: none;
}

.cart-bottom-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    transition: none;
}

.cart-bottom-link:hover .cart-bottom-title {
    color: #fff;
}

.cart-bottom-link:hover .cart-bottom-title i {
    color: #C7A333;
}

.cart-bottom-count {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #C7A333;
    color: #000;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    font-weight: 700;
}

.cart-bottom-link:hover .cart-bottom-count,
.cart-bottom-link:focus .cart-bottom-count,
.cart-bottom-link:active .cart-bottom-count {
    color: #000;
}

.public-main {
    padding-bottom: 90px;
}

@media (min-width: 1024px) {
    .cart-bottom-nav {
        max-width: 1200px;
        margin: 0 auto;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        border-radius: 16px 16px 0 0;
    }
}

