/* =============================================================
   CUSTOM CSS — Marval RS
   Consolidated from global-styles.blade.php + main_master.blade.php
   ============================================================= */

/* === From main_master.blade.php === */
/* Smooth scroll */
        html { scroll-behavior: smooth; }

        /* Better scroll-to-top button */
        .scroll-top {
            width: 44px !important;
            height: 44px !important;
            border-radius: 12px !important;
            background: linear-gradient(135deg, #0167F3, #0050c8) !important;
            box-shadow: 0 4px 16px rgba(1,103,243,0.3) !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            transition: all 0.3s !important;
        }
        .scroll-top:hover {
            transform: translateY(-3px) !important;
            box-shadow: 0 6px 24px rgba(1,103,243,0.4) !important;
        }

        /* Loading spinner for AJAX actions */
        .mv-loading-overlay {
            display: none;
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(255,255,255,0.7);
            z-index: 99999;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(2px);
        }
        .mv-loading-overlay.active { display: flex; }
        .mv-loading-spinner {
            width: 44px;
            height: 44px;
            border: 3px solid #e8e8ef;
            border-top-color: #0167F3;
            border-radius: 50%;
            animation: mvSpin 0.7s linear infinite;
        }
        @keyframes mvSpin { to { transform: rotate(360deg); } }

        /* Better focus states for accessibility */
        a:focus-visible,
        button:focus-visible,
        input:focus-visible {
            outline: 2px solid #0167F3;
            outline-offset: 2px;
        }

        /* Smooth image loading */
        img {
            transition: opacity 0.3s ease;
        }
        img[loading="lazy"] {
            opacity: 0;
        }
        img[loading="lazy"].loaded,
        img[loading="lazy"]:not([data-src]) {
            opacity: 1;
        }

        /* Selection color */
        ::selection {
            background: rgba(1,103,243,0.15);
            color: #0d1b2a;
        }

/* ═══════════════════════════════════════════════════════════════
   From global-styles.blade.php
   ═══════════════════════════════════════════════════════════════ */
/* ============================================
       GLOBAL STYLES - Marval RS
       Breadcrumb padronizado + Mobile Bottom Nav
    ============================================ */

    /* === Breadcrumb Moderno (padrão todas as páginas) === */
    .mv-breadcrumb {
        background: linear-gradient(135deg, #0d1b2a 0%, #1b2838 100%);
        padding: 40px 0;
        position: relative;
        overflow: hidden;
    }
    .mv-breadcrumb::after {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        opacity: 0.5;
    }
    .mv-breadcrumb h1 {
        color: #fff;
        font-size: 1.75rem;
        font-weight: 700;
        margin: 0;
        position: relative;
        z-index: 1;
    }
    .mv-breadcrumb .mv-breadcrumb-nav {
        position: relative;
        z-index: 1;
        margin-bottom: 8px;
    }
    .mv-breadcrumb .mv-breadcrumb-nav a,
    .mv-breadcrumb .mv-breadcrumb-nav span {
        color: rgba(255,255,255,0.7);
        font-size: 0.9rem;
        text-decoration: none;
    }
    .mv-breadcrumb .mv-breadcrumb-nav a:hover {
        color: #fff;
    }
    .mv-breadcrumb .mv-breadcrumb-nav .separator {
        margin: 0 8px;
        color: rgba(255,255,255,0.4);
    }
    .mv-breadcrumb .mv-breadcrumb-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: rgba(255,255,255,0.1);
        border: 1px solid rgba(255,255,255,0.15);
        border-radius: 20px;
        padding: 6px 14px;
        color: rgba(255,255,255,0.85);
        font-size: 0.85rem;
        position: relative;
        z-index: 1;
    }

    /* === Mobile Bottom Navigation === */
    .mobile-bottom-nav {
        display: none;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        background: #fff;
        border-top: 1px solid #e8ecf1;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
        padding: 0;
        padding-bottom: env(safe-area-inset-bottom, 0px);
    }
    .mobile-bottom-nav .nav-items {
        display: flex;
        justify-content: space-around;
        align-items: stretch;
        padding: 0;
        margin: 0;
        list-style: none;
    }
    .mobile-bottom-nav .nav-item {
        flex: 1;
    }
    .mobile-bottom-nav .nav-link {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        padding: 10px 4px 8px;
        color: #a0aec0;
        text-decoration: none;
        font-size: 0.68rem;
        font-weight: 500;
        letter-spacing: 0.2px;
        transition: all 0.2s;
        position: relative;
        text-align: center;
    }
    .mobile-bottom-nav .nav-link i {
        font-size: 1.25rem;
        transition: transform 0.2s;
    }
    .mobile-bottom-nav .nav-link:hover,
    .mobile-bottom-nav .nav-link.active {
        color: #0167F3;
    }
    .mobile-bottom-nav .nav-link.active::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 32px;
        height: 3px;
        background: #0167F3;
        border-radius: 0 0 4px 4px;
    }
    .mobile-bottom-nav .nav-link.active i {
        transform: scale(1.1);
    }
    /* Cart badge no bottom nav */
    .mobile-bottom-nav .nav-link .mobile-cart-badge {
        position: absolute;
        top: 4px;
        right: 50%;
        transform: translateX(12px);
        background: #ef4444;
        color: #fff;
        font-size: 0.6rem;
        font-weight: 700;
        min-width: 16px;
        height: 16px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 4px;
        line-height: 1;
    }
    /* Botão central (CTA) */
    .mobile-bottom-nav .nav-item.nav-cta {
        margin-top: -16px;
    }
    .mobile-bottom-nav .nav-cta .nav-link {
        padding-top: 0;
    }
    .mobile-bottom-nav .nav-cta .cta-circle {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #0167F3 0%, #0050c7 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 15px rgba(1,103,243,0.35);
        transition: transform 0.2s, box-shadow 0.2s;
    }
    .mobile-bottom-nav .nav-cta .cta-circle i {
        color: #fff;
        font-size: 1.3rem;
    }
    .mobile-bottom-nav .nav-cta .nav-link:hover .cta-circle,
    .mobile-bottom-nav .nav-cta .nav-link.active .cta-circle {
        transform: scale(1.08);
        box-shadow: 0 6px 20px rgba(1,103,243,0.45);
    }
    .mobile-bottom-nav .nav-cta .nav-link::before {
        display: none;
    }

    /* Ajustes gerais mobile para app-like */
    @media (max-width: 768px) {
        .mobile-bottom-nav {
            display: block;
        }
        /* Espaço extra no final da página para não cobrir conteúdo */
        body {
            padding-bottom: 70px;
        }
        /* Esconder botão WhatsApp flutuante no mobile (já tem no nav) */
        .scroll-top {
            bottom: 80px;
        }
        /* Breadcrumb mais compacto no mobile */
        .mv-breadcrumb {
            padding: 24px 0;
        }
        .mv-breadcrumb h1 {
            font-size: 1.35rem;
        }
        /* Esconder footer social/nav redundante no mobile */
        .footer .footer-top {
            padding-bottom: 80px;
        }
    }

    /* ============================================
       SEARCH AUTOCOMPLETE DROPDOWN
    ============================================ */
    .mv-search-dropdown {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-radius: 0 0 12px 12px;
        box-shadow: 0 12px 40px rgba(0,0,0,0.15);
        z-index: 9999;
        max-height: 460px;
        overflow-y: auto;
        border: 1px solid #e8e8ef;
        border-top: 2px solid #0167F3;
        scrollbar-width: thin;
    }
    .mv-search-dropdown::-webkit-scrollbar { width: 5px; }
    .mv-search-dropdown::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 4px; }
    .mv-search-dropdown.active { display: block; }

    .mv-search-loading {
        display: none;
        padding: 20px;
        text-align: center;
        color: #8888a2;
        font-size: 13px;
    }
    .mv-search-loading i { margin-right: 6px; }

    /* Section label */
    .mv-search-section-label {
        padding: 10px 16px 4px;
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #8888a2;
    }
    .mv-search-section-label.with-border {
        border-top: 1px solid #f0f0f5;
        margin-top: 4px;
        padding-top: 12px;
    }

    /* Categoria resultado */
    .mv-search-cat-item {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px 16px;
        border-radius: 0;
        text-decoration: none;
        color: #1a1a2e;
        font-size: 13px;
        font-weight: 600;
        transition: background 0.15s;
    }
    .mv-search-cat-item:hover {
        background: rgba(1,103,243,0.06);
        color: #0167F3;
    }
    .mv-search-cat-item i {
        font-size: 16px;
        color: #0167F3;
        opacity: 0.6;
    }

    /* Produto resultado */
    .mv-search-product-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 16px;
        text-decoration: none;
        color: #1a1a2e;
        transition: background 0.15s;
        border-bottom: 1px solid #f3f3f8;
    }
    .mv-search-product-item:last-child { border-bottom: none; }
    .mv-search-product-item:hover {
        background: rgba(1,103,243,0.04);
    }
    .mv-search-product-thumb {
        width: 48px;
        height: 48px;
        border-radius: 8px;
        background: #f8f9fc;
        border: 1px solid #e8e8ef;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        overflow: hidden;
    }
    .mv-search-product-thumb img {
        max-width: 40px;
        max-height: 40px;
        object-fit: contain;
    }
    .mv-search-product-info {
        flex: 1;
        min-width: 0;
    }
    .mv-search-product-name {
        font-size: 13px;
        font-weight: 600;
        color: #1a1a2e;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.3;
    }
    .mv-search-product-cat {
        font-size: 11px;
        color: #8888a2;
        margin-top: 1px;
    }
    .mv-search-product-item:hover .mv-search-product-name {
        color: #0167F3;
    }
    .mv-search-product-arrow {
        color: #d1d5db;
        font-size: 12px;
        flex-shrink: 0;
        transition: color 0.15s;
    }
    .mv-search-product-item:hover .mv-search-product-arrow {
        color: #0167F3;
    }

    /* Active item (keyboard nav) */
    .mv-search-item-active {
        background: rgba(1,103,243,0.08) !important;
    }

    /* Ver todos */
    .mv-search-footer {
        padding: 10px 16px;
        border-top: 1px solid #e8e8ef;
        text-align: center;
    }
    .mv-search-footer a {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 13px;
        font-weight: 600;
        color: #0167F3;
        text-decoration: none;
        transition: gap 0.2s;
    }
    .mv-search-footer a:hover { gap: 10px; }

    /* Empty state */
    .mv-search-empty {
        padding: 28px 16px;
        text-align: center;
        color: #8888a2;
    }
    .mv-search-empty i {
        font-size: 32px;
        margin-bottom: 8px;
        opacity: 0.3;
        display: block;
    }
    .mv-search-empty p {
        font-size: 13px;
        margin: 0;
    }

    /* Highlight match */
    .mv-search-highlight {
        background: rgba(1,103,243,0.12);
        color: #0167F3;
        border-radius: 2px;
        padding: 0 1px;
    }

    @keyframes mvSpin {
        to { transform: rotate(360deg); }
    }

    /* Mobile search */
    @media (max-width: 768px) {
        .mv-search-dropdown {
            border-radius: 0 0 8px 8px;
            max-height: 60vh;
        }
    }

    /* ============================================
       SOBRE NÓS — Page Styles
    ============================================ */

    /* ── Label / Tag ── */
    .sobre-label {
        display: inline-block;
        font-size: 0.8rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: #0167F3;
        margin-bottom: 12px;
    }
    .sobre-section-title {
        font-size: 2rem;
        font-weight: 700;
        color: #0d1b2a;
        margin-bottom: 0;
    }

    /* ── Hero Section ── */
    .sobre-hero {
        padding: 80px 0 60px;
        background: #fff;
    }
    .sobre-hero-title {
        font-size: 2.25rem;
        font-weight: 400;
        color: #1a1a2e;
        line-height: 1.3;
        margin-bottom: 24px;
    }
    .sobre-hero-title strong {
        color: #0167F3;
        font-weight: 700;
    }
    .sobre-hero-text {
        font-size: 1.05rem;
        line-height: 1.8;
        color: #555;
        margin-bottom: 16px;
        max-width: 600px;
    }
    .sobre-hero-text strong {
        color: #333;
    }

    /* Stats row */
    .sobre-stats {
        display: flex;
        align-items: center;
        gap: 0;
        margin-top: 40px;
        padding: 28px 0;
        border-top: 1px solid #eee;
    }
    .sobre-stat {
        text-align: center;
        flex: 1;
    }
    .sobre-stat-number {
        font-size: 2.5rem;
        font-weight: 800;
        color: #0167F3;
        line-height: 1;
        display: inline;
    }
    .sobre-stat-suffix {
        font-size: 1.5rem;
        font-weight: 700;
        color: #0167F3;
    }
    .sobre-stat-label {
        display: block;
        font-size: 0.82rem;
        color: #888;
        margin-top: 6px;
        line-height: 1.4;
    }
    .sobre-stat-divider {
        width: 1px;
        height: 48px;
        background: #e5e5e5;
    }

    /* Visual card */
    .sobre-hero-visual {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
    }
    .sobre-visual-card {
        position: relative;
        background: linear-gradient(145deg, #0d1b2a 0%, #1b3a5c 100%);
        border-radius: 20px;
        padding: 50px 40px;
        text-align: center;
        width: 100%;
        max-width: 360px;
        overflow: hidden;
    }
    .sobre-visual-card::before {
        content: '';
        position: absolute;
        top: -40px; right: -40px;
        width: 160px; height: 160px;
        background: rgba(1,103,243,0.15);
        border-radius: 50%;
    }
    .sobre-visual-card::after {
        content: '';
        position: absolute;
        bottom: -30px; left: -30px;
        width: 120px; height: 120px;
        background: rgba(1,103,243,0.1);
        border-radius: 50%;
    }
    .sobre-visual-icon {
        position: relative;
        z-index: 1;
        width: 80px; height: 80px;
        background: rgba(1,103,243,0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 24px;
    }
    .sobre-visual-icon i {
        font-size: 2rem;
        color: #6db3f8;
    }
    .sobre-visual-badge {
        position: relative;
        z-index: 1;
        display: inline-block;
        background: rgba(1,103,243,0.3);
        color: #a0cfff;
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        padding: 6px 16px;
        border-radius: 20px;
        margin-bottom: 20px;
    }
    .sobre-visual-text {
        position: relative;
        z-index: 1;
    }
    .sobre-visual-text h3 {
        color: #fff;
        font-size: 1.6rem;
        font-weight: 700;
        margin-bottom: 4px;
    }
    .sobre-visual-text p {
        color: rgba(255,255,255,0.6);
        font-size: 0.95rem;
        margin: 0;
    }
    .sobre-visual-accent {
        position: absolute;
        bottom: 0; left: 0; right: 0;
        height: 4px;
        background: linear-gradient(90deg, #0167F3, #4da6ff, #0167F3);
    }

    /* ── Valores / Diferenciais ── */
    .sobre-valores {
        padding: 80px 0;
        background: #f7f9fc;
    }
    .sobre-card {
        background: #fff;
        border-radius: 16px;
        padding: 36px 28px;
        height: 100%;
        border: 1px solid #eef1f6;
        transition: all 0.3s ease;
    }
    .sobre-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 40px rgba(0,0,0,0.08);
        border-color: rgba(1,103,243,0.15);
    }
    .sobre-card-icon {
        width: 56px; height: 56px;
        background: linear-gradient(135deg, rgba(1,103,243,0.1), rgba(1,103,243,0.05));
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        transition: all 0.3s ease;
    }
    .sobre-card:hover .sobre-card-icon {
        background: linear-gradient(135deg, #0167F3, #0050c7);
    }
    .sobre-card-icon i {
        font-size: 1.4rem;
        color: #0167F3;
        transition: color 0.3s ease;
    }
    .sobre-card:hover .sobre-card-icon i {
        color: #fff;
    }
    .sobre-card h3 {
        font-size: 1.15rem;
        font-weight: 600;
        color: #1a1a2e;
        margin-bottom: 10px;
    }
    .sobre-card p {
        font-size: 0.92rem;
        line-height: 1.7;
        color: #666;
        margin: 0;
    }

    /* ── Timeline ── */
    .sobre-timeline-section {
        padding: 80px 0;
        background: #fff;
    }
    .sobre-timeline {
        position: relative;
        padding: 20px 0;
        max-width: 700px;
        margin: 0 auto;
    }
    .sobre-timeline::before {
        content: '';
        position: absolute;
        left: 18px;
        top: 0; bottom: 0;
        width: 2px;
        background: linear-gradient(to bottom, #e5e9f0, #0167F3, #e5e9f0);
    }
    .sobre-timeline-item {
        position: relative;
        padding-left: 56px;
        padding-bottom: 40px;
    }
    .sobre-timeline-item:last-child {
        padding-bottom: 0;
    }
    .sobre-timeline-dot {
        position: absolute;
        left: 9px; top: 4px;
        width: 20px; height: 20px;
        border-radius: 50%;
        background: #fff;
        border: 3px solid #0167F3;
        z-index: 1;
        transition: all 0.3s;
    }
    .sobre-timeline-item:hover .sobre-timeline-dot {
        background: #0167F3;
        box-shadow: 0 0 0 6px rgba(1,103,243,0.15);
    }
    .sobre-timeline-content {
        background: #f9fafb;
        border-radius: 12px;
        padding: 24px;
        border: 1px solid #eef1f6;
        transition: all 0.3s;
    }
    .sobre-timeline-item:hover .sobre-timeline-content {
        border-color: rgba(1,103,243,0.2);
        box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    }
    .sobre-timeline-year {
        display: inline-block;
        font-size: 0.75rem;
        font-weight: 700;
        color: #0167F3;
        background: rgba(1,103,243,0.08);
        padding: 3px 10px;
        border-radius: 10px;
        margin-bottom: 8px;
        letter-spacing: 0.5px;
    }
    .sobre-timeline-content h4 {
        font-size: 1.1rem;
        font-weight: 600;
        color: #1a1a2e;
        margin-bottom: 6px;
    }
    .sobre-timeline-content p {
        font-size: 0.9rem;
        line-height: 1.7;
        color: #666;
        margin: 0;
    }

    /* ── Missão / Visão / Valores ── */
    .sobre-mvv {
        padding: 80px 0;
        background: linear-gradient(135deg, #0d1b2a 0%, #1b2838 100%);
    }
    .sobre-mvv-card {
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 16px;
        padding: 40px 28px;
        text-align: center;
        height: 100%;
        transition: all 0.3s;
        backdrop-filter: blur(10px);
    }
    .sobre-mvv-card:hover {
        background: rgba(255,255,255,0.08);
        transform: translateY(-4px);
    }
    .sobre-mvv-icon {
        width: 64px; height: 64px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
    }
    .sobre-mvv-missao .sobre-mvv-icon {
        background: rgba(1,103,243,0.2);
    }
    .sobre-mvv-visao .sobre-mvv-icon {
        background: rgba(16,185,129,0.2);
    }
    .sobre-mvv-valores .sobre-mvv-icon {
        background: rgba(245,158,11,0.2);
    }
    .sobre-mvv-missao .sobre-mvv-icon i { color: #4da6ff; }
    .sobre-mvv-visao .sobre-mvv-icon i { color: #34d399; }
    .sobre-mvv-valores .sobre-mvv-icon i { color: #fbbf24; }
    .sobre-mvv-icon i {
        font-size: 1.5rem;
    }
    .sobre-mvv-card h3 {
        color: #fff;
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 12px;
    }
    .sobre-mvv-card p {
        color: rgba(255,255,255,0.65);
        font-size: 0.92rem;
        line-height: 1.7;
        margin: 0;
    }

    /* ── Marcas parceiras ── */
    .sobre-marcas {
        padding: 80px 0;
        background: #fff;
    }
    .sobre-marcas-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 16px;
    }
    .sobre-marca-item {
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f9fafb;
        border: 1px solid #eef1f6;
        border-radius: 12px;
        padding: 20px 16px;
        min-height: 90px;
        transition: all 0.3s;
    }
    .sobre-marca-item:hover {
        border-color: rgba(1,103,243,0.2);
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        transform: translateY(-2px);
    }
    .sobre-marca-item img {
        max-width: 100%;
        max-height: 50px;
        object-fit: contain;
        filter: grayscale(60%);
        opacity: 0.75;
        transition: all 0.3s;
    }
    .sobre-marca-item:hover img {
        filter: grayscale(0%);
        opacity: 1;
    }
    .sobre-marca-name {
        font-size: 0.85rem;
        font-weight: 600;
        color: #888;
        text-align: center;
    }

    /* ── CTA Final ── */
    .sobre-cta {
        padding: 80px 0;
        background: #f7f9fc;
    }
    .sobre-cta-box {
        background: linear-gradient(135deg, #0d1b2a 0%, #1b3a5c 100%);
        border-radius: 20px;
        padding: 48px 40px;
        position: relative;
        overflow: hidden;
    }
    .sobre-cta-box::before {
        content: '';
        position: absolute;
        top: -60px; right: -60px;
        width: 200px; height: 200px;
        background: rgba(1,103,243,0.15);
        border-radius: 50%;
    }
    .sobre-cta-box h2 {
        color: #fff;
        font-size: 1.6rem;
        font-weight: 700;
        margin-bottom: 8px;
        position: relative;
        z-index: 1;
    }
    .sobre-cta-box p {
        color: rgba(255,255,255,0.7);
        font-size: 1rem;
        margin: 0;
        position: relative;
        z-index: 1;
    }
    .sobre-cta-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 14px 28px;
        border-radius: 10px;
        font-weight: 600;
        font-size: 0.95rem;
        text-decoration: none;
        transition: all 0.3s;
        position: relative;
        z-index: 1;
        background: #0167F3;
        color: #fff;
    }
    .sobre-cta-btn:hover {
        background: #0050c7;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(1,103,243,0.3);
    }
    .sobre-cta-btn-wa {
        background: #25D366;
        margin-top: 10px;
    }
    .sobre-cta-btn-wa:hover {
        background: #1fb855;
        box-shadow: 0 6px 20px rgba(37,211,102,0.3);
    }

    /* ── Responsive ── */
    @media (max-width: 991px) {
        .sobre-hero { padding: 50px 0 40px; }
        .sobre-hero-title { font-size: 1.75rem; }
        .sobre-visual-card { max-width: 300px; margin: 0 auto; }
    }
    @media (max-width: 768px) {
        .sobre-hero-title { font-size: 1.5rem; }
        .sobre-section-title { font-size: 1.5rem; }
        .sobre-stats { flex-wrap: wrap; gap: 16px; }
        .sobre-stat-divider { display: none; }
        .sobre-stat { min-width: 80px; }
        .sobre-stat-number { font-size: 2rem; }
        .sobre-valores,
        .sobre-timeline-section,
        .sobre-mvv,
        .sobre-marcas,
        .sobre-cta { padding: 50px 0; }
        .sobre-cta-box { padding: 32px 24px; }
        .sobre-cta-box h2 { font-size: 1.3rem; }
        .sobre-cta-btn { display: flex; justify-content: center; }
        .sobre-marcas-grid { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 10px; }
    }

    /* ═══════════════════════════════════════
       Footer Moderno — Marval RS
       ═══════════════════════════════════════ */
    .mv-footer-main {
        background: #0d1b2a;
        padding: 60px 0 40px;
    }
    .mv-footer-block {
        margin-bottom: 20px;
    }
    .mv-footer-title {
        color: #fff;
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 16px;
        letter-spacing: -0.3px;
    }
    .mv-footer-desc {
        color: rgba(255,255,255,0.6);
        font-size: 0.92rem;
        line-height: 1.7;
        margin-bottom: 20px;
    }
    .mv-footer-social {
        display: flex;
        gap: 12px;
    }
    .mv-footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        border-radius: 10px;
        background: rgba(255,255,255,0.06);
        color: rgba(255,255,255,0.55);
        font-size: 16px;
        transition: all 0.3s;
    }
    .mv-footer-social a:hover {
        background: #0167F3;
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 4px 15px rgba(1,103,243,0.35);
    }
    .mv-footer-subtitle {
        color: #fff;
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 18px;
        position: relative;
        padding-bottom: 10px;
    }
    .mv-footer-subtitle::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 30px;
        height: 2px;
        background: #0167F3;
        border-radius: 2px;
    }
    .mv-footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .mv-footer-links li {
        margin-bottom: 10px;
    }
    .mv-footer-links li a {
        color: rgba(255,255,255,0.55);
        font-size: 0.9rem;
        text-decoration: none;
        transition: all 0.25s;
        text-transform: capitalize;
    }
    .mv-footer-links li a:hover {
        color: #0167F3;
        padding-left: 5px;
    }
    .mv-footer-contact {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .mv-footer-contact li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 14px;
    }
    .mv-footer-contact li i {
        color: #0167F3;
        font-size: 16px;
        margin-top: 3px;
        flex-shrink: 0;
    }
    .mv-footer-contact li span {
        color: rgba(255,255,255,0.6);
        font-size: 0.88rem;
        line-height: 1.6;
    }
    .mv-footer-contact li a {
        color: rgba(255,255,255,0.6);
        text-decoration: none;
        transition: color 0.25s;
    }
    .mv-footer-contact li a:hover {
        color: #0167F3;
    }

    /* Footer Bottom */
    .mv-footer-bottom {
        background: #091424;
        padding: 18px 0;
        border-top: 1px solid rgba(255,255,255,0.06);
    }
    .mv-footer-copy {
        color: rgba(255,255,255,0.4);
        font-size: 0.82rem;
        margin: 0;
    }
    .mv-footer-dev {
        color: rgba(255,255,255,0.3);
        font-size: 0.78rem;
        text-decoration: none;
        transition: color 0.3s;
    }
    .mv-footer-dev:hover {
        color: rgba(255,255,255,0.65);
    }

    @media (max-width: 768px) {
        .mv-footer-main { padding: 40px 0 24px; }
        .mv-footer-bottom .row { text-align: center; }
        .mv-footer-bottom .text-md-end { text-align: center !important; margin-top: 6px; }
    }

    /* ── Brands Name Fallback ── */
    .brand-name-text {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 140px;
        min-height: 70px;
        padding: 10px 18px;
        font-size: 0.85rem;
        font-weight: 700;
        color: #333;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        background: #f5f7fa;
        border-radius: 8px;
        border: 1px solid #e8ecf1;
        text-align: center;
    }
    /* ── Brands carousel — redesign dark bar ── */
    .brands {
        background: linear-gradient(135deg, #0a1628 0%, #0d2847 100%) !important;
        padding: 48px 0 80px !important;
    }
    .brands .title {
        color: rgba(255,255,255,0.9) !important;
    }
    .brands .brands-logo-wrapper {
        border: none !important;
        background: transparent !important;
    }
    .brands .brands-logo-wrapper .brands-logo-carousel .brand-logo img {
        width: 110px;
        height: 55px;
        object-fit: contain;
        opacity: 0.88;
        transition: opacity 0.3s ease;
    }
    .brands .brands-logo-wrapper .brands-logo-carousel .brand-logo {
        padding: 10px 18px;
        background: rgba(255,255,255,0.92);
        border-radius: 10px;
        margin: 6px 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.25s ease;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }
    .brands .brands-logo-wrapper .brands-logo-carousel .brand-logo:hover {
        background: #fff;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.28);
    }
    .brands .brands-logo-wrapper .brands-logo-carousel .brand-logo:hover img {
        opacity: 1;
    }
    .brand-logo a {
        text-decoration: none;
    }
    .brand-logo a:hover {
        opacity: 1;
    }

    /* ═══════════════════════════════════════
       MOBILE — Left-align (Home + Sobre)
       ═══════════════════════════════════════ */
    @media (max-width: 767px) {
        /* Section titles */
        .section-title {
            text-align: left !important;
        }
        .section-title h2::before {
            left: 0 !important;
            margin-left: 0 !important;
        }

        /* Brands */
        .brands .title {
            text-align: left !important;
        }

        /* Product info */
        .single-product .product-info {
            text-align: left;
        }

        /* Sobre page — section headers */
        .sobre-valores .text-center,
        .sobre-timeline-section .text-center,
        .sobre-marcas .text-center {
            text-align: left !important;
        }
        .sobre-section-title {
            text-align: left;
        }

        /* Sobre — MVV cards */
        .sobre-mvv-card {
            text-align: left !important;
        }
        .sobre-mvv-icon {
            margin: 0 0 20px 0 !important;
        }

        /* Sobre — stat counters */
        .sobre-stat {
            text-align: left;
        }

        /* Sobre — CTA */
        .sobre-cta-btn {
            justify-content: flex-start !important;
        }

        /* Hero carousel content */
        .hero-slide-content {
            text-align: left;
        }
    }

    /* ============================================
       FEATURED CATEGORY CARDS
    ============================================ */
    .mv-cat-card {
        display: block;
        text-decoration: none;
        background: #fff;
        border: 1px solid #eee;
        border-radius: 4px;
        overflow: hidden;
        margin-top: 30px;
        transition: all .4s ease;
        -webkit-box-shadow: 0 0 20px #00000012;
        box-shadow: 0 0 20px #00000012;
        padding: 8px;
    }
    .mv-cat-card:hover {
        border-color: #0167F3;
        box-shadow: 0 8px 28px rgba(1,103,243,0.18);
        transform: translateY(-4px);
    }
    .mv-cat-card-img {
        width: 100%;
        height: 160px;
        overflow: hidden;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .mv-cat-card-img img {
        width: auto;
        max-width: 100%;
        max-height: 160px;
        object-fit: contain;
        -webkit-transition: all .4s ease;
        transition: all .4s ease;
    }
    .mv-cat-card:hover .mv-cat-card-img img {
        transform: scale(1.1);
    }
    .mv-cat-card-title {
        padding: 14px 18px;
        font-size: 15px;
        font-weight: 700;
        color: #1e293b;
        text-align: center;
        margin: 0;
        border-top: 1px solid #eee;
        text-transform: capitalize;
    }
    .mv-cat-card:hover .mv-cat-card-title {
        color: #0167F3;
    }
    @media (max-width: 575.98px) {
        .mv-cat-card { margin-top: 16px; }
        .mv-cat-card-title { font-size: 13px; padding: 10px 14px; }
    }

    /* ============================================
       MODERN HEADER - Marval RS
       Top bar + Main header + Sticky Navbar
    ============================================ */

    /* --- Top Bar --- */
    .mv-topbar {
        background: linear-gradient(135deg, #0a1628 0%, #0d1f3c 100%);
        padding: 8px 0;
        font-size: 0.82rem;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .mv-topbar-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .mv-topbar-left {
        display: flex;
        align-items: center;
        gap: 6px;
    }
    .mv-topbar-link {
        color: rgba(255,255,255,0.8);
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        transition: color 0.2s;
        white-space: nowrap;
    }
    .mv-topbar-link:hover {
        color: #fff;
    }
    .mv-topbar-link i {
        font-size: 14px;
        color: #22c55e;
    }
    .mv-topbar-link .lni-envelope {
        color: #60a5fa;
    }
    .mv-topbar-sep {
        color: rgba(255,255,255,0.2);
        margin: 0 6px;
    }
    .mv-topbar-badge {
        color: rgba(255,255,255,0.75);
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 0.8rem;
    }
    .mv-topbar-badge i {
        color: #fbbf24;
    }

    /* --- Main Header --- */
    .mv-header-main {
        background: #fff;
        padding: 16px 0;
        border-bottom: 1px solid #eef2f7;
    }
    .mv-header-main-inner {
        display: flex;
        align-items: center;
        gap: 24px;
    }
    .mv-logo {
        flex-shrink: 0;
        display: flex;
        align-items: center;
    }
    .mv-logo img {
        max-height: 48px;
        width: auto;
        transition: opacity 0.2s;
    }
    .mv-logo:hover img {
        opacity: 0.85;
    }

    /* --- Search Bar --- */
    .mv-search-wrap {
        flex: 1;
        max-width: 580px;
        position: relative;
    }
    .mv-search-form {
        display: flex;
        width: 100%;
        position: relative;
    }
    .mv-search-input {
        flex: 1;
        height: 46px;
        border: 2px solid #e2e8f0;
        border-right: none;
        border-radius: 12px 0 0 12px;
        padding: 0 16px;
        font-size: 14px;
        color: #1e293b;
        background: #f8fafc;
        transition: all 0.25s;
        outline: none;
    }
    .mv-search-input:focus {
        border-color: #0167F3;
        background: #fff;
        box-shadow: 0 0 0 3px rgba(1,103,243,0.08);
    }
    .mv-search-input::placeholder {
        color: #94a3b8;
    }
    .mv-search-btn {
        width: 52px;
        height: 46px;
        border: none;
        border-radius: 0 12px 12px 0;
        background: linear-gradient(135deg, #0167F3, #0050c8);
        color: #fff;
        font-size: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.25s;
    }
    .mv-search-btn:hover {
        background: linear-gradient(135deg, #0050c8, #003d99);
        transform: scale(1.02);
    }

    /* --- Header Actions --- */
    .mv-header-actions {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-shrink: 0;
        margin-left: auto;
    }
    .mv-action-btn {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2px;
        width: 60px;
        height: 56px;
        border-radius: 10px;
        color: #475569;
        text-decoration: none;
        font-size: 20px;
        transition: all 0.2s;
        position: relative;
    }
    .mv-action-btn:hover {
        background: #f1f5f9;
        color: #0167F3;
    }
    .mv-action-label {
        font-size: 0.65rem;
        font-weight: 600;
        letter-spacing: 0.3px;
        text-transform: uppercase;
        color: #64748b;
    }
    .mv-action-btn:hover .mv-action-label {
        color: #0167F3;
    }
    .mv-whatsapp-btn:hover {
        background: #dcfce7;
        color: #16a34a;
    }
    .mv-whatsapp-btn:hover .mv-action-label {
        color: #16a34a;
    }
    .mv-cart-badge {
        position: absolute;
        top: 4px;
        right: 6px;
        min-width: 18px;
        height: 18px;
        line-height: 18px;
        background: #ef4444;
        color: #fff;
        font-size: 10px;
        font-weight: 700;
        text-align: center;
        border-radius: 9px;
        padding: 0 4px;
    }
    .mv-cart-badge:empty {
        display: none;
    }

    /* Cart dropdown — fully scoped to override main.css defaults */
    .mv-cart-wrap {
        position: relative;
    }
    .mv-cart-wrap:hover .shopping-item {
        opacity: 1 !important;
        visibility: visible !important;
    }
    .mv-cart-wrap .shopping-item {
        position: absolute;
        top: 60px;
        right: 0;
        width: 300px;
        background: #fff;
        padding: 16px 18px;
        transition: all 0.3s ease;
        z-index: 9999;
        border-radius: 12px;
        box-shadow: 0 8px 30px rgba(0,0,0,0.15);
        opacity: 0;
        visibility: hidden;
        border: 1px solid #e8ecf1;
    }
    .mv-cart-wrap .shopping-item .dropdown-cart-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 10px;
        margin-bottom: 10px;
        border-bottom: 1px solid #eee;
    }
    .mv-cart-wrap .shopping-item .dropdown-cart-header span {
        font-size: 13px;
        font-weight: 600;
        color: #334155;
    }
    .mv-cart-wrap .shopping-item .dropdown-cart-header a {
        font-size: 13px;
        font-weight: 600;
        color: #0167F3;
        text-decoration: none;
    }
    .mv-cart-wrap .shopping-list {
        max-height: 240px;
        overflow-y: auto;
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .mv-cart-wrap .shopping-list li {
        display: flex;
        padding-bottom: 10px;
        margin-bottom: 10px;
        border-bottom: 1px solid #f0f2f5;
        position: relative;
        font-size: 13px;
    }
    .mv-cart-wrap .shopping-list li .remove {
        position: absolute;
        right: 0;
        top: 0;
        width: 20px;
        height: 20px;
        line-height: 18px;
        text-align: center;
        background: #fff;
        color: #64748b;
        border-radius: 50%;
        font-size: 9px;
        border: 1px solid #e8ecf1;
        cursor: pointer;
        transition: all 0.2s;
    }
    .mv-cart-wrap .shopping-list li .remove:hover {
        background: #ef4444;
        color: #fff;
        border-color: transparent;
    }
    .mv-cart-wrap .shopping-list li .cart-img {
        width: 56px;
        height: 56px;
        border-radius: 8px;
        overflow: hidden;
        border: 1px solid #e8ecf1;
        flex-shrink: 0;
        margin-right: 10px;
    }
    .mv-cart-wrap .shopping-list li .cart-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .mv-cart-wrap .shopping-list li .content h4 {
        margin: 0 0 4px;
        line-height: 1.3;
    }
    .mv-cart-wrap .shopping-list li .content h4 a {
        font-size: 13px;
        font-weight: 600;
        color: #1e293b;
        text-decoration: none;
    }
    .mv-cart-wrap .shopping-list li .content h4 a:hover {
        color: #0167F3;
    }
    .mv-cart-wrap .shopping-list li .content .quantity {
        font-size: 12px;
        color: #64748b;
    }
    .mv-cart-wrap .shopping-item .bottom {
        padding-top: 10px;
        text-align: center;
    }
    .mv-cart-wrap .shopping-item .bottom .button {
        width: 100%;
    }
    .mv-cart-wrap .shopping-item .bottom .button .btn {
        display: block;
        width: 100%;
        padding: 10px 16px;
        background: linear-gradient(135deg, #0167F3, #0050c8);
        color: #fff;
        border: none;
        border-radius: 8px;
        font-size: 13px;
        font-weight: 600;
        text-decoration: none;
        text-align: center;
        transition: all 0.25s;
    }
    .mv-cart-wrap .shopping-item .bottom .button .btn:hover {
        background: linear-gradient(135deg, #0050c8, #003d99);
    }
    @media (max-width: 767px) {
        .mv-cart-wrap .shopping-item {
            width: 260px;
            right: -20px;
            padding: 14px;
        }
    }

    /* --- Navigation Bar --- */
    .mv-navbar {
        background: linear-gradient(135deg, #0a1628 0%, #0d1f3c 100%);
        padding: 0;
        position: relative;
        z-index: 100;
        transition: all 0.3s;
    }
    .mv-navbar.mv-sticky {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        animation: mvSlideDown 0.3s ease;
    }
    @keyframes mvSlideDown {
        from { transform: translateY(-100%); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
    }
    .mv-navbar-inner {
        display: flex;
        align-items: center;
        gap: 0;
    }

    /* --- Category Mega Menu --- */
    .mv-cat-menu {
        position: relative;
        flex-shrink: 0;
    }
    .mv-cat-toggle {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 14px 20px;
        background: rgba(255,255,255,0.08);
        border: none;
        color: #fff;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.2s;
        white-space: nowrap;
        border-right: 1px solid rgba(255,255,255,0.08);
    }
    .mv-cat-toggle:hover {
        background: rgba(255,255,255,0.12);
    }
    .mv-cat-toggle .lni-grid-alt {
        font-size: 16px;
    }
    .mv-cat-arrow {
        font-size: 10px !important;
        opacity: 0.6;
        transition: transform 0.2s;
    }
    .mv-cat-menu:hover .mv-cat-arrow {
        transform: rotate(180deg);
    }

    .mv-cat-dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        width: 260px;
        background: #fff;
        border-radius: 0 0 12px 12px;
        box-shadow: 0 12px 30px rgba(0,0,0,0.12);
        padding: 8px 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(8px);
        transition: all 0.25s;
        z-index: 999;
        list-style: none;
        margin: 0;
        max-height: calc(100vh - 160px);
        overflow-y: auto;
        overscroll-behavior: contain;
    }
    .mv-cat-menu:hover .mv-cat-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .mv-cat-item {
        position: relative;
    }
    .mv-cat-item > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
        color: #334155;
        font-size: 13.5px;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.15s;
    }
    .mv-cat-item > a:hover {
        color: #0167F3;
        padding-left: 24px;
    }
    .mv-cat-item > a i {
        font-size: 10px;
        opacity: 0.4;
    }
    .mv-cat-item:hover > a i {
        opacity: 1;
        color: #0167F3;
    }

    /* Subcategories flyout */
    .mv-subcat-dropdown {
        position: absolute;
        top: 0;
        left: 100%;
        width: 240px;
        background: #fff;
        border-radius: 0 12px 12px 0;
        box-shadow: 8px 8px 30px rgba(0,0,0,0.1);
        padding: 8px 0;
        list-style: none;
        margin: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateX(8px);
        transition: all 0.25s;
        z-index: 1000;
    }
    .mv-cat-item:hover .mv-subcat-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }
    .mv-subcat-dropdown li a {
        display: block;
        padding: 9px 20px;
        color: #475569;
        font-size: 13px;
        text-decoration: none;
        transition: all 0.15s;
    }
    .mv-subcat-dropdown li a:hover {
        color: #0167F3;
        padding-left: 24px;
    }

    /* --- Nav Links --- */
    .mv-nav-links {
        display: flex;
        align-items: center;
        gap: 0;
        flex: 1;
        padding-left: 8px;
    }
    .mv-nav-link {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 14px 18px;
        color: rgba(255,255,255,0.75);
        font-size: 13.5px;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.2s;
        white-space: nowrap;
        position: relative;
    }
    .mv-nav-link i {
        font-size: 15px;
        opacity: 0.7;
    }
    .mv-nav-link:hover {
        color: #fff;
        background: rgba(255,255,255,0.06);
    }
    .mv-nav-link.active {
        color: #60a5fa;
        background: rgba(1,103,243,0.1);
    }
    .mv-nav-link.active i {
        opacity: 1;
        color: #60a5fa;
    }
    .mv-nav-link.active::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 12px;
        right: 12px;
        height: 3px;
        background: linear-gradient(90deg, #0167F3, #38bdf8);
        border-radius: 3px 3px 0 0;
    }

    /* --- CTA Button --- */
    .mv-nav-cta {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 8px 20px;
        margin-left: auto;
        background: linear-gradient(135deg, #0167F3, #0050c8);
        color: #fff;
        font-size: 13px;
        font-weight: 600;
        border-radius: 8px;
        text-decoration: none;
        transition: all 0.25s;
        white-space: nowrap;
    }
    .mv-nav-cta:hover {
        background: linear-gradient(135deg, #0050c8, #003d99);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(1,103,243,0.3);
        color: #fff;
    }
    .mv-nav-cta i {
        font-size: 14px;
    }

    /* --- Spacer for sticky nav --- */
    .mv-navbar-spacer {
        display: none;
    }
    .mv-navbar.mv-sticky + .mv-navbar-spacer,
    body.mv-nav-stuck .mv-navbar-spacer {
        display: block;
    }

    /* ============================================
       HEADER RESPONSIVE
    ============================================ */

    @media (max-width: 991px) {
        .mv-topbar { display: none; }

        .mv-header-main { padding: 12px 0; }
        .mv-header-main-inner { gap: 12px; }

        .mv-logo img { max-height: 38px; }

        .mv-search-wrap { max-width: none; }
        .mv-search-input { height: 42px; font-size: 13px; }
        .mv-search-btn { width: 46px; height: 42px; }

        .mv-action-label { display: none; }
        .mv-action-btn {
            width: 42px;
            height: 42px;
            border-radius: 8px;
            font-size: 18px;
        }

        .mv-navbar { display: none; }
    }

    @media (max-width: 575px) {
        .mv-search-wrap { display: none; }
        .mv-header-main-inner { justify-content: space-between; }
    }

/* === UTILITY CLASSES (from inline styles) === */
.mv-pt-30 { padding-top: 30px; }
.mv-pb-30 { padding-bottom: 30px; }
.mv-hidden { display: none; }
.mv-pointer { cursor: pointer; }
.mv-mb-6 { margin-bottom: 6px; }
.mv-text-truncate-2 {
    display: block;
    text-overflow: ellipsis;
    word-wrap: break-word;
    overflow: hidden;
    max-height: 2.0em;
    line-height: 1.8em;
}
.mv-form-error {
    color: #ef4444;
    font-size: 12px;
    margin-top: 2px;
    display: block;
}
.mv-spin {
    animation: mvSpin 0.7s linear infinite;
}

/* ── Category Carousel ── */
.cat-carousel-wrap {
    position: relative;
    padding: 0 0 52px;
}
.cat-carousel-wrap .tns-controls {
    position: absolute;
    top: -58px;
    right: 0;
    display: flex;
    gap: 8px;
    z-index: 10;
}
.cat-carousel-wrap .tns-controls button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #0167F3 0%, #0050c8 100%);
    color: #fff;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    line-height: 1;
    box-shadow: 0 4px 14px rgba(1, 103, 243, 0.35);
    outline: none;
}
.cat-carousel-wrap .tns-controls button:hover {
    background: linear-gradient(135deg, #0050c8 0%, #003da0 100%);
    box-shadow: 0 6px 20px rgba(1, 103, 243, 0.5);
    transform: translateY(-2px);
}
.cat-carousel-wrap .tns-controls button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(1, 103, 243, 0.3);
}
.cat-carousel-wrap .tns-nav {
    display: flex;
    justify-content: center;
    gap: 6px;
    position: absolute;
    bottom: 14px;
    left: 0;
    right: 0;
}
.cat-carousel-wrap .tns-nav button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: #d0d5dd;
    padding: 0;
    cursor: pointer;
    transition: all 0.25s;
}
.cat-carousel-wrap .tns-nav button.tns-nav-active {
    background: #0167F3;
    width: 24px;
    border-radius: 4px;
}
.cat-carousel .tns-item {
    padding: 4px 2px;
}
