@import url('[https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap](https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap)');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* --- RESET & BASE STYLES --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
}

:root {
  --bg-black: #030303;
  --card-bg: #030303;
  --card-border: #262626;
  --text-main: #ffffff;
  --text-muted: #888888;
  --accent-yellow: #ffc107;
  --radius-lg: 12px;
  --radius-sm: 6px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  background-color: #030303;
  color: #ffffff;
}

/* --- NAVBAR BASE --- */
.navbar {
  background-color: #000000;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 12px 20px;
  border-bottom: 2px solid #161616;
}

.navbar-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  /* Mobile default: 3 Kolom Seimbang (Kiri, Tengah, Kanan) */
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

#main-content {
  max-width: 1400px;
  margin: 0 auto;
}

/* --- KIRI: HAMBURGER --- */
.nav-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hamburger-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
}

.hamburger-icon {
  width: 24px;
  height: 24px;
  /* Mengubah warna SVG eksternal hitam/gelap menjadi putih */
  filter: invert(1); 
  transition: transform 0.2s ease;
}

.hamburger-btn:hover .hamburger-icon {
  transform: scale(1.08);
}

/* --- TENGAH: LOGO --- */
.nav-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  text-decoration: none;
  color: #ffffff;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 1px;
  white-space: nowrap;
}

.logo img {
  height: 40px;
  width: auto;
  display: block;
}

/* --- KANAN: NAV LINKS & BUTTON --- */
.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

/* Sembunyikan 'About' khusus di Mobile */
.nav-about {
  display: none; 
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav-about:hover {
  color: #ffc107;
}

/* Tombol Akses Utama (CTA) */
.btn-cta {
  background-color: #ffc107; /* Warna Kuning terang sesuai gambar */
  color: #000000;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 10px 20px;
  border-radius: 50px;
  white-space: nowrap;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-cta:hover {
  background-color: #e0a800;
  transform: translateY(-1px);
}

/* --- MOBILE DRAWER MENU --- */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100%;
  background-color: #111111;
  z-index: 2000;
  padding: 40px 24px;
  transition: left 0.3s ease;
  box-shadow: 2px 0 10px rgba(0,0,0,0.5);
}

.mobile-drawer.active {
  left: 0;
}

.close-btn {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
}

.drawer-links {
  list-style: none;
  margin-top: 40px;
}

.drawer-links li {
  margin-bottom: 20px;
}

.drawer-item {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* --- RESPONSIVE: TABLET & DESKTOP (> 768px) --- */
@media (min-width: 769px) {
  .navbar-container {
    /* Tampilan Desktop: Hamburger disembunyikan, layout lebih renggang */
    grid-template-columns: 1fr auto 1ft;
  }

  .nav-center {
    justify-content: flex-start;
  }

  /* Tampilkan menu 'About' di Tablet & Desktop */
  .nav-about {
    display: inline-block;
    font-weight: 700; 
  }

  .btn-cta {
    font-size: 0.85rem;
    padding: 12px 24px;
  }
}


.product-detail-section {
  background-color: #000000;
  color: #ffffff;
  padding: 50px 20px;
  font-family: 'Inter', sans-serif;
}

.product-detail-container {
  max-width: 1100px;
  margin: 0 auto;
}

.product-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

/* Kiri: Placeholder Gambar (Desktop) */
.product-image-box {
  background-color: #b0713b;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.desktop-placeholder-text {
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 800;
}

/* Kanan: Info Produk (Desktop) */
.product-info-card {
  display: flex;
  flex-direction: column;
  align-items: center; /* Mengatur semua elemen anak (termasuk countdown) ke tengah */
  text-align: center;
}

.product-title {
  font-family: "Times New Roman MT", "Times New Roman", Times, serif;
  font-size: 3rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
}

.product-desc {
  font-family: 'Inter', sans-serif;
  color: #dddddd;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Stats Bar */
.product-stats-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 20px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-weight: 800;
  font-size: 1.4rem;
}

.stat-stars {
  color: #ffc107;
  font-size: 0.75rem;
}

.stat-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.laurel-svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px; /* Tinggi laurel leaf disesuaikan */
  width: auto;
}

.laurel-svg svg {
  height: 100%;
  width: auto;
  display: block;
}

.stat-label-bold {
  font-weight: 800;
  font-size: 0.9rem;
  line-height: 1.2;
}

.stat-sub {
  font-size: 0.75rem;
  color: #aaaaaa;
}

.stat-divider {
  width: 1px;
  height: 35px;
  background-color: #333333;
}

.card-separator {
  width: 100%;
  height: 1px;
  background-color: #333333;
  margin-bottom: 24px;
}

/* Pricing Area */
.price-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
  width: 100%;
}

