/* ========================================
   HAMBURGUERIA - PREMIUM STYLES
   ======================================== */

/* CSS Variables */
:root {
    --primary: #ffa207;
    --primary-dark: #cc8206;
    --primary-darker: #995f04;

    --secondary: #264653;
    --accent: #ff6b00;

    --dark: #0d1117;
    --dark-card: #161b22;
    --dark-lighter: #21262d;

    --text: #e6edf3;
    --text-muted: #8b949e;
    --border: #30363d;

    --success: #3fb950;
    --warning: #d29922;
    --danger: #f85149;

    /* 🎯 Gradientes atualizados para o novo primary */
    --gradient-primary: linear-gradient(135deg, #ffa207 0%, #cc8206 100%);
    --gradient-accent: linear-gradient(135deg, #ffb733 0%, #ff6b00 100%);
    --gradient-dark: linear-gradient(180deg, #0d1117 0%, #161b22 100%);

    /* 🔥 Glow quente (efeito hamburgueria premium) */
    --gradient-glow: radial-gradient(circle at center,
            rgba(255, 162, 7, 0.18) 0%,
            transparent 70%);

    /* 🌑 Sombras */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.5);

    /* Glow laranja */
    --shadow-glow: 0 0 60px rgba(255, 162, 7, 0.35);

    /* 🟧 Bordas arredondadas modernas */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* 🔤 Tipografia */
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Poppins', sans-serif;

    /* ⏱️ Animações */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}


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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Selection */
::selection {
    background: var(--primary);
    color: var(--dark);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ========================================
   PRELOADER
   ======================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.burger-loader {
    width: 60px;
    height: 80px;
    margin: 0 auto 20px;
    position: relative;
}

.burger-loader div {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 30px;
    animation: burgerStack 1.5s ease-in-out infinite;
}

.bun-top {
    width: 50px;
    height: 20px;
    background: linear-gradient(180deg, #d4a373 0%, #bc8a5f 100%);
    top: 0;
    border-radius: 25px 25px 5px 5px;
    animation-delay: 0s;
}

.lettuce {
    width: 55px;
    height: 8px;
    background: #4a7c59;
    top: 18px;
    animation-delay: 0.1s;
}

.cheese {
    width: 52px;
    height: 6px;
    background: #ffc857;
    top: 25px;
    animation-delay: 0.2s;
}

.patty {
    width: 48px;
    height: 15px;
    background: linear-gradient(180deg, #6b3a0f 0%, #4a2511 100%);
    top: 30px;
    animation-delay: 0.3s;
}

.tomato {
    width: 45px;
    height: 8px;
    background: #e63946;
    top: 44px;
    animation-delay: 0.4s;
}

.bun-bottom {
    width: 50px;
    height: 15px;
    background: linear-gradient(180deg, #bc8a5f 0%, #a67c52 100%);
    top: 51px;
    border-radius: 5px 5px 20px 20px;
    animation-delay: 0.5s;
}

@keyframes burgerStack {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.loader-text {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 4px;
    color: var(--primary);
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
    padding: 15px 0;
    background: transparent;
    transition: all var(--transition-normal);
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    padding: 10px 0;
}

.navbar-brand {
    display: flex;
    align-items: baseline;
    gap: 2px;
    text-decoration: none;
}

.brand-jm {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--primary);
    letter-spacing: 2px;
}

.brand-burger {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text);
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    color: var(--text-muted);
    font-weight: 500;
    padding: 8px 20px !important;
    position: relative;
    transition: color var(--transition-fast);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transform: translateX(-50%);
    transition: width var(--transition-normal);
}

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

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 30px;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-nav {
    border-color: var(--primary) !important;
    color: var(--primary) !important;
    padding: 8px 24px !important;
    border-radius: var(--radius-sm) !important;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.btn-nav:hover {
    background: var(--primary) !important;
    color: var(--dark) !important;
}

.btn-cart {
    position: relative;
    background: var(--primary) !important;
    color: var(--dark) !important;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all var(--transition-fast);
}

.btn-cart:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.btn-cart.active {
    background: var(--accent) !important;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-toggler {
    border-color: var(--primary);
    padding: 8px 12px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28212, 163, 115, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    transition: transform 0.3s ease-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    right: -100px;
    opacity: 0.15;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    bottom: 10%;
    left: -50px;
    opacity: 0.1;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--secondary);
    top: 40%;
    right: 30%;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 163, 115, 0.15);
    border: 1px solid rgba(212, 163, 115, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease;
}

.badge-star {
    color: var(--warning);
}

.hero-title {
    margin-bottom: 24px;
}

.title-line {
    display: block;
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.title-main {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(4rem, 12vw, 8rem);
    line-height: 0.9;
    color: var(--primary);
    letter-spacing: 4px;
    text-transform: uppercase;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 480px;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease 0.3s both;
}

/* Search Bar */
.hero-search {
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.search-wrapper {
    display: flex;
    align-items: center;
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 8px;
    max-width: 500px;
    transition: all var(--transition-normal);
}

.search-wrapper:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(212, 163, 115, 0.1);
}

.search-icon {
    padding: 0 16px;
    color: var(--text-muted);
    font-size: 1.2rem;
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text);
    font-size: 1rem;
    padding: 12px 0;
    outline: none;
}

.search-input::placeholder {
    color: var(--text-muted);
}

.btn-search {
    background: var(--primary);
    color: var(--dark);
    border: none;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-search:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary) !important;
    color: var(--dark) !important;
    border: none !important;
    padding: 16px 32px !important;
    border-radius: var(--radius-md) !important;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-hero i {
    transition: transform var(--transition-fast);
}

.btn-hero:hover i {
    transform: translateX(5px);
}

.btn-outline-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent !important;
    color: var(--text) !important;
    border: 1px solid var(--border) !important;
    padding: 16px 28px !important;
    border-radius: var(--radius-md) !important;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.btn-outline-hero:hover {
    border-color: var(--primary) !important;
    color: var(--primary) !important;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--primary);
    letter-spacing: 2px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.hero-circle {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: var(--gradient-glow);
    animation: pulse 3s ease-in-out infinite;
}

.hero-burger {
    position: relative;
    animation: float 4s ease-in-out infinite;
}

.burger-main {
    width: 100%;
    max-width: 500px;
    border-radius: 50%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    animation: heroImageFloat 6s ease-in-out infinite;
}

.burger-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(212, 163, 115, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: glowPulse 2s ease-in-out infinite;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.float-item {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    box-shadow: var(--shadow-md);
}

.float-1 {
    top: 10%;
    right: 0;
    animation: floatElement 3s ease-in-out infinite;
}

.float-2 {
    bottom: 20%;
    left: 0;
    animation: floatElement 3s ease-in-out infinite 0.5s;
}

.float-3 {
    top: 50%;
    right: -5%;
    animation: floatElement 3s ease-in-out infinite 1s;
    color: var(--accent);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: fadeInUp 0.8s ease 1s both;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 15px;
    margin: 0 auto 10px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s ease-in-out infinite;
}

.scroll-indicator span {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes heroImageFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-10px) rotate(1deg);
    }

    75% {
        transform: translateY(-5px) rotate(-1deg);
    }
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes floatElement {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.7;
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features-section {
    padding: 80px 0;
    background: var(--dark-card);
    margin-top: -50px;
    position: relative;
    z-index: 5;
}

.feature-card {
    background: var(--dark-lighter);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: all var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    color: var(--dark);
    transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
    color: var(--text);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ========================================
   SECTION STYLES
   ======================================== */
.section-header {
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(212, 163, 115, 0.15);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--text);
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* ========================================
   DESTAQUES / PRODUCTS
   ======================================== */
.destaques-section {
    padding: 100px 0;
    background: var(--dark);
}

.product-card {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
    opacity: 0;
    transform: translateY(30px);
}

.product-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.product-card.featured {
    border-color: var(--primary);
}

.product-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(212, 163, 115, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: var(--dark);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.product-badge.hot {
    background: var(--accent);
    color: white;
}

.product-badge.new {
    background: var(--success);
    color: white;
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 17, 23, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.btn-quick-view {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--dark);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transform: scale(0);
    transition: all var(--transition-normal);
}

.product-card:hover .btn-quick-view {
    transform: scale(1);
}

.btn-quick-view:hover {
    transform: scale(1.1);
}

.product-content {
    padding: 24px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
    color: var(--warning);
    font-size: 0.85rem;
}

.product-rating span {
    color: var(--text-muted);
    margin-left: 4px;
}

.product-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--text);
}

.product-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--primary);
    letter-spacing: 1px;
}

.btn-add-cart {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--dark);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-add-cart:hover {
    transform: scale(1.1);
    background: var(--primary-dark);
}

.btn-view-all {
    background: var(--primary) !important;
    color: var(--dark) !important;
    border: none !important;
    padding: 16px 40px !important;
    border-radius: var(--radius-md) !important;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-fast);
}

.btn-view-all:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

/* ========================================
   SOBRE SECTION
   ======================================== */
.sobre-section {
    padding: 100px 0;
    background: var(--dark-card);
}

.sobre-images {
    position: relative;
    padding: 40px;
}

.image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-main img {
    width: 100%;
    height: auto;
}

.image-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 4px solid var(--dark-card);
    box-shadow: var(--shadow-md);
}

.experience-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary);
    color: var(--dark);
    padding: 24px 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.exp-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    line-height: 1;
}

.exp-text {
    font-size: 0.85rem;
    font-weight: 600;
}

.sobre-content {
    padding-left: 40px;
}

.sobre-text {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

.sobre-features {
    margin: 32px 0;
}

.sobre-feature {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.sf-icon {
    color: var(--success);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.sf-text h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.sf-text p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.btn-sobre {
    background: var(--primary) !important;
    color: var(--dark) !important;
    border: none !important;
    padding: 14px 32px !important;
    border-radius: var(--radius-md) !important;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-fast);
}

.btn-sobre:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

/* ========================================
   PROMO SECTION
   ======================================== */
.promo-section {
    padding: 80px 0;
    background: var(--dark);
}

.promo-card {
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.promo-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.promo-tag {
    display: inline-block;
    background: rgba(0, 0, 0, 0.2);
    color: var(--dark);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.promo-title {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--dark);
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.promo-text {
    color: rgba(0, 0, 0, 0.7);
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.promo-price {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.price-old {
    font-size: 1.2rem;
    color: rgba(0, 0, 0, 0.5);
    text-decoration: line-through;
}

.price-new {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--dark);
    letter-spacing: 2px;
}

.promo-countdown {
    display: flex;
    gap: 16px;
}

.countdown-item {
    text-align: center;
}

.countdown-number {
    display: block;
    width: 60px;
    height: 60px;
    background: var(--dark);
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 2rem;
    line-height: 60px;
    border-radius: var(--radius-sm);
}

.countdown-label {
    font-size: 0.75rem;
    color: var(--dark);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-image img {
    max-width: 250px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin-bottom: 20px;
}

.btn-promo {
    background: var(--dark) !important;
    color: var(--primary) !important;
    border: none !important;
    padding: 14px 28px !important;
    border-radius: var(--radius-md) !important;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ========================================
   INFO SECTION
   ======================================== */
.info-section {
    padding: 100px 0;
    background: var(--dark-card);
}

.info-card {
    background: var(--dark-lighter);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    transition: all var(--transition-normal);
}

.info-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.info-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--dark);
}

.info-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.info-card p {
    color: var(--text-muted);
    margin: 0;
}

.map-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--dark);
}

.footer-top {
    padding: 80px 0 40px;
    border-bottom: 1px solid var(--border);
}

.footer-logo {
    display: flex;
    align-items: baseline;
    gap: 2px;
    text-decoration: none;
    margin-bottom: 20px;
}

.footer-desc {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: var(--dark-lighter);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-size: 1.1rem;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 24px;
    color: var(--text);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

.footer-newsletter p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    background: var(--dark-lighter);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: var(--text);
    outline: none;
}

.newsletter-form input:focus {
    border-color: var(--primary);
}

.newsletter-form button {
    background: var(--primary);
    color: var(--dark);
    border: none;
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}

.footer-bottom {
    padding: 24px 0;
}

.footer-bottom p {
    color: var(--text-muted);
    margin: 0;
}

.payment-methods {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
}

.payment-methods i {
    font-size: 1.5rem;
    color: var(--text-muted);
}

/* ========================================
   PAGE HEADER (Cardapio, Carrinho)
   ======================================== */
.page-header {
    padding: 160px 0 80px;
    background: var(--gradient-dark);
    position: relative;
}

.page-tag {
    display: inline-block;
    background: rgba(212, 163, 115, 0.15);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--text);
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.page-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.page-search .search-wrapper {
    max-width: 400px;
}

/* ========================================
   MENU SECTION
   ======================================== */
.menu-section {
    padding: 60px 0 100px;
    background: var(--dark);
}

.category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 50px;
}

.category-tab {
    background: var(--dark-card);
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.category-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--dark);
}

.menu-item {
    transition: all var(--transition-normal);
}

/* ========================================
   AUTH PAGES (Login/Cadastro)
   ======================================== */
.auth-page {
    background: var(--dark);
    min-height: 100vh;
}

.auth-container {
    display: flex;
    min-height: 100vh;
}

.auth-left {
    flex: 1;
    background: linear-gradient(135deg, var(--dark-card) 0%, var(--dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.auth-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(212, 163, 115, 0.1) 0%, transparent 50%);
}

.auth-content {
    position: relative;
    z-index: 2;
    max-width: 400px;
}

.auth-logo {
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
    text-decoration: none;
    margin-bottom: 32px;
}

.auth-welcome {
    font-family: var(--font-display);
    font-size: 2.5rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.auth-text {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.auth-features {
    margin-bottom: 40px;
}

.auth-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-muted);
}

.auth-feature i {
    color: var(--success);
    font-size: 1.2rem;
}

.auth-burger-image {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto;
}

.auth-burger-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
}

.auth-burger-image .burger-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 163, 115, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(30px);
}

.auth-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: var(--dark);
}

