/* ========================================
   ARMAZÉM FESTAS E EVENTOS - CSS Principal
   Design Aquarela Suave e Elegante
   ======================================== */

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* ========================================
       NOVA PALETA - Armazém Festas e Eventos
       Tons quentes: Laranja, Coral, Vermelho
       ======================================== */
    
    /* Cor Primária - Laranja Festivo */
    --primary-color: #F29057;       /* Laranja principal */
    --primary-dark: #D97A45;        /* Laranja escuro (hover) */
    --primary-light: #F9B088;       /* Laranja claro */
    --primary-lighter: #FDE8DC;     /* Laranja muito claro (backgrounds) */
    
    /* Cor Secundária - Coral/Salmão */
    --secondary-color: #F2836B;     /* Coral/Salmão */
    --secondary-dark: #D96B55;      /* Coral escuro */
    --secondary-light: #F9A594;     /* Coral claro */
    
    /* Cor Terciária - Vermelho Coral */
    --tertiary-color: #F26666;      /* Vermelho coral */
    --tertiary-dark: #D94F4F;       /* Vermelho escuro */
    --tertiary-light: #F99999;      /* Vermelho claro */
    
    /* Cores de Destaque */
    --accent-orange: #F29057;       /* Laranja (igual primária) */
    --accent-coral: #F2836B;        /* Coral */
    --accent-red: #F26666;          /* Vermelho */
    --accent-gold: #F29057;         /* Dourado/Laranja */
    
    /* Cores de Fundo */
    --bg-white: #ffffff;
    --bg-light: #F2F2F2;            /* Cinza muito claro */
    --bg-lighter: #FAFAFA;          /* Fundo neutro */
    --bg-gray: #E8E8E8;
    
    /* Cores de Texto */
    --text-primary: #0D0D0D;        /* Preto */
    --text-secondary: #4A4A4A;      /* Cinza escuro */
    --text-muted: #8A8A8A;          /* Cinza médio */
    --text-light: #ffffff;
    
    /* Cores de Status */
    --success: #22C55E;             /* Verde sucesso */
    --warning: #F29057;             /* Laranja aviso */
    --danger: #F26666;              /* Vermelho erro */
    --info: #F2836B;                /* Coral info */
    
    /* Tipografia */
    --font-primary: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-secondary: 'Playfair Display', Georgia, serif;
    
    /* Espaçamentos */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-xxl: 3rem;
    
    /* Bordas */
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;
    
    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.15);
    
    /* Transições */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Base */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-white);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
}

/* Estilo de seleção de texto */
::selection {
    background-color: var(--secondary-color);
    color: var(--text-primary);
}

::-moz-selection {
    background-color: var(--secondary-color);
    color: var(--text-primary);
}

/* Links com estilo aquarela */
a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--primary-color);
}

/* Botões primários */
.btn-primary,
button.btn-primary,
input[type="submit"].btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Botões secundários */
.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 10px 22px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-secondary:hover {
    background: var(--primary-lighter);
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
}

/* ========================================
   BARRA PROMOCIONAL - NOVA PALETA QUENTE
   ======================================== */

.promo-bar {
    background: linear-gradient(90deg, #F29057, #F2836B, #F26666);
    color: #ffffff;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(242, 144, 87, 0.3);
    white-space: nowrap;
}

/* Wrapper do ticker */
.promo-ticker-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

/* Faixa do ticker que desliza */
.promo-ticker {
    display: inline-flex;
    align-items: center;
    animation: ticker-scroll 25s linear infinite;
    will-change: transform;
}

.promo-ticker:hover {
    animation-play-state: paused;
}

/* Cada item do ticker */
.promo-ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 20px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 13px;
    white-space: nowrap;
}

.promo-ticker-item strong {
    font-weight: 800;
    background: rgba(255,255,255,0.2);
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 1px;
}

.promo-ticker-item i {
    font-size: 14px;
    color: #ffffff;
}

/* Separador decorativo */
.promo-ticker-separator {
    display: inline-flex;
    align-items: center;
    padding: 0 15px;
    font-size: 10px;
    opacity: 0.7;
}

/* Animação de scroll contínuo (letreiro) */
@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsividade da barra promocional */
@media (max-width: 768px) {
    .promo-bar {
        padding: 8px 0;
    }
    
    .promo-ticker-item {
        font-size: 12px;
        padding: 0 15px;
        gap: 6px;
    }
    
    .promo-ticker-separator {
        padding: 0 10px;
        font-size: 8px;
    }
    
    .promo-ticker {
        animation-duration: 20s;
    }
}

