/* ============================================
   Eri Lanches - Estilos Premium e Modernos
   Mobile First Design
   ============================================ */

/* ============================================
   Variáveis CSS - Light Mode (Padrão)
   ============================================ */
:root {
    /* Cores Principais */
    --color-primary: #ff6b35;
    --color-primary-dark: #e55a2b;
    --color-primary-light: #ff8a5c;
    --color-primary-glow: rgba(255, 107, 53, 0.4);
    
    /* Cores Secundárias */
    --color-secondary: #1a1a2e;
    --color-secondary-light: #16213e;
    --color-accent: #0f3460;
    
    /* Cores de Fundo - Light */
    --bg-primary: #faf8f5;
    --bg-secondary: #ffffff;
    --bg-card: #ffffff;
    --bg-input: #f5f5f5;
    --bg-dark: #0d0d0d;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, #ff6b35 0%, #ff8a5c 50%, #ffa07a 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    --gradient-hero: linear-gradient(135deg, #fff9f5 0%, #ffe8d6 50%, #ffdcc5 100%);
    
    /* Cores de Texto - Light */
    --text-primary: #1a1a2e;
    --text-secondary: #4a4a68;
    --text-muted: #8a8aa3;
    --text-light: #ffffff;
    --text-placeholder: #a0a0a0;
    
    /* Cores de Estados */
    --color-success: #00d9a5;
    --color-danger: #ff4757;
    --color-warning: #ffa502;
    
    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 60px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 25px 80px rgba(0, 0, 0, 0.18);
    --shadow-card-hover: 0 20px 60px rgba(255, 107, 53, 0.2);
    
    /* Bordas */
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-xl: 40px;
    --border-radius-full: 50%;
    
    /* Transições */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.92);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    
    /* Z-Index */
    --z-header: 1000;
    --z-sidebar: 1100;
    --z-overlay: 1050;
    --z-modal: 1200;
    --z-toast: 9999;
}

/* ============================================
   Dark Mode
   ============================================ */
[data-theme="dark"] {
    --bg-primary: #1a1512;
    --bg-secondary: #241e1a;
    --bg-card: #2a231e;
    --bg-input: #352d28;
    
    --text-primary: #f5f0eb;
    --text-secondary: #c4b8ad;
    --text-muted: #8a7e74;
    --text-placeholder: #5a524a;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 15px 60px rgba(0, 0, 0, 0.6);
    --shadow-card-hover: 0 20px 60px rgba(255, 107, 53, 0.25);
    
    --glass-bg: rgba(36, 30, 26, 0.95);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    
    --gradient-hero: linear-gradient(135deg, #1a1512 0%, #2a2018 50%, #1a1512 100%);
}

[data-theme="dark"] body::before {
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 138, 92, 0.05) 0%, transparent 50%);
}

/* ============================================
   Reset e Base
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
    transition: background 0.3s ease, color 0.3s ease;
}

/* Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 138, 92, 0.03) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff6b35' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: -1;
    transition: background-image 0.3s ease;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   Header Premium
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-header);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition-normal);
}

[data-theme="dark"] .header {
    background: rgba(13, 13, 13, 0.9);
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.3), transparent);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Theme Toggle */
.theme-toggle {
    width: 46px;
    height: 46px;
    border-radius: var(--border-radius-lg);
    background: var(--bg-input);
    color: var(--text-secondary);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
}

.theme-toggle:hover {
    background: var(--color-primary);
    color: var(--text-light);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.logo-icon {
    font-size: 2.2rem;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(255, 107, 53, 0.3));
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-8px) rotate(5deg); }
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.logo-text span {
    font-weight: 300;
}

