/* --- Variabel & Reset --- */
:root {
    --primary-red: #f33535;
    --dark-bg: #1a1a1a;
    --text-color: #555;
    --light-bg: #f9f9f9;
    --ocean-blue: #0081c6;
    --border-color: #ebebeb;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: #fff;
    overflow-x: hidden; /* Mencegah scroll ke pinggir di seluruh halaman */
    width: 100%;
    position: relative;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }

/* --- Global Elements --- */
.btn {
    display: inline-block; padding: 10px 25px; font-weight: 600;
    text-transform: uppercase; transition: 0.3s; cursor: pointer; border: none; font-size: 13px;
}
.btn-red { background-color: var(--primary-red); color: white; }
.btn-red:hover { background-color: #d12c2c; }
.section-title { font-family: 'Oswald', sans-serif; font-size: 28px; margin-bottom: 30px; letter-spacing: 1px; text-align: center; }
.text-dark { color: #222; margin-top: 60px; }

/* --- Header --- */
header { position: absolute; top: 0; left: 0; width: 100%; z-index: 100; color: white; transition: 0.3s; }
header.sticky { position: fixed; background: rgba(0, 0, 0, 0.9); }
.top-bar { font-size: 12px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.top-links a { margin-left: 15px; }
.navbar { padding: 20px 0; }
.nav-links { display: flex; gap: 20px; font-weight: 500; text-transform: uppercase; font-size: 14px; }
.logo h2 { font-family: 'Oswald', sans-serif; font-size: 28px; letter-spacing: 2px; }
.nav-icons a { margin-left: 20px; font-size: 18px; position: relative; }
.cart-count {
    position: absolute; top: -8px; right: -10px; background: var(--primary-red); color: white;
    font-size: 10px; width: 16px; height: 16px; border-radius: 50%; display: flex; justify-content: center; align-items: center;
}

/* --- Hamburger Menu Styles (Desktop & Base) --- */
.menu-toggle {
    display: none; /* Sembunyikan di desktop */
    font-size: 24px;
    cursor: pointer;
    color: white;
}

.close-menu {
    display: none; /* Sembunyikan di desktop */
    text-align: right;
    font-size: 24px;
    cursor: pointer;
    margin-bottom: 20px;
    color: white;
}

/* --- Hero --- */
.hero {
    height: 100vh; 
    min-height: 600px;
    display: flex; 
    justify-content: center; 
    align-items: center; 
    text-align: center; 
    position: relative;
    overflow: hidden; /* Penting agar video tidak tumpah keluar kotak */
    background-color: #000; /* Warna dasar jika video lambat dimuat */
}
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover; /* Memastikan video menutupi seluruh area tanpa gepeng */
    z-index: 0;
}
.hero-overlay {
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0,0,0,0.5); /* Ubah angka 0.5 jika ingin lebih gelap/terang */
    z-index: 1; 
}
.hero::after { content: ''; position: absolute; top:0; left:0; width:100%; height:100%; background: rgba(0,0,0,0.4); z-index: 1; }
.hero-content { 
    position: relative; 
    z-index: 2; 
    color: white; 
}

.hero-content h1 { 
    font-family: 'Oswald', sans-serif; 
    font-size: 80px; 
    letter-spacing: 5px; 
    margin-bottom: 20px; 
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5); 
}

/* --- Promo Banners --- */
.promo-banners { 
    display: flex; 
    gap: 30px; 
    margin: 60px auto; 
}

.banner { 
    flex: 1; 
    position: relative; 
    height: 280px; /* Sedikit lebih tinggi agar lebih lega */
    border-radius: 12px; /* Sudut melengkung yang modern */
    overflow: hidden; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); /* Bayangan lembut */
    display: flex;
    align-items: center;
    transform: translateY(0);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.banner-img-wrapper {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}

.banner-img-wrapper img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
}

.banner:hover .banner-img-wrapper img { 
    transform: scale(1.08); 
}

/* Gradient gelap dari kiri ke kanan agar teks super jelas */
.banner-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
    z-index: 2;
}

