/* ==========================================================================
   RESET & SYSTEM VARIABLES (Elegant Light Edition - Warm Honey)
   ========================================================================== */
@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 Soft Light - Cocok untuk makanan */
  --bg-light: #fdfbf7;
  --bg-light-gradient: radial-gradient(circle at 50% 40%, #ffffff, #f3ede2 75%);

  /* Card Background */
  --bg-card: rgba(255, 255, 255, 0.85);
  --bg-card-hover: rgba(255, 255, 255, 0.98);

  /* Aksen: Warm Honey / Caramel (Mewah dan ramah untuk kuliner) */
  --accent: #c48b2d;
  --accent-light: #dfaf5c;
  --accent-dark: #9c6211;
  --accent-glow: rgba(196, 139, 45, 0.2);

  /* Teks */
  --text-primary: #251c11;
  --text-muted: #786b59;
  --text-dim: #9c8f7a;

  /* Font */
  --font-heading: 'Playfair Display', serif;
  --font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  background: var(--bg-light-gradient);
  background-attachment: fixed;
  color: var(--text-primary);
  font-family: var(--font-family);
  line-height: 1.7;
  overflow-x: hidden;
}

#pjax-container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
  margin: 0;
}

/* ===== UTILITIES & LAYOUT ===== */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.section-spacing {
  padding: 80px 0;
}

.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(--accent);
  background: rgba(196, 139, 45, 0.1);
  padding: 6px 20px;
  border-radius: 30px;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
  border: 1px solid rgba(196, 139, 45, 0.2);
}

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(--accent);
}

p {
  color: var(--text-muted);
}

.section-header p {
  font-size: 1.05rem;
}

.fw-800 {
  font-weight: 800;
}

/* ===== TOPBAR INFORMASI ===== */
.top-bar {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 6px 1.25rem;
  font-size: 0.72rem;
  color: #ffffff;
  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: #ffffff;
  font-weight: 700;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(135deg, #ffffff 0%, #fcf9f5 100%);
  border-bottom: 1px solid rgba(196, 139, 45, 0.2);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
  transition: all 0.35s ease;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1.25rem;
}

.logo {
  font-size: 1.35rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.logo span {
  color: var(--accent);
}

.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: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  transition: color 0.35s ease;
  position: relative;
}

.nav-menu a:hover {
  color: var(--accent);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.btn-nav {
  background: var(--accent);
  color: #ffffff;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 9px;
  text-decoration: none;
  font-size: 0.8rem;
  box-shadow: 0 4px 16px rgba(196, 139, 45, 0.2);
  transition: all 0.35s ease;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
}

.btn-nav:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
  box-shadow: 0 6px 20px rgba(196, 139, 45, 0.3);
}

.btn-nav-mobile {
  display: none;
}

.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(--accent);
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  padding: 15px 36px;
  border-radius: 14px;
  box-shadow: 0 12px 30px var(--accent-glow);
  transition: all 0.35s ease;
  font-size: 0.95rem;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(196, 139, 45, 0.3);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(0, 0, 0, 0.15);
  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(--accent);
  color: var(--accent);
  background: rgba(196, 139, 45, 0.05);
}

/* ===== SECTION 1: SLIDER ===== */
.slider-section {
  width: 100%;
  height: auto;
  min-height: 600px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at right top, #f9f4ed, #ffffff);
  border-bottom: 1px solid rgba(196, 139, 45, 0.1);
  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%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.css-slider .slide {
  width: 50%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.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;
}

.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(--accent);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 2.5px;
  margin-bottom: 1.5rem;
  display: inline-block;
  background: rgba(196, 139, 45, 0.1);
  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(--accent), var(--text-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.slide-content p {
  font-size: 1.05rem;
  max-width: 580px;
  margin-bottom: 2.8rem;
  color: var(--text-muted);
}

.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: var(--text-muted);
}

.slide-stats-card {
  background: radial-gradient(circle at center, #ffffff, #fdfaf6);
  border: 1px solid rgba(196, 139, 45, 0.2);
  border-radius: 28px;
  padding: 2.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  width: 100%;
  box-sizing: border-box;
}

.stats-card-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(253, 250, 246, 0.8);
  padding: 1.1rem 1.4rem;
  border-radius: 18px;
  border: 1px solid rgba(196, 139, 45, 0.1);
}

.stats-number {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--accent);
  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;
}

