/* Bricks Mobile Menu Widgets — injected panel content */

.bmw-mobile-menu-widgets {
	--bmw-accent: #6366F1;
	--bmw-accent-hover: #4F46E5;
	padding: 20px 24px 24px;
	font-family: -apple-system, BlinkMacSystemFont, "DM Sans", "Segoe UI", sans-serif;
}

.bmw-mm-divider {
	height: 1px;
	margin-bottom: 20px;
	background: rgba(255, 255, 255, 0.12);
}

/* Light panel theme */
.bmw-mobile-menu-widgets[data-bmw-theme="light"] {
	color: #0A0A0A;
}
.bmw-mobile-menu-widgets[data-bmw-theme="light"] .bmw-mm-divider {
	background: #E8E8EC;
}
.bmw-mobile-menu-widgets[data-bmw-theme="light"] .bmw-widget-title {
	color: #0A0A0A;
}
.bmw-mobile-menu-widgets[data-bmw-theme="light"] a {
	color: #0A0A0A;
}
.bmw-mobile-menu-widgets[data-bmw-theme="light"] a:hover {
	color: var(--bmw-accent);
}

/* Dark panel theme (matches dark hamburger drawers like the screenshot reference) */
.bmw-mobile-menu-widgets[data-bmw-theme="dark"] {
	color: rgba(255, 255, 255, 0.92);
}
.bmw-mobile-menu-widgets[data-bmw-theme="dark"] .bmw-widget-title {
	color: #ffffff;
}
.bmw-mobile-menu-widgets[data-bmw-theme="dark"] a {
	color: rgba(255, 255, 255, 0.85);
}
.bmw-mobile-menu-widgets[data-bmw-theme="dark"] a:hover {
	color: #ffffff;
}

.bmw-widget {
	margin-bottom: 16px;
}
.bmw-widget:last-child {
	margin-bottom: 0;
}

.bmw-widget-title {
	font-family: "General Sans", -apple-system, BlinkMacSystemFont, sans-serif;
	font-weight: 600;
	font-size: 13px;
	letter-spacing: -0.01em;
	text-transform: uppercase;
	opacity: 0.6;
	margin: 0 0 10px;
}

.bmw-mobile-menu-widgets p {
	margin: 0 0 8px;
	font-size: 15px;
	line-height: 1.5;
}

/* Buttons dropped into the widget area (e.g. text widget with a link,
   or a Buttons block) pick up the Genesis accent color by default. */
.bmw-mobile-menu-widgets .wp-block-button__link,
.bmw-mobile-menu-widgets a.button {
	display: inline-block;
	background: var(--bmw-accent);
	color: #ffffff;
	border-radius: 6px;
	padding: 10px 16px;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	transition: background 150ms ease, transform 150ms ease;
}
.bmw-mobile-menu-widgets .wp-block-button__link:hover,
.bmw-mobile-menu-widgets a.button:hover {
	background: var(--bmw-accent-hover);
	color: #ffffff;
	transform: translateY(-1px);
}

/* Social icon lists / generic <ul> widgets shouldn't inherit Bricks nav-list styling */
.bmw-mobile-menu-widgets ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}
.bmw-mobile-menu-widgets ul li {
	margin: 0;
}
