        /* ====================================
           1. RESET DAN FONT DASAR
           ==================================== */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: #1a1a1a;
            line-height: 1.6;
            background-color: #ffffff;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Styling Umum untuk Judul dan Tombol */
        .uppercase-title {
            font-size: 24px;
            font-weight: 300;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            margin-bottom: 5px;
        }
        .subtitle {
            font-size: 14px;
            color: #555;
            margin-bottom: 40px;
        }
        .btn-primary {
            background-color: transparent;
            color: #1a1a1a;
            border: 1px solid #1a1a1a;
            padding: 12px 30px;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            cursor: pointer;
            transition: background-color 0.3s, color 0.3s;
            display: inline-flex;
            align-items: center;
        }
        .btn-primary:hover {
            background-color: #1a1a1a;
            color: #ffffff;
        }

        /* ====================================
        2. HEADER DAN NAVIGASI
        ==================================== */
        .header {
            border-bottom: 1px solid #e5e5e5;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            background-color: white;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
        }

        .logo {
            font-size: 24px;
            font-weight: 300;
            letter-spacing: 0.2em;
        }

        .nav-links {
            display: none; 
        }

        .nav-links a {
            margin: 0 15px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            transition: color 0.3s;
        }

        .nav-icons button {
            background: none;
            border: none;
            cursor: pointer;
            margin-left: 20px;
        }

        .icon {
            width: 20px;
            height: 20px;
            stroke: currentColor;
            fill: none;
            stroke-width: 2;
        }

        @media (min-width: 768px) {
            .nav-links {
                display: flex;
            }
        }

        /* ====================================
           3. HERO SECTION
           ==================================== */
        .hero-section {
            position: relative;
            height: 85vh;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            overflow: hidden;
            color: white;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top;
            opacity: 0.9;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            padding: 20px;
            background-color: #1a1a1a46;
            border-radius: 15px;
        }

        .hero-content h1 {
            font-size: 56px;
            font-weight: 300;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            margin-bottom: 10px;
            margin-left: 50px;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
        }

        .hero-content p {
            font-size: 18px;
            font-weight: 400;
            margin-bottom: 30px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
        }

        .hero-content .btn-primary {
            background-color: white;
            color: #1a1a1a;
            border-color: white;
        }
        .hero-content .btn-primary:hover {
            background-color: rgba(255, 255, 255, 0.9);
        }

        /* ====================================
           4. GRID PRODUK / KATEGORI / LOOKBOOK (Umum)
           ==================================== */
        .section-padding {
            padding: 80px 0;
            text-align: center;
        }
        
        .product-grid, .category-grid, .lookbook-grid {
            display: grid;
            gap: 20px;
            grid-template-columns: repeat(2, 1fr); /* Default 2 kolom untuk mobile */
        }

        @media (min-width: 640px) {
            .product-grid {
                grid-template-columns: repeat(4, 1fr); /* 4 kolom untuk desktop */
            }
            .category-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        @media (min-width: 1024px) {
            .lookbook-grid {
                grid-template-columns: repeat(3, 1fr); /* 3 kolom untuk Lookbook */
            }
        }

        .item img, .category-item img, .lookbook-item img {
            width: 100%;
            height: auto;
            object-fit: cover;
            aspect-ratio: 0.8; /* Rasio gambar vertikal */
            margin-bottom: 10px;
        }

        .item-details h3 {
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 2px;
        }

        .item-details p {
            font-size: 14px;
            font-weight: 600;
        }

        .item-details .price-old {
            font-size: 12px;
            color: #999;
            text-decoration: line-through;
            font-weight: 400;
        }

        /* ====================================
           5. SHOP BY CATEGORY (CSS Khusus)
           ==================================== */
        .category-item img {
            filter: brightness(0.9);
            transition: filter 0.3s;
        }
        .category-item:hover img {
            filter: brightness(0.7);
        }

        .category-item p {
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            margin-top: 10px;
        }

        /* ====================================
           6. DISKON BANNER
           ==================================== */
        .discount-banner {
            /* Menggunakan warna background dan placeholder image yang sesuai */
            background-image: url('9.jpeg');
            background-size: cover;
            background-position: center;
            height: 50vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            position: relative;
        }

        .discount-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.4); /* Overlay gelap */
        }

        .banner-content {
            position: relative;
            z-index: 1;
        }

        .banner-content h2 {
            font-size: 36px;
            font-weight: 300;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .banner-content p {
            font-size: 16px;
            margin-bottom: 30px;
        }

        .banner-content .btn-primary {
            border-color: white;
            color: white;
        }
        .banner-content .btn-primary:hover {
            background-color: white;
            color: #1a1a1a;
        }
        
        /* ====================================
           7. LOOKBOOK SECTION
           ==================================== */
        .lookbook-item img {
            aspect-ratio: 0.9;
        }
        
        /* Mengubah rasio gambar tengah (index 1) agar terlihat lebih tipis seperti di desain */
        .lookbook-grid .lookbook-item:nth-child(2) img { 
            aspect-ratio: 0.8;
            max-height: 500px; /* Batasan agar tidak terlalu tinggi */
        }
        
        .lookbook-link {
            text-align: center;
            margin-top: 50px;
        }

        /* ====================================
           8. INSTAGRAM FEED (@ELEGANT.ID)
           ==================================== */
        .instagram-section {
            padding: 80px 0;
            text-align: center;
            background-color: #f7f7f7;
        }
        .instagram-section .uppercase-title {
            margin-bottom: 10px;
        }
        .instagram-section .subtitle {
            margin-bottom: 20px;
        }

        .instagram-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr); /* 3 kolom di mobile */
            gap: 5px;
        }

        @media (min-width: 640px) {
            .instagram-grid {
                grid-template-columns: repeat(6, 1fr); /* 6 kolom di desktop */
            }
        }

        .instagram-grid img {
            width: 100%;
            height: auto;
            aspect-ratio: 1 / 1;
            object-fit: cover;
        }

        /* ====================================
           9. TESTIMONI PELANGGAN
           ==================================== */
        .testimonial-section {
            padding: 80px 0;
            text-align: center;
        }

        .testimonial-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 50px;
        }

        .testimonial-card {
            background-color: #fcfcfc;
            border: 1px solid #f0f0f0;
            padding: 30px;
            flex: 1 1 300px; /* Fleksibel, minimal 300px */
            max-width: 350px;
            text-align: center;
        }

        .star-rating {
            color: #d4af37; /* Warna emas untuk bintang */
            font-size: 24px;
            margin-bottom: 15px;
        }

        .testimonial-card blockquote {
            font-size: 16px;
            font-style: italic;
            margin-bottom: 15px;
            color: #444;
        }

        .testimonial-card cite {
            display: block;
            font-style: normal;
            font-weight: 600;
            font-size: 14px;
            color: #1a1a1a;
        }


        /* ====================================
           10. FOOTER (Style Baru)
           ==================================== */
        .footer {
            /* Latar belakang putih keabu-abuan sesuai desain */
            background-color: #f8f8fa; 
            color: #1a1a1a;
            padding: 60px 0 20px 0;
            font-size: 14px;
        }

        .footer-grid {
            /* Menghapus margin-bottom karena copyright dipisah dengan border */
            display: grid;
            grid-template-columns: repeat(2, 1fr); /* 2 kolom di mobile */
            gap: 40px;
            padding-bottom: 50px; /* Jarak sebelum garis pemisah */
        }

        @media (min-width: 768px) {
            .footer-grid {
                /* Pembagian kolom merata (1fr) untuk navigasi dan 2fr untuk deskripsi/ikon */
                grid-template-columns: 2fr 1fr 1fr 1fr; 
            }
        }

        .footer-section h4 {
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 20px;
            color: #1a1a1a; /* Warna judul gelap */
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 8px;
        }

        .footer-section a {
             color: #555; /* Warna link lebih halus */
             transition: color 0.3s;
        }

        .footer-section a:hover {
            color: #1a1a1a;
            text-decoration: none;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 0; /* Tidak perlu margin di sini */
        }
        
        .social-icons a {
            /* Ikon di dalam kotak, warna border abu-abu muda */
            border: 1px solid #dcdcdc; 
            padding: 5px;
            width: 35px;
            height: 35px;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #1a1a1a;
            transition: background-color 0.3s;
        }
        
        .social-icons a:hover {
            background-color: #e5e5e5;
        }
        
        /* Ikon yang lebih kecil */
        .social-icons .icon {
            width: 18px;
            height: 18px;
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            /* Garis pemisah abu-abu muda */
            border-top: 1px solid #e5e5e5; 
            font-size: 13px;
            color: #555;
        }

        .footer-section.about p {
            line-height: 1.8;
            color: #555;
        }