.auth-form-container {
    width: 100%;
    max-width: 440px;
}

.form-header {
    margin-bottom: 32px;
}

.form-header h1 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.form-header p {
    color: var(--text-muted);
}

.auth-form .form-group {
    margin-bottom: 24px;
}

.auth-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text);
}

.input-wrapper {
    display: flex;
    align-items: center;
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0 16px;
    transition: all var(--transition-fast);
}

.input-wrapper.focused,
.input-wrapper:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(212, 163, 115, 0.1);
}

.input-wrapper i {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.input-wrapper input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 14px 12px;
    color: var(--text);
    font-size: 1rem;
    outline: none;
}

.input-wrapper input::placeholder {
    color: var(--text-muted);
}

.toggle-password {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.checkbox-wrapper input {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.checkbox-wrapper input:checked+.checkmark {
    background: var(--primary);
    border-color: var(--primary);
}

.checkbox-wrapper input:checked+.checkmark::after {
    content: '✓';
    color: var(--dark);
    font-size: 0.8rem;
    font-weight: bold;
}

.forgot-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
}

.forgot-link:hover {
    text-decoration: underline;
}

.btn-auth {
    width: 100%;
    background: var(--primary) !important;
    color: var(--dark) !important;
    border: none !important;
    padding: 16px !important;
    border-radius: var(--radius-md) !important;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all var(--transition-fast);
}

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

.btn-auth:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.divider {
    text-align: center;
    margin: 32px 0;
    position: relative;
}

.divider::before,
.divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background: var(--border);
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

.divider span {
    background: var(--dark);
    padding: 0 16px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.social-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.btn-social {
    background: var(--dark-card) !important;
    border: 1px solid var(--border) !important;
    color: var(--text) !important;
    padding: 12px !important;
    border-radius: var(--radius-md) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.btn-social:hover {
    border-color: var(--primary) !important;
}

.auth-switch {
    text-align: center;
    margin-top: 32px;
    color: var(--text-muted);
}

.auth-switch a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.auth-switch a:hover {
    text-decoration: underline;
}

.password-strength {
    margin-top: 8px;
}

.strength-bar {
    height: 4px;
    background: var(--dark-lighter);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 4px;
}

.strength-bar span {
    display: block;
    height: 100%;
    transition: all var(--transition-normal);
}

.strength-text {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ========================================
   CART PAGE
   ======================================== */
.cart-section {
    padding: 60px 0 100px;
    background: var(--dark);
    min-height: 60vh;
}

.cart-items-container {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    border-bottom: 1px solid var(--border);
    transition: all var(--transition-fast);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item:hover {
    background: var(--dark-lighter);
}

.item-image {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
}

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

.item-details {
    flex: 1;
}

.item-details h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.item-price {
    color: var(--primary);
    font-weight: 600;
}

.item-quantity {
    display: flex;
    align-items: center;
    gap: 12px;
}

.qty-btn {
    width: 36px;
    height: 36px;
    background: var(--dark-lighter);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.qty-btn:hover {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
}

.qty-value {
    font-weight: 600;
    font-size: 1.1rem;
    min-width: 30px;
    text-align: center;
}

.item-total {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--primary);
    letter-spacing: 1px;
    min-width: 100px;
    text-align: right;
}

.item-remove {
    background: none;
    border: none;
    color: var(--danger);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
    transition: all var(--transition-fast);
}

.item-remove:hover {
    transform: scale(1.2);
}

.empty-cart {
    text-align: center;
    padding: 80px 40px;
}

.empty-cart-icon {
    font-size: 4rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.empty-cart h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.empty-cart p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.order-summary {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: sticky;
    top: 100px;
}

.summary-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    color: var(--text-muted);
}

.summary-row.discount {
    color: var(--success);
}

.promo-code {
    margin: 20px 0;
}

.promo-input-wrapper {
    display: flex;
    gap: 8px;
}

.promo-input-wrapper input {
    flex: 1;
    background: var(--dark-lighter);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px;
    color: var(--text);
    outline: none;
}

.promo-input-wrapper input:focus {
    border-color: var(--primary);
}

.btn-promo-apply {
    background: var(--dark-lighter);
    border: 1px solid var(--border);
    color: var(--primary);
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.btn-promo-apply:hover {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 1px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    margin-top: 16px;
}

.summary-total span:last-child {
    color: var(--primary);
}

.delivery-options {
    margin: 24px 0;
}

.delivery-options h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-muted);
}

.delivery-option {
    display: block;
    cursor: pointer;
    margin-bottom: 12px;
}

.delivery-option input {
    display: none;
}

.option-box {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--dark-lighter);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.delivery-option input:checked+.option-box {
    border-color: var(--primary);
    background: rgba(212, 163, 115, 0.1);
}

.option-box i {
    font-size: 1.5rem;
    color: var(--primary);
}

.option-text strong {
    display: block;
    font-size: 1rem;
}

.option-text small {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.btn-checkout {
    width: 100%;
    background: var(--primary) !important;
    color: var(--dark) !important;
    border: none !important;
    padding: 18px !important;
    border-radius: var(--radius-md) !important;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all var(--transition-fast);
}

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

.security-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.badge-item i {
    color: var(--success);
}

/* ========================================
   TOAST NOTIFICATIONS
   ======================================== */
.toast {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.toast-header {
    background: var(--dark-lighter);
    border-bottom: 1px solid var(--border);
    color: var(--text);
}

.toast-body {
    color: var(--text);
}

/* ========================================
   SPINNER ANIMATION
   ======================================== */
.spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1200px) {
    .hero-burger {
        max-width: 400px;
    }
}

@media (max-width: 991px) {
    .hero-section {
        text-align: center;
    }

    .hero-content {
        order: 2;
    }

    .hero-image-wrapper {
        order: 1;
        min-height: 350px;
        margin-bottom: 40px;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .search-wrapper {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .sobre-content {
        padding-left: 0;
        margin-top: 60px;
    }

    .sobre-images {
        padding: 20px;
    }

    .image-secondary {
        width: 150px;
        height: 150px;
    }

    .auth-container {
        flex-direction: column;
    }

    .auth-left {
        display: none;
    }

    .auth-right {
        padding: 80px 20px;
    }

    .navbar-collapse {
        background: var(--dark-card);
        border-radius: var(--radius-md);
        padding: 20px;
        margin-top: 16px;
        border: 1px solid var(--border);
    }

    .nav-buttons {
        flex-direction: column;
        width: 100%;
        margin-top: 16px;
    }

    .btn-nav {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-circle {
        width: 300px;
        height: 300px;
    }

    .burger-main {
        max-width: 350px;
    }

    .float-item {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-hero,
    .btn-outline-hero {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        flex: 1;
        min-width: 80px;
    }

    .promo-card {
        padding: 40px 24px;
    }

    .promo-title {
        font-size: 2rem;
    }

    .price-new {
        font-size: 2.5rem;
    }

    .promo-countdown {
        flex-wrap: wrap;
        gap: 12px;
    }

    .countdown-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        line-height: 50px;
    }

    .product-card {
        margin-bottom: 20px;
    }

    .cart-item {
        flex-wrap: wrap;
        gap: 16px;
    }

    .item-image {
        width: 60px;
        height: 60px;
    }

    .item-details {
        flex: 1;
        min-width: 150px;
    }

    .item-quantity {
        order: 5;
        width: 100%;
        justify-content: center;
    }

    .item-total {
        text-align: center;
    }

    .item-remove {
        position: absolute;
        top: 16px;
        right: 16px;
    }

    .cart-item {
        position: relative;
        padding-right: 60px;
    }

    .social-buttons {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .category-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 16px;
        -webkit-overflow-scrolling: touch;
    }

    .category-tab {
        flex-shrink: 0;
    }

    .footer-top .row>div {
        margin-bottom: 32px;
    }

    .footer-bottom {
        text-align: center;
    }

    .payment-methods {
        justify-content: center;
        margin-top: 16px;
    }
}

@media (max-width: 576px) {
    .navbar {
        padding: 12px 0;
    }

    .brand-jm {
        font-size: 1.8rem;
    }

    .brand-burger {
        font-size: 1rem;
    }

    .hero-section {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .title-main {
        font-size: clamp(3rem, 15vw, 5rem);
    }

    .title-line {
        font-size: 1.2rem;
    }

    .scroll-indicator {
        display: none;
    }

    .features-section {
        padding: 60px 0;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .section-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .destaques-section,
    .sobre-section,
    .info-section {
        padding: 60px 0;
    }

    .sobre-images {
        padding: 0;
    }

    .image-main {
        border-radius: var(--radius-lg);
    }

    .experience-badge {
        padding: 16px 24px;
    }

    .exp-number {
        font-size: 2rem;
    }

    .order-summary {
        padding: 24px;
    }

    .auth-form-container {
        padding: 0;
    }

    .form-header h1 {
        font-size: 2rem;
    }

    .page-header {
        padding: 140px 0 60px;
    }

    .promo-image {
        display: none;
    }

    .btn-promo {
        width: 100%;
    }
}

/* ========================================
   HOVER MEDIA QUERY (for reduced motion)
   ======================================== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    #preloader {
        display: none;
    }
}

/* ========================================
   FOCUS STYLES (Accessibility)
   ======================================== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* ========================================
   ADDITIONAL ANIMATIONS
   ======================================== */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.shimmer {
    background: linear-gradient(90deg,
            var(--dark-card) 0%,
            var(--dark-lighter) 50%,
            var(--dark-card) 100%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

.bounce {
    animation: bounce 2s infinite;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-left {
    animation: slideInLeft 0.5s ease forwards;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.5s ease forwards;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.scale-in {
    animation: scaleIn 0.3s ease forwards;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-primary {
    color: var(--primary) !important;
}

.text-accent {
    color: var(--accent) !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

.text-success {
    color: var(--success) !important;
}

.text-warning {
    color: var(--warning) !important;
}

.text-danger {
    color: var(--danger) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-dark {
    background-color: var(--dark) !important;
}

.bg-dark-card {
    background-color: var(--dark-card) !important;
}

.rounded-sm {
    border-radius: var(--radius-sm) !important;
}

.rounded-md {
    border-radius: var(--radius-md) !important;
}

.rounded-lg {
    border-radius: var(--radius-lg) !important;
}

.rounded-xl {
    border-radius: var(--radius-xl) !important;
}

.shadow-sm {
    box-shadow: var(--shadow-sm) !important;
}

.shadow-md {
    box-shadow: var(--shadow-md) !important;
}

.shadow-lg {
    box-shadow: var(--shadow-lg) !important;
}

.shadow-glow {
    box-shadow: var(--shadow-glow) !important;
}

.transition-fast {
    transition: all var(--transition-fast) !important;
}

.transition-normal {
    transition: all var(--transition-normal) !important;
}

.transition-slow {
    transition: all var(--transition-slow) !important;
}

/* ========================================
   CUSTOM SCROLLBAR FOR ELEMENTS
   ======================================== */
.custom-scroll::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.custom-scroll::-webkit-scrollbar-track {
    background: var(--dark);
    border-radius: 3px;
}

.custom-scroll::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

.custom-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ========================================
   LOADING STATES
   ======================================== */
.skeleton {
    background: linear-gradient(90deg,
            var(--dark-card) 25%,
            var(--dark-lighter) 50%,
            var(--dark-card) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-sm);
}

.skeleton-text {
    height: 16px;
    margin-bottom: 8px;
}

.skeleton-title {
    height: 24px;
    width: 60%;
    margin-bottom: 16px;
}

.skeleton-image {
    width: 100%;
    aspect-ratio: 4/3;
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {

    .navbar,
    .footer,
    .scroll-indicator,
    .btn-add-cart,
    .btn-quick-view {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .hero-section,
    .destaques-section,
    .sobre-section,
    .info-section {
        padding: 20px 0;
    }

    .product-card,
    .feature-card,
    .info-card {
        break-inside: avoid;
    }
}

/* ========================================
   DARK MODE TOGGLE (future implementation)
   ======================================== */
.theme-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--dark);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 999;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-md);
}

.theme-toggle:hover {
    transform: scale(1.1);
}

/* ========================================
   BACK TO TOP BUTTON
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--dark);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

/* ========================================
   NOTIFICATION BADGE PULSE
   ======================================== */
.notification-pulse {
    animation: notificationPulse 2s infinite;
}

@keyframes notificationPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(231, 111, 81, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(231, 111, 81, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(231, 111, 81, 0);
    }
}

/* ========================================
   PRICE TAG
   ======================================== */
.price-tag {
    position: relative;
    display: inline-block;
}

.price-tag::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -8px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-right: 8px solid var(--primary);
}

/* ========================================
   RIBBON BADGE
   ======================================== */
.ribbon {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 75px;
    height: 75px;
    overflow: hidden;
}

.ribbon span {
    position: absolute;
    display: block;
    width: 100px;
    padding: 8px 0;
    background: var(--accent);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    right: -21px;
    top: 19px;
    transform: rotate(45deg);
    box-shadow: var(--shadow-sm);
}

/* ========================================
   FINAL TOUCHES
   ======================================== */
img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

/* Smooth image loading */
img {
    opacity: 1;
    transition: opacity var(--transition-normal);
}

img[data-src] {
    opacity: 0;
}

/* Focus trap for modals */
.modal-open {
    overflow: hidden;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary: #e9c89e;
        --border: #505050;
    }
}

/* ========================================
   NOVO LAYOUT HAMBURGUERIA
   Adaptado de /novo layout
   ======================================== */
:root {
    --primary: #ff5e00;
    --primary-dark: #d94c00;
    --primary-darker: #a73600;
    --primary-light: #ffb700;
    --secondary: #d10000;
    --accent: #ffb700;
    --dark: #121212;
    --dark-card: #1a1a1a;
    --dark-lighter: #242424;
    --text: #f5f5f5;
    --text-muted: #bdbdbd;
    --border: rgba(255, 94, 0, 0.18);
    --gradient-primary: linear-gradient(45deg, var(--secondary), var(--primary));
    --gradient-accent: linear-gradient(45deg, var(--accent), var(--primary));
    --gradient-dark: linear-gradient(145deg, #1e1e1e, #121212);
    --gradient-glow: radial-gradient(circle, rgba(255, 94, 0, 0.4) 0%, transparent 70%);
    --shadow-glow: 0 10px 28px rgba(255, 94, 0, 0.45);
    --font-display: 'Bangers', cursive;
    --font-body: 'Montserrat', sans-serif;
    --radius-sm: 5px;
    --radius-md: 8px;
    --radius-lg: 15px;
    --radius-xl: 18px;
}

body {
    background: var(--dark);
    color: var(--text);
}

h1,
h2,
h3,
h4,
.brand-font,
.section-title,
.page-title,
.product-title,
.summary-title,
.brand-jm {
    font-family: var(--font-display);
    letter-spacing: 2px;
}

.old95-navbar,
.navbar {
    background-color: rgba(10, 10, 10, 0.95);
    border-bottom: 3px solid var(--primary);
    box-shadow: 0 4px 15px rgba(255, 94, 0, 0.2);
    padding: 1rem 0;
}

.navbar.scrolled {
    background-color: rgba(10, 10, 10, 0.97);
    box-shadow: 0 4px 18px rgba(255, 94, 0, 0.28);
    padding: 0.75rem 0;
}

.navbar-brand {
    align-items: center;
    gap: 15px;
}

.site-logo {
    display: block;
    width: auto;
    height: 72px;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(255, 94, 0, 0.45));
}

.brand-logo {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    line-height: 0.9;
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0;
    filter: drop-shadow(0 0 12px rgba(255, 94, 0, 0.35));
}

.brand-logo span {
    font-family: 'Bangers', cursive;
    font-size: 2.25rem;
}

.brand-logo small {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: 0.08em;
}

.brand-logo-nav {
    min-width: 168px;
}

.brand-logo-footer {
    margin-bottom: 18px;
}

.brand-logo-footer span {
    font-size: 3.4rem;
}

.brand-logo-footer small {
    font-size: 0.95rem;
}

.brand-logo-admin {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 0 auto;
}

.brand-logo-admin span {
    font-size: 2.8rem;
}

.brand-logo-auth span {
    font-size: 4.2rem;
}

.brand-logo-auth small {
    font-size: 1rem;
}

.navbar-brand .logo-icon {
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #000;
    font-size: 24px;
    box-shadow: 0 0 15px var(--primary);
    flex: 0 0 auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 0.9;
}

.brand-jm {
    font-size: 2.5rem;
    color: #fff;
}

.brand-burger {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--primary);
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.navbar-nav .nav-link {
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary);
}

.navbar-nav .nav-link::after {
    background: var(--primary);
}

.cta-btn,
.btn-hero,
.btn-view-all,
.btn-checkout,
.btn-search,
.btn-promo-apply {
    background: var(--gradient-primary) !important;
    color: #fff !important;
    border: 0 !important;
    border-radius: var(--radius-sm) !important;
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 25px;
    font-size: 1.1rem;
}

.cta-btn:hover,
.btn-hero:hover,
.btn-view-all:hover,
.btn-checkout:hover,
.btn-search:hover,
.btn-promo-apply:hover {
    transform: scale(1.04) translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.nav-order-btn {
    white-space: nowrap;
}

.btn-nav,
.btn-outline-hero {
    border-color: var(--primary) !important;
    color: #fff !important;
    border-radius: var(--radius-sm) !important;
    text-transform: uppercase;
}

.btn-nav:hover,
.btn-outline-hero:hover {
    background: var(--primary) !important;
    color: #000 !important;
}

.btn-cart {
    background: var(--accent) !important;
    color: #000 !important;
    border-radius: 50% !important;
}

.cart-count {
    background: var(--secondary);
}

.hero.old95-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 10% 60px;
    margin-top: 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to right, rgba(18, 18, 18, 0.92) 30%, rgba(18, 18, 18, 0.55)), url('../images/novo-layout/graffiti_wall.png') center/cover no-repeat;
}

.hero.old95-hero::before,
.old95-about::before,
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent, #0a0a0a 80%);
    pointer-events: none;
}

.hero-content,
.hero-image-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 610px;
}

.hero-subtitle {
    font-family: 'Sancreek', serif;
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(4rem, 8vw, 6rem);
    line-height: 1;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 3px 3px 0 var(--secondary), 6px 6px 0 var(--primary);
}

.hero-title span {
    color: var(--primary);
    display: block;
    animation: old95Flicker 3s infinite;
}

.old95-hero .hero-title span {
    animation: none;
    color: #ff7a1a;
    text-shadow: 2px 2px 0 #000, 4px 4px 0 var(--secondary);
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.85);
}

.hero-text {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.hero-cta {
    font-size: 1.5rem;
    padding: 15px 40px;
}

.legend-link {
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 900;
    text-transform: uppercase;
}

.legend-link:hover {
    color: var(--accent);
}

.hero-image-container {
    width: 45%;
    display: flex;
    justify-content: center;
}

.hero-image {
    width: 110%;
    max-width: 700px;
    margin-left: 0;
    animation: old95Float 6s ease-in-out infinite;
    filter: drop-shadow(0 30px 30px rgba(0, 0, 0, 0.8));
}

.fire-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--gradient-glow);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    filter: blur(50px);
}

.animate-up {
    opacity: 0;
    animation: old95SlideUpFade 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.banner-strip {
    background: var(--accent);
    color: #000;
    padding: 15px 0;
    overflow: hidden;
    border-top: 5px solid var(--secondary);
    border-bottom: 5px solid var(--secondary);
}

.strip-content {
    display: flex;
    white-space: nowrap;
    animation: old95Marquee 20s linear infinite;
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 2px;
}

.strip-content span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 30px;
}

.features,
.destaques-section,
.menu-section,
.cart-section {
    padding: 100px 0;
    background-color: #0a0a0a;
    background-image: radial-gradient(rgba(255, 94, 0, 0.05) 2px, transparent 2px);
    background-size: 30px 30px;
}

.section-title {
    font-size: clamp(3rem, 5vw, 4rem);
    color: #fff;
    margin-bottom: 50px;
    text-align: center;
}

.section-title span,
.card-title,
.product-price,
.summary-total span:last-child {
    color: var(--accent);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    padding: 0 10%;
}

.menu-card,
.product-card,
.order-summary,
.cart-item,
.feature-card,
.auth-form-container,
.admin-list-card,
.alert-card {
    background: var(--gradient-dark);
    border: 1px solid rgba(255, 94, 0, 0.16);
    border-radius: var(--radius-lg);
    box-shadow: 20px 20px 60px #080808, -20px -20px 60px #1c1c1c;
}

.menu-card,
.product-card {
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.menu-card:hover,
.product-card:hover,
.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(255, 94, 0, 0.2);
}

.menu-card::before,
.product-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 94, 0, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.menu-card:hover::before,
.product-card:hover::before {
    opacity: 1;
}

.card-img,
.product-image img,
.item-image img,
.favorite-mini img {
    border: 3px solid #333;
    border-radius: 10px;
    object-fit: cover;
}

.card-img {
    width: 100%;
    height: 250px;
    margin-bottom: 20px;
}

.card-img-warm {
    filter: hue-rotate(45deg);
}

.card-img-smoke {
    filter: grayscale(80%) sepia(20%);
}

.card-title,
.product-title {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.card-desc,
.product-description {
    color: #bbb;
    font-weight: 500;
}

.card-bottom,
.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 20px;
}

.card-price,
.product-price {
    font-family: var(--font-display);
    font-size: 2.5rem;
    line-height: 1;
    color: #fff;
    text-shadow: 2px 2px 0 var(--secondary);
}

.old95-add,
.btn-add-cart {
    background: var(--gradient-primary);
    color: #fff;
    border: 0;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.old95-about,
.page-header {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.9)), url('../images/novo-layout/graffiti_wall.png') fixed center/cover;
}

.old95-about {
    padding: 100px 10%;
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text,
.follower-stat,
.page-header .container {
    position: relative;
    z-index: 2;
}

.about-text {
    flex: 1;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.follower-stat {
    flex: 1;
    text-align: center;
}

.stat-kicker {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: -20px;
}

.old95-about .stat-number {
    font-size: clamp(5rem, 10vw, 8rem);
    font-family: var(--font-display);
    line-height: 1;
    color: #fff;
    text-shadow: 5px 5px 0 #b34700, 10px 10px 0 var(--secondary), 0 0 50px var(--primary);
    -webkit-text-stroke: 4px #000;
    animation: old95Flicker 4s infinite alternate;
}

.old95-about .stat-label {
    font-size: 2rem;
    font-family: var(--font-body);
    font-weight: 900;
    letter-spacing: 5px;
    color: #fff;
}

.page-header {
    padding: 160px 0 70px;
}

.page-tag,
.section-tag {
    background: rgba(255, 94, 0, 0.15);
    border: 1px solid rgba(255, 94, 0, 0.28);
    color: var(--accent);
    border-radius: 50px;
}

.page-title {
    font-size: clamp(3.5rem, 8vw, 6rem);
    color: #fff;
    text-shadow: 3px 3px 0 var(--secondary), 6px 6px 0 var(--primary);
}

.page-subtitle {
    color: #ddd;
    font-size: 1.1rem;
}

.search-wrapper,
.square-input,
.promo-input-wrapper input,
.form-control.square-input {
    background: #1f1f1f;
    border-color: rgba(255, 94, 0, 0.22);
}

.search-wrapper:focus-within,
.square-input:focus,
.form-control.square-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 94, 0, 0.16);
}

.category-tab {
    border-color: rgba(255, 94, 0, 0.2);
    background: #1f1f1f;
    color: #fff;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    font-weight: 900;
}

.category-tab:hover,
.category-tab.active {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
}

.product-card {
    padding: 0;
}

.product-content {
    padding: 24px;
}

.product-image {
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}

.product-image img {
    border: 0;
    border-radius: 0;
}

.footer.old95-footer {
    background:
        linear-gradient(rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.98)),
        url('../images/novo-layout/graffiti_wall.png') center/cover;
    padding: 70px 0 28px;
    text-align: left;
    border-top: 5px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.footer.old95-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 18% 10%, rgba(255, 94, 0, 0.22), transparent 28%),
        radial-gradient(circle at 82% 90%, rgba(209, 0, 0, 0.16), transparent 30%);
    pointer-events: none;
}

.old95-footer .container {
    position: relative;
    z-index: 1;
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(240px, 1.25fr) repeat(3, minmax(170px, 1fr));
    gap: 42px;
    align-items: start;
}

.footer-brand-block {
    max-width: 330px;
}

.footer-logo {
    font-size: 3rem;
    margin-bottom: 20px;
}

.footer-logo-img {
    display: block;
    width: auto;
    height: 150px;
    object-fit: contain;
    margin: 0 0 18px;
    filter: drop-shadow(0 0 18px rgba(255, 94, 0, 0.45));
}

.footer-logo span:first-child {
    color: #fff;
}

.footer-logo span:last-child {
    color: var(--primary);
}

.footer-text {
    color: #a8a8a8;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.footer-lead {
    color: #d5d5d5;
    font-weight: 600;
}

.social-links {
    margin: 24px 0 0;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: #222;
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.social-links a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-5px);
}

.footer-column h3 {
    color: #fff;
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 18px;
    text-shadow: 2px 2px 0 var(--secondary);
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.footer-list a,
.footer-order-link {
    color: #d8d8d8;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}

.footer-list a:hover,
.footer-order-link:hover {
    color: var(--accent);
    text-shadow: 0 0 10px rgba(255, 94, 0, 0.7);
}

.footer-contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: #c9c9c9;
    line-height: 1.5;
}

.footer-contact i {
    color: var(--accent);
    width: 18px;
    margin-top: 4px;
    text-align: center;
}

.footer-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0 22px;
}

.footer-payments span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 94, 0, 0.12);
    border: 1px solid rgba(255, 94, 0, 0.3);
    border-radius: var(--radius-sm);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 900;
    padding: 9px 12px;
    text-transform: uppercase;
}

.footer-payments i {
    color: var(--accent);
}

.footer-order-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 1.45rem;
    color: var(--primary);
}

.footer-bottom-line {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 54px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 94, 0, 0.25);
    color: #777;
    font-size: 0.9rem;
}

