/* ==========================================================================
   GREGO KING - BRAND STYLESHEET
   Aesthetics: Imperial Greek Dark Mode (Crimson, Gold, Marble Dark, Glassmorphism)
   ========================================================================== */

/* Design Tokens & Variables */
:root {
    /* Color Palette */
    --primary-red: #8B0000;
    --primary-red-light: #B22222;
    --primary-red-dark: #4A0000;
    --primary-red-rgb: 139, 0, 0;
    
    --royal-gold: #D4AF37;
    --royal-gold-light: #F9E27E;
    --royal-gold-dark: #AA7C11;
    --royal-gold-rgb: 212, 175, 55;
    
    --bg-dark-deep: #0B0B0C;
    --bg-dark-card: rgba(22, 22, 26, 0.85);
    --bg-dark-hover: rgba(35, 35, 42, 0.95);
    
    --text-light: #F5F5F7;
    --text-muted: #A1A1AA;
    --text-dark: #18181B;

    /* Gradients */
    --red-gradient: linear-gradient(135deg, var(--primary-red-light) 0%, var(--primary-red) 50%, var(--primary-red-dark) 100%);
    --gold-gradient: linear-gradient(135deg, var(--royal-gold-dark) 0%, var(--royal-gold) 50%, var(--royal-gold-light) 100%);
    --dark-gradient: linear-gradient(180deg, rgba(24, 24, 27, 0.82) 0%, rgba(9, 9, 11, 0.82) 100%);
    --burner-gradient: linear-gradient(to bottom, #110000, #ff4500, #ff8c00, #ff4500, #110000);
    
    /* Shadows & Glows */
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-glow-gold: 0 0 15px rgba(212, 175, 55, 0.35);
    --shadow-glow-red: 0 0 15px rgba(178, 34, 34, 0.4);
    --border-glass: 1px solid rgba(255, 255, 255, 0.08);
    
    /* Transitions */
    --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-medium: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);

    /* Textures */
    --greek-meander: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h40v40H0V0zm2 2v36h36V2H2zm4 4h28v28H6V6zm2 2v24h24V8H8zm4 4h16v16H12V12zm2 2v12h12V14H14zm4 4h4v4h-4v-4z' fill='%23D4AF37' fill-opacity='0.03'/%3E%3C/svg%3E");
    --noise-bg: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
}

/* Base Reset & Reset overrides */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark-deep);
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-light);
    background-color: var(--bg-dark-deep);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

/* Decorative Textures Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--noise-bg);
    pointer-events: none;
    z-index: 10;
}

.greek-pattern-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--greek-meander);
    background-attachment: fixed;
    pointer-events: none;
    z-index: 2;
}

.bg-gradient-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 20%, rgba(139, 0, 0, 0.15) 0%, transparent 60%),
                radial-gradient(circle at 10% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 40%);
    pointer-events: none;
    z-index: 1;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #121214;
}
::-webkit-scrollbar-thumb {
    background: var(--royal-gold);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--royal-gold-light);
}

/* Typography Helpers */
h1, h2, h3, .nav-link, .btn, .card-badge {
    font-family: 'Cinzel', serif;
}

/* Header & Nav */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(11, 11, 12, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    transition: var(--transition-medium);
}

.main-header.scrolled {
    background: rgba(11, 11, 12, 0.95);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    border-bottom-color: rgba(212, 175, 55, 0.3);
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-light);
}

.header-logo {
    width: 48px;
    height: 48px;
    transition: var(--transition-medium);
}

.logo-link:hover .header-logo {
    transform: rotate(15deg) scale(1.08);
}

.header-title {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 2px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Nav Menu */
.nav-menu {
    display: flex;
    gap: 15px;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid transparent;
    transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
    color: var(--royal-gold-light);
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.05);
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-light);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 5;
    background-image: linear-gradient(rgba(11, 11, 12, 0.6), rgba(11, 11, 12, 0.9)), url('fotos de fundos/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-content {
    max-width: 800px;
    padding: 20px;
    animation: fadeInUp 1s ease-out;
}

