/* ════════════════════════════════════════════════════════════════
   MBGPLG.COM — Premium B2B Food Supplier Design System
   Author: Antigravity | Version: 1.0
════════════════════════════════════════════════════════════════ */


@import url('design-system.css');
@import url('mbg-dialogs.css');

/* ─── DESIGN TOKENS ─── */
:root {
  /* Brand Colors */
  --navy:        var(--color-primary);
  --navy-mid:    var(--color-primary-hover);
  --navy-light:  #23528F;
  --blue:        var(--color-info);
  --blue-light:  #2980b9;
  --green:       #1e8449;
  --green-light: #27ae60;
  --green-pale:  #d5f5e3;
  --gold:        #d4a017;
  --gold-light:  #f0c27f;
  --teal:        #148f77;
  --red:         #c0392b;

  /* Neutrals */
  --white:       #ffffff;
  --gray-50:     #f8fafc;
  --gray-100:    #f1f5f9;
  --gray-200:    #e2e8f0;
  --gray-300:    #cbd5e1;
  --gray-400:    #94a3b8;
  --gray-500:    #64748b;
  --gray-600:    #475569;
  --gray-700:    #334155;
  --gray-800:    #1e293b;
  --gray-900:    #0f172a;

  /* Typography */
  --font-head: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-body: 'Inter', 'Plus Jakarta Sans', sans-serif;

  /* Spacing */
  --space-xs:   0.25rem;
  --space-sm:   0.5rem;
  --space-md:   1rem;
  --space-lg:   1.5rem;
  --space-xl:   2rem;
  --space-2xl:  3rem;
  --space-3xl:  4rem;
  --space-4xl:  6rem;

  /* Border Radius */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:  0 4px 12px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.12), 0 4px 16px rgba(0,0,0,.08);
  --shadow-xl:  0 24px 64px rgba(0,0,0,.16), 0 8px 24px rgba(0,0,0,.10);
  --shadow-navy: 0 8px 30px rgba(13,33,55,.25);
  --shadow-green: 0 8px 30px rgba(30,132,73,.20);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition:      250ms ease;
  --transition-slow: 400ms ease;

  /* Header */
  --header-h: 72px;
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  -ms-overflow-style: none !important;  /* IE and Edge */
  scrollbar-width: none !important;  /* Firefox */
}
body {
  font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: #0F172A;
  background: #F8FAFC;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
  margin: 0 !important;
  padding: 0 !important;
  -ms-overflow-style: none !important;  /* IE and Edge */
  scrollbar-width: none !important;  /* Firefox */
}
/* Hide scrollbar for Chrome, Safari and Opera */
html::-webkit-scrollbar,
body::-webkit-scrollbar,
*::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}
main {
  display: block;
  margin: 0;
  padding: 0;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
p  { line-height: 1.7; }

.gradient-text {
  background: linear-gradient(135deg, var(--green-light), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
}

/* ─── LAYOUT ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}
@media (max-width: 768px) { .container { padding: 0 var(--space-md); } }

.text-center { text-align: center; }
.mt-8 { margin-top: 2.5rem; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-full);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  box-shadow: 0 4px 15px rgba(10, 37, 64, 0.25);
}
.btn-primary:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  color: var(--white);
  box-shadow: 0 8px 25px rgba(10, 37, 64, 0.4);
}

.btn-green, .btn-whatsapp, .btn-wa {
  background: #25D366 !important;
  color: #FFFFFF !important;
  border-color: #25D366 !important;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35) !important;
}
.btn-green:hover, .btn-whatsapp:hover, .btn-wa:hover {
  background: #1EBE5D !important;
  border-color: #1EBE5D !important;
  color: #FFFFFF !important;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5) !important;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  color: var(--white);
}

.btn-outline-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  box-shadow: 0 4px 14px rgba(10, 37, 64, 0.2);
}
.btn-outline-primary:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(10, 37, 64, 0.35);
}

.btn-outline-dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  box-shadow: 0 4px 14px rgba(10, 37, 64, 0.2);
}
.btn-outline-dark:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(10, 37, 64, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--gray-700);
  border-color: var(--gray-200);
}
.btn-ghost:hover {
  background: var(--gray-100);
  border-color: var(--gray-300);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.btn-white:hover {
  background: #F8FAFC;
  color: var(--navy-mid);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.22);
}

.btn-gold {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(10, 37, 64, 0.25);
}
.btn-gold:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  color: var(--white);
  box-shadow: 0 8px 25px rgba(10, 37, 64, 0.4);
}

.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.875rem; }
.btn-lg { padding: 0.85rem 2rem; font-size: 1rem; }
.btn-xl { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ─── SECTION HEADERS ─── */
.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}
.section-title { margin-bottom: 0.75rem; }
.section-desc {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
}
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, rgba(26,82,118,.1), rgba(39,174,96,.1));
  color: var(--blue);
  border: 1px solid rgba(26,82,118,.2);
  border-radius: var(--radius-full);
  padding: 0.35rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-head);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-badge.green { color: var(--green); border-color: rgba(30,132,73,.2); background: linear-gradient(135deg, rgba(30,132,73,.08), rgba(39,174,96,.08)); }
.section-badge.gold  { color: var(--gold); border-color: rgba(212,160,23,.25); background: linear-gradient(135deg, rgba(212,160,23,.08), rgba(240,194,127,.08)); }
.section-badge.white { color: rgba(255,255,255,.9); border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.1); }

