/* ===========================================
   MTM MEGA MENU V2 - GRID CARD LAYOUT
   Left: Parent Categories | Right: Children as Image Grid Cards
   =========================================== */

.mtm-mega-menu-wrapper {
  /* position: relative; */
}

/* Desktop Navigation */
.mtm-desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Browse Categories Button */
.mtm-browse-categories {
  /* position: relative; */
}

.mtm-browse-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background-color: var(--heading-color);
  color: #ffffff;
  border: none;
  border-radius: 0px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mtm-browse-btn:hover {
  background-color: #e65c00;
}

.mtm-browse-btn svg {
  transition: transform 0.2s ease;
}

.mtm-browse-categories:hover .mtm-browse-btn .mtm-chevron {
  transform: rotate(180deg);
}

.mtm-browse-btn.active .mtm-chevron {
  transform: rotate(180deg);
}

/* ===========================================
   TWO-PANEL MEGA MENU DROPDOWN
   =========================================== */

.mtm-mega-menu-dropdown.mtm-two-panel {
  position: absolute;
  top: calc(100% + 4px);
  width: 90%;
  padding: 0;
  height: 560px;
  background-color: #fff;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  z-index: 1000;
  display: flex;
  overflow: hidden;
}

.mtm-mega-menu-dropdown.mtm-two-panel.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}



/* ===========================================
   LEFT PANEL - Parent Categories
   =========================================== */

.mtm-left-panel {
  width: 290px;
  background-color: #F8FAFC;
  border-right: 1px solid #E2E8F0;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.mtm-panel-header {
  padding: 16px 20px;
  border-bottom: 1px solid #E2E8F0;
  background-color: #ffffff;
}

.mtm-panel-header h3 {
  margin: 0 0 2px 0;
  font-size: 18px;
  font-weight: 700;
  font-family: 'delight', sans-serif;
  color: #111827;
}

.mtm-category-count {
  font-size: 12px;
  color: #64748b;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mtm-parent-categories-list {
  flex: 1;
  overflow-y: auto;
  /* padding: 8px; */
}

/* Parent Category Item - with thumbnail */
.mtm-parent-category-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  margin-bottom: 2px;
  /* border-radius: 8px; */
  cursor: pointer;
  transition: all 0.15s ease;
  position: relative;
}

.mtm-parent-category-item:hover {
  background-color: #ffffff;
  /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); */
}

.mtm-parent-category-item.active {
  background-color: #ffffff;
  /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); */
}

.mtm-parent-category-item.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 60%;
  background-color: var(--color-gold-600);
  border-radius: 0 2px 2px 0;
}

/* Category Thumbnail in left panel */
.mtm-cat-thumb {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: #E2E8F0;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mtm-cat-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mtm-cat-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #E2E8F0;
  color: #94a3b8;
  font-size: 16px;
  font-weight: 700;
  font-family: 'delight', sans-serif;
}

/* Category Info */
.mtm-cat-info {
  flex: 1;
  min-width: 0;
}

.mtm-cat-name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.15s ease;
  text-decoration: none;
  line-height: 1.3;
  padding: 0 !important;
  background-color: transparent !important;
}

.mtm-parent-category-item:hover .mtm-cat-name,
.mtm-parent-category-item.active .mtm-cat-name {
  color: var(--color-gold-600);
}

.mtm-cat-sub-count {
  display: block;
  font-size: 12px;
  color: #94a3b8;
  margin-top: 1px;
}

.mtm-parent-category-item.active .mtm-cat-sub-count {
  color: var(--color-gold-600);
  font-weight: 500;
}

.mtm-arrow-icon {
  flex-shrink: 0;
  color: #cbd5e1;
  transition: all 0.15s ease;
}

.mtm-parent-category-item:hover .mtm-arrow-icon,
.mtm-parent-category-item.active .mtm-arrow-icon {
  color: var(--color-gold-600);
  transform: translateX(2px);
}

/* Scrollbar for left panel */
.mtm-parent-categories-list::-webkit-scrollbar {
  width: 4px;
}

.mtm-parent-categories-list::-webkit-scrollbar-track {
  background: transparent;
}

.mtm-parent-categories-list::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}

.mtm-parent-categories-list::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* ===========================================
   RIGHT PANEL - Child Categories (GRID CARDS)
   =========================================== */

.mtm-right-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
}



.mtm-right-panel-content {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
}