.badge-grego {
    display: inline-block;
    background: var(--red-gradient);
    color: var(--text-light);
    font-weight: 800;
    font-size: 0.8rem;
    padding: 6px 16px;
    border-radius: 30px;
    border: 1px solid var(--royal-gold);
    margin-bottom: 20px;
    letter-spacing: 2px;
    box-shadow: var(--shadow-glow-red);
}

.hero-main-title {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #FFFFFF 30%, #E2E2E6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 15px rgba(0,0,0,0.6);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

/* Button UI */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 35px;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 40px;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition-medium);
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--text-dark);
    box-shadow: var(--shadow-glow-gold);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(212, 175, 55, 0.4);
    filter: brightness(1.1);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--primary-red-light);
    box-shadow: var(--shadow-glow-red);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    background: rgba(139, 0, 0, 0.2);
    box-shadow: 0 15px 25px rgba(139, 0, 0, 0.4);
    border-color: var(--primary-red-light);
}

.btn:active {
    transform: translateY(-1px);
}

.hero-social-proof {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon-btn {
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: var(--border-glass);
    transition: var(--transition-fast);
}

.social-icon-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
    transform: scale(1.05);
}

.social-icon-btn.ifood:hover {
    background: #EA1D2C;
    border-color: transparent;
    transform: scale(1.05);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.hero-scroll-indicator p {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

/* Mouse Wheel animation */
.mouse {
    width: 22px;
    height: 38px;
    border: 2px solid var(--text-muted);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--royal-gold);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}

/* Interactive Spit Experience Section */
.experience-section {
    padding: 100px 20px;
    background: var(--dark-gradient);
    position: relative;
    z-index: 5;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

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

.experience-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

/* Spit Visualizer Container */
/* Spit Visualizer Container */
.spit-visual-container {
    background: #0d0d0f;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 24px;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    width: 100%;
    max-width: 440px;
    aspect-ratio: 1 / 1;
    display: block;
    margin: 0 auto;
    transition: border-color 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Spit Photo Container */
.spit-photo-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.spit-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    user-select: none;
    transition: filter 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Spit visual effects based on active card */
.spit-visual-container.active-spot-2 {
    border-color: rgba(46, 117, 89, 0.45);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 25px rgba(46, 117, 89, 0.2);
}

.spit-visual-container.active-spot-2 .spit-photo {
    filter: saturate(1.15) brightness(1.03) contrast(1.02);
    transform: scale(1.03);
}

.spit-visual-container.active-spot-3 {
    border-color: rgba(234, 29, 44, 0.45);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 30px rgba(234, 29, 44, 0.25);
}

.spit-visual-container.active-spot-3 .spit-photo {
    filter: saturate(1.3) brightness(1.08) contrast(1.05) drop-shadow(0 0 10px rgba(234, 29, 44, 0.3));
    transform: scale(1.05);
}

/* Hotspots information cards styling */
.experience-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.section-title.text-center {
    text-align: center;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--gold-gradient);
    margin-top: 15px;
}

.section-title.text-center::after {
    margin: 15px auto 0;
}

.subtitle-text {
    font-size: 1.2rem;
    color: var(--royal-gold-light);
    font-weight: 600;
    margin-bottom: 20px;
}

.desc-text {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.info-hotspots-descriptions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-card-spot {
    display: flex;
    gap: 18px;
    background: var(--bg-dark-card);
    border: var(--border-glass);
    border-radius: 16px;
    padding: 20px;
    transition: var(--transition-medium);
    cursor: pointer;
    user-select: none;
}

.info-card-spot:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.02);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Spot 1: Montagem (Gold style) */
.info-card-spot[data-spot-desc="1"].active {
    background: rgba(139, 0, 0, 0.1);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: inset 0 0 15px rgba(212, 175, 55, 0.05);
}

.info-card-spot[data-spot-desc="1"].active:hover {
    background: rgba(139, 0, 0, 0.14);
    border-color: rgba(212, 175, 55, 0.55);
}

.info-card-spot[data-spot-desc="1"].active .info-card-icon {
    background: var(--gold-gradient);
    color: var(--text-dark);
}

/* Spot 2: Marinada (Mint/Green style) */
.info-card-spot[data-spot-desc="2"].active {
    background: rgba(46, 117, 89, 0.1);
    border-color: rgba(46, 117, 89, 0.4);
    box-shadow: inset 0 0 15px rgba(46, 117, 89, 0.05);
}

.info-card-spot[data-spot-desc="2"].active:hover {
    background: rgba(46, 117, 89, 0.14);
    border-color: rgba(46, 117, 89, 0.55);
}

.info-card-spot[data-spot-desc="2"].active .info-card-icon {
    background: linear-gradient(135deg, #2e7559, #85b09a);
    color: #fff;
}

/* Spot 3: Assado (Red/Orange style) */
.info-card-spot[data-spot-desc="3"].active {
    background: rgba(234, 29, 44, 0.1);
    border-color: rgba(234, 29, 44, 0.4);
    box-shadow: inset 0 0 15px rgba(234, 29, 44, 0.05);
}

.info-card-spot[data-spot-desc="3"].active:hover {
    background: rgba(234, 29, 44, 0.14);
    border-color: rgba(234, 29, 44, 0.55);
}

.info-card-spot[data-spot-desc="3"].active .info-card-icon {
    background: linear-gradient(135deg, #ea1d2c, #ff6b6b);
    color: #fff;
}

.info-card-icon {
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
    color: var(--royal-gold-light);
    transition: var(--transition-fast);
}

.info-card-body h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 5px;
}

.info-card-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Menu Section Styles */
.menu-section {
    padding: 100px 20px;
    background-color: rgba(11, 11, 12, 0.82);
    position: relative;
    z-index: 5;
}

.menu-header {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

.menu-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-top: 15px;
}

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

/* Category Tabs Scrollbar & layout */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none;
}

.menu-tabs::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 30px;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition-fast);
}