.footer-bottom-line p {
    margin: 0;
}

.auth-page {
    background: linear-gradient(rgba(10, 10, 10, 0.86), rgba(10, 10, 10, 0.94)), url('../images/novo-layout/graffiti_wall.png') center/cover fixed;
}

.auth-logo {
    display: inline-flex;
}

.auth-logo-img {
    height: 190px;
}

.auth-left {
    background: transparent;
}

.admin-logo {
    height: 110px;
    margin: 0 auto;
}

.auth-burger-image img {
    content: url('../images/novo-layout/hero_burger.png');
}

.form-header h1,
.auth-welcome {
    color: var(--accent);
}

/* ========================================
   AUTH REFINEMENT - HAMBURGUERIA
   ======================================== */
.auth-page {
    background:
        radial-gradient(circle at 18% 20%, rgba(255, 94, 0, 0.18), transparent 28%),
        linear-gradient(rgba(10, 10, 10, 0.82), rgba(10, 10, 10, 0.96)),
        url('../images/novo-layout/graffiti_wall.png') center/cover fixed;
}

.auth-container {
    position: relative;
    isolation: isolate;
}

.auth-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 50%, rgba(209, 0, 0, 0.12), transparent 34%);
    pointer-events: none;
    z-index: -1;
}

.auth-left {
    background:
        linear-gradient(90deg, rgba(10, 10, 10, 0.96), rgba(18, 18, 18, 0.76)),
        url('../images/novo-layout/graffiti_wall.png') center/cover;
    border-right: 3px solid var(--primary);
}