.banner-text { 
    position: relative; 
    z-index: 3; 
    padding: 0 40px; 
    color: white; 
}

/* Label Kecil di atas judul */
.banner-badge {
    display: inline-block;
    background: #fce138; /* Kuning emas */
    color: #222;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.badge-blue { background: #00c3ff; color: white; } /* Varian warna biru */

.banner-text h3 { 
    font-family: 'Oswald', sans-serif; 
    font-size: 26px; /* Lebih besar dan menonjol */
    line-height: 1.3;
    margin-bottom: 20px; 
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Modifikasi tombol khusus di dalam banner */
.btn-banner {
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 8px; /* Jarak antara teks dan ikon panah */
}

.btn-banner i {
    transition: transform 0.3s ease;
}

/* Panah bergeser ke kanan saat hover tombol */
.btn-banner:hover i {
    transform: translateX(5px);
}

/* --- Categories --- */
.categories-section {
    background: linear-gradient(135deg, var(--ocean-blue) 0%, #004c7a 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden; /* Menjaga animasi gelembung tidak keluar batas */
}

.section-header { text-align: center; margin-bottom: 50px; position: relative; z-index: 2; }
.section-title.text-white { color: white; margin-bottom: 10px; }
.section-subtitle { color: #b3e5fc; font-size: 15px; }

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 25px;
    position: relative;
    z-index: 2;
}

/* Glassmorphism Card Style */
.cat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px); /* Efek kaca blur di belakang kartu */
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px; /* Membulat seperti gelembung air */
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    text-decoration: none;
}

.cat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.cat-icon-wrap {
    width: 75px;
    height: 75px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.4s ease;
}

.cat-icon-wrap img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.cat-card:hover .cat-icon-wrap {
    transform: scale(1.1) rotate(5deg);
}

.cat-info h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
    color: white;
}

.cat-info p {
    font-size: 13px;
    color: #b3e5fc;
    margin: 0;
}

/* --- Animasi Gelembung Latar Belakang --- */
.bubbles-container {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    overflow: hidden; pointer-events: none; z-index: 1;
}

.bubble {
    position: absolute;
    bottom: -50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: float 8s infinite ease-in;
}

/* Ukuran dan Posisi Acak Gelembung */
.bubble:nth-child(1) { width: 40px; height: 40px; left: 10%; animation-duration: 6s; }
.bubble:nth-child(2) { width: 20px; height: 20px; left: 30%; animation-duration: 5s; animation-delay: 1s; }
.bubble:nth-child(3) { width: 50px; height: 50px; left: 50%; animation-duration: 8s; animation-delay: 2s; }
.bubble:nth-child(4) { width: 30px; height: 30px; left: 70%; animation-duration: 7s; animation-delay: 0.5s; }
.bubble:nth-child(5) { width: 60px; height: 60px; left: 85%; animation-duration: 9s; animation-delay: 3s; }

@keyframes float {
    0% { transform: translateY(0) scale(1); opacity: 0; }
    20% { opacity: 1; }
    100% { transform: translateY(-1000px) scale(1.2); opacity: 0; }
}

/* --- Product Grid --- */
.products-section { margin-bottom: 80px; }
.product-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 30px; 
    margin-top: 40px; 
}

/* Card Styling: Sudut membulat dan bayangan halus */
.product-card { 
    background: #fff; 
    border-radius: 12px; 
    overflow: hidden; /* Sangat penting agar ujung gambar ikut membulat */
    transition: all 0.3s ease; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.06); 
    display: flex;
    flex-direction: column;
}

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

/* Image Wrapper: Gambar menutupi seluruh area atas */
.product-img-wrap {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.product-img-wrap img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; /* Memastikan gambar penuh tanpa ruang kosong */
    transition: transform 0.5s ease; 
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.05); /* Zoom in halus saat disentuh */
}