.tab-btn:hover {
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.08);
}

.tab-btn.active {
    background: var(--red-gradient);
    color: white;
    border-color: var(--royal-gold);
    box-shadow: var(--shadow-glow-red);
}

/* Pane switching transitions */
.tab-pane {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.tab-pane.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 30px;
    justify-content: center;
}

/* Menu Card Design */
.menu-card {
    background: var(--bg-dark-card);
    border: var(--border-glass);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-medium);
    position: relative;
}

.menu-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(212, 175, 55, 0.08);
}

/* If item is added to cart, make card stand out */
.menu-card.has-quantity {
    border-color: var(--royal-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.card-image-wrapper {
    position: relative;
    height: 220px;
    background: #111;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.menu-card:hover .card-img {
    transform: scale(1.08);
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: 20px;
    z-index: 10;
}

.card-badge.gold {
    background: var(--gold-gradient);
    color: var(--text-dark);
}

.card-badge.red {
    background: var(--red-gradient);
    color: white;
}

.card-badge.pink {
    background: linear-gradient(135deg, #FF69B4, #C71585);
    color: white;
}

.card-badge.dark {
    background: #27272A;
    color: var(--text-light);
}

/* Fallback for items without images */
.menu-card.no-image {
    padding: 30px;
}

.card-icon-fallback {
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    animation: float 3s infinite ease-in-out;
}

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

.card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 12px;
}

.card-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.card-price {
    font-family: 'Cinzel', serif;
    font-weight: 800;
    color: var(--royal-gold-light);
    font-size: 1.15rem;
    white-space: nowrap;
}

.card-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 25px;
    flex-grow: 1;
}

.card-footer {
    margin-top: auto;
}

/* Quantity selector */
.quantity-selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 5px;
    border-radius: 12px;
    transition: var(--transition-fast);
}

.menu-card.has-quantity .quantity-selector {
    background: rgba(139, 0, 0, 0.25);
    border-color: rgba(212, 175, 55, 0.4);
}