/* Empty State */
.mtm-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #94a3b8;
  text-align: center;
}

.mtm-empty-state svg {
  margin-bottom: 16px;
  opacity: 0.5;
}

.mtm-empty-state p {
  margin: 0;
  font-size: 14px;
}

/* Child Categories Container */
.mtm-child-categories-container {
  display: none;
}

.mtm-child-categories-container.active {
  display: block;
  animation: fadeInUp 0.2s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

/* ===========================================
   GRID CARD LAYOUT - Child Categories
   =========================================== */

.mtm-child-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Individual Card */
.mtm-child-card {
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  overflow: hidden;
  background-color: #ffffff;
  transition: all 0.2s ease;
  cursor: pointer;
}

.mtm-child-card:hover {
  border-color: var(--color-gold-600);
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.12);
  transform: translateY(-2px);
}

.mtm-child-card-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  text-decoration: none;
  color: inherit;
}

/* Card Image */
.mtm-child-card-img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background-color: #F1F5F9;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mtm-child-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mtm-child-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 18px;
  font-weight: 700;
  font-family: 'delight', sans-serif;
}

/* Card Text */
.mtm-child-card-info {
  flex: 1;
  min-width: 0;
}

.mtm-child-card-name {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.15s ease;
}

.mtm-child-card:hover .mtm-child-card-name {
  color: var(--color-gold-600);
}

.mtm-child-card-count {
  display: block;
  font-size: 11px;
  color: #94a3b8;
  margin-top: 2px;
}



/* Loading State */
.mtm-loading-state {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.95);
  z-index: 10;
}

.mtm-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid #F1F5F9;
  border-top-color: var(--color-gold-600);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.mtm-loading-state p {
  margin: 14px 0 0 0;
  color: #64748b;
  font-size: 14px;
}

/* Scrollbar for right panel */
.mtm-right-panel-content::-webkit-scrollbar {
  width: 6px;
}

.mtm-right-panel-content::-webkit-scrollbar-track {
  background: #F8FAFC;
}

.mtm-right-panel-content::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

.mtm-right-panel-content::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* ===========================================
   REGULAR MENU ITEMS
   =========================================== */
.oxy-nav-menu.mtm-menu-has-mega-menu .oxy-nav-menu-list li.menu-item {
  justify-content: center;
}

/* Nav item used as mega menu trigger (add CSS class "mega-menu-trigger" in WP backend) */
.mega-menu-trigger {
  position: static !important;
}

.mega-menu-trigger>a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background-color: var(--color-primary-dark) !important;
  color: #ffffff !important;
  border-radius: 0 !important;
  cursor: pointer;
}

.mega-menu-trigger>a:hover {
  background-color: var(--color-primary) !important;
}

/* .mega-menu-trigger>a::after {
  content: "";
  display: inline-flex;
  width: 8px;
  height: 8px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg);
  margin-left: 12px;
} */

.mega-menu-trigger.menu-item.open>a::after {
  transform: rotate(225deg);
}

.mega-menu-trigger.menu-item>a::before {
  content: "";
  display: inline-flex;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24px' viewBox='0 -960 960 960' width='24px' fill='%23FFFFFF'%3E%3Cpath d='M120-520v-320h320v320H120Zm0 400v-320h320v320H120Zm400-400v-320h320v320H520Zm0 400v-320h320v320H520ZM200-600h160v-160H200v160Zm400 0h160v-160H600v160Zm0 400h160v-160H600v160Zm-400 0h160v-160H200v160Zm400-400Zm0 240Zm-240 0Zm0-240Z'/%3E%3C/svg%3E");
  width: 24px;
  height: 24px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

/* When trigger is a nav item, attach dropdown to it */
.mega-menu-trigger .mtm-mega-menu-dropdown {
  /* left: 0; */
  top: calc(100% + 0px);
}

/* Hide the standalone browse-categories wrapper if trigger nav item exists */
.mega-menu-trigger~* .mtm-browse-categories .mtm-mega-menu-dropdown {
  display: none !important;
}

.mtm-menu-items {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.mtm-menu-items li a {
  color: #334155;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.2s ease;
  position: relative;
}

.mtm-menu-items li a:hover {
  color: var(--color-gold-600);
}

.mtm-menu-items li.current-menu-item a {
  color: var(--color-gold-600);
  font-weight: 600;
}

.mtm-menu-items li.current-menu-item a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 3px;
  background-color: var(--color-gold-600);
  border-radius: 2px;
}

/* Mobile Navigation - Hidden on Desktop */
.mtm-mobile-nav {
  display: none;
}

/* =============================================
   UNIVERSAL TRIGGER
   ============================================= */
.mtm-menu-trigger {
  cursor: pointer;
  position: relative;
}

.mtm-menu-trigger.mtm-trigger-open {
  /* Optional: highlight active trigger */
}

/* When dropdown is detached from page flow (universal trigger mode) */
body>.mtm-mega-menu-dropdown.mtm-two-panel {
  position: fixed;
  z-index: 99999;
}

/* =============================================
   MOBILE CARD GRID (overlay + inline widget)
   ============================================= */
.mtm-mob-cat-context {
  position: relative;
  overflow: hidden;
}

/* The grid itself */
.mtm-mob-parent-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
}

