/* Reset e Configurações Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #F5F6FA;
    color: #374151;
    line-height: 1.6;
}

.no-products {
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
}

.no-products p {
    margin-top: 15px;
    font-size: 1.1rem;
}

/* Mobile - Header Fixo Espaçamento */
@media (max-width: 768px) {
    body {
        padding-top: 200px !important;
    }
    
    html {
        scroll-padding-top: 200px;
    }
    
    /* Forçar espaçamento do hero-banner */
    .hero-banner {
        margin-top: 0 !important;
        margin-bottom: 40px !important;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 180px !important;
    }
    
    html {
        scroll-padding-top: 180px;
    }
    
    /* Forçar espaçamento do hero-banner */
    .hero-banner {
        margin-top: 0 !important;
        margin-bottom: 40px !important;
    }
}

/* Variáveis de cores baseadas no painel */
:root {
    --primary-50: #F3F4F6;
    --primary-100: #E5E7EB;
    --primary-200: #D1D5DB;
    --primary-300: #9CA3AF;
    --primary-400: #6B7280;
    --primary-500: #4B5563;
    --primary-600: #6610f2;
    --primary-700: #5a0fd8;
    --primary-800: #4e0ebe;
    --primary-900: #420ba4;
    --success-main: #45B369;
    --success-surface: #DAF0E1;
    --success-border: #B5E1C3;
    --success-hover: #009F5E;
    --success-pressed: #006038;
    --success-focus: rgba(69, 179, 105, 0.1490196078);
    --info-main: #144BD6;
    --info-surface: #E7EEFC;
    --info-border: #AECAFC;
    --info-hover: #0A51CE;
    --info-pressed: #06307C;
    --info-focus: rgba(20, 75, 214, 0.1490196078);
    --warning-main: #FF9F29;
    --warning-surface: #FFF9E2;
    --warning-border: #FFEBA6;
    --warning-hover: #D69705;
    --warning-pressed: #C28800;
    --warning-focus: rgba(255, 159, 41, 0.1490196078);
    --danger-main: #EF4A00;
    --danger-surface: #FCDAE2;
    --danger-border: #F9B5C6;
    --danger-hover: #D53128;
    --danger-pressed: #801D18;
    --danger-focus: rgba(239, 71, 112, 0.1490196078);
    --cyan: #00B8F2;
    --indigo: #7F27FF;
    --purple: #8252E9;
    --red: #E30A0A;
    --yellow: #F4941E;
    --orange: #F86624;
    --pink: #DE3ACE;
    --primary-light: rgba(102, 16, 242, 0.15);
    --yellow-light: rgba(255, 159, 41, 0.15);
    --purple-light: rgba(130, 82, 233, 0.15);
    --pink-light: rgba(250, 54, 230, 0.15);
    --base: #fff;
    --brand: var(--primary-600);
    --button-secondary: var(--primary-50);
    --black: var(--dark-2);
    --white: var(--base);
    --bg-color: var(--neutral-50);
    --text-primary-light: var(--neutral-900);
    --text-secondary-light: var(--neutral-600);
    --text-secondary-dark: var(--neutral-300);
    --input-form-light: var(--neutral-300);
    --input-form-dark: var(--neutral-500);
    --input-bg: var(--neutral-50);
    --input-stroke: var(--neutral-300);
    --border-color: #d1d5db80;
}

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

/* Header Fixo */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.header.hidden {
    transform: translateY(-100%);
}

/* Mobile - Garantir espaçamento após header */
@media (max-width: 768px) {
    .header + *,
    .header ~ main,
    .header ~ .hero-banner,
    .header ~ .main-content {
        margin-top: 200px !important;
    }
}

@media (max-width: 480px) {
    .header + *,
    .header ~ main,
    .header ~ .hero-banner,
    .header ~ .main-content {
        margin-top: 100px !important;
    }
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    height: 70px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 20px;
    color: #333;
}

.light-logo {
    height: 32px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 25px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-600);
}

.nav-icon {
    font-size: 18px;
    color: inherit;
}

.search-icon {
    font-size: 18px;
    color: var(--text-secondary);
}

.status-icon {
    font-size: 16px;
    color: inherit;
}