/* ═══════════════════════════════════════════
   HEADER
═══════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: #ffffff;
  border-bottom: 1px solid var(--gray-200);
  z-index: 9999;
  transition: box-shadow var(--transition);
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,.1);
  background: rgba(255,255,255,.98);
}
.btn-mobile-back-public {
  display: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  color: var(--navy);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  margin-right: 0.25rem;
  transition: all var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
}
.btn-mobile-back-public:active {
  transform: scale(0.92);
  background: var(--gray-200);
}
@media (max-width: 768px) {
  .btn-mobile-back-public {
    display: flex;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: var(--header-h);
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  text-decoration: none;
}
.site-custom-logo {
  height: 36px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  display: block;
  transition: var(--transition);
}
.footer-logo .site-custom-logo {
  height: 38px;
  filter: brightness(1.05);
}
.logo-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--navy);
  letter-spacing: -.02em;
}
.logo-dot { color: var(--green-light); }

.main-nav { flex: 1; }
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.nav-link {
  padding: 0.4rem 0.7rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: all var(--transition-fast);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--blue);
  background: rgba(26,82,118,.07);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}
.header-actions .btn {
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  box-sizing: border-box;
  line-height: 1;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  margin-left: auto;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: var(--header-h); left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  transform: translateY(-110%);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
  z-index: 9998;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav-inner { padding: 1rem var(--space-md) 1.5rem; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 0.1rem; margin-bottom: 1rem; }
.mobile-nav .nav-link { display: block; padding: 0.7rem 1rem; font-size: 1rem; }
.mobile-nav-actions { display: flex; flex-direction: column; gap: 0.6rem; }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 40%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 0;
  z-index: 1;
}
.hero-bg-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}
.shape-1 {
  width: 500px; height: 500px;
  background: var(--green-light);
  top: -100px; right: -100px;
  animation: float 8s ease-in-out infinite;
}
.shape-2 {
  width: 350px; height: 350px;
  background: var(--blue-light);
  bottom: 50px; left: 10%;
  animation: float 10s ease-in-out infinite reverse;
}
.shape-3 {
  width: 200px; height: 200px;
  background: var(--gold);
  top: 50%; left: 40%;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
  padding: var(--header-h) var(--space-lg) var(--space-3xl);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  border-radius: var(--radius-full);
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--green-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}
.hero-title {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.2);
}
.hero-desc {
  color: rgba(255,255,255,.75);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.desktop-br { display: none; }
/* ═══════════════════════════════════════════
   HERO CALL TO ACTIONS (SYMMETRICAL & BALANCED)
═══════════════════════════════════════════ */
.hero-cta {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-cta .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-width: 205px;
  height: 52px;
  padding: 0 1.75rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-body);
  border-radius: var(--radius-full);
  box-sizing: border-box;
  text-align: center;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: all var(--transition);
}
.hero-cta .hero-cta-pesan {
  background: var(--navy) !important;
  color: #FFFFFF !important;
  border: 2px solid rgba(255, 255, 255, 0.25) !important;
  box-shadow: 0 6px 20px rgba(10, 37, 64, 0.45);
}
.hero-cta .hero-cta-pesan:hover {
  background: var(--navy-mid) !important;
  border-color: rgba(255, 255, 255, 0.55) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(10, 37, 64, 0.6);
}
.hero-cta .hero-cta-penawaran {
  background: #FFFFFF !important;
  color: var(--navy) !important;
  border: 2px solid #FFFFFF !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.16);
}
.hero-cta .hero-cta-penawaran:hover {
  background: #F8FAFC !important;
  color: var(--navy-mid) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.24);
}
.hero-cta .btn svg {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.stat-item { text-align: center; }
.stat-num {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  font-family: var(--font-head);
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,.65);
  font-weight: 500;
}
.stat-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,.2);
}

/* ═══════════════════════════════════════════
   HERO MULTI-SLIDER & ANIMATIONS
═══════════════════════════════════════════ */
.hero-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-slider-track {
  position: relative;
  width: 100%;
  display: grid;
}

.hero-slide {
  grid-area: 1 / 1;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.98) translateX(30px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.65s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.65s;
  pointer-events: none;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateX(0);
  pointer-events: auto;
  z-index: 2;
}

/* ─── Transition Modifiers ─── */
.hero-slider-track.anim-cross-fade .hero-slide {
  transform: none !important;
  transition: opacity 0.75s ease-in-out, visibility 0.75s !important;
}
.hero-slider-track.anim-cross-fade .hero-slide.active {
  transform: none !important;
}

.hero-slider-track.anim-zoom-fade .hero-slide {
  transform: scale(0.92) !important;
  transition: opacity 0.65s cubic-bezier(0.34, 1.3, 0.64, 1), transform 0.65s cubic-bezier(0.34, 1.3, 0.64, 1), visibility 0.65s !important;
}
.hero-slider-track.anim-zoom-fade .hero-slide.active {
  transform: scale(1) !important;
}

/* Slide Content Staggered Animations */
.hero-slide.active .hero-badge {
  animation: heroSlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.05s both;
}
.hero-slide.active .hero-title {
  animation: heroSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}
.hero-slide.active .hero-desc {
  animation: heroSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}
