/**
 * Three Level Mega Menu - Public Styles
 * Layout matches RTL mega menu: dark top bar + 3-column dropdown.
 */

/* ==========================================================================
   1. CORE CONTAINER & RESET
   ========================================================================== */
.tlmm-nav-container {
	font-size: var(--tlmm-font-size, 15px);
	font-family: var(--body-font);
	box-sizing: border-box;
	position: relative;
	width: 100%;
	z-index: 9999;
	line-height: 1.4;
}

.tlmm-nav-container *,
.tlmm-nav-container *::before,
.tlmm-nav-container *::after {
	box-sizing: border-box;
}

.tlmm-fallback-alert {
	padding: 15px 20px;
	background: #fff3cd;
	border-inline-start: 4px solid #ffc107;
	color: #664d03;
	border-radius: 4px;
	font-size: 14px;
	margin: 10px 0;
}

/* ==========================================================================
   2. DARK TOP NAVIGATION BAR (LEVEL 0)
   ========================================================================== */
.tlmm-nav-bar {
	background-color: var(--tlmm-nav-bg, #222222);
	width: 100%;
	overflow: visible;
	position: relative;
}

.tlmm-top-menu {
	display: flex;
	flex-flow: row wrap;
	align-items: stretch;
	list-style: none;
	padding: 0 20px;
	margin: 0;
	gap: 0;
	min-height: 48px;
}

.tlmm-dir-rtl .tlmm-top-menu {
	direction: rtl;
	justify-content: flex-start;
}

.tlmm-dir-ltr .tlmm-top-menu {
	direction: ltr;
	justify-content: flex-start;
}

.tlmm-top-item {
	position: relative;
	display: flex;
	align-items: stretch;
}

/* Invisible bridge so moving from tab to dropdown does not close menu (fixes LTR blink) */
.tlmm-top-item.tlmm-has-dropdown::after {
	content: '';
	position: absolute;
	inset-inline-start: 0;
	inset-inline-end: 0;
	top: 100%;
	height: 14px;
	z-index: 10001;
}

.tlmm-top-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--tlmm-nav-text, #ffffff);
	text-decoration: none;
	font-weight: 500;
	font-size: 1em;
	padding: 14px 18px;
	border-radius: 0;
	transition: background-color 0.2s ease, color 0.2s ease;
	cursor: pointer;
	white-space: nowrap;
}