.view-icon {
    font-size: 18px;
    color: inherit;
}

.cart-icon {
    font-size: 20px;
    color: inherit;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.store-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.store-status,
.delivery-time,
.min-order {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

.store-status {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}



.status-icon,
.detail-icon {
    font-size: 14px;
}

.status-icon {
    color: #10b981;
}

.detail-icon {
    color: var(--primary-600);
}

/* Responsividade - Mobile First para Header */

/* Tablets e Mobile - Melhorias sem afetar desktop */
@media (max-width: 768px) {
    /* Header Principal - Mantém estrutura original mas otimizado */
    .header-container {
        padding: 10px 15px;
        gap: 12px;
        height: auto;
        min-height: 70px;
        flex-wrap: wrap;
    }
    
    .header-left {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        order: 1;
    }
    
    .logo {
        justify-content: center;
        text-align: center;
    }
    
    .light-logo {
        height: 28px;
    }
    
    /* Menu de Navegação - Carrossel Horizontal */
    .nav-menu {
        display: flex;
        flex-direction: row;
        gap: 10px;
        width: 100%;
        order: 2;
        overflow-x: auto;
        padding: 5px 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE/Edge */
    }
    
    /* Esconder scrollbar */
    .nav-menu::-webkit-scrollbar {
        display: none;
    }
    
    .nav-link {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 8px 12px;
        background: #f8f9fa;
        border: 1px solid #e9ecef;
        border-radius: 20px;
        font-size: 13px;
        text-align: center;
        white-space: nowrap;
        flex-shrink: 0;
        min-width: fit-content;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: var(--primary-600);
        border-color: var(--primary-600);
        color: white;
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(102, 16, 242, 0.3);
    }
    
    .nav-icon {
        font-size: 14px;
        color: inherit;
    }
    
    /* Área Direita - Ícones Agrupados */
    .header-right {
        width: 100%;
        justify-content: center;
        gap: 12px;
        order: 3;
        flex-wrap: wrap;
    }
    
    /* Store Info - Compacto */
    .store-info {
        flex-direction: row;
        gap: 8px;
        padding: 8px;
        justify-content: space-around;
        width: 100%;
        order: 1;
    }
    
    .store-status,
    .delivery-time,
    .min-order {
        flex: 1;
        justify-content: center;
        font-size: 11px;
        padding: 4px 8px;
        text-align: center;
    }
    
    /* Botões - Agrupados e Compactos */
    .cart-btn {
        padding: 8px 12px;
        font-size: 13px;
        order: 2;
    }
    
    .cart-text {
        display: inline;
    }
    
    .cart-badge {
        font-size: 9px;
        min-width: 14px;
    }
    
    /* Área do Usuário - Compacta */
    .user-area {
        order: 3;
    }
    
    .login-btn-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .user-btn {
        padding: 8px 12px;
        font-size: 13px;
        gap: 6px;
    }
    
    .user-name {
        font-size: 12px;
    }
    
    .user-dropdown-menu {
        min-width: 200px;
    }
    
    /* Conteúdo do site - Espaçamento consistente após header fixo */
    body {
        padding-top: 200px !important; /* Espaço para o header fixo */
    }
    
    /* Forçar elementos principais a respeitarem o espaçamento */
    main,
    .main-content,
    .conta-main-content,
    .hero-banner {
        position: relative;
        z-index: 1;
    }
    
    /* Ajustes específicos para elementos principais */
    .hero-banner {
        margin-top: 0 !important; /* Remove margin-top pois body já tem padding */
        margin-bottom: 40px !important; /* 40px de espaço antes do menu */
        height: 250px !important;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .hero-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    /* Main Content sem margin-top pois body já controla */
    .main-content {
        margin-top: 0 !important;
        padding: 20px 0 40px 0;
    }
    
    .conta-main-content {
        margin-top: 0 !important;
        padding: 20px;
    }
}

/* Mobile Pequeno - Ajustes finos */
@media (max-width: 480px) {
    .header-container {
        padding: 8px 12px;
        gap: 8px;
        min-height: 60px;
    }
    
    .logo {
        font-size: 16px;
    }
    
    .light-logo {
        height: 24px;
    }
    
    .nav-link {
        padding: 6px 10px;
        font-size: 12px;
        border-radius: 18px;
    }
    
    .nav-icon {
        font-size: 12px;
    }
    
    .store-status,
    .delivery-time,
    .min-order {
        font-size: 10px;
        padding: 3px 6px;
    }
    
    .cart-btn {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .cart-text {
        display: none; /* Esconder texto no mobile pequeno */
    }
    
    .cart-badge {
        font-size: 8px;
        min-width: 12px;
    }
    
    .login-btn-icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .user-btn {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .user-name {
        display: none; /* Esconder nome no mobile pequeno */
    }
    
    /* Conteúdo do site - Espaçamento consistente após header fixo */
    body {
        padding-top: 180px !important; /* Espaço reduzido para header menor */
    }
    
    /* Forçar elementos principais a respeitarem o espaçamento */
    main,
    .main-content,
    .conta-main-content,
    .hero-banner {
        position: relative;
        z-index: 1;
    }
    
    /* Ajustes específicos para elementos principais */
    .hero-banner {
        margin-top: 0 !important; /* Remove margin-top pois body já tem padding */
        margin-bottom: 40px !important; /* 40px de espaço antes do menu */
        height: 200px !important;
    }
    
    .hero-title {
        font-size: 20px;
    }
    
    .hero-subtitle {
        font-size: 13px;
    }
    
    .hero-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    /* Main Content sem margin-top pois body já controla */
    .main-content {
        margin-top: 0 !important;
        padding: 20px 0 40px 0;
    }
    
    .conta-main-content {
        margin-top: 0 !important;
        padding: 20px;
    }
}

.store-status-btn {
    background: var(--primary-600);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.store-status-btn:hover {
    background: var(--primary-700);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 16, 242, 0.3);
}

.search-btn,
.cart-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    padding: 8px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.search-btn:hover,
.cart-btn:hover {
    background: #f0f0f0;
}

.cart-btn {
    position: relative;
    pointer-events: auto;
    z-index: 10;
}

.cart-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #E74C3C;
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
    pointer-events: none;
    z-index: 1;
}

.ir-carrinho-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    width: 100%;
}

.ir-carrinho-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* Área do Usuário */
.user-area {
    position: relative;
    margin-left: 8px;
}

.login-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    border-radius: 50%;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 20px;
}

.login-btn-icon:hover {
    background: #f0f0f0;
    color: var(--primary-600);
}

.login-icon {
    font-size: 20px;
}

.user-dropdown {
    position: relative;
}

.user-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.user-btn:hover {
    background: #f0f0f0;
}

.user-icon {
    font-size: 20px;
    color: var(--primary-600);
}

.user-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
}

.dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.user-btn.active .dropdown-arrow {
    transform: rotate(180deg);
}

.user-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    min-width: 280px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 8px;
}