/* Cart Button */
.cart-btn {
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: var(--border-radius-lg);
    background: var(--gradient-primary);
    color: var(--text-light);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

.cart-btn:hover {
    transform: scale(1.05);
}

.cart-btn:active {
    transform: scale(0.95);
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 24px;
    height: 24px;
    background: var(--color-danger);
    color: var(--text-light);
    border-radius: var(--border-radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    box-shadow: 0 2px 8px rgba(255, 71, 87, 0.5);
    transition: var(--transition-bounce);
}

.cart-count.hidden {
    opacity: 0;
    transform: scale(0);
}

/* ============================================
   Hero Section Premium
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 140px 24px 80px;
    background: var(--gradient-hero);
}

/* Background Elements */
.hero-bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
    filter: blur(60px);
}

.hero-circle-1 {
    width: 500px;
    height: 500px;
    background: var(--color-primary);
    top: -200px;
    right: -100px;
    opacity: 0.15;
    animation: floatCircle 20s ease-in-out infinite;
}

.hero-circle-2 {
    width: 400px;
    height: 400px;
    background: var(--color-primary-light);
    bottom: -150px;
    left: -100px;
    opacity: 0.12;
    animation: floatCircle 25s ease-in-out infinite reverse;
}

.hero-circle-3 {
    width: 300px;
    height: 300px;
    background: var(--color-primary);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.08;
    animation: pulse 10s ease-in-out infinite;
}

@keyframes floatCircle {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

/* Floating Food Emojis */
.hero-food {
    position: absolute;
    font-size: 3rem;
    animation: floatFood 6s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
    opacity: 0.6;
}

.hero-food-1 { top: 20%; left: 10%; animation-delay: 0s; font-size: 2.5rem; }
.hero-food-2 { top: 30%; right: 15%; animation-delay: 1s; }
.hero-food-3 { bottom: 30%; left: 8%; animation-delay: 2s; }
.hero-food-4 { bottom: 20%; right: 10%; animation-delay: 3s; font-size: 2rem; }

@keyframes floatFood {
    0%, 100% { transform: translateY(0) rotate(-10deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Hero Container */
.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Hero Content */
.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge-wrapper {
    margin-bottom: 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-xl);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.hero-badge-icon {
    font-size: 1.2rem;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.hero-title-line1 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: -0.5px;
}

.hero-title-line2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
}

.hero-title-accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title-accent2 {
    color: var(--text-primary);
    position: relative;
}

.hero-title-accent2::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--color-primary);
    opacity: 0.3;
    border-radius: 4px;
    z-index: -1;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 500px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-subtitle-icon {
    font-size: 1.4rem;
}

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: var(--gradient-primary);
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: var(--border-radius-xl);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
    transition: transform 0.2s ease;
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
}

.hero-btn-primary i {
    transition: transform 0.2s ease;
}

.hero-btn-primary:hover i {
    transform: translateX(4px);
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--border-radius-xl);
    border: 2px solid rgba(255, 107, 53, 0.2);
    transition: var(--transition-normal);
}

.hero-btn-secondary:hover {
    background: var(--color-primary);
    color: var(--text-light);
    border-color: var(--color-primary);
    transform: translateY(-4px);
}

.hero-btn-secondary i {
    font-size: 0.9rem;
}

/* Hero Features */
.hero-features {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--text-light);
    border-radius: var(--border-radius-md);
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.hero-feature-text {
    display: flex;
    flex-direction: column;
}

.hero-feature-title {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-feature-subtitle {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-out 0.3s backwards;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero-main-image {
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 
        0 30px 60px rgba(255, 107, 53, 0.3),
        0 0 0 20px rgba(255, 107, 53, 0.1);
}

.hero-main-image img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    animation: imageFloat 8s ease-in-out infinite;
}

@keyframes imageFloat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

.hero-image-glow {
    position: absolute;
    inset: -50%;
    background: var(--gradient-primary);
    filter: blur(80px);
    opacity: 0.3;
    z-index: -1;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.1); }
}

/* Floating Cards */
.hero-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    animation: floatCard 6s ease-in-out infinite;
}

.hero-floating-card-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.hero-floating-card-2 {
    bottom: 15%;
    left: -30px;
    animation-delay: 3s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero-floating-icon {
    font-size: 2rem;
}

.hero-floating-info {
    display: flex;
    flex-direction: column;
}

.hero-floating-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.hero-floating-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
}

/* Decorative Ring */
.hero-decorative-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    border: 2px dashed rgba(255, 107, 53, 0.2);
    border-radius: 50%;
    animation: rotateRing 30s linear infinite;
    pointer-events: none;
}

@keyframes rotateRing {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 100px;
}

