/**
 * Primary navigation mega menus — full-width panels, icons, mobile accordion.
 */

/* ── Mega trigger chevron (desktop) ── */
@media (min-width: 961px) {
	.ll-primary-nav .menu-item--mega > a {
		display: inline-flex;
		align-items: center;
		gap: 0.35rem;
	}

	.ll-primary-nav .menu-item--mega > a::after {
		content: "";
		width: 0.45rem;
		height: 0.45rem;
		border-right: 2px solid currentColor;
		border-bottom: 2px solid currentColor;
		transform: rotate(45deg) translateY(-1px);
		opacity: 0.55;
		transition: transform 0.2s ease, opacity 0.2s ease;
	}

	.ll-primary-nav .menu-item--mega:hover > a::after,
	.ll-primary-nav .menu-item--mega:focus-within > a::after,
	.ll-primary-nav .menu-item--mega.is-submenu-open > a::after {
		transform: rotate(-135deg) translateY(1px);
		opacity: 1;
	}
}

/* ── Panel shell ── */
.ll-mega-panel {
	list-style: none;
	margin: 0;
	padding: 0;
}

@media (min-width: 961px) {
	.locallift-header {
		position: sticky;
		overflow: visible;
	}

	.ll-primary-nav .menu-item--mega {
		position: relative;
	}

	.ll-mega-panel {
		position: absolute;
		top: 100%;
		left: 50%;
		z-index: 40;
		width: 100vw;
		margin-left: -50vw;
		box-sizing: border-box;
		padding: 0.625rem clamp(1rem, 4vw, 2rem) 1.25rem;
		opacity: 0;
		visibility: hidden;
		transform: none;
		transition: opacity 0.2s ease, visibility 0.2s ease;
		pointer-events: none;
	}

	.ll-primary-nav .menu-item--mega:hover > .ll-mega-panel,
	.ll-primary-nav .menu-item--mega:focus-within > .ll-mega-panel,
	.ll-primary-nav .menu-item--mega.is-mega-hover > .ll-mega-panel,
	.ll-primary-nav .menu-item--mega.is-submenu-open > .ll-mega-panel {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}
}

.ll-mega-panel__inner {
	max-width: var(--ll-max);
	margin-inline: auto;
	background: var(--ll-header-bg);
	border: 1px solid var(--ll-surface);
	border-radius: var(--ll-radius-lg);
	box-shadow: var(--ll-shadow-hover);
	overflow: hidden;
}

/* ── Featured strip (balanced hero for each mega menu) ── */
.ll-mega-panel__featured {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.25rem;
	padding: 1.25rem 1.5rem;
	text-decoration: none;
	background: linear-gradient(135deg, rgba(0, 102, 255, 0.08) 0%, rgba(2, 12, 42, 0.04) 100%);
	border-bottom: 1px solid var(--ll-surface);
	transition: background 0.2s ease;
}

.ll-mega-panel__featured:hover {
	background: linear-gradient(135deg, rgba(0, 102, 255, 0.12) 0%, rgba(2, 12, 42, 0.06) 100%);
}

.ll-mega-panel__featured-copy {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	min-width: 0;
}

.ll-mega-panel__eyebrow {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--ll-primary);
}

.ll-mega-panel__featured-title {
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--ll-navy);
	line-height: 1.35;
}

.ll-mega-panel__featured-desc {
	font-size: 0.875rem;
	line-height: 1.5;
	color: #5b6b7c;
	max-width: 42rem;
}

.ll-mega-panel__featured-cta {
	flex-shrink: 0;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--ll-primary);
	white-space: nowrap;
}

/* ── Two-column grid (balanced Industries / Resources) ── */
.ll-mega-panel__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0;
}

.ll-mega-panel__column {
	padding: 1.25rem 1.5rem 1.5rem;
}

.ll-mega-panel__column + .ll-mega-panel__column {
	border-left: 1px solid var(--ll-surface);
}

.ll-mega-panel__column-title {
	margin: 0 0 0.875rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #6b7c8f;
}

.ll-mega-panel__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.ll-mega-panel__link {
	display: flex;
	align-items: flex-start;
	gap: 0.875rem;
	padding: 0.75rem;
	border-radius: var(--ll-radius);
	text-decoration: none;
	transition: background 0.18s ease;
}

.ll-mega-panel__link:hover {
	background: var(--ll-surface-light);
}

.ll-mega-panel__link:hover .ll-mega-panel__label {
	color: var(--ll-primary);
}

.ll-mega-panel__text {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	min-width: 0;
}

.ll-mega-panel__label {
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--ll-navy);
	line-height: 1.3;
	transition: color 0.18s ease;
}

.ll-mega-panel__desc {
	font-size: 0.8125rem;
	line-height: 1.45;
	color: #6b7c8f;
}