#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(196, 139, 45, 0.3);
  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(--accent);
  width: 38px;
  border-radius: 12px;
  box-shadow: 0 0 18px var(--accent-glow);
}

/* ===== SECTION 2: ABOUT ===== */
.about-section {
  background: linear-gradient(135deg, #fbf7f2, #ffffff);
}

.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(196, 139, 45, 0.2);
  padding-top: 1.8rem;
}

.stat-box h3 {
  font-size: 2.8rem;
  color: var(--accent);
  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 img {
  width: 100%;
}

.about-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-card {
  background: radial-gradient(circle at center, #ffffff, #faf6f0);
  border: 1px solid rgba(196, 139, 45, 0.2);
  border-radius: 32px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 31px;
}

/* ===== 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(196, 139, 45, 0.15);
  border-radius: 28px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(12px);
}

.product-thumb {
  width: 100%;
  background: linear-gradient(to top, #f3ede2, #ffffff);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.thumb-placeholder {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.thumb-placeholder img {
  width: 100%;
}

.product-info {
  padding: 2rem;
}

.prod-cat {
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.product-info h3 {
  font-size: 1.45rem;
  color: var(--text-primary);
  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(196, 139, 45, 0.15);
  padding-top: 1.4rem;
}

.price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent);
  font-family: var(--font-heading);
}

.btn-icon {
  width: 48px;
  height: 48px;
  background: #faf5eb;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  text-decoration: none;
  font-weight: bold;
  font-size: 1.25rem;
  transition: all 0.35s ease;
  border: 1px solid rgba(196, 139, 45, 0.3);
}

.product-card:hover {
  transform: translateY(-10px);
  border-color: rgba(196, 139, 45, 0.5);
  box-shadow: 0 20px 50px var(--accent-glow);
}

.product-card:hover .btn-icon {
  background: var(--accent);
  color: #ffffff;
}

/* ===== SECTION 4: CORE VALUES ===== */
.core-section {
  background: linear-gradient(180deg, #fcfaf5, #ffffff);
}

.core-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.2rem;
}

.core-card {
  background: radial-gradient(circle at top, #ffffff, #faf7f2);
  border: 1px solid rgba(196, 139, 45, 0.15);
  padding: 3.6rem 2.5rem;
  border-radius: 30px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
}

.core-icon {
  font-size: 2.8rem;
  color: var(--accent);
  margin-bottom: 1.8rem;
  display: inline-block;
  line-height: 1;
}

.core-card h4 {
  font-size: 1.45rem;
  color: var(--text-primary);
  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(196, 139, 45, 0.4);
  background: var(--bg-card-hover);
}

/* ===== SECTION 5: CLIENTS ===== */
.client-section {
  background: #fdfaf6;
  border-top: 1px solid rgba(196, 139, 45, 0.1);
  border-bottom: 1px solid rgba(196, 139, 45, 0.1);
  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(0, 0, 0, 0.25);
  letter-spacing: 4px;
  transition: all 0.35s ease;
}

.client-logo:hover {
  color: var(--accent);
}

/* ===== SECTION 6: REVIEW ===== */
.review-section {
  background: radial-gradient(circle at bottom left, #faf5eb, #ffffff);
}

.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(196, 139, 45, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
  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(--accent);
  letter-spacing: 2.5px;
  font-size: 0.95rem;
}

.quote-mark {
  color: rgba(196, 139, 45, 0.2);
  font-size: 5rem;
  font-family: serif;
  line-height: 0;
}

.review-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  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(--accent-light);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.15rem;
}

.user-info strong {
  display: block;
  color: var(--text-primary);
  font-size: 1.02rem;
}

.user-info span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.review-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  background: var(--bg-card-hover);
}

/* ===== SECTION 7: CTA ===== */
.cta-section {
  background: #ffffff;
}

.cta-box {
  background: radial-gradient(circle at center, #fbf7f1, #ffffff);
  border: 1px solid rgba(196, 139, 45, 0.25);
  padding: 5rem 4.2rem;
  border-radius: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.03);
  position: relative;
}

.cta-content {
  max-width: 620px;
}

.cta-badge {
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2.5px;
  margin-bottom: 1.5rem;
  display: inline-block;
  background: rgba(196, 139, 45, 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: #ffffff;
  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.2);
  white-space: nowrap;
}

.btn-whatsapp:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(37, 211, 102, 0.35);
}

.cta-note {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ===== FOOTER ===== */
.site-footer {
  background: #faf7f4;
  color: var(--text-muted);
  padding: 80px 0 45px;
  border-top: 1px solid rgba(196, 139, 45, 0.1);
}

.site-footer h5 {
  color: var(--text-primary);
  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(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(196, 139, 45, 0.1);
  padding-top: 35px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 6rem;
}

/* ===== SEARCH PREMIUM & UTILS ===== */
.search-premium {
  position: relative;
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  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: var(--text-primary);
  padding: 10px 15px;
  width: 100%;
  outline: none;
  font-size: 0.95rem;
}

.search-premium button {
  background: var(--accent);
  border: none;
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.85rem;
  transition: 0.3s;
}

.search-premium button:hover {
  background: var(--accent-light);
  transform: scale(1.05);
}

.category-pills {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  white-space: nowrap;
  padding: 5px 0;
  scrollbar-width: none;
}

.category-pills::-webkit-scrollbar {
  display: none;
}

.pill-item {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--text-muted);
  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(196, 139, 45, 0.1);
  color: var(--accent);
  border-color: var(--accent);
}

.pill-item.filter-trigger {
  background: var(--accent);
  color: #ffffff;
  margin-left: auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .slide-content { grid-template-columns: 1fr; gap: 3rem; padding: 0 1.2rem; }
  .slide-content h2 { font-size: 2.8rem; }
  .slide-stats-card { padding: 2.2rem; }
  .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) {
  .top-bar { display: none; }
  .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: var(--accent);
    color: #ffffff;
    border: none;
  }
  .menu-toggle { display: flex; }
  .menu-toggle span { background: var(--accent); }
  .menu-toggle.active span { background: var(--accent-light); }
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #f9f4ed 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(196, 139, 45, 0.2);
    box-shadow: -15px 0 40px rgba(0, 0, 0, 0.1);
  }
  .navbar.active { right: 0; }
  .nav-menu { flex-direction: column; align-items: center; gap: 2rem; }
  .nav-menu a { color: var(--text-primary); }
  .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.1);
  }
  #productTab { display: flex; width: 100%; border-radius: 15px; }
  #productTab .nav-link { flex: 1; padding: 8px 10px; font-size: 0.8rem; }
  .slider-section { 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; }
  .kategori { display: none; }
}