/* Dark Mode - Hero */
[data-theme="dark"] .hero {
    background: linear-gradient(135deg, #1a1512 0%, #2a2018 50%, #1a1512 100%);
}

[data-theme="dark"] .hero-circle-1,
[data-theme="dark"] .hero-circle-2 {
    opacity: 0.3;
}

[data-theme="dark"] .hero-floating-card {
    background: rgba(36, 30, 26, 0.95);
}

/* Responsive Hero */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-content {
        order: 2;
    }
    
    .hero-visual {
        order: 1;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-title-line2 {
        font-size: clamp(2rem, 8vw, 3rem);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 16px 60px;
        min-height: auto;
    }
    
    .hero-food {
        display: none;
    }
    
    .hero-floating-card {
        display: none;
    }
    
    .hero-image-container {
        max-width: 320px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .hero-feature {
        gap: 12px;
    }
}

/* ============================================
   Menu Section
   ============================================ */
.menu {
    padding: 100px 0;
    position: relative;
}

.menu-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-primary);
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 16px auto 0;
}

/* Category Tabs */
.category-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    padding: 0 24px;
}

.tab-btn {
    padding: 14px 36px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--bg-card);
    border: 2px solid transparent;
    border-radius: var(--border-radius-xl);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.tab-btn:hover {
    color: var(--color-primary);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.tab-btn.active {
    color: var(--text-light);
    background: var(--gradient-primary);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

.tab-btn span {
    position: relative;
    z-index: 1;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 32px;
    padding: 0 24px;
    max-width: 1280px;
    margin: 0 auto;
}

/* Product Card */
.product-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: fadeInUp 0.6s ease-out backwards;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

[data-theme="dark"] .product-card {
    border-color: rgba(255, 255, 255, 0.05);
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.15s; }
.product-card:nth-child(3) { animation-delay: 0.2s; }
.product-card:nth-child(4) { animation-delay: 0.25s; }
.product-card:nth-child(5) { animation-delay: 0.3s; }
.product-card:nth-child(6) { animation-delay: 0.35s; }

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-card.hidden {
    display: none;
}

.product-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.product-card:hover .product-image img {
    transform: scale(1.12);
    filter: brightness(1.05);
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 18px;
    background: var(--gradient-primary);
    color: var(--text-light);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--border-radius-xl);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    z-index: 2;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(255, 107, 53, 0.6); }
}

.product-wishlist {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--text-muted);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    z-index: 2;
    opacity: 0;
    transform: translateX(10px);
}

.product-card:hover .product-wishlist {
    opacity: 1;
    transform: translateX(0);
}

.product-wishlist:hover {
    color: var(--color-danger);
    transform: scale(1.1);
}

.product-info {
    padding: 24px;
    position: relative;
    z-index: 2;
}

.product-category {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

.product-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.add-cart-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--gradient-primary);
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: var(--border-radius-lg);
    transition: transform 0.2s ease;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.add-cart-btn:hover {
    transform: scale(1.02);
}

.add-cart-btn:active {
    transform: scale(0.98);
}

/* ============================================
   Carrinho Lateral
   ============================================ */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: var(--z-overlay);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 450px;
    height: 100vh;
    background: var(--bg-secondary);
    z-index: var(--z-sidebar);
    transform: translateX(110%);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.15);
}

.cart-sidebar.active {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    background: var(--gradient-primary);
    color: var(--text-light);
}

.cart-header h2 {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.4rem;
    font-weight: 700;
}

.cart-header h2 i {
    font-size: 1.3rem;
}

.close-cart-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--border-radius-md);
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.close-cart-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Cart Items */
.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 24px 28px;
    background: var(--bg-primary);
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: var(--text-muted);
}

.cart-empty i {
    font-size: 5rem;
    margin-bottom: 20px;
    opacity: 0.2;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.cart-empty p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.cart-empty span {
    font-size: 0.95rem;
}

.cart-item {
    display: flex;
    gap: 16px;
    padding: 18px;
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    margin-bottom: 16px;
    animation: slideIn 0.4s ease-out;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

[data-theme="dark"] .cart-item {
    border-color: rgba(255, 255, 255, 0.05);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
}

.cart-item-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
    word-break: break-word;
}

.cart-item-options {
    display: block;
    font-size: 0.8rem;
    color: var(--color-primary);
    font-weight: 500;
    margin-bottom: 2px;
}

.cart-item-observation {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 4px;
}

.cart-item-observation i {
    margin-right: 4px;
}

.cart-item-price {
    font-size: 0.95rem;
    color: var(--color-primary);
    font-weight: 700;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-input);
    padding: 6px;
    border-radius: var(--border-radius-md);
}