@media (max-width: 480px) {
    .promo-bar {
        padding: 6px 0;
    }
    
    .promo-ticker-item {
        font-size: 11px;
        padding: 0 12px;
        gap: 5px;
    }
    
    .promo-ticker-separator {
        padding: 0 8px;
        font-size: 7px;
    }
    
    .promo-ticker {
        animation-duration: 18s;
    }
}

/* ========================================
   HEADER - ARMAZÉM FESTAS E EVENTOS
   ======================================== */

.header {
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    width: 100%;
}

/* Header Superior */
.header-top {
    background: #ffffff;
    padding: 15px 0;
    border-bottom: 2px solid #F2F2F2;
}

.header-top-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: block;
    text-decoration: none;
}

.logo-img {
    max-height: 70px;
    width: auto;
    object-fit: contain;
}



/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.header-links {
    display: flex;
    gap: 20px;
}

.header-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.header-link:hover {
    color: var(--primary-color);
}

.user-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-link, .cart-link {
    color: #0D0D0D;
    text-decoration: none;
    font-size: 18px;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.user-link:hover, .cart-link:hover {
    color: #F29057;
    background: #FDE8DC;
}

.cart-count {
    position: absolute;
    top: 0px;
    right: 0px;
    background: #F29057;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
}

/* Menu de Navegação Horizontal */
.header-nav {
    background: #ffffff;
    border-top: 1px solid #e8e8e8;
    padding: 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.main-nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
    gap: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 20px 28px;
    color: #0D0D0D;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    position: relative;
}

.nav-link:hover {
    color: #F29057;
    background: #FAFAFA;
    border-bottom-color: #F29057;
}

/* Active item */
.nav-item.active > .nav-link {
    color: #F29057;
    border-bottom-color: #F29057;
    background: #FAFAFA;
}

/* Dropdown categories */
.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 680px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-radius: 8px;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.15s ease;
    z-index: 1000;
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px 16px;
}

.dropdown-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: 8px;
    color: #111827;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.15s ease, transform 0.15s ease;
    letter-spacing: 0;
}

.dropdown-link i {
    font-size: 0.85rem;
    color: #9ca3af;
    transition: transform 0.15s ease, color 0.15s ease;
}

.dropdown-link:hover {
    background: #f3f4f6;
    transform: translateX(2px);
}

.dropdown-link:hover i {
    color: #F29057;
    transform: translateX(4px);
}

/* Novo Mega Menu - UX Profissional */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: auto;
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border-radius: 0 0 8px 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    z-index: 1000;
    border-top: 3px solid #F29057;
}

.mega-menu-wrapper {
    left: 50% !important;
    transform: translate(-50%, 10px) !important;
    width: 90vw;
    max-width: 1200px;
    padding: 0;
    overflow: hidden;
}

.nav-item:hover .mega-menu-wrapper {
    transform: translate(-50%, 0) !important;
    opacity: 1;
    visibility: visible;
}

.mega-menu-container {
    display: grid;
    grid-template-columns: 240px 1fr 280px;
    min-height: 400px;
}

/* Sidebar de Navegação */
.mega-sidebar {
    background: #f8fafc;
    padding: 24px;
    border-right: 1px solid #edf2f7;
}

.mega-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #94a3b8;
    letter-spacing: 1px;
    margin-bottom: 16px;
    font-weight: 700;
}

.mega-side-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mega-side-nav a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    color: #334155;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.mega-side-nav a:hover, .mega-side-nav a.active {
    background: #ffffff;
    color: #F29057;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

/* Grid de Conteúdo */
.mega-content {
    padding: 24px 32px;
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}

.mega-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.mega-item:hover {
    background: #FDE8DC;
    border-color: #F2836B;
}

.mega-icon {
    width: 36px;
    height: 36px;
    background: #FDE8DC;
    color: #F29057;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.mega-info {
    display: flex;
    flex-direction: column;
}

.mega-name {
    color: #0D0D0D;
    font-weight: 600;
    font-size: 0.9rem;
}

.mega-desc {
    color: #64748b;
    font-size: 0.75rem;
}

.mega-empty {
    color: #94a3b8;
    grid-column: 1 / -1;
    text-align: center;
    padding: 20px;
}

/* Destaque Visual */
.mega-feature {
    padding: 24px;
    display: flex;
}