.qty-btn {
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.qty-btn:hover {
    background: var(--royal-gold);
    color: var(--text-dark);
}

.qty-btn:active {
    transform: scale(0.95);
}

.qty-display {
    font-weight: 800;
    font-size: 1.05rem;
    padding: 0 15px;
    color: var(--text-muted);
}

.menu-card.has-quantity .qty-display {
    color: var(--text-light);
}

/* Sauce Card Layout */
.sauce-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.sauce-card {
    background: var(--bg-dark-card);
    border: var(--border-glass);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: var(--transition-medium);
}

.sauce-card:hover {
    border-color: rgba(212, 175, 55, 0.2);
    background: var(--bg-dark-hover);
}

.sauce-card.has-quantity {
    border-color: var(--royal-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

.sauce-info {
    display: flex;
    gap: 15px;
    align-items: center;
}

.sauce-emoji {
    font-size: 1.8rem;
    display: block;
    background: rgba(255, 255, 255, 0.03);
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sauce-info h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 3px;
}

.sauce-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.sauce-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    flex-shrink: 0;
}

.sauce-price {
    font-weight: 700;
    color: var(--royal-gold-light);
    font-size: 0.95rem;
}

.quantity-selector.small {
    padding: 2px;
    border-radius: 8px;
}

.quantity-selector.small .qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 5px;
    font-size: 0.9rem;
}

.quantity-selector.small .qty-display {
    padding: 0 8px;
    font-size: 0.9rem;
}

/* Drinks Layout */
.drinks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.drink-item {
    background: var(--bg-dark-card);
    border: var(--border-glass);
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-fast);
}

.drink-item:hover {
    background: var(--bg-dark-hover);
}

.drink-item.has-quantity {
    border-color: var(--royal-gold);
}

.drink-details {
    display: flex;
    align-items: center;
    gap: 12px;
}

.drink-thumb {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    padding: 2px;
    transition: var(--transition-fast);
}

.drink-item:hover .drink-thumb {
    transform: scale(1.08);
}

.drink-icon {
    font-size: 1.3rem;
}

.drink-details h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
}

.drink-buy {
    display: flex;
    align-items: center;
    gap: 12px;
}

.drink-price {
    font-weight: 700;
    color: var(--royal-gold-light);
    font-size: 0.9rem;
}

/* Story Section (Nossa Saga) */
.saga-section {
    padding: 100px 20px;
    background: var(--dark-gradient);
    position: relative;
    z-index: 5;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.saga-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.saga-content h2 {
    margin-bottom: 10px;
}

.saga-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.saga-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    max-width: 150px;
}

.stat-num {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--royal-gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.saga-image-container {
    display: flex;
    justify-content: center;
}

.saga-image-frame {
    position: relative;
    max-width: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.saga-img {
    width: 100%;
    height: auto;
    display: block;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    transition: var(--transition-slow);
}

.saga-image-frame:hover .saga-img {
    transform: scale(1.05);
    border-color: var(--royal-gold);
}

.frame-border-decoration {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px dashed rgba(212, 175, 55, 0.4);
    border-radius: 12px;
    pointer-events: none;
}

/* Testimonials Slider */
.testimonials-section {
    padding: 100px 20px;
    background-color: rgba(11, 11, 12, 0.82);
    position: relative;
    z-index: 5;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--bg-dark-card);
    border: var(--border-glass);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: var(--transition-medium);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.25);
    background: var(--bg-dark-hover);
}

.testimonial-stars {
    color: var(--royal-gold);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
}

.author-avatar {
    font-size: 1.8rem;
    background: rgba(255, 255, 255, 0.03);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-author h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-light);
}

.testimonial-author p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Contact & Info cards styling */
.contact-section {
    padding: 100px 20px;
    background: var(--dark-gradient);
    position: relative;
    z-index: 5;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.contact-card {
    background: var(--bg-dark-card);
    border: var(--border-glass);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition-medium);
}

.contact-card:hover {
    border-color: rgba(212, 175, 55, 0.25);
    transform: translateY(-5px);
}

.card-icon {
    font-size: 2.2rem;
    background: rgba(139, 0, 0, 0.1);
    border: 1px solid rgba(139, 0, 0, 0.2);
    color: var(--primary-red-light);
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-light);
}

/* Shop status badge */
.shop-status-badge {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 25px;
}

.shop-status-badge.open {
    background: rgba(37, 211, 102, 0.15);
    color: #25D366;
    border: 1px solid #25D366;
}

.shop-status-badge.closed {
    background: rgba(139, 0, 0, 0.15);
    color: #ff4d4d;
    border: 1px solid #ff4d4d;
}