.hero-slide.active .hero-cta {
  animation: heroSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both;
}
.hero-slide.active .hero-stats {
  animation: heroSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
}
.hero-slide.active .hero-image {
  animation: heroFadeLeft 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

@keyframes heroSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroFadeLeft {
  from { opacity: 0; transform: translateX(35px) scale(0.96); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}

/* Slider Controls (Panah Navigasi) */
.hero-slider-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 1.5rem;
  pointer-events: none;
  z-index: 10;
}

.btn-hero-slider {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(10, 37, 64, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-hero-slider:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #0A2540;
  transform: scale(1.12);
  box-shadow: 0 6px 22px rgba(212, 175, 55, 0.45);
}

.btn-hero-slider:active {
  transform: scale(0.96);
}

/* Slider Pagination (Dots & Progress) */
.hero-slider-pagination {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  z-index: 10;
  background: rgba(10, 37, 64, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-dot {
  width: 10px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

.hero-dot.active {
  width: 42px;
  background: rgba(255, 255, 255, 0.25);
}

.hero-dot-progress {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0%;
  background: var(--gold);
  border-radius: 999px;
}

.hero-dot.active .hero-dot-progress {
  width: 100%;
  transition: width linear;
}

@media (max-width: 768px) {
  .hero-slider-nav {
    display: none; /* Hide arrows on mobile, use swipe & dots */
  }
  .hero-slider-pagination {
    bottom: 1.25rem;
  }
}

/* Hero Wave Divider */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  line-height: 0;
  pointer-events: none;
  z-index: 2;
}
.hero-wave svg {
  display: block;
  width: 100%;
  max-width: 100%;
  height: clamp(30px, 5vw, 60px);
}

/* Hero Image */
.hero-image { position: relative; }
.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.hero-img-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-xl);
}
.hero-img-card {
  position: absolute;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: var(--shadow-lg);
  animation: float var(--hero-float-speed, 5s) ease-in-out infinite;
  z-index: 5;
  transition: transform 0.3s ease;
}
.hero-img-card.no-float {
  animation: none !important;
}
.card-float-1 { top: 20px; left: -20px; animation-delay: 0s; }
.card-float-2 { bottom: 30px; right: -15px; animation-delay: 2.5s; }
.float-card-icon { font-size: 1.4rem; line-height: 1; }
.float-card-text strong { display: block; font-size: 0.85rem; font-weight: 700; color: var(--navy); }
.float-card-text span { font-size: 0.75rem; color: var(--gray-500); }

/* Hero Wave */
.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
}
.hero-wave svg { display: block; width: 100%; }

/* ═══════════════════════════════════════════
   TRUST SECTION
═══════════════════════════════════════════ */
.trust-section {
  background: var(--gray-50);
  padding: var(--space-3xl) 0;
  border-bottom: 1px solid var(--gray-200);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.trust-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gray-300);
}
.trust-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(26,82,118,.1), rgba(26,82,118,.05));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
}
.trust-icon.green { background: linear-gradient(135deg, rgba(30,132,73,.1), rgba(30,132,73,.05)); color: var(--green); }
.trust-icon.gold  { background: linear-gradient(135deg, rgba(212,160,23,.1), rgba(212,160,23,.05)); color: var(--gold); }
.trust-icon.teal  { background: linear-gradient(135deg, rgba(20,143,119,.1), rgba(20,143,119,.05)); color: var(--teal); }
.trust-info h3 { font-size: 0.95rem; margin-bottom: 0.2rem; color: var(--navy); }
.trust-info p  { font-size: 0.8rem; color: var(--gray-500); }

/* ═══════════════════════════════════════════
   PRODUCT CATEGORIES
═══════════════════════════════════════════ */
.categories-section {
  padding: var(--space-4xl) 0;
  background: var(--white);
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-bottom: 0;
}
.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.75rem 1rem;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue), var(--green-light));
  opacity: 0;
  transition: opacity var(--transition);
}
.category-card:hover {
  border-color: var(--blue);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.category-card:hover::before { opacity: 0.05; }
.category-card:hover .cat-name { color: var(--blue); }
.cat-emoji { font-size: 2.5rem; position: relative; z-index: 1; transition: transform var(--transition); }
.category-card:hover .cat-emoji { transform: scale(1.15); }
.cat-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
  position: relative; z-index: 1;
  transition: color var(--transition);
}
.cat-count {
  font-size: 0.75rem;
  color: var(--gray-400);
  position: relative; z-index: 1;
}