.original-price {
  color: #666666;
  text-decoration: line-through;
  font-size: 1rem;
  font-weight: 600;
}

.current-price {
  font-family: "Times New Roman MT", "Times New Roman", Times, serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

/* Countdown Left-Aligned with Centered Label */
.countdown-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 28px;
  width: 100%;
}

.countdown-label {
  font-size: 0.65rem;
  font-weight: 800;
  color: #ffc107;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
  text-align: center;
}

.countdown-timer {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: #121212;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid #282828;
}

.time-block {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.time-block span {
  font-family: "Times New Roman MT", "Times New Roman", Times, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
}

.time-block small {
  font-size: 0.65rem;
  font-weight: 700;
  color: #ffc107;
}

.time-separator {
  color: #444444;
  font-weight: 700;
}

/* Tombol */
.btn-buy {
  width: 100%;
  background-color: #ffc107;
  color: #000000;
  text-align: center;
  padding: 10px 24px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.1s ease;
}

.btn-buy:active {
  transform: scale(0.98);
}

/* === TAMPILAN MOBILE (Sama seperti gambar referensi) === */
@media (max-width: 768px) {
  .product-detail-section {
    padding: 0;
  }

  .product-main-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .product-image-box {
    aspect-ratio: 1 / 1;
    border-radius: 0;
    background: none;
  }

  .mobile-bg-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .desktop-placeholder-text {
    display: none;
  }

  /* Card Bawah Melengkung (Bottom Sheet) */
  .product-info-card {
    background-color: #000000;
    margin-top: -30px;
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
    padding: 32px 30px 40px;
    position: relative;
    z-index: 10;
    align-items: center;
    text-align: center;
  }

  .product-title {
    font-size: 2rem;
    margin-bottom: 16px;
  }

  .product-desc {
    font-size: 0.82rem;
    margin-bottom: 28px;
  }

  .current-price {
    font-size: 2rem;
  }

  .btn-buy {
    border-radius: 14px;
    font-size: 1.05rem;
  }
}










/* Container Wrapper */
.preset-features-list {
  background-color: #030303;
  padding-top: 32px;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left; /* Rata Kiri Seluruh Kontainer */
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Individual Feature Item */
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-align: left; /* Rata Kiri tiap Item */
}

/* Icon Box Alignment */
.feature-icon {
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding-top: 1px;
}

/* Text Group */
.feature-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left; /* Rata Kiri Judul & Deskripsi */
}

.feature-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.2px;
  line-height: 1.3;
  text-align: left;
}

.feature-desc {
  font-size: 0.82rem;
  font-weight: 400;
  color: #888888;
  margin: 0;
  line-height: 1.4;
  text-align: left;
}

/* Responsive Extra Small Screen */
@media (max-width: 480px) {
  .preset-features-list {
    padding: 20px 16px;
    gap: 18px;
  }
}

















/* Section Wrapper */
.ba-carousel-section {
  background-color: #000000;
  color: #ffffff;
  padding: 20px;
  font-family: 'Inter', sans-serif;
}

.ba-carousel-container {
  max-width: 1100px;
  margin: 0 auto;
}

.ba-section-title {
  font-family: "Times New Roman MT", "Times New Roman", Times, serif;
  font-size: 3.2rem;
  font-style: italic;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

/* Viewport Carousel */
.carousel-viewport {
  overflow: hidden;
  width: 100%;
  border-radius: 18px;
  background-color: #0d0d0d;
  border: 1px solid #222222;
}

.carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}

.carousel-slide {
  min-width: 100%;
  box-sizing: border-box;
  position: relative;
}

/* Before & After Inner Component */
.comparison-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  user-select: none;
}

.image-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.image-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.before-layer {
  width: 50%;
  overflow: hidden;
  z-index: 2;
  border-right: 2px solid #ffffff;
}

.before-layer img {
  width: 100%;
  max-width: none;
}

/* Badge Labels */
.slider-badge {
  position: absolute;
  top: 16px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.badge-before { left: 16px; }
.badge-after { right: 16px; }

/* Handle Divider */
.slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background-color: #ffffff;
  z-index: 3;
  transform: translateX(-50%);
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.handle-circle {
  width: 36px;
  height: 36px;
  background-color: #ffffff;
  color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.slider-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 4;
  margin: 0;
}

/* Preset Title Tag Inside Slide */
.preset-tag {
  text-align: center;
  padding: 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #888888;
  background-color: #0a0a0a;
  border-top: 1px solid #1a1a1a;
  letter-spacing: 0.5px;
}

/* Navigasi Control Bottom */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
}