.hours-list {
    list-style: none;
    width: 100%;
    text-align: left;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    font-size: 0.9rem;
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list li span:first-child {
    color: var(--text-muted);
}

.hours-list li.closed-day {
    background: rgba(255, 77, 77, 0.02);
    border-radius: 8px;
    padding: 10px 8px;
}

.hours-list li.closed-day span:first-child {
    color: #ff8585 !important;
}

.hours-val {
    font-weight: 700;
    color: var(--text-light);
}

.hours-val.closed {
    color: #ff4d4d !important;
    background: rgba(255, 77, 77, 0.12);
    padding: 3px 10px;
    border-radius: 6px;
    border: 1px solid rgba(255, 77, 77, 0.25);
    font-size: 0.85rem;
    display: inline-block;
}

.address-text {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 5px;
}

.address-city {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.delivery-info {
    font-size: 0.85rem;
    color: var(--royal-gold-light);
    background: rgba(212, 175, 55, 0.05);
    padding: 10px 20px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.map-btn {
    width: 100%;
    margin-top: auto;
}

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

.phone-display {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--royal-gold);
    margin-bottom: 30px;
}

.contact-actions-vertical {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-top: auto;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: var(--transition-fast);
}

.contact-btn.call {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

.contact-btn.call:hover {
    background: rgba(255, 255, 255, 0.08);
}

.contact-btn.whatsapp {
    background: #25D366;
    color: white;
}

.contact-btn.whatsapp:hover {
    transform: scale(1.03);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Footer Section */
.main-footer {
    background: #070708;
    color: var(--text-muted);
    padding: 60px 20px;
    position: relative;
    z-index: 5;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
}

.footer-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 5px;
}

.footer-logo-row h3 {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--text-light);
}

.footer-logo-row p {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--royal-gold);
}

.footer-divider {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    max-width: 600px;
    margin: 0 auto 30px;
}

.footer-bottom {
    font-size: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Floating Shop Cart Badge UI */
.floating-cart {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(120px);
    background: #0E0E10;
    border: 2px solid var(--royal-gold);
    border-radius: 50px;
    padding: 8px 8px 8px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.8), var(--shadow-glow-gold);
    z-index: 900;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
}

.floating-cart.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.floating-cart:hover {
    transform: translateX(-50%) translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(212, 175, 55, 0.25);
    filter: brightness(1.08);
}

.cart-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-badge-count {
    background: var(--red-gradient);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.85rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.cart-total-price {
    font-family: 'Cinzel', serif;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--text-light);
}

.cart-label-btn {
    background: var(--gold-gradient);
    color: var(--text-dark);
    padding: 12px 24px;
    border-radius: 30px;
    font-family: 'Cinzel', serif;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.floating-cart.bump {
    animation: cartBump 0.3s ease-out;
}

@keyframes cartBump {
    0% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.1); }
    100% { transform: translateX(-50%) scale(1); }
}

/* Modals & Overlay system */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background: #141416;
    border: 2px solid var(--royal-gold-dark);
    border-radius: 28px;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 35px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), var(--shadow-glow-gold);
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-card {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
}

.modal-header h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--royal-gold-light);
    letter-spacing: 1px;
}

.close-modal-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 2.2rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-fast);
}

.close-modal-btn:hover {
    color: var(--primary-red-light);
}

/* Order Summary Box inside checkout */
.order-summary-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 25px;
}

.order-summary-box h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.order-items-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 150px;
    overflow-y: auto;
    margin-bottom: 15px;
}

.modal-summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.modal-summary-item span:first-child {
    font-weight: 700;
}

.order-summary-total {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
    font-family: 'Cinzel', serif;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--royal-gold-light);
}

/* Form Styles Override */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.03);
    color: var(--text-light);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--royal-gold);
    background-color: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.form-group textarea {
    height: 80px;
    resize: none;
}

.form-group select option {
    background-color: #141416;
    color: var(--text-light);
}

.hidden {
    display: none;
}

.submit-order-btn {
    width: 100%;
    background: var(--red-gradient);
    color: white;
    border: 1px solid var(--royal-gold);
    border-radius: 40px;
    padding: 16px;
    font-family: 'Cinzel', serif;
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: var(--shadow-glow-red);
    transition: var(--transition-medium);
    margin-top: 15px;
}

.submit-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 0, 0, 0.5);
    filter: brightness(1.1);
}

/* Giveaway Banner specific styling */
.giveaway-card {
    text-align: center;
    max-width: 440px;
}

.giveaway-banner {
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    margin-bottom: 20px;
}