.mega-banner {
    background: linear-gradient(135deg, #F29057 0%, #F2836B 50%, #F26666 100%);
    width: 100%;
    border-radius: 12px;
    padding: 30px;
    color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.banner-bg-circle {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.mega-banner .badge-new {
    background: #fff;
    color: #F29057;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.mega-banner h4 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-weight: 800;
    line-height: 1.2;
}

.mega-banner p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 24px;
    max-width: 200px;
}

.btn-feature {
    background: white;
    color: #F29057;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-feature:hover {
    transform: translateY(-2px);
    background: #0D0D0D;
    color: #ffffff;
}


.nav-item-promocoes .dropdown-menu {
    left: 50%;
    transform: translate(-50%, 8px);
}

.nav-item-promocoes:hover .dropdown-menu {
    transform: translate(-50%, 0);
}

.nav-item-promocoes .promo-mega {
    width: 760px;
    max-width: calc(100vw - 40px);
    padding: 24px;
}

.promo-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 20px;
}

.promo-column {
    background: #ffffff;
    border-radius: 16px;
    padding: 18px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.promo-intro h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #0f172a;
    line-height: 1.3;
}

.promo-intro p {
    margin: 0;
    color: #475569;
}

.promo-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
}

.promo-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.promo-list li {
    font-size: 0.9rem;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 8px;
}

.promo-list i {
    color: #F29057;
}

.promo-highlight {
    background: linear-gradient(160deg, #101828 0%, #020617 80%);
    border: 1px solid rgba(255,255,255,0.08);
    color: #f8fafc;
    position: relative;
    overflow: hidden;
}

.promo-badge {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #F29057;
}

.promo-highlight h4 {
    font-size: 1.35rem;
    margin: 0;
    line-height: 1.2;
}

.promo-highlight p {
    margin: 0;
    color: rgba(248,250,252,0.7);
    font-size: 0.9rem;
}

.promo-timer {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: rgba(248,250,252,0.85);
}

.promo-timer i {
    color: #F29057;
}

.promo-highlight-list li {
    color: rgba(248,250,252,0.9);
}

.promo-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #F29057;
    color: #ffffff;
    text-decoration: none;
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: auto;
    box-shadow: 0 15px 30px rgba(242, 144, 87, 0.35);
    max-width: 220px;
}

.promo-button:hover {
    transform: translateY(-2px);
    background: #D97A45;
}

.header-actions {
    display: flex !important;
    align-items: center !important;
    gap: var(--spacing-sm) !important;
    flex-shrink: 0 !important;
}

.search-box {
    position: relative !important;
}

.search-form {
    display: flex !important;
    align-items: center !important;
    max-width: 560px !important;
    width: 100% !important;
    background: #ffffff !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 9999px !important;
    padding: 2px !important;
}

.search-input {
    width: 100% !important;
    padding: 10px 16px !important;
    border: none !important;
    border-radius: 9999px !important;
    font-size: 0.95rem !important;
    transition: var(--transition-fast) !important;
    background: transparent !important;
    color: var(--text-primary) !important;
}

.search-input:focus {
    outline: none !important;
    box-shadow: none !important;
}

.search-input::placeholder {
    color: var(--text-secondary) !important;
    opacity: 0.7 !important;
}

.search-btn {
    background: transparent !important;
    color: #F29057 !important;
    border: none !important;
    padding: 8px 10px !important;
    border-radius: 9999px !important;
    cursor: pointer !important;
    transition: var(--transition-fast) !important;
    margin-left: 0 !important;
    font-weight: 600 !important;
}

.search-btn:hover {
    background: #FDE8DC !important;
}

/* Autocomplete */
.search-autocomplete {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    margin-top: 6px;
    overflow: hidden;
    z-index: 1001;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    text-decoration: none;
    color: #111827;
}

.search-result-item:hover {
    background: #f9fafb;
}

.search-result-item img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 6px;
}

.user-actions {
    display: flex !important;
    align-items: center !important;
    gap: var(--spacing-sm) !important;
}

.user-link, .cart-link {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    background: var(--bg-light) !important;
    color: var(--text-primary) !important;
    text-decoration: none !important;
    transition: var(--transition-fast) !important;
    position: relative !important;
}

.user-link:hover, .cart-link:hover {
    background: var(--primary-color) !important;
    color: var(--text-light) !important;
    transform: translateY(-2px) !important;
    box-shadow: var(--shadow-md) !important;
}

.cart-count {
    position: absolute !important;
    top: -8px !important;
    right: -8px !important;
    background: var(--accent-red) !important;
    color: var(--text-light) !important;
    border-radius: 50% !important;
    width: 20px !important;
    height: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
}

.cart-link {
    margin-left: var(--spacing-sm) !important;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 26px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    margin-left: 8px;
}

.mobile-menu-btn span {
    width: 100%;
    height: 3px;
    background: #0D0D0D;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background: #F29057;
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background: #F29057;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    z-index: 1001;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    display: block;
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: linear-gradient(135deg, #F29057 0%, #F2836B 100%);
    border-bottom: none;
}

.mobile-logo img {
    max-height: 45px;
    width: auto;
    filter: brightness(0) invert(1);
}

.mobile-menu-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    font-size: 20px;
    color: #ffffff;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.mobile-search {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: #F2F2F2;
    border-bottom: none;
}

