/* ==========================================================================
   RESET & SYSTEM VARIABLES (Ultra-Luxury Edition - Warm Gold)
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,400&display=swap');

:root {
  /* Dasar Warna: Warm Amber-Black yang sangat pekat dan dalam */
  --bg-dark: #181611; 
  /* Gradien mewah yang memusatkan cahaya keemasan hangat */
  --bg-dark-gradient: radial-gradient(circle at 50% 40%, #1d180f, #090804 75%);
  
  /* Latar belakang card: sangat gelap dengan transisi kecokelatan yang hangat */
  --bg-card: rgba(24, 19, 11, 0.75);
  --bg-card-hover: rgba(38, 30, 18, 0.9);
  
  /* Aksen Emas: Champagne Gold yang lebih kaya dan bercahaya */
  --gold: #d4af37;
  --gold-light: #f4d068;
  --gold-dark: #a27e28;
  --gold-glow: rgba(212, 175, 55, 0.35);
  
  /* Teks Utama: Putih bersih untuk kontras tinggi dan mewah */
  --text-primary: #ffffff;
  /* Teks Redup: Warm Beige / Keemasan redup */
  --text-muted: #c4b59f;
  --text-dim: #a0a0a5;  
  --accent: #877238;  
  /* Kombinasi Font: Serif untuk kesan mewah, Sans-Serif untuk kemudahan baca */
  --font-heading: 'Playfair Display', serif;
  --font-family: 'Inter', system-ui, -apple-system, sans-serif;
  
    --gold: #dfb96a;
  --gold-light: #e8d08d;
  --gold-dark: #c59f4e;
  --font-heading: 'Inter', 'Segoe UI', Roboto, sans-serif;
}


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  background: var(--bg-dark-gradient);
  background-attachment: fixed;
  color: var(--text-primary);
  font-family: var(--font-family);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== UTILITIES ===== */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 4rem;
}

.section-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.15);
  padding: 6px 20px;
  border-radius: 30px;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
  border: 1px solid rgba(212, 175, 55, 0.25);
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
}

h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

h2 span {
  color: var(--gold);
}

p {
  color: var(--text-muted);
}

.section-header p {
  font-size: 1.05rem;
}



/* ===== TOPBAR INFORMASI (BACKGROUND GOLD) ===== */
.top-bar {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 6px 1.25rem;
  font-size: 0.72rem;
  color: #050402; /* Menggunakan warna gelap agar kontras dengan latar belakang gold */
  letter-spacing: 0.5px;
  width: 100%;
}

.top-bar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top-bar span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar strong {
  color: #050402;
  font-weight: 700;
}