.user-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.user-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.avatar-icon {
    font-size: 24px;
}

.user-details {
    flex: 1;
}

.user-name-full {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 2px;
}

.user-email {
    font-size: 13px;
    color: #6b7280;
}

.dropdown-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 8px 0;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--text-color);
    text-decoration: none;
    transition: background-color 0.2s ease;
    font-size: 14px;
}

.dropdown-item:hover {
    background: #f8f9fa;
}

.item-icon {
    font-size: 18px;
    color: #6b7280;
    width: 20px;
}

.dropdown-item.logout-item {
    color: #ef4444;
}

.dropdown-item.logout-item:hover {
    background: #fef2f2;
}

.dropdown-item.logout-item .item-icon {
    color: #ef4444;
}

.login-link {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Hero Banner */
.hero-banner {
    margin-top: 70px; /* Altura do header */
    height: 350px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('https://images.unsplash.com/photo-1568901346375-23c9450c58eb?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 40px; /* Espaço de 40px antes do menu de categorias */
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.1),
        rgba(0, 0, 0, 0.1) 10px,
        rgba(0, 0, 0, 0.2) 10px,
        rgba(0, 0, 0, 0.2) 20px
    );
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    max-width: 600px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    max-width: 500px;
    line-height: 1.5;
}

.hero-btn {
    background: var(--primary-600);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background: var(--primary-700);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 16, 242, 0.3);
}

