        /* === STRATEGI SUN TZU UNTUK RESTORAN SAMBAL SSS === */
        :root {
            /* Palet Warna Strategis - Menggambarkan Kehangatan & Kekuatan */
            --primary-red: #D32F2F;        /* Merah Cabe - Energi & Vitalitas */
            --secondary-orange: #FF8F00;   /* Orange - Kehangatan Nusantara */
            --accent-gold: #FFD700;        /* Emas - Kemewahan & Kualitas Premium */
            --dark-brown: #5D4037;         /* Coklat - Tanah & Tradisi */
            --warm-white: #FFF8E1;         /* Krem - Kebersihan & Kesucian */
            --deep-green: #2E7D32;         /* Hijau - Segar & Alami */
            --text-dark: #212121;          /* Hitam Teks - Kejelasan */
            --text-light: #757575;         /* Abu-abu - Keanggunan */
        }

        /* Typography Strategy - Memancarkan Otoritas & Kepercayaan */
        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background: linear-gradient(135deg, var(--warm-white) 0%, #FFF3E0 100%);
        }

        

        .hero-subtitle {
            font-size: 1.5rem;
            color: var(--dark-brown);
            font-weight: 500;
            margin-bottom: 2rem;
        }

        /* Header Strategy - first impression yang kuat */
        .site-header {
            background: linear-gradient(135deg, var(--primary-red) 0%, #B71C1C 100%);
            box-shadow: 0 8px 32px rgba(211, 47, 47, 0.3);
            position: relative;
            overflow: hidden;
        }

        .site-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="chili" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23chili)"/></svg>');
            opacity: 0.3;
        }

        .logo-col img {
            height: 150px;
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
        }

        .main-nav a {
            color: white !important;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            position: relative;
        }

        .main-nav a:hover {
            color: var(--accent-gold) !important;
            transform: translateY(-2px);
        }

        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            transition: width 0.3s ease;
        }

        .main-nav a:hover::after {
            width: 100%;
        }

        /* CTA Buttons - Sun Tzu's Direct Approach */
        .cta-button, .lnk-btn a {
            background: linear-gradient(45deg, var(--secondary-orange), var(--accent-gold));
            color: white !important;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 8px 25px rgba(255, 143, 0, 0.4);
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .cta-button:hover, .lnk-btn a:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 12px 35px rgba(255, 143, 0, 0.6);
            background: linear-gradient(45deg, var(--accent-gold), var(--secondary-orange));
        }

        /* Product Cards Strategy - Visual Hierarchy */
        .reseller-section {
            background: linear-gradient(135deg, var(--warm-white) 0%, #FFF3E0 100%);
            padding: 80px 20px;
            position: relative;
        }

        .reseller-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="spices" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="3" fill="rgba(211,47,47,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23spices)"/></svg>');
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 50px;
            position: relative;
            z-index: 2;
        }

        .product-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            border: 3px solid transparent;
        }

        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, var(--primary-red), var(--secondary-orange));
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .product-card:hover::before {
            opacity: 0.05;
        }

        .product-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 20px 60px rgba(211, 47, 47, 0.2);
            border-color: var(--accent-gold);
        }

        .product-card img {
            width: 180px;
            height: 180px;
            object-fit: cover;
            border: 6px solid var(--accent-gold);
            margin-bottom: 25px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .product-card:hover img {
            transform: scale(1.1) rotate(1deg);
            border-color: var(--primary-red);
        }

        .product-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 600;
            color: var(--primary-red);
            margin-bottom: 20px;
            text-transform: capitalize;
        }

        .product-card .description {
            color: var(--text-light);
            margin-bottom: 25px;
            font-style: italic;
            line-height: 1.5;
        }

        /* Responsive Design Strategy */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .product-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .product-card {
                padding: 20px;
            }
            
            .product-card img {
                width: 150px;
                height: 150px;
            }
        }

        /* Loading Animation - Sun Tzu's Patience */
        .product-card {
            animation: fadeInUp 0.6s ease-out;
        }

        .product-card:nth-child(1) { animation-delay: 0.1s; }
        .product-card:nth-child(2) { animation-delay: 0.2s; }
        .product-card:nth-child(3) { animation-delay: 0.3s; }
        .product-card:nth-child(4) { animation-delay: 0.4s; }
        .product-card:nth-child(5) { animation-delay: 0.5s; }
        .product-card:nth-child(6) { animation-delay: 0.6s; }

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

        /* Special Elements untuk Brand Identity */
        .badge-premium {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--accent-gold);
            color: var(--text-dark);
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
        }

        .rolling-indicator {
            background: var(--deep-green);
            color: white;
            padding: 10px 20px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 500;
            display: inline-block;
            margin-top: 15px;
            animation: pulse 2s infinite;
        }


        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        /* Mobile Navigation Enhancement */
        .mobile-menu-wrapper {
            background: linear-gradient(135deg, var(--primary-red) 0%, #B71C1C 100%);
        }

        .mobile-menu-bar ul {
            list-style: none;
            padding: 20px;
        }

        .mobile-menu-bar ul li {
            margin-bottom: 15px;
        }

        .mobile-menu-bar a {
            color: white !important;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            display: block;
            padding: 15px;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .mobile-menu-bar a:hover {
            background: rgba(255,255,255,0.1);
            color: var(--accent-gold) !important;
            transform: translateX(10px);
        }

        /* Smooth Scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Enhanced Footer */
        .site-footer {
            background: linear-gradient(135deg, var(--dark-brown) 0%, #3E2723 100%);
            color: white;
        }

        .footer-logo img {
            height: 50px;
            filter: brightness(0) invert(1);
        }

        .footer-widget h4 {
            color: var(--accent-gold);
            margin-bottom: 20px;
        }

        .footer-widget a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-widget a:hover {
            color: var(--accent-gold);
        }

        /* Enhanced Stats Cards */
        .stat-card {
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
        }

        /* Loading States */
        .product-card {
            opacity: 0;
            animation: fadeInUp 0.6s ease-out forwards;
        }

        /* Parallax Effect untuk Hero Section */
        .site-header {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }

        /* Additional Mobile Optimizations */
        @media (max-width: 480px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .section-header h2 {
                font-size: 2rem !important;
            }
            
            .product-card {
                margin-bottom: 20px;
            }
            
            .stat-card {
                margin-bottom: 15px;
            }
        }

        /* Enhanced Hover Effects */
        .product-card:hover .badge-premium {
            animation: bounce 0.6s ease;
        }

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

        /* Strategic Elements */
        .formasi-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background: var(--deep-green);
            color: white;
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Enhanced CTA Buttons */
        .cta-button i {
            animation: fire-flicker 2s infinite alternate;
        }

        @keyframes fire-flicker {
            0% { opacity: 1; }
            100% { opacity: 0.7; }
        }

        /* Strategic Grid Layout */
        .container {
            position: relative;
        }

        .container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 100%;
            background: linear-gradient(to bottom, transparent, var(--accent-gold), transparent);
            opacity: 0.1;
            z-index: 1;
        }

        /* Enhanced Typography Hierarchy */
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }

        /* Strategic Messaging */
        .quote-strategic {
            font-style: italic;
            font-size: 1.1rem;
            color: var(--text-light);
            border-left: 4px solid var(--accent-gold);
            padding-left: 20px;
            margin: 30px 0;
        }

        /* Mobile-First Responsive Design */
        .mobile-only {
            display: none;
        }

        @media (max-width: 768px) {
            .mobile-only {
                display: block;
            }
            
            .desktop-only {
                display: none;
            }
            
            .product-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .main-nav {
                display: none;
            }
            
            .stat-card {
                margin-bottom: 15px;
            }
        }
    
        /* --- Gaya Umum & Font --- */
        body {
            font-family: 'Open Sans', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f8f8f8;
            color: #333;
        }

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


        /* --- Gaya Header (dari kode asli Anda, mungkin perlu penyesuaian) --- */
        /* Catatan: Gaya ini adalah asumsi karena CSS asli tidak disertakan. */
        .site-header {
            background-color: #fff;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            position: relative;
        }
        .main-navigationbar .navigationbar-row {
            padding: 10px 0;
        }
        .main-nav {
            display: flex;
            list-style: none;
            padding: 0;
            margin: 0;
            align-items: center;
        }
        .main-nav li {
            margin-right: 20px;
        }
        .main-nav a {
            text-decoration: none;
            color: white;
            font-weight: 600;
        }
        .mobile-item a {
            color: white;
        }
        .lnk-btn a {
            background-color: #007bff;
            color: white;
            padding: 8px 15px;
            border-radius: 5px;
            display: flex;
            align-items: center;
        }
        .mobile-menu {
            display: none;
        }

        /* --- Gaya untuk Bagian Produk Reseller SSS --- */
        .reseller-section {
            /* Gunakan gambar latar belakang dari sumber Anda */
            background-color: #faf6e9;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            padding: 60px 20px;
            text-align: center;
        }

        .section-header h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            color: #ffffffff; /* Warna merah cabe */
            margin-bottom: 10px;
        }

        .section-header h2 {
            font-size: 2rem;
            font-weight: 600;
            color: #ffffffff;
            margin-top: 0;
        }

        /* --- Gaya Grid Produk --- */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .product-card {
            background-color: #ffffff;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            padding: 25px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
        }

        .product-card img {
            width: 150px;
            height: 150px;
            border-radius: 50%; /* Membuat gambar bulat */
            object-fit: cover; /* Memastikan gambar tidak terdistorsi */
            border: 5px solid #f0f0f0;
            margin-bottom: 20px;
        }

        .product-card h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.5rem;
            color: #333;
            margin: 0 0 20px 0;
        }

        .product-card .cta-button {
            background-color: #c62828; /* Warna merah tombol */
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 50px; /* Tombol dengan ujung bulat (pill shape) */
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .product-card .cta-button:hover {
            background-color: #a01b1b; /* Warna merah lebih tua saat hover */
        }

        /* --- Responsif untuk Layar Lebih Kecil --- */
        @media (max-width: 768px) {
            .main-nav {
                flex-direction: column;
            }
            .mobile-menu {
                display: block;
            }
            .section-header h1 {
                font-size: 2rem;
            }
            .section-header h2 {
                font-size: 1.5rem;
            }
            .product-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 20px;
            }
        }