/* ===== HEADER DARK (LATAR BELAKANG GELAP ELEGAN) ===== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(135deg, #18150e 0%, #0d0a06 100%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  transition: all 0.35s ease;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.1rem 1.25rem;
}

/* Logo */
.logo {
  font-size: 1.35rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.logo span {
  color: var(--gold);
}

/* Navigasi Desktop */
.navbar {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-menu {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: #e6dfd3;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  transition: color 0.35s ease;
  position: relative;
}

.nav-menu a:hover {
  color: var(--gold);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* Tombol Desktop */
.btn-nav {
  background: #050402;
  color: var(--gold);
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 9px;
  text-decoration: none;
  font-size: 0.8rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transition: all 0.35s ease;
  border: 1px solid rgba(223, 185, 106, 0.3);
  display: inline-flex;
  align-items: center;
}

.btn-nav:hover {
  transform: translateY(-2px);
  background: var(--gold);
  color: #050402;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.btn-nav-mobile {
  display: none;
}

/* Toggle Button */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 1002;
}

.menu-toggle span {
  width: 22px;
  height: 2.5px;
  background: var(--gold);
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* ===== RESPONSIVE HEADER ===== */
@media (max-width: 768px) {
  .top-bar {
    display: none; /* Sembunyikan topbar saat di mobile */
  }

  .header-container {
    padding: 0.65rem 1.15rem;
  }

  .btn-nav-desktop {
    display: none;
  }

  .btn-nav-mobile {
    display: inline-flex;
    padding: 6px 14px;
    font-size: 0.72rem;
    margin-left: auto;
    margin-right: 14px;
    background: #050402;
    color: var(--gold);
    border: none;
  }

  .menu-toggle { 
    display: flex; 
  }

  .menu-toggle span {
    background: var(--gold); 
  }

  .menu-toggle.active span {
    background: #050402; 
  }

  /* Posisi & Desain Menu Drawer */
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: linear-gradient(135deg, #18150e 0%, #0d0a06 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    gap: 3.5rem;
    padding: 6.5rem 2rem 2rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: -15px 0 40px rgba(0, 0, 0, 0.6);
  }

  .navbar.active { 
    right: 0; 
  }

  .nav-menu { 
    flex-direction: column; 
    align-items: center; 
    gap: 2rem; 
  }

  .nav-menu a {
    color: #e6dfd3;
  }

  .nav-menu a:hover {
    color: var(--gold);
  }

  .nav-menu a::after {
    background: var(--gold);
  }

  /* Animasi Tombol Close */
  .menu-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
}
/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #050402;
  font-weight: 700;
  text-decoration: none;
  padding: 15px 36px;
  border-radius: 14px;
  box-shadow: 0 12px 30px var(--gold-glow);
  transition: all 0.35s ease;
  font-size: 0.95rem;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(212, 175, 55, 0.42);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-weight: 600;
  text-decoration: none;
  padding: 14px 36px;
  border-radius: 14px;
  transition: all 0.35s ease;
  font-size: 0.95rem;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
}

/* ===== SECTION 1: SLIDER ===== */
.slider-section {
  width: 100%;
  height: auto;
  min-height: 600px;
  position: relative;
  overflow: hidden;
  
  /* Jarak aman atas (agar tidak tertutup header sticky) dan bawah */
  /* margin-bottom: 45px; */
  
  /* Gradien Premium Dark Sedikit Gold */
  background: radial-gradient(circle at right top, #231b11, #060401);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  display: flex;
  align-items: center;
}

.css-slider {
  height: 100%;
  position: relative;
  width: 100%;
}

.css-slider input[type="radio"] {
  display: none;
}

.css-slider .slides {
  display: flex;
  width: 200%; /* Lebar diatur 200% untuk 2 slide */
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.css-slider .slide {
  width: 50%; /* Setiap slide memakan 50% dari kontainer slides */
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
}

.slide-bg-1 { 
  /* background: radial-gradient(circle at right top, #1c150b, #050402);  */
}

.slide-bg-2 { 
  /* background: radial-gradient(circle at center, #181109, #060503);  */
}

.slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Tata Letak 2 Kolom */
.slide-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4.5rem;
  align-items: center;
}

/* Tata Letak Penuh Gambar (Slide 2) */
.slide-content.full-width-layout {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  grid-template-columns: none;
  gap: 0;
}

.slide-tag {
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 2.5px;
  margin-bottom: 1.5rem;
  display: inline-block;
  background: rgba(212, 175, 55, 0.12);
  padding: 6px 16px;
  border-radius: 24px;
}

.slide-content h2 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  line-height: 1.18;
  margin-bottom: 1.8rem;
  color: var(--text-primary);
}

.slide-content h2 span {
  background: linear-gradient(120deg, var(--gold), #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.slide-content p {
  font-size: 1.05rem;
  max-width: 580px;
  margin-bottom: 2.8rem;
  color: #e6dfd3;
}

.slide-actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 2.2rem;
}

.slide-features {
  display: flex;
  gap: 1.8rem;
  font-size: 0.82rem;
  color: #e6dfd3;
}

/* ===== KOLOM KANAN: STATS CARD ===== */
.slide-stats-card {
  background: radial-gradient(circle at center, #261f14, #080603);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 28px;
  padding: 2.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.stats-card-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(20, 16, 9, 0.5);
  padding: 1.1rem 1.4rem;
  border-radius: 18px;
  border: 1px solid rgba(212, 175, 55, 0.08);
}

.stats-number {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 0.8;
  letter-spacing: -1px;
}

.stats-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stats-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}

.stats-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.35;
}

/* ===== ANIMASI SLIDER ===== */
#slide-1:checked ~ .slides { transform: translateX(0%); }
#slide-2:checked ~ .slides { transform: translateX(-50%); }

.slider-nav {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 14px;
  z-index: 10;
}

.nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.35s ease;
  border: 1px solid transparent;
}

#slide-1:checked ~ .slider-nav .nav-dot:nth-child(1),
#slide-2:checked ~ .slider-nav .nav-dot:nth-child(2) {
  background: var(--gold);
  width: 38px;
  border-radius: 12px;
  box-shadow: 0 0 18px var(--gold-glow);
}