/* Main Content */
.main-content {
    padding: 0 0 40px 0; /* Removido padding-top pois hero-banner já tem margin-bottom */
    display: flex;
    gap: 30px;
}

.main-content .container {
    display: flex;
    gap: 30px;
}

/* Sidebar */
.sidebar {
    width: 280px;
    flex-shrink: 0;
    position: sticky;
    top: 85px;
    height: fit-content;
    max-height: calc(100vh - 105px);
    overflow-y: auto;
    overflow-x: hidden;
    transition: top 0.3s ease;
}

/* Ajustar sidebar quando header está escondido */
body:has(.header.hidden) .sidebar {
    top: 20px;
    max-height: calc(100vh - 40px);
}

/* Esconder scrollbar completamente */
.sidebar::-webkit-scrollbar {
    display: none;
}

.sidebar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.sidebar-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.sidebar-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-item {
    padding: 8px 12px;
    margin-bottom: 4px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

.category-item:hover {
    background: var(--primary-50);
    color: var(--primary-600);
}

.category-item.active {
    background: var(--primary-600);
    color: white;
}

.category-icon {
    font-size: 18px;
    color: inherit;
    flex-shrink: 0;
}

.search-container {
    display: flex;
    gap: 10px;
}

.search-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-600);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.search-submit {
    background: var(--primary-600);
    color: white;
    border: none;
    padding: 12px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-submit:hover {
    background: var(--primary-700);
}

/* Menu Area */
.menu-area {
    flex: 1;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.menu-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-title-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

.menu-title-icon iconify-icon {
    font-size: 20px !important;
    color: white !important;
    display: inline-block !important;
    width: 20px !important;
    height: 20px !important;
}

.view-buttons {
    display: flex;
    gap: 10px;
}

.view-btn {
    background: white;
    border: 1px solid #e0e0e0;
    padding: 10px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.view-btn:hover {
    background: #f8f9fa;
}

.view-btn.active {
    background: var(--primary-600);
    color: white;
    border-color: var(--primary-600);
}

.search-btn {
    background: white;
    border: 1px solid #ddd;
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    background: #f8f9fa;
    border-color: var(--primary-600);
}

.search-icon {
    font-size: 18px;
    color: var(--text-secondary);
}

.search-btn:hover .search-icon {
    color: var(--primary-600);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.products-grid.list-view {
    grid-template-columns: 1fr;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 120px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.product-badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.product-badge iconify-icon {
    font-size: 10px;
}

.badge-mais-pedido {
    background: var(--success-surface);
    color: var(--success-main);
    border: 1px solid var(--success-border);
}

.badge-favorito {
    background: var(--warning-surface);
    color: var(--warning-main);
    border: 1px solid var(--warning-border);
}

.badge-promocao {
    background: var(--danger-surface);
    color: var(--danger-main);
    border: 1px solid var(--danger-border);
}

.product-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
    line-height: 1.3;
}

.product-description {
    color: var(--text-secondary);
    font-size: 12px;
    margin-bottom: 8px;
    line-height: 1.4;
}

.product-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-600);
    margin-bottom: 6px;
}

.product-category {
    font-size: 10px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
    border-top: 1px solid #f0f0f0;
    padding-top: 12px;
}

.btn-add {
    background: var(--primary-600);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 36px;
}

.btn-add:hover {
    background: var(--primary-700);
}

.btn-details {
    background: white;
    color: var(--primary-600);
    border: 1px solid var(--primary-600);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 36px;
}

.btn-details:hover {
    background: var(--primary-600);
    color: white;
}

/* Estilos para ícones dos botões */
.btn-add iconify-icon,
.btn-details iconify-icon,
.offer-action iconify-icon,
.offer-details-btn iconify-icon {
    font-size: 14px;
    flex-shrink: 0;
    display: inline-block;
    width: 14px;
    height: 14px;
}

/* Modal de Detalhes */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
    box-sizing: border-box;
}

.modal-content {
    background: white;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
    color: white;
}

.modal-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 24px;
    cursor: pointer;
    color: white;
    padding: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.modal-close:active {
    transform: scale(0.95);
    background: rgba(255, 255, 255, 0.4);
}

.modal-body {
    padding: 20px;
    background: var(--base);
}

.modal-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

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

.modal-info h4 {
    margin: 0 0 10px 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
}

.modal-info p {
    margin: 0 0 15px 0;
    color: var(--text-secondary);
    line-height: 1.5;
}

.modal-category {
    margin-bottom: 15px;
}

.category-badge {
    display: inline-block;
    background: var(--primary-50);
    color: var(--primary-600);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-price {
    margin-bottom: 20px;
}

.original-price {
    text-decoration: line-through;
    color: var(--text-secondary);
    font-size: 14px;
    margin-right: 10px;
}

.current-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-600);
}