.mobile-search i {
    color: #F29057;
    font-size: 1.1rem;
}

.mobile-search input {
    flex: 1;
    border: 2px solid #E8E8E8;
    border-radius: 25px;
    padding: 12px 18px;
    font-size: 0.95rem;
    background: #ffffff;
    transition: border-color 0.3s ease;
}

.mobile-search input:focus {
    outline: none;
    border-color: #F29057;
}

.mobile-search button {
    border: none;
    background: #F29057;
    color: #ffffff;
    border-radius: 25px;
    padding: 12px 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-search button:hover {
    background: #D97A45;
}

.mobile-quick-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    background: #ffffff;
    border-bottom: 1px solid #F2F2F2;
}

.mobile-quick-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    background: #FAFAFA;
    border: 2px solid #F2F2F2;
    border-radius: 12px;
    padding: 14px 16px;
    color: #0D0D0D;
    transition: all 0.3s ease;
}

.mobile-quick-link strong {
    display: block;
    font-size: 0.95rem;
    color: #0D0D0D;
}

.mobile-quick-link span {
    font-size: 0.8rem;
    color: #6b7280;
}

.mobile-quick-link i {
    font-size: 1.3rem;
    color: #F29057;
}

.mobile-quick-link.whatsapp {
    background: linear-gradient(120deg, rgba(37, 211, 102, 0.1), rgba(37, 211, 102, 0.05));
    border-color: rgba(37, 211, 102, 0.3);
}

.mobile-quick-link.whatsapp i {
    color: #25D366;
}

.mobile-quick-link:hover {
    transform: translateY(-2px);
    border-color: #F29057;
    box-shadow: 0 4px 12px rgba(242, 144, 87, 0.2);
}

.mobile-accordion {
    border-bottom: 1px solid #F2F2F2;
    padding: 0;
    background: #ffffff;
}

.mobile-accordion summary {
    list-style: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #0D0D0D;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: #FAFAFA;
    border-left: 4px solid #F29057;
    transition: all 0.3s ease;
}

.mobile-accordion summary::-webkit-details-marker {
    display: none;
}

.mobile-accordion summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.8rem;
    color: #F29057;
    transition: transform 0.3s ease;
}

.mobile-accordion[open] summary::after {
    transform: rotate(180deg);
}

.mobile-accordion[open] summary {
    background: #F29057;
    color: #ffffff;
    border-left-color: #D97A45;
}

.mobile-accordion[open] summary::after {
    color: #ffffff;
}

.mobile-accordion-panel {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 20px;
    background: #ffffff;
}

.mobile-category-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: #0D0D0D;
    padding: 14px 0;
    border-bottom: 1px solid #F2F2F2;
    transition: all 0.3s ease;
}

.mobile-category-link:hover {
    color: #F29057;
    padding-left: 8px;
}

.mobile-category-link i {
    color: #F2836B;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.mobile-category-link:hover i {
    transform: translateX(4px);
    color: #F29057;
}

.mobile-category-link:last-child {
    border-bottom: none;
}

.mobile-empty {
    color: #9ca3af;
    font-size: 0.85rem;
    padding: 10px 0;
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 10px 0;
    background: #ffffff;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    color: #0D0D0D;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #F2F2F2;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: #F29057;
    transition: width 0.3s ease;
}

.mobile-nav-link:hover {
    background: #FAFAFA;
    color: #F29057;
    padding-left: 28px;
}

.mobile-nav-link:hover::before {
    width: 4px;
}

.mobile-nav-link.promocao {
    color: #F26666;
    font-weight: 700;
    background: linear-gradient(90deg, rgba(242, 102, 102, 0.08), transparent);
}

.mobile-nav-link.promocao::before {
    width: 4px;
    background: #F26666;
}

.mobile-nav-link.promocao:hover {
    background: linear-gradient(90deg, rgba(242, 102, 102, 0.15), transparent);
    color: #D94F4F;
}

/* Mobile Menu Footer */
.mobile-menu-footer {
    padding: 20px;
    background: #FAFAFA;
    border-top: 1px solid #F2F2F2;
    margin-top: auto;
}

.mobile-menu-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.mobile-menu-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 2px solid #F2F2F2;
    border-radius: 50%;
    color: #F29057;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-menu-social a:hover {
    background: #F29057;
    border-color: #F29057;
    color: #ffffff;
    transform: translateY(-2px);
}

.mobile-menu-social a.whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
}

.mobile-menu-contact {
    text-align: center;
    color: #6b7280;
    font-size: 0.85rem;
}

