.site--menu .material-icons.md-search {
  top: 21px;
}

.site--menu .e-search-input {
  height: 42px !important;
  color: #FCF7F3 !important;
}

/* ── Two-column grid layout ───────────────────────────────── */
.drawer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0 60px;
  min-height: 60vh;
  align-items: start;
}

.drawer-col--left ul#menu-main-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* "Menu" label di atas left col */
.drawer-col--left::before {
  content: "Menu";
  color: var(--e-global-color-secondary);
  font-size: 16px;
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
}

/* ── Column shared ────────────────────────────────────────── */
.drawer-col--left,
.drawer-col--right {
  padding: 80px 0;
}

.drawer-col--left {
  border-right: 1px solid #fff;
  padding-right: 80px;
}

.drawer-col--right {
  padding-left: 80px;
  padding-top: 130px;
}

/* ── Link wrap (flex row: link + arrow button) ────────────── */
/*
  JS menyuntikkan struktur ini per li yang punya children:
  <div class="drawer-link-wrap">
    <a href="...">Label</a>
    <button class="drawer-arrow">
  </div>
  Li tanpa children tidak punya wrap — <a> langsung di dalam <li>.
*/
.drawer-link-wrap {
  display: flex;
  align-items: center;
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.08); */
}

/* <a> di dalam wrap: flex grow, hilangkan border yang biasanya ada di sini */
.drawer-link-wrap > a {
  flex: 1;
  border-bottom: none !important;
}

/* ── Main menu item links ─────────────────────────────────── */
/* Berlaku untuk link di dalam wrap MAUPUN link langsung (tanpa children) */
.drawer-col--left #menu-main-menu > li > a,
.drawer-col--left #menu-main-menu > li > .drawer-link-wrap > a {
  width: 100%;
  display: flex;
  align-items: center;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
  color: #fff;
  padding: 10px 0;
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
  overflow: visible;
}

/* Li tanpa children: border bottom langsung di <a> */
.drawer-col--left #menu-main-menu > li:not(:has(.drawer-link-wrap)) > a {
  /*border-bottom: 1px solid rgba(255, 255, 255, 0.08);*/
}

/* Hover & active state — dua selector untuk cover kedua struktur */
.drawer-col--left #menu-main-menu > li > a:hover,
.drawer-col--left #menu-main-menu > li > .drawer-link-wrap > a:hover,
.drawer-col--left #menu-main-menu > li.drawer-active > .drawer-link-wrap > a {
  color: #f5a623;
}

/* ── Arrow button ─────────────────────────────────────────── */
.drawer-arrow {
  /* Reset button defaults */
  background: none;
  border: none;
  outline: none;
  padding: 10px 0 10px 16px;
  cursor: pointer;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: color 0.2s;
}

/* Arrow shape via pseudo-element */
.drawer-arrow::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);       /* desktop: point right */
  transition: transform 0.25s ease, opacity 0.2s;
  opacity: 0.6;
}

/* Desktop active: nudge kanan + full opacity */
.drawer-col--left #menu-main-menu > li.drawer-active .drawer-arrow::before {
  transform: rotate(45deg) translate(2px, -2px);
  opacity: 1;
}

/* ── Right panel (sub-menu) ───────────────────────────────── */
#drawer-sub-panel {
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

#drawer-sub-panel.has-content {
  opacity: 1;
  transform: translateX(0);
}

#drawer-sub-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#drawer-sub-panel ul li {
  opacity: 0;
  transform: translateY(6px);
}

/* Staggered entrance for sub-items on desktop */
#drawer-sub-panel.has-content ul li {
  animation: drawerSubItemIn 0.22s ease forwards;
}

#drawer-sub-panel.has-content ul li:nth-child(1)   { animation-delay: 0.04s; }
#drawer-sub-panel.has-content ul li:nth-child(2)   { animation-delay: 0.08s; }
#drawer-sub-panel.has-content ul li:nth-child(3)   { animation-delay: 0.12s; }
#drawer-sub-panel.has-content ul li:nth-child(4)   { animation-delay: 0.16s; }
#drawer-sub-panel.has-content ul li:nth-child(5)   { animation-delay: 0.20s; }
#drawer-sub-panel.has-content ul li:nth-child(6)   { animation-delay: 0.24s; }
#drawer-sub-panel.has-content ul li:nth-child(n+7) { animation-delay: 0.28s; }

@keyframes drawerSubItemIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#drawer-sub-panel ul li a {
  display: block;
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.7);
  padding: 10px 0;
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
  font-weight: 400;
}

#drawer-sub-panel ul li a:hover {
  color: #fff;
  padding-left: 8px;
}

/* ── Inline sub-menu (mobile accordion) ───────────────────── */
.drawer-inline-sub {
  display: none; /* hidden on desktop */
}

/* ── Hide PE default sub-menu toggle (st--wrap) ─────────── */
.drawer-grid .st--wrap {
  display: none !important;
}

/* ── Close button sizing ─────────────────────────────────── */
.elementor-element.elementor-element-f10adb9.close-menu.elementor-view-default.elementor-widget.elementor-widget-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Responsive (≤ 768px) ────────────────────────────────── */
@media (max-width: 768px) {
  .drawer-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 28px;
  }

  /* Hide right panel — accordion takes over */
  .drawer-col--right {
    display: none;
  }

  /* Remove divider, reset padding */
  .drawer-col--left {
    border-right: none;
    padding-right: 0;
    padding: 40px 0;
  }

  .drawer-col--left #menu-main-menu > li {
    display: block;
  }

  /* Arrow mobile: point DOWN */
  .drawer-arrow::before {
    transform: rotate(135deg);
    opacity: 1;
  }

  /* Arrow mobile active: point UP */
  .drawer-col--left #menu-main-menu > li.drawer-active .drawer-arrow::before {
    transform: rotate(-45deg);
  }

  /* Inline accordion */
  .drawer-inline-sub {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
  }

  .drawer-inline-sub > ul {
    min-height: 0;
    overflow: hidden;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .drawer-col--left #menu-main-menu > li.drawer-active > .drawer-inline-sub {
    grid-template-rows: 1fr;
  }

  .drawer-inline-sub ul li a {
    display: block;
    font-size: clamp(0.85rem, 3.5vw, 1rem);
    color: rgba(255, 255, 255, 0.65);
    padding: 8px 0 8px 16px;
    text-decoration: none;
    border-left: 2px solid rgba(245, 166, 35, 0.4);
    /* margin-left: 4px; */
    transition: color 0.2s, border-color 0.2s, padding-left 0.2s;
  }

  .drawer-inline-sub ul li a:hover,
  .drawer-inline-sub ul li a:focus {
    color: #fff;
    border-left-color: #f5a623;
    padding-left: 22px;
  }
	
	.drawer-col--left #menu-main-menu > li:not(:has(.drawer-link-wrap)) > a {
	  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	}
	
	.drawer-link-wrap {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
}