.modal-quantity {
    margin-bottom: 20px;
    padding: 15px;
    background: var(--primary-50);
    border-radius: 8px;
    border: 1px solid var(--primary-200);
}

.modal-quantity label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
    font-size: 14px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: 2px solid var(--primary-200);
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    background: white;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.quantity-input:focus {
    outline: none;
    border-color: var(--primary-600);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--primary-600);
    color: white;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 18px;
}

.quantity-btn:hover {
    background: var(--primary-700);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(102, 16, 242, 0.3);
}

.quantity-btn:active {
    transform: translateY(0);
    background: var(--primary-800);
}

.quantity-btn:disabled {
    background: var(--primary-300);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.modal-badge {
    margin-bottom: 15px;
}

.modal-badge .product-badge {
    margin: 0;
}

.modal-footer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
    background: var(--base);
}

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

.modal-add-btn:hover {
    background: var(--primary-700);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 16, 242, 0.3);
}

/* List View Styles */
.products-grid.list-view .product-card {
    display: flex;
    align-items: center;
}

.products-grid.list-view .product-image {
    width: 200px;
    height: 150px;
    flex-shrink: 0;
}

.products-grid.list-view .product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.products-grid.list-view .product-actions {
    margin-top: auto;
}

/* Responsividade Principal */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sidebar {
        width: 250px;
    }
}

@media (max-width: 768px) {
    .main-content .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .sidebar {
        width: 100%;
        position: static;
        max-height: none;
        overflow-y: visible;
    }
    
    .sidebar-card {
        margin-bottom: 15px;
    }
    
    .category-list {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }
    
    .category-item {
        white-space: nowrap;
        flex-shrink: 0;
        min-width: fit-content;
    }
    
    .daily-offers {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .daily-offers-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .offer-card {
        padding: 12px;
        gap: 12px;
        min-height: 90px;
    }
    
    .offer-image {
        width: 60px;
        height: 60px;
    }
    
    .offer-action {
        padding: 6px 10px;
        font-size: 11px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .product-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-add,
    .btn-details {
        width: 100%;
        justify-content: center;
        gap: 6px;
        min-height: 40px;
        font-size: 13px;
    }
    
    .btn-add iconify-icon,
    .btn-details iconify-icon {
        font-size: 16px;
        width: 16px;
        height: 16px;
    }
    
    .offer-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .offer-action,
    .offer-details-btn {
        width: 100%;
        justify-content: center;
        gap: 6px;
        min-height: 40px;
        font-size: 13px;
    }
    
    .offer-action iconify-icon,
    .offer-details-btn iconify-icon {
        font-size: 16px;
        width: 16px;
        height: 16px;
    }
}

/* Animações adicionais */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card {
    animation: fadeIn 0.5s ease forwards;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }
.product-card:nth-child(7) { animation-delay: 0.7s; }
.product-card:nth-child(8) { animation-delay: 0.8s; }
.product-card:nth-child(9) { animation-delay: 0.9s; }

/* Estados de loading e interação */
.product-card.hidden {
    display: none;
}

.product-card.filtering {
    animation: fadeIn 0.3s ease forwards;
}

/* Badges de Produtos */
.product-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.product-badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-mais-pedido {
    background: var(--success-surface);
    color: var(--success-main);
    border: 1px solid var(--success-border);
}

.badge-favorito {
    background: var(--warning-surface);
    color: var(--warning-main);
    border: 1px solid var(--warning-border);
}

.badge-promocao {
    background: var(--danger-surface);
    color: var(--danger-main);
    border: 1px solid var(--danger-border);
}

/* Seção de Ofertas do Dia */
.daily-offers {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--purple-light) 100%);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.daily-offers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%236610f2" fill-opacity="0.05"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>') repeat;
}

