* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
        }

        body {
            background-color: #f5f5f5;
            color: #333;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* HEADER SECTION (Orange Bar) */
        .header {
            background-color: #ee4d2d;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: flex-start;
            gap: 40px;
        }

        .logo {
            color: white;
            font-size: 32px;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 5px;
        }

        .search-section {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .search-bar {
            display: flex;
            background-color: white;
            border-radius: 2px;
            padding: 3px;
        }

        .search-bar input {
            flex: 1;
            border: none;
            padding: 10px 15px;
            outline: none;
            font-size: 14px;
        }

        .search-bar button {
            background-color: #ee4d2d;
            border: none;
            color: white;
            padding: 0 24px;
            border-radius: 2px;
            cursor: pointer;
        }

        .search-bar button:hover {
            background-color: #d73211;
        }

        .quick-links {
            display: flex;
            gap: 15px;
            font-size: 12px;
            color: white;
        }


        /* MAIN NAVIGATION MENU */
        .main-menu {
            background-color: white;
            padding: 20px 0;
            border-bottom: 1px solid #e0e0e0;
        }

        .menu-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
        }

        .menu-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            font-size: 13px;
            width: 100px;
            cursor: pointer;
        }

        .menu-icon {
            width: 45px;
            height: 45px;
            background-color: #f5f5f5;
            border-radius: 15px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 8px;
            font-size: 20px;
            color: #ee4d2d;
        }