@media (max-width: 576px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

/* ===== ARTICLE & PRODUCT DETAIL ===== */
.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: var(--text-primary); font-weight: 700; margin-top: 2.5rem; margin-bottom: 1.5rem; }
.article-body blockquote { border-left: 5px solid var(--accent); padding: 1rem 2rem; background: #faf8f5; font-style: italic; }

.product-detail-section { background-color: #fdfaf6; }

#productTab {
  background: rgba(0, 0, 0, 0.02);
  padding: 8px;
  border-radius: 50px;
  display: inline-flex;
  margin: 0 auto 2rem auto;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

#productTab .nav-link {
  color: var(--text-muted);
  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: var(--accent);
  color: #ffffff !important;
  box-shadow: 0 4px 15px var(--accent-glow);
}

#tab-desc { text-align: justify; line-height: 1.8; color: var(--text-muted); }

.info-box {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.info-box:hover {
  border-color: rgba(196, 139, 45, 0.4) !important;
  transform: translateY(-5px);
}

.info-box h6 { text-transform: uppercase; letter-spacing: 1px; font-size: 0.75rem; margin-bottom: 10px; }

.product-keywords .info-box a { color: var(--text-dim); transition: color 0.3s ease; display: block; }
.product-keywords .info-box:hover a { color: var(--accent); }

/* FAKE ORDER NOTIF STYLING */
.fake-order-container {
  position: fixed;
  bottom: 85px;
  left: 20px;
  z-index: 999;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 12px;
  width: 320px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: none;
  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: var(--text-primary); }
.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; }

@keyframes slideUp {
  from { transform: translateY(100px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ==========================================================================
   CSS MODERN PRODUCT SECTION (LIGHT & PROFESSIONAL)
   ========================================================================== */

:root {
  --bg-light: #faf8f5;
  --bg-light-gradient: radial-gradient(circle at 50% 40%, #ffffff, #f4eee2 75%);
  --bg-card: #ffffff;
  --gold: #c5a059;
  --gold-light: #e0be77;
  --gold-dark: #8c6d2d;
  --gold-glow: rgba(197, 160, 89, 0.15);
  --text-primary: #1c1917;
  --text-muted: #665f55;
}

.modern-product-section {
  padding: 4.5rem 0;
  background: var(--bg-light-gradient);
  position: relative;
  overflow: hidden;
}

.modern-product-section .section-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(197, 160, 89, 0.15);
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 1.2rem;
  letter-spacing: 1.5px;
  border: 1px solid rgba(197, 160, 89, 0.25);
}

.modern-product-section .section-title {
  font-size: 2.3rem;
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0;
  letter-spacing: 0.3px;
}

.modern-product-section .section-title span {
  color: var(--gold);
}

.modern-product-section .view-all-link {
  color: var(--gold-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.35s ease;
  display: inline-flex;
  align-items: center;
}

.modern-product-section .view-all-link:hover {
  color: var(--gold);
  transform: translateX(3px);
}

/* ===== MODERN PRODUCT CARD ===== */
.p-card-modern {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--bg-card);
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  height: 100%;
}

.p-card-modern:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px var(--gold-glow);
  border-color: var(--gold);
}

.p-card-modern .p-img {
  position: relative;
  width: 100%;
  padding-top: 100%; /* Aspek rasio 1:1 */
  overflow: hidden;
  background: #f8f5ee;
}

.p-card-modern .p-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.p-card-modern:hover .p-img img {
  transform: scale(1.05);
}

.p-card-modern .p-body {
  padding: 1.25rem;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.p-card-modern .p-body small {
  color: var(--gold-dark) !important;
  font-weight: 600;
}

.p-card-modern .p-body h6 {
  font-family: var(--font-heading, 'Playfair Display', serif);
  color: var(--text-primary);
  font-size: 0.95rem;
  line-height: 1.4;
  font-weight: 600;
  margin-top: 0.2rem;
  margin-bottom: 1rem;
  transition: color 0.35s ease;
}

.p-card-modern:hover .p-body h6 {
  color: var(--gold-dark);
}

/* ===== FOOTER CARD: HARGA & CTA ===== */
.p-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(197, 160, 89, 0.15);
  padding-top: 0.85rem;
  margin-top: auto;
}

.p-meta .price {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gold-dark);
  font-family: var(--font-heading, 'Playfair Display', serif);
}

.p-meta .btn-icon {
  width: 38px;
  height: 38px;
  background: #fdfaf6;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.35s ease;
  border: 1px solid rgba(197, 160, 89, 0.35);
}

.p-card-modern:hover .btn-icon {
  background: var(--gold);
  color: #ffffff;
  border-color: var(--gold);
}

/* ===== RESPONSIVE MOBILE ===== */
@media (max-width: 768px) {
  .modern-product-section {
    padding: 3rem 0;
  }
  
  .modern-product-section .section-title {
    font-size: 1.55rem;
  }

  .p-card-modern .p-body {
    padding: 0.9rem;
  }

  .p-card-modern .p-body small {
    font-size: 0.68rem !important;
    letter-spacing: 0.3px !important;
    margin-bottom: 0.2rem !important;
  }

  .p-card-modern .p-body h6 {
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
  }

  .p-meta .price {
    font-size: 0.95rem;
  }

  .p-meta .btn-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }
}
/* ==========================================================================
   FLOATING WHATSAPP, FOOTER, MODALS, DAN NOTIFICATIONS
   ========================================================================== */

/* --- 1. Floating WhatsApp (Desktop) --- */
.wa-float-desktop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    align-items: center;
    background: linear-gradient(135deg, #25d366, #1aa34a);
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.wa-float-desktop:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

.wa-float-text {
    font-size: 0.9rem;
    font-weight: 700;
    margin-right: 12px;
    letter-spacing: 0.3px;
    color: #ffffff;
}

.wa-float-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #ffffff;
}

/* --- 2. Footer Styling --- */
.site-footer {
    background: #030302;
    color: var(--text-muted);
    padding: 80px 0 45px;
    border-top: 1px solid rgba(212, 175, 55, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 55px;
}

.footer-col h5 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 26px;
    letter-spacing: 0.5px;
    font-family: var(--font-heading);
}

.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;
}