/* ===== RESPONSIVE SLIDER ===== */
@media (max-width: 768px) {
  .slider-section {
    /* Penyesuaian margin agar tidak terpotong dengan Header dan Section bawahnya */
    /* margin-top: 70px; */
    /* margin-bottom: 25px; */
    min-height: auto;
    padding: 2.2rem 0;
  }

  .slide-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }

  .slide-content h2 {
    font-size: 2.1rem;
  }

  .slide-stats-card {
    padding: 1.4rem;
    gap: 1.2rem;
  }

  .stats-card-item {
    gap: 1rem;
    padding: 0.9rem 1.2rem;
  }

  .slider-nav {
    bottom: 20px;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .slide-content { 
    grid-template-columns: 1fr; 
    gap: 3rem; 
    padding: 0 1.2rem;
  }
  .slide-content h2 { font-size: 2.6rem; }
  .slide-stats-card { padding: 2.2rem; }
}

/* ===== SECTION 2: ABOUT ===== */
.about-section {
  background: radial-gradient(circle at right top, #2b2115, var(--bg-dark));
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5.5rem;
  align-items: center;
}

.about-text h2 {
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-text p {
  font-size: 1.05rem;
  margin-bottom: 1.8rem;
}

.about-stats {
  display: flex;
  gap: 2.8rem;
  margin-top: 3.2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding-top: 1.8rem;
}

.stat-box h3 {
  font-size: 2.8rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 4px;
  font-family: var(--font-heading);
}

.stat-box p {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.88rem;
}

/* ===== VISUAL CARD ===== */
.visual-card img {width:100%;}
/* Menyesuaikan container visual */
.about-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Bingkai gambar (masih menggunakan gaya lama yang mewah) */
.visual-card {
  background: radial-gradient(circle at center, #261e13, #050402);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 32px;
  height: 460px; /* Tinggi bingkai tetap */
  width: 100%;   /* Lebar penuh mengikuti grid */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 35px 95px rgba(0, 0, 0, 0.7);
  overflow: hidden; /* Penting: Agar gambar tidak keluar dari sudut yang melengkung */
}

/* Gaya untuk gambar asli */
.about-img {
  width: 100%;
  height: 100%;
  /* Object-fit ensure gambar menutupi seluruh area tanpa gepeng, 
     bagian pinggir gambar mungkin terpotong sedikit untuk menyesuaikan bingkai */
  object-fit: cover; 
  /* Memastikan gambar berada di tengah bingkai */
  object-position: center; 
  border-radius: 31px; /* Sedikit lebih kecil dari bingkai agar pas di dalam border */
}

/* Penyesuaian Mobile */
@media (max-width: 992px) {
  .visual-card {
    height: 300px; /* Tinggi bingkai dikurangi saat di HP */
    margin-top: 2rem;
  }
}

/* ===== SECTION 3: PRODUK ===== */


.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 28px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
}

.product-thumb {
  width: 100%;
  height: 260px;
  background: linear-gradient(to top, #0a0704, #261d13);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.thumb-placeholder {
  color: var(--text-muted);
  opacity: 0.7;
  font-size: 0.95rem;
  font-weight: 700;
}

.product-info {
  padding: 2rem;
}

.prod-cat {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.product-info h3 {
  font-size: 1.45rem;
  color: #fff;
  margin: 10px 0 14px;
  font-weight: 700;
}

.product-info p {
  font-size: 0.92rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.prod-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  padding-top: 1.4rem;
}

.price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold);
  font-family: var(--font-heading);
}

.btn-icon {
  width: 48px;
  height: 48px;
  background: #14100a;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  text-decoration: none;
  font-weight: bold;
  font-size: 1.25rem;
  transition: all 0.35s ease;
  border: 1px solid rgba(212, 175, 55, 0.35);
}

.product-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 30px 75px var(--gold-glow);
}

.product-card:hover .btn-icon {
  background: var(--gold);
  color: #050402;
}

/* ===== SECTION 4: CORE VALUES ===== */
.core-section {
  background: linear-gradient(180deg, var(--bg-dark), #0d0a07);
}

.core-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.2rem;
}

.core-card {
  background: radial-gradient(circle at top, #261d11, #080603);
  border: 1px solid rgba(212, 175, 55, 0.08);
  padding: 3.6rem 2.5rem;
  border-radius: 30px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.core-icon {
  font-size: 2.8rem;
  color: var(--gold);
  margin-bottom: 1.8rem;
  display: inline-block;
  line-height: 1;
}

.core-card h4 {
  font-size: 1.45rem;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 700;
}

.core-card p {
  font-size: 0.92rem;
  line-height: 1.7;
}

.core-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.3);
  background: var(--bg-card-hover);
}

/* ===== SECTION 5: CLIENTS ===== */
.client-section {
  background: #050402;
  border-top: 1px solid rgba(212, 175, 55, 0.06);
  border-bottom: 1px solid rgba(212, 175, 55, 0.06);
  padding: 4.2rem 0;
  text-align: center;
}

.client-title {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 3.2rem;
}

.client-track {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 2.8rem;
  flex-wrap: wrap;
}

.client-logo {
  font-weight: 800;
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 4px;
  transition: all 0.35s ease;
}

.client-logo:hover {
  color: rgba(212, 175, 55, 0.9);
}

/* ===== SECTION 6: REVIEW ===== */
.review-section {
  background: radial-gradient(circle at bottom left, #291f11, var(--bg-dark));
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 2.8rem;
}

.review-card {
  background: var(--bg-card);
  border-radius: 28px;
  padding: 3.5rem;
  border: 1px solid rgba(212, 175, 55, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  transition: all 0.38s ease;
  backdrop-filter: blur(12px);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.stars {
  color: var(--gold);
  letter-spacing: 2.5px;
  font-size: 0.95rem;
}

.quote-mark {
  color: rgba(212, 175, 55, 0.18);
  font-size: 5rem;
  font-family: serif;
  line-height: 0;
}

.review-text {
  font-size: 1.05rem;
  color: #e6dfd3;
  font-style: italic;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.user-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-dark);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.15rem;
}

.user-info strong {
  display: block;
  color: #fff;
  font-size: 1.02rem;
}

.user-info span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.25);
  background: var(--bg-card-hover);
}

/* ===== SECTION 7: CTA ===== */
.cta-section {
  background: var(--bg-dark);
}

.cta-box {
  background: radial-gradient(circle at center, #241c12, #060503);
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 5rem 4.2rem;
  border-radius: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.75);
  position: relative;
}

.cta-content {
  max-width: 620px;
}

.cta-badge {
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2.5px;
  margin-bottom: 1.5rem;
  display: inline-block;
  background: rgba(212, 175, 55, 0.1);
  padding: 6px 16px;
  border-radius: 24px;
}

.cta-box h2 {
  font-size: 3.2rem;
  letter-spacing: -0.5px;
}

.cta-box p {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.cta-button-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.btn-whatsapp {
  display: inline-block;
  background: linear-gradient(135deg, #25d366, #1aa34a);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  padding: 16px 42px;
  border-radius: 16px;
  font-size: 1.05rem;
  transition: all 0.35s ease;
  box-shadow: 0 16px 35px rgba(37, 211, 102, 0.32);
  white-space: nowrap;
}

.btn-whatsapp:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(37, 211, 102, 0.46);
}

.cta-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== FOOTER ===== */
.site-footer {
  background: #030302;
  color: var(--text-muted);
  padding: 80px 0 45px;
  border-top: 1px solid rgba(212, 175, 55, 0.08);
}

.site-footer h5 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 26px;
  letter-spacing: 0.5px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 55px;
}

.site-footer p {
  font-size: 0.92rem;
  line-height: 1.8;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 14px;
}

.footer-col ul li a, .footer-col ul li {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.35s ease;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(212, 175, 55, 0.08);
  padding-top: 35px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 6rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .slide-content h2 { font-size: 2.8rem; }
  .about-grid { grid-template-columns: 1fr; gap: 4.5rem; }
  .cta-box { flex-direction: column; text-align: center; padding: 4.2rem 2.8rem; gap: 2.8rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .p-body h6 { font-size: 0.8rem; }
    .display-6 { font-size: 1.8rem; }
}/* --- SEARCH PREMIUM --- */
.search-premium {
    position: relative;
    display: flex;
    align-items: center;
    background: #11141b;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 5px 8px;
    transition: 0.3s;
}

.search-premium:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 15px var(--accent-glow);
}

.search-premium i {
    padding-left: 15px;
    color: var(--accent);
    font-size: 1.1rem;
}

.search-premium input {
    background: transparent;
    border: none;
    color: white;
    padding: 10px 15px;
    width: 100%;
    outline: none;
    font-size: 0.95rem;
}

.search-premium button {
    background: var(--accent);
    border: none;
    color: #000;
    padding: 8px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: 0.3s;
}

.search-premium button:hover {
    background: #fff;
    transform: scale(1.05);
}

/* --- CATEGORY PILLS (Horizontal Scroll) --- */
.category-pills {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    white-space: nowrap;
    padding: 5px 0;
    scrollbar-width: none; /* Firefox */
}

.category-pills::-webkit-scrollbar { display: none; }

.pill-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #a0a0a0;
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: 0.3s;
}