/* ═══════════════════════════════════════════
   FEATURED PRODUCTS
═══════════════════════════════════════════ */
.featured-products {
  padding: var(--space-4xl) 0;
  background: var(--gray-50);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-300);
}
.product-img-wrap {
  position: relative;
  display: block;
  overflow: hidden;
}
.product-img-placeholder {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-slow);
}
.product-card:hover .product-img-placeholder { transform: scale(1.05); }
.product-badge-new {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  font-family: var(--font-head);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
  z-index: 2;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.availability-dot {
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 2px solid white;
  z-index: 2;
}
.availability-dot.available { background: var(--green-light); }
.availability-dot.limited  { background: var(--gold); }
.availability-dot.unavailable { background: var(--red); }
.product-info { padding: 1.1rem; }
.product-meta-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.product-category {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blue);
  background: rgba(26,82,118,.08);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  font-family: var(--font-head);
}
.availability-badge {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
}
.availability-badge.available { background: var(--green-pale); color: var(--green); }
.availability-badge.limited   { background: #fef9c3; color: #92400e; }
.availability-badge.unavailable { background: #fee2e2; color: var(--red); }
.product-name {
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}
.product-name a { color: var(--navy); transition: color var(--transition-fast); }
.product-name a:hover { color: var(--blue); }
.product-unit {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-bottom: 0.6rem;
}
.product-price { margin-bottom: 0.85rem; }
.price-value {
  font-size: 1.1rem;
  font-weight: 700;
  font-family: var(--font-head);
  color: var(--green);
}
.price-login {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--gray-400);
  font-style: italic;
}

/* ═══════════════════════════════════════════
   WHY CHOOSE US
═══════════════════════════════════════════ */
.why-us {
  padding: var(--space-4xl) 0;
  background: var(--white);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.why-card {
  padding: 2rem 1.75rem;
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 80px; height: 80px;
  border-radius: 50%;
  opacity: 0.06;
  background: currentColor;
}
.why-card.dark-blue {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  box-shadow: var(--shadow-navy);
}
.why-card.dark-blue h3 { color: #ffffff; }
.why-card.dark-blue p { color: rgba(255, 255, 255, 0.88); }
.why-card.dark-blue .why-icon { background: rgba(255, 255, 255, 0.15); color: #ffffff; }

.why-card.green {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  color: var(--white);
  box-shadow: var(--shadow-green);
}
.why-card.green h3 { color: #ffffff; }
.why-card.green p { color: rgba(255, 255, 255, 0.92); }
.why-card.green .why-icon { background: rgba(255, 255, 255, 0.18); color: #ffffff; }

.why-card.pastel-blue {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  color: var(--navy);
  box-shadow: var(--shadow-md);
}
.why-card.pastel-blue h3 { color: #0A2540; }
.why-card.pastel-blue p { color: #334155; }
.why-card.pastel-blue .why-icon { background: rgba(10, 37, 64, 0.08); color: #0A2540; }

.why-card.gold-card {
  background: linear-gradient(135deg, #7d5c00 0%, var(--gold) 100%);
  color: var(--white);
  box-shadow: 0 8px 30px rgba(212,160,23,.3);
}
.why-card.gold-card h3 { color: #ffffff; }
.why-card.gold-card p { color: rgba(255, 255, 255, 0.92); }
.why-card.gold-card .why-icon { background: rgba(255, 255, 255, 0.18); color: #ffffff; }

.why-card:hover { transform: translateY(-8px); }
.why-icon {
  width: 60px; height: 60px;
  background: rgba(255,255,255,.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.why-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.75rem; }
.why-card p { font-size: 0.875rem; line-height: 1.65; }

/* ═══════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════ */
.how-it-works {
  padding: var(--space-4xl) 0;
  background: var(--gray-50);
}
.steps-timeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
  overflow-x: auto;
  padding-bottom: 1rem;
}
.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  min-width: 160px;
}
.step-number {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: .08em;
  margin-bottom: 0.5rem;
  opacity: 0.6;
}
.step-icon {
  width: 68px; height: 68px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 1rem;
  box-shadow: 0 6px 20px rgba(26,82,118,.3);
  position: relative;
  z-index: 2;
  transition: transform var(--transition);
}
.step:hover .step-icon { transform: scale(1.1); }
.step-content h3 { font-size: 0.95rem; margin-bottom: 0.4rem; color: var(--navy); }
.step-content p  { font-size: 0.8rem; color: var(--gray-500); line-height: 1.5; }
.step-connector {
  position: absolute;
  top: 56px;
  left: calc(50% + 34px);
  width: calc(100% - 68px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue-light), var(--green-light));
  z-index: 1;
}
.step.last .step-connector { display: none; }

/* ═══════════════════════════════════════════
   AREA LAYANAN
═══════════════════════════════════════════ */
.area-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--blue) 100%);
  padding: var(--space-4xl) 0;
  position: relative;
  overflow: hidden;
}
.area-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(39,174,96,.1);
  filter: blur(80px);
}
.area-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}
.section-title.white { color: var(--white); }
.section-desc.white  { color: rgba(255,255,255,.7); max-width: none; }
.area-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1.5rem 0 2rem;
}
.area-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,.85);
  font-size: 0.95rem;
  font-weight: 500;
}
.area-item svg { color: var(--gold-light); flex-shrink: 0; }

.map-container {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.map-container img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}
.map-pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.pin-pulse {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(231,76,60,.3);
  animation: pinPulse 2s infinite;
}
@keyframes pinPulse {
  0%   { transform: translate(-50%,-50%) scale(0.8); opacity: 1; }
  100% { transform: translate(-50%,-50%) scale(2.5); opacity: 0; }
}
.pin-label {
  background: white;
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

/* ═══════════════════════════════════════════
   STATISTICS
═══════════════════════════════════════════ */
.stats-section {
  padding: var(--space-3xl) 0;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-card {
  padding: 2rem 1rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue), var(--green-light));
  opacity: 0;
  transition: opacity var(--transition);
}
.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.stat-card:hover::before { opacity: 1; }
.stat-card:hover .stat-icon,
.stat-card:hover .stat-number,
.stat-card:hover .stat-plus,
.stat-card:hover .stat-label { color: var(--white); position: relative; z-index: 1; }
.stat-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.stat-number {
  font-family: var(--font-head);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  display: inline;
  position: relative; z-index: 1;
}
.stat-plus {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--green);
  position: relative; z-index: 1;
}
.stat-label {
  font-size: 0.875rem;
  color: var(--gray-500);
  font-weight: 500;
  margin-top: 0.5rem;
  display: block;
  position: relative; z-index: 1;
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.testimonials {
  padding: var(--space-4xl) 0;
  background: var(--gray-50);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  box-shadow: var(--shadow-navy);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(13, 33, 55, 0.4);
}
.testimonial-card .testimonial-text { color: rgba(255, 255, 255, 0.85); }
.testimonial-card .author-info strong { color: var(--white); }
.testimonial-card .author-info span { color: rgba(255, 255, 255, 0.6); }
.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.testimonial-text {
  font-size: 0.925rem;
  line-height: 1.75;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--green-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  font-family: var(--font-head);
  flex-shrink: 0;
}
.author-info strong { display: block; font-size: 0.9rem; color: var(--navy); }
.author-info span   { font-size: 0.8rem; color: var(--gray-500); }

/* ═══════════════════════════════════════════
   BLOG
═══════════════════════════════════════════ */
.blog-section {
  padding: var(--space-4xl) 0;
  background: var(--white);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-300);
}
.blog-img-wrap { position: relative; overflow: hidden; }
.blog-img-placeholder {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-slow);
}
.blog-card:hover .blog-img-placeholder { transform: scale(1.05); }
.blog-category {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  background: var(--white);
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 700;
  font-family: var(--font-head);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  letter-spacing: .03em;
  text-transform: uppercase;
}
.blog-content { padding: 1.25rem; }
.blog-meta {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-bottom: 0.6rem;
}
.blog-content h3 {
  font-size: 1rem;
  margin-bottom: 0.6rem;
  line-height: 1.4;
}
.blog-content h3 a { color: var(--navy); transition: color var(--transition-fast); }
.blog-content h3 a:hover { color: var(--blue); }
.blog-content p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
  font-family: var(--font-head);
  transition: gap var(--transition-fast);
}
.blog-read-more:hover { gap: 0.5rem; }

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
.faq-section {
  padding: var(--space-4xl) 0;
  background: var(--gray-50);
}
.faq-inner { max-width: 780px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item.open { box-shadow: var(--shadow-md); border-color: var(--blue); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-head);
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  transition: background var(--transition-fast);
}
.faq-question:hover { background: var(--gray-50); }
.faq-icon { flex-shrink: 0; transition: transform var(--transition); color: var(--blue); }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding var(--transition);
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.75;
}