/* --- 3. Bottom Navigation (Mobile) --- */
.bottom-nav-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 64px;
    background: linear-gradient(135deg, #1d180f, #090804);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.6);
}

.bottom-nav-mobile a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.72rem;
    gap: 4px;
    width: 25%;
    height: 100%;
    transition: all 0.35s ease;
}

.bottom-nav-mobile a i {
    font-size: 1.35rem;
    color: var(--text-muted);
    transition: color 0.35s ease;
}

.bottom-nav-mobile a.active, 
.bottom-nav-mobile a:hover {
    color: var(--gold);
}

.bottom-nav-mobile a.active i,
.bottom-nav-mobile a:hover i {
    color: var(--gold);
    filter: drop-shadow(0 0 8px var(--gold-glow));
}

/* --- 4. Modal Chat Overlay --- */
.modal-chat-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(9, 8, 4, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-chat-overlay.show {
    display: flex;
    opacity: 1;
}

.modal-chat-content {
    background: radial-gradient(circle at center, #231b11, #060401);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 28px;
    width: 100%;
    max-width: 440px;
    margin: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.85);
    transform: translateY(30px);
    transition: transform 0.3s ease;
}

.modal-chat-overlay.show .modal-chat-content {
    transform: translateY(0);
}

.modal-chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.8rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.btn-close-chat {
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.35s ease;
}

.btn-close-chat:hover {
    background: var(--gold);
    color: #050402;
    transform: rotate(90deg);
}

.modal-chat-body {
    padding: 1.8rem;
}

.chat-option-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    text-decoration: none;
    background: rgba(24, 19, 11, 0.75);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 18px;
    padding: 1.2rem;
    margin-bottom: 1.25rem;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.chat-option-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 10px 30px var(--gold-glow);
    background: rgba(38, 30, 18, 0.9);
}

