/* Base font - apply Geist globally */
body {
  font-family: "Geist", sans-serif !important;
}

/* Fix Geist font family - Figma exports use "Geist:Weight" format */
[class*="font-\\['Geist"] {
  font-family: "Geist", sans-serif !important;
}

/* Navy/primary buttons must have white text */
.bg-\[\#092354\] {
  color: white !important;
}

/* Mobile menu styles */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid #e2e8f0;
  box-shadow: 0px 8px 24px rgba(0,0,0,0.12);
  max-height: calc(100vh - 60px);
  overflow-y: auto;
  z-index: 9998;
}
.mobile-menu-overlay.open { display: block; }
.mobile-menu-overlay a {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  font-family: "Geist", sans-serif;
  font-size: 16px;
  color: #092354;
  text-decoration: none;
  letter-spacing: -0.48px;
}
.mobile-menu-overlay a:hover { background: #f1f5f9; }
.mobile-menu-overlay a.mobile-nav-active {
  background: #eff6ff;
  color: #092354;
  font-weight: 600;
  border-left: 3px solid #83d6ff;
  padding-left: 17px;
}
.mobile-menu-overlay .produk-sub a.mobile-nav-active {
  padding-left: 37px;
}
.mobile-menu-overlay .produk-sub a { padding-left: 40px; font-size: 15px; }
.mobile-menu-overlay .produk-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  font-family: "Geist", sans-serif;
  font-size: 16px;
  color: #092354;
  letter-spacing: -0.48px;
  cursor: pointer;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}
.mobile-menu-overlay .produk-toggle:hover { background: #f1f5f9; }
.mobile-menu-overlay .produk-toggle.mobile-nav-active {
  background: #eff6ff;
  color: #092354;
  font-weight: 600;
  border-left: 3px solid #83d6ff;
  padding-left: 17px;
}
.mobile-menu-overlay .produk-sub { display: none; background: #f8fafc; }
.mobile-menu-overlay .produk-sub.open { display: block; }
.mobile-menu-overlay .produk-toggle svg { transition: transform 0.2s; }
.mobile-menu-overlay .produk-toggle.open svg { transform: rotate(180deg); }

/* Accordion transitions */
.acc-chevron {
  transition: transform 0.3s ease !important;
}
.acc-answer-wrap {
  display: flex;
  gap: 4px;
  align-items: flex-start;
  width: 100%;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.3s ease;
}

/* Accordion open-state overrides */
button.accordion-open .acc-flex-row {
  flex-direction: column !important;
  justify-content: center !important;
  align-items: stretch !important;
}
button.accordion-open .acc-padding {
  flex-direction: column !important;
  gap: 16px !important;
  align-items: flex-start !important;
  justify-content: center !important;
}
button.accordion-open .acc-question {
  flex: initial !important;
  min-height: initial !important;
  min-width: initial !important;
  width: 100% !important;
  flex-shrink: 0 !important;
}
button.accordion-open .acc-chevron {
  transform: rotate(90deg) !important;
}