.auth-bg-pattern {
    background:
        radial-gradient(circle at 50% 18%, rgba(255, 183, 0, 0.18), transparent 24%),
        radial-gradient(circle at 30% 75%, rgba(255, 94, 0, 0.16), transparent 30%);
}

.auth-content {
    max-width: 470px;
}

.auth-logo {
    margin-bottom: 18px;
}

.auth-logo-img {
    height: 172px;
    filter: drop-shadow(0 0 22px rgba(255, 94, 0, 0.48));
}

.auth-kicker,
.form-eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    background: rgba(255, 94, 0, 0.14);
    border: 1px solid rgba(255, 94, 0, 0.34);
    border-radius: 999px;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 1px;
    padding: 7px 13px;
    text-transform: uppercase;
}

.auth-kicker {
    margin-bottom: 18px;
}

.auth-welcome {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 0.95;
    color: #fff;
    margin-bottom: 18px;
    text-shadow: 3px 3px 0 var(--secondary), 6px 6px 0 var(--primary);
}

.auth-text {
    color: #ddd;
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 420px;
}

.auth-features {
    display: grid;
    gap: 14px;
    margin: 30px 0;
}

.auth-feature {
    background: rgba(0, 0, 0, 0.34);
    border: 1px solid rgba(255, 94, 0, 0.22);
    border-radius: var(--radius-md);
    color: #f0f0f0;
    font-weight: 700;
    margin: 0;
    padding: 13px 14px;
}

