/**
 * MhSys SaaS - E-commerce Storefront, Product Catalog & Checkout Stylesheet
 * Modificado: 2026-08-22 20:49:56
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');


/* ========================================================
   E-COMMERCE: STOREFRONT (BLOCK 1)
   ======================================================== */
:root {
    --bg-color: #0b0f19;
    --text-color: #f1f5f9;
    --text-muted: #94a3b8;
    --primary: #6366f1;
    --primary-rgb: 99, 102, 241;
    --secondary: #a855f7;
    --secondary-rgb: 168, 85, 247;
    --primary-hover: rgba(var(--primary-rgb), 0.85);
    --primary-gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --accent-pink: var(--secondary);
    --accent-cyan: #06b6d4;
    --accent-cyan-rgb: 6, 182, 212;
    --accent-sunset: linear-gradient(135deg, #f43f5e 0%, #e11d48 100%);
    --border: rgba(255, 255, 255, 0.08);
    --card-bg: rgba(15, 23, 42, 0.45);
    --card-shadow: 0 16px 36px -12px rgba(0, 0, 0, 0.6);
    --premium-glow: 0 0 25px rgba(var(--primary-rgb), 0.2);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    background-image: radial-gradient(circle at 10% 15%, rgba(var(--primary-rgb), 0.08) 0%, transparent 45%),
                      radial-gradient(circle at 90% 45%, rgba(var(--secondary-rgb), 0.08) 0%, transparent 45%),
                      radial-gradient(circle at 50% 85%, rgba(6, 182, 212, 0.06) 0%, transparent 45%);
    color: var(--text-color);
    overflow-x: hidden;
    letter-spacing: -0.01em;
    transition: background-color 0.4s ease, color 0.4s ease;
}

/* Micro-Animations Cascades */
@keyframes fadeUpIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-item-col {
    animation: fadeUpIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.product-item-col:nth-child(1) { animation-delay: 0.05s; }
.product-item-col:nth-child(2) { animation-delay: 0.1s; }
.product-item-col:nth-child(3) { animation-delay: 0.15s; }
.product-item-col:nth-child(4) { animation-delay: 0.2s; }
.product-item-col:nth-child(5) { animation-delay: 0.25s; }
.product-item-col:nth-child(6) { animation-delay: 0.3s; }

        /* Cart Bounce Keyframes */
        @keyframes cartBounce {
            0% { transform: scale(1); }
            20% { transform: scale(1.3) rotate(-10deg); }
            45% { transform: scale(0.9) rotate(8deg); }
            70% { transform: scale(1.15) rotate(-4deg); }
            85% { transform: scale(0.95) rotate(2deg); }
            100% { transform: scale(1) rotate(0); }
        }

        .animate-cart-bounce {
            animation: cartBounce 0.75s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
        }

        @keyframes badgePulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.4); }
            100% { transform: scale(1); }
        }
        .animate-badge-pulse {
            animation: badgePulse 0.4s ease-out;
        }

        /* Navbar Styling */
        .navbar-premium {
            background: rgba(11, 15, 25, 0.75) !important;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
            transition: var(--transition-smooth);
        }

        .navbar-premium.scrolled {
            box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
            background: rgba(11, 15, 25, 0.95) !important;
        }

        .navbar-brand span {
            background: linear-gradient(90deg, #fff, var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 800;
        }

        .navbar-brand-icon {
            width: 42px;
            height: 42px;
            background: var(--primary-gradient);
            border-radius: 12px;
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 18px -3px rgba(var(--primary-rgb), 0.4);
            transition: var(--transition-smooth);
        }

        .navbar-premium:hover .navbar-brand-icon {
            transform: rotate(5deg) scale(1.05);
        }

        #navbarCartBtn {
            background: rgba(255, 255, 255, 0.03) !important;
            border: 1px solid var(--border) !important;
            color: #fff !important;
            transition: var(--transition-smooth);
        }

        #navbarCartBtn:hover {
            border-color: var(--primary) !important;
            box-shadow: var(--premium-glow) !important;
            transform: translateY(-2px);
        }

        .navbar-tel-btn {
            background: rgba(255, 255, 255, 0.03) !important;
            border: 1px solid var(--border) !important;
            color: #fff !important;
            transition: var(--transition-smooth);
            text-decoration: none;
        }

        .navbar-tel-btn i {
            color: var(--primary) !important;
        }

        .navbar-tel-btn:hover {
            border-color: var(--primary) !important;
            box-shadow: var(--premium-glow) !important;
            transform: translateY(-2px);
            color: #fff !important;
        }

        @media (max-width: 767.98px) {
            /* Reduz paddings e força tamanho quadrado nos botões de ação da navbar mobile */
            #navbarCartBtn, #navbarTelBtn, #storeThemeBtn {
                padding: 0 !important;
                width: 36px !important;
                height: 36px !important;
                min-width: 36px !important;
                display: inline-flex !important;
                align-items: center !important;
                justify-content: center !important;
                border-radius: 50% !important; /* Força geometria perfeitamente circular em mobile */
            }
            
            /* Oculta o texto descritivo "Meu Carrinho" em mobile para preservar área útil de borda */
            #navbarCartBtn span.d-none.d-sm-inline {
                display: none !important;
            }
            
            /* Reposiciona o contador absoluto de itens do carrinho para o topo do círculo */
            #navbarCartBtn #cartCountBadge {
                top: -4px !important;
                start: 75% !important;
                transform: translate(-50%, 0) !important;
                font-size: 0.62rem !important;
                padding: 3px 6px !important;
            }
            
            /* Oculta o texto do número de telefone em mobile, mantendo estritamente o ícone clicável */
            #navbarTelBtn span.font-monospace {
                display: none !important;
            }
            
            /* Enxuga a logo para não colidir com os três botões circulares alinhados */
            .navbar-brand {
                font-size: 1.15rem !important;
            }
            .navbar-brand-icon {
                width: 34px !important;
                height: 34px !important;
            }
        }

        /* Hero Banner Section */
        .hero-banner {
            background: transparent;
            color: #fff;
            padding: 95px 0 120px 0;
            position: relative;
            overflow: hidden;
        }

        .hero-banner h1 {
            font-size: 3.8rem;
            font-weight: 900;
            background: linear-gradient(135deg, #ffffff 20%, var(--secondary) 60%, var(--primary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -2px;
        }

        .hero-glow-1 {
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(var(--primary-rgb), 0.16) 0%, rgba(var(--primary-rgb), 0) 70%);
            top: -200px;
            right: -100px;
            pointer-events: none;
        }

        .hero-glow-2 {
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(var(--secondary-rgb), 0.12) 0%, rgba(var(--secondary-rgb), 0) 70%);
            bottom: -200px;
            left: -100px;
            pointer-events: none;
        }

        /* Floating Search */
        .search-container {
            max-width: 650px;
            margin: -60px auto 0 auto;
            position: relative;
            z-index: 10;
        }

        .search-container.search-no-banner {
            margin: 20px auto 0 auto;
        }

        .search-wrapper {
            position: relative;
            background: rgba(15, 23, 42, 0.65);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 30px;
            padding: 6px;
            box-shadow: var(--card-shadow), 0 0 30px rgba(0, 0, 0, 0.5);
            border: 1px solid var(--border);
            transition: var(--transition-smooth);
        }

        .search-wrapper:focus-within {
            box-shadow: 0 0 30px rgba(var(--primary-rgb), 0.35);
            border-color: var(--primary);
        }

        .search-input {
            height: 50px;
            border: none !important;
            padding-left: 20px;
            font-size: 1.05rem;
            font-weight: 500;
            color: #fff !important;
            background: transparent !important;
            width: 100%;
        }

        .search-input::placeholder {
            color: #64748b;
        }

        .search-input:focus {
            outline: none;
            box-shadow: none;
        }

        .search-btn {
            background: var(--primary-gradient);
            border: none;
            color: #fff;
            border-radius: 25px;
            padding: 0 25px;
            height: 50px;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.3);
            transition: var(--transition-smooth);
        }

        .search-btn:hover {
            transform: scale(1.02);
            box-shadow: 0 6px 18px rgba(var(--primary-rgb), 0.45);
        }

        /* Category Menu */
        .category-pill {
            cursor: pointer;
            padding: 11px 26px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.92rem;
            transition: var(--transition-smooth);
            border: 1px solid var(--border);
            background-color: rgba(255, 255, 255, 0.02);
            color: #94a3b8;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .category-pill:hover {
            border-color: var(--primary);
            color: #fff;
            background-color: rgba(var(--primary-rgb), 0.05);
            transform: translateY(-2px);
        }

        .category-pill.active {
            background: var(--primary-gradient);
            color: #fff;
            border-color: transparent;
            box-shadow: 0 8px 22px -5px rgba(var(--primary-rgb), 0.5);
        }

        /* Filters Card */
        .filter-card {
            background: var(--card-bg);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border-radius: 28px;
            border: 1px solid var(--border);
            box-shadow: var(--card-shadow);
        }

        #iconToggleFiltros, #iconToggleFiltrosMob {
            transition: transform 0.25s ease-in-out;
            display: inline-block;
        }
        .filter-row-additional, .filter-row-additional-mob {
            will-change: opacity;
        }

        .filter-card h2 {
            color: #fff !important;
        }

        .filter-section-title {
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            font-size: 0.85rem;
            color: var(--primary);
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-bottom: 16px;
        }

        .form-check-label {
            color: #94a3b8 !important;
            transition: var(--transition-smooth);
        }

        .form-check:hover .form-check-label {
            color: #fff !important;
        }

        .form-check-input {
            background-color: rgba(255, 255, 255, 0.03) !important;
            border: 1px solid rgba(255, 255, 255, 0.15) !important;
        }

        .form-check-input:checked {
            background-color: var(--primary) !important;
            border-color: var(--primary) !important;
            box-shadow: 0 0 8px rgba(var(--primary-rgb), 0.4);
        }

        /* Product Cards Glassmorphic Refinements */
        .product-card {
            background: var(--card-bg);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--border);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--card-shadow);
            transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
            position: relative;
            cursor: pointer;
            text-decoration: none;
        }

        .product-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04), 0 0 0 1px rgba(var(--primary-rgb), 0.15);
            border-color: rgba(var(--primary-rgb), 0.35);
        }

        .product-img-container {
            position: relative;
            z-index: 2;
            pointer-events: none;
            width: 100%;
            aspect-ratio: 1 / 1;
            background-color: rgba(0, 0, 0, 0.02);
            overflow: hidden;
            border-bottom: 1px solid var(--border);
        }

        .product-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .product-card:hover .product-img {
            transform: scale(1.05);
        }

        /* Badges */
        .badge-premium-destaque {
            position: absolute;
            top: 12px;
            left: 12px;
            background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
            color: #090d16;
            font-weight: 700;
            font-size: 0.7rem;
            padding: 4px 10px;
            border-radius: 8px;
            z-index: 5;
            box-shadow: 0 4px 10px rgba(255, 165, 0, 0.25);
            text-transform: uppercase;
            letter-spacing: 0.03em;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .badge-premium-promo {
            position: absolute;
            top: 12px;
            right: 12px;
            background: var(--accent-sunset);
            color: #fff;
            font-weight: 700;
            font-size: 0.7rem;
            padding: 4px 10px;
            border-radius: 8px;
            z-index: 5;
            box-shadow: 0 4px 10px rgba(244, 63, 94, 0.25);
            text-transform: uppercase;
            letter-spacing: 0.03em;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .badge-promocao-percentual {
            background: var(--primary-gradient);
            color: #fff;
            font-weight: 800;
            font-size: 0.72rem;
            padding: 4px 10px;
            border-radius: 8px;
            z-index: 5;
            box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.35);
            text-transform: uppercase;
            letter-spacing: 0.03em;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .badge-premium-novidade {
            position: absolute;
            top: 12px;
            left: 12px;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: #ffffff;
            font-weight: 700;
            font-size: 0.7rem;
            padding: 4px 10px;
            border-radius: 8px;
            z-index: 5;
            box-shadow: 0 4px 10px rgba(16, 185, 129, 0.25);
            text-transform: uppercase;
            letter-spacing: 0.03em;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            transition: var(--transition-smooth);
        }

        .badge-premium-novidade.has-destaque {
            top: 40px;
        }

        /* Ajustes específicos para o modo lista horizontal */
        .products-display-grid.row-cols-1 .badge-premium-novidade,
        article.product-card.flex-row .badge-premium-novidade {
            top: 8px;
            left: 8px;
            font-size: 8px;
            padding: 3px 6px;
            border-radius: 6px;
        }
        .products-display-grid.row-cols-1 .badge-premium-novidade.has-destaque,
        article.product-card.flex-row .badge-premium-novidade.has-destaque {
            top: 30px;
        }

        /* Ajustes responsivos adicionais para mobile */
        @media (max-width: 767.98px) {
            .badge-premium-novidade {
                font-size: 0.6rem;
                padding: 3px 7px;
                border-radius: 6px;
                top: 8px;
                left: 8px;
            }
            .badge-premium-novidade.has-destaque {
                top: 32px;
            }
        }

        .product-card.card-promocao-ativa {
            border: 2.5px solid rgba(var(--primary-rgb), 0.45) !important;
            box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.15), var(--card-shadow) !important;
        }

        .product-info {
            padding: 16px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .product-cat {
            font-size: 0.7rem;
            color: var(--primary);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 6px;
        }

        .product-title {
            font-family: 'Outfit', sans-serif;
            font-weight: 600;
            font-size: 1.05rem;
            color: var(--text-color);
            margin-bottom: 6px;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            min-height: 2.8rem;
            transition: color 0.2s ease;
        }

        .product-card:hover .product-title {
            color: var(--primary);
        }

        .product-desc {
            font-size: 0.82rem;
            color: var(--text-muted);
            margin-bottom: 14px;
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            min-height: 2.4rem;
        }

        .product-action-row {
            margin-top: auto;
            padding-top: 12px;
            border-top: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
        }

        .price-box {
            display: flex;
            flex-direction: column;
            min-width: 0;
        }

        .price-old {
            font-size: 0.75rem;
            color: var(--text-muted);
            text-decoration: line-through;
            margin-bottom: 1px;
        }

        .price-new {
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            font-size: 1.25rem;
            color: var(--primary);
            text-shadow: none;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .btn-buy-premium {
            width: 38px;
            height: 38px;
            background: var(--primary-gradient);
            border: none;
            color: #fff;
            border-radius: 10px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.25);
            transition: all 0.2s ease;
            flex-shrink: 0;
            position: relative;
            z-index: 2;
        }

        .btn-buy-premium:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 16px rgba(var(--primary-rgb), 0.4);
        }

        /* 6 Column Layout Compact Optimizations (Desktop) */
        @media (min-width: 992px) {
            .col-lg-2 .product-card .product-info {
                padding: 12px;
            }
            .col-lg-2 .product-card .product-title {
                font-size: 0.9rem;
                min-height: 2.5rem;
            }
            .col-lg-2 .product-card .product-desc {
                font-size: 0.75rem;
                min-height: 2.2rem;
                margin-bottom: 10px;
            }
            .col-lg-2 .product-card .price-new {
                font-size: 1.1rem;
            }
            .col-lg-2 .product-card .btn-buy-premium {
                width: 32px;
                height: 32px;
                border-radius: 8px;
            }
            .col-lg-2 .product-card .btn-buy-premium i {
                font-size: 0.95rem !important;
            }
        }

        /* 2 Column Grid Layout Optimizations (Mobile) */
        @media (max-width: 767.98px) {
            /* Força o contêiner flexível a quebrar linhas sem gerar transbordo lateral */
            .products-display-grid.row {
                display: flex !important;
                flex-wrap: wrap !important;
                gap: 8px !important; /* Espaçamento cirúrgico de grade mobile */
                margin-left: 0 !important;
                margin-right: 0 !important;
                padding: 0 !important;
            }

            /* Intercepta e redefine as classes de colunas injetadas (.col-6 ou .col-12) */
            .products-display-grid:not(.row-cols-1) .card-product-premium-wrapper.product-item-col {
                /* Caso o banco dite 2 colunas e não esteja em modo lista horizontal, crava calc(50% - metade_do_gap) */
                width: var(--primary, #6366f1) !important;
                max-width: var(--primary, #6366f1) !important;
                flex: 0 0 auto !important;
                padding-left: 0 !important;
                padding-right: 0 !important;
                margin-bottom: 4px !important;
            }
            .products-display-grid.row-cols-1 .card-product-premium-wrapper.product-item-col {
                width: 100% !important;
                max-width: 100% !important;
                flex: 0 0 auto !important;
                padding-left: 0 !important;
                padding-right: 0 !important;
                margin-bottom: 4px !important;
            }

            /* Calibração de densidade dos cartões no formato duplo */
            
                .products-display-grid:not(.row-cols-1) .card-product-premium-wrapper .product-card {
                    border-radius: 12px !important;
                }
                .products-display-grid:not(.row-cols-1) .card-product-premium-wrapper .product-img-container {
                    height: 125px !important; /* Nivelamento fixo de altura de foto contra o efeito escadinha */
                }
                .products-display-grid:not(.row-cols-1) .card-product-premium-wrapper .product-info {
                    padding: 10px !important;
                }
                .products-display-grid:not(.row-cols-1) .card-product-premium-wrapper .product-title {
                    font-size: 0.85rem !important;
                    min-height: 2.4rem !important; /* Trava de segurança para simetria horizontal */
                    line-height: 1.25 !important;
                    margin-bottom: 4px !important;
                }
                .products-display-grid:not(.row-cols-1) .card-product-premium-wrapper .product-desc {
                    display: none !important; /* Oculta a descrição longa em grid duplo mobile para manter o layout limpo */
                }
                .products-display-grid:not(.row-cols-1) .card-product-premium-wrapper .price-new {
                    font-size: 1rem !important;
                }
            
        }
        /* Custom Styles for List Mode (Horizontal Layout) */
        .products-display-grid.row-cols-1 .product-card {
            flex-direction: row !important;
            align-items: center !important;
            padding: 16px !important;
            gap: 20px !important;
            min-height: auto !important;
            border-radius: 16px !important;
        }

        .products-display-grid.row-cols-1 .product-card .product-img-container {
            width: 110px !important;
            height: 110px !important;
            aspect-ratio: 1 / 1 !important;
            flex-shrink: 0 !important;
            border-radius: 12px !important;
            border: 1px solid var(--border) !important;
        }

        .products-display-grid.row-cols-1 .product-card .flex-grow-1 {
            padding: 0 !important;
            display: flex !important;
            flex-direction: column !important;
            justify-content: center !important;
            min-width: 0 !important;
            flex-grow: 1 !important;
        }

        .products-display-grid.row-cols-1 .product-card .product-title {
            font-size: 1.1rem !important;
            min-height: auto !important;
            margin-bottom: 6px !important;
            white-space: normal !important;
            display: -webkit-box !important;
            -webkit-line-clamp: 2 !important;
            -webkit-box-orient: vertical !important;
            overflow: hidden !important;
        }

        .products-display-grid.row-cols-1 .product-card .product-desc {
            font-size: 0.85rem !important;
            min-height: auto !important;
            margin-bottom: 12px !important;
            white-space: normal !important;
            display: -webkit-box !important;
            -webkit-line-clamp: 2 !important;
            -webkit-box-orient: vertical !important;
            overflow: hidden !important;
        }

        .products-display-grid.row-cols-1 .product-card .product-action-row {
            border-top: none !important;
            padding-top: 0 !important;
            margin-top: 0 !important;
        }

        /* Mobile responsive adjustments for List Mode */
        @media (max-width: 576px) {
            .products-display-grid.row-cols-1 .product-card {
                padding: 12px !important;
                gap: 12px !important;
            }
            .products-display-grid.row-cols-1 .product-card .product-img-container {
                width: 85px !important;
                height: 85px !important;
            }
            .products-display-grid.row-cols-1 .product-card .product-title {
                font-size: 0.95rem !important;
            }
            .products-display-grid.row-cols-1 .product-card .product-desc {
                font-size: 0.78rem !important;
                margin-bottom: 8px !important;
            }
            .products-display-grid.row-cols-1 .product-card .price-new {
                font-size: 1.1rem !important;
            }
        }

        /* Sidebar template light mode visual enhancement */
        @media (min-width: 992px) {
            body.light-theme.template-2 #mainNavbar {
                background: #ffffff !important;
                border-right: 1px solid rgba(0, 0, 0, 0.06) !important;
            }
        }

        /* Mobile Sticky Actions */
        .mobile-filter-bar {
            position: fixed;
            bottom: 24px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 999;
            background: rgba(11, 15, 25, 0.85);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            padding: 8px 16px;
            border-radius: 30px;
            box-shadow: 0 10px 35px rgba(0, 0, 0, 0.6);
            display: none;
            align-items: center;
            gap: 12px;
            border: 1px solid var(--border);
        }

        .mobile-filter-btn {
            background: transparent;
            border: none;
            color: #fff;
            font-weight: 600;
            font-size: 0.88rem;
            padding: 6px 12px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            text-decoration: none;
        }

        /* Search highlights */
        mark.highlight-search {
            background: linear-gradient(120deg, rgba(var(--primary-rgb), 0.35) 0%, rgba(var(--secondary-rgb), 0.35) 100%);
            color: inherit;
            padding: 0 2px;
            border-radius: 4px;
            border-bottom: 2px solid rgba(var(--primary-rgb), 0.7);
        }

        /* Toast premium styles with progress bar */
        .toast-premium {
            position: fixed;
            bottom: 24px;
            right: 24px;
            background: rgba(15, 23, 42, 0.9);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(16, 185, 129, 0.4);
            color: #fff;
            padding: 16px 28px;
            border-radius: 16px;
            box-shadow: 0 12px 30px rgba(16, 185, 129, 0.25);
            z-index: 10000;
            font-family: 'Outfit', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            display: none;
            align-items: center;
            gap: 10px;
            animation: bounceIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            overflow: hidden;
        }

        .toast-premium::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            height: 3px;
            width: 100%;
            background: #10b981;
            animation: toastProgress 3s linear forwards;
        }

        @keyframes toastProgress {
            from { width: 100%; }
            to { width: 0%; }
        }

        @keyframes bounceIn {
            0% { transform: translateY(100px) scale(0.8); opacity: 0; }
            70% { transform: translateY(-10px) scale(1.05); }
            100% { transform: translateY(0) scale(1); opacity: 1; }
        }

        /* Modal Product Premium styling */
        .modal-premium {
            background: rgba(13, 19, 33, 0.88) !important;
            backdrop-filter: blur(25px);
            -webkit-backdrop-filter: blur(25px);
            border-radius: 28px;
            border: 1px solid var(--border) !important;
            box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8);
        }

        .modal-premium h3 {
            color: #fff !important;
        }

        .modal-premium p {
            color: #94a3b8 !important;
        }

        .modal-premium label, .modal-premium span {
            color: #cbd5e1 !important;
        }

        .modal-premium .btn-close {
            filter: invert(1) grayscale(100%) brightness(200%);
        }

        .modal-product-img {
            max-width: 100%;
            max-height: 380px;
            width: auto;
            height: auto;
            border-radius: 20px;
            object-fit: contain;
            background-color: rgba(0, 0, 0, 0.3);
            border: 1px solid var(--border);
            box-shadow: var(--card-shadow);
            display: block;
            margin: 0 auto;
        }

        footer {
            background: rgba(9, 13, 22, 0.8) !important;
            border-top: 1px solid var(--border) !important;
        }

        footer h2 {
            color: #fff !important;
        }

        @media (max-width: 991.98px) {
            .mobile-filter-bar {
                display: flex;
            }
            .hero-banner {
                padding: 60px 0 80px 0;
            }
            .hero-banner h1 {
                font-size: 2.8rem;
            }
        }

        /* Light Theme Variable Overrides & Refinements */
        body.light-theme {
            --bg-color: #f8fafc;
            --text-color: #0f172a;
            --text-muted: #64748b;
            --border: rgba(15, 23, 42, 0.08);
            --card-bg: rgba(255, 255, 255, 0.85);
            --card-shadow: 0 16px 36px -12px rgba(15, 23, 42, 0.08);
        }

        body.light-theme {
            background-color: var(--bg-color);
            background-image: radial-gradient(circle at 10% 15%, rgba(var(--primary-rgb), 0.04) 0%, transparent 40%),
                              radial-gradient(circle at 90% 45%, rgba(var(--secondary-rgb), 0.04) 0%, transparent 40%),
                              radial-gradient(circle at 50% 85%, rgba(6, 182, 212, 0.04) 0%, transparent 45%);
        }

        body.light-theme .navbar-premium {
            background: rgba(255, 255, 255, 0.75) !important;
            border-bottom: 1px solid var(--border);
        }

        body.light-theme .navbar-premium.scrolled {
            background: rgba(255, 255, 255, 0.95) !important;
            box-shadow: 0 10px 40px -10px rgba(15, 23, 42, 0.08);
        }

        body.light-theme .navbar-brand span {
            background: linear-gradient(90deg, #0f172a, var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        body.light-theme .hero-banner h1,
        body.light-theme .hero-carousel h2,
        body.light-theme .hero-carousel h1 {
            color: #ffffff !important;
            background: none !important;
            -webkit-text-fill-color: #ffffff !important;
            text-shadow: 0 3px 18px rgba(0, 0, 0, 0.95), 0 1px 4px rgba(0, 0, 0, 0.9) !important;
        }

        body.light-theme .hero-banner p,
        body.light-theme .hero-carousel p {
            color: rgba(255, 255, 255, 0.95) !important;
            text-shadow: 0 2px 12px rgba(0, 0, 0, 0.95), 0 1px 3px rgba(0, 0, 0, 0.9) !important;
        }

        body.light-theme .search-wrapper {
            background: rgba(255, 255, 255, 0.85);
            border: 1px solid var(--border);
            box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
        }

        body.light-theme .search-input {
            color: #0f172a !important;
        }

        body.light-theme .search-input::placeholder {
            color: #94a3b8;
        }

        body.light-theme .category-pill {
            background-color: rgba(15, 23, 42, 0.02);
            color: #64748b;
        }

        body.light-theme .category-pill:hover {
            color: var(--primary);
            background-color: rgba(var(--primary-rgb), 0.05);
        }

        body.light-theme .category-pill.active {
            color: #fff;
            background: var(--primary-gradient);
        }

        body.light-theme .product-card {
            background: rgba(255, 255, 255, 0.7);
            box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
        }

        body.light-theme .product-card:hover {
            box-shadow: 0 20px 40px rgba(var(--primary-rgb), 0.12);
            border-color: rgba(var(--primary-rgb), 0.25);
        }

        body.light-theme .product-title {
            color: #0f172a;
        }

        body.light-theme .product-card:hover .product-title {
            color: var(--primary);
        }

        body.light-theme .product-desc {
            color: #64748b;
        }

        body.light-theme .filter-card {
            background: rgba(255, 255, 255, 0.65);
        }

        body.light-theme .filter-card h2 {
            color: #0f172a !important;
        }

        body.light-theme .form-check-label {
            color: #475569 !important;
        }

        body.light-theme .form-check:hover .form-check-label {
            color: #0f172a !important;
        }

        body.light-theme .modal-premium {
            background: rgba(255, 255, 255, 0.95) !important;
            box-shadow: 0 25px 60px -15px rgba(15, 23, 42, 0.15);
        }

        body.light-theme .modal-premium h3,
        body.light-theme .modal-premium h4 {
            color: #0f172a !important;
        }

        body.light-theme .modal-premium p,
        body.light-theme .modal-premium span,
        body.light-theme .modal-premium label {
            color: #475569 !important;
        }

        body.light-theme .modal-premium .btn-close {
            filter: none;
        }

        body.light-theme #modalProductSku {
            color: var(--primary) !important;
        }

        body.light-theme #navbarCartBtn {
            background: #fff !important;
            border: 1px solid rgba(0, 0, 0, 0.08) !important;
            color: var(--primary) !important;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03) !important;
        }

        body.light-theme #navbarCartBtn:hover {
            border-color: var(--primary) !important;
            box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.1) !important;
        }

        body.light-theme .navbar-tel-btn {
            background: #fff !important;
            border: 1px solid rgba(0, 0, 0, 0.08) !important;
            color: #475569 !important;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03) !important;
        }

        body.light-theme .navbar-tel-btn:hover {
            border-color: var(--primary) !important;
            box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.1) !important;
            color: var(--primary) !important;
        }

        body.light-theme footer {
            background: #f8fafc !important;
            border-top: 1px solid var(--border) !important;
        }

        body.light-theme footer h2 {
            color: #0f172a !important;
        }

        body.light-theme footer p,
        body.light-theme footer div {
            color: #64748b !important;
        }

        /* Dynamic button close invert for dark mode */
        .btn-close {
            filter: var(--btn-close-filter, invert(1) grayscale(100%) brightness(200%)) !important;
        }
        body.light-theme {
            --btn-close-filter: none;
        }

        /* Premium Category Badge */
        .badge-premium-category {
            background: rgba(255, 255, 255, 0.06);
            color: var(--primary) !important;
            border: 1px solid var(--border);
            font-family: 'Outfit', sans-serif;
        }
        body.light-theme .badge-premium-category {
            background: rgba(var(--primary-rgb), 0.06) !important;
            color: var(--primary) !important;
            border: 1px solid rgba(var(--primary-rgb), 0.15);
        }

        /* Improved price contrast in light theme */
        body.light-theme .price-new {
            color: var(--primary) !important;
            text-shadow: none !important;
        }

        /* Improved product image container backgrounds in light theme */
        body.light-theme .product-img-container {
            background-color: #f8fafc !important;
        }
        body.light-theme .modal-product-img {
            background-color: #f8fafc !important;
            border: 1px solid rgba(0, 0, 0, 0.06) !important;
        }

        /* Improved category circular icon in light theme */
        body.light-theme .category-card-circular .circle-icon {
            background: #fff !important;
            border-color: rgba(0, 0, 0, 0.08) !important;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04) !important;
            color: #475569 !important;
        }
        body.light-theme .category-card-circular:hover .circle-icon {
            border-color: var(--primary) !important;
            background: rgba(var(--primary-rgb), 0.04) !important;
            color: var(--primary) !important;
        }
        body.light-theme .category-card-circular.active .circle-icon {
            background: var(--primary-gradient) !important;
            color: #fff !important;
            border-color: transparent !important;
            box-shadow: 0 8px 22px -5px rgba(var(--primary-rgb), 0.5) !important;
        }

        /* Offcanvas theme adjustments for dark/light mode */
        .offcanvas {
            background-color: var(--bg-color) !important;
            color: var(--text-color) !important;
            border-top: 1px solid var(--border) !important;
        }
        .offcanvas-header {
            border-bottom: 1px solid var(--border) !important;
        }
        .offcanvas-body {
            background-color: var(--bg-color) !important;
        }
        .offcanvas .card {
            background-color: var(--card-bg) !important;
            border: 1px solid var(--border) !important;
        }
        
        body.light-theme .offcanvas {
            background-color: #fff !important;
            color: #0f172a !important;
        }
        body.light-theme .offcanvas-body {
            background-color: #f8fafc !important;
        }
        body.light-theme .offcanvas .card {
            background-color: #fff !important;
            border: 1px solid rgba(0, 0, 0, 0.06) !important;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03) !important;
        }

        /* Base styles for theme switcher button */
        #storeThemeBtn {
            width: 42px !important;
            height: 42px !important;
            background: rgba(255, 255, 255, 0.03) !important;
            color: #fff !important;
            border: 1px solid var(--border) !important;
            display: inline-flex !important;
            align-items: center !important;
            justify-content: center !important;
            border-radius: 50% !important;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        }
        body.light-theme #storeThemeBtn {
            background: #fff !important;
            color: #0f172a !important;
            border: 1px solid rgba(0, 0, 0, 0.08) !important;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04) !important;
        }
        #storeThemeBtn:hover {
            transform: scale(1.08) rotate(15deg) !important;
            border-color: var(--primary) !important;
            color: var(--primary) !important;
            box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.25) !important;
        }
        body.light-theme #storeThemeBtn:hover {
            box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.1) !important;
        }

        /* Micro-Animations & Refinements for UX */
        .category-pill, .product-card, .btn-buy-premium, #navbarCartBtn {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* ==========================================
           TEMPLATE 2: MODERN SIDEBAR & FULL-WIDTH EXTREME MINIMALIST OVERRIDES
           ========================================== */
        @media (min-width: 992px) {
            body.template-2 #mainNavbar {
                position: fixed;
                top: 0;
                left: 0;
                width: 290px;
                height: 100vh;
                flex-direction: column;
                align-items: flex-start;
                justify-content: flex-start;
                padding: 40px 24px !important;
                border-right: 1px solid var(--border);
                border-bottom: none !important;
                z-index: 1050;
                overflow-y: auto;
            }
            body.template-2 #mainNavbar .container {
                flex-direction: column;
                align-items: flex-start;
                height: 100%;
                padding: 0;
                gap: 20px;
            }
            body.template-2 #mainNavbar .ms-auto {
                margin-left: 0 !important;
                margin-top: auto;
                flex-direction: column;
                align-items: flex-start !important;
                gap: 16px !important;
                width: 100%;
            }
            body.template-2 #mainNavbar .ms-auto a,
            body.template-2 #mainNavbar .ms-auto button {
                width: 100%;
                justify-content: center;
            }
            body.template-2 main,
            body.template-2 header.hero-banner,
            body.template-2 section#promoBannersCarousel,
            body.template-2 .brand-showcase-section,
            body.template-2 footer {
                margin-left: 290px;
                transition: margin-left 0.3s ease;
            }

            /* Força container full-width extreme com respiro fluido no Template 2 */
            body.template-2 main .container,
            body.template-2 header.hero-banner .container,
            body.template-2 section#promoBannersCarousel .container,
            body.template-2 .brand-showcase-section .container,
            body.template-2 footer .container {
                max-width: 100% !important;
                padding-left: 2rem !important;
                padding-right: 2rem !important;
            }
        }

        @media (min-width: 1400px) {
            body.template-2 main .container,
            body.template-2 header.hero-banner .container,
            body.template-2 section#promoBannersCarousel .container,
            body.template-2 .brand-showcase-section .container,
            body.template-2 footer .container {
                padding-left: 3.5rem !important;
                padding-right: 3.5rem !important;
            }
        }

        /* Zero Border Policy - Floating Product Cards & Brand Items */
        body.template-2 .product-card,
        body.template-2 .brand-carousel-item,
        body.template-2 .filter-card,
        body.template-2 .details-container {
            border: none !important;
            box-shadow: none !important;
            background: transparent !important;
        }

        /* Harmonização de Tema (Dark / Light Mode Canvas) */
        body.dark-theme.template-2 {
            background-color: #0b0f19 !important;
        }
        body.dark-theme.template-2 main,
        body.dark-theme.template-2 .brand-showcase-section {
            background: transparent !important;
        }

        body.light-theme.template-2 {
            background-color: #f8fafc !important;
        }
        body.light-theme.template-2 main,
        body.light-theme.template-2 .brand-showcase-section {
            background: transparent !important;
        }

        /* Anatomia dos Cards de Produto Minimalistas no Template 2 */
        body.template-2 .product-img-container {
            border-radius: 12px !important;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.03);
            border: none !important;
        }
        body.light-theme.template-2 .product-img-container {
            background: rgba(0, 0, 0, 0.03);
        }

        body.template-2 .product-img-container .product-img {
            transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
        }
        body.template-2 .product-card:hover .product-img {
            transform: scale(1.035) !important;
        }

        /* Ações Rápidas Integradas Minimalistas */
        body.template-2 .btn-quick-view-premium,
        body.template-2 .btn-compare-toggle {
            background: rgba(15, 23, 42, 0.65) !important;
            backdrop-filter: blur(12px) !important;
            -webkit-backdrop-filter: blur(12px) !important;
            border: 1px solid rgba(255, 255, 255, 0.15) !important;
            border-radius: 50px !important;
            color: #ffffff !important;
        }

        /* Setas de Controle dos Carrosséis (Glassmorphic Fade no Hover) */
        body.template-2 .brand-carousel-wrapper .btn-carousel-control,
        body.template-2 .carousel-control-prev,
        body.template-2 .carousel-control-next {
            opacity: 0;
            transition: opacity 0.3s ease, background 0.3s ease, transform 0.3s ease;
            background: rgba(15, 23, 42, 0.6) !important;
            backdrop-filter: blur(12px) !important;
            -webkit-backdrop-filter: blur(12px) !important;
            border: 1px solid rgba(255, 255, 255, 0.15) !important;
            color: #ffffff !important;
            width: 44px !important;
            height: 44px !important;
            border-radius: 50% !important;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        }
        body.template-2 .brand-carousel-wrapper:hover .btn-carousel-control,
        body.template-2 .carousel-wrapper:hover .carousel-control-prev,
        body.template-2 .carousel-wrapper:hover .carousel-control-next {
            opacity: 1;
        }

        /* Logos de Marcas Flutuantes */
        body.template-2 .brand-carousel-item {
            padding: 12px 20px;
            border-radius: 12px;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }
        body.template-2 .brand-carousel-item:hover {
            transform: translateY(-4px);
        }
        body.template-2 .brand-logo-img {
            filter: grayscale(100%) opacity(0.6);
            transition: filter 0.3s ease;
        }
        body.template-2 .brand-carousel-item:hover .brand-logo-img {
            filter: grayscale(0%) opacity(1);
        }

        /* ==========================================
           TEMPLATE 3: APP STYLE BOTTOM NAV OVERRIDES
           ========================================== */
        body.template-3 {
            padding-bottom: 90px;
        }
        
        .bottom-nav-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(11, 15, 25, 0.9);
            backdrop-filter: blur(25px);
            -webkit-backdrop-filter: blur(25px);
            border-top: 1px solid var(--border);
            z-index: 1040;
            box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.4);
            display: flex;
            justify-content: space-around;
            padding: 12px 0;
            transition: var(--transition-smooth);
        }

        body.light-theme .bottom-nav-bar {
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 -10px 30px rgba(15, 23, 42, 0.05);
        }

        .bottom-nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            font-size: 10px;
            font-weight: 700;
            text-decoration: none;
            transition: var(--transition-smooth);
            position: relative;
            flex-grow: 1;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .bottom-nav-item i {
            font-size: 1.35rem;
            margin-bottom: 2px;
        }

        .bottom-nav-item:hover, .bottom-nav-item.active {
            color: var(--primary);
        }

        .bottom-nav-item .badge {
            position: absolute;
            top: -2px;
            right: 32%;
            font-size: 9px;
            padding: 3px 6px;
        }

        /* Circular Category Cards (App Style) */
        .category-card-circular {
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            color: var(--text-muted);
            transition: var(--transition-smooth);
            width: 85px;
            flex-shrink: 0;
        }

        .category-card-circular .circle-icon {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: var(--card-shadow);
            transition: var(--transition-smooth);
        }

        body.light-theme .category-card-circular .circle-icon {
            background: rgba(15, 23, 42, 0.02);
        }

        .category-card-circular:hover .circle-icon {
            border-color: var(--primary);
            background: rgba(var(--primary-rgb), 0.05);
            color: #fff;
            transform: translateY(-4px);
        }

        .category-card-circular.active .circle-icon {
            background: var(--primary-gradient);
            border-color: transparent;
            color: #fff;
            box-shadow: 0 8px 22px -5px rgba(var(--primary-rgb), 0.5);
        }

        .category-card-circular .label {
            font-size: 11px;
            font-weight: 700;
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            width: 100%;
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }

        .category-card-circular.active .label {
            color: var(--primary);
        }

        .scrollbar-hidden::-webkit-scrollbar {
            display: none;
        }
        .scrollbar-hidden {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        /* Container mestre que envolve a listagem de produtos da vitrine */
        .products-display-grid {
            /* Deixamos o Bootstrap row agir com o espaçamento g-3 e g-md-4 padrão */
        }

        /* Container de Controle do Carrossel */
        .brand-carousel-wrapper {
            display: block;
        }

        /* Track de scroll baseada em Hardware Acceleration e Snap-Alignment */
        .brand-carousel-track {
            scroll-behavior: smooth;
            display: flex;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch; /* Força aceleração elástica no iOS */
            scroll-snap-type: x mandatory;
            padding: 12px 4px;
        }

        /* Item individual adaptado para o Snap */
        .brand-carousel-item {
            width: 140px;
            height: 65px;
            padding: 10px 18px;
            background: #ffffff;
            border: 1px solid rgba(15, 23, 42, 0.06);
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            flex-shrink: 0;
            scroll-snap-align: start;
        }

        .brand-carousel-item:hover {
            transform: translateY(-3px) scale(1.04);
            border-color: var(--primary) !important;
            box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.12);
        }

        .brand-logo-img {
            max-width: 100%; max-height: 100%; object-fit: contain;
            filter: grayscale(100%) opacity(65%); transition: all 0.3s ease;
        }
        .brand-carousel-item:hover .brand-logo-img { filter: grayscale(0%) opacity(100%); }

        /* Estilização das Aletas Direcionais (Setas) */
        .btn-carousel-control {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: rgba(15, 23, 42, 0.75) !important;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.15) !important;
            color: #ffffff !important;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            cursor: pointer;
            z-index: 15;
            transition: all 0.2s ease;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }

        .btn-carousel-control:hover {
            background: var(--primary-gradient) !important;
            border-color: transparent !important;
            transform: translateY(-50%) scale(1.1);
        }

        .btn-carousel-control.prev { left: 0; }
        .btn-carousel-control.next { right: 0; }

        /* REGRAS RESPONSIVAS: Desativa as aletas no mobile e ativa o arrastar livre */
        @media (max-width: 991.98px) {
            .btn-carousel-control {
                display: none !important; /* Esconde as setas fisicamente no celular */
            }
            .brand-carousel-wrapper {
                padding-left: 0 !important;
                padding-right: 0 !important;
            }
            .brand-carousel-item {
                width: 110px;
                height: 52px;
                padding: 8px 12px;
            }
        }
        body.light-theme #autocomplete_suggestions_box,
        body.light-theme #autocomplete_suggestions_box_hero {
            background: rgba(255, 255, 255, 0.98) !important;
            box-shadow: 0 20px 40px rgba(0,0,0,0.08) !important;
        }
        .autocomplete-heading {
            font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 800; color: var(--primary); padding: 4px 8px; border-bottom: 1px solid var(--border); margin-top: 8px;
        }
        .autocomplete-row-item {
            display: flex; align-items: center; gap: 12px; padding: 8px 12px; border-radius: 10px; cursor: pointer; text-decoration: none !important; transition: all 0.2s ease;
        }
        .autocomplete-row-item:hover { background: rgba(var(--primary-rgb), 0.08); }
        .autocomplete-title {
            color: var(--text-color) !important;
            font-size: 0.875rem;
            font-weight: 700;
        }
        .autocomplete-subtitle {
            color: var(--text-muted) !important;
            font-size: 0.6875rem;
        }
        .autocomplete-logo {
            width: 32px;
            height: 32px;
            object-fit: contain;
            transition: var(--transition-smooth);
        }
        body.dark-theme .autocomplete-logo {
            filter: brightness(0) invert(1);
        }
        .skeleton-placeholder {
            background: rgba(255, 255, 255, 0.08);
            animation: skeletonPulse 1.5s infinite ease-in-out;
        }
        body.light-theme .skeleton-placeholder {
            background: rgba(15, 23, 42, 0.06);
        }
        @keyframes skeletonPulse {
            0% { opacity: 0.6; }
            50% { opacity: 1; }
            100% { opacity: 0.6; }
        }

        .btn-quick-view-premium {
            position: absolute; top: 50%; left: 50%; transform: translate(-50%, -40%);
            background: rgba(15, 23, 42, 0.75) !important; backdrop-filter: blur(12px) !important; -webkit-backdrop-filter: blur(12px) !important;
            border: 1px solid rgba(255, 255, 255, 0.15) !important; color: #ffffff !important;
            padding: 8px 16px !important; font-size: 0.82rem !important; font-weight: 600 !important; border-radius: 50px !important;
            opacity: 0; visibility: hidden; z-index: 10; display: inline-flex; align-items: center; gap: 6px;
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.4) !important; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
            pointer-events: auto !important;
        }
        .product-card:hover .btn-quick-view-premium { opacity: 1; visibility: visible; transform: translate(-50%, -50%); }
        .btn-quick-view-premium:hover { background: var(--primary-gradient) !important; border-color: transparent !important; transform: translate(-50%, -50%) scale(1.05) !important; }

        @media (max-width: 767.98px) {
            .btn-quick-view-premium { opacity: 1 !important; visibility: visible !important; top: auto !important; bottom: 8px !important; left: 50% !important; transform: translateX(-50%) !important; padding: 4px 10px !important; font-size: 0.72rem !important; border-radius: 8px !important; }
            .btn-quick-view-premium span { display: none !important; }
            .product-card:hover .btn-quick-view-premium { transform: translateX(-50%) !important; }
        }

        #storeLayoutSwitcherContainer .btn {
            background: transparent !important;
            color: var(--text-muted) !important;
            font-size: 0.9rem !important;
            transition: all 0.2s ease !important;
        }
        #storeLayoutSwitcherContainer .btn.active {
            background: var(--primary-gradient) !important;
            color: #ffffff !important;
            box-shadow: 0 4px 10px rgba(var(--primary-rgb), 0.2) !important;
        }

        .btn-compare-toggle {
            position: absolute;
            top: 8px;
            right: 8px;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(15, 23, 42, 0.6) !important;
            backdrop-filter: blur(5px) !important;
            -webkit-backdrop-filter: blur(5px) !important;
            border: 1px solid rgba(255, 255, 255, 0.15) !important;
            color: #fff !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            padding: 0 !important;
            z-index: 15;
            transition: all 0.2s ease !important;
            pointer-events: auto !important;
        }
        .btn-compare-toggle:hover {
            background: var(--primary) !important;
            color: #000 !important;
            border-color: var(--primary) !important;
            transform: scale(1.1);
        }
        .btn-compare-toggle.active {
            background: #00f0ff !important;
            color: #000 !important;
            border-color: #00f0ff !important;
        }

        #compareStickyBar {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%) translateY(100px);
            z-index: 2000;
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid var(--border);
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            padding: 12px 24px;
            display: flex;
            align-items: center;
            gap: 20px;
            max-width: 90%;
            width: auto;
        }
        #compareStickyBar.show {
            transform: translateX(-50%) translateY(0);
        }
        .compare-bar-thumbs {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .compare-bar-thumb-item {
            width: 45px;
            height: 45px;
            border-radius: 10px;
            border: 1px solid var(--border);
            object-fit: cover;
            background-color: rgba(255,255,255,0.05);
        }
        .compare-bar-btn {
            background: var(--primary-gradient);
            border: none;
            color: #000 !important;
            font-weight: 700;
            font-size: 0.88rem;
            padding: 10px 20px;
            border-radius: 50px;
            transition: all 0.2s ease;
            white-space: nowrap;
            text-decoration: none;
        }
        .compare-bar-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.4);
            color: #000 !important;
        }
        .hover-primary {
            transition: color 0.2s ease-in-out;
        }
        .hover-primary:hover {
            color: var(--primary) !important;
        }

        /* Container de busca criado para o topo */
        .search-expandable-container {
            display: inline-block;
            vertical-align: middle;
        }

        /* Estado padrão: Botão redondo e compacto */
        .search-expandable-wrapper {
            position: relative;
            display: flex;
            align-items: center;
            width: 42px;
            height: 42px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border, rgba(255,255,255,0.15));
            border-radius: 50% !important;
            overflow: hidden;
            transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1), 
                        background-color 0.3s ease, 
                        border-radius 0.3s ease,
                        box-shadow 0.3s ease;
            will-change: width;
        }

        body.light-theme .search-expandable-wrapper {
            background: #ffffff;
            border: 1px solid rgba(0, 0, 0, 0.1);
        }

        /* Estado Ativo: Expansão elástica com efeito de foco */
        .search-expandable-wrapper.expanded {
            width: 280px;
            border-radius: 22px !important;
            background: rgba(15, 23, 42, 0.85);
            border-color: var(--primary);
            box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.3);
        }

        body.light-theme .search-expandable-wrapper.expanded {
            background: #ffffff;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        }

        /* Input oculto que ganha opacidade de forma sincronizada */
        .search-expandable-input {
            width: 100%;
            height: 100%;
            border: none !important;
            background: transparent !important;
            padding: 0 42px 0 18px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #ffffff !important;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.25s ease;
        }

        body.light-theme .search-expandable-input {
            color: #0f172a !important;
        }

        .search-expandable-wrapper.expanded .search-expandable-input {
            opacity: 1;
            visibility: visible;
        }

        .search-expandable-input:focus {
            outline: none;
            box-shadow: none;
        }

        /* Ícone da Lupa ancorado rigidamente na ponta direita interna */
        .btn-search-trigger {
            position: absolute;
            right: 0;
            top: 0;
            width: 40px;
            height: 40px;
            border: none !important;
            background: transparent !important;
            color: #ffffff !important;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            cursor: pointer;
            border-radius: 50%;
            transition: color 0.2s ease;
        }

        body.light-theme .btn-search-trigger {
            color: #475569 !important;
        }

        .search-expandable-wrapper.expanded .btn-search-trigger {
            color: var(--primary) !important;
        }

        /* Botão de limpar (X) para resetar o texto */
        .btn-clear-search-expandable {
            position: absolute;
            right: 36px;
            top: 50%;
            transform: translateY(-50%);
            border: none !important;
            background: transparent !important;
            color: #94a3b8 !important;
            font-size: 0.8rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        @media (max-width: 767.98px) {
            .search-expandable-wrapper.expanded {
                width: 180px; /* Redução cirúrgica para não quebrar o layout mobile */
            }
        }

        /* Secondary Top Bar Styling */
        .ecommerce-top-bar {
            transition: background-color 0.4s ease, border-color 0.4s ease;
        }

        body.light-theme .ecommerce-top-bar {
            background: rgba(241, 245, 249, 0.8) !important;
            border-color: rgba(15, 23, 42, 0.05) !important;
        }

        .top-bar-link:hover {
            color: var(--primary) !important;
        }

        /* Toast styling defined globally in ecommerce/footer.php */

/* ========================================================
   E-COMMERCE: STOREFRONT (BLOCK 2)
   ======================================================== */
/* Premium Shimmer and Skeleton Loaders styling */
                    .skeleton-shimmer {
                        position: relative;
                        overflow: hidden;
                        background-color: rgba(255, 255, 255, 0.06);
                    }
                    body.light-theme .skeleton-shimmer {
                        background-color: rgba(15, 23, 42, 0.06);
                    }
                    .skeleton-shimmer::after {
                        position: absolute;
                        top: 0;
                        right: 0;
                        bottom: 0;
                        left: 0;
                        transform: translateX(-100%);
                        background-image: linear-gradient(
                            90deg,
                            rgba(255, 255, 255, 0) 0%,
                            rgba(255, 255, 255, 0.08) 20%,
                            rgba(255, 255, 255, 0.15) 60%,
                            rgba(255, 255, 255, 0)
                        );
                        animation: shimmer 1.5s infinite;
                        content: '';
                    }
                    body.light-theme .skeleton-shimmer::after {
                        background-image: linear-gradient(
                            90deg,
                            rgba(255, 255, 255, 0) 0%,
                            rgba(15, 23, 42, 0.03) 20%,
                            rgba(15, 23, 42, 0.06) 60%,
                            rgba(255, 255, 255, 0)
                        );
                    }
                    @keyframes shimmer {
                        100% {
                            transform: translateX(100%);
                        }
                    }
                    /* Transition and fade for AJAX content updates */
                    #productsGrid {
/* Premium Shimmer and Skeleton Loaders styling */
                    .skeleton-shimmer {
                        position: relative;
                        overflow: hidden;
                        background-color: rgba(255, 255, 255, 0.06);
                    }
                    body.light-theme .skeleton-shimmer {
                        background-color: rgba(15, 23, 42, 0.06);
                    }
                    .skeleton-shimmer::after {
                        position: absolute;
                        top: 0;
                        right: 0;
                        bottom: 0;
                        left: 0;
                        transform: translateX(-100%);
                        background-image: linear-gradient(
                            90deg,
                            rgba(255, 255, 255, 0) 0%,
                            rgba(255, 255, 255, 0.08) 20%,
                            rgba(255, 255, 255, 0.15) 60%,
                            rgba(255, 255, 255, 0)
                        );
                        animation: shimmer 1.5s infinite;
                        content: '';
                    }
                    body.light-theme .skeleton-shimmer::after {
                        background-image: linear-gradient(
                            90deg,
                            rgba(255, 255, 255, 0) 0%,
                            rgba(15, 23, 42, 0.03) 20%,
                            rgba(15, 23, 42, 0.06) 60%,
                            rgba(255, 255, 255, 0)
                        );
                    }
                    @keyframes shimmer {
                        100% {
                            transform: translateX(100%);
                        }
                    }
                    /* Transition and fade for AJAX content updates */
                    #productsGrid {
                        transition: opacity 0.25s ease-in-out, filter 0.25s ease-in-out;
                    }
                    #productsGrid.grid-loading {
                        opacity: 0.45;
                        filter: blur(1px);
                        pointer-events: none;
                    }