.quantity-btn {
    width: 32px;
    height: 32px;
    border-radius: var(--border-radius-sm);
    background: var(--gradient-primary);
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
}

.quantity-btn:hover {
    transform: scale(1.1);
}

.quantity-btn:active {
    transform: scale(0.9);
}

.quantity-value {
    min-width: 28px;
    text-align: center;
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1rem;
}

.remove-item-btn {
    width: 36px;
    height: 36px;
    border-radius: var(--border-radius-sm);
    background: transparent;
    color: var(--text-muted);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .remove-item-btn {
    border-color: rgba(255, 255, 255, 0.1);
}

.remove-item-btn:hover {
    background: var(--color-danger);
    color: var(--text-light);
    border-color: var(--color-danger);
}

/* Cart Footer */
.cart-footer {
    padding: 28px;
    background: var(--bg-card);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .cart-footer {
    border-color: rgba(255, 255, 255, 0.05);
}

.cart-summary {
    margin-bottom: 16px;
}

.cart-subtotal, .cart-delivery {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.cart-delivery i {
    color: var(--color-primary);
    margin-right: 6px;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 2px dashed rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] .cart-total {
    border-color: rgba(255, 255, 255, 0.08);
}

.cart-total span:first-child {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.cart-total span:last-child {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.checkout-btn {
    width: 100%;
    padding: 18px;
    background: var(--gradient-primary);
    color: var(--text-light);
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: var(--transition-normal);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

.checkout-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}

.checkout-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    box-shadow: none;
}

.checkout-btn i {
    font-size: 1.3rem;
}

.delivery-info {
    text-align: center;
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.delivery-info i {
    color: var(--color-success);
}

/* ============================================
   Modal de Produto
   ============================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-secondary);
    border-radius: var(--border-radius-lg);
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalIn 0.3s ease-out;
    box-shadow: var(--shadow-xl);
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius-full);
    background: var(--bg-input);
    color: var(--text-secondary);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
    z-index: 10;
    box-shadow: var(--shadow-sm);
}

.modal-close:hover {
    background: var(--color-danger);
    color: var(--text-light);
}

.modal-product-info {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--bg-primary);
}

.modal-product-info img {
    width: 100px;
    height: 100px;
    border-radius: var(--border-radius-md);
    object-fit: cover;
}

.modal-product-details {
    flex: 1;
}

.modal-product-details h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.modal-product-details p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    line-height: 1.4;
}

.modal-product-price {
    font-size: 1.3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-options {
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .modal-options {
    border-color: rgba(255, 255, 255, 0.05);
}

.modal-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

/* Size Options */
.size-options {
    display: flex;
    gap: 10px;
}

.size-option {
    flex: 1;
    cursor: pointer;
}

.size-option input {
    display: none;
}

.size-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 14px 10px;
    background: var(--bg-input);
    border: 2px solid transparent;
    border-radius: var(--border-radius-md);
    transition: var(--transition-normal);
}

.size-option input:checked + .size-box {
    border-color: var(--color-primary);
    background: rgba(255, 107, 53, 0.1);
}

.size-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.size-price {
    font-size: 0.8rem;
    color: var(--color-primary);
    font-weight: 500;
}

/* Extra Options */
.extras-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.extra-option {
    cursor: pointer;
}

.extra-option input {
    display: none;
}

.extra-box {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: var(--bg-input);
    border: 2px solid transparent;
    border-radius: var(--border-radius-md);
    transition: var(--transition-normal);
}

.extra-option input:checked + .extra-box {
    border-color: var(--color-primary);
    background: rgba(255, 107, 53, 0.1);
}

.extra-box i {
    color: var(--color-primary);
    font-size: 0.9rem;
}

.extra-name {
    flex: 1;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
}

.extra-price {
    font-size: 0.8rem;
    color: var(--color-primary);
    font-weight: 600;
}

/* Observation */
.modal-observation {
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .modal-observation {
    border-color: rgba(255, 255, 255, 0.05);
}

.modal-observation textarea {
    width: 100%;
    height: 80px;
    padding: 14px;
    background: var(--bg-input);
    border: 2px solid transparent;
    border-radius: var(--border-radius-md);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.9rem;
    resize: none;
    transition: var(--transition-normal);
}

.modal-observation textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.modal-observation textarea::placeholder {
    color: var(--text-placeholder);
}

/* Modal Actions */
.modal-actions {
    display: flex;
    gap: 16px;
    padding: 20px;
    align-items: center;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-input);
    padding: 8px;
    border-radius: var(--border-radius-md);
}

.qty-btn {
    width: 36px;
    height: 36px;
    border-radius: var(--border-radius-sm);
    background: var(--gradient-primary);
    color: var(--text-light);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.qty-btn:hover {
    transform: scale(1.1);
}

.qty-btn:active {
    transform: scale(0.9);
}

#qtyValue {
    min-width: 30px;
    text-align: center;
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.modal-add-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    background: var(--gradient-primary);
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--border-radius-md);
    transition: var(--transition-normal);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

.modal-add-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

/* ============================================
   Toast
   ============================================ */
.toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(120px);
    background: var(--gradient-primary);
    color: var(--text-light);
    padding: 16px 32px;
    border-radius: var(--border-radius-xl);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.4);
    z-index: var(--z-toast);
    opacity: 0;
    transition: var(--transition-bounce);
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast i {
    font-size: 1.3rem;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--gradient-dark);
    background: linear-gradient(135deg, #1a1512 0%, #2a231e 50%, #1a1512 100%);
    color: var(--text-light);
    padding: 80px 24px 30px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    font-size: 3rem;
}

.footer-logo .logo-text {
    font-size: 2rem;
    color: var(--text-light);
}

.footer-logo .logo-text span {
    font-weight: 300;
}

.footer-text {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-bottom: 30px;
    font-weight: 500;
}

.footer-contact {
    margin-bottom: 30px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 12px;
}

.footer-contact p i {
    color: var(--color-primary-light);
    width: 20px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.social-link {
    width: 56px;
    height: 56px;
    border-radius: var(--border-radius-full);
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: var(--gradient-primary);
    transform: translateY(-5px) scale(1.1);
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.footer-copyright {
    font-size: 0.9rem;
    opacity: 0.5;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============================================
   Responsividade Mobile
   ============================================ */
@media (max-width: 768px) {
    /* Header */
    .header-container {
        padding: 10px 12px;
    }
    
    .logo {
        gap: 6px;
    }
    
    .logo-icon {
        font-size: 1.6rem;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .header-actions {
        gap: 8px;
    }
    
    .theme-toggle {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    
    .cart-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    /* Hero Section - Mobile */
    .hero {
        padding: 80px 16px 40px;
        min-height: auto;
        display: block;
    }
    
    .hero-bg-elements {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-badge-wrapper {
        margin-bottom: 16px;
    }
    
    .hero-badge {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .hero-title {
        margin-bottom: 16px;
    }
    
    .hero-title-line1 {
        font-size: 1.2rem;
    }
    
    .hero-title-line2 {
        font-size: 1.8rem;
        letter-spacing: -1px;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 30px;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .hero-features {
        justify-content: center;
        gap: 20px;
    }
    
    .hero-feature {
        gap: 10px;
    }
    
    .hero-feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .hero-feature-title {
        font-size: 0.75rem;
    }
    
    .hero-feature-subtitle {
        font-size: 0.95rem;
    }
    
    /* Hero Visual */
    .hero-visual {
        order: -1;
        margin-bottom: 10px;
    }
    
    .hero-image-container {
        max-width: 240px;
        margin: 0 auto;
    }
    
    .hero-floating-card {
        display: none;
    }
    
    .hero-decorative-ring {
        display: none;
    }
    
    .hero-wave {
        display: none;
    }
    
    /* Menu Section */
    .menu {
        padding: 50px 0;
    }
    
    .menu-header {
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        margin-top: 12px;
    }
    
    /* Category Tabs */
    .category-tabs {
        gap: 8px;
        margin-bottom: 24px;
    }
    
    .tab-btn {
        padding: 10px 18px;
        font-size: 0.8rem;
    }
    
    /* Products Grid - 2 columns */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0 10px;
    }
    
    /* Product Card */
    .product-card {
        border-radius: 12px;
    }
    
    .product-image {
        height: 100px;
    }
    
    .product-badge {
        padding: 3px 6px;
        font-size: 0.55rem;
        top: 6px;
        left: 6px;
    }
    
    .product-wishlist {
        display: none;
    }
    
    .product-info {
        padding: 8px;
    }
    
    .product-category {
        font-size: 0.6rem;
        margin-bottom: 2px;
    }
    
    .product-name {
        font-size: 0.8rem;
        margin-bottom: 2px;
    }
    
    .product-description {
        display: none;
    }
    
    .product-footer {
        flex-direction: column;
        gap: 6px;
        align-items: stretch;
    }
    
    .product-price {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .add-cart-btn {
        padding: 6px 10px;
        font-size: 0.7rem;
        justify-content: center;
        border-radius: 8px;
    }
    
    /* Footer */
    .footer {
        padding: 40px 16px 24px;
        margin-top: 40px;
    }
    
    .footer-logo .logo-icon {
        font-size: 2rem;
    }
    
    .footer-logo .logo-text {
        font-size: 1.5rem;
    }
    
    .footer-text {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .footer-contact {
        padding: 16px;
    }
    
    .footer-contact p {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
    
    .footer-social {
        gap: 12px;
        margin-bottom: 24px;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
    
    .footer-copyright {
        font-size: 0.8rem;
    }
    
    /* Modal */
    .modal-overlay {
        padding: 10px;
    }
    
    .modal-content {
        max-height: 95vh;
    }
    
    .modal-close {
        top: 10px;
        right: 10px;
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .modal-product-info {
        padding: 12px;
    }
    
    .modal-product-info img {
        width: 80px;
        height: 80px;
    }
    
    .modal-product-details h3 {
        font-size: 1rem;
    }
    
    .modal-product-details p {
        font-size: 0.8rem;
    }
    
    .modal-product-price {
        font-size: 1.1rem;
    }
    
    .modal-options,
    .modal-observation {
        padding: 12px;
    }
    
    .modal-label {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
    
    .size-options,
    .extras-options {
        gap: 8px;
    }
    
    .size-box,
    .extra-box {
        padding: 10px 8px;
    }
    
    .size-name,
    .extra-name {
        font-size: 0.75rem;
    }
    
    .size-price,
    .extra-price {
        font-size: 0.7rem;
    }
    
    .modal-observation textarea {
        padding: 10px;
        font-size: 0.85rem;
        height: 60px;
    }
    
    .modal-actions {
        padding: 12px;
        gap: 10px;
    }
    
    .quantity-selector {
        padding: 6px;
    }
    
    .qty-btn {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    #qtyValue {
        font-size: 1rem;
    }
    
    .modal-add-btn {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    /* Cart Sidebar */
    .cart-sidebar {
        max-width: 100%;
    }
    
    .cart-header {
        padding: 16px 20px;
    }
    
    .cart-header h2 {
        font-size: 1.2rem;
        gap: 10px;
    }
    
    .close-cart-btn {
        width: 36px;
        height: 36px;
    }
    
    .cart-items {
        padding: 16px 20px;
    }
    
    .cart-item {
        padding: 12px;
        gap: 12px;
    }
    
    .cart-item-image {
        width: 60px;
        height: 60px;
    }
    
    .cart-item-name {
        font-size: 0.9rem;
    }
    
    .cart-item-price {
        font-size: 0.85rem;
    }
    
    .cart-item-actions {
        gap: 8px;
    }
    
    .quantity-controls {
        padding: 4px;
    }
    
    .quantity-btn {
        width: 28px;
        height: 28px;
    }
    
    .quantity-value {
        font-size: 0.9rem;
    }
    
    .remove-item-btn {
        width: 32px;
        height: 32px;
    }
    
    .cart-footer {
        padding: 16px 20px;
    }
    
    .cart-total span:first-child {
        font-size: 1rem;
    }
    
    .cart-total span:last-child {
        font-size: 1.4rem;
    }
    
    .checkout-btn {
        padding: 14px;
        font-size: 1rem;
    }
    
    .delivery-info {
        font-size: 0.8rem;
        margin-top: 12px;
    }
    
    /* Toast */
    .toast {
        bottom: 20px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1025px) and (max-width: 1280px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1281px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

/* ============================================
   Opções de Entrega e Pagamento no Modal
   ============================================ */
.delivery-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 8px;
}

.delivery-option {
    cursor: pointer;
}

.delivery-option input {
    display: none;
}

.delivery-box {
    display: block;
    padding: 12px 14px;
    background: var(--bg-input);
    border: 2px solid transparent;
    border-radius: var(--border-radius-md);
    font-size: 0.85rem;
    color: var(--text-primary);
    transition: all 0.2s ease;
    text-align: center;
}

.delivery-box strong {
    color: var(--color-primary);
}

.delivery-option input:checked + .delivery-box {
    border-color: var(--color-primary);
    background: rgba(255, 107, 53, 0.1);
    color: var(--color-primary);
}

.delivery-option:hover .delivery-box {
    border-color: var(--color-primary-light);
    transform: translateY(-2px);
}

.payment-options {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.payment-option {
    flex: 1;
    cursor: pointer;
}

.payment-option input {
    display: none;
}

.payment-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    background: var(--bg-input);
    border: 2px solid transparent;
    border-radius: var(--border-radius-md);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: all 0.2s ease;
}

.payment-box i {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.payment-option input:checked + .payment-box {
    border-color: var(--color-primary);
    background: rgba(255, 107, 53, 0.1);
    color: var(--color-primary);
}

.payment-option input:checked + .payment-box i {
    color: var(--color-primary);
}

.payment-option:hover .payment-box {
    border-color: var(--color-primary-light);
    transform: translateY(-2px);
}

/* Responsividade para opções de entrega */
@media (max-width: 480px) {
    .delivery-options {
        grid-template-columns: 1fr;
    }
    
    .payment-options {
        flex-direction: column;
    }
}

/* ============================================
   Toggle Metade-Metade
   ============================================ */
.halfhalf-toggle {
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    margin-top: 10px;
    padding: 14px 18px;
    background: var(--bg-input);
    border-radius: var(--border-radius-md);
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.halfhalf-toggle:hover {
    border-color: var(--color-primary-light);
}

.halfhalf-toggle input {
    display: none;
}

.halfhalf-switch {
    position: relative;
    width: 50px;
    height: 28px;
    background: var(--text-muted);
    border-radius: 20px;
    transition: 0.3s;
    flex-shrink: 0;
}

.halfhalf-slider {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    background: white;
    border-radius: 50%;
    transition: 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.halfhalf-toggle input:checked + .halfhalf-switch {
    background: var(--color-primary);
}

.halfhalf-toggle input:checked + .halfhalf-switch .halfhalf-slider {
    transform: translateX(22px);
}

.halfhalf-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
}

.halfhalf-flavors {
    margin-top: 14px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.halfhalf-select select:disabled {
    background: rgba(255, 107, 53, 0.1);
    border-color: var(--color-primary);
    color: var(--color-primary);
    font-weight: 600;
    cursor: not-allowed;
}

.halfhalf-select label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 6px;
    font-weight: 500;
}

.halfhalf-select select:disabled + label::after {
    content: ' (sabor selecionado)';
    font-size: 0.7rem;
    color: var(--color-primary);
}

.halfhalf-select select {
    width: 100%;
    padding: 12px 14px;
    background: var(--bg-input);
    border: 2px solid var(--glass-border);
    border-radius: var(--border-radius-md);
    color: var(--text-primary);
    font-size: 0.9rem;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.halfhalf-select select:focus {
    outline: none;
    border-color: var(--color-primary);
}

@media (max-width: 480px) {
    .halfhalf-flavors {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Opções de Borda
   ============================================ */
.border-options {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.border-option {
    flex: 1;
    cursor: pointer;
}

.border-option input {
    display: none;
}

.border-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 14px;
    background: var(--bg-input);
    border: 2px solid transparent;
    border-radius: var(--border-radius-md);
    font-size: 0.85rem;
    color: var(--text-primary);
    transition: all 0.2s ease;
}

.border-box i {
    color: var(--text-muted);
}

.border-option input:checked + .border-box {
    border-color: var(--color-primary);
    background: rgba(255, 107, 53, 0.1);
    color: var(--color-primary);
}

.border-option input:checked + .border-box i {
    color: var(--color-primary);
}

.border-option:hover .border-box {
    border-color: var(--color-primary-light);
    transform: translateY(-2px);
}

/* ============================================
   Opções de Refrigerante (Kits)
   ============================================ */
.soda-options {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.soda-option {
    flex: 1;
    cursor: pointer;
}

.soda-option input {
    display: none;
}

.soda-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 14px;
    background: var(--bg-input);
    border: 2px solid transparent;
    border-radius: var(--border-radius-md);
    font-size: 0.85rem;
    color: var(--text-primary);
    transition: all 0.2s ease;
}

.soda-option input:checked + .soda-box {
    border-color: var(--color-primary);
    background: rgba(255, 107, 53, 0.1);
    color: var(--color-primary);
}

.soda-option:hover .soda-box {
    border-color: var(--color-primary-light);
    transform: translateY(-2px);
}

/* ============================================
   Select para Kit Pizza
   ============================================ */
.kit-select {
    width: 100%;
    padding: 12px 16px;
    margin-top: 8px;
    background: var(--bg-input);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-md);
    color: var(--text-primary);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.kit-select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

/* ============================================
   Estilo para item de refrigerante no carrinho
   ============================================ */
.cart-item-soda {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 4px 0;
    font-weight: 500;
}

/* ============================================
   Modal de Checkout
   ============================================ */
.checkout-modal {
    max-width: 600px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 30px;
    border-radius: var(--border-radius-lg);
}

.checkout-title {
    text-align: center;
    color: var(--color-primary);
    margin-bottom: 24px;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.checkout-title i {
    font-size: 1.4rem;
}

.checkout-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.checkout-form .form-group:first-child {
    grid-column: 1 / -1;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group label i {
    color: var(--color-primary);
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    padding: 14px 16px;
    background: var(--bg-input);
    border: 2px solid var(--glass-border);
    border-radius: var(--border-radius-md);
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.2s ease;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group input::placeholder {
    color: var(--text-placeholder);
}

.checkout-summary {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(255, 107, 53, 0.03) 100%);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--border-radius-md);
    padding: 20px;
    margin-bottom: 20px;
}

.checkout-summary h3 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkout-summary h3::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 16px;
    background: var(--color-primary);
    border-radius: 2px;
}

#checkoutItems {
    max-height: 150px;
    overflow-y: auto;
    margin-bottom: 16px;
    padding-right: 8px;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid var(--glass-border);
    font-size: 0.9rem;
}

.checkout-item:last-child {
    border-bottom: none;
}

.checkout-item-name {
    color: var(--text-primary);
    font-weight: 500;
    flex: 1;
    line-height: 1.4;
}

.checkout-item-price {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
    margin-left: 16px;
}

.checkout-totals {
    border-top: 2px solid rgba(255, 107, 53, 0.2);
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkout-subtotal,
.checkout-delivery {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.checkout-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-primary);
    padding-top: 12px;
    margin-top: 4px;
    border-top: 2px solid var(--color-primary);
}

.checkout-confirm-btn {
    width: 100%;
    padding: 18px 28px;
    background: var(--gradient-primary);
    color: var(--text-light);
    border: none;
    border-radius: var(--border-radius-md);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.checkout-confirm-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

.checkout-confirm-btn:active {
    transform: translateY(-1px);
}

.checkout-confirm-btn i {
    font-size: 1.3rem;
}

/* Responsive */
@media (max-width: 768px) {
    .checkout-modal {
        padding: 24px 20px;
        border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
        max-height: 95vh;
        align-self: flex-end;
    }
    
    .checkout-form {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .checkout-title {
        font-size: 1.4rem;
    }
    
    .checkout-summary {
        padding: 16px;
    }
    
    .checkout-total {
        font-size: 1.3rem;
    }
    
    .checkout-confirm-btn {
        padding: 16px 24px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .checkout-modal {
        width: 100%;
        max-height: 92vh;
        padding: 20px 16px;
        border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    }
    
    .form-group input,
    .form-group select {
        padding: 12px 14px;
        font-size: 0.9rem;
    }
    
    .checkout-title {
        font-size: 1.25rem;
        margin-bottom: 20px;
    }
    
    .checkout-item {
        font-size: 0.85rem;
    }
    
    .checkout-item-price {
        font-size: 0.9rem;
    }
}