.auth-feature i {
    width: 22px;
    color: var(--accent);
    text-align: center;
}

.auth-panel-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    max-width: 340px;
}

.auth-panel-stats div {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.85), rgba(12, 12, 12, 0.92));
    border: 1px solid rgba(255, 94, 0, 0.24);
    border-radius: var(--radius-md);
    padding: 16px;
}

.auth-panel-stats strong {
    display: block;
    color: var(--accent);
    font-family: var(--font-display);
    font-size: 2.35rem;
    letter-spacing: 2px;
    line-height: 1;
}

.auth-panel-stats span {
    color: #cfcfcf;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
}

.auth-right {
    background: linear-gradient(145deg, rgba(18, 18, 18, 0.78), rgba(6, 6, 6, 0.92));
    padding: 56px;
}

.auth-form-container {
    max-width: 500px;
    background:
        linear-gradient(145deg, rgba(30, 30, 30, 0.96), rgba(14, 14, 14, 0.98));
    border: 1px solid rgba(255, 94, 0, 0.22);
    border-top: 4px solid var(--primary);
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.56), 0 0 50px rgba(255, 94, 0, 0.12);
    padding: 34px;
    position: relative;
    overflow: hidden;
}

.auth-form-container::before {
    content: '';
    position: absolute;
    inset: -40% -30% auto auto;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(255, 94, 0, 0.2), transparent 68%);
    pointer-events: none;
}