.mobile-menu-contact a {
    color: #F29057;
    text-decoration: none;
    font-weight: 600;
}

.mobile-menu-contact a:hover {
    text-decoration: underline;
}

/* User actions no mobile menu */
.mobile-user-actions {
    display: flex;
    gap: 10px;
    padding: 15px 20px;
    background: #F2F2F2;
    border-bottom: 1px solid #E8E8E8;
}

.mobile-user-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    background: #ffffff;
    border: 2px solid #F2F2F2;
    border-radius: 10px;
    color: #0D0D0D;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.mobile-user-btn i {
    color: #F29057;
}

.mobile-user-btn:hover {
    border-color: #F29057;
    background: #FDE8DC;
}

.mobile-user-btn.cart-btn {
    background: #F29057;
    border-color: #F29057;
    color: #ffffff;
}

.mobile-user-btn.cart-btn i {
    color: #ffffff;
}

.mobile-user-btn.cart-btn:hover {
    background: #D97A45;
    border-color: #D97A45;
}

.mobile-user-btn .badge {
    background: #F26666;
    color: #ffffff;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 0.75rem;
    margin-left: 4px;
}

/* ========================================
   MAIN CONTENT
   ======================================== */

.main-content {
    min-height: calc(100vh - 200px);
    background: var(--bg-white);
}

/* ========================================
   FOOTER - NOVA PALETA QUENTE
   ======================================== */