.mtm-mob-parent-grid.slide-out {
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
}

/* Category card row */
.mtm-mob-cat-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid #F1F5F9;
  cursor: pointer;
  transition: background-color 0.15s ease;
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

.mtm-mob-cat-card:hover,
.mtm-mob-cat-card:active {
  background-color: #FFF7F0;
}

/* Thumbnail */
.mtm-mob-card-thumb {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background-color: #F1F5F9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mtm-mob-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mtm-mob-card-thumb--placeholder span {
  font-size: 18px;
  font-weight: 700;
  color: #94a3b8;
}

/* Text info */
.mtm-mob-card-info {
  flex: 1;
  min-width: 0;
}

.mtm-mob-card-name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
}

.mtm-mob-cat-card:hover .mtm-mob-card-name {
  color: var(--color-gold-600);
}

.mtm-mob-card-sub {
  display: block;
  font-size: 12px;
  color: #94a3b8;
  margin-top: 2px;
}

/* Chevron */
.mtm-mob-card-chevron {
  color: #cbd5e1;
  flex-shrink: 0;
  transition: transform 0.15s ease, color 0.15s ease;
}

.mtm-mob-cat-card:hover .mtm-mob-card-chevron {
  color: var(--color-gold-600);
  transform: translateX(2px);
}

/* Sub-panel (slides in from right) */
.mtm-mob-sub-panel {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  background: #fff;
  overflow-y: auto;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
  opacity: 0;
}

.mtm-mob-sub-panel.active {
  transform: translateX(-100%);
  opacity: 1;
}

/* Back button */
.mtm-mob-back-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 14px 16px;
  background-color: #F8FAFC;
  border: none;
  border-bottom: 1px solid #E2E8F0;
  color: #1e293b;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.15s ease;
  text-align: left;
  position: sticky;
  top: 0;
  z-index: 1;
}

.mtm-mob-back-btn:hover {
  background-color: #FFF7F0;
  color: var(--color-gold-600);
}

.mtm-mob-back-btn svg {
  flex-shrink: 0;
  color: var(--color-gold-600);
}

/* Loading spinner for sub-panels */
.mtm-mob-sub-loading {
  display: flex;
  justify-content: center;
  padding: 40px;
}