/* ═══════════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════════ */
.final-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #0a3d62 100%);
  padding: var(--space-4xl) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.final-cta-bg-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.cta-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}
.cta-shape-1 {
  width: 400px; height: 400px;
  background: var(--green-light);
  top: -100px; right: -80px;
  filter: blur(60px);
}
.cta-shape-2 {
  width: 300px; height: 300px;
  background: var(--gold);
  bottom: -100px; left: -60px;
  filter: blur(60px);
}
.final-cta-inner { position: relative; z-index: 1; }
.cta-icon-large { font-size: 3.5rem; margin-bottom: 1.5rem; }
.final-cta h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 1.25rem;
}
.final-cta p {
  color: rgba(255,255,255,.7);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.site-footer { background: var(--gray-900); }
.footer-main { padding: var(--space-4xl) 0 var(--space-2xl); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}
.footer-logo { margin-bottom: 1rem; }
.footer-logo .logo-text { color: var(--white); }
.footer-brand-desc {
  font-size: 0.875rem;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--gray-400);
  transition: color var(--transition-fast);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-contact { }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.875rem;
  color: var(--gray-400);
}
.contact-item svg { color: var(--blue-light); margin-top: 2px; flex-shrink: 0; }
.contact-item a { color: var(--gray-400); transition: color var(--transition-fast); }
.contact-item a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--gray-500);
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: 0.8rem;
  color: var(--gray-500);
  transition: color var(--transition-fast);
}
.footer-legal a:hover { color: var(--white); }

/* ═══════════════════════════════════════════
   WHATSAPP FLOAT
═══════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  background: #25d366;
  color: var(--white);
  border-radius: var(--radius-full);
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.875rem;
  font-family: var(--font-head);
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  z-index: 999;
  transition: all var(--transition);
}
.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37,211,102,.6);
}

/* ═══════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════ */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate="fade-left"]  { transform: translateX(40px); }
[data-animate="fade-right"] { transform: translateX(-40px); }
[data-animate].visible {
  opacity: 1;
  transform: none;
}

/* ═══════════════════════════════════════════
   FLOATING BOTTOM NAVIGATION (MOBILE)
═══════════════════════════════════════════ */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: #FFFFFF !important;
  border-top: 1px solid #E2E8F0 !important;
  z-index: 9990;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06) !important;
  align-items: center;
  justify-content: space-around;
  padding: 0 4px;
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex: 1;
  padding: 6px 0;
  color: #8da2b5 !important;
  font-size: 0.65rem !important;
  font-weight: 600 !important;
  font-family: 'Poppins', 'Inter', -apple-system, sans-serif !important;
  text-decoration: none !important;
  transition: all 0.2s ease;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}