.footer {
    background: linear-gradient(180deg, #FAFAFA 0%, #F2F2F2 100%);
    color: var(--text-secondary);
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
    border-top: 4px solid #F29057;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    align-items: start;
}

.footer-section h4 {
    color: #0D0D0D;
    margin-bottom: var(--spacing-lg);
    font-size: 1.2rem;
    font-weight: 700;
    position: relative;
    letter-spacing: -0.5px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #F29057;
    border-radius: 2px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.footer-logo-img {
    width: 200px; /* Levemente menor para equilíbrio */
    height: auto;
    margin-right: 0;
    border-radius: 0;
    object-fit: contain;
    filter: none;
}

.footer-logo-text {
    color: #0D0D0D;
    font-weight: 700;
    font-size: 1.5rem;
}

.footer-description {
    color: var(--text-secondary);
    opacity: 1; /* Removido opacidade para melhor leitura em fundo claro */
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.footer-social {
    display: flex;
    gap: var(--spacing-md);
}

.footer-social a {
    color: #F29057;
    font-size: 1.2rem;
    transition: var(--transition-fast);
    opacity: 1;
    background: white;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.footer-social a:hover {
    color: white;
    background: #F29057;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(242, 144, 87, 0.4);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
    opacity: 1;
    position: relative;
    padding-left: var(--spacing-md);
}

.footer-links a::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #F2836B;
    transition: var(--transition-fast);
    font-size: 1.2rem;
}

.footer-links a:hover {
    color: #F29057;
    padding-left: var(--spacing-lg);
}

.footer-links a:hover::before {
    transform: scale(1.2);
    color: #F29057;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-sm);
    color: var(--text-secondary);
    opacity: 1;
}

.footer-contact-link {
    color: var(--text-secondary);
    text-decoration: none;
    line-height: 1.4;
    display: inline-block;
    opacity: 1;
    transition: var(--transition-fast);
}

.footer-contact-link:hover {
    color: #F29057;
}

.footer-contact-item i {
    margin-right: var(--spacing-sm);
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid #e2e8f0;
    padding-top: var(--spacing-lg);
    margin-top: var(--spacing-lg); /* Adicionado margem extra */
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-copyright {
    color: var(--text-muted);
    opacity: 1;
    font-size: 0.9rem;
}

.footer-payment {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.footer-payment-text {
    color: var(--text-muted);
    opacity: 1;
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-payment-icons {
    display: flex;
    gap: var(--spacing-sm);
}

.footer-payment-icons i {
    color: #94a3b8; /* Cor neutra para ícones */
    font-size: 1.5rem; /* Aumentado um pouco */
    transition: var(--transition-fast);
}

.footer-payment-icons i:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

/* ========================================
   RESPONSIVIDADE
   ======================================== */

/* Responsividade */
@media (max-width: 768px) {
    .header-top-content {
        grid-template-columns: auto auto;
        gap: 12px;
        justify-content: space-between;
        padding: 0 8px;
    }
    
    .logo {
        order: 1;
        margin-left: 0;
        justify-self: start;
        padding-left: 0;
    }
    
    .header-actions { order: 2; }
    .search-box { display: none !important; }
    .search-autocomplete { display: none !important; }
    

    
    .header-links {
        display: none;
    }
    
    .header-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .logo-img {
        max-height: 52px;
    }
    
    .user-link, .cart-link {
        padding: 5px;
        font-size: 15px;
    }
    
    .user-actions {
        gap: 7px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .header-top-content {
        grid-template-columns: auto auto;
        padding: 0 6px;
        justify-content: space-between;
    }
    
    .logo {
        order: 1;
        margin-left: 0;
        justify-self: start;
        padding-left: 0;
    }
    
    .header-actions { order: 2; }
    
    .search-box { display: none !important; }
    .search-autocomplete { display: none !important; }
    
    .search-input {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .logo-img {
        max-height: 56px;
    }
    
    .user-actions {
        gap: 6px;
    }
    
    .user-link, .cart-link {
        padding: 4px;
        font-size: 14px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .promo-bar {
        padding: 8px 0;
        font-size: 12px;
    }
    
    .promo-content {
        padding: 0 15px;
    }
}

/* ========================================
   ANIMAÇÕES
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.fade-in-down {
    animation: fadeInDown 0.6s ease-out;
}

.pulse {
    animation: pulse 2s infinite;
}

/* ========================================
   POPUP NEWSLETTER
   ======================================== */

.newsletter-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.newsletter-popup.active {
    display: flex;
}

.newsletter-popup-content {
    background: white;
    border-radius: 20px;
    max-width: 400px;
    width: 90%;
    max-height: 90vh;
    min-height: 600px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.4s ease;
}

.newsletter-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    color: #333;
    z-index: 10;
    transition: all 0.3s ease;
}

.newsletter-popup-close:hover {
    background: #ff6b35;
    color: white;
    transform: scale(1.1);
}

.newsletter-popup-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.newsletter-popup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.newsletter-popup-form {
    padding: 30px 25px;
    background: white;
}

.newsletter-popup-form input[type="email"] {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 16px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.newsletter-popup-form input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(232, 164, 184, 0.15);
}

.newsletter-submit-btn {
    width: 100%;
    padding: 15px 20px;
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.newsletter-submit-btn:hover {
    background: #8fcc01;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(183, 254, 2, 0.3);
}

.newsletter-submit-btn:active {
    transform: translateY(0);
}

/* Animações do Popup */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsividade do Popup */
@media (max-width: 768px) {
    .newsletter-popup-content {
        max-width: 350px;
        width: 95%;
        min-height: 550px;
    }
    
    .newsletter-popup-image {
        height: 320px;
    }
    
    .newsletter-popup-form {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .newsletter-popup-content {
        max-width: 320px;
        width: 98%;
        min-height: 500px;
    }
    
    .newsletter-popup-image {
        height: 280px;
    }
    
    .newsletter-popup-form {
        padding: 20px 15px;
    }
    
    .newsletter-popup-form input[type="email"] {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .newsletter-submit-btn {
        padding: 12px 15px;
        font-size: 14px;
    }
}

/* ========================================
   UTILITÁRIOS
   ======================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }
.mb-4 { margin-bottom: var(--spacing-xl); }

.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }
.mt-4 { margin-top: var(--spacing-xl); }

.p-1 { padding: var(--spacing-sm); }
.p-2 { padding: var(--spacing-md); }
.p-3 { padding: var(--spacing-lg); }
.p-4 { padding: var(--spacing-xl); }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

/* ========================================
   SISTEMA DE MENSAGENS/ALERTAS
   ======================================== */

.alert {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    animation: slideInRight 0.3s ease;
    font-family: var(--font-primary);
}

.alert-success {
    background: linear-gradient(135deg, var(--success), #20c997);
    color: white;
    border-left: 4px solid #1e7e34;
}

.alert-error {
    background: linear-gradient(135deg, var(--danger), #e74c3c);
    color: white;
    border-left: 4px solid #c82333;
}

.alert-warning {
    background: linear-gradient(135deg, var(--warning), #ffca2c);
    color: #212529;
    border-left: 4px solid #e0a800;
}

.alert-content {
    display: flex;
    align-items: center;
    padding: var(--spacing-md) var(--spacing-lg);
    gap: var(--spacing-sm);
}

.alert-content i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.alert-content span {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.4;
    font-weight: 500;
}

.alert-close {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: var(--spacing-xs);
    border-radius: 50%;
    transition: var(--transition-fast);
    flex-shrink: 0;
    opacity: 0.8;
}

.alert-close:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.2);
}

.alert-close i {
    font-size: 1rem;
}

/* Animação de entrada */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Animação de saída */
@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.alert.hiding {
    animation: slideOutRight 0.3s ease forwards;
}

/* Responsividade para alertas */
@media (max-width: 768px) {
    .alert {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .alert-content {
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .alert-content span {
        font-size: 0.9rem;
    }
}

/* Responsividade para logo */
@media (max-width: 768px) {
    .header-main-content {
        grid-template-columns: 1.5fr auto 1.5fr auto !important;
        gap: var(--spacing-md) !important;
    }
    
    .logo-img {
        width: 180px !important;
    }
    
    .footer-logo-img {
        width: 200px;
    }
    
    .auth-logo-img {
        width: 160px;
    }
}

@media (max-width: 480px) {
    .header-main-content {
        grid-template-columns: 1fr auto 1fr auto !important;
        gap: var(--spacing-sm) !important;
    }
    
    .logo-img {
        width: 150px !important;
    }
    
    .footer-logo-img {
        width: 160px;
    }
    
    .auth-logo-img {
        width: 140px;
    }
    
    /* Ocultar botão/lupa da busca no mobile muito estreito */
    .search-btn { display: none !important; }
    .search-form { max-width: 100% !important; }
}

@media (max-width: 640px) {
    .header-main-content {
        grid-template-columns: auto 1fr auto !important;
        gap: var(--spacing-sm) !important;
    }
    
    .nav-left {
        display: none !important;
    }
    
    .nav-right {
        display: none !important;
    }
    
    .logo {
        grid-column: 2 !important;
    }
    
    .header-actions {
        grid-column: 3 !important;
    }
}

/* ============================================
   MENU NAVIGATION V2 - PREMIUM STYLES
   ============================================ */

/* Header WhatsApp Button */
.header-whatsapp {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.header-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.header-whatsapp i {
    font-size: 18px;
}

.header-whatsapp span {
    display: none;
}

@media (min-width: 992px) {
    .header-whatsapp span {
        display: inline;
    }
}

/* User Actions Enhanced */
.user-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.user-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    color: #374151;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.user-link:hover {
    background: #f3f4f6;
    color: var(--primary-color);
}

.user-link i {
    font-size: 18px;
}

.user-label {
    display: none;
}

@media (min-width: 1100px) {
    .user-label {
        display: inline;
    }
}

.logout-link {
    padding: 8px;
}

/* Nav Icons */
.nav-icon {
    font-size: 14px;
    opacity: 0.7;
    transition: all 0.2s ease;
}

.nav-link:hover .nav-icon {
    opacity: 1;
}

.nav-arrow {
    font-size: 10px;
    margin-left: 4px;
    transition: transform 0.2s ease;
}

.has-dropdown:hover .nav-arrow {
    transform: rotate(180deg);
}

/* Nav Badges */
.nav-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 6px;
}

.nav-badge.new {
    background: linear-gradient(135deg, var(--primary-color), #0096B7);
    color: #fff;
    animation: pulse-badge 2s infinite;
}

.nav-badge.hot {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Nav Link Promo Style */
.nav-link-promo {
    color: #dc2626 !important;
}

.nav-link-promo:hover {
    background: #fef2f2 !important;
}

/* Nav Link WhatsApp Style */
.nav-link-whatsapp {
    color: #25d366 !important;
}

.nav-link-whatsapp:hover {
    background: #f0fdf4 !important;
}

.nav-item-contact {
    margin-left: auto;
}

/* ============================================
   MEGA MENU V2 - PREMIUM STYLES
   ============================================ */

.mega-menu-v2 {
    width: 900px;
    max-width: calc(100vw - 40px);
    padding: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.mega-header {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 20px 24px;
    color: #fff;
}

.mega-header h3 {
    margin: 0 0 4px 0;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mega-header h3 i {
    color: var(--secondary-color);
}

.mega-header p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.mega-body {
    padding: 24px;
    background: #fff;
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

/* Mega Cards - Category Cards */
.mega-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #f8fafc;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.mega-card:hover {
    background: #fff;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 180, 216, 0.15);
}

.mega-card-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0096B7 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.mega-card:hover .mega-card-icon {
    transform: scale(1.1);
}

.mega-card-content {
    flex: 1;
    min-width: 0;
}

.mega-card-title {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: #1e293b;
    margin-bottom: 2px;
}

.mega-card-count {
    font-size: 0.75rem;
    color: #64748b;
}

.mega-card-arrow {
    color: #cbd5e1;
    font-size: 12px;
    transition: all 0.2s ease;
}

.mega-card:hover .mega-card-arrow {
    color: var(--primary-color);
    transform: translateX(4px);
}

/* Mega Promo Section */
.mega-promo {
    display: flex;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.mega-promo-content {
    flex: 1;
    padding: 24px;
    color: #fff;
}

.mega-promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 214, 10, 0.2);
    color: var(--secondary-color);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.mega-promo h4 {
    margin: 0 0 8px 0;
    font-size: 1.25rem;
    font-weight: 700;
}

.mega-promo p {
    margin: 0 0 16px 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.mega-promo-actions {
    display: flex;
    gap: 10px;
}

.mega-promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mega-promo-btn.primary {
    background: var(--primary-color);
    color: #fff;
}

.mega-promo-btn.primary:hover {
    background: #0096B7;
    transform: translateY(-2px);
}

.mega-promo-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mega-promo-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Promo Visual - Balloons */
.mega-promo-visual {
    width: 180px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-balloons {
    position: relative;
    width: 100%;
    height: 100%;
}

.balloon {
    position: absolute;
    width: 40px;
    height: 50px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: float-balloon 3s ease-in-out infinite;
}

.balloon::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
}

.balloon-1 {
    background: var(--primary-color);
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.balloon-2 {
    background: var(--secondary-color);
    top: 30%;
    left: 45%;
    animation-delay: 0.5s;
    width: 35px;
    height: 45px;
}

.balloon-3 {
    background: var(--tertiary-color);
    top: 25%;
    left: 70%;
    animation-delay: 1s;
    width: 30px;
    height: 40px;
}

@keyframes float-balloon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Mega Footer */
.mega-footer {
    background: #f8fafc;
    padding: 16px 24px;
    border-top: 1px solid #e2e8f0;
}

.mega-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mega-view-all:hover {
    gap: 12px;
}

/* ============================================
   PROMO MEGA V2 - OFFERS DROPDOWN
   ============================================ */

.promo-mega-v2 {
    width: 680px;
    max-width: calc(100vw - 40px);
    padding: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.promo-mega-inner {
    display: flex;
}

.promo-mega-left {
    flex: 1;
    padding: 24px;
    background: #fff;
}

.promo-mega-header {
    margin-bottom: 20px;
}

.promo-mega-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ef4444;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.promo-mega-header h3 {
    margin: 0 0 4px 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
}

.promo-mega-header p {
    margin: 0;
    color: #64748b;
    font-size: 0.9rem;
}

.promo-mega-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.promo-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.promo-feature-icon {
    width: 40px;
    height: 40px;
    background: #fef2f2;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef4444;
    font-size: 16px;
}

.promo-feature-text strong {
    display: block;
    font-size: 0.9rem;
    color: #1e293b;
}

.promo-feature-text span {
    font-size: 0.8rem;
    color: #64748b;
}

.promo-mega-right {
    width: 260px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    padding: 24px;
    display: flex;
    align-items: center;
}

.promo-mega-card {
    color: #fff;
}

.promo-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.promo-mega-card h4 {
    margin: 0 0 8px 0;
    font-size: 1.3rem;
    font-weight: 700;
}

.promo-mega-card p {
    margin: 0 0 16px 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
}

.promo-card-timer {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
}

.promo-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #dc2626;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.promo-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ============================================
   RESPONSIVE ADJUSTMENTS FOR NEW MENU
   ============================================ */

@media (max-width: 1200px) {
    .mega-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mega-menu-v2 {
        width: 700px;
    }
    
    .mega-promo-visual {
        display: none;
    }
}

@media (max-width: 992px) {
    .header-whatsapp span {
        display: none;
    }
    
    .nav-icon,
    .nav-arrow,
    .nav-badge {
        display: none;
    }
    
    .nav-link span {
        display: inline;
    }
    
    .nav-item-contact {
        display: none;
    }
}

@media (max-width: 768px) {
    .header-whatsapp {
        padding: 8px 10px;
    }
    
    .mega-menu-v2,
    .promo-mega-v2 {
        display: none;
    }
}

/* ============================================
   MOBILE MENU V2 ENHANCEMENTS
   ============================================ */

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
    background: #f3f4f6;
    color: var(--primary-color);
}

.mobile-nav-link i {
    width: 20px;
    text-align: center;
    font-size: 16px;
    opacity: 0.7;
}

.mobile-nav-link.highlight {
    color: var(--primary-color);
}

.mobile-nav-link.promocao {
    color: #dc2626;
}

.mobile-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: auto;
}

.mobile-badge.new {
    background: linear-gradient(135deg, var(--primary-color), #0096B7);
    color: #fff;
}

.mobile-badge.hot {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
}

.mobile-quick-link.promo {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 1px solid #fecaca;
}

.mobile-quick-link.promo strong {
    color: #dc2626;
}

.mobile-quick-link.promo i {
    color: #dc2626;
}

.mobile-accordion summary {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    font-weight: 600;
    cursor: pointer;
    color: #1e293b;
}

.mobile-accordion summary i {
    color: var(--primary-color);
}