.daily-offers-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.daily-offers-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.daily-offers-title {
    flex: 1;
}

.daily-offers-title h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-800);
    margin: 0 0 5px 0;
}

.daily-offers-title p {
    color: var(--primary-700);
    margin: 0;
    font-size: 14px;
}

.daily-offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 1;
}

.offer-card {
    background: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.offer-image {
    width: 100%;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
}

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

.offer-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.offer-name {
    font-weight: 600;
    color: var(--primary-800);
    margin-bottom: 5px;
    font-size: 14px;
}

.offer-description {
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
}

.offer-price-container {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: auto;
    margin-bottom: 12px;
}

.offer-original-price {
    font-size: 12px;
    color: #999;
    text-decoration: line-through;
}

.offer-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--success-main);
}

.offer-discount {
    background: var(--danger-main);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    flex-shrink: 0;
}

.offer-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.offer-action {
    background: var(--primary-600);
    color: white;
    border: none;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 36px;
}

.offer-action:hover {
    background: var(--primary-700);
}

.offer-details-btn {
    background: #f1f5f9;
    color: #64748b;
    border: none;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 36px;
}

.offer-details-btn:hover {
    background: #e2e8f0;
    color: #475569;
}

/* Modal de Detalhes da Oferta */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-content {
    background: white;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-secondary);
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #f1f5f9;
    color: var(--text-primary);
}

.modal-body {
    padding: 20px;
}

.modal-image {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

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

.modal-info h4 {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

.modal-info p {
    margin: 0 0 15px 0;
    color: var(--text-secondary);
    line-height: 1.5;
}

.modal-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.original-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.current-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--success-main);
}

.modal-badge {
    margin-bottom: 20px;
}

.modal-footer {
    padding: 20px;
    border-top: 1px solid #e2e8f0;
}

.modal-add-btn {
    width: 100%;
    background: var(--primary-600);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.modal-add-btn:hover {
    background: var(--primary-700);
    transform: translateY(-1px);
}

/* Estilos para ícones Iconify - versão 1.0.8 */
iconify-icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: middle;
}

/* Estilo adicional para detail-icon */
.detail-icon {
    font-size: 14px;
    color: var(--primary-600);
}

.menu-title-icon iconify-icon {
    font-size: 20px;
    color: white;
}

/* Focus styles para acessibilidade */
.btn-add:focus,
.btn-details:focus,
.search-input:focus,
.search-submit:focus,
.category-item:focus {
    outline: 2px solid var(--primary-600);
    outline-offset: 2px;
}

/* =============================================
   FIXED FOOTER CART MENU - SOLUÇÃO DEFINITIVA
   ============================================= */

/* 🔧 CORREÇÃO: Começar completamente escondido */
.fixed-footer-cart {
    position: fixed;
    bottom: 20px; /* 🔧 POSIÇÃO FINAL CORRETA */
    left: 50%;
    width: 85%;
    max-width: 420px;
    background: linear-gradient(135deg, #6B46C1 0%, #9333EA 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 -4px 20px rgba(147, 51, 234, 0.3);
    z-index: -1; /* 🔧 ATRÁS DE TUDO */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 24px;
    border: 1px solid rgba(147, 51, 234, 0.2);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    /* 🔧 FORÇAR ESCONDIMENTO COMPLETO */
    transform: translateX(-50%) scale(0.8);
}

/* 🔧 CORREÇÃO: Estado visível sem mudar posição */
.fixed-footer-cart.visible {
    opacity: 1;
    transform: translateX(-50%) scale(1); /* 🔧 ESCALA NORMAL */
    visibility: visible;
    pointer-events: auto;
    z-index: 1000; /* 🔧 FRENTE DE TUDO */
}

.footer-cart-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px;
    width: 100%;
}