.bottom-nav-item svg {
  width: 22px !important;
  height: 22px !important;
  stroke: #8da2b5 !important;
  stroke-width: 2.2 !important;
  transition: all 0.2s ease;
}
.bottom-nav-item span {
  color: #8da2b5 !important;
  font-size: 0.65rem !important;
  font-weight: 600 !important;
  font-family: 'Poppins', 'Inter', -apple-system, sans-serif !important;
  transition: all 0.2s ease;
}
.bottom-nav-item:not(.cta-item):hover,
.bottom-nav-item.active {
  color: #00a2c7 !important;
}
.bottom-nav-item:not(.cta-item):hover svg,
.bottom-nav-item.active svg {
  stroke: #00a2c7 !important;
  transform: translateY(-1px);
}
.bottom-nav-item:not(.cta-item):hover span,
.bottom-nav-item.active span {
  color: #00a2c7 !important;
}
.bottom-nav-item:not(.cta-item):hover::before,
.bottom-nav-item.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 3.5px;
  background: #00a2c7 !important;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 1px 4px rgba(0, 162, 199, 0.3);
}
.bottom-nav-item.cta-item {
  color: #8da2b5 !important;
}
.bottom-nav-item.cta-item .bottom-nav-icon {
  width: 48px !important;
  height: 48px !important;
  background: linear-gradient(135deg, #00b4d8 0%, #0096c7 35%, #0d9488 75%, #059669 100%) !important;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -18px;
  box-shadow: 0 6px 18px rgba(13, 148, 136, 0.4) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.bottom-nav-item.cta-item .bottom-nav-icon svg {
  stroke: #FFFFFF !important;
  width: 22px !important;
  height: 22px !important;
  stroke-width: 2.4 !important;
}
.bottom-nav-item.cta-item:active .bottom-nav-icon {
  transform: scale(0.92);
}
.bottom-nav-item.cta-item span {
  color: #0096c7 !important;
  font-size: 0.65rem !important;
  font-weight: 600 !important;
  font-family: 'Poppins', 'Inter', -apple-system, sans-serif !important;
  margin-top: 1px;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .trust-grid       { grid-template-columns: repeat(2,1fr); }
  .categories-grid  { grid-template-columns: repeat(4,1fr); }
  .products-grid    { grid-template-columns: repeat(2,1fr); }
  .why-grid         { grid-template-columns: repeat(2,1fr); }
  .stats-grid       { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: repeat(2,1fr); }
  .blog-grid        { grid-template-columns: repeat(2,1fr); }
  .footer-grid      { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }
  .main-nav, .header-actions { display: none; }
  .hamburger { display: flex; }

  /* ─── HERO MOBILE OPTIMIZATION (FOCUSED & ISOLATED) ─── */
  .hero { min-height: auto; }
  .hero-slider-wrapper { min-height: auto; padding: 0; }
  .hero-inner {
    grid-template-columns: 1fr;
    padding: calc(var(--header-h) + 1.25rem) 1.25rem 2.25rem;
    text-align: center;
    gap: 1.25rem;
  }
  .hero-content { order: 1; }
  .hero-image { 
    order: 2; 
    margin-top: 0.5rem;
    display: flex;
    justify-content: center;
  }
  .hero-badge { 
    font-size: 0.72rem; 
    padding: 0.35rem 0.85rem; 
    margin-bottom: 0.85rem;
    max-width: 95%;
    line-height: 1.3;
  }
  .hero-title { 
    font-size: clamp(1.45rem, 5.5vw, 1.85rem); 
    line-height: 1.25;
    margin-bottom: 0.75rem;
  }
  .hero-desc { 
    font-size: 0.86rem; 
    line-height: 1.55;
    margin-bottom: 1.35rem;
    color: rgba(255, 255, 255, 0.82);
    max-width: 92%;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-cta { 
    justify-content: center; 
    flex-direction: column; 
    align-items: center; 
    gap: 0.65rem;
    margin-bottom: 1.5rem;
    width: 100%;
  }
  .hero-cta .btn { 
    width: 100%; 
    max-width: 320px; 
    min-width: unset;
    height: 48px;
    font-size: 0.92rem;
    justify-content: center; 
  }
  .hero-stats { 
    display: flex;
    justify-content: center; 
    align-items: center;
    gap: 1rem;
    padding: 0.65rem 0.85rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    backdrop-filter: blur(8px);
    max-width: 330px;
    margin: 0 auto;
  }
  .stat-item { text-align: center; }
  .stat-num {
    font-size: 1.35rem;
    line-height: 1.1;
  }
  .stat-label {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.75);
  }
  .stat-divider {
    width: 1px;
    height: 26px;
    background: rgba(255, 255, 255, 0.2);
  }
  .hero-img-wrap img { 
    height: auto; 
    max-height: 220px; 
    max-width: 90%;
    object-fit: contain;
    border-radius: var(--radius-lg); 
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.25));
  }
  .hero-img-card { display: none; }
  .hero-slider-nav { display: none !important; }
  .hero-slider-pagination { bottom: 0.75rem; }

  /* Disable horizontal translation on mobile to eliminate page wobble / side drift */
  [data-animate="fade-left"],
  [data-animate="fade-right"] {
    transform: translateY(20px) !important;
  }
  .hero-slide {
    transform: scale(0.98) !important;
  }
  .hero-slide.active {
    transform: scale(1) !important;
  }
  .hero-slider-track,
  .hero-slider-wrapper,
  .hero {
    overflow-x: hidden !important;
    max-width: 100vw;
  }

  /* Trust section — 2 columns */
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .trust-card { padding: 1rem; gap: 0.75rem; }
  .trust-icon { width: 42px; height: 42px; }
  .trust-icon svg { width: 22px; height: 22px; }
  .trust-info h3 { font-size: 0.82rem; }
  .trust-info p { font-size: 0.72rem; }

  /* Categories — 4 columns */
  .categories-grid { grid-template-columns: repeat(4,1fr); gap: 0.5rem; }
  .category-card { padding: 0.6rem 0.3rem; }
  .cat-emoji { font-size: 1.4rem; }
  .cat-name { font-size: 0.68rem; }
  .cat-count { font-size: 0.58rem; }

  /* Products */
  .products-grid { grid-template-columns: repeat(2,1fr); gap: 0.75rem; }
  .product-card-img { height: 140px; }
  .product-card-img span { font-size: 2.5rem; }
  .product-card-body { padding: 0.85rem; }
  .product-card-body h3 a { font-size: 0.85rem; }
  .product-badge { font-size: 0.6rem; padding: 0.2rem 0.5rem; }
  .product-category { font-size: 0.7rem; }
  .product-unit { font-size: 0.72rem; }
  .price-login { font-size: 0.72rem; }

  /* Why us — 2 columns */
  .why-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .why-card { padding: 1.25rem; }
  .why-icon { width: 48px; height: 48px; margin-bottom: 0.75rem; }
  .why-icon svg { width: 26px; height: 26px; }
  .why-card h3 { font-size: 0.92rem; }
  .why-card p { font-size: 0.78rem; }

  /* How it works */
  .steps-timeline { flex-direction: column; align-items: stretch; }
  .step { flex-direction: row; text-align: left; gap: 1rem; padding: 0.75rem 0; }
  .step-connector { display: none; }
  .step-number { display: none; }
  .step-icon { flex-shrink: 0; width: 52px; height: 52px; }
  .step-icon svg { width: 22px; height: 22px; }
  .step-content h3 { font-size: 0.88rem; }
  .step-content p { font-size: 0.78rem; }

  /* Area layanan */
  .area-inner { grid-template-columns: 1fr; gap: var(--space-xl); }
  .area-item { font-size: 0.88rem; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 0.75rem; }
  .stat-card { padding: 1.25rem 0.75rem; }
  .stat-number { font-size: 2rem; }
  .stat-label { font-size: 0.75rem; }

  /* Testimonials — 2 columns */
  .testimonials-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .testimonial-card { padding: 1.25rem; }
  .testimonial-text { font-size: 0.82rem; line-height: 1.6; }
  .testimonial-author { gap: 0.6rem; }
  .author-name { font-size: 0.82rem; }
  .author-role { font-size: 0.7rem; }
  .testimonial-stars { font-size: 0.75rem; }

  /* Blog — 2 columns */
  .blog-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .blog-card-img { height: 120px; }
  .blog-card-body { padding: 0.85rem; }
  .blog-card-body h3 { font-size: 0.85rem; }
  .blog-card-body p { font-size: 0.75rem; }
  .blog-tag { font-size: 0.6rem; padding: 0.2rem 0.5rem; }
  .blog-date { font-size: 0.7rem; }
  .blog-link { font-size: 0.78rem; }

  /* FAQ */
  .faq-question { font-size: 0.88rem; padding: 0.85rem 1rem; }
  .faq-answer p { font-size: 0.82rem; padding: 0 1rem 1rem; }

  /* Section headers */
  .section-title { font-size: clamp(1.3rem, 5vw, 1.8rem); }
  .section-desc { font-size: 0.88rem; }
  .section-badge { font-size: 0.72rem; padding: 0.35rem 0.75rem; }

  /* Final CTA */
  .final-cta h2 { font-size: clamp(1.3rem, 5vw, 1.8rem); }
  .final-cta p { font-size: 0.9rem; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* FOOTER — hidden on mobile */
  .site-footer { display: none; }

  /* WhatsApp float — hidden on mobile because bottom nav has dedicated center WhatsApp CTA */
  .wa-float { display: none !important; }

  /* Bottom nav clearance */
  body { padding-bottom: 100px !important; }

  /* Floating Bottom Navigation — show on mobile */
  .bottom-nav { display: flex; }
}

@media (max-width: 560px) {
  .categories-grid { grid-template-columns: repeat(4,1fr); }
}

@media (max-width: 380px) {
  .hero-inner {
    padding: calc(var(--header-h) + 0.85rem) 0.85rem 1.75rem;
    gap: 1rem;
  }
  .hero-badge {
    font-size: 0.68rem;
    padding: 0.3rem 0.65rem;
  }
  .hero-title {
    font-size: 1.35rem;
    line-height: 1.22;
  }
  .hero-desc {
    font-size: 0.82rem;
    line-height: 1.5;
    margin-bottom: 1.15rem;
  }
  .hero-cta .btn {
    height: 44px;
    font-size: 0.86rem;
    padding: 0 1.25rem;
  }
  .hero-stats {
    gap: 0.5rem;
    padding: 0.5rem 0.6rem;
  }
  .stat-num {
    font-size: 1.15rem;
  }
  .stat-label {
    font-size: 0.62rem;
  }
  .stat-divider {
    height: 22px;
  }
  .hero-img-wrap img {
    max-height: 175px;
  }
}

/* ═══════════════════════════════════════════
   PRODUCT DETAIL PAGE STYLES
═══════════════════════════════════════════ */

/* Breadcrumb */
.breadcrumb {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 0.85rem 0;
  margin-top: var(--header-h);
}
.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.breadcrumb a {
  font-size: 0.85rem;
  color: var(--gray-500);
  transition: color var(--transition-fast);
}
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb span {
  font-size: 0.85rem;
  color: var(--gray-400);
}
.breadcrumb .crumb-current {
  font-size: 0.85rem;
  color: var(--navy);
  font-weight: 600;
}

/* ─── PRODUCT DETAIL PAGE — CLEAN / GLASSMORPHISM ─── */
.product-detail-page {
  padding: 3.5rem 0 5rem;
  background: linear-gradient(160deg, #f8fafc 0%, #eef2f7 40%, #f0f7f4 100%);
  min-height: 80vh;
}
.product-detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: start;
}

/* Gallery */
.product-gallery {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
}
.gallery-main {
  border: 1px solid rgba(226,232,240,.5);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1rem;
  position: relative;
  background: rgba(255,255,255,.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0,0,0,.06), 0 1px 4px rgba(0,0,0,.03);
}
.gallery-main img, .gallery-main .gallery-placeholder {
  width: 100%;
  height: 420px;
  object-fit: contain;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-placeholder {
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
}
.gallery-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: linear-gradient(135deg, var(--green), #2ecc71);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  box-shadow: 0 3px 12px rgba(30,132,73,.3);
  letter-spacing: 0.02em;
}
.gallery-thumbs {
  display: flex;
  gap: 0.75rem;
}
.gallery-thumb {
  width: 72px; height: 72px;
  border: 2px solid rgba(226,232,240,.6);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--transition-fast), box-shadow var(--transition), transform var(--transition);
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.gallery-thumb.active,
.gallery-thumb:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(26,82,118,.15);
  transform: translateY(-2px);
}

/* ─── Product Info Panel — Clean & Transparent ─── */
.product-info-panel {
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.product-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-top: 0;
  margin-bottom: 1.5rem;
  color: var(--navy);
  line-height: 1.3;
  font-weight: 800;
  font-family: var(--font-head);
}
.product-meta {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.25rem;
  background: rgba(248,250,252,.7);
  border: 1px solid rgba(226,232,240,.6);
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
}
.product-meta-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}
.meta-label {
  font-weight: 600;
  color: var(--gray-500);
  min-width: 130px;
  flex-shrink: 0;
}
.meta-value { color: var(--navy); font-weight: 500; }
.meta-value.green { color: var(--green); font-weight: 600; }
.meta-value.blue  { color: var(--blue); }
.sku-code {
  font-family: monospace;
  background: rgba(226,232,240,.5);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.82rem;
  color: var(--navy);
}