.nav-btn {
  background: #121212;
  border: 1px solid #282828;
  color: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.nav-btn:hover {
  background: #222222;
  border-color: #444444;
  transform: scale(1.05);
}

.nav-btn:active {
  transform: scale(0.95);
}

/* Dots Indicator */
.carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #333333;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: #ffffff;
  width: 24px;
  border-radius: 10px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .ba-section-title {
    font-size: 1.9rem;
  }
  
  .comparison-slider {
    aspect-ratio: 3 / 2;
  }
}












/* Container Wrapper */
.testimonial-section {
  background-color: #030303;
  color: #ffffff;
  padding: 20px;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  overflow: hidden;
}

.testimonial-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Header Section */
.testimonial-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 20px auto;
}

.badge-pill {
  display: inline-block;
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #ffc107;
  border: 1px solid #ffc107;
  border-radius: 50px;
  background: rgba(214, 180, 252, 0.05);
  box-shadow: 0 0 15px rgba(214, 180, 252, 0.15);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.testimonial-title {
  font-family: "Times New Roman MT", "Times New Roman", Times, serif;
  font-size: 3rem;
  font-style: italic;
  font-weight: 600;
  letter-spacing: -1px;
  margin-bottom: 10px;
  color: #ffffff;
}

.testimonial-subtitle {
  font-size: 1rem;
  color: #9aa0a6;
  line-height: 1.6;
}

/* Viewport & Track */
.testi-viewport {
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
}

.testi-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Cards Design */
.testi-card {
  min-width: calc(33.333% - 14px); /* Tampil 3 card di Desktop */
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(10px);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.testi-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}

.testi-user-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.user-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.user-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.user-role {
  font-size: 0.75rem;
  color: #71767b;
  margin-top: 2px;
}

.testi-quote {
  font-size: 0.9rem;
  color: #c4c7c5;
  line-height: 1.55;
  margin-bottom: 24px;
}

/* Warna Bintang Amber-Gold */
.star-rating {
  display: flex;
  gap: 4px;
}

.star {
  font-size: 1.1rem;
  color: #333333; /* Bintang kosong */
}

.star.filled {
  color: #ffb800; /* Warna emas amber untuk bintang */
  text-shadow: 0 0 8px rgba(255, 184, 0, 0.3);
}

/* Bottom Navigasi Buttons */
/* Navigasi Controls Testimonial (Samakan Style Carousel) */
.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.testi-btn {
  background: #121212;
  border: 1px solid #282828;
  color: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: none; /* Menghapus shadow ungu sebelumnya */
}

.testi-btn:hover {
  background: #222222;
  border-color: #444444;
  transform: scale(1.05);
}

.testi-btn:active {
  transform: scale(0.95);
}

.testi-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.testi-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #333333;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testi-dots .dot.active {
  background-color: #ffffff;
  width: 24px;
  border-radius: 10px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .testi-card {
    min-width: calc(50% - 10px); /* Tampil 2 card di Tablet */
  }
}

@media (max-width: 600px) {
  .testimonial-title {
    font-size: 2.2rem;
  }
  .testi-card {
    min-width: 100%; /* Tampil 1 card penuh di Mobile */
  }
}













/* Container Mobile Sticky Bar */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 16px 16px;
  box-sizing: border-box;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.8);
}

.mobile-sticky-bar.show {
  transform: translateY(0);
}

.sticky-bar-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
}

/* Baris 1: 1 Line Horizontal Layout */
.sticky-info-inline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  width: 100%;
}

.sticky-info-inline .countdown-wrapper,
.sticky-info-inline .price-wrapper {
  margin-bottom: 5px;
}

/* Timer Badge Style Hero Section */
.discount-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 77, 77, 0.12);
  border: 1px solid rgba(255, 77, 77, 0.3);
  padding: 4px 10px;
  border-radius: 50px;
}

.badge-label {
  font-size: 0.6rem;
  font-weight: 700;
  color: #aaaaaa;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.timer-digits {
  font-size: 0.8rem;
  font-weight: 800;
  color: #ff4d4d;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.5px;
}