/* Badge Styling (Tetap dipertahankan untuk produk Sale/New) */
.badge { 
    position: absolute; 
    top: 15px; left: 15px; 
    padding: 5px 12px; 
    font-size: 11px; 
    font-weight: 700; 
    color: white; 
    text-transform: uppercase; 
    border-radius: 20px;
    z-index: 2;
}
.badge-sale { background: var(--primary-red); }
.badge-new { background: #00c3ff; } /* Sesuai warna biru di banner Anda */

/* Menyembunyikan ikon hover (mata/hati) agar desain sebersih gambar ke-3 */
.product-action-hover { display: none; } 

/* Product Info: Rata tengah dan minimalis */
.product-info { 
    padding: 25px 20px; 
    text-align: center; 
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Memastikan tombol selalu ada di paling bawah */
}

.product-info .brand { 
    font-size: 11px; 
    color: #999; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    margin-bottom: 8px;
}

.product-info h4 { 
    font-size: 16px; 
    color: #333;
    margin: 0 0 15px 0; 
    font-weight: 400; /* Font reguler, tidak terlalu tebal */
}

.product-info h4 a { transition: color 0.3s; }
.product-info h4 a:hover { color: var(--primary-red); }

.price-wrap {
    margin-bottom: 20px;
    margin-top: auto; /* Mendorong harga dan tombol ke bagian bawah kartu */
}

.product-info .price { 
    font-weight: 700; 
    color: var(--primary-red); /* Warna harga merah sesuai gambar */
    font-size: 18px;
}

.product-info .old-price {
    font-size: 14px;
    color: #aaa;
    text-decoration: line-through;
    margin-left: 8px;
}

/* Add to Cart Button: Merah Solid & Kapsul (Sesuai Gambar 3) */
.btn-add-cart { 
    background: var(--primary-red); 
    color: white; 
    border: none;
    width: 100%; 
    padding: 12px; 
    border-radius: 50px; /* Bentuk kapsul/pil */
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    transition: background 0.3s;
    cursor: pointer;
    opacity: 1; /* Selalu tampil */
    visibility: visible;
    transform: none;
}

.btn-add-cart:hover { 
    background: #d12c2c; /* Merah lebih gelap saat di-hover */
}

/* --- Split Section (Banner & Brands) --- */
/* --- Split Section (Banner & Brands Premium) --- */
.split-section { 
    display: flex; 
    gap: 40px; 
    margin: 80px auto; 
    align-items: stretch; /* Membuat tinggi banner dan brand grid sejajar */
}

/* Left: Penyesuaian khusus untuk banner di dalam split section */
.split-banner { 
    flex: 1; 
    height: auto; /* Mengikuti tinggi konten/grid di sebelahnya */
    min-height: 350px;
    margin: 0; /* Menghapus margin hover dari global banner */
}
.split-banner .banner-text h3 {
    font-size: 28px; /* Teks sedikit lebih besar untuk hero-split */
}

/* Right: Brand Grid Container */
.shop-by-brand { 
    flex: 1; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
}

/* Header Brand (Judul dan Link View All) */
.brand-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 15px;
}
.brand-header .section-title { 
    margin: 0; 
    text-align: left; 
    font-size: 24px;
}
.view-all-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--ocean-blue);
    text-transform: uppercase;
    transition: 0.3s;
}
.view-all-link:hover { color: var(--primary-red); }

/* Grid Logo Brand */
.brand-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px; 
}

/* Kotak (Card) Masing-masing Brand */
.brand-item { 
    background: white; 
    border: 1px solid var(--border-color); 
    border-radius: 12px; /* Sudut membulat modern */
    display: flex; 
    justify-content: center; 
    align-items: center; 
    padding: 25px 20px; 
    aspect-ratio: 4/3; /* Memastikan kotak proporsional */
    cursor: pointer;
    transition: all 0.4s ease;
}

.brand-item img { 
    max-width: 60%; 
    max-height: 60%; 
    filter: grayscale(100%); 
    opacity: 0.4; 
    transition: all 0.4s ease;
}

/* Efek saat Brand disentuh (Hover) */
.brand-item:hover { 
    box-shadow: 0 10px 25px rgba(0,0,0,0.08); 
    border-color: #ddd; 
    transform: translateY(-5px); /* Kotak naik sedikit */
}
.brand-item:hover img { 
    filter: grayscale(0); /* Kembali berwarna */
    opacity: 1; 
    transform: scale(1.1); /* Logo sedikit membesar */
}