.pill-item:hover, .pill-item.active {
    background: rgba(255, 193, 7, 0.1);
    color: var(--accent);
    border-color: var(--accent);
}

.pill-item.filter-trigger {
    background: #fff;
    color: #000;
    margin-left: auto; /* Push to right on desktop */
}

/* --- MOBILE OPTIMIZATION --- */
@media (max-width: 768px) {
    .category-pills {
        padding-left: 0;
    }
    .pill-item.filter-trigger {
        position: sticky;
        right: 0;
        margin-left: 10px;
        box-shadow: -10px 0 20px rgba(0,0,0,0.5);
    }
}
.section-spacing { padding: 80px 0; }
.bg-dark-soft { background-color: #0e111e; }
.fw-800 { font-weight: 800; }

/* Styling untuk konten artikel dari Quill Editor */
.article-body p { margin-bottom: 16px; text-align:justify;}
.article-body img { 
    max-width: 100%; 
    height: auto; 
    border-radius: 12px;
    margin: 2rem 0;
}
.article-body h2, .article-body h3 { 
    color: #212529; 
    font-weight: 700; 
    margin-top: 2.5rem; 
    margin-bottom: 1.5rem; 
}
.article-body blockquote {
    border-left: 5px solid #ffc107;
    padding: 1rem 2rem;
    background: #f8f9fa;
    font-style: italic;
}

/* Stats Card Decoration */
.stats-box-premium {
    transition: transform 0.3s ease;
}
.stats-box-premium:hover {
    transform: translateY(-5px);
}

/* CONTAINER & SECTION */
.product-detail-section {
    background-color: #0d0e12; /* Warna dasar gelap */
}

/* TAB NAVIGATION (PILLS) */
#productTab {
    background: rgba(255, 255, 255, 0.03);
    padding: 8px;
    border-radius: 50px;
    display: inline-flex;
    margin: 0 auto 2rem auto;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

#productTab .nav-link {
    color: #a0a0a0;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
}