/* Baris 2: Button CTA Full Width */
.sticky-buy-btn {
  width: 100%;
  background: #ffc107;
  color: #030303;
  border: none;
  padding: 10px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sticky-buy-btn:active {
  background: #e5e5e5;
  transform: scale(0.98);
}

@media (max-width: 768px) {
  .mobile-sticky-bar {
    display: block;
  }

  .sticky-info-inline .current-price {
    font-size: 1.5rem;
  }

  .sticky-info-inline .original-price {
    font-size: .8rem;
  }

  .sticky-info-inline .countdown-label {
    font-size: .6rem;
  }
}







/* Section Wrapper */
.how-it-works-section {
  background-color: #030303;
  padding: 20px;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #ffffff;
  padding-bottom: 50px;
}

/* Container Width Constraint (Aesthetic Alignment) */
.how-it-works-container {
  max-width: 800px;
  margin: 0 auto;
}

/* Header Formatting */
.how-header {
  text-align: center;
  margin-bottom: 40px;
}

.how-tagline {
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffc107; /* Accent Color */
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 14px;
}

.how-title {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.8px;
  margin: 0 0 16px 0;
  line-height: 1.25;
  color: #ffffff;
}

.how-title em {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: #ffffff;
}

.how-subtitle {
  font-size: 0.95rem;
  color: #888888;
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto;
}

/* Step Cards Stack */
.steps-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  transition: border-color 0.3s ease, background 0.3s ease;
  text-align: left;
}

.step-card:hover {
  border-color: rgba(255, 193, 7, 0.3);
  background: rgba(255, 255, 255, 0.035);
}

/* Big Serif Number Styling */
.step-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #ffc107; /* Yellow Accent */
  line-height: 1;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

/* Card Content Group */
.step-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.step-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.2px;
}

.step-desc {
  font-size: 0.88rem;
  color: #888888;
  margin: 0;
  line-height: 1.5;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
  .how-it-works-section {
    padding: 60px 16px;
  }

  .how-title {
    font-size: 1.65rem;
  }

  .how-subtitle {
    font-size: 0.88rem;
  }

  .step-card {
    padding: 20px;
    gap: 18px;
  }

  .step-number {
    font-size: 1.8rem;
  }

  .step-title {
    font-size: 0.95rem;
  }

  .step-desc {
    font-size: 0.82rem;
  }
}








/* Section Container */
.related-products-section {
  background-color: #030303;
  padding: 20px;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #ffffff;
  padding-bottom: 50px;
}

.related-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Header */
.related-header {
  text-align: center;
  margin-bottom: 40px;
}

.related-tagline {
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffc107;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 12px;
}

.related-title {
  font-family: "Times New Roman MT", "Times New Roman", Times, serif;
  font-size: 3rem;
  font-weight: 600;
  font-style: italic;
  letter-spacing: -1px;
  margin: 0;
  color: #ffffff;
}

/* Grid Layout */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Product Card */
.product-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Image Wrapper & Zoom Effect */
.card-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background-color: #111111;
}

.card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .card-image-wrapper img {
  transform: scale(1.06);
}

/* Badges */
.product-badge {
  display: none;
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.8px;
}

.product-badge.badge-accent {
  border-color: rgba(255, 193, 7, 0.4);
  color: #ffc107;
}

/* Card Body */
.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: left;
}

.product-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 6px 0;
  letter-spacing: -0.2px;
}

.product-desc {
  font-size: 0.82rem;
  color: #888888;
  line-height: 1.45;
  margin: 0 0 20px 0;
  flex-grow: 1;
}

/* Card Footer & Button */
.card-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.product-price {
  display: flex;
  flex-direction: column;
}

.price-orig {
  font-size: 1rem;
  color: #666666;
  text-decoration: line-through;
}

.price-curr {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.3px;
}

.add-btn {
  background: #121212;
  border: 1px solid #282828;
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.add-btn:hover {
  background: #ffc107;
  color: #030303;
  border-color: #ffc107;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}










.product-section {
    width: 100%;
    max-width: 1100px;
    margin: 50px auto 40px auto;
    padding: 0 20px;
    margin-bottom: 80px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-yellow);
    background: rgba(255, 193, 7, 0.08);
    padding: 5px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255, 193, 7, 0.2);
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Layout Grid 3 Kartu */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    align-items: stretch;
}

/* Card Styling */
.product-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: #444444;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.6);
}

/* Highlight Card (Kartu Tengah) */
.product-card.featured {
    border-color: var(--accent-yellow);
    background: linear-gradient(180deg, rgba(255, 193, 7, 0.03) 0%, var(--card-bg) 100%);
}

.product-card.featured:hover {
    box-shadow: 0 16px 32px rgba(255, 193, 7, 0.12);
}

.badge-populer {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 10;
    background: var(--accent-yellow);
    color: #000000;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Gambar Card */
.card-image-wrap {
    position: relative;
    aspect-ratio: 1 / 1;
    width: 100%;
    padding-top: 60%;
    overflow: hidden;
    background-color: #1a1a1a;
}

.card-image-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: var(--transition);
}

