
/* Sub-panel: lives inside the in-flow header sheet, slides in horizontally
   OVER the layer beneath it. No height animation between levels — the sheet
   height never changes once the menu is open, so there is zero vertical jump. */
.cc_9w18tgsw_VyCg4ggykS .cc-mpanel, .cc_9w18tgsw_BTNTqLeQ2q .cc-mpanel {
  position: absolute;
  inset: 0;
  /* The ikas runtime gives interactive nodes (.cc-mrow) `position:relative;
     z-index:0`. Without a z-index here, list rows that come AFTER this panel in
     the DOM (the top-level links below the opened one) paint OVER the overlay.
     Lift the panel above those siblings. */
  z-index: 1;
  display: flex;
  flex-direction: column;
  background: var(--alptekin-gray-50);
  transform: translateX(100%);
  visibility: hidden;
  transition:
    transform 0.3s ease,
    visibility 0s linear 0.3s;
  will-change: transform;
}

.cc_9w18tgsw_VyCg4ggykS .cc-mpanel--open, .cc_9w18tgsw_BTNTqLeQ2q .cc-mpanel--open {
  transform: translateX(0);
  visibility: visible;
  transition:
    transform 0.3s ease,
    visibility 0s;
}

.cc_9w18tgsw_VyCg4ggykS .cc-mpanel__inner, .cc_9w18tgsw_BTNTqLeQ2q .cc-mpanel__inner {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.cc_9w18tgsw_VyCg4ggykS .cc-mpanel__head, .cc_9w18tgsw_BTNTqLeQ2q .cc-mpanel__head {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
}

.cc_9w18tgsw_VyCg4ggykS .cc-mpanel__back, .cc_9w18tgsw_BTNTqLeQ2q .cc-mpanel__back {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding: 0 16px 0 12px;
  background: var(--alptekin-white);
  border: none;
  border-radius: 999px;
  box-shadow:
    rgba(0, 0, 0, 0.06) 0 6px 6px -3px,
    rgba(0, 0, 0, 0.06) 0 3px 3px -1.5px,
    rgba(0, 0, 0, 0.06) 0 1px 1px -0.5px,
    rgba(0, 0, 0, 0.06) 0 0 0 1px;
  font-size: 16px;
  color: var(--alptekin-gray-900);
  cursor: pointer;
}

.cc_9w18tgsw_VyCg4ggykS .cc-mpanel__title, .cc_9w18tgsw_BTNTqLeQ2q .cc-mpanel__title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.36px;
}

.cc_9w18tgsw_VyCg4ggykS .cc-mpanel__body, .cc_9w18tgsw_BTNTqLeQ2q .cc-mpanel__body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 16px 16px;
}

.cc_9w18tgsw_VyCg4ggykS .cc-mpanel__body::-webkit-scrollbar, .cc_9w18tgsw_BTNTqLeQ2q .cc-mpanel__body::-webkit-scrollbar {
  display: none;
}

.cc_9w18tgsw_VyCg4ggykS .cc-mpanel__shop-all, .cc_9w18tgsw_BTNTqLeQ2q .cc-mpanel__shop-all {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 53px;
  margin-top: 6px;
  padding: 14px;
  background: var(--alptekin-white);
  border-radius: 16px;
  box-shadow:
    rgba(0, 0, 0, 0.06) 0 6px 6px -3px,
    rgba(0, 0, 0, 0.06) 0 3px 3px -1.5px,
    rgba(0, 0, 0, 0.06) 0 1px 1px -0.5px,
    rgba(0, 0, 0, 0.06) 0 0 0 1px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.32px;
  color: var(--alptekin-gray-900);
  text-decoration: none;
}

@media (prefers-reduced-motion: reduce) {
  .cc_9w18tgsw_VyCg4ggykS .cc-mpanel, .cc_9w18tgsw_BTNTqLeQ2q .cc-mpanel {
    transition: visibility 0s;
  }
}