#productTab .nav-link.active {
    background-color: #ffc107; /* Warna Accent Kuning */
    color: #000 !important;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

/* TAB CONTENT & DESCRIPTION */
.tab-pane {
    padding-top: 20px;
}

#tab-desc {
    text-align: justify; /* Deskripsi Rata Kanan Kiri */
    line-height: 1.8;
    color: #d1d1d1;
}

/* INFO BOX (Harga & Estimasi) */
.info-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.info-box:hover {
    border-color: rgba(255, 193, 7, 0.5) !important;
    transform: translateY(-5px);
}

.info-box h6 {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
    margin-bottom: 10px;
}

/* KEYWORDS (HASHTAGS) */
.product-keywords .info-box a {
    color: #888;
    transition: color 0.3s ease;
    display: block;
}

.product-keywords .info-box:hover a {
    color: #ffc107;
}

/* RESPONSIVE ADJUSTMENT */
@media (max-width: 768px) {
    #productTab {
        display: flex;
        width: 100%;
        border-radius: 15px;
    }
    
    #productTab .nav-link {
        flex: 1;
        padding: 8px 10px;
        font-size: 0.8rem;
    }
}


/* FAKE ORDER NOTIF STYLING */
.fake-order-container {
    position: fixed;
    bottom: 85px; /* Di atas Bottom Nav Mobile (65px + 20px) */
    left: 20px;
    z-index: 999;
    background: #1c1f26;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px;
    width: 320px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: none; /* Awalnya sembunyi */
    animation: slideUp 0.5s ease forwards;
}