.form-header {
    position: relative;
    z-index: 1;
    margin-bottom: 28px;
}

.form-eyebrow {
    margin-bottom: 12px;
}

.form-header h1 {
    color: #fff;
    font-size: clamp(2.8rem, 5vw, 4rem);
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 2px 2px 0 var(--secondary);
}

.form-header p {
    color: #bdbdbd;
    margin: 0;
}

.auth-form .form-group {
    margin-bottom: 18px;
}

.auth-form label {
    color: #fff;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.input-wrapper {
    background: rgba(0, 0, 0, 0.36);
    border: 1px solid rgba(255, 94, 0, 0.2);
    border-radius: var(--radius-md);
    min-height: 56px;
}

.input-wrapper:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 94, 0, 0.16), 0 0 26px rgba(255, 94, 0, 0.14);
}

.input-wrapper i {
    color: var(--accent);
}

.input-wrapper input {
    color: #fff;
    font-weight: 600;
}

.toggle-password {
    color: #d7d7d7;
    min-width: 34px;
}

.toggle-password:hover {
    color: var(--accent);
}

.forgot-link {
    color: var(--accent);
    font-weight: 900;
    text-transform: uppercase;
}

.btn-auth {
    background: var(--gradient-primary) !important;
    color: #fff !important;
    border-radius: var(--radius-sm) !important;
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.auth-switch {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 94, 0, 0.18);
    border-radius: var(--radius-md);
    margin-top: 22px;
    padding: 14px;
}

