
/* === Mobile Flyout Close v2 (≤1150px) — single-X, sticky header === */
@media (max-width: 1150px){
  .mfc-close-row{ 
    display: flex; align-items: center; justify-content: flex-end;
    position: sticky; top: 0; z-index: 1002;
    margin: -16px -16px 10px; padding: 10px 14px;
    background: #fff; border-bottom: 1px solid rgba(0,0,0,.08);
  }
  .mfc-close-btn{
    display: inline-flex; align-items: center; justify-content: center;
    width: 34px; height: 34px; border-radius: 50%; border: 0;
    background: transparent; cursor: pointer;
    font-size: 0; line-height: 0; color: var(--submenu-close-color, currentColor);
    transition: transform .12s ease, background-color .12s ease;
  }
  .mfc-close-btn:hover{ background: rgba(0,0,0,.06); transform: scale(1.06); }
  .mfc-close-btn svg{ width: 22px; height: 22px; display: block; }
}

@media (min-width: 1151px){
  .mfc-close-row, .mfc-close-btn{ display: none !important; }
}