.order-content {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.order-img img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.order-text p {
    margin: 0;
    font-size: 11px;
}

.order-title { color: #fff; }
.order-subtitle { font-size: 12px !important; margin: 2px 0 !important; }
.order-time { color: var(--text-dim); }

.order-close {
    position: absolute;
    top: -5px;
    right: 0;
    background: none;
    border: none;
    color: var(--text-dim);
    font-size: 18px;
    cursor: pointer;
}

/* Animasi Muncul */
@keyframes slideUp {
    from { transform: translateY(100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes slideDown {
    from { transform: translateY(0); opacity: 1; }
    to { transform: translateY(100px); opacity: 0; }
}

@media (max-width: 768px) {
    .fake-order-container {
        width: calc(100% - 40px); /* Melebar sesuai layar HP */
        bottom: 80px;
        left: 20px;
    }
}

/* NEWS TICKER STYLING (WARNA KUNING) */
.news-ticker-bar {
    background: var(--accent); /* Menggunakan warna kuning #ffc107 */
    overflow: hidden;
    white-space: nowrap;
    padding: 8px 0;
    z-index: 1050;
    position: relative;
    /* Memberikan sedikit bayangan halus agar tidak terlihat "flat" */
    box-shadow: inset 0 -2px 5px rgba(0,0,0,0.05); 
}

.ticker-wrapper {
    display: flex;
    width: max-content;
}

.ticker-content {
    display: flex;
    animation: tickerLoop 35s linear infinite;
}

.ticker-content span {
    color: #000; /* Teks Hitam agar terbaca jelas di background Kuning */
    font-size: 0.75rem;
    font-weight: 700; /* Dibuat lebih tebal agar tegas */
    padding: 0 40px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Icon disesuaikan menjadi Hitam agar senada dengan teks */
.ticker-content span i {
    color: #000;
    opacity: 0.8;
}

/* Keyframes tetap sama */
@keyframes tickerLoop {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* MODAL CHAT DARK CONCEPT */
.modal-chat-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: none; /* Awalnya sembunyi */
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding: 20px;
}

.modal-chat-content {
    background: #14161f; /* Senada dengan bg-card Anda */
    width: 100%;
    max-width: 400px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.modal-chat-header {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-close-chat {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    line-height: 1;
}

.modal-chat-body {
    padding: 25px;
}

.chat-option-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    text-decoration: none;
    margin-bottom: 12px;
    transition: 0.3s;
    border: 1px solid transparent;
}

.chat-option-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
}

.chat-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.chat-info {
    flex: 1;
}

.chat-info span { font-size: 0.95rem; }
.chat-info small { font-size: 0.8rem; }

/* Animation */
.animate-pop {
    animation: modalPop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalPop {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
/* FLOATING WA DESKTOP */
.wa-float-desktop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wa-float-icon {
    width: 60px;
    height: 60px;
    background: #25d366; /* Warna asli WA agar mudah dikenali */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wa-float-text {
    background: #1c1f26;
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Hover Effect */
.wa-float-desktop:hover .wa-float-text {
    opacity: 1;
    transform: translateX(0);
}

.wa-float-desktop:hover .wa-float-icon {
    transform: rotate(15deg) scale(1.1);
    background: #20ba5a;
}

/* Pastikan Modal Chat memiliki Z-Index lebih tinggi dari segalanya */
.modal-chat-overlay {
    z-index: 10001; /* Lebih tinggi dari navbar dan floating button */
}

/* SMART FILTER STYLING */
.filter-tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto; /* Agar bisa di-slide di HP */
    padding-bottom: 10px;
    scrollbar-width: none; /* Sembunyikan scrollbar */
}

.filter-tabs::-webkit-scrollbar { display: none; }

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-dim);
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: 0.3s;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

/* Animasi untuk transisi filter */
.product-item {
    transition: all 0.4s ease;
}

.product-item.hide {
    display: none;
}

.product-item.show {
    animation: fadeIn 0.4s ease;
}
/* Container Utama */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}



/* --- CARD STYLE --- */
.p-card {
    background: #14161f;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.p-card:hover {
    transform: translateY(-5px);
    border-color: #ffc107;
}

.p-img-box {
    width: 100%;
    aspect-ratio: 1/1;
    background: #1c1f26;
    position: relative;
}

.p-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-info {
    padding: 12px;
    flex-grow: 1;
}

.p-info h6 {
    color: #fff;
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.8em;
}

.p-price {
    color: #ffc107;
    font-weight: 700;
    font-size: 1rem;
}

/* --- FILTER BAR --- */
.filter-wrapper {
    background: #14161f;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.search-control {
    background: rgba(0,0,0,0.2) !important;
    border: 1px solid #333 !important;
    color: white !important;
    border-radius: 10px;
}

/* --- DETAIL PAGE (MOBILE OPTIMIZED) --- */
.gallery-main {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 15px;
}

.thumb-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none;
}

.thumb-scroll::-webkit-scrollbar { display: none; }

.thumb-card {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    border-radius: 10px;
    border: 2px solid transparent;
    cursor: pointer;
}

.thumb-card.active { border-color: #ffc107; }

/* Sticky Mobile Button */
@media (max-width: 768px) {
    .mobile-actions {
        position: fixed;
        bottom: 70px; /* Di atas Bottom Nav */
        left: 0;
        right: 0;
        padding: 10px 15px;
        background: rgba(10, 11, 16, 0.9);
        backdrop-filter: blur(10px);
        z-index: 99;
        display: flex;
        gap: 10px;
    }
}



/* Product Card Grid */
.p-card-modern { 
    background: var(--card-bg); border-radius: 20px; overflow: hidden; 
    display: block; text-decoration: none; transition: 0.3s; border: 1px solid rgba(255,255,255,0.05);
}
.p-card-modern:hover { transform: translateY(-8px); border-color: var(--accent); }
.p-img { aspect-ratio: 1/1; overflow: hidden; }
.p-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.p-card-modern:hover img { transform: scale(1.1); }
.p-body { padding: 15px; background: var(--bg-dark-gradient)}
.p-body h6 { color: #fff; font-size: 0.9rem; margin-bottom: 5px; height: 2.4em; overflow: hidden; }

/* Filter Bar */
.filter-pro-bar { background: var(--card-bg); padding: 20px; border-radius: 15px; border: 1px solid rgba(255,255,255,0.05); }
.search-box { position: relative; }
.search-box i { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: #666; }
.search-box input { padding-left: 45px; background: rgba(0,0,0,0.2); border: 1px solid #333; color: #fff; }
.select-dark { background: rgba(0,0,0,0.2); border: 1px solid #333; color: #fff; }

/* Detail Page */
.breadcrumb-modern { font-size: 13px; color: #666; }
.breadcrumb-modern a { color: var(--accent); text-decoration: none; }
.thumb-item { width: 70px; height: 70px; object-fit: cover; border-radius: 10px; cursor: pointer; border: 2px solid transparent; opacity: 0.6; }
.thumb-item:hover { opacity: 1; border-color: var(--accent); }
.nav-tabs-dark { display: flex; gap: 30px; list-style: none; padding: 0; border-bottom: 1px solid #333; }
.nav-tabs-dark li { padding: 10px 0; color: #666; cursor: pointer; font-weight: 600; }
.nav-tabs-dark li.active { color: var(--accent); border-bottom: 2px solid var(--accent); }

@media (max-width: 768px) {
    .p-body h6 { font-size: 0.8rem; }
    .display-6 { font-size: 1.8rem; }
}/* --- SEARCH PREMIUM --- */
.search-premium {
    position: relative;
    display: flex;
    align-items: center;
    background: #11141b;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 5px 8px;
    transition: 0.3s;
}

.search-premium:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 15px var(--accent-glow);
}

.search-premium i {
    padding-left: 15px;
    color: var(--accent);
    font-size: 1.1rem;
}

.search-premium input {
    background: transparent;
    border: none;
    color: white;
    padding: 10px 15px;
    width: 100%;
    outline: none;
    font-size: 0.95rem;
}

.search-premium button {
    background: var(--accent);
    border: none;
    color: #000;
    padding: 8px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: 0.3s;
}

.search-premium button:hover {
    background: #fff;
    transform: scale(1.05);
}

/* --- CATEGORY PILLS (Horizontal Scroll) --- */
.category-pills {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    white-space: nowrap;
    padding: 5px 0;
    scrollbar-width: none; /* Firefox */
}

.category-pills::-webkit-scrollbar { display: none; }

.pill-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #a0a0a0;
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: 0.3s;
}

.pill-item:hover, .pill-item.active {
    background: rgba(255, 193, 7, 0.1);
    color: var(--accent);
    border-color: var(--accent);
}

.pill-item.filter-trigger {
    background: #fff;
    color: #000;
    margin-left: auto; /* Push to right on desktop */
}

/* --- MOBILE OPTIMIZATION --- */
@media (max-width: 768px) {
    .category-pills {
        padding-left: 0;
    }
    .pill-item.filter-trigger {
        position: sticky;
        right: 0;
        margin-left: 10px;
        box-shadow: -10px 0 20px rgba(0,0,0,0.5);
    }
}
.section-spacing { padding: 80px 0; }
.bg-dark-soft { background-color: #1e1a0e; }
.fw-800 { font-weight: 800; }

/* Styling untuk konten artikel dari Quill Editor */
.article-body p { margin-bottom: 16px; text-align:justify;}
.article-body img { 
    max-width: 100%; 
    height: auto; 
    border-radius: 12px;
    margin: 2rem 0;
}
.article-body h2, .article-body h3 { 
    color: #212529; 
    font-weight: 700; 
    margin-top: 2.5rem; 
    margin-bottom: 1.5rem; 
}
.article-body blockquote {
    border-left: 5px solid #ffc107;
    padding: 1rem 2rem;
    background: #f8f9fa;
    font-style: italic;
}

/* Stats Card Decoration */
.stats-box-premium {
    transition: transform 0.3s ease;
}
.stats-box-premium:hover {
    transform: translateY(-5px);
}

/* CONTAINER & SECTION */
.product-detail-section {
    background-color: #0d0e12; /* Warna dasar gelap */
}

/* TAB NAVIGATION (PILLS) */
#productTab {
    background: rgba(255, 255, 255, 0.03);
    padding: 8px;
    border-radius: 50px;
    display: inline-flex;
    margin: 0 auto 2rem auto;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

#productTab .nav-link {
    color: #a0a0a0;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
}

#productTab .nav-link.active {
    background-color: #ffc107; /* Warna Accent Kuning */
    color: #000 !important;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

/* TAB CONTENT & DESCRIPTION */
.tab-pane {
    padding-top: 20px;
}

#tab-desc {
    text-align: justify; /* Deskripsi Rata Kanan Kiri */
    line-height: 1.8;
    color: #d1d1d1;
}

/* INFO BOX (Harga & Estimasi) */
.info-box {
    background: #181611;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    transition: transform 0.3s ease, border-color 0.3s ease;
	color:var(--text-muted);
}

.info-box:hover {
    border-color: rgba(255, 193, 7, 0.5) !important;
    transform: translateY(-5px);
}

.info-box h6 {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
    margin-bottom: 10px;
}

/* KEYWORDS (HASHTAGS) */
.product-keywords .info-box a {
   	color:var(--text-muted);
    transition: color 0.3s ease;
    display: block;
}

.product-keywords .info-box:hover a {
    color: #ffc107;
}

/* RESPONSIVE ADJUSTMENT */
@media (max-width: 768px) {
    #productTab {
        display: flex;
        width: 100%;
        border-radius: 15px;
    }
    
    #productTab .nav-link {
        flex: 1;
        padding: 8px 10px;
        font-size: 0.8rem;
    }
}
/* BOTTOM NAVIGATION MOBILE */
.bottom-nav-mobile {
    position: fixed;
    bottom: 0;
    left: 0; /* Tambahkan ini */
    right: 0; /* Tambahkan ini */
    width: 100%;
    background: #181611;
    display: flex;
    justify-content: space-around;
    padding: 12px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    z-index: 9999;
    
    /* Tambahan agar lebih stabil di iOS/Android */
    padding-bottom: env(safe-area-inset-bottom); /* Menangani notch bawah pada HP modern */
    height: 65px; /* Tentukan tinggi tetap agar mudah menghitung space body */
    align-items: center;
}

/* Tambahkan padding pada body agar konten tidak tertutup */
@media (max-width: 768px) {
    body {
        padding-bottom: 70px; /* Harus lebih besar dari tinggi bottom-nav */
    }
}

.bottom-nav-mobile a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.7rem;
    text-align: center;
}

.bottom-nav-mobile a i {
    display: block;
    font-size: 1.4rem;
    margin-bottom: 2px;
}

.bottom-nav-mobile a.active {
    color: var(--accent);
}
/* ===== MODERN PRODUCT SECTION ===== */
.modern-product-section {
    padding: 6rem 0;
    background: radial-gradient(circle at center, #1b140b, #040301);
    position: relative;
}

.section-badge {
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2.5px;
    margin-bottom: 0.75rem;
    display: inline-block;
    background: rgba(212, 175, 55, 0.12);
    padding: 5px 16px;
    border-radius: 20px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0;
}

.section-title span {
    background: linear-gradient(120deg, var(--gold), #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.view-all-link {
    color: var(--gold);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.35s ease;
    display: inline-flex;
    align-items: center;
}

.view-all-link:hover {
    color: #ffffff;
}

/* Premium Product Card */
.modern-product-card {
    background: radial-gradient(circle at center, #261f14, #060401);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    padding: 1.25rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.modern-product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
}

.product-img-box {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    height: 240px;
    background: #000000;
}

.product-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.modern-product-card:hover .product-img-box img {
    transform: scale(1.05);
}

.badge-status {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(212, 175, 55, 0.9);
    color: #000000;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    z-index: 2;
    letter-spacing: 0.5px;
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 4, 2, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 3;
}

.modern-product-card:hover .product-overlay {
    opacity: 1;
}

.btn-premium-detail {
    background: var(--gold);
    color: #000;
    font-weight: 700;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    font-size: 0.9rem;
}

.modern-product-card:hover .btn-premium-detail {
    transform: translateY(0);
}

.btn-premium-detail:hover {
    background: #ffffff;
}

.modern-product-info {
    padding-top: 1.25rem;
}

.product-title {
    font-size: 0.65rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0;
    line-height: 1.35;
    font-family: var(--font-heading);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .modern-product-section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .product-img-box {
        height: 180px;
    }
    
    .modern-product-card {
        padding: 0.9rem;
        border-radius: 20px;
    }
    
    .modern-product-info {
        padding-top: 0.9rem;
    }
    
    .product-title {
        font-size: 0.95rem;
    }
    
    .btn-premium-detail {
        padding: 0.6rem 1.4rem;
        font-size: 0.8rem;
    }
}