.tlmm-top-link:hover {
	color: var(--tlmm-nav-text, #ffffff);
	background-color: rgba(255, 255, 255, 0.08);
}

/* Active top item (open dropdown) — blue pill like reference */
.tlmm-top-item.tlmm-active-hover > .tlmm-top-link,
.tlmm-top-item:focus-within > .tlmm-top-link {
	background-color: var(--tlmm-primary, #007cff);
	color: #ffffff;
	font-weight: 600;
}

/* Down arrow on top-level parent items that have a dropdown */
.tlmm-arrow-indicator {
	display: none;
	flex-shrink: 0;
}

.tlmm-top-item.tlmm-has-dropdown > .tlmm-top-link .tlmm-arrow-indicator {
	display: inline-block;
	width: 0;
	height: 0;
	margin-inline-start: 2px;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 6px solid currentColor;
	border-bottom: 0;
	transition: transform 0.2s ease;
}

.tlmm-top-item.tlmm-has-dropdown.tlmm-active-hover > .tlmm-top-link .tlmm-arrow-indicator,
.tlmm-top-item.tlmm-has-dropdown:focus-within > .tlmm-top-link .tlmm-arrow-indicator {
	transform: rotate(180deg);
}

/* ==========================================================================
   3. MEGA DROPDOWN (WHITE PANEL UNDER ACTIVE ITEM)
   ========================================================================== */
.tlmm-mega-dropdown {
	position: absolute;
	top: 100%;
	margin-top: 0;
	inset-inline-start: 0;
	inset-inline-end: auto;
	width: max-content;
	max-width: min(var(--tlmm-width, 1100px), calc(100vw - 40px));
	background-color: var(--tlmm-bg, #ffffff);
	border: 1px solid #e5e5e5;
	border-radius: var(--tlmm-radius, 8px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(8px);
	transition: opacity 0.2s ease, visibility 0.2s ease;
	z-index: 10000;
	overflow: hidden;
}

/* Default alignment by direction (JS may flip at viewport edges) */
.tlmm-dir-ltr .tlmm-mega-dropdown.tlmm-drop-align-start,
.tlmm-mega-dropdown.tlmm-drop-align-start {
	inset-inline-start: 0;
	inset-inline-end: auto;
}

.tlmm-dir-ltr .tlmm-mega-dropdown.tlmm-drop-align-end,
.tlmm-mega-dropdown.tlmm-drop-align-end {
	inset-inline-start: auto;
	inset-inline-end: 0;
}

.tlmm-dir-rtl .tlmm-mega-dropdown.tlmm-drop-align-end {
	inset-inline-start: auto;
	inset-inline-end: 0;
}

.tlmm-dir-rtl .tlmm-mega-dropdown.tlmm-drop-align-start {
	inset-inline-start: 0;
	inset-inline-end: auto;
}

.tlmm-top-item.tlmm-active-hover .tlmm-mega-dropdown,
.tlmm-top-item:focus-within .tlmm-mega-dropdown {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
	z-index:99999;
}

.tlmm-mega-dropdown.tlmm-drop-shifted {
	transition: opacity 0.2s ease, visibility 0.2s ease;
}

/* Pointer triangle under active tab */
.tlmm-mega-dropdown::before {
	content: '';
	position: absolute;
	top: -7px;
	inset-inline-end: 28px;
	width: 14px;
	height: 14px;
	background: var(--tlmm-bg, #ffffff);
	transform: rotate(45deg);
	border-top: 1px solid #e5e5e5;
	border-inline-start: 1px solid #e5e5e5;
	z-index: 2;
}

.tlmm-dir-ltr .tlmm-mega-dropdown::before {
	inset-inline-end: auto;
	inset-inline-start: 28px;
}

.tlmm-mega-dropdown-inner {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	width: max-content;
	max-width: 100%;
	min-height: var(--tlmm-dropdown-min-height, 360px);
	background: #fff;
    padding: 10px;
	gap: 10px;
}

.tlmm-top-item.tlmm-active-hover .tlmm-mega-dropdown-inner,
.tlmm-top-item:focus-within .tlmm-mega-dropdown-inner {
	min-height: var(--tlmm-dropdown-min-height, 360px);
}

/* RTL column order: Level1 (right) | Level2 (center) | Promo (left) */
.tlmm-dir-rtl .tlmm-mega-dropdown-inner {
	direction: rtl;
}

.tlmm-dir-ltr .tlmm-mega-dropdown-inner {
	direction: ltr;
}

/* Hide nav columns that do not exist for this branch / depth */
.tlmm-col-level2.tlmm-col-hidden,
.tlmm-col-level3-4.tlmm-col-hidden {
	display: none !important;
}

.tlmm-col-promo.tlmm-promo-is-empty,
.tlmm-mobile-promo-footer.tlmm-promo-is-empty {
	display: none !important;
}

.tlmm-mega-dropdown-inner.tlmm-nav-depth-1 .tlmm-col-level2,
.tlmm-mega-dropdown-inner.tlmm-nav-depth-1 .tlmm-col-level3-4,
.tlmm-mega-dropdown-inner.tlmm-branch-only-l1 .tlmm-col-level2,
.tlmm-mega-dropdown-inner.tlmm-branch-only-l1 .tlmm-col-level3-4 {
	display: none !important;
}

.tlmm-mega-dropdown-inner.tlmm-nav-depth-2 .tlmm-col-level3-4,
.tlmm-mega-dropdown-inner.tlmm-branch-only-l2 .tlmm-col-level3-4 {
	display: none !important;
}

/* Promo column: fixed width only when visible (never stretch empty space) */
.tlmm-col-promo:not(.tlmm-promo-is-empty) {
	flex: 0 0 280px;
}

.tlmm-col-level1,
.tlmm-col-level2,
.tlmm-col-level3-4,
.tlmm-col-promo:not(.tlmm-promo-is-empty) {
	min-height: var(--tlmm-dropdown-min-height, 360px);
}

/* ==========================================================================
   4. COLUMN 1 — LEVEL 1 (VERTICAL TABS)
   ========================================================================== */
.tlmm-col-level1 {
    flex: 0 0 220px;
    background: #F5F9FF;
    border-inline-end: 0px solid #ebebeb;
    padding:5px;
    overflow-y: auto;
    border-radius: 10px;
}

.tlmm-level1-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.tlmm-level1-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 10px;
    color: var(--tlmm-text, #1d2327);
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.2s ease, color 0.2s ease;
    cursor: pointer;
    font-family: Heebo;
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    letter-spacing: 0%;
    text-align: right;
    vertical-align: middle;
	background:#fff;
}

.tlmm-level1-link:hover {
	background-color: var(--tlmm-hover-bg, #f0f7ff);
	color: var(--tlmm-primary, #007cff);
}

.tlmm-level1-item.tlmm-active .tlmm-level1-link {
	background-color: var(--tlmm-primary, #007cff);
	color: #ffffff !important;
}

.tlmm-level1-item.tlmm-active .tlmm-level1-link:hover {
	background-color: var(--tlmm-primary, #007cff);
	color: #ffffff;
}

.tlmm-arrow-next {
	display: inline-block;
	width: 7px;
	height: 7px;
	border-bottom: 2px solid currentColor;
	border-inline-start: 2px solid currentColor;
	flex-shrink: 0;
}

.tlmm-dir-rtl .tlmm-arrow-next {
	transform: rotate(45deg);
}

.tlmm-dir-ltr .tlmm-arrow-next {
	transform: rotate(225deg);
}

/* ==========================================================================
   5. COLUMN 2 — LEVEL 2 (VERTICAL TABS)
   ========================================================================== */
.tlmm-col-level2 {
	flex: 0 0 200px;
	background: #fff;
	border-inline-end: 0px solid #ebebeb;
	padding: 12px 10px;
	overflow-y: auto;
}

.tlmm-col-level2 .tlmm-level2-panel {
	width: 100%;
	flex-direction: column;
}

.tlmm-col-level2 .tlmm-level2-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.tlmm-col-level2 .tlmm-level2-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 10px;
    color: var(--tlmm-text, #555);
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
    font-family: Heebo;
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    letter-spacing: 0%;
    text-align: right;
    vertical-align: middle;
    border-radius: 0;
    border-bottom: 1px solid #BCCEF2;
}

.tlmm-col-level2 .tlmm-level2-link:hover {
	background-color: var(--tlmm-hover-bg, #f0f7ff);
	color: var(--tlmm-primary, #007cff);
}

.tlmm-col-level2 .tlmm-level2-item.tlmm-active .tlmm-level2-link {
    color: #555555 !important;
    background: #F4F8FF;
}

.tlmm-col-level2 .tlmm-level2-item.tlmm-active .tlmm-level2-link:hover {
	background: #F4F8FF;
	color: #ffffff;
}

/* ==========================================================================
   6. COLUMN 3 — LEVEL 3 LIST + LEVEL 4 ACCORDION
   ========================================================================== */
.tlmm-col-level3-4 {
    flex: 0 1 auto;
    width: max-content;
    min-width: 200px;
    max-width: 420px;
    padding: 14px 6px;
    overflow-y: auto;
    background: #F6F6F6;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-radius: 10px;
}

.tlmm-level3-panel {
	width: 100%;
	flex-direction: column;
	border-bottom: 1px solid #ebebeb;
	padding-bottom: 12px;
}

.tlmm-level3-panel:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.tlmm-level3-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.tlmm-level3-item {
	border-bottom: 1px solid #f0f0f0;
}

.tlmm-level3-item:last-child {
	border-bottom: none;
}

.tlmm-level3-header a.tlmm-level3-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 5px 10px;
    gap: 10px;
    border: 0;
        border-right: 1px solid #f6f6f6;
}

.tlmm-level3-link {
	font-weight: 400;
	color: var(--tlmm-text, #555555);
	text-decoration: none;
	font-size: 1em;
	transition: color 0.2s ease;
	flex: 1;
}

.tlmm-level3-header a.tlmm-level3-link:hover {
    color: var(--tlmm-primary, #fff);
    border-right: 1px solid #eee;
    background: #fff;
}


.tlmm-accordion-toggle {
	background: none;
	border: none;
	padding: 4px 8px;
	cursor: pointer;
	color: var(--tlmm-text-muted, #646970);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.tlmm-accordion-icon {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-bottom: 2px solid currentColor;
	border-inline-end: 2px solid currentColor;
	transform: rotate(45deg);
	transition: transform 0.25s ease;
}

.tlmm-accordion-toggle[aria-expanded="true"] .tlmm-accordion-icon {
	transform: rotate(225deg);
	color: var(--tlmm-primary, #007cff);
}

.tlmm-level4-wrapper {
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.tlmm-level4-list {
	list-style: none;
	padding: 0 0 10px 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.tlmm-dir-rtl .tlmm-level4-list {
	padding-inline-start: 14px;
}

.tlmm-dir-ltr .tlmm-level4-list {
	padding-inline-start: 14px;
}

.tlmm-level4-link {
	display: block;
	color: var(--tlmm-text-muted, #646970);
	text-decoration: none;
	font-size: 0.95em;
	font-weight: 400;
	padding: 6px 8px;
	border-radius: 3px;
	transition: color 0.2s ease, background-color 0.2s ease;
}

.tlmm-level4-link:hover {
	color: var(--tlmm-primary, #007cff);
	background-color: var(--tlmm-hover-bg, #f0f7ff);
}

.tlmm-no-items {
	color: var(--tlmm-text-muted, #646970);
	font-style: italic;
	font-size: 0.95em;
	padding: 10px 4px;
}

/* ==========================================================================
   7. COLUMN 4 — PROMO SIDEBAR
   ========================================================================== */
.tlmm-col-promo {
	flex: 0 0 280px;
	background-color: var(--tlmm-promo-bg, #EEEEEE);
	border-radius:5px;
	padding: 11px 12px;
	display: flex;
	align-items: stretch;
	border-inline-start: 0px solid #ebebeb;
	border-radius:5px;
}

.tlmm-promo-card {
	width: 100%;
	display: flex;
	flex-direction: column;
	background: transparent;
	border: none;
	border-radius: 0;
	padding: 0;
	box-shadow: none;
}

.tlmm-promo-content {
	display: flex;
	flex-direction: column;
	height: 100%;
	gap: 14px;
}

.tlmm-promo-title {
    font-size: 1em;
    font-weight: 700;
    color: var(--tlmm-text, #1d2327);
    margin: 0;
    line-height: 1.45;
    font-family: Heebo;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0%;
    text-align: right;
    vertical-align: middle;
}

.tlmm-promo-image-wrap {
    width: 100%;
    flex: 1;
    min-height: 105px;
    background: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0px solid #e8e8e8;
    border-radius: 10px;
}

.tlmm-promo-img {
	max-width: 100%;
	height: 105px;
	object-fit: contain;
}

.tlmm-promo-img-placeholder {
	width: 60px;
	height: 60px;
	background: #e0e0e0;
	border-radius: 4px;
}

.tlmm-promo-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	gap: 12px;
	margin-top: auto;
}

.tlmm-promo-price {
    color: #000000;
    font-weight: 600;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0%;
    text-align: right;
    vertical-align: middle;
}

.tlmm-promo-btn {
    background-color: var(--tlmm-primary, #007cff);
    color: #ffffff;
    padding: 5px 13px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: background-color 0.2s ease;
    font-family: Heebo;
    font-weight: 500;
    font-size: 15px;
    line-height: 16px;
    letter-spacing: 0%;
    text-align: right;
    vertical-align: middle;
}

.tlmm-promo-btn:hover {
	background-color: #0062cc;
	color: #ffffff;
}

.tlmm-btn-arrow {
	display: inline-block;
	width: 7px;
	height: 7px;
	border-bottom: 2px solid #ffffff;
	border-inline-end: 2px solid #ffffff;
}

.tlmm-dir-rtl .tlmm-btn-arrow {
	transform: rotate(135deg);
}

.tlmm-dir-ltr .tlmm-btn-arrow {
	transform: rotate(-45deg);
}
.header-bottom {
    background-color: #333333 !important;
}
/* ==========================================================================
   8. DESKTOP / MOBILE VISIBILITY
   ========================================================================== */
.tlmm-nav-bar ul#tlmm-top-menu li::before,
ul#tlmm-top-menu li::before{
	display: none !important;
}
.tlmm-mobile-only {
	display: none;
}

.tlmm-desktop-only {
	display: block;
}
.tlmm-mega-dropdown-inner ul li.tlmm-active .tlmm-arrow-next {
    transform: rotate(135deg);
}
.tlmm-mega-dropdown-inner ul li a {
    border-bottom: 1px solid #BCCEF2;
}
/* ==========================================================================
   9. MOBILE DRAWER MENU
   ========================================================================== */
@media screen and (max-width: 768px) {
	.tlmm-desktop-only {
		display: none !important;
	}

	.tlmm-mobile-only {
		display: block;
	}

.tlmm-mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    border: none;
    border-radius: 60px;
    background: #ebebeb;
    cursor: pointer;
}

	.tlmm-mobile-toggle-icon {
		display: block;
		width: 14px;
		height: 2px;
		background: #006deb;
		position: relative;
	}

	.tlmm-mobile-toggle-icon::before,
	.tlmm-mobile-toggle-icon::after {
		content: '';
		position: absolute;
		left: 0;
		width: 14px;
		height: 2px;
		background: #006deb;
	}

	.tlmm-mobile-toggle-icon::before {
		top: -6px;
	}

	.tlmm-mobile-toggle-icon::after {
		top: 6px;
	}

	.tlmm-mobile-overlay {
		position: fixed;
		inset: 0;
		z-index: 999999;
		background: #ffffff;
		display: none;
		flex-direction: column;
		overflow: hidden;
	}

	.tlmm-mobile-overlay.is-open {
		display: flex;
	}

	.tlmm-mobile-drawer {
		display: flex;
		flex-direction: column;
		flex: 1;
		min-height: 0;
		width: 100%;
		background: #ffffff;
		overflow: hidden;
	}

	.tlmm-dir-rtl .tlmm-mobile-drawer {
		inset-inline-start: 0;
		inset-inline-end: 0;
	}

	.tlmm-mobile-toolbar {
		display: flex;
		align-items: center;
		justify-content: space-between;
		min-height: 52px;
		padding: 8px 12px;
		border-bottom: 1px solid #e8e8e8;
		background: #fff;
		flex-shrink: 0;
	}

	.tlmm-mobile-toolbar-start {
		display: flex;
		align-items: center;
		gap: 8px;
	}

.tlmm-mobile-close, .tlmm-mobile-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    padding: 0;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    background: #fff;
    color: #1d2327;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}

	.tlmm-mobile-back[hidden] {
		display: none !important;
	}

.tlmm-mobile-back-icon {
        display: inline-block;
        width: 8px;
        height: 8px;
        border-bottom: 2px solid currentColor;
        border-inline-start: 2px solid currentColor;
        rotate: 135deg;
    }

	.tlmm-dir-rtl .tlmm-mobile-back-icon {
		transform: rotate(45deg);
	}

	.tlmm-dir-ltr .tlmm-mobile-back-icon {
		transform: rotate(-135deg);
	}

	.tlmm-mobile-toolbar-title {
		flex: 1;
		text-align: end;
		font-weight: 700;
		font-size: 1.05em;
		color: var(--tlmm-primary, #007cff);
		padding-inline-start: 10px;
		justify-content: center;
		display: flex;
		align-items: center;
		min-width: 0;
	}

	.tlmm-mobile-toolbar-link {
		color: inherit;
		font-weight: inherit;
		font-size: inherit;
		text-decoration: none;
		display: inline-block;
		max-width: 100%;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		pointer-events: auto;
		cursor: pointer;
	}

	.tlmm-mobile-toolbar-link:hover,
	.tlmm-mobile-toolbar-link:focus {
		text-decoration: underline;
	}

	.tlmm-mobile-panels {
		flex: 1 1 auto;
		min-height: 0;
		overflow: hidden;
		display: flex;
		flex-direction: column;
	}

	.tlmm-mobile-panel {
		display: none;
		flex: 1 1 auto;
		min-height: 0;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		background: #fff;
	}

	.tlmm-mobile-panel.is-active {
		display: block;
	}

	/* Hide plugin hamburger when theme/Elementor provides one */
	body.tlmm-external-toggle .tlmm-mobile-toggle {
		display: none !important;
	}

	/* Suppress Elementor default mobile dropdown when our menu is active */
	body.tlmm-mobile-active .elementor-nav-menu--dropdown,
	body.tlmm-mobile-active .elementor-nav-menu--main .elementor-nav-menu,
	body.tlmm-mobile-active nav.elementor-nav-menu--dropdown.elementor-nav-menu__container,
	body.tlmm-mobile-active .site-navigation-dropdown {
		display: none !important;
		visibility: hidden !important;
		pointer-events: none !important;
	}

.tlmm-mobile-panel-scroll {
    padding: 18px;
}

	/* Native details tree — levels 1–4 */
	.tlmm-mob-details {
		border-bottom: 0px solid #ececec;
	}

.tlmm-mob-summary {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 7px 16px;
    font-weight: 600;
    font-size: 1em;
    cursor: pointer;
    list-style: none;
    background: #ffffff;
    color: var(--tlmm-text, #1d2327);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    flex-direction: row-reverse;
    justify-content: space-between;
    border-bottom: 1px solid #BCCEF2;
}

	.tlmm-mob-summary::-webkit-details-marker {
		display: none;
	}

	.tlmm-mob-details[open] > .tlmm-mob-summary {
		background: var(--tlmm-primary, #007cff);
		color: #ffffff;
	}

	.tlmm-mob-summary-icon {
		display: inline-block;
		width: 8px;
		height: 8px;
		border-bottom: 2px solid currentColor;
		border-inline-end: 2px solid currentColor;
		transform: rotate(45deg);
		flex-shrink: 0;
		transition: transform 0.2s ease;
	}

.tlmm-mob-details[open] > .tlmm-mob-summary > .tlmm-mob-summary-icon {
    transform: rotate(315deg);
}

	    .tlmm-mob-details-inner {
        background: #F5F9FF;
        padding: 10px;
        border-radius: 10px;
        border: 0;
    }

	.tlmm-mob-depth-2 .tlmm-mob-summary {
		padding-inline-start: 15px;
		background: #fff;
		font-weight: 500;
	}

.tlmm-mob-depth-2[open] > .tlmm-mob-summary {
    color: var(--tlmm-primary, #007cff);
    background: #FFFFFF;
}
.tlmm-mob-details-inner .tlmm-mob-details .tlmm-mob-details-inner {
    background: #fff;
	border-radius:0;
}
.tlmm-mob-leaf-link {
    display: block;
    padding: 5px 10px;
    padding-inline-start: 15px;
    color: var(--tlmm-text-muted, #646970);
    text-decoration: none;
    border-bottom: 0px solid #f0f0f0;
}

	.tlmm-mob-depth-3 .tlmm-mob-summary {
		padding-inline-start: 40px;
		font-size: 0.95em;
	}

	.tlmm-mob-depth-4 .tlmm-mob-summary {
		padding-inline-start: 52px;
	}

.tlmm-mob-leaf-link {
        display: block;
        padding: 6px 15px;
        padding-inline-start: 15px;
        color: var(--tlmm-text-muted, #646970);
        text-decoration: none;
        border-bottom: 0px solid #f0f0f0;
    }
	.tlmm-mobile-list {
		list-style: none;
		margin: 0;
		padding: 0 0 120px;
	}

	.tlmm-mobile-list-item {
		border-bottom: 1px solid #ececec;
	}

	.tlmm-mobile-drill,
	.tlmm-mobile-link {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		padding: 16px 18px;
		border: none;
		background: none;
		color: var(--tlmm-text, #1d2327);
		font-size: 1em;
		font-weight: 500;
		text-decoration: none;
		text-align: start;
		cursor: pointer;
		touch-action: manipulation;
		-webkit-tap-highlight-color: transparent;
	}

	.tlmm-mobile-chevron {
		display: inline-block;
		width: 8px;
		height: 8px;
		border-bottom: 2px solid #888;
		border-inline-end: 2px solid #888;
		flex-shrink: 0;
		transform: rotate(45deg);
	}

	.tlmm-dir-rtl .tlmm-mobile-chevron {
		transform: rotate(135deg);
	}

	.tlmm-dir-ltr .tlmm-mobile-chevron {
		transform: rotate(-45deg);
	}

	/* Mobile accordions (levels 1–3) */
	.tlmm-mob-accordion {
		border-bottom: 1px solid #ececec;
	}

	.tlmm-mob-acc-item {
		border-bottom: 1px solid #ececec;
	}

	.tlmm-mob-acc-head {
		display: flex;
		align-items: center;
		width: 100%;
		padding: 14px 16px;
		border: none;
		background: #f7f7f7;
		color: var(--tlmm-text, #1d2327);
		font-size: 1em;
		font-weight: 600;
		text-align: start;
		cursor: pointer;
		gap: 10px;
	}

	.tlmm-mob-acc-item.is-open > .tlmm-mob-acc-head {
		background: var(--tlmm-primary, #007cff);
		color: #ffffff;
	}

	.tlmm-mob-acc-icon {
		display: inline-block;
		width: 8px;
		height: 8px;
		border-bottom: 2px solid currentColor;
		border-inline-end: 2px solid currentColor;
		transform: rotate(45deg);
		flex-shrink: 0;
		transition: transform 0.2s ease;
	}

	.tlmm-mob-acc-item.is-open > .tlmm-mob-acc-head .tlmm-mob-acc-icon {
		transform: rotate(225deg);
	}

	.tlmm-mob-acc-body {
		background: #fff;
		padding: 0;
	}

	.tlmm-mob-acc-body[hidden] {
		display: none !important;
	}

	.tlmm-mob-accordion-depth-2 .tlmm-mob-acc-head {
		background: #fff;
		font-weight: 500;
		padding-inline-start: 24px;
	}

	.tlmm-mob-accordion-depth-2 .tlmm-mob-acc-item.is-open > .tlmm-mob-acc-head {
		background: #eef5ff;
		color: var(--tlmm-primary, #007cff);
	}

	.tlmm-mob-accordion-depth-3 .tlmm-mob-acc-head {
		padding-inline-start: 32px;
		font-weight: 500;
		font-size: 0.95em;
	}

	.tlmm-mob-acc-link {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 14px 16px;
		color: var(--tlmm-text, #1d2327);
		text-decoration: none;
		font-weight: 500;
	}

	.tlmm-mob-leaf-list {
		list-style: none;
		margin: 0;
		padding: 8px 0 8px 0;
	}

	.tlmm-dir-rtl .tlmm-mob-leaf-list {
		padding-inline-start: 40px;
	}

	.tlmm-dir-ltr .tlmm-mob-leaf-list {
		padding-inline-start: 40px;
	}

	.tlmm-mob-leaf-list a {
		display: block;
		padding: 10px 16px;
		color: var(--tlmm-text-muted, #646970);
		text-decoration: none;
		font-size: 0.95em;
	}

	.tlmm-mob-leaf-list a:hover {
		color: var(--tlmm-primary, #007cff);
	}

	/* Mobile promo footer (all drill levels) */
	.tlmm-mobile-promo-footer {
		display: none;
		flex-shrink: 0;
		padding: 14px 16px;
		background: var(--tlmm-promo-bg, #f5f5f5);
		border-top: 1px solid #e8e8e8;
	}

	.tlmm-mobile-overlay.tlmm-show-promo .tlmm-mobile-promo-footer {
		display: block;
	}

	.tlmm-mobile-promo-footer .tlmm-mobile-promo-card .tlmm-promo-title,
	.tlmm-mobile-promo-card .tlmm-promo-title {
		font-size: 0.95em;
		margin-bottom: 12px;
	}

	.tlmm-mobile-promo-card .tlmm-promo-image-wrap {
		min-height: 120px;
		margin-bottom: 12px;
	}

	.tlmm-mobile-promo-card .tlmm-promo-footer {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 10px;
	}

	body.tlmm-mobile-open {
		overflow: hidden;
	}
}
