/* Mega Menu Tabs */
.qing-mega-menu-tabs {
    display: flex;
    width: 100%;
    min-width: 700px;
    overflow: hidden;
}

/* Sidebar / Tabs */
.qing-mega-menu-tabs__sidebar {
    width: 220px;
    min-width: 220px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.qing-mega-menu-tabs__tab {
    padding: 14px 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.2s ease;
    user-select: none;
}

.qing-mega-menu-tabs__tab:hover,
.qing-mega-menu-tabs__tab.is-active {
    color: #2563eb;
}

/* Content / Panels */
.qing-mega-menu-tabs__content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    position: relative;
    background: #ffffff;
}

.qing-mega-menu-tabs__panel {
    display: none;
}

.qing-mega-menu-tabs__panel.is-active {
    display: block;
}

/* Grid */
.qing-mega-menu-tabs__grid {
    display: grid;
    gap: 16px;
}

/* Category Item */
.qing-mega-menu-tabs__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
    text-transform: none;
    letter-spacing: normal;
    font-size: inherit;
    color: inherit;
    padding: 0;
}

.qing-mega-menu-tabs__item:hover {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.qing-mega-menu__panel .qing-mega-menu-tabs__item,
.qing-luxe-navbar__menu .qing-mega-menu__panel a {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    font-size: 13px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: normal;
    color: #1f2937;
}

/* Category Image */
.qing-mega-menu-tabs__item-image {
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.qing-mega-menu-tabs__item-image img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
}

.qing-mega-menu-tabs__item-placeholder {
    width: 100%;
    height: 100px;
    background: #e5e7eb;
}

/* Category Name */
.qing-mega-menu-tabs__item-name {
    display: block;
    width: 100%;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
}