.auth-switch a {
    color: var(--accent);
    font-weight: 900;
    text-transform: uppercase;
}

.demo-credentials {
    background: rgba(0, 0, 0, 0.28);
    border: 1px dashed rgba(255, 94, 0, 0.28);
    border-radius: var(--radius-md);
    padding: 12px 14px;
}

.demo-credentials small {
    color: #aaa;
}

@media (max-width: 1200px) {
    .auth-right {
        padding: 40px 28px;
    }

    .auth-form-container {
        max-width: 480px;
    }
}

@media (max-width: 991px) {
    .auth-right {
        min-height: 100vh;
        padding: 42px 18px;
    }

    .auth-form-container {
        max-width: 560px;
    }
}

@media (max-width: 576px) {
    .auth-form-container {
        padding: 24px 18px;
        border-radius: var(--radius-md);
    }

    .form-header h1 {
        font-size: 3rem;
    }

    .input-wrapper {
        min-height: 54px;
        padding: 0 12px;
    }

    .btn-auth {
        font-size: 1.3rem;
    }
}

@keyframes old95Float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

@keyframes old95Flicker {
    0%, 100% { text-shadow: 0 0 10px var(--primary), 0 0 20px var(--primary), 0 0 30px var(--secondary); }
    50% { text-shadow: 0 0 15px var(--primary), 0 0 25px var(--secondary), 0 0 35px var(--secondary); }
}

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

