 /* --- CSS RESET & BASIC SETUP --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; /* Font bersih ala Oneighty */
            background-color: #fff;
            color: #111;
            line-height: 1.6;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        /* --- NAVBAR --- */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 40px;
            z-index: 1000;
            transition: all 0.3s ease;
            color: #fff; /* Default text putih di hero */
        }

        /* Kelas ini ditambahkan lewat JS saat scroll */
        .navbar.scrolled {
            background-color: #fff;
            color: #000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            padding: 15px 40px;
        }

        .logo {
            font-size: 24px;
            font-weight: 800;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .nav-links {
            display: flex;
            gap: 30px;
        }

        .nav-links a {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            opacity: 0.6;
        }

        .nav-icons {
            display: flex;
            gap: 20px;
            font-size: 18px;
            cursor: pointer;
        }

        .btn-main {
            background-color: #ff515b;
            padding: 10px 20px;
            color: #fff;
            border: none;
            font-size: 18px;
            border-radius: 7px;
            font-weight: 700;
        }

        /* Hamburger Menu (Mobile) */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }
        .bar {
            width: 25px;
            height: 2px;
            background-color: currentColor;
        }

        /* --- HERO SECTION (UPDATED FOR SLIDER) --- */
        .hero {
            position: relative; /* Penting sebagai wadah posisi absolut */
            height: 100vh;
            width: 100%;
            overflow: hidden; /* Mencegah gambar keluar wadah */
            color: white;
        }

        /* Container Slider */
        .hero-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0; /* Berada di belakang teks */
        }

        /* Individual Slide Image */
        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0; /* Default tidak terlihat */
            /* Transisi halus selama 1.5 detik */
            transition: opacity 1.5s ease-in-out; 
            z-index: -1;
        }

        /* Class yang ditambahkan JS agar gambar terlihat */
        .hero-slide.active {
            opacity: 1;
            z-index: 0;
        }

        /* Container Teks agar tetap di tengah dan di atas gambar */
        .hero-content {
            position: relative;
            z-index: 2; /* Pastikan teks di atas slider (z-index lebih tinggi) */
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        /* Style H1 dan Button tetap sama seperti sebelumnya, dipindahkan ke bawah hero-content */
        .hero-content h1 {
                font-size: 4rem;
                text-transform: uppercase;
                letter-spacing: 5px;
                margin-bottom: 0px;
                font-weight: 700;
        }

        .sub-hero-text {
            font-size: 1rem;
            margin-bottom: 20px;
        }
        
        /* Responsif untuk H1 */
        @media (max-width: 768px) {
             .hero-content h1 {
                font-size: 2.5rem;
            }
        }

        /* --- NEW ARRIVALS / PRODUCTS --- */
        .section-title {
            text-align: center;
            margin: 80px 0 40px;
            font-size: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive Grid */
            gap: 20px;
            padding: 0 40px 80px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .product-card {
            cursor: pointer;
        }

        .product-image {
            width: 100%;
            height: 450px;
            overflow: hidden;
            position: relative;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .product-card:hover .product-image img {
            transform: scale(1.05); /* Zoom effect saat hover */
        }

        .product-info {
            padding-top: 15px;
            text-align: center;
        }

        .product-name {
            font-size: 14px;
            text-transform: uppercase;
            margin-bottom: 5px;
            color: #333;
        }

        .product-price {
            font-size: 14px;
            color: #666;
            font-weight: bold;
        }

        /* --- FOOTER --- */
        footer {
            background-color: #111;
            color: #fff;
            padding: 60px 40px;
            text-align: center;
        }

        footer p {
            font-size: 12px;
            opacity: 0.5;
            margin-top: 20px;
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 768px) {
            .nav-links {
                display: none; /* Sembunyikan menu di mobile (perlu JS untuk toggle) */
            }
            .hamburger {
                display: flex;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .navbar {
                padding: 20px;
            }
            .product-grid {
                padding: 0 20px 60px;
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            }
            .product-image {
                height: 250px;
            }
        }

        /* --- REVIEWS SECTION --- */
        .reviews-section {
            padding: 40px 0 80px;
            background-color: #f9f9f9; /* Latar sedikit abu-abu muda untuk pemisah */
            position: relative;
        }

        .reviews-wrapper {
            position: relative;
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            padding: 0 40px;
        }

        .reviews-container {
            display: flex;
            gap: 30px;
            overflow-x: auto;
            scroll-behavior: smooth;
            padding: 20px 5px;
            /* Menyembunyikan scrollbar default */
            scrollbar-width: none; /* Firefox */
            -ms-overflow-style: none;  /* IE and Edge */
        }

        /* Sembunyikan scrollbar Chrome/Safari */
        .reviews-container::-webkit-scrollbar {
            display: none;
        }

        .prod-card {
            background: #272727;
            min-width: 350px;
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
            border: 1px solid #eee;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            border-radius: 20px;
            color: #fff;
        }

        .review-card {
            background: #fff;
            min-width: 350px; /* Lebar tetap agar kartu seragam */
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.03);
            border: 1px solid #eee;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .stars {
            color: #000; /* Hitam agar sesuai tema Monochrome */
            font-size: 18px;
            letter-spacing: 3px;
            margin-bottom: 15px;
        }

        .review-title {
            font-size: 16px;
            text-transform: uppercase;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .prod-text {
            font-size: 14px;
            color: #fff;
            font-style: italic;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .review-text {
            font-size: 14px;
            color: #555;
            font-style: italic;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .reviewer-name {
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .review-date {
            font-size: 10px;
            color: #999;
            text-transform: uppercase;
            margin-top: 5px;
        }

        /* Navigasi Kiri/Kanan */
        .scroll-btn {
            background: transparent;
            border: 1px solid #ddd;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 18px;
            color: #333;
            transition: all 0.3s;
            flex-shrink: 0;
            display: flex; /* Agar icon di tengah */
            align-items: center;
            justify-content: center;
        }

        .scroll-btn:hover {
            background: #000;
            color: #fff;
            border-color: #000;
        }

        /* Responsive Reviews */
        @media (max-width: 768px) {
            .review-card {
                min-width: 280px; /* Lebih kecil di mobile */
                padding: 25px;
            }
            .reviews-wrapper {
                padding: 0 20px;
            }
            /* Sembunyikan tombol panah di mobile, user bisa swipe manual */
            .scroll-btn {
                display: none;
            }
        }

        /* --- CONTACT SECTION --- */
        .contact-section {
            padding: 80px 40px;
            background-color: #fff;
            border-top: 1px solid #eee; /* Garis pemisah tipis */
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap; /* Agar responsif turun ke bawah */
            gap: 60px;
        }

        /* Styling Kolom Info */
        .contact-info {
            flex: 1; /* Mengambil sisa ruang */
            min-width: 300px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .contact-title {
            font-size: 2rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
            font-weight: 800;
        }

        .contact-desc {
            margin-bottom: 40px;
            color: #666;
            max-width: 400px;
        }

        .info-item {
            margin-bottom: 30px;
        }

        .info-item h4 {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
            font-weight: 800;
            color: #111;
        }

        .info-item p {
            color: #444;
            font-size: 14px;
            line-height: 1.6;
        }

        /* Styling Kolom Map */
        .contact-map {
            flex: 1;
            min-width: 300px;
            height: 450px; /* Tinggi peta */
            background-color: #eee;
            position: relative;
        }

        /* EFEK KHUSUS: Peta Hitam Putih */
        .contact-map iframe {
            width: 100%;
            height: 100%;
            /* Mengubah peta warna-warni jadi abu-abu agar estetik */
            filter: grayscale(100%) contrast(1.1);
            transition: filter 0.3s ease;
        }

        /* (Opsional) Warnai peta sedikit saat di-hover */
        .contact-map:hover iframe {
            filter: grayscale(0%);
        }

        /* Responsive Contact */
        @media (max-width: 768px) {
            .contact-section {
                padding: 60px 20px;
            }
            .contact-container {
                flex-direction: column; /* Peta turun ke bawah teks */
                gap: 40px;
            }
            .contact-map {
                height: 300px; /* Peta lebih pendek di HP */
            }
        }