/* ── Icons ── */
.ll-mega-panel__icon {
	flex-shrink: 0;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 0.625rem;
	background-color: var(--ll-surface-light);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 1.125rem 1.125rem;
	border: 1px solid var(--ll-surface);
}

.ll-mega-panel__link:hover .ll-mega-panel__icon {
	background-color: #fff;
	border-color: rgba(0, 102, 255, 0.2);
}

.ll-mega-panel__icon--wrench {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230066ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z'/%3E%3C/svg%3E");
}

.ll-mega-panel__icon--map {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230066ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='1 6 1 22 8 18 16 22 23 18 23 2 16 6 8 2 1 6'/%3E%3Cline x1='8' y1='2' x2='8' y2='18'/%3E%3Cline x1='16' y1='6' x2='16' y2='22'/%3E%3C/svg%3E");
}

.ll-mega-panel__icon--pin {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230066ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
}

.ll-mega-panel__icon--store {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230066ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'/%3E%3Cpolyline points='9 22 9 12 15 12 15 22'/%3E%3C/svg%3E");
}

.ll-mega-panel__icon--utensils {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230066ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 2v7c0 1.1.9 2 2 2h4a2 2 0 0 0 2-2V2'/%3E%3Cpath d='M7 2v20'/%3E%3Cpath d='M21 15V2v0a5 5 0 0 0-5 5v6c0 1.1.9 2 2 2h3v0'/%3E%3Cpath d='M21 15v7'/%3E%3C/svg%3E");
}

.ll-mega-panel__icon--stethoscope {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230066ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4.8 2.3A2 2 0 0 0 3 4v8a8 8 0 0 0 8 8 8 8 0 0 0 8-8V4a2 2 0 0 0-2-2'/%3E%3Cpath d='M8 4h8'/%3E%3Cpath d='M12 20v4'/%3E%3Cpath d='M8 20a4 4 0 0 0 8 0'/%3E%3C/svg%3E");
}

.ll-mega-panel__icon--book {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230066ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 19.5A2.5 2.5 0 0 1 6.5 17H20'/%3E%3Cpath d='M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z'/%3E%3C/svg%3E");
}

.ll-mega-panel__icon--google {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230066ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 8v8'/%3E%3Cpath d='M8 12h8'/%3E%3C/svg%3E");
}

.ll-mega-panel__icon--news {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230066ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 22h16a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v16a2 2 0 0 1-2 2Zm0 0a2 2 0 0 1-2-2v-9c0-1.1.9-2 2-2h2'/%3E%3Cpath d='M18 14h-8'/%3E%3Cpath d='M15 18h-5'/%3E%3Cpath d='M10 6h8v4h-8V6Z'/%3E%3C/svg%3E");
}

.ll-mega-panel__icon--shield {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230066ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3C/svg%3E");
}

.ll-mega-panel__icon--import {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230066ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4'/%3E%3Cpolyline points='7 10 12 15 17 10'/%3E%3Cline x1='12' y1='15' x2='12' y2='3'/%3E%3C/svg%3E");
}

/* ── Footer quick links ── */
.ll-mega-panel__footer {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1rem;
	padding: 0.875rem 1.5rem 1.125rem;
	border-top: 1px solid var(--ll-surface);
	background: var(--ll-surface-light);
}

.ll-mega-panel__footer-link {
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--ll-primary);
	text-decoration: none;
	padding: 0.35rem 0;
}

.ll-mega-panel__footer-link:hover {
	text-decoration: underline;
}