.product-price-box {
  background: rgba(248,250,252,.7);
  border: 1px solid rgba(226,232,240,.6);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}
.price-label { font-size: 0.8rem; font-weight: 600; color: var(--gray-500); margin-bottom: 0.4rem; }
.price-amount {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.price-amount span { font-size: 1rem; font-weight: 500; color: var(--gray-500); }
.price-locked {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-500);
}
.price-locked a { color: var(--blue); font-weight: 600; }
.min-order {
  font-size: 0.8rem;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.product-short-desc {
  font-size: 0.925rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(226,232,240,.5);
}

/* Quantity Selector */
.order-section { margin-bottom: 1.5rem; }
.order-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 0.5rem;
}
.qty-selector {
  display: flex;
  align-items: center;
  gap: 0;
  width: fit-content;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-full);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.qty-btn {
  width: 42px; height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  transition: background var(--transition-fast);
  cursor: pointer;
}
.qty-btn:hover { background: var(--gray-100); }
.qty-input {
  width: 60px;
  text-align: center;
  border: none;
  border-left: 1.5px solid var(--gray-200);
  border-right: 1.5px solid var(--gray-200);
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-head);
  color: var(--navy);
  padding: 0.5rem 0;
  outline: none;
  -moz-appearance: textfield;
}
.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }

.product-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.btn-cta-main {
  padding: 0.9rem 2rem;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  transition: all var(--transition);
}
.btn-cta-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,82,118,.2);
}

/* Product Tabs — Glass Card */
.product-tabs {
  margin-top: 2.5rem;
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 0 2rem 2rem;
  border: 1px solid rgba(226,232,240,.5);
  box-shadow: 0 8px 32px rgba(0,0,0,.04);
}
.tab-nav {
  display: flex;
  border-bottom: 2px solid var(--gray-200);
  gap: 0;
  overflow-x: auto;
}
.tab-btn {
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-head);
  color: var(--gray-500);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all var(--transition-fast);
  white-space: nowrap;
  cursor: pointer;
}
.tab-btn:hover { color: var(--blue); }
.tab-btn.active {
  color: var(--blue);
  border-bottom-color: var(--blue);
}
.tab-content { padding: 2rem 0 0.5rem; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.tab-panel h4 { font-size: 1.05rem; margin-bottom: 0.75rem; color: var(--navy); }
.tab-panel p  { font-size: 0.9rem; color: var(--gray-600); line-height: 1.75; margin-bottom: 1rem; }
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr:nth-child(even) { background: rgba(248,250,252,.8); }
.spec-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.875rem;
}
.spec-table td:first-child {
  font-weight: 600;
  color: var(--gray-700);
  width: 220px;
}
.spec-table td:last-child { color: var(--gray-600); }

/* Related Products */
.related-products {
  padding: var(--space-3xl) 0;
  background: rgba(255,255,255,.4);
}
.related-products .products-grid { grid-template-columns: repeat(4,1fr); }

/* Trust Badges (product page) */
.product-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--gray-500);
}
.product-trust-badges span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(226,232,240,.5);
  padding: 0.75rem var(--space-md);
  z-index: 9989;
  box-shadow: 0 -4px 24px rgba(0,0,0,.08);
}
.mobile-sticky-cta .btn {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 0.85rem;
  border-radius: var(--radius-full);
}

/* ═══════════════════════════════════════════
   RESPONSIVE — PRODUCT DETAIL
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .breadcrumb {
    display: none;
  }

  .product-detail-page {
    margin-top: var(--header-h);
    padding: 2rem 0 7rem;
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .product-gallery { position: static; }
  .gallery-main {
    border-radius: var(--radius-md);
  }
  .gallery-main .gallery-placeholder { height: 220px; font-size: 4.5rem; }
  .gallery-main img,
  .gallery-main .gallery-placeholder { height: 220px; }
  .gallery-thumbs { gap: 0.5rem; }
  .gallery-thumb {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .product-info-panel {
    padding: 1.25rem;
    border-radius: var(--radius-md);
  }
  .product-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
  }
  .product-meta {
    padding: 1rem;
  }
  .product-meta-row { font-size: 0.82rem; }
  .meta-label { min-width: 95px; font-size: 0.78rem; }
  .product-price-box { padding: 1rem; }
  .product-short-desc {
    font-size: 0.85rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
  }

  /* Hide desktop CTA on mobile — use sticky CTA */
  .order-section { display: none; }
  .product-cta { display: none; }

  .mobile-sticky-cta { display: block; bottom: 64px; }

  .product-tabs {
    padding: 0 1rem 1rem;
    border-radius: var(--radius-md);
    margin-top: 1.5rem;
  }
  .tab-btn { padding: 0.7rem 0.9rem; font-size: 0.78rem; }

  .related-products .products-grid {
    grid-template-columns: repeat(2,1fr);
    gap: 0.75rem;
  }
}

@media (max-width: 576px) {
  .hero-cta {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }
  .hero-cta .btn {
    width: 100%;
    min-width: 100%;
  }
}