@keyframes old95Marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: #111;
        border: 1px solid var(--border);
        border-radius: var(--radius-md);
        padding: 18px;
        margin-top: 16px;
    }

    .hero.old95-hero {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 130px 6% 70px;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .hero-image-container {
        width: 100%;
        max-width: 500px;
        margin: 30px auto 0;
    }

    .hero-image {
        width: 100%;
        margin-left: 0;
    }

    .old95-about {
        flex-direction: column;
        text-align: center;
        padding: 70px 5%;
        gap: 30px;
    }

    .old95-about .section-title {
        text-align: center !important;
    }

    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-brand-block {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .nav-buttons {
        align-items: center;
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
        width: 100%;
    }

    .nav-order-btn,
    .btn-nav {
        width: 100%;
        text-align: center;
    }

    .btn-cart {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: clamp(3rem, 10vw, 4.5rem);
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-text {
        font-size: 1.1rem;
    }

    .hero-actions {
        justify-content: center;
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    
    .hero-cta, .legend-link {
        width: 100%;
        justify-content: center;
    }

    .menu-grid {
        padding: 0 5%;
        grid-template-columns: 1fr;
    }

    .card-bottom,
    .product-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .card-price,
    .product-price {
        text-align: center;
    }

    .old95-add,
    .btn-add-cart {
        width: 100%;
        border-radius: var(--radius-sm);
        height: 55px;
    }

    .old95-about .stat-number {
        font-size: 4rem;
    }

    .old95-about .stat-label {
        font-size: 1.5rem;
    }

    .footer.old95-footer {
        text-align: center;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .footer-logo-img {
        margin-left: auto;
        margin-right: auto;
    }

    .social-links,
    .footer-payments {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-bottom-line {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .site-logo {
        height: 58px;
    }

    .brand-logo-nav span {
        font-size: 1.85rem;
    }

    .brand-logo-nav small {
        font-size: 0.62rem;
    }

    .brand-logo-footer span,
    .brand-logo-auth span {
        font-size: 3rem;
    }

    .brand-logo-footer small,
    .brand-logo-auth small {
        font-size: 0.78rem;
    }

    .footer-logo-img {
        height: 126px;
    }

    .auth-logo-img {
        height: 150px;
    }

    .navbar-brand .logo-icon {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }

    .brand-jm {
        font-size: 1.8rem;
    }

    .brand-burger {
        font-size: 0.65rem;
    }

    .hero.old95-hero {
        padding: 110px 5% 50px;
    }

    .hero-title {
        font-size: clamp(2.5rem, 12vw, 3.5rem);
    }

    .hero-cta {
        width: 100%;
        padding: 14px 20px;
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

/* End of CSS */