/* ── Mobile: accordion drawer panel ── */
@media (max-width: 960px) {
	.ll-primary-nav .menu-item--mega {
		position: relative;
		padding: 0;
	}

	.ll-primary-nav .menu-item--mega.is-submenu-open {
		padding-bottom: 0.25rem;
	}

	.ll-primary-nav .menu-item--mega > a {
		display: block;
		width: calc(100% - 3rem);
		padding: 0.875rem 0;
		font-size: 1rem;
		font-weight: 600;
		color: var(--ll-navy);
	}

	.ll-primary-nav .menu-item--mega.is-submenu-open > a {
		color: var(--ll-primary);
		padding-bottom: 0.625rem;
	}

	.ll-primary-nav .menu-item--mega .ll-nav-submenu-toggle {
		top: 0.125rem;
		right: 0;
		width: 2.75rem;
		height: 2.75rem;
		border-radius: var(--ll-radius);
	}

	.ll-primary-nav .menu-item--mega .ll-nav-submenu-toggle[aria-expanded="true"] {
		background: var(--ll-surface-light);
	}

	.ll-mega-panel {
		position: static;
		left: auto;
		right: auto;
		width: 100%;
		margin: 0;
		padding: 0.5rem 0.625rem 1rem;
		opacity: 1;
		visibility: visible;
		transform: none;
		pointer-events: auto;
		display: none;
		box-sizing: border-box;
	}

	.ll-primary-nav .menu-item--mega.is-submenu-open > .ll-mega-panel {
		display: block;
	}

	.ll-mega-panel__inner {
		box-sizing: border-box;
		max-height: min(70vh, 36rem);
		overflow-x: hidden;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		border: 1px solid var(--ll-surface);
		border-radius: var(--ll-radius-lg);
		background: #fff;
		box-shadow: 0 8px 24px rgba(2, 12, 42, 0.06);
	}

	.ll-primary-nav .ll-mega-panel a {
		display: flex;
		width: auto;
		max-width: none;
		box-sizing: border-box;
	}

	.ll-mega-panel__featured {
		flex-direction: column;
		align-items: stretch;
		gap: 0.75rem;
		padding: 1.25rem;
		background: linear-gradient(180deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 102, 255, 0.03) 100%);
		border-bottom: 1px solid var(--ll-surface);
	}

	.ll-mega-panel__featured-copy {
		gap: 0.375rem;
	}

	.ll-mega-panel__featured-title {
		font-size: 1rem;
		line-height: 1.35;
	}

	.ll-mega-panel__featured-desc {
		font-size: 0.8125rem;
		line-height: 1.55;
	}

	.ll-mega-panel__featured-cta {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		min-height: 2.75rem;
		margin-top: 0.125rem;
		padding: 0.625rem 1rem;
		border-radius: var(--ll-radius);
		background: var(--ll-primary);
		color: #fff;
		font-size: 0.875rem;
		font-weight: 600;
		white-space: normal;
		text-align: center;
	}

	.ll-mega-panel__featured-cta span[aria-hidden="true"] {
		margin-left: 0.25rem;
	}

	.ll-mega-panel__grid {
		grid-template-columns: 1fr;
		gap: 0;
		padding: 0;
	}

	.ll-mega-panel__column {
		padding: 1.25rem;
	}

	.ll-mega-panel__column:last-child {
		padding-bottom: 1.25rem;
	}

	.ll-mega-panel__column + .ll-mega-panel__column {
		border-left: 0;
		border-top: 1px solid var(--ll-surface);
		padding-top: 1rem;
		margin-top: 0;
	}

	.ll-mega-panel__column-title {
		margin: 0 0 0.75rem;
		padding: 0 0 0.5rem;
		border-bottom: 1px solid var(--ll-surface);
	}

	.ll-mega-panel__list {
		gap: 0.5rem;
		padding: 0;
		margin: 0;
	}

	.ll-primary-nav .ll-mega-panel__link {
		align-items: flex-start;
		gap: 0.75rem;
		padding: 1rem;
		background: var(--ll-surface-light);
		border: 1px solid var(--ll-surface);
		border-radius: var(--ll-radius);
	}

	.ll-primary-nav .ll-mega-panel__link:active {
		background: #fff;
		border-color: rgba(0, 102, 255, 0.22);
	}

	.ll-mega-panel__label {
		font-size: 0.9375rem;
		line-height: 1.35;
	}

	.ll-mega-panel__desc {
		font-size: 0.8125rem;
		line-height: 1.45;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	.ll-mega-panel__footer {
		flex-direction: column;
		align-items: stretch;
		gap: 0.625rem;
		padding: 1.25rem;
		border-top: 1px solid var(--ll-surface);
		background: var(--ll-surface-light);
	}

	.ll-primary-nav .ll-mega-panel__footer-link {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		min-height: 2.75rem;
		padding: 0.625rem 1rem;
		border-radius: var(--ll-radius);
		background: #fff;
		border: 1px solid var(--ll-surface);
		font-size: 0.875rem;
		font-weight: 600;
		text-align: center;
		text-decoration: none;
	}

	.ll-primary-nav .ll-mega-panel__footer-link:active {
		border-color: rgba(0, 102, 255, 0.25);
		background: rgba(0, 102, 255, 0.04);
	}
}

@media (max-width: 640px) {
	.ll-mega-panel {
		padding: 0.375rem 0.5rem 0.875rem;
	}

	.ll-mega-panel__inner {
		max-height: min(65vh, 32rem);
	}

	.ll-mega-panel__featured,
	.ll-mega-panel__column,
	.ll-mega-panel__footer {
		padding: 1rem;
	}

	.ll-mega-panel__column:last-child {
		padding-bottom: 1rem;
	}

	.ll-primary-nav .ll-mega-panel__link {
		padding: 0.875rem;
	}

	.ll-mega-panel__icon {
		width: 2.125rem;
		height: 2.125rem;
		background-size: 1rem 1rem;
		border-radius: 0.5rem;
	}
}