.giveaway-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
}

.giveaway-action-btn {
    width: 100%;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes scrollWheel {
    0% { top: 6px; opacity: 1; }
    50% { top: 18px; opacity: 0; }
    100% { top: 6px; opacity: 1; }
}

/* ==========================================================================
   RESPONSIVENESS (MOBILE ELITE)
   ========================================================================== */
@media (max-width: 992px) {
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .saga-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .saga-image-container {
        order: -1; /* Place image on top on mobile */
    }
    
    .hero-main-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero-scroll-indicator {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: #0E0E10;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transform: translateX(100%);
        transition: var(--transition-medium);
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 10px 30px;
    }
    
    .hero-main-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    

    .menu-tabs {
        justify-content: flex-start;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .modal-card {
        padding: 25px 20px;
    }
    
    .floating-cart {
        width: calc(100% - 40px);
        bottom: 20px;
    }
}

/* ==========================================================================
   QUIZ DOS DEUSES - SPECIALIST STYLE OVERRIDES
   ========================================================================== */
.quiz-section {
    padding: 100px 20px;
    background: rgba(11, 11, 12, 0.82);
    position: relative;
    z-index: 5;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.quiz-box-wrapper {
    max-width: 850px;
    margin: 0 auto;
    background: var(--bg-dark-card);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 28px;
    padding: 50px 40px;
    box-shadow: var(--shadow-soft), 0 0 35px rgba(0,0,0,0.8);
    position: relative;
    overflow: hidden;
}

.quiz-box-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gold-gradient);
}

.quiz-container {
    margin-top: 40px;
    min-height: 380px;
    position: relative;
}

.quiz-step {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-medium);
}

.quiz-step.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.quiz-step h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-light);
    text-align: center;
}

.quiz-options-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.quiz-option-card {
    flex: 1 1 200px;
    max-width: 250px;
    background: rgba(255, 255, 255, 0.02);
    border: var(--border-glass);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-medium);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.quiz-option-card:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: var(--royal-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4), var(--shadow-glow-gold);
}

.option-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 5px;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.quiz-option-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-light);
}

.quiz-option-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Quiz Result Panel Style */
.quiz-result-panel {
    display: none;
    opacity: 0;
    transform: scale(0.95);
    transition: var(--transition-medium);
}

.quiz-result-panel.active {
    display: block;
    opacity: 1;
    transform: scale(1);
}

.result-card-inner {
    background: rgba(255, 255, 255, 0.01);
    border: 1px dashed rgba(212, 175, 55, 0.4);
    border-radius: 20px;
    padding: 30px;
    text-align: left;
}

.result-badge {
    display: inline-block;
    background: var(--red-gradient);
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 12px;
    margin-bottom: 15px;
}

.result-title {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--royal-gold-light);
    margin-bottom: 25px;
}

.result-body-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
    align-items: center;
}

.result-img-box {
    background: #111;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.result-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.result-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.result-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.result-price-tag {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--royal-gold);
}

.result-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px;
}

/* Dots Progress */
.quiz-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.quiz-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition-fast);
}

.quiz-dots .dot.active {
    background: var(--royal-gold);
    box-shadow: var(--shadow-glow-gold);
    width: 24px;
    border-radius: 4px;
}

/* Highlights Special UI Adjustments */
.btn-highlight-card {
    text-decoration: none;
    width: 100%;
    background: var(--gold-gradient);
    color: var(--text-dark);
    text-align: center;
    padding: 10px;
    border-radius: 12px;
    font-weight: 800;
    display: block;
    transition: var(--transition-fast);
}

.btn-highlight-card:hover {
    filter: brightness(1.1);
    transform: scale(1.02);
}

.btn-back-home {
    text-decoration: none;
    color: var(--text-light);
    border: 1px solid var(--royal-gold);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    transition: var(--transition-fast);
    background: rgba(212, 175, 55, 0.05);
}

.btn-back-home:hover {
    background: var(--royal-gold);
    color: var(--text-dark);
}

.highlight-nav-btn {
    border: 1px solid var(--royal-gold) !important;
    background: var(--red-gradient) !important;
    color: white !important;
    box-shadow: var(--shadow-glow-red);
}

