/* --- 1. VARIABLES & ELEMENTOR OVERRIDES (FORCE MODE) --- */
:root {
    /* 1.1. Custom Theme Variables */
    --color-black: #000000;
    --color-white: #FFFFFF;
    --brand-orange: #FF9900; 
    --header-height: 100px;
    --font-main: 'Inter', sans-serif;
}

/* We target 'body' and use !important to strictly override 
   Elementor's Site Kit settings which load later.
*/
body {
    --e-global-color-primary: var(--color-black) !important;
    --e-global-color-secondary: var(--color-black) !important;
    --e-global-color-text: #333333 !important;
    --e-global-color-accent: var(--brand-orange) !important;
    
    font-family: var(--font-main);
    color: var(--color-black);
    background-color: var(--color-white);
    line-height: 1.6;
    padding-top: 0 !important;
}

/* --- 2. GLOBAL RESET --- */
* { box-sizing: border-box; margin: 0; padding: 0; }
.site-content { margin-top: 0 !important; }
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; margin: 0; padding: 0; }

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

/* --- 3. HEADER LAYOUT --- */
.site-header {
    background-color: var(--color-white);
    height: var(--header-height);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

.header-left, .header-right { flex: 1; display: flex; align-items: center; }
.header-right { justify-content: flex-end; }
.header-center { flex: 0 0 auto; } 

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

.nav-list { display: flex; gap: 30px; }
.nav-list a {
    font-weight: 700; font-size: 15px; text-transform: uppercase;
    color: var(--color-black); letter-spacing: 0.5px;
}
.nav-list a:hover { color: var(--brand-orange); }

.btn-orange {
    background-color: var(--brand-orange);
    color: var(--color-white) !important;
    padding: 12px 30px;
    font-weight: 700; text-transform: uppercase;
    border-radius: 4px; font-size: 14px; white-space: nowrap;
}
.btn-orange:hover { background-color: #E68A00; }

.mobile-toggle, .mobile-menu-overlay { display: none; }

/* --- 4. RESPONSIVE / MOBILE STYLES --- */
@media (max-width: 1200px) {
    .desktop-only { display: none !important; }
    .header-left, .header-right { flex: 0 0 auto; }
    .header-center { flex: 1; display: flex; justify-content: center; padding: 0 10px; }
    .logo-img { max-height: 55px; }

    .mobile-toggle {
        display: flex; align-items: center; justify-content: center;
        background: none; border: none; cursor: pointer;
        width: 44px; height: 44px; padding: 0;
    }

    .burger-icon, .burger-icon::before, .burger-icon::after {
        width: 26px; height: 3px; background-color: var(--color-black);
        border-radius: 2px; transition: 0.3s;
    }
    .burger-icon { position: relative; display: block; }
    .burger-icon::before, .burger-icon::after { content: ''; position: absolute; left: 0; }
    .burger-icon::before { top: -8px; }
    .burger-icon::after { top: 8px; }

    .btn-orange { padding: 10px 16px; font-size: 12px; }

    .mobile-menu-overlay {
        position: fixed; top: var(--header-height); left: 0;
        width: 100%; height: calc(100vh - var(--header-height));
        background-color: var(--color-white); border-top: 1px solid #eee;
        z-index: 999; overflow-y: auto;
    }
    
    .mobile-nav-list { list-style: none; padding: 0; margin: 0; }
    .mobile-nav-list li a {
        display: block; padding: 20px; font-weight: 700;
        text-transform: uppercase; color: var(--color-black);
        border-bottom: 1px solid #f0f0f0; font-size: 16px;
    }
    .mobile-nav-list li:nth-child(odd) a { background-color: #fafafa; }
    .mobile-menu-overlay.active { display: block; }
}

/* =========================================
   HERO & GLASS CARD SYSTEM
   ========================================= */

/* --- 1. HERO SECTION --- */
.hero-section {
    position: relative;
    isolation: isolate; 
}

/* The Dark Overlay */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.65) !important; 
    z-index: -1; 
    pointer-events: none;
}

.hero-title .elementor-heading-title,
.hero-section .elementor-heading-title {
    color: var(--color-white) !important;
}

/* --- 2. HUGE HERO TITLE --- */
.hero-title .elementor-heading-title {
    font-size: 64px !important;
    line-height: 1.1 !important;
    font-weight: 900 !important;
    text-transform: uppercase;
    color: var(--color-white) !important;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .hero-title .elementor-heading-title {
        font-size: 36px !important;
        line-height: 1.2 !important;
    }
}

/* =========================================
   GLASS PANELS & CARDS
   ========================================= */

/* --- 1. GLASS PANEL --- */
.glass-panel, 
.story-card {
    background-color: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 40px !important;
    border: 1px solid rgba(255, 255, 255, 0.6); 
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

.glass-panel h2, .glass-panel h3, .glass-panel .elementor-heading-title {
    color: var(--color-black) !important;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.glass-panel p, .glass-panel .elementor-widget-text-editor {
    color: #444 !important;
    font-size: 15px;
    line-height: 1.6;
}

/* --- 2. LOOP GRID CARD STYLING --- */
.glass-panel .elementor-grid-item,
.glass-panel .e-loop-item {
    background-color: #ffffff !important;
    border: none !important;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease; 
}

.glass-panel .elementor-grid-item:hover,
.glass-panel .e-loop-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.glass-panel .elementor-post-info { display: none !important; }

/* Image in Loop */
.elementor-loop-grid .elementor-widget-image img {
    height: 200px !important;      
    width: 100% !important;        
    object-fit: cover !important;  
    border-radius: 8px !important; 
    margin-bottom: 15px !important;
}

/* Read More Button */
.glass-panel .elementor-loop-grid .elementor-button {
    background-color: transparent !important;
    color: var(--brand-orange) !important;
    padding: 0 !important;
    margin-top: 10px;
    width: auto !important;
    text-align: left;
    text-transform: uppercase;
    font-size: 13px !important;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
}

.glass-panel .elementor-loop-grid .elementor-button::after {
    content: '→';
    margin-left: 5px;
    transition: margin-left 0.2s;
}
.glass-panel .elementor-loop-grid .elementor-button:hover::after { margin-left: 10px; }

/* Excerpt */
.glass-panel .elementor-loop-grid p {
    font-size: 14px !important;
    line-height: 1.5 !important;
    color: #555 !important;
    display: -webkit-box;
    -webkit-line-clamp: 3; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* =========================================
   ADVANCED TABS: STYLES & FIXES
   ========================================= */

/* --- 1. GLOBAL CONTAINER --- */
.tabs-scroll-container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between;
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 25px !important;
    gap: 15px;
    position: relative !important;
    z-index: 50;
    box-sizing: border-box !important;
}

/* Remove Blue Highlights & Focus Rings */
.tabs-scroll-container *,
.tabs-nav-arrow:focus,
.menu-tabs .elementor-tab-title:focus {
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
    user-select: none; /* Prevent text selection */
}

/* --- 2. ARROW BUTTONS --- */
.tabs-nav-arrow {
    flex: 0 0 44px !important; 
    width: 44px !important;
    height: 44px !important;
    
    background: #fff;
    color: #000;
    border: 1px solid #eee;
    border-radius: 50%;
    
    display: flex; 
    align-items: center; 
    justify-content: center;
    
    cursor: pointer;
    z-index: 20;
    font-size: 18px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.tabs-nav-arrow:hover {
    background: var(--brand-orange);
    color: #fff;
    border-color: var(--brand-orange);
    transform: scale(1.05);
}

/* Disabled Arrow */
.tabs-nav-arrow.disabled {
    opacity: 0.4;
    cursor: default;
    background: #f9f9f9;
    color: #ccc;
    border-color: #eee;
    box-shadow: none;
    pointer-events: none; /* Physically unclickable */
}

/* --- 3. DESKTOP LIST (The Scrollable Area) --- */
.menu-tabs .elementor-tabs-wrapper,
.menu-tabs .e-n-tabs-heading {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    
    /* Layout Logic */
    flex: 1 1 0% !important; 
    width: 0 !important; 
    min-width: 0 !important;
    justify-content: flex-start !important;
    
    /* Scroll Logic */
    overflow-x: auto !important;
    overflow-y: hidden !important;
    
    gap: 10px !important;
    border: none !important; margin: 0 !important; padding: 0 !important;
    
    /* Hide Scrollbar */
    -ms-overflow-style: none;  
    scrollbar-width: none;  
    
    cursor: grab; /* Show 'Hand' cursor */
    scroll-behavior: smooth; 
}

/* Hide Scrollbar Webkit */
.menu-tabs .elementor-tabs-wrapper::-webkit-scrollbar,
.menu-tabs .e-n-tabs-heading::-webkit-scrollbar { display: none; }

/* Dragging State */
.menu-tabs .elementor-tabs-wrapper.active,
.menu-tabs .e-n-tabs-heading.active {
    cursor: grabbing;
    scroll-behavior: auto !important; /* Instant response for drag */
}

/* --- 4. TAB BUTTON STYLES (THE "PILLS") --- */
.menu-tabs .elementor-tab-title,
.menu-tabs .e-n-tab-title {
    flex: 0 0 auto !important; /* Don't shrink */
    
    /* Visual Style */
    padding: 10px 24px !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 50px !important; /* Pill Shape */
    background-color: transparent !important;
    
    /* Typography */
    color: var(--color-black) !important;
    font-family: 'Inter', sans-serif !important; /* Or your theme font */
    font-weight: 600 !important;
    font-size: 14px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    
    white-space: nowrap; 
    transition: all 0.3s ease;
}

/* Hover State */
.menu-tabs .elementor-tab-title:hover,
.menu-tabs .e-n-tab-title:hover {
    border-color: var(--brand-orange) !important;
    color: var(--brand-orange) !important;
}

/* Active State (Selected Tab) */
.menu-tabs .elementor-tab-title.elementor-active,
.menu-tabs .e-n-tab-title.e-active,
.menu-tabs .e-n-tab-title[aria-selected="true"] {
    background-color: var(--color-black) !important;
    color: #fff !important;
    border-color: var(--color-black) !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15); /* Nice shadow */
}

/* --- 5. MOBILE DROPDOWN --- */
.mobile-tab-trigger { display: none; }
body.no-scroll { overflow: hidden !important; }

@media (max-width: 768px) {
    /* Show Arrows on Mobile */
    .tabs-nav-arrow { display: flex !important; z-index: 100002; }

    /* Hide Real List */
    .menu-tabs .elementor-tabs-wrapper,
    .menu-tabs .e-n-tabs-heading {
        display: none !important;
        
        position: absolute; top: 55px; left: 0;
        width: 100% !important; height: auto !important;
        flex: auto !important; 
        flex-direction: column !important; align-items: stretch !important;
        
        background: #fff !important;
        border: 1px solid #eee; border-radius: 12px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        padding: 10px !important;
        z-index: 100001 !important;
        max-height: 60vh; overflow-y: auto !important;
    }

    .menu-tabs.dropdown-open .elementor-tabs-wrapper,
    .menu-tabs.dropdown-open .e-n-tabs-heading {
        display: flex !important;
        animation: fadeInDrop 0.2s ease-out;
    }

    /* Mobile Trigger Button */
    .mobile-tab-trigger {
        display: flex; align-items: center; justify-content: space-between;
        padding: 0 20px; flex: 1; height: 44px;
        background: #000; color: #fff;
        border-radius: 50px; font-weight: 700; font-size: 13px;
        text-transform: uppercase; cursor: pointer; z-index: 20;
    }
    .mobile-tab-trigger::after { content: '▼'; font-size: 10px; opacity: 0.8; }
    
    /* Dropdown Items */
    .menu-tabs .elementor-tab-title,
    .menu-tabs .e-n-tab-title {
        width: 100% !important; text-align: left;
        border: none !important; border-bottom: 1px solid #f5f5f5 !important;
        border-radius: 8px !important; margin-bottom: 2px !important;
        justify-content: flex-start !important; display: flex !important;
        background: #fff !important; color: #333 !important;
        box-shadow: none !important; /* Remove shadow inside dropdown */
    }
    
    /* Active in Dropdown */
    .menu-tabs .elementor-tab-title.elementor-active,
    .menu-tabs .e-n-tab-title.e-active {
        background: #f2f2f2 !important; color: var(--brand-orange) !important;
    }
}
@keyframes fadeInDrop { from{opacity:0;transform:translateY(-10px)} to{opacity:1;transform:translateY(0)} }

/* =========================================
   FOOD CARDS (INSIDE MENU)
   ========================================= */
.food-card {
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 20px;
    display: flex; flex-direction: column;
    align-items: center; text-align: center;
    justify-content: space-between;
    height: 100%;
    border: 1px solid #333;
    transition: 0.3s;
}
.food-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    border-color: var(--brand-orange);
}

.food-card .elementor-widget-image img { height: 160px !important; width: 100% !important; object-fit: cover; border-radius: 8px; }
.food-card h3, .food-card .elementor-heading-title { color: var(--color-white) !important; font-size: 18px; margin-bottom: 8px; }
.food-card p, .food-card .elementor-widget-text-editor { color: #aaaaaa !important; font-size: 13px; line-height: 1.4; margin-bottom: 15px; }

.price-badge .elementor-heading-title {
    background-color: var(--brand-orange);
    color: var(--color-black) !important;
    padding: 6px 15px;
    border-radius: 4px;
    font-weight: 800; font-size: 14px;
    display: inline-block;
}

/* =========================================
   BLOG PAGE: OVERLAY CARD STYLE (FINAL POLISH V3)
   ========================================= */

/* 1. Main Card Container */
.blog-overlay-card {
    position: relative;
    height: 450px !important;
    border-radius: 16px;
    overflow: hidden;
    padding: 0 !important;
    
    /* Flex setup to push content down */
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    align-items: stretch !important; /* Stretch content full width */
    
    /* Background Settings */
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    
    isolation: isolate;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-overlay-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

/* 2. Date Badge (Fitted & Lightly Darkened) */
.date-badge {
    position: absolute !important;
    top: 20px;
    right: 20px;
    z-index: 10;
    
    /* CRITICAL: Fit size to text exactly */
    width: max-content !important; 
    max-width: 100% !important;
    display: inline-flex !important;
    justify-content: center;
    align-items: center;
    
    /* Visuals: Light dark tint + White Border */
    background-color: rgba(0, 0, 0, 0.3) !important; /* Slight dark tint for readability */
    border: 1px solid rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(4px);
    
    padding: 6px 14px;
    border-radius: 50px; /* Pill shape */
}

.date-badge .elementor-heading-title {
    color: #ffffff !important;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 !important;
    letter-spacing: 0.5px;
    white-space: nowrap; /* Prevent date breaking lines */
}

/* 3. Content Container (Transparent & Compact) */
.card-content {
    position: relative;
    z-index: 5;
    
    /* Positioning */
    width: 100% !important;
    margin: 0 !important;
    margin-top: auto !important; /* Push to very bottom */
    
    /* Compact Spacing */
    padding: 25px 30px !important; /* Less vertical padding */
    
    /* Visuals: More Transparent */
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 100%); /* Gradient instead of flat color */
    backdrop-filter: blur(5px);
    border-top: 1px solid rgba(255,255,255,0.15);
    
    border-radius: 0 !important;
    
    display: flex;
    flex-direction: column;
    gap: 8px; /* Closer elements */
    align-items: flex-start;
}

/* Typography */
.card-content h3,
.card-content .elementor-heading-title {
    color: #FFFFFF !important;
    font-size: 20px; /* Slightly smaller to save space */
    font-weight: 800;
    line-height: 1.2;
    margin: 0 !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.card-content p,
.card-content .elementor-widget-post-excerpt {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 13px;
    line-height: 1.4;
    margin: 0 !important;
    
    /* Limit to 2 lines */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Button Styling */
.card-content .elementor-button {
    background-color: var(--brand-orange) !important;
    color: #fff !important;
    border-radius: 4px;
    font-weight: 700;
    font-size: 11px !important;
    text-transform: uppercase;
    padding: 8px 16px !important;
    border: none !important;
    margin-top: 8px;
    width: auto !important;
}

.card-content .elementor-button:hover {
    background-color: #fff !important;
    color: var(--color-black) !important;
}

/* Fake Button Styling (For cards that are already links) */
.fake-btn, 
.fake-btn .elementor-heading-title {
    background-color: var(--brand-orange) !important;
    color: #fff !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    padding: 10px 20px !important;
    border-radius: 4px;
    display: inline-block;
    width: auto;
    cursor: pointer;
}

/* =========================================
   FOOTER STYLES (DARK THEME)
   ========================================= */

.sushi-footer {
    background-color: #1a1a1a; /* Dark Charcoal */
    color: #b0b0b0; /* Soft Gray Text */
    padding: 70px 0 0 0;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    margin-top: auto; /* Pushes footer to bottom if page is short */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

/* --- Columns --- */
.footer-col {
    flex: 1;
    min-width: 220px; /* Ensures columns wrap nicely on tablets */
}

/* --- Headings --- */
.footer-heading {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--brand-orange, #FF9900); /* Uses your variable */
}

/* --- Logo & Socials --- */
.footer-logo {
    font-size: 26px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    line-height: 1;
}
.footer-logo span { color: var(--brand-orange, #FF9900); }

.footer-socials {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}
.footer-socials a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    font-size: 12px;
    border: 1px solid #444;
    padding: 5px 12px;
    border-radius: 20px;
    transition: 0.3s;
}
.footer-socials a:hover {
    background-color: var(--brand-orange, #FF9900);
    border-color: var(--brand-orange, #FF9900);
    color: #000;
}

/* --- Links List --- */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.2s ease;
    display: block;
}
.footer-links a:hover {
    color: var(--brand-orange, #FF9900);
    transform: translateX(5px);
}

/* --- Contact Items --- */
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #b0b0b0;
}
.contact-icon {
    color: var(--brand-orange, #FF9900);
    margin-right: 12px;
    font-size: 16px;
    margin-top: 2px;
}

/* --- Hours Grid --- */
.hours-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.hours-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
}
.hours-day { color: #fff; font-weight: 600; font-size: 13px; }
.hours-time { text-align: right; font-size: 13px; }

/* --- Bottom Bar --- */
.footer-bottom {
    background-color: #111; /* Slightly darker */
    margin-top: 60px;
    padding: 20px 0;
    border-top: 1px solid #222;
}
.copyright-row {
    font-size: 12px;
    color: #555;
    align-items: center;
}

/* Container */
.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

/* Button Circle Style */
.footer-socials .social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1); /* Visible grey background */
    border-radius: 50%;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

/* Icon Style */
.footer-socials .social-icon i {
    font-size: 18px;
    color: #ffffff;
}

/* Hover Effect */
.footer-socials .social-icon:hover {
    background-color: #FFA500; /* Brand Orange */
    transform: translateY(-3px);
}

/* --- Mobile Fixes --- */
@media (max-width: 768px) {
    .sushi-footer { text-align: left; }
    .footer-container { flex-direction: column; gap: 40px; }
    .hours-row { max-width: 100%; }
}