.chat-option-card:last-child {
    margin-bottom: 0;
}

.chat-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.chat-info span {
    font-size: 0.95rem;
}

.chat-info small {
    font-size: 0.78rem;
}

/* --- 5. Fake Order Notifications --- */
.fake-order-container {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 9998;
    background: radial-gradient(circle at center, #231b11, #060401);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 20px;
    padding: 14px 18px;
    width: 340px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transform: translateX(-120%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.fake-order-container.active {
    transform: translateX(0);
    opacity: 1;
}

.order-content {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
}

.order-img {
    width: 65px;
    height: 65px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.order-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-text {
    flex-grow: 1;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.order-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2px;
}

.order-title span {
    color: var(--gold);
}

.order-subtitle {
    font-size: 0.82rem;
    margin-bottom: 6px;
    color: var(--text-muted);
}

.order-time {
    font-size: 0.72rem;
    color: var(--text-dim);
}

.order-close {
    position: absolute;
    top: -4px;
    right: -2px;
    background: transparent;
    border: none;
    color: var(--text-dim);
    font-size: 1.25rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.order-close:hover {
    color: var(--gold);
}

/* --- 6. Utilities & Responsiveness --- */
.animate-pop {
    animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .fake-order-container {
        left: 16px;
        right: 16px;
        width: auto;
        bottom: 80px; /* Jarak aman di atas Bottom Nav Mobile */
    }
}
/* --- Modal Chat Overlay --- */
.modal-chat-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(9, 8, 4, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-chat-overlay.show {
    display: flex;
    opacity: 1;
}

.modal-chat-content {
    background: radial-gradient(circle at center, #231b11, #060401);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 28px;
    width: 100%;
    max-width: 440px;
    margin: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.85);
    transform: translateY(30px);
    transition: transform 0.3s ease;
}

.modal-chat-overlay.show .modal-chat-content {
    transform: translateY(0);
}

.modal-chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.8rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.btn-close-chat {
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.35s ease;
}

.btn-close-chat:hover {
    background: var(--gold);
    color: #050402;
    transform: rotate(90deg);
}

.modal-chat-body {
    padding: 1.8rem;
}

.chat-option-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    text-decoration: none;
    background: rgba(24, 19, 11, 0.75);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 18px;
    padding: 1.2rem;
    margin-bottom: 1.25rem;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.chat-option-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    background: rgba(38, 30, 18, 0.9);
}

.chat-option-card:last-child {
    margin-bottom: 0;
}

.chat-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.chat-info span {
    font-size: 0.95rem;
    color: #ffffff;
}

.chat-info small {
    font-size: 0.78rem;
    color: #a0a0a0;
}

/* --- Animasi --- */
.animate-pop {
    animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* --- Notifikasi Fake Order --- */
#fake-order-notif {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    display: none;
    width: 320px;
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    color: #fff;
}

@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;
    }
}

/* ==========================================================================
   PRODUCT DETAIL - LIGHT PREMIUM (FINAL FIX)
   ========================================================================== */
:root {
  --bg-premium: #FBFBFA;
  --bg-white: #111111;
  --text-dark: #121212;     /* Hitam pekat untuk teks utama */
  --text-grey: #4A4A4A;     /* Abu-abu tua untuk deskripsi */
  --gold-satin: #B59449;    /* Emas mewah */
  --gold-hover: #967A3B;
  --border-light: rgba(0, 0, 0, 0.08);
  --shadow-lux: 0 20px 40px rgba(0, 0, 0, 0.04);
}
/* --- Section & Layout Spacing --- */
.product-detail-section {
    background-color: var(--bg-premium) !important;
    padding: 100px 0 !important; /* Spacing profesional */
    color: var(--text-dark) !important;
}

.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

/* --- Teks & Tipografi --- */
.product-detail-section h1.display-6 {
    color: var(--text-dark) !important;
    font-weight: 800 !important;
    letter-spacing: -0.5px;
    margin-bottom: 25px;
}

.product-detail-section p.text-secondary {
    color: var(--text-grey) !important;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 35px;
}

/* --- Gallery & Thumbnail Foto --- */
.main-img-view {
    background: var(--bg-white);
    padding: 12px;
    border-radius: 24px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lux);
    margin-bottom: 20px;
}

.main-img-view img {
    border-radius: 16px;
    width: 100%;
}

.thumb-list {
    padding-top: 10px;
    display: flex;
    gap: 12px;
}

.thumb-item {
    width: 85px !important; /* Ukuran thumb konsisten */
    height: 85px !important;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid var(--border-light);
    padding: 4px;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.thumb-item:hover {
    border-color: var(--gold-satin);
    transform: translateY(-4px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.08);
}

/* --- Advantage List (Centang Emas) --- */
.advantage-list {
    background: rgba(181, 148, 73, 0.05);
    padding: 30px;
    border-radius: 20px;
    margin: 40px 0;
    border: 1px solid rgba(181, 148, 73, 0.1);
}

.advantage-list span {
    color: var(--text-dark) !important;
    font-weight: 500;
}

.bi-patch-check-fill {
    color: var(--gold-satin) !important;
}

/* --- Buttons (Premium Size) --- */
.btn-warning {
    background-color: var(--gold-satin) !important;
    border: none !important;
    color: #ffffff !important;
    padding: 18px 35px !important; /* Button besar & mantap */
    border-radius: 16px !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    box-shadow: 0 10px 25px rgba(181, 148, 73, 0.25) !important;
    transition: all 0.3s ease;
}

.btn-warning:hover {
    background-color: var(--gold-hover) !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(181, 148, 73, 0.35) !important;
}

.btn-outline-light {
    border: 1px solid var(--border-light) !important;
    background-color: #ffffff !important;
    color: var(--text-dark) !important;
    padding: 18px 25px !important;
    border-radius: 16px !important;
}

.btn-outline-light:hover {
    background-color: #f8f8f8 !important;
    color: var(--gold-satin) !important;
    border-color: var(--gold-satin) !important;
}

/* --- Tabs Styling --- */
.nav-pills .nav-link {
    color: var(--text-grey);
    font-weight: 600;
    padding: 15px 35px;
    transition: 0.3s;
}

.nav-pills .nav-link.active {
    background-color: transparent !important;
    color: var(--gold-satin) !important;
    border-bottom: 3px solid var(--gold-satin);
    border-radius: 0;
}