/* ========================================================
   E-COMMERCE: PRODUCT (BLOCK 1)
   ======================================================== */
            background-color: var(--bg-color);
            background-image: radial-gradient(circle at 10% 15%, rgba(var(--primary-rgb), 0.08) 0%, transparent 45%),
                              radial-gradient(circle at 90% 45%, rgba(var(--secondary-rgb), 0.08) 0%, transparent 45%),
                              radial-gradient(circle at 50% 85%, rgba(6, 182, 212, 0.06) 0%, transparent 45%);
            color: var(--text-color) !important;
            overflow-x: hidden;
            letter-spacing: -0.01em;
            transition: background-color 0.4s ease, color 0.4s ease;
        }

        /* Adjustments to follow active theme colors dynamically inside details container */
        .details-container h1, 
        .details-container h2, 
        .details-container h3, 
        .details-container h4, 
        .details-container h5, 
        .details-container h6, 
        .details-container .text-dark {
            color: var(--text-color) !important;
        }
        .details-container .text-secondary {
            color: var(--text-muted) !important;
        }
        .details-container .text-muted {
            color: var(--text-muted) !important;
        }
        .breadcrumb-item a {
            color: var(--primary) !important;
            font-weight: 500;
            transition: opacity 0.2s;
        }
        .breadcrumb-item a:hover {
            color: var(--primary-hover) !important;
            opacity: 0.85;
        }
        .breadcrumb-item.active {
            color: var(--text-muted) !important;
        }
        .breadcrumb-item + .breadcrumb-item::before {
            color: var(--text-muted) !important;
        }

        /* Table Specs overrides */
        .details-container .table {
            color: var(--text-color) !important;
            border-color: var(--border) !important;
            background-color: transparent !important;
        }
        .details-container .table-striped > tbody > tr:nth-of-type(odd) > * {
            background-color: rgba(var(--primary-rgb), 0.02) !important;
            color: var(--text-color) !important;
            box-shadow: none !important;
        }
        .details-container .table-striped > tbody > tr:nth-of-type(even) > * {
            background-color: transparent !important;
            color: var(--text-color) !important;
            box-shadow: none !important;
        }
        .details-container .table td {
            border-color: var(--border) !important;
            padding: 12px 16px;
        }
        .details-container .table td.fw-semibold {
            background-color: rgba(var(--primary-rgb), 0.04) !important;
            color: var(--text-color) !important;
        }

        .details-container {
            background: var(--card-bg) !important;
            border: 1px solid var(--border) !important;
            border-radius: 28px;
            box-shadow: var(--card-shadow);
            padding: 40px;
            margin-top: 40px;
        }

        .details-container .main-product-img-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            background-color: var(--card-bg);
            border: 1px solid var(--border);
            cursor: zoom-in;
            width: 100%;
            pointer-events: auto !important;
        }

        .details-container .main-product-img {
            width: 100%;
            display: block;
            object-fit: cover;
            transition: transform 0.15s ease-out;
            transform-origin: center center;
            will-change: transform, transform-origin;
            pointer-events: none !important;
        }



        .details-container .thumbnail-img {
            width: 70px;
            height: 70px;
            object-fit: cover;
            border-radius: 12px;
            cursor: pointer;
            border: 2px solid transparent;
            background-color: var(--card-bg);
            transition: all 0.2s ease;
        }

        .details-container .thumbnail-img.active, .details-container .thumbnail-img:hover {
            border-color: var(--primary);
            transform: scale(1.05);
        }

        .details-container .price-box {
            background: rgba(var(--primary-rgb), 0.04);
            border: 1px dashed rgba(var(--primary-rgb), 0.2);
            border-radius: 18px;
            padding: 20px;
            margin: 25px 0;
            display: flex;
            align-items: baseline;
            gap: 12px;
        }

        .details-container .price-box-promo {
            background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.06) 0%, rgba(var(--secondary-rgb), 0.02) 100%);
            border: 1.5px solid rgba(var(--primary-rgb), 0.25);
            position: relative;
            flex-direction: column;
            align-items: flex-start !important;
            gap: 8px !important;
        }

        .details-container .price-box-promo .economy-badge {
            background: var(--primary-gradient);
            color: #fff;
            font-size: 0.88rem;
            font-weight: 700;
            padding: 6px 14px;
            border-radius: 10px;
            margin-top: 4px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.25);
            animation: pulse-border 2.2s infinite;
        }

        @keyframes pulse-border {
            0% { box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0.4); }
            70% { box-shadow: 0 0 0 10px rgba(var(--primary-rgb), 0); }
            100% { box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0); }
        }

        .details-container .price-original {
            font-size: 1rem;
            color: #94A3B8;
            text-decoration: line-through;
        }

        .details-container .price-active {
            font-family: 'Outfit', sans-serif;
            font-weight: 800;
            font-size: 2rem;
            color: var(--primary);
        }

        .details-container .buy-btn {
            background: var(--primary-gradient);
            border: none;
            color: #fff;
            font-weight: 700;
            padding: 16px 30px;
            font-size: 1.05rem;
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 20px -6px rgba(var(--primary-rgb), 0.4);
        }

        .details-container .buy-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 25px -5px rgba(var(--primary-rgb), 0.5);
        }

        .details-container .wa-btn {
            border: 2px solid #25D366;
            color: #25D366;
            background: transparent;
            font-weight: 700;
            padding: 16px 30px;
            font-size: 1.05rem;
            transition: all 0.2s ease;
        }

        .details-container .wa-btn:hover {
            background: #25D366;
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
        }

        .toast-notification {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: #10B981;
            color: #fff;
            padding: 15px 25px;
            border-radius: 14px;
            box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
            z-index: 9999;
            font-family: 'Outfit', sans-serif;
            font-weight: 600;
            display: none;
            animation: slideUp 0.3s ease-out;
        }

        @keyframes slideUp {
            from { transform: translateY(50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

/* ========================================================
   E-COMMERCE: PRODUCT (BLOCK 2)
   ======================================================== */
.related-section {
            padding: 60px 0 70px;
            position: relative;
            overflow: hidden;
        }
        .related-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, rgba(var(--primary-rgb), 0.2) 50%, transparent 100%);
        }
        .related-header {
            text-align: center;
            margin-bottom: 40px;
        }
        .related-header .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: 'Inter', sans-serif;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--primary);
            background: rgba(var(--primary-rgb), 0.08);
            padding: 6px 16px;
            border-radius: 20px;
            margin-bottom: 14px;
        }
        .related-header h2 {
            font-family: 'Outfit', sans-serif;
            font-weight: 800;
            font-size: 1.75rem;
            color: var(--text-color, #1e293b) !important;
            margin: 0;
        }
        .related-header p {
            color: var(--text-muted, #64748b) !important;
            font-size: 0.92rem;
            margin-top: 8px;
        }

        /* Carousel Wrapper */
        .related-carousel-wrapper {
            position: relative;
            padding: 0 50px;
        }
        .related-carousel-track {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            scroll-behavior: smooth;
            scroll-snap-type: x mandatory;
            -ms-overflow-style: none;
            scrollbar-width: none;
            padding: 10px 4px 20px;
            cursor: grab;
        }
        .related-carousel-track:active {
            cursor: grabbing;
        }
        .related-carousel-track::-webkit-scrollbar {
            display: none;
        }

        /* Cards */
        .related-card {
            min-width: calc(25% - 15px);
            max-width: calc(25% - 15px);
            scroll-snap-align: start;
            background: var(--card-bg, #ffffff);
            border: 1px solid var(--border, #e2e8f0);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            position: relative;
        }
        .related-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 40px -12px rgba(var(--primary-rgb), 0.15);
            border-color: rgba(var(--primary-rgb), 0.3);
        }

        /* Card Image */
        .related-card-img {
            position: relative;
            width: 100%;
            aspect-ratio: 1;
            overflow: hidden;
            background: var(--surface, #f8fafc);
        }
        .related-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .related-card:hover .related-card-img img {
            transform: scale(1.1);
        }
        .related-card-img .no-img-placeholder {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            color: var(--text-muted, #94a3b8);
            font-size: 2.5rem;
            opacity: 0.3;
        }

        /* Badges on card */
        .related-badge-promo {
            position: absolute;
            top: 12px;
            right: 12px;
            background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
            color: #fff;
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            font-size: 0.72rem;
            padding: 4px 10px;
            border-radius: 8px;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            z-index: 3;
            box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
            letter-spacing: 0.3px;
        }
        .related-badge-category {
            position: absolute;
            top: 12px;
            left: 12px;
            background: rgba(var(--primary-rgb), 0.85);
            backdrop-filter: blur(6px);
            color: #fff;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            font-size: 0.68rem;
            padding: 4px 10px;
            border-radius: 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 3;
        }

        /* Quick Action Overlay */
        .related-card-actions {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            display: flex;
            gap: 8px;
            justify-content: center;
            padding: 14px;
            background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 100%);
            transform: translateY(100%);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 4;
        }
        .related-card:hover .related-card-actions {
            transform: translateY(0);
        }
        .related-card-actions .btn-action {
            background: rgba(255,255,255,0.95);
            color: var(--primary);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 12px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1.1rem;
            transition: all 0.2s ease;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .related-card-actions .btn-action:hover {
            background: var(--primary);
            color: #fff;
            transform: scale(1.1);
        }
        .related-card-actions .btn-action-cart {
            background: var(--primary);
            color: #fff;
        }
        .related-card-actions .btn-action-cart:hover {
            background: var(--secondary, var(--primary));
            transform: scale(1.1);
        }

        /* Card Body */
        .related-card-body {
            padding: 18px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }
        .related-card-body .rc-category {
            font-family: 'Inter', sans-serif;
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            color: var(--primary);
            opacity: 0.7;
            margin-bottom: 6px;
        }
        .related-card-body .rc-title {
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            font-size: 0.95rem;
            color: var(--text-color, #1e293b) !important;
            line-height: 1.35;
            margin: 0 0 4px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .related-card-body .rc-title a {
            color: inherit;
            text-decoration: none;
            transition: color 0.2s;
        }
        .related-card-body .rc-title a:hover {
            color: var(--primary) !important;
        }

        /* Price area */
        .related-card-price {
            margin-top: auto;
            padding-top: 12px;
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        .related-card-price .rc-price-old {
            font-size: 0.78rem;
            color: var(--text-muted, #94a3b8);
            text-decoration: line-through;
            font-weight: 500;
        }
        .related-card-price .rc-price-active {
            font-family: 'Outfit', sans-serif;
            font-weight: 800;
            font-size: 1.3rem;
            color: var(--primary);
        }

        /* Navigation Arrows */
        .related-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 1px solid var(--border, #e2e8f0);
            background: var(--card-bg, #ffffff);
            color: var(--text-color, #334155);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            z-index: 10;
            transition: all 0.25s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.06);
        }
        .related-nav-btn:hover {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
            box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.3);
        }
        .related-nav-btn.prev { left: 0; }
        .related-nav-btn.next { right: 0; }
        .related-nav-btn:disabled {
            opacity: 0.3;
            cursor: default;
            pointer-events: none;
        }

        /* Dot Indicators */
        .related-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 24px;
        }
        .related-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--border, #cbd5e1);
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 0;
        }
        .related-dot.active {
            width: 24px;
            border-radius: 4px;
            background: var(--primary);
        }

        /* ── Responsive ── */
        @media (max-width: 991.98px) {
            .related-card {
                min-width: calc(33.333% - 14px);
                max-width: calc(33.333% - 14px);
            }
        }
        @media (max-width: 767.98px) {
            .related-card {
                min-width: calc(50% - 10px);
                max-width: calc(50% - 10px);
            }
            .related-carousel-wrapper {
                padding: 0 40px;
            }
            .related-nav-btn {
                width: 36px;
                height: 36px;
                font-size: 1rem;
            }
            .related-header h2 {
                font-size: 1.4rem;
            }
            .related-card-body {
                padding: 14px;
            }
            .related-card-body .rc-title {
                font-size: 0.88rem;
            }
            .related-card-price .rc-price-active {
                font-size: 1.1rem;
            }
            .related-card-actions {
                transform: translateY(0);
                background: linear-gradient(to top, rgba(0,0,0,0.35) 0%, transparent 100%);
            }
        }
        @media (max-width: 479.98px) {
            .related-carousel-wrapper {
                padding: 0 8px;
            }
            .related-nav-btn {
                display: none;
            }
        }

/* ========================================================
   E-COMMERCE: CART (BLOCK 1)
   ======================================================== */
:root {
            --bg-color: #F8FAFC;
            --text-color: #0F172A;
            --primary-gradient: linear-gradient(135deg, #4F46E5 0%, #6366F1 100%);
            --card-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-color);
            color: var(--text-color);
        }



        .cart-card {
            background: #fff;
            border: 1px solid rgba(0, 0, 0, 0.04);
            border-radius: 24px;
            box-shadow: var(--card-shadow);
            padding: 30px;
        }

        .cart-item-img {
            width: 70px;
            height: 70px;
            object-fit: cover;
            border-radius: 12px;
            border: 1px solid rgba(0, 0, 0, 0.05);
            background: #F8FAFC;
        }

        .quantity-control {
            display: inline-flex;
            align-items: center;
            border: 1px solid rgba(0, 0, 0, 0.08);
            border-radius: 20px;
            padding: 4px;
            background: #F8FAFC;
        }

        .qty-btn {
            border: none;
            background: none;
            width: 28px;
            height: 28px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            border-radius: 50%;
            color: #64748B;
            transition: all 0.2s ease;
        }

        .qty-btn:hover {
            background: rgba(99, 102, 241, 0.1);
            color: #6366F1;
        }

        .summary-card {
            background: #fff;
            border: 1px solid rgba(0, 0, 0, 0.04);
            border-radius: 24px;
            box-shadow: var(--card-shadow);
            padding: 30px;
            height: fit-content;
        }

        .checkout-btn {
            background: var(--primary-gradient);
            border: none;
            color: #fff;
            font-weight: 700;
            border-radius: 16px;
            padding: 15px;
            transition: all 0.2s ease;
        }

        .checkout-btn:hover {
            transform: scale(1.02);
            box-shadow: 0 8px 20px -6px rgba(99, 102, 241, 0.4);
        }

/* ========================================================
   E-COMMERCE: CHECKOUT (BLOCK 1)
   ======================================================== */
:root {
            --bg-color: var(--primary, #6366f1);
            --card-bg: var(--primary, #6366f1);
            --text-color: var(--primary, #6366f1);
            --text-muted: var(--primary, #6366f1);
            --primary: var(--primary, #6366f1);
            --secondary: var(--primary, #6366f1);
            --primary-gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            --border-color: var(--primary, #6366f1);
            --card-shadow: var(--primary, #6366f1);
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-color);
            color: var(--text-color);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        h1, h2, h3, h4, h5, h6, .navbar-brand, .btn {
            font-family: 'Outfit', sans-serif !important;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: var(--bg-color);
        }
        ::-webkit-scrollbar-thumb {
            background: #cbd5e1;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary);
        }

        .checkout-container {
            flex: 1;
        }

        /* Wizard Step Progress Bar */
        .wizard-steps {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            max-width: 580px;
            margin: 0 auto 36px auto;
        }
        .wizard-steps::before {
            content: '';
            position: absolute;
            top: 20px;
            left: 20px;
            right: 20px;
            height: 3px;
            background: rgba(0, 0, 0, 0.08);
            z-index: 1;
        }
        .wizard-step-progress {
            position: absolute;
            top: 20px;
            left: 20px;
            height: 3px;
            background: var(--primary);
            z-index: 2;
            transition: width 0.4s ease;
            width: 0%;
        }
        .wizard-step {
            position: relative;
            z-index: 3;
            display: flex;
            flex-direction: column;
            align-items: center;
            background: transparent;
        }
        .wizard-step-circle {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: #ffffff;
            border: 2px solid rgba(0, 0, 0, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: #64748B;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
        }
        .wizard-step.active .wizard-step-circle {
            background: #ffffff;
            border-color: var(--primary);
            color: var(--primary);
            box-shadow: 0 0 15px rgba(139, 92, 246, 0.25);
            font-weight: 800;
        }
        .wizard-step.completed .wizard-step-circle {
            background: var(--primary);
            border-color: var(--primary);
            color: #ffffff;
        }
        .wizard-step-label {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-muted);
            margin-top: 8px;
            transition: color 0.3s ease;
        }
        .wizard-step.active .wizard-step-label {
            color: var(--primary);
            font-weight: 700;
        }

        /* Glassmorphic & Modern Cards */
        .checkout-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 24px;
            box-shadow: var(--card-shadow);
            padding: 32px;
            transition: all 0.3s ease;
        }

        .checkout-section-title {
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            font-size: 1.25rem;
            color: var(--text-color);
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 10px;
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 14px;
        }

        /* Step Panels Visibility */
        .step-panel {
            display: none;
        }
        .step-panel.active {
            display: block;
            animation: fadeIn 0.35s ease-in-out;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(8px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Identificação Options */
        .ident-option-card {
            border: 2px dashed rgba(0, 0, 0, 0.12);
            border-radius: 20px;
            padding: 24px;
            cursor: pointer;
            transition: all 0.3s ease;
            background: var(--card-bg);
            text-align: center;
            height: 100%;
        }
        .ident-option-card:hover {
            border-color: var(--primary);
            background: rgba(139, 92, 246, 0.02);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
        }
        .ident-option-card.selected {
            border-color: var(--primary);
            background: rgba(139, 92, 246, 0.05);
            border-style: solid;
            box-shadow: 0 8px 25px rgba(139, 92, 246, 0.15);
        }

        .form-control, .form-select {
            background-color: #F8FAFC !important;
            border: 1px solid rgba(0, 0, 0, 0.12) !important;
            color: var(--text-color) !important;
            border-radius: 12px !important;
            padding: 12px 16px;
            transition: all 0.2s ease;
        }
        .form-control:focus, .form-select:focus {
            background-color: #ffffff !important;
            border-color: var(--primary) !important;
            box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15) !important;
        }
        .form-control::placeholder {
            color: #94a3b8;
        }

        /* checkout-mode-card & payment-method-card */
        .checkout-mode-card, .payment-method-card {
            border: 1.5px solid var(--border-color);
            background: var(--card-bg);
            border-radius: 18px !important;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .checkout-mode-card:hover, .payment-method-card:hover {
            border-color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
        }
        .checkout-mode-card.selected, .payment-method-card.selected {
            border-color: var(--primary);
            background: rgba(139, 92, 246, 0.05);
            box-shadow: 0 8px 20px rgba(139, 92, 246, 0.15);
            transform: scale(1.01);
        }

        .summary-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 24px;
            box-shadow: var(--card-shadow);
            padding: 30px;
        }

        .summary-item-img {
            width: 54px;
            height: 54px;
            object-fit: cover;
            border-radius: 12px;
            border: 1px solid rgba(0, 0, 0, 0.06);
            background: #F8FAFC;
        }

        .checkout-submit-btn, .next-step-btn {
            background: var(--primary-gradient);
            border: none;
            color: #ffffff !important;
            font-weight: 700;
            border-radius: 14px;
            padding: 16px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
        }
        .checkout-submit-btn:hover, .next-step-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(139, 92, 246, 0.45);
            color: #ffffff !important;
        }
        .checkout-submit-btn:disabled, .next-step-btn:disabled {
            background: #cbd5e1;
            color: #94a3b8 !important;
            box-shadow: none;
            cursor: not-allowed;
            transform: none;
        }

        .prev-step-btn {
            border: 1px solid var(--border-color);
            background: #F1F5F9;
            color: #334155;
            font-weight: 600;
            border-radius: 14px;
            padding: 16px;
            transition: all 0.3s ease;
        }
        .prev-step-btn:hover {
            background: #e2e8f0;
            color: #0f172a;
        }

        /* Badges de Cobrança */
        .badge-digital-mensal {
            background-color: rgba(16, 185, 129, 0.1);
            color: #059669;
            font-size: 11px;
            padding: 4px 10px;
            border-radius: 20px;
            border: 1px solid rgba(16, 185, 129, 0.25);
            font-weight: bold;
            letter-spacing: 0.2px;
        }
        .badge-digital-unica {
            background-color: rgba(59, 130, 246, 0.1);
            color: #2563eb;
            font-size: 11px;
            padding: 4px 10px;
            border-radius: 20px;
            border: 1px solid rgba(59, 130, 246, 0.25);
            font-weight: bold;
            letter-spacing: 0.2px;
        }

        .credit-card-form {
            background: #F8FAFC;
            border: 1px solid var(--border-color);
            border-radius: 18px;
            padding: 24px;
            margin-top: 20px;
            display: none;
        }

/* ========================================================
   E-COMMERCE: BRANDS (BLOCK 1)
   ======================================================== */
        .brands-hero {
            background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.04) 0%, rgba(var(--secondary-rgb), 0.01) 100%);
            border-bottom: 1px solid var(--border-color);
            padding: 60px 0 40px 0;
            text-align: center;
        }

        .brands-hero h1 {
            font-family: 'Outfit', sans-serif;
            font-weight: 800;
            font-size: 2.5rem;
            color: var(--text-color) !important;
            margin-bottom: 12px;
        }

        .brands-hero p {
            color: var(--btn-neutral-color);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Filter Controls */
        .filter-section {
            background: var(--card-bg) !important;
            border: 1px solid var(--border-color) !important;
            border-radius: 24px;
            padding: 30px;
            box-shadow: var(--card-shadow);
            margin-top: -30px;
            position: relative;
            z-index: 10;
        }

        .search-input-group {
            border-radius: 50px;
            overflow: hidden;
            border: 2px solid var(--btn-neutral-border) !important;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .search-input-group:focus-within {
            border-color: var(--primary);
            box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.1) !important;
        }

        .search-input-group .form-control {
            border: none;
            box-shadow: none;
            font-size: 1.05rem;
            padding-left: 12px;
            background: var(--search-bg) !important;
            color: var(--text-color) !important;
        }

        .search-input-group .form-control:focus {
            outline: none;
            box-shadow: none;
        }

        .search-input-group .input-group-text {
            background: transparent;
            border: none;
            padding-left: 20px;
            color: var(--btn-neutral-color) !important;
        }

        .search-input-group .btn {
            border: none;
            background: transparent;
            color: var(--btn-neutral-color);
            padding-right: 20px;
            transition: color 0.2s ease;
        }

        .search-input-group .btn:hover {
            color: var(--text-color);
            background: transparent;
        }

        /* Alphabet Bar */
        .alphabet-bar {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            justify-content: center;
            padding-top: 15px;
            border-top: 1px solid var(--border-color);
        }

        .alphabet-btn {
            border: 1px solid var(--border-color) !important;
            background: var(--card-bg) !important;
            color: var(--btn-neutral-color) !important;
            font-weight: 700;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            box-shadow: 0 2px 4px rgba(0,0,0,0.01);
            user-select: none;
        }

        .alphabet-btn[data-letter="ALL"] {
            width: auto;
            padding: 0 16px;
            border-radius: 50px;
        }

        .alphabet-btn:hover {
            border-color: var(--primary) !important;
            color: var(--primary) !important;
            transform: scale(1.08);
        }

        .alphabet-btn.active {
            background: var(--primary-gradient) !important;
            color: #ffffff !important;
            border-color: transparent !important;
            box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.35) !important;
        }

        /* Brand Grid & Cards */
        .brand-card {
            border-radius: 20px;
            background: var(--card-bg) !important;
            border: 1px solid var(--border-color) !important;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 30px 20px;
            box-shadow: var(--card-shadow);
            cursor: pointer;
        }

        .brand-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--card-shadow-hover);
            border-color: rgba(var(--primary-rgb), 0.15);
        }

        .logo-wrapper {
            width: 110px;
            height: 110px;
            position: relative;
            background: var(--btn-neutral-bg) !important;
            border-radius: 18px;
            padding: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s ease;
            margin-bottom: 20px;
        }

        .brand-card:hover .logo-wrapper {
            background: rgba(var(--primary-rgb), 0.04);
        }

        .brand-logo {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%) opacity(0.8);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .brand-card:hover .brand-logo {
            filter: grayscale(0%) opacity(1);
            transform: scale(1.05);
        }

        .brand-fallback-logo {
            width: 100%;
            height: 100%;
            border-radius: 12px;
            font-size: 2.5rem;
            background: var(--primary-gradient);
            box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.25);
            text-transform: uppercase;
            font-family: 'Outfit', sans-serif;
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .brand-card:hover .brand-fallback-logo {
            transform: scale(1.05) rotate(3deg);
            box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.4);
        }

        .brand-name {
            font-family: 'Outfit', sans-serif;
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--text-color) !important;
            margin-bottom: 6px;
        }

        .brand-products-count {
            font-size: 0.8rem;
            font-weight: 600;
            background: var(--btn-neutral-bg) !important;
            color: var(--btn-neutral-color) !important;
            border: 1px solid var(--btn-neutral-border) !important;
            padding: 5px 12px;
            border-radius: 50px;
            transition: all 0.25s ease;
        }

        .brand-card:hover .brand-products-count {
            background: rgba(var(--primary-rgb), 0.06);
            color: var(--primary);
            border-color: rgba(var(--primary-rgb), 0.15);
        }

        .explore-badge {
            opacity: 0;
            transform: translateY(12px);
            font-size: 0.82rem;
            font-weight: 700;
            color: var(--primary);
            margin-top: 15px;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .brand-card:hover .explore-badge {
            opacity: 1;
            transform: translateY(0);
        }

        /* Empty state */
        .empty-state {
            text-align: center;
            padding: 80px 20px;
            background: var(--card-bg) !important;
            border-radius: 24px;
            border: 1px solid var(--border-color) !important;
            box-shadow: var(--card-shadow);
        }

        .empty-icon-wrapper {
            width: 90px;
            height: 90px;
            background: var(--btn-neutral-bg) !important;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px auto;
        }

        .empty-icon-wrapper i {
            font-size: 2.5rem;
            color: var(--btn-neutral-color);
        }

        /* Combined Filter Animations */
        .brand-card-col {
            transition: opacity 0.3s ease, transform 0.3s ease;
            opacity: 1;
            transform: scale(1);
        }
        .brand-card-col.fade-out {
            opacity: 0;
            transform: scale(0.92);
            pointer-events: none;
        }
        .brand-card-col.d-none {
            display: none !important;
        }

/* ========================================================
   E-COMMERCE: NAVBAR (BLOCK 1)
   ======================================================== */
:root {
        --topbar-height: 40px;
        --navbar-top: 40px;

        /* Whitelabel custom styling variables */
        --topbar-bg: var(--primary, #6366f1);
        
            
            --topbar-bg: rgba(var(--primary, #6366f1), var(--primary, #6366f1)) !important;
        
        --topbar-color: var(--primary, #6366f1);
        
        --navbar-bg: var(--primary, #6366f1);
        --navbar-bg-rgb: var(--primary, #6366f1);
        --navbar-scrolled-opacity: var(--primary, #6366f1);
        --navbar-color: var(--primary, #6366f1);
        
        --footer-bg: var(--primary, #6366f1);
        --footer-color: var(--primary, #6366f1);

        /* Core Theme design system tokens */
        --bg-color: #0b0f19;
        --text-color: #f1f5f9;
        --text-muted: #94a3b8;
        --primary: var(--primary, #6366f1);
        --primary-rgb: var(--primary, #6366f1);
        --secondary: var(--primary, #6366f1);
        --secondary-rgb: var(--primary, #6366f1);
        --primary-hover: rgba(var(--primary-rgb), 0.85);
        --primary-gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
        --border: rgba(255, 255, 255, 0.08);
        --card-bg: rgba(15, 23, 42, 0.45);
        --card-shadow: 0 16px 36px -12px rgba(0, 0, 0, 0.6);
        --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    body.light-theme {
        
        --topbar-bg: #f1f5f9 !important;
        
        
        --topbar-color: #64748b !important;
        

        
        --navbar-bg: #ffffff !important;
        --navbar-bg-rgb: 255, 255, 255 !important;
        --navbar-color: #0f172a !important;
        

        
        --footer-bg: #f8fafc !important;
        
        
        --footer-color: #64748b !important;
        

        /* Light mode layout overrides */
        --bg-color: #f8fafc;
        --text-color: #0f172a;
        --text-muted: #64748b;
        --border: rgba(15, 23, 42, 0.08);
        --card-bg: rgba(255, 255, 255, 0.85);
        --card-shadow: 0 16px 36px -12px rgba(15, 23, 42, 0.08);
    }

    /* Typography & Buttons styling based on Backoffice settings */
    
    body, h1, h2, h3, h4, h5, h6, .navbar-brand, .btn, .product-card, .search-input, .category-pill, .brand-card, .alphabet-btn {
        font-family: 'var(--primary, #6366f1)', sans-serif !important;
    }
    

    
    .btn, .btn-buy-premium, .category-pill, .search-wrapper, .search-input, .input-group-text, #navbarCartBtn, #storeThemeBtn, .brand-card, .alphabet-btn {
        border-radius: 12px !important;
    }
    
    .btn, .btn-buy-premium, .category-pill, .search-wrapper, .search-input, .input-group-text, #navbarCartBtn, #storeThemeBtn, .brand-card, .alphabet-btn {
        border-radius: 0px !important;
    }
    

    /* Global Button and Link Theme overrides */
    .btn-primary {
        background: var(--primary-gradient) !important;
        border: none !important;
        color: #fff !important;
        box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.25) !important;
        transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }
    .btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active {
        background: var(--primary-gradient) !important;
        transform: translateY(-1px) !important;
        box-shadow: 0 6px 16px rgba(var(--primary-rgb), 0.4) !important;
        opacity: 0.95 !important;
        color: #fff !important;
    }
    .btn-outline-primary {
        border: 1.5px solid var(--primary) !important;
        color: var(--primary) !important;
        background: transparent !important;
        transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }
    .btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active, .btn-outline-primary.active {
        background: var(--primary) !important;
        border-color: var(--primary) !important;
        color: #fff !important;
    }
    .btn-outline-secondary {
        border: 1.5px solid var(--border) !important;
        color: var(--text-color) !important;
        background: transparent !important;
        transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }
    .btn-outline-secondary:hover, .btn-outline-secondary:focus, .btn-outline-secondary:active, .btn-outline-secondary.active {
        background: var(--border) !important;
        color: var(--text-color) !important;
    }
    a {
        color: var(--primary);
        text-decoration: none;
        transition: opacity 0.2s ease;
    }
    a:hover {
        color: var(--primary-hover);
        opacity: 0.95;
    }

    body {
        font-family: 'Inter', sans-serif;
        background-color: var(--bg-color) !important;
        background-image: radial-gradient(circle at 10% 15%, rgba(var(--primary-rgb), 0.08) 0%, transparent 45%),
                          radial-gradient(circle at 90% 45%, rgba(var(--secondary-rgb), 0.08) 0%, transparent 45%),
                          radial-gradient(circle at 50% 85%, rgba(6, 182, 212, 0.06) 0%, transparent 45%) !important;
        color: var(--text-color) !important;
        overflow-x: hidden;
        letter-spacing: -0.01em;
        transition: background-color 0.4s ease, color 0.4s ease;
    }

    body.light-theme {
        background-color: var(--bg-color) !important;
        background-image: radial-gradient(circle at 10% 15%, rgba(var(--primary-rgb), 0.04) 0%, transparent 40%),
                          radial-gradient(circle at 90% 45%, rgba(var(--secondary-rgb), 0.04) 0%, transparent 40%),
                          radial-gradient(circle at 50% 85%, rgba(6, 182, 212, 0.04) 0%, transparent 45%) !important;
    }

    /* Top Bar dynamic styling */
    .ecommerce-top-bar {
        background: var(--topbar-bg) !important;
    }
    .ecommerce-top-bar,
    .ecommerce-top-bar div,
    .ecommerce-top-bar span,
    .ecommerce-top-bar a,
    .ecommerce-top-bar .text-muted {
        color: var(--topbar-color) !important;
    }
    .ecommerce-top-bar a:hover {
        color: var(--primary, #8b5cf6) !important;
    }

    /* Navbar dynamic styling */
    .navbar-premium {
        background: var(--navbar-bg) !important;
        border-bottom: 1px solid var(--border, rgba(255,255,255,0.08)) !important;
    }

    #mainNavbar.scrolled {
        background: rgba(var(--navbar-bg-rgb), var(--navbar-scrolled-opacity)) !important;
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
    }

    #mainNavbar .nav-link,
    #mainNavbar .navbar-brand,
    #mainNavbar .navbar-brand span,
    #mainNavbar .btn-search-trigger,
    #mainNavbar .navbar-tel-btn,
    #mainNavbar #navbarCartBtn {
        color: var(--navbar-color) !important;
    }

    #mainNavbar .nav-link:hover,
    #mainNavbar .navbar-brand:hover,
    #mainNavbar .navbar-tel-btn:hover,
    #mainNavbar #navbarCartBtn:hover {
        color: var(--primary, #8b5cf6) !important;
    }

    /* Whitelabel Footer dynamic styling */
    footer {
        background: var(--footer-bg) !important;
        border-top: 1px solid var(--border) !important;
    }
    footer h2,
    footer h6 {
        color: var(--footer-color) !important;
        filter: brightness(1.2);
    }
    footer p,
    footer div,
    footer span,
    footer li,
    footer a {
        color: var(--footer-color) !important;
    }
    footer a:hover {
        color: var(--primary, #8b5cf6) !important;
    }

    /* Ajuste de Posicionamento - Topbar rola para fora, mainNavbar fica fixo no topo */
    .ecommerce-top-bar {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        z-index: 1030 !important;
        height: 40px !important;
        display: flex !important;
        align-items: center !important;
        box-sizing: border-box !important;
    }

    /* Estilo Base da Navbar (Sólido por padrão) */
    .navbar-premium {
        background: rgb(15, 23, 42) !important;
        border-bottom: 1px solid var(--border, rgba(255,255,255,0.08)) !important;
        transition: background-color 0.25s ease, backdrop-filter 0.25s ease, box-shadow 0.25s ease !important;
    }

    body.light-theme .navbar-premium {
        background: rgb(255, 255, 255) !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    }

    #mainNavbar {
        position: sticky !important;
        top: var(--navbar-top, 0px) !important;
        z-index: 1020 !important;
        transition: background-color 0.25s ease, backdrop-filter 0.25s ease, box-shadow 0.25s ease !important;
    }

    /* Estilo de Transparência Glassmorphic no Scroll */
    #mainNavbar.scrolled {
        background: rgba(15, 23, 42, 0.75) !important;
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
    }

    body.light-theme #mainNavbar.scrolled {
        background: rgba(255, 255, 255, 0.75) !important;
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
    }

    /* Ajuste de padding-top no body para evitar sobreposição da top-bar absoluta */
    body {
        padding-top: var(--topbar-height, 0px) !important;
    }

    /* Sobrescrever para o template-2 do storefront (Modern Sidebar Layout) */
    @media (min-width: 992px) {
        body.template-2 {
            padding-top: 0 !important;
        }
        body.template-2 .ecommerce-top-bar {
            position: relative !important;
            width: calc(100% - 290px) !important;
            margin-left: 290px !important;
            left: 0 !important;
        }
        body.template-2 #mainNavbar {
            position: fixed !important; /* Sidebar lateral permanece fixa na tela */
            top: 0 !important;
            left: 0 !important;
            width: 290px !important;
            height: 100vh !important;
            padding-top: 40px !important;
        }
        body.template-2 #mainNavbar.scrolled {
            background: var(--card-bg) !important;
            backdrop-filter: none !important;
            box-shadow: none !important;
        }
        body.template-2.light-theme #mainNavbar.scrolled {
            background: #ffffff !important;
            backdrop-filter: none !important;
            box-shadow: none !important;
        }
    }

    /* Responsividade Mobile - Esconder topbar e manter navbar fixa no topo */
    @media (max-width: 991.98px) {
        :root {
            --topbar-height: 0px !important;
            --navbar-top: 0px !important;
        }
        .ecommerce-top-bar {
            display: none !important;
            position: static !important;
            height: 0px !important;
        }
        #mainNavbar {
            position: sticky !important;
            top: 0 !important;
        }
        body {
            padding-top: 0 !important;
        }
    }

    /* Estilos Básicos de Busca Retrátil (Garantia de carregamento isolado) */
    .search-expandable-container {
        display: inline-block;
        vertical-align: middle;
    }
    .search-expandable-wrapper {
        position: relative;
        display: flex;
        align-items: center;
        width: 42px;
        height: 42px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--border, rgba(255,255,255,0.15));
        border-radius: 50% !important;
        overflow: hidden;
        transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease, border-radius 0.3s ease, box-shadow 0.3s ease;
        will-change: width;
    }
    body.light-theme .search-expandable-wrapper {
        background: #ffffff;
        border: 1px solid rgba(0, 0, 0, 0.1);
    }
    .search-expandable-wrapper.expanded {
        width: 280px;
        border-radius: 22px !important;
        background: rgba(15, 23, 42, 0.85);
        border-color: var(--primary);
        box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.3);
    }
    body.light-theme .search-expandable-wrapper.expanded {
        background: #ffffff;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }
    .search-expandable-input {
        width: 100%;
        height: 100%;
        border: none !important;
        background: transparent !important;
        padding: 0 42px 0 18px;
        font-size: 0.9rem;
        font-weight: 500;
        color: #ffffff !important;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.25s ease;
    }
    body.light-theme .search-expandable-input {
        color: #0f172a !important;
    }
    .search-expandable-wrapper.expanded .search-expandable-input {
        opacity: 1;
        visibility: visible;
    }
    .search-expandable-input:focus {
        outline: none;
        box-shadow: none;
    }
    .btn-search-trigger {
        position: absolute;
        right: 0;
        top: 0;
        width: 40px;
        height: 40px;
        border: none !important;
        background: transparent !important;
        color: #ffffff !important;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        cursor: pointer;
        border-radius: 50%;
        transition: color 0.2s ease;
    }
    body.light-theme .btn-search-trigger {
        color: #475569 !important;
    }
    .search-expandable-wrapper.expanded .btn-search-trigger {
        color: var(--primary) !important;
    }
    .btn-clear-search-expandable {
        position: absolute;
        right: 36px;
        top: 50%;
        transform: translateY(-50%);
        border: none !important;
        background: transparent !important;
        color: #94a3b8 !important;
        font-size: 0.8rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    @media (max-width: 767.98px) {
        .search-expandable-wrapper.expanded {
            width: 180px;
        }
    }

    /* Estilos do Autocomplete */
    body.light-theme #autocomplete_suggestions_box,
    body.light-theme #autocomplete_suggestions_box_hero {
        background: rgba(255, 255, 255, 0.98) !important;
        box-shadow: 0 20px 40px rgba(0,0,0,0.08) !important;
    }
    .autocomplete-heading {
        font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 800; color: var(--primary); padding: 4px 8px; border-bottom: 1px solid var(--border); margin-top: 8px;
    }
    .autocomplete-row-item {
        display: flex; align-items: center; gap: 12px; padding: 8px 12px; border-radius: 10px; cursor: pointer; text-decoration: none !important; transition: all 0.2s ease;
    }
    .autocomplete-row-item:hover { background: rgba(var(--primary-rgb), 0.08); }
    .autocomplete-title {
        color: var(--text-color) !important;
        font-size: 0.875rem;
        font-weight: 700;
    }
    .autocomplete-subtitle {
        color: var(--text-muted) !important;
        font-size: 0.6875rem;
    }
    .autocomplete-logo {
        width: 32px;
        height: 32px;
        object-fit: contain;
        transition: var(--transition-smooth);
    }
    body.dark-theme .autocomplete-logo {
        filter: brightness(0) invert(1);
    }
    .skeleton-placeholder {
        background: rgba(255, 255, 255, 0.08);
        animation: skeletonPulse 1.5s infinite ease-in-out;
    }
    body.light-theme .skeleton-placeholder {
        background: rgba(15, 23, 42, 0.06);
    }
    @keyframes skeletonPulse {
        0% { opacity: 0.6; }
        50% { opacity: 1; }
        100% { opacity: 0.6; }
    }

    /* Premium Pagination Overrides */
    .pagination-premium .page-link {
        background: var(--card-bg, rgba(15, 23, 42, 0.45)) !important;
        border: 1px solid var(--border, rgba(255, 255, 255, 0.08)) !important;
        color: var(--text-color, #f1f5f9) !important;
        padding: 10px 16px !important;
        font-weight: 600 !important;
        transition: all 0.3s ease !important;
    }
    body.light-theme .pagination-premium .page-link {
        background: #ffffff !important;
        border: 1px solid rgba(0, 0, 0, 0.08) !important;
        color: #0f172a !important;
    }
    .pagination-premium .page-link:hover {
        background: var(--primary, #8b5cf6) !important;
        color: #fff !important;
        border-color: var(--primary, #8b5cf6) !important;
        box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.3) !important;
        transform: translateY(-2px) !important;
    }
    .pagination-premium .page-item.active .page-link {
        background: var(--primary-gradient, linear-gradient(135deg, #8b5cf6, #ec4899)) !important;
        color: #fff !important;
        border-color: transparent !important;
        box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.3) !important;
    }
    .pagination-premium .page-item.disabled .page-link {
        opacity: 0.4 !important;
        cursor: not-allowed !important;
        background: rgba(15, 23, 42, 0.2) !important;
        transform: none !important;
    }
    .btn-ver-no-mapa {
        color: var(--footer-color, #94a3b8) !important;
        border: 1px solid rgba(var(--primary-rgb), 0.35) !important;
        background: transparent;
        transition: var(--transition-smooth, all 0.4s ease) !important;
        font-size: 0.72rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        padding: 6px 14px;
        border-radius: 20px;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        text-decoration: none !important;
    }
    .btn-ver-no-mapa:hover {
        color: #ffffff !important;
        background: var(--primary-gradient) !important;
        border-color: transparent !important;
        box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.25);
        transform: translateY(-1px);
    }

    /* Premium Storefront Logo Hierarchy & Responsiveness */
    .storefront-logo-link {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        padding: 4px 8px;
        margin-right: 15px;
        border-radius: 8px;
        transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    }
    .storefront-logo-link:hover {
        transform: scale(1.03);
    }
    .storefront-logo-img {
        transition: filter 0.3s ease;
    }
    /* Contrast enhancement for dark/colored background headers */
    body.dark-theme .storefront-logo-img,
    body:not(.light-theme) .storefront-logo-img {
        filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.12));
    }
    body.light-theme .storefront-logo-img {
        filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.04));
    }

    #mhsys-ecommerce-bg-canvas {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        pointer-events: none;
        z-index: -1;
    }
    
    .hero-carousel #mhsys-ecommerce-bg-canvas,
    .hero-fallback-static #mhsys-ecommerce-bg-canvas,
    .hero-banner #mhsys-ecommerce-bg-canvas {
        position: absolute !important;
        width: 100% !important;
        height: 100% !important;
        top: 0 !important;
        left: 0 !important;
        z-index: 2 !important;
    }

    .social-top-link {
        transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.2s ease;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .social-top-link:hover {
        transform: scale(1.2);
    }

    @media (max-width: 991.98px) {
        .storefront-logo-img {
            max-height: 48px !important;
            max-width: 140px !important;
        }
        .storefront-logo-link {
            padding: 2px 4px;
            margin-right: 8px;
        }
    }

/* ========================================================
   E-COMMERCE: FOOTER (BLOCK 1)
   ======================================================== */
.footer-social-btn {
        width: 38px;
        height: 38px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--border);
        color: var(--footer-color) !important;
        transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    }
    body.light-theme .footer-social-btn {
        background: rgba(15, 23, 42, 0.04);
        border: 1px solid rgba(0, 0, 0, 0.08);
    }
    .footer-social-btn:hover {
        transform: scale(1.15) translateY(-2px);
        background: var(--primary-gradient);
        border-color: transparent;
        color: #ffffff !important;
        box-shadow: 0 8px 18px rgba(var(--primary-rgb), 0.25);
    }

    /* CSS Estilização Toast Global Vitrine */
    #mhsysGlobalToast {
        border-radius: 16px !important;
    }
    body.light-theme #mhsysGlobalToast {
        background: #ffffff !important;
        box-shadow: 0 15px 40px -10px rgba(15, 23, 42, 0.12) !important;
    }
    body.dark-theme #mhsysGlobalToast {
        background: #11141a !important;
        border-color: rgba(255, 255, 255, 0.05) !important;
    }
    body.dark-theme #mhsysGlobalToast #toastGlobalTitle {
        color: #ffffff !important;
    }
    body.dark-theme #mhsysGlobalToast #toastGlobalMessage {
        color: #94a3b8 !important;
    }
    body.dark-theme #mhsysGlobalToast .btn-close {
        filter: invert(1) grayscale(100%) brightness(200%);
    }

/* ========================================================
   E-COMMERCE: FOOTER (BLOCK 2)
   ======================================================== */
.whatsapp-floating-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #25d366;
            color: #fff !important;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
            z-index: 9999;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none !important;
        }
        .whatsapp-floating-btn:hover {
            transform: scale(1.1) translateY(-3px);
            background-color: #20ba5a;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
        }
        @media (max-width: 768px) {
            .whatsapp-floating-btn {
                bottom: 20px;
                right: 20px;
                width: 50px;
                height: 50px;
                font-size: 26px;
            }
        }

        .wa-lead-popover-card {
            position: fixed;
            bottom: 100px;
            right: 30px;
            width: 320px;
            background: rgba(255, 255, 255, 0.98);
            border: 1px solid rgba(0, 0, 0, 0.1);
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            z-index: 10000;
            overflow: hidden;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            animation: waPopoverFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }
        @media (max-width: 768px) {
            .wa-lead-popover-card {
                right: 20px;
                bottom: 90px;
                width: calc(100% - 40px);
            }
        }
        @keyframes waPopoverFadeIn {
            from { opacity: 0; transform: translateY(20px) scale(0.95); }
            to { opacity: 1; transform: translateY(0) scale(1); }
        }
        .wa-lead-popover-card-header {
            background: #25d366;
            color: white;
            padding: 12px 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .wa-lead-popover-card-title {
            font-size: 15px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .wa-lead-popover-card-close {
            background: none;
            border: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
            line-height: 1;
            opacity: 0.8;
            transition: opacity 0.2s;
        }
        .wa-lead-popover-card-close:hover { opacity: 1; }
        .wa-lead-popover-card-body { padding: 16px; }
        .wa-lead-popover-card-desc {
            font-size: 12px;
            color: #64748b;
            margin-bottom: 12px;
            line-height: 1.4;
        }
        .wa-lead-card-group { margin-bottom: 12px; }
        .wa-lead-card-group label {
            display: block;
            font-size: 11px;
            font-weight: 600;
            color: #475569;
            margin-bottom: 4px;
            text-align: left;
        }
        .wa-lead-card-input {
            width: 100%;
            padding: 8px 12px;
            font-size: 13px;
            border: 1px solid #cbd5e1;
            border-radius: 8px;
            outline: none;
            transition: border-color 0.2s;
            box-sizing: border-box;
            background: #fff;
            color: #334155;
        }
        .wa-lead-card-input:focus { border-color: #25d366; }
        .wa-lead-popover-card-submit {
            width: 100%;
            background: #25d366;
            color: white;
            border: none;
            padding: 10px;
            font-size: 14px;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            transition: background 0.2s;
        }
        .wa-lead-popover-card-submit:hover { background: #20ba5a; }

/* ========================================================
   E-COMMERCE: FOOTER (BLOCK 3)
   ======================================================== */
.mhsys-lgpd-banner {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 999999;
    padding: 15px 20px;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: 'Inter', 'Outfit', sans-serif;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
    animation: slideUp 0.4s ease-out;
}
.mhsys-lgpd-banner.mhsys-lgpd-top {
    top: 0;
    bottom: auto;
    border-top: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    animation: slideDown 0.4s ease-out;
}
.mhsys-lgpd-banner.mhsys-lgpd-bottom {
    bottom: 0;
    top: auto;
}
.mhsys-lgpd-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.mhsys-lgpd-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 280px;
}
.mhsys-lgpd-icon {
    font-size: 24px;
    color: #10b981;
}
.mhsys-lgpd-text {
    font-size: 13.5px;
    line-height: 1.5;
    color: #cbd5e1;
    text-align: left;
}
.mhsys-lgpd-link {
    color: #34d399 !important;
    text-decoration: underline !important;
    font-weight: 600;
    margin-left: 5px;
}
.mhsys-lgpd-actions {
    display: flex;
    align-items: center;
}
@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}
@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}
@media (max-width: 768px) {
    .mhsys-lgpd-container {
        flex-direction: column;
        align-items: stretch;
    }
    .mhsys-lgpd-actions {
        justify-content: flex-end;
    }
}