.product-card:hover .card-image-wrap img {
    filter: grayscale(0%);
    transform: scale(1.04);
}

/* Content Body */
.card-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category-foot {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.product-category.accent-text {
    color: var(--accent-yellow);
}

.product-title-foot {
    font-family: "Times New Roman MT", "Times New Roman", Times, serif;
    font-size: 1.8rem;
    font-weight: 700;
    font-style: italic;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-description-foot {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* List Fitur */
.product-features-foot {
    list-style: none;
    margin-bottom: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 14px;
}

.product-features-foot li {
    font-size: 0.82rem;
    color: #cccccc;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-features li svg {
    flex-shrink: 0;
    color: var(--accent-yellow);
}

/* Footer: Mencegah elemen melar ke samping */
.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Harga tetap di kiri */
.price-box {
    display: flex;
    flex-direction: column;
    white-space: nowrap;
}

.old-price {
    font-size: 0.75rem;
    color: #666666;
    text-decoration: line-through;
    line-height: 1.1;
}

.current-price-foot {
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
}

/* Tombol Ringkas (Ukurannya hanya selebar teks "Beli") */
.btn-buy-foot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto !important;
    /* Kunci: Mencegah tombol melar */
    max-width: max-content;
    /* Kunci: Batasi lebar sesuai isi teks */
    padding: 8px 80px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    color: #ffffff;
    background: #1f1f1f;
    border: 1px solid #333333;
    white-space: nowrap;
    flex-shrink: 0;
    /* Mencegah tombol gepeng */
    transition: var(--transition);
}

.btn-buy-foot:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

.product-features-foot svg {
  color: #ffc107;
}

/* Tombol khusus Featured (Aksen Kuning #ffc107) */
.btn-buy-foot.featured-btn {
    background: var(--accent-yellow);
    color: #000000;
    border-color: var(--accent-yellow);
}

.btn-buy-foot.featured-btn:hover {
    background: #e0a800;
    border-color: #e0a800;
}

/* Responsif HP */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
}













.helper-text {
    font-size: 13px;
    color: #888;
    margin-top: 12px;
}

/* Styling Utama Footer */
.site-footer {
  background-color: #000000;
  color: #ffffff;
  padding: 12px 20px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  border-top: 2px solid #161616;
  z-index: 10000;
}

/* Layout Grid Kolom Utama */
.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Kolom Brand / Logo */
.footer-logo {
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: -0.5px;
  display: inline-block;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-logo img {
  width: 210px;
}

.footer-description {
  color: #cccccc;
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.6;
  max-width: 500px;
}

/* Heading Kolom */
.footer-heading {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 24px;
}

/* Navigasi Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  transition: opacity 0.2s ease;
  font-weight: 600;
}

.footer-links a:hover {
  opacity: 0.8;
}

/* Social Media Section */
.social-icons {
  display: flex;
  gap: 16px;
  align-items: center;
}

.social-icons img {
  width: 32px;
}

.tiktok-btn {
  color: #f9f5f0;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f9f5f0;
  border-radius: 8px;
  color: #ffffff;
  transition: transform 0.2s ease;
}

.social-btn svg {
  width: 32px;
  height: 32px;
}

.social-btn:hover {
  transform: translateY(-3px);
}

/* Bottom Bar / Copyright */
.footer-bottom {
  max-width: 1400px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid #333333;
  text-align: center;
  font-size: 0.85rem;
  color: #888888;
  font-style: italic;
}

.brand-highlight a {
  color: #ffc107;
  font-weight: 700;
  text-decoration: none;
}

/* Responsif Mobile & Tablet */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center; /* Membuat semua teks & heading rata tengah */
  }

  /* Mengatur ikon sosmed agar berada di tengah */
  .footer-container .social-icons {
    justify-content: center;
  }

  /* Mengatur deskripsi agar margin-nya auto untuk presisi tengah */
  .footer-description {
    margin: 0 auto;
  }
}

.countdown-wrapper {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.countdown-label {
  font-size: 0.65rem;
  font-weight: 800;
  color: #ffc107;
  letter-spacing: 1px;
}

.countdown-timer {
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: #1a1a1a;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid #333333;
}

.time-block {
  display: flex;
  align-items: baseline;
  gap: 1px;
}

.time-block span {
  font-family: 'Imbue', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  min-width: 18px;
  text-align: center;
}

.time-block small {
  font-size: 0.6rem;
  font-weight: 700;
  color: #ffc107;
}

.time-separator {
  color: #555555;
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 2px;
}