.product-detail-container {
            display: flex;
            /* INI KUNCI AGAR TERBELAH JADI KIRI & KANAN */
            background-color: #ffffff;
            max-width: 1200px;
            margin: 20px auto;
            border-radius: 4px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            padding: 20px;
            gap: 30px;
            box-sizing: border-box;
            font-family: -apple-system, Arial, sans-serif;
        }

        .product-left {
            width: 450px;
            flex-shrink: 0;
        }

        .main-image {
            width: 100%;
            border: 1px solid #e8e8e8;
            margin-bottom: 15px;
            aspect-ratio: 1/1;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .main-image img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .thumbnail-gallery {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
        }

        .thumb-list {
            display: flex;
            gap: 10px;
        }

        .thumb-item {
            width: 80px;
            height: 80px;
            border: 2px solid transparent;
            cursor: pointer;
            box-sizing: border-box;
        }

        .thumb-item.active {
            border-color: #ee4d2d;
        }

        .thumb-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .thumb-nav {
            background: none;
            border: none;
            font-size: 24px;
            color: #757575;
            cursor: pointer;
        }

        .product-social {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            padding: 10px 0;
        }

        .share-links {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: #333;
        }

        .share-links i {
            font-size: 20px;
            cursor: pointer;
        }

        .favorite-btn {
            font-size: 14px;
            color: #333;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .product-right {
            flex-grow: 1;
            padding: 0;
        }

        .product-title-section {
            margin-bottom: 15px;
        }

        .mall-ori-badge {
            background-color: #d0011b;
            color: #fff;
            font-size: 12px;
            padding: 2px 6px;
            border-radius: 2px;
            font-weight: bold;
            margin-right: 8px;
        }

        .product-title {
            font-size: 20px;
            font-weight: 500;
            color: #333;
            display: inline;
            line-height: 1.4;
            margin: 0;
        }

        .product-stats {
            display: flex;
            align-items: center;
            font-size: 14px;
            color: #757575;
            margin-bottom: 15px;
        }

        .stat-group {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .rating-group {
            color: #ee4d2d;
        }

        .stars {
            color: #ee4d2d;
            font-size: 12px;
        }

        .stat-number {
            color: #333;
            font-size: 16px;
            border-bottom: 1px solid #333;
        }

        .stat-divider {
            width: 1px;
            height: 15px;
            background-color: #e8e8e8;
            margin: 0 15px;
        }

        .product-price-box {
            background-color: #fafafa;
            padding: 15px 20px;
            border-radius: 2px;
            margin-bottom: 25px;
        }

        .current-price {
            font-size: 30px;
            font-weight: 500;
            color: #ee4d2d;
            margin-bottom: 5px;
        }

        .price-discount-info {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .original-price {
            font-size: 16px;
            color: #929292;
            text-decoration: line-through;
        }

        .discount-percent {
            font-size: 12px;
            background-color: #ffcccc;
            color: #ee4d2d;
            padding: 2px 4px;
            border-radius: 2px;
            font-weight: bold;
        }

        .product-info-rows {
            display: flex;
            flex-direction: column;
            gap: 25px;
            margin-bottom: 30px;
        }

        .info-row {
            display: flex;
            align-items: flex-start;
        }

        .info-label {
            width: 110px;
            color: #757575;
            font-size: 14px;
            flex-shrink: 0;
            padding-top: 8px;
        }

        .info-content {
            flex-grow: 1;
            font-size: 14px;
            color: #333;
        }

        .shipping-info {
            line-height: 1.5;
            padding-top: 8px;
        }

        .shipping-sub {
            color: #929292;
            font-size: 12px;
            margin: 5px 0 0 20px;
        }

        .variation-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .var-btn {
            background-color: #fff;
            border: 1px solid #e8e8e8;
            padding: 8px 12px;
            border-radius: 2px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: #333;
        }

        .var-btn img {
            width: 24px;
            height: 24px;
            object-fit: cover;
        }

        .var-btn.active,
        .var-btn:hover {
            border-color: #ee4d2d;
            color: #ee4d2d;
        }

        .qty-section {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .qty-selector {
            display: flex;
            border: 1px solid #e8e8e8;
            border-radius: 2px;
        }

        .qty-btn {
            width: 32px;
            height: 32px;
            background: #fff;
            border: none;
            font-size: 16px;
            cursor: pointer;
            color: #757575;
        }

        .qty-input {
            width: 50px;
            height: 32px;
            border: none;
            border-left: 1px solid #e8e8e8;
            border-right: 1px solid #e8e8e8;
            text-align: center;
            font-size: 16px;
            outline: none;
        }

        .product-action-buttons {
            display: flex;
            gap: 15px;
        }

        .btn {
            height: 48px;
            padding: 0 20px;
            border-radius: 2px;
            font-size: 16px;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            border: none;
            font-weight: 500;
        }

        .btn-cart {
            background-color: #ffefe8;
            border: 1px solid #ee4d2d;
            color: #ee4d2d;
        }

        .btn-buy {
            background-color: #ee4d2d;
            color: #fff;
            min-width: 180px;
        }

        /* ========================================================
   CSS RESPONSIF HP (REVISI)
   ======================================================== */
@media (max-width: 768px) {
  .product-detail-container {
    flex-direction: column;
    padding: 10px;
    gap: 20px;
  }
  
  .product-left {
    width: 100%;
  }

  .info-label { width: 80px; }

  /* --- TAMBAHKAN KODE BARU INI --- */
  
  /* Sembunyikan tombol panah navigasi thumbnail di HP */
  .thumbnail-gallery .thumb-nav {
    display: none !important; /* Gunakan !important agar pasti tersembunyi */
  }

  /* Pastikan daftar thumbnail di bawah tetap bisa di-scroll manual dengan jari */
  .thumb-list {
    overflow-x: auto; /* Aktifkan scroll horizontal manual */
    padding-bottom: 5px; /* Beri sedikit ruang agar scrollbar tidak menempel */
  }
  
  /* ------------------------------- */
}
/* --- RESPONSIF UNTUK HP --- */
@media (max-width: 768px) {
  body {
    padding-top: 6px; /* Header HP lebih kecil, jadi padding body disesuaikan */
    padding-left: 6px;
    padding-right: 6px;
    padding-bottom: 6px;
  }
  .logo{
    display: none;
  }
  .search-section{
    padding-left: 6px;
    padding-right: 6px;
  }
  /* ========================================================
   CSS UNTUK HALAMAN DETAIL PRODUK
   ======================================================== */

}/* --- WADAH UTAMA GAMBAR PROMO --- */
.store-promo-container {
  max-width: 1200px; /* Memaksa lebar agar sejajar dengan profil dan navbar */
  width: 100%;
  margin: 0 auto 30px auto; /* 0 atas, auto tengah, 30px bawah */
  display: flex;
  flex-direction: column; /* Memaksa gambar berbaris lurus dari atas ke bawah */
  gap: 0; /* Ubah ke 10px atau 15px jika Anda ingin ada garis pemisah/jarak antar gambar */
  padding: 0; /* Wajib 0 agar ujung gambar rata dengan navbar di atasnya */
  box-sizing: border-box;
  overflow: hidden; /* KUNCI: Memotong paksa bagian gambar yang nekat keluar dari wadah */
  border-radius: 4px; /* Opsional: memberikan sedikit lengkungan di sudut paling luar */
}

/* --- BUNGKUSAN TIAP GAMBAR (Link) --- */
.store-promo-container a, 
.promo-item { /* Saya menaruh kedua class untuk berjaga-jaga nama class yang Anda pakai */
  width: 100%;
  display: block;
  margin-top: 20px;
  padding: 0;
}

/* --- GAMBAR PROMO ASLI --- */
.store-promo-container img {
  width: 100%; /* KUNCI: Memaksa gambar menyesuaikan lebar wadah (tidak akan lebih dari 1200px) */
  height: auto; /* KUNCI: Menjaga gambar tidak gepeng */
  display: block; /* KUNCI: Menghilangkan celah putih/abu-abu tipis misterius di bawah gambar */
  object-fit: cover;
  margin: 0;
  padding: 0;
}

/* --- RESPONSIF UNTUK MOBILE (HP) --- */
@media (max-width: 768px) {
  .store-promo-container {
    border-radius: 0; /* Di layar HP biasanya sudutnya lancip mentok layar */
    /* Di HP tidak perlu margin kiri-kanan agar gambar mentok penuh memenuhi layar */
  }
}
.store-header-bg {
  background-color: #ffffff;
  
  /* KUNCI: Samakan maksimal lebarnya dengan kotak produk */
  max-width: 1200px; 
  width: 100%;
  
  /* KUNCI: Posisikan di tengah layar (auto) dan beri jarak atas 20px */
  margin: 20px auto; 
  
  border-radius: 4px; /* Beri lengkungan sudut agar serasi dengan kotak produk */
  box-shadow: 0 1px 3px rgba(0,0,0,0.1); /* Beri bayangan pinggir */
  overflow: hidden; 
}

/* --- 2. SESUAIKAN KOTAK PROFIL DI DALAMNYA --- */
.shopee-profile-wrapper {
  display: flex;
  background-color: transparent; 
  width: 100%;
  
  /* Hilangkan margin karena sudah diwakilkan oleh wadah luar di atas */
  margin: 0; 
  border-radius: 0; 
  box-shadow: none; /* Hilangkan bayangan ganda */
}

/* =========================================
   BAGIAN KATEGORI (Kloning Shopee)
   ========================================= */
/* --- WADAH PEMBUNGKUS --- */


/* --- KOTAK ABU-ABU KIRI --- */
.profile-card-left {
  background-color: #5a5a5a; 
  color: #ffffff;
  padding: 20px 25px;
  display: flex;
  align-items: center;
  width: 380px; 
  flex-shrink: 0; 
}

/* Logo dan Badge */
.store-logo-group {
  position: relative;
  width: 75px;
  height: 75px;
  margin-right: 15px;
}

.store-logo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5px;
  box-sizing: border-box;
}

.mall-badge {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #d0011b;
  color: #ffffff;
  font-size: 10px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 2px;
  white-space: nowrap;
}

/* Info Toko */
.store-info {
  display: flex;
  flex-direction: column;
  justify-content: center; /* Memastikan teks tetap berada di tengah secara vertikal walau tanpa tombol */
}

.store-name {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 4px 0;
}

.store-status {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0; /* Margin bawah dihapus karena tidak ada tombol di bawahnya */
}

/* --- STATISTIK KANAN --- */
.store-stats-right {
  flex-grow: 1; 
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr; 
  row-gap: 20px; 
  column-gap: 30px; 
  align-content: center; 
}

.stat-item {
  display: flex;
  align-items: center;
  font-size: 14px;
}

.stat-icon {
  width: 20px;
  color: #757575;
  margin-right: 10px;
  font-size: 16px;
  text-align: center;
}

.stat-label {
  color: #333333;
  margin-right: 5px;
}

.stat-value, .stat-detail {
  color: #ee4d2d; 
}

/* --- RESPONSIF UNTUK HP --- */
/* =======================================================
   PERBAIKAN TAMPILAN MOBILE (HP) UNTUK PROFIL TOKO & HEADER
   ======================================================= */
@media (max-width: 768px) {
  
  /* 1. Memaksa profil abu-abu dan statistik turun/menumpuk ke bawah */
  .shopee-profile-wrapper {
    flex-direction: column !important;
    margin: auto !important;
  }

  /* 2. Memaksa kartu abu-abu memenuhi 100% layar HP, bukan memanjang ke kanan */
  .profile-card-left {
    width: 100% !important;
    max-width: 100% !important;
    flex-shrink: 1 !important;
    padding: 15px !important;
  }

  /* 3. Merapikan bagian statistik agar menyesuaikan layar HP */
  .store-stats-right {
    grid-template-columns: 1fr !important; /* Memaksa jadi 1 kolom di HP */
    column-gap: 0 !important;
  }

  /* 4. Mencegah wadah putih pembungkus keluar batas layar */
  .store-header-bg {
    width: 100% !important;
    overflow-x: hidden !important;
  }
}

/* Gaya Umum Tombol Panah (Kiri & Kanan) */
.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; 
  height: 40px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
  color: #757575;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease-in-out;
  
  /* Me-reset paksa gaya bawaan browser agar tidak jadi kotak */
  outline: none; 
  padding: 0;
  margin: 0;
}

.slide-btn:hover {
  background-color: #f8f8f8;
  width: 45px; /* Sedikit membesar saat disentuh kursor */
  height: 45px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Posisi Spesifik Tombol Kiri & Kanan */
.slide-left {
  left: -20px; /* Menjorok ke luar 20px */
}

.slide-right {
  right: -20px; /* Menjorok ke luar 20px */
}

/* Class untuk menyembunyikan tombol via JavaScript saat mentok */
.slide-btn.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}




/* --- 8. RESPONSIVITAS (TAMPILAN DI LAYAR LEBIH KECIL) --- */
@media (max-width: 1024px) {
}

@media (max-width: 768px) {
    .slide-btn {
    display: none !important; /* HP: Sembunyikan panah, user pakai swipe jari */
  }
}

@media (max-width: 480px) {
}