:root {
            --primary-gold: #f5a623;
            --btn-gold: #f5a623;
            --bg-color: #0b0b0b;
            --card-bg: #141414;
            --text-color: #ffffff;
            --text-muted: #a0a0a0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Plus Jakarta Sans', sans-serif;
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-color);
            overflow-x: hidden;
        }

        h1, h2, h3, .section-title {
            font-family: 'Playfair Display', serif;
        }

        @keyframes slideDownHeader {
            0% { transform: translateY(-50px); opacity: 0; }
            100% { transform: translateY(0); opacity: 1; }
        }

        @keyframes moveUpTitle {
            0% { transform: translateY(40px); opacity: 0; }
            100% { transform: translateY(0); opacity: 1; }
        }

        @keyframes subtleShake {
            0% { transform: translateX(0); }
            20% { transform: translateX(-4px); }
            40% { transform: translateX(4px); }
            60% { transform: translateX(-3px); }
            80% { transform: translateX(3px); }
            100% { transform: translateX(0); }
        }

        .animate-header { animation: slideDownHeader 0.8s ease forwards; }
        .animate-title-up { animation: moveUpTitle 0.9s ease forwards; }
        .animate-shake { animation: subtleShake 0.6s ease 1s; }

        .navbar {
            position: fixed;
            top: 0; left: 0; width: 100%;
            background: transparent;
            display: flex; justify-content: space-between; align-items: center;
            padding: 20px 50px; z-index: 1000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            transition: background-color 0.4s ease, padding 0.3s ease, border-color 0.3s ease;
        }

        .navbar.scrolled {
            background-color: rgba(11, 11, 11, 0.95);
            backdrop-filter: blur(10px);
            padding: 15px 50px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.15);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .brand {
            display: flex; align-items: center; gap: 12px;
            text-decoration: none; color: var(--text-color);
            font-weight: 800; font-size: 22px; letter-spacing: 1.5px;
        }

        .brand-logo-icon {
            width: 44px; height: 44px;
            background: linear-gradient(135deg, #f5a623, #d35400);
            border-radius: 50%; display: flex; align-items: center; justify-content: center;
            color: #000; font-size: 20px; box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4);
            transition: transform 0.3s ease;
        }

        .brand:hover .brand-logo-icon { transform: scale(1.1); }
        .brand span span { color: var(--primary-gold); }

        .nav-links { list-style: none; display: flex; gap: 30px; }
        .nav-links li a {
            text-decoration: none; color: var(--text-muted); font-size: 14px; font-weight: 500; transition: color 0.3s;
        }
        .nav-links li a:hover { color: var(--text-color); }

        .nav-right-actions { display: flex; align-items: center; gap: 15px; }
        .lang-switcher {
            display: flex; background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 20px; padding: 3px;
        }
        .lang-btn {
            background: transparent; border: none; color: var(--text-muted); font-size: 12px;
            font-weight: bold; padding: 5px 10px; border-radius: 15px; cursor: pointer; transition: all 0.3s;
        }
        .lang-btn.active { background: var(--primary-gold); color: #000; }

        .btn-commander-top {
            background: linear-gradient(135deg, #f5a623, #d35400); color: #000;
            padding: 10px 22px; border-radius: 30px; text-decoration: none; font-weight: bold; font-size: 14px;
            display: flex; align-items: center; gap: 8px; box-shadow: 0 4px 20px rgba(245, 166, 35, 0.4);
            transition: transform 0.2s;
        }
        .btn-commander-top:hover { transform: scale(1.05); }

        .hero {
            width: 100vw !important;
            max-width: 100% !important;
            height: 100vh;
            min-height: 100vh;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            padding: 0 80px;
            margin: 0 !important;
            overflow: hidden;
            background-color: #0b0b0b;
        }

        .hero-slide {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            z-index: 1; opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .hero-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .hero-slide.active { opacity: 1; }

        .hero-overlay {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(0deg, rgba(11,11,11,0.85) 0%, rgba(0,0,0,0.3) 50%, rgba(11,11,11,0.5) 100%);
            z-index: 2;
        }
        .hero > *:not(.hero-slide):not(.hero-overlay) { position: relative; z-index: 3; }

        html[dir="rtl"] .hero { align-items: flex-end; text-align: right; }

        .tag {
            font-size: 11px; letter-spacing: 2.5px; color: var(--primary-gold);
            text-transform: uppercase; margin-bottom: 15px; font-weight: 700;
            display: flex; align-items: center; gap: 10px;
        }
        html[dir="ltr"] .tag::before { content: ''; width: 25px; height: 2px; background-color: var(--primary-gold); display: inline-block; }
        html[dir="rtl"] .tag::after { content: ''; width: 25px; height: 2px; background-color: var(--primary-gold); display: inline-block; }

        .hero h1 { font-size: 76px; line-height: 1.05; margin-bottom: 20px; }
        .hero h1 span { color: var(--primary-gold); }
        .hero p.hero-desc { font-size: 16px; color: #e0e0e0; max-width: 500px; margin-bottom: 35px; line-height: 1.6; }

        .hero-buttons { display: flex; gap: 15px; margin-bottom: 45px; }
        .btn-primary {
            background-color: var(--primary-gold); color: #000; padding: 14px 30px;
            border-radius: 30px; text-decoration: none; font-weight: bold; display: inline-flex;
            align-items: center; gap: 10px; font-size: 14px; box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
            transition: transform 0.2s;
        }
        .btn-primary:hover { transform: scale(1.03); }

        .btn-secondary {
            background: rgba(0, 0, 0, 0.4); backdrop-filter: blur(5px); color: var(--text-color);
            border: 1px solid rgba(255,255,255,0.3); padding: 14px 30px; border-radius: 30px;
            text-decoration: none; font-weight: bold; display: inline-flex; align-items: center; gap: 10px; font-size: 14px;
            transition: border-color 0.3s;
        }
        .btn-secondary:hover { border-color: var(--primary-gold); }

        .hero-footer-info { display: flex; align-items: center; gap: 25px; font-size: 13px; color: var(--text-muted); }
        .hero-footer-info .rating { color: var(--primary-gold); font-weight: bold; }

        .hero-slider-dots { position: absolute; bottom: 40px; left: 80px; display: flex; align-items: center; gap: 15px; z-index: 3; }
        html[dir="rtl"] .hero-slider-dots { left: auto; right: 80px; }
        .slider-dot { width: 35px; height: 4px; background: rgba(255,255,255,0.4); border-radius: 2px; cursor: pointer; transition: background 0.3s, width 0.3s; }
        .slider-dot.active { background: var(--primary-gold); width: 50px; }

        .slider-labels { display: flex; gap: 15px; font-size: 12px; letter-spacing: 1px; font-weight: bold; color: var(--text-muted); margin-bottom: 12px; z-index: 3; }
        .slider-labels span.active-label { color: var(--primary-gold); }

        .ticker {
            background-color: #000; border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05);
            padding: 22px 0; overflow: hidden; white-space: nowrap;
        }
        .ticker-content { display: inline-block; animation: ticker 25s linear infinite; font-size: 20px; font-style: italic; color: var(--text-color); }
        .ticker-content span { color: var(--primary-gold); margin: 0 25px; }
        @keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        section { padding: 80px; max-width: 1300px; margin: 0 auto; }
        .section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 45px; }
        .section-title { font-size: 44px; }
        .section-title span { color: var(--primary-gold); }

        .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
        .card {
            background-color: var(--card-bg); border-radius: 22px; overflow: hidden;
            border: 1px solid rgba(255,255,255,0.06); display: flex; flex-direction: column; justify-content: space-between;
            position: relative; transition: transform 0.3s;
        }
        .card:hover { transform: translateY(-6px); }
        .card img { width: 100%; height: 240px; object-fit: cover; }
        .price-tag {
            position: absolute; top: 15px; right: 15px; background-color: var(--primary-gold);
            color: #000; padding: 6px 14px; border-radius: 20px; font-weight: bold; font-size: 14px; z-index: 2;
        }
        html[dir="rtl"] .price-tag { right: auto; left: 15px; }

        .card-body { padding: 25px; display: flex; flex-direction: column; flex-grow: 1; justify-content: space-between; }
        .card-body h3 { font-size: 22px; margin-bottom: 10px; }
        .card-body p { color: var(--text-muted); font-size: 14px; line-height: 1.5; margin-bottom: 20px; }

        .bowl-section {
            background: linear-gradient(135deg, #121212 0%, #1a150c 100%);
            border-radius: 25px; border: 1px solid rgba(245, 166, 35, 0.2);
            display: flex; align-items: center; justify-content: space-between; padding: 50px; margin: 40px auto; gap: 40px;
        }
        .bowl-content { max-width: 550px; }
        .bowl-img img { width: 450px; border-radius: 20px; object-fit: cover; }

        .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-top: 40px; }
        .feature-box {
            background-color: var(--card-bg); border: 1px solid rgba(255,255,255,0.06);
            border-radius: 20px; padding: 30px; transition: border-color 0.3s;
        }
        .feature-box:hover { border-color: var(--primary-gold); }
        .feature-icon {
            width: 50px; height: 50px; background: rgba(245, 166, 35, 0.1); color: var(--primary-gold);
            border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 20px;
        }
        .feature-box h3 { font-size: 20px; margin-bottom: 10px; }
        .feature-box p { color: var(--text-muted); font-size: 14px; line-height: 1.5; }

        .sauces-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-top: 35px; }
        .sauce-card {
            border-radius: 20px; padding: 30px; text-align: left; display: flex; flex-direction: column; justify-content: space-between; height: 180px; position: relative; overflow: hidden;
            transition: transform 0.3s;
        }
        html[dir="rtl"] .sauce-card { text-align: right; }
        .sauce-card:hover { transform: translateY(-4px); }
        .sauce-num { font-size: 12px; font-weight: bold; letter-spacing: 1px; text-transform: uppercase; opacity: 0.8; }
        .sauce-name { font-size: 32px; font-weight: bold; }
        
        .s-bbq { background: linear-gradient(135deg, #5c261c 0%, #3a150e 100%); color: #fff; }
        .s-garlic { background: linear-gradient(135deg, #f5edd8 0%, #e6d7b5 100%); color: #1a1a1a; }
        .s-sweet { background: linear-gradient(135deg, #e05a3b 0%, #b83d1e 100%); color: #fff; }
        .s-curry { background: linear-gradient(135deg, #f0a51c 0%, #c9810a 100%); color: #1a1a1a; }
        .s-ranch { background: linear-gradient(135deg, #f4f4f4 0%, #dedede 100%); color: #1a1a1a; }
        .s-spicy { background: linear-gradient(135deg, #b82b2b 0%, #8a1717 100%); color: #fff; }

        .faq-container { margin-top: 40px; display: flex; flex-direction: column; gap: 15px; }
        .faq-item {
            background: var(--card-bg); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; overflow: hidden;
            transition: border-color 0.3s;
        }
        .faq-item:hover { border-color: var(--primary-gold); }
        .faq-header {
            padding: 20px 25px; display: flex; justify-content: space-between; align-items: center; cursor: pointer;
        }
        .faq-question { font-size: 16px; font-weight: bold; }
        .faq-icon {
            color: var(--primary-gold); font-size: 14px;
            transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .faq-content {
            max-height: 0; overflow: hidden; padding: 0 25px;
            color: var(--text-muted); font-size: 14px; line-height: 1.6;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
        }
        .faq-item.active .faq-content { max-height: 200px; padding: 0 25px 20px 25px; }
        .faq-item.active .faq-icon { transform: rotate(180deg); }

        .site-footer {
            background-color: #0b0b0b;
            color: #ffffff;
            padding: 60px 80px 30px 80px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1.2fr 1.8fr 2fr;
            gap: 40px;
            margin-bottom: 50px;
        }
        .footer-col h3 {
            font-family: 'Playfair Display', serif;
            color: var(--primary-gold);
            font-size: 20px;
            margin-bottom: 20px;
        }
        .footer-col p {
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        .footer-logo-area {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            font-weight: bold;
            letter-spacing: 1px;
        }
        .footer-socials { display: flex; gap: 12px; }
        .footer-social-icon {
            width: 38px; height: 38px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            color: var(--text-color);
            text-decoration: none;
            transition: background 0.3s, color 0.3s;
        }
        .footer-social-icon:hover { background: var(--primary-gold); color: #000; }
        .footer-links-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
        .footer-links-list li a { color: var(--text-muted); text-decoration: none; font-size: 14px; transition: color 0.3s; }
        .footer-links-list li a:hover { color: var(--primary-gold); }
        .footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
        .footer-contact-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--text-muted); font-size: 14px; line-height: 1.4; }
        .footer-contact-list li i { color: var(--primary-gold); margin-top: 3px; }
        .newsletter-form {
            display: flex; background: #141414;
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 30px; overflow: hidden; padding: 4px; margin-bottom: 20px;
        }
        .newsletter-input { background: transparent; border: none; padding: 10px 15px; color: #fff; font-size: 14px; flex-grow: 1; outline: none; }
        .newsletter-btn {
            background: var(--primary-gold); color: #000; border: none;
            padding: 10px 20px; border-radius: 25px; font-weight: bold; font-size: 14px; cursor: pointer;
            transition: transform 0.2s;
        }
        .newsletter-btn:hover { transform: scale(1.05); }
        
        .footer-badges { display: flex; flex-wrap: wrap; gap: 8px; }
        .footer-badge {
            background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 6px 14px; border-radius: 20px; font-size: 12px; color: var(--text-muted);
        }
        .footer-bottom {
            display: flex; justify-content: space-between; align-items: center;
            padding-top: 25px; border-top: 1px solid rgba(255, 255, 255, 0.06); font-size: 13px; color: var(--text-muted);
        }

        @media(max-width: 1024px) {
            .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
        }
        @media(max-width: 768px) {
            .footer-grid { grid-template-columns: 1fr; }
            .site-footer { padding: 40px 20px 20px 20px; }
            .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
            .grid-3, .features-grid, .sauces-grid, .bowl-section { grid-template-columns: 1fr; }
            .hero { padding: 140px 20px 60px 20px; }
            section { padding: 40px 20px; }
        }

/* BUNFRY_HEADER_LOCK */
.navbar{background:#111!important;}
html[data-theme="light"] .navbar{background:#111!important;}
