
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary: #ff6b35;
            --secondary: #f7931e;
            --dark: #1a1a1a;
            --light: #f8f9fa;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background-color: #fafafa;
            color: #333;
        }
        
        /* Navbar */
        .navbar {
            background: white;
            box-shadow: 0 2px 20px rgba(0,0,0,0.08);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            font-weight: 700;
            color: var(--primary) !important;
        }
        
        .navbar-brand span {
            color: var(--dark);
        }
        
        .nav-link {
            font-weight: 500;
            color: var(--dark) !important;
            padding: 8px 16px !important;
            transition: all 0.3s;
        }
        
        .nav-link:hover {
            color: var(--primary) !important;
        }
        
        /* Hero Section */
        /* .hero {
            background: linear-gradient(135deg, rgba(255,107,53,0.95) 0%, rgba(247,147,30,0.95) 100%),
                        url('image/hero-bg.png') center/cover;
            padding: 100px 0;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        } */
        .hero
            {    
                background: linear-gradient(135deg, rgba(255, 107, 53, 70%) 0%, rgba(247, 147, 30, 0.95) 100%), url(image/hero-bg.webp);
            background-size: cover;
            background-position: top;
            background-repeat: no-repeat;
            padding: 215px 0;
            text-align: center;
            color: white;
            height: 90vh;
            position: relative;
            overflow: hidden;
        }    
        
        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
            animation: shimmer 15s infinite linear;
        }
        
        @keyframes shimmer {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 56px;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
        }
        
        .hero p {
            font-size: 20px;
            opacity: 0.95;
            margin-bottom: 30px;
            position: relative;
        }
        
        .hero .btn {
            padding: 15px 40px;
            font-size: 18px;
            font-weight: 600;
            border-radius: 50px;
            position: relative;
        }
        
        .btn-primary-custom {
            background: white;
            color: var(--primary);
            border: none;
        }
        
        .btn-primary-custom:hover {
            background: var(--dark);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        /* Section Cards */
        .section-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            cursor: pointer;
            position: relative;
        }
        
        .section-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }
        
        .section-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
        }
        
        .section-image {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
        
        .section-content {
            padding: 25px;
            text-align: center;
        }
        
        .section-content h3 {
            font-size: 22px;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 10px;
        }
        
        .section-content p {
            color: #666;
            font-size: 14px;
        }
        
        .item-count {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 500;
            margin-top: 10px;
        }
        
        /* Menu Items */
        .menu-section {
            background: white;
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 30px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
        }
        
        .menu-section h2 {
            font-family: 'Playfair Display', serif;
            font-size: 36px;
            color: var(--dark);
            margin-bottom: 30px;
            text-align: center;
            position: relative;
        }
        
        .menu-section h2::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            margin: 15px auto 0;
            border-radius: 2px;
        }
        
        .menu-item {
            background: #fafafa;
            border-radius: 15px;
            padding: 20px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .menu-item:hover {
            background: white;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transform: translateX(5px);
        }
        
        .menu-item-image {
            width: 100px;
            height: 100px;
            border-radius: 12px;
            object-fit: cover;
            flex-shrink: 0;
        }
        
        .menu-item-details {
            flex-grow: 1;
        }
        
        .menu-item h4 {
            font-size: 18px;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 8px;
        }
        
        .menu-item p {
            color: #666;
            font-size: 14px;
            margin-bottom: 0;
        }
        
        .menu-item-price {
            text-align: right;
            flex-shrink: 0;
        }
        
        .menu-item-price .price {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
        }
        
        .btn-order {
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 25px;
            font-weight: 600;
            margin-top: 10px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            transition: all 0.3s ease;
            margin-left: 10px;
        }
        
        .btn-order:hover {
            background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(37,211,102,0.3);
        }
        
        .btn-add-cart {
            background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 25px;
            font-weight: 600;
            margin-top: 10px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .btn-add-cart:hover {
            background: linear-gradient(135deg, #e55a2b 0%, #e88410 100%);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(255,107,53,0.3);
        }
        
        /* Back Button */
        .back-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
            margin-bottom: 20px;
            transition: all 0.3s;
        }
        
        .back-btn:hover {
            color: var(--dark);
            transform: translateX(-5px);
        }
        
        /* Features */
        .features {
            padding: 80px 0;
            background: white;
        }
        
        .feature-box {
            text-align: center;
            padding: 30px;
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 32px;
            color: white;
        }
        
        .feature-box h4 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .feature-box p {
            color: #666;
        }
        
        /* Footer */
        .footer {
            border-top: 1px solid rgba(255,255,255,0.1);
            background: var(--dark);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer h5 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--primary);
        }
        
        .footer p, .footer a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
        }
        
        .footer a:hover {
            color: white;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 30px;
            margin-top: 40px;
            text-align: center;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            justify-content: center;
            margin-top: 20px;
        }
        
        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background: var(--primary);
        }
        
        /* Cart Styles */
        .cart-item {
            display: flex;
            align-items: center;
            padding: 15px;
            border-bottom: 1px solid #eee;
            gap: 15px;
        }
        
        .cart-item:last-child {
            border-bottom: none;
        }
        
        .cart-item-image {
            width: 60px;
            height: 60px;
            flex-shrink: 0;
        }
        
        .cart-item-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
        }
        
        .cart-item-details {
            flex-grow: 1;
        }
        
        .cart-item-details h6 {
            margin: 0 0 5px;
            font-weight: 600;
        }
        
        .cart-item-details .price {
            color: #666;
            margin: 0;
            font-size: 14px;
        }
        
        .cart-item-quantity {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .cart-item-quantity .qty-btn {
            width: 30px;
            height: 30px;
            border: 1px solid #ddd;
            background: white;
            border-radius: 5px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        
        .cart-item-quantity .qty-btn:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }
        
        .cart-item-quantity span {
            font-weight: 600;
            min-width: 30px;
            text-align: center;
        }
        
        .cart-item-total {
            font-weight: 700;
            color: var(--primary);
            font-size: 16px;
            min-width: 80px;
            text-align: right;
        }
        
        .cart-item .remove-btn {
            background: none;
            border: none;
            color: #dc2626;
            cursor: pointer;
            padding: 5px;
            transition: all 0.3s;
        }
        
        .cart-item .remove-btn:hover {
            transform: scale(1.2);
        }
        
        .cart-total {
            flex-grow: 1;
        }
        
        .cart-total h4 {
            margin: 0;
            color: var(--primary);
        }
        
        .btn-whatsapp {
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .btn-whatsapp:hover {
            background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(37,211,102,0.3);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 16px;
            }
            
            .menu-item {
                flex-direction: column;
                text-align: center;
            }
            
            .menu-item-price {
                text-align: center;
            }
        }
        
        /* Animations */
        .fade-in {
            animation: fadeIn 0.5s ease-in;
        }
        
        /* Promo Banner - Split Layout */
        .promo-banner {
            position: relative;
            padding: 0;
            min-height: 500px;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: #1a1a1a;
        }
        .promo-banner .split-container {
            display: flex;
            width: 100%;
            border-radius: 20px;
            background: linear-gradient(135deg, rgba(255,107,53,0.95) 0%, rgba(247,147,30,0.95) 100%);
            max-width: 1400px;
            margin: 0 auto;
            padding: 0;
            position: relative;
        }
        .promo-banner .text-side {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 60px 60px 60px 80px;
            
        }
        .promo-banner .image-side {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px;
            background: transparent;
        }
        .promo-banner h2 {
            font-family: 'Playfair Display', serif;
            font-size: 52px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
            color: white;
            text-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .promo-banner p {
            font-size: 18px;
            max-width: 500px;
            margin-bottom: 30px;
            line-height: 1.7;
            color: white;
            opacity: 0.95;
        }
        .promo-banner .btn-contact {
            background: white;
            color: var(--primary);
            padding: 16px 45px;
            font-size: 18px;
            font-weight: 600;
            border-radius: 50px;
            border: none;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            transition: all 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            width: fit-content;
        }
        .promo-banner .btn-contact:hover {
            background: var(--dark);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.25);
        }
        .promo-banner .banner-image {
            max-width: 100%;
            max-height: 420px;
            object-fit: contain;
            border-radius: 20px;
            box-shadow: 0 25px 60px rgba(0,0,0,0.35);
            border: 5px solid rgba(255,255,255,0.15);
            transition: transform 0.3s ease;
        }
        .promo-banner .banner-image:hover {
            transform: scale(1.02);
        }

        /* Menu Filter */
        .menu-filter {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            margin-bottom: 30px;
        }
        .filter-group {
            display: flex;
            gap: 15px;
            align-items: flex-end;
            flex-wrap: wrap;
        }
        .filter-input {
            flex: 1;
            min-width: 200px;
        }
        .filter-input label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            color: #666;
            margin-bottom: 6px;
        }
        .filter-input input, .filter-input select {
            width: 100%;
            padding: 10px 15px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 14px;
        }
        .filter-input input:focus, .filter-input select:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(255,107,53,0.1);
        }
        .filter-buttons {
            display: flex;
            gap: 10px;
        }
        .btn-filter {
            padding: 10px 25px;
            border-radius: 10px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-apply {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
        }
        .btn-apply:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255,107,53,0.3);
            color: white;
        }
        .btn-reset {
            background: #f3f4f6;
            color: #666;
            border: 2px solid #e5e7eb;
        }
        .btn-reset:hover {
            background: #e5e7eb;
            color: #333;
        }
        .filter-info {
            font-size: 13px;
            color: #888;
            margin-top: 10px;
        }
        @media (max-width: 768px) {
            .filter-input { min-width: 100%; }
            .filter-buttons { width: 100%; }
            .btn-filter { flex: 1; justify-content: center; }
        }
    