.cart-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-cart-icon {
    width: 20px !important;
    height: 20px !important;
    color: white;
    flex-shrink: 0;
}

.footer-cart-badge {
position: absolute;
    top: -4px;
    right: -4px;
    background: #ffffff;
    color: #6610f2;
    font-size: 9px;
    font-weight: 700;
    padding: 1px 4px;
    border-radius: 50%;
    min-width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.cart-total-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
}

.cart-total-amount {
    color: white;
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.view-cart-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.view-cart-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(147, 51, 234, 0.3);
    text-decoration: none;
    color: white;
}

.view-cart-btn:active {
    transform: translateY(0);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .fixed-footer-cart {
        bottom: 15px;
        width: 90%;
        max-width: 360px;
    }
    
    .footer-cart-content {
        padding: 6px 12px;
    }
    
    .cart-info {
        gap: 10px;
    }
    
    .footer-cart-icon {
        width: 18px !important;
        height: 18px !important;
    }
    
    .footer-cart-badge {
        font-size: 8px;
        min-width: 12px;
        height: 12px;
        top: -3px;
        right: -3px;
    }
    
    .cart-total-amount {
        font-size: 12px;
    }
    
    .view-cart-btn {
        padding: 5px 10px;
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .fixed-footer-cart {
        bottom: 12px;
        width: 95%;
        max-width: 320px;
    }
    
    .footer-cart-content {
        padding: 5px 10px;
    }
    
    .cart-info {
        gap: 8px;
    }
    
    .footer-cart-icon {
        width: 16px !important;
        height: 16px !important;
    }
    
    .footer-cart-badge {
        font-size: 7px;
        min-width: 11px;
        height: 11px;
        top: -2px;
        right: -2px;
    }
    
    .cart-total-amount {
        font-size: 11px;
    }
    
    .view-cart-btn {
        padding: 4px 8px;
        font-size: 9px;
    }
}

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

/* Estilos Swiper Hero Banner */
.hero-banner {
    position: relative;
    overflow: hidden;
}

.hero-swiper {
    width: 100%;
    height: 500px;
}

.hero-swiper .swiper-slide {
    overflow: hidden;
}

.hero-swiper .swiper-slide .hero-content {
    height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-swiper .swiper-slide .hero-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.3) 0%, 
        rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.hero-swiper .swiper-slide .hero-content > * {
    position: relative;
    z-index: 2;
}

.hero-swiper .swiper-pagination {
    bottom: 20px !important;
}

.hero-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.hero-swiper .swiper-pagination-bullet-active {
    background: #ffffff !important;
    transform: scale(1.2);
}

.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.3);
}

.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after {
    font-size: 20px;
    color: #ffffff;
}

.hero-swiper .swiper-button-next::after {
    content: '›';
}

.hero-swiper .swiper-button-prev::after {
    content: '‹';
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-swiper {
        height: 400px;
    }
    
    .hero-swiper .swiper-slide .hero-content {
        height: 400px;
        padding: 0 20px;
    }
    
    .hero-swiper .swiper-slide .hero-content h1 {
        font-size: 24px !important;
    }
    
    .hero-swiper .swiper-slide .hero-content p {
        font-size: 14px !important;
    }
    
    .hero-swiper .swiper-button-next,
    .hero-swiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero-swiper {
        height: 350px;
    }
    
    .hero-swiper .swiper-slide .hero-content {
        height: 350px;
        padding: 0 15px;
    }
    
    .hero-swiper .swiper-slide .hero-content h1 {
        font-size: 20px !important;
        margin-bottom: 8px !important;
    }
    
    .hero-swiper .swiper-slide .hero-content p {
        font-size: 13px !important;
        margin-bottom: 15px !important;
    }
    
    .hero-swiper .swiper-button-next,
    .hero-swiper .swiper-button-prev {
        width: 35px;
        height: 35px;
    }
    
    .hero-swiper .swiper-pagination {
        bottom: 15px !important;
    }
    
    .hero-swiper .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }
}

.fixed-footer-cart.visible {
 /*   animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);*/
}

/* Badge de Variações */
.badge-variacoes {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}