.mtm-mob-sub-spinner {
  width: 30px;
  height: 30px;
  border: 3px solid #F1F5F9;
  border-top-color: var(--color-gold-600);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

/* Skeleton cards */
.mtm-mob-skeleton-card {
  height: 70px;
  background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
  background-size: 200% 100%;
  animation: mtm-shimmer 1.4s infinite;
  border-bottom: 1px solid #F1F5F9;
}

/* Empty state */
.mtm-mob-empty {
  padding: 32px 20px;
  text-align: center;
  color: #94a3b8;
  font-size: 14px;
}

/* Inline widget wrapper (for shortcode use) */
.mtm-inline-cat-widget {
  /* border: 1px solid #E2E8F0; */
  /* border-radius: 12px; */
  overflow: hidden;
  /* background: #fff; */
  min-height: 200px;
}

/* ===========================================
   RESPONSIVE - MOBILE
   =========================================== */

@media (max-width: 1024px) {

  /* Hide desktop nav */
  .mtm-desktop-nav {
    display: none;
  }

  /* Show mobile nav */
  .mtm-mobile-nav {
    display: block;
  }

  .mtm-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background: transparent;
    border: none;
    color: #0f172a;
    cursor: pointer;
  }

  /* Mobile Overlay */
  .mtm-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 9999;
  }

  .mtm-mobile-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* Mobile Menu */
  .mtm-mobile-menu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background-color: #ffffff;
    transform: translateX(-100%);
    transition: transform 0.2s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .mtm-mobile-overlay.active .mtm-mobile-menu {
    transform: translateX(0);
  }

  /* Mobile Header */
  .mtm-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #E2E8F0;
  }

  .mtm-mobile-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    font-family: 'delight', sans-serif;
    color: #111827;
  }

  .mtm-mobile-close {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background: transparent;
    border: none;
    color: #334155;
    cursor: pointer;
  }

  /* Mobile Tabs */
  .mtm-mobile-tabs {
    display: flex;
    border-bottom: 1px solid #E2E8F0;
    background-color: #F8FAFC;
  }

  .mtm-tab-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    background: transparent;
    border: none;
    color: #64748b;
    font-size: 14px;
    font-weight: 600;
    font-family: 'General Sans', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
  }

  .mtm-tab-btn.active {
    color: var(--color-gold-600);
    background-color: #ffffff;
  }

  .mtm-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--color-gold-600);
  }

  /* Tab Content */
  .mtm-tab-content {
    flex: 1;
    overflow-y: auto;
    position: relative;
  }

  .mtm-tab-panel {
    display: none;
    padding: 20px;
    height: 100%;
  }

  .mtm-tab-panel.active {
    display: block;
  }

  /* Mobile Pages List */
  .mtm-mobile-pages-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .mtm-mobile-pages-list li a {
    display: block;
    padding: 16px;
    color: #334155;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.15s ease;
  }

  .mtm-mobile-pages-list li a:hover,
  .mtm-mobile-pages-list li.current-menu-item a {
    background-color: rgba(255, 102, 0, 0.1);
    color: var(--color-gold-600);
  }

  /* Mobile Categories */
  .mtm-mobile-categories {
    position: relative;
    height: 100%;
  }

  .mtm-mobile-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .mtm-mobile-category-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px;
    border-radius: 6px;
    transition: background-color 0.15s ease;
  }

  .mtm-mobile-category-item:hover {
    background-color: #F8FAFC;
  }

  .mtm-mobile-category-item a {
    flex: 1;
    color: #334155;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
  }

  .mtm-expand-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background: transparent;
    border: none;
    color: #64748b;
    cursor: pointer;
    transition: color 0.15s ease;
  }

  .mtm-expand-btn:hover {
    color: var(--color-gold-600);
  }

  /* Subcategories Slide Panel */
  .mtm-mobile-subcategories {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    padding: 20px;
    transition: transform 0.2s ease;
    overflow-y: auto;
  }

  .mtm-mobile-subcategories.active {
    transform: translateX(-100%);
  }

  .mtm-back-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    margin-bottom: 20px;
    background-color: #F8FAFC;
    border: none;
    border-radius: 6px;
    color: #334155;
    font-size: 16px;
    font-weight: 600;
    font-family: 'General Sans', sans-serif;
    cursor: pointer;
    transition: all 0.15s ease;
  }

  .mtm-back-btn:hover {
    background-color: #f1f5f9;
  }

  .mtm-subcategory-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px;
    border-radius: 6px;
    transition: background-color 0.15s ease;
  }

  .mtm-subcategory-item:hover {
    background-color: #F8FAFC;
  }

  .mtm-subcategory-item a {
    flex: 1;
    color: #334155;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
  }
}

@media (max-width: 1200px) {
  .mtm-mega-menu-dropdown.mtm-two-panel {
    width: 800px;
  }

  .mtm-left-panel {
    width: 260px;
  }

  .mtm-child-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


@media (max-width: 1024px) {

  /* Skeleton loading row */
  .mtm-mob-loading-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border-bottom: 1px solid #F1F5F9;
  }

  .mtm-mob-skeleton {
    flex: 1;
    height: 40px;
    background: linear-gradient(90deg,
        #f1f5f9 25%,
        #e2e8f0 50%,
        #f1f5f9 75%);
    background-size: 200% 100%;
    border-radius: 8px;
    animation: mtm-shimmer 1.4s infinite;
  }

  @keyframes mtm-shimmer {
    0% {
      background-position: 200% 0;
    }

    100% {
      background-position: -200% 0;
    }
  }

}


@media (max-width: 480px) {
  .mtm-mobile-menu {
    max-width: 320px;
  }
}