/* --- Testimonials --- */
.testimonials { 
    display: flex; 
    gap: 60px; 
    margin: 80px auto; 
    align-items: center; 
}

.testi-header { 
    flex: 1; 
    padding-right: 20px;
}

.testi-header p { 
    font-size: 15px; 
    line-height: 1.7; 
    color: #666;
    margin-bottom: 25px; 
}

/* Avatar Social Proof di bawah judul */
.avatar-group {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.avatar-group img {
    width: 45px; height: 45px;
    border-radius: 50%;
    border: 3px solid #fff;
    object-fit: cover;
    margin-left: -15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}
.avatar-group img:first-child { margin-left: 0; }
.avatar-more {
    width: 45px; height: 45px;
    border-radius: 50%;
    border: 3px solid #fff;
    background: var(--ocean-blue);
    color: white;
    display: flex; justify-content: center; align-items: center;
    font-size: 12px; font-weight: 700;
    margin-left: -15px;
    z-index: 1;
}

.rating-summary {
    display: flex; align-items: center; gap: 10px;
    font-size: 14px; font-weight: 600; color: #333;
}
.rating-summary .stars i, .review-text .stars i { color: #fce138; }

/* Kartu Ulasan (Testi Cards) */
.testi-cards { 
    flex: 2; 
    display: flex; 
    gap: 30px; 
}

.testi-card { 
    flex: 1; 
    background: #fff;
    padding: 35px 30px; 
    border-radius: 16px; 
    box-shadow: 0 10px 40px rgba(0,0,0,0.06); /* Bayangan lembut khas desain modern */
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
    display: flex; flex-direction: column; justify-content: space-between;
}

.testi-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    border-color: #f0f0f0; 
}

/* Ikon Kutipan Latar Belakang */
.quote-icon {
    position: absolute;
    top: 20px; right: 25px;
    font-size: 60px;
    color: #f4f7f9; /* Sangat samar/tipis di background */
    z-index: 0;
    transition: color 0.3s ease;
}
.testi-card:hover .quote-icon { color: #e8f2f6; }

.review-text {
    position: relative; z-index: 1; margin-bottom: 30px;
}
.review-text .stars { margin-bottom: 15px; font-size: 13px; }
.review-text p { 
    font-size: 15px; font-style: italic; line-height: 1.7; color: #555; margin: 0;
}

/* Info User (Foto dan Nama) */
.user-info { 
    display: flex; gap: 15px; align-items: center; 
    position: relative; z-index: 1;
    border-top: 1px solid #f0f0f0; /* Garis pemisah antara ulasan dan profil */
    padding-top: 20px;
}
.user-info img { 
    width: 55px; height: 55px; border-radius: 50%; object-fit: cover; 
}
.user-details h5 { 
    color: #222; font-size: 16px; margin-bottom: 2px; font-weight: 600;
}
.user-details p { 
    font-size: 13px; color: var(--ocean-blue); margin: 0; font-weight: 500;
}

/* --- Instagram Feed --- */
/* --- Instagram Feed Premium --- */
.instagram-feed-section { 
    position: relative; 
    width: 100%;
    margin-top: 40px; /* Jarak dari section atasnya */
}

.insta-grid { 
    display: flex; 
    width: 100%; 
    overflow: hidden; 
}

/* Kotak Gambar Instagram */
.insta-item { 
    flex: 1; 
    position: relative; 
    aspect-ratio: 1/1; /* Memastikan kotak selalu berbentuk persegi/kotak sempurna */
    overflow: hidden; 
    display: block; 
}

.insta-item img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.6s ease; 
}

/* Lapisan Gelap & Ikon saat di-hover */
.insta-overlay {
    position: absolute; 
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex; 
    justify-content: center; 
    align-items: center;
    color: white; 
    font-size: 32px;
    opacity: 0; 
    transition: opacity 0.4s ease;
    z-index: 2;
}

/* Animasi Hover */
.insta-item:hover img { transform: scale(1.15); }
.insta-item:hover .insta-overlay { opacity: 1; }

/* Wadah Tombol Melayang */
.insta-btn-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

/* Styling Tombol Instagram */
.btn-insta {
    background: #fff;
    color: #222;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

/* Efek Gradient pada Ikon Instagram */
.btn-insta i {
    font-size: 22px;
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

/* Hover pada Tombol */
.btn-insta:hover {
    background: #222; /* Tombol berubah jadi gelap */
    color: #fff;
    transform: translateY(-3px);
}

.btn-insta:hover i {
    background: none;
    -webkit-text-fill-color: #fff; /* Ikon berubah jadi putih pekat */
}

/* --- Footer --- */
footer { background: var(--dark-bg); color: #999; padding-top: 70px; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-bottom: 40px; }
.footer-col h4 { color: white; font-family: 'Oswald', sans-serif; margin-bottom: 25px; letter-spacing: 1px; font-size: 16px; }
.footer-col ul li { margin-bottom: 12px; font-size: 13px; }
.footer-col ul li a:hover { color: var(--primary-red); }
.payment-icons { display: flex; gap: 10px; align-items: center; margin-top: 10px; }
.payment-icons img { background: white; padding: 2px; border-radius: 3px; }
.newsletter-form { display: flex; margin-top: 10px; border-bottom: 1px solid #444; padding-bottom: 5px; }
.newsletter-form input { background: transparent; border: none; outline: none; color: white; flex: 1; font-size: 13px; }
.footer-bottom { background: #111; padding: 20px 0; text-align: center; font-size: 12px; }

/* --- Responsive --- */
@media(max-width: 992px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .split-section { flex-direction: column; padding: 20px; }
    .testimonials { flex-direction: column; align-items: stretch; gap: 40px; }
    .testi-header { text-align: center; padding-right: 0; }
    .testi-header .section-title { text-align: center !important; }
    .testi-cards { flex-direction: column; gap: 20px; }
    .testi-card { padding: 30px 20px; }
    .avatar-group, .rating-summary { justify-content: center; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .insta-grid { flex-wrap: wrap; }
    .insta-item { flex: 0 0 calc(100% / 4); }
}

/* Untuk Mobile / HP standar */
@media(max-width: 768px) {
    /* --- 1. Top Bar --- */
    #main-header .container { padding: 0 15px; width: 100%; }
    .top-bar .flex-between { flex-direction: column; text-align: center; gap: 8px; padding: 10px 0; }
    .top-links { display: flex; justify-content: center; gap: 15px; }
    .top-links a { margin-left: 0; } /* Reset margin bawaan desktop */

    /* --- 2. Navbar (Perbaikan Logo, Hamburger, Ikon) --- */
    .navbar { 
        flex-wrap: nowrap; 
        align-items: center; 
        padding: 15px 0; /* Ubah padding jadi 0 agar tidak bentrok dengan container */
        width: 100%;
        justify-content: space-between;
    }
    
    .menu-toggle { display: block; order: 1; font-size: 22px; padding-right: 15px; }
    
    .logo { order: 2; flex-grow: 1; text-align: left; }
    .logo h2 { font-size: 20px; margin-left: 0; white-space: nowrap; } /* white-space mencegah teks turun baris */
    
    .nav-icons { order: 3; display: flex; align-items: center; gap: 12px; } /* Gunakan gap untuk jarak konsisten */
    .nav-icons a { margin-left: 0; font-size: 16px; } /* Hapus margin-left bawaan desktop */

    /* --- Sidebar Menu (Hamburger) --- */
    .nav-links {
        position: fixed; top: 0; left: -100%; 
        width: 280px; height: 100vh;
        background-color: var(--dark-bg);
        flex-direction: column; padding: 20px;
        transition: left 0.4s ease; z-index: 1000;
        box-shadow: 5px 0 15px rgba(0,0,0,0.5);
    }
    .nav-links.active { left: 0; }
    .close-menu { display: block; }
    .nav-links li { margin-bottom: 20px; width: 100%; }
    .nav-links li a { display: block; color: white; font-size: 16px; border-bottom: 1px solid #333; padding-bottom: 10px; }
    .nav-links li a:hover { color: var(--primary-red); padding-left: 10px; transition: 0.3s; }
    
    /* --- 3. Hero Section --- */
    .hero { min-height: 400px; height: 60vh; }
    .hero-content h1 { font-size: 36px; letter-spacing: 2px; }
    
    /* --- 4. Promo Banners (Perbaikan Lebar) --- */
    .promo-banners { 
        flex-direction: column; 
        gap: 20px; 
        margin: 30px auto; 
        width: 100%; 
        padding: 0 15px; /* Jarak aman dari pinggir layar */
        box-sizing: border-box;
    }
    .banner { 
        width: 100%; 
        height: auto; /* Biarkan tinggi menyesuaikan konten */
        min-height: 220px; /* Minimal tinggi agar tidak terlalu pipih */
        align-items: flex-start; /* Ubah penjajaran ke atas, bukan tengah */
    }
    
    .banner-text { 
        padding: 30px 20px; /* Tambah padding atas/bawah, kurangi kiri/kanan */
        width: 100%; /* Pastikan teks mengambil ruang penuh */
        box-sizing: border-box;
    }
    
    .banner-badge {
        margin-bottom: 15px; /* Jarak yang lebih baik di bawah badge */
    }

    .banner-text h3 { 
        font-size: 20px; /* Ukuran font yang pas untuk mobile */
        margin-bottom: 15px; 
        max-width: 80%; /* Batasi lebar teks agar tidak menabrak sisi kanan jika ada gambar */
        line-height: 1.4;
    }

    /* Penyesuaian Gradient untuk Mobile (opsional, jika ingin lebih gelap) */
    .banner-overlay {
         background: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 70%, transparent 100%);
    }
    
    /* --- Sisa Elemen Lainnya --- */
    .category-list { gap: 10px; }
    .cat-item { padding: 8px 15px; font-size: 13px; }
    .brand-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .payment-icons { justify-content: center; }
    .social-icons { justify-content: center; display: flex; }
    .instagram-feed { flex-wrap: wrap; }
    .instagram-feed img { width: calc(100% / 3); }
    .insta-item { flex: 0 0 calc(100% / 3); }

    .split-section { 
        flex-direction: column; 
        gap: 40px; 
        margin: 50px auto; 
        padding: 0 15px;
    }
    .split-banner {
        min-height: 250px;
    }
    .split-banner .banner-text h3 {
        font-size: 22px; /* Dikecilkan untuk mobile */
    }
    .brand-header {
        align-items: center; /* Sejajarkan di tengah untuk mobile */
    }
    .brand-header .section-title {
        font-size: 20px;
    }
    .brand-grid { 
        grid-template-columns: repeat(2, 1fr); /* Ubah jadi 2 kolom di HP */
        gap: 15px;
    }
    .brand-item {
        padding: 15px;
    }

    .product-grid { grid-template-columns: repeat(2, 1fr); }
    
    .testimonials { flex-direction: column; align-items: stretch; gap: 40px; }
    .testi-header { text-align: center; padding-right: 0; }
    .testi-header .section-title { text-align: center !important; }
    .testi-cards { flex-direction: column; gap: 20px; }
    .testi-card { padding: 30px 20px; }

    
}

/* Untuk HP dengan layar sangat kecil */
@media(max-width: 480px) {
    /* Ubah produk menjadi 1 kolom agar gambar tidak terlalu kecil */
    .product-grid { grid-template-columns: 1fr; } 
    
    .hero-content h1 { font-size: 28px; }
    .split-banner { height: 200px; }
    .banner-text h3 { font-size: 16px; }
    
    .brand-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    
    /* Feed instagram jadi 2 kolom di layar terkecil */
    .instagram-feed img { width: calc(100% / 2); }
    .insta-item { flex: 0 0 calc(100% / 2); }
}