.highlight-nav-btn:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Responsive additions for Quiz result grid */
@media (max-width: 600px) {
    .result-body-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .result-img-box {
        height: 150px;
    }
    .quiz-box-wrapper {
        padding: 30px 15px;
    }
}

/* ==========================================================================
   CARDÁPIO VERTICAL SCROLLING PAGE OVERRIDES
   ========================================================================== */
/* Keep all categories visible one after another */
.menu-page .tab-pane {
    display: block !important;
    opacity: 1 !important;
    transform: none !important;
    margin-bottom: 80px;
    scroll-margin-top: 110px; /* Offset for smooth scroll positioning */
}

/* Add a line separator between categories */
.menu-page .tab-pane:not(:first-child) {
    border-top: 1px dashed rgba(212, 175, 55, 0.2);
    padding-top: 60px;
}

/* Category header titles inside cardapio.html */
.category-title {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--royal-gold-light);
    margin-bottom: 35px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-left: 4px solid var(--primary-red-light);
    padding-left: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

.menu-page .menu-tabs {
    position: sticky;
    top: 80px;
    background: rgba(11, 11, 12, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 10px;
    z-index: 100;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    margin-bottom: 40px;
}

    .menu-page .tab-btn {
    text-decoration: none;
    display: inline-block;
}

@media (max-width: 768px) {
    .menu-page .menu-tabs {
        top: 75px;
    }
    .category-title {
        font-size: 1.4rem;
        margin-bottom: 25px;
    }
}

/* ==========================================================================
   GOOGLE MATERIAL ICONS CUSTOM STYLING & INTEGRATION
   ========================================================================== */
.material-icons-outlined {
    font-family: 'Material Icons Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    position: relative;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'liga';
}

/* Specific Sizes & Positioning Helpers */
.btn-icon {
    font-size: 1.2rem;
    margin-right: 8px;
    margin-top: -2px; 
}

.btn-icon-right {
    font-size: 1.2rem;
    margin-left: 8px;
    margin-top: -2px;
}

.title-icon {
    font-size: 2rem;
    color: var(--royal-gold);
    margin-right: 12px;
    vertical-align: sub;
}

.category-icon {
    font-size: 1.8rem;
    color: var(--royal-gold);
    margin-right: 10px;
}

.badge-icon {
    font-size: 0.95rem;
    margin-right: 6px;
    vertical-align: middle;
    color: inherit;
}

.badge-icon-small {
    font-size: 0.85rem;
    margin-right: 4px;
    vertical-align: middle;
}

.tab-icon {
    font-size: 1.1rem;
    margin-right: 6px;
    vertical-align: middle;
}

.inline-icon {
    font-size: 1.1rem;
    margin-right: 6px;
    vertical-align: middle;
    color: var(--royal-gold-light);
}

.nav-btn-icon {
    font-size: 1.1rem;
    margin-right: 6px;
    vertical-align: middle;
}

.card-icon-fallback {
    font-size: 3rem !important;
    color: rgba(212, 175, 55, 0.15) !important;
}

.sauce-emoji.material-icons-outlined {
    font-size: 1.5rem;
    color: var(--royal-gold);
    margin-right: 15px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.15);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.drink-icon.material-icons-outlined {
    font-size: 1.3rem;
    color: var(--royal-gold-light);
    margin-right: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Quiz Option Card Icon Color */
.quiz-option-card .option-icon {
    color: var(--royal-gold);
    margin-bottom: 8px;
}

/* Bread Badge Styles for Individual Cards */
.bread-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    padding: 5px 12px;
    border-radius: 20px;
    z-index: 10;
    text-transform: uppercase;
}

.bread-badge.baguete {
    background: var(--gold-gradient);
    color: var(--text-dark);
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.35);
}

.bread-badge.frances {
    background: linear-gradient(135deg, #e4dfd5, #f5f2eb);
    color: #1a1a1a;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.15);
}

/* ==========================================================================
   ENERGY BALL BACKGROUND EFFECT
   ========================================================================== */
#energy-ball-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 3; /* Behind website content (z-index: 5) but in front of greek meander (z-index: 2) */
    mix-blend-mode: screen; /* Perfect color glow blending */
    opacity: 0.7; /* Premium glow intensity */
    transition: opacity 1s ease;
}


