/* Mega Menu — layout & widget styling */

/* Backdrop overlay */
body.bsp-mega-menu-open::before {
	content: "";
	position: fixed;
	inset: 0;
	background: var(--bsp-mega-overlay, rgba(17, 24, 39, 0.45));
	z-index: 150;
	pointer-events: none;
}

body.bsp-mega-menu-no-overlay.bsp-mega-menu-open::before {
	display: none;
}

.bsp-header-nav {
	position: relative;
	/* z-index: 200; */
	overflow: visible;
}

.bsp-primary-nav {
	overflow: visible;
}

.bsp-nav-menu > .bsp-mega-menu-parent {
	position: static;
}

.bsp-mega-menu-parent > .bsp-mega-menu-trigger {
	position: relative;
	border-bottom: 2px solid transparent;
}

.bsp-mega-menu-parent:hover > .bsp-mega-menu-trigger,
.bsp-mega-menu-parent.is-open > .bsp-mega-menu-trigger,
.bsp-mega-menu-parent:focus-within > .bsp-mega-menu-trigger {
	border-bottom-color: #fff;
}

/* Panel */
.bsp-mega-menu {
	display: none;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: min(100% - 32px, var(--bsp-container));
	top: 100%;
	background: var(--bsp-mega-panel-bg, #fff);
	border-radius: 0 0 var(--bsp-mega-panel-radius, 16px) var(--bsp-mega-panel-radius, 16px);
	box-shadow: 0 16px 48px rgba(17, 24, 39, 0.14);
	padding: var(--bsp-mega-panel-padding-y, 36px) 0 calc(var(--bsp-mega-panel-padding-y, 36px) + 4px);
	z-index: 300;
	color: var(--bsp-mega-text);
}

.bsp-mega-menu-parent:hover > .bsp-mega-menu,
.bsp-mega-menu-parent.is-open > .bsp-mega-menu,
.bsp-mega-menu-parent:focus-within > .bsp-mega-menu {
	display: block;
}

.bsp-mega-menu__grid {
	display: grid;
	gap: var(--bsp-mega-grid-gap, 28px) var(--bsp-mega-grid-gap-x, 36px);
	align-items: stretch;
	padding: 20px;
}

.bsp-mega-menu__grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.bsp-mega-menu__grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.bsp-mega-menu__grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.bsp-mega-menu__grid--5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.bsp-mega-menu__grid--6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }

.bsp-mega-menu__col {
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.bsp-mega-menu__col:has(.widget_products),
.bsp-mega-menu__col:has(.widget_top_rated_products),
.bsp-mega-menu__col:has(.widget_recently_viewed_products) {
	min-width: 210px;
}

/* —— All widgets reset —— */
.bsp-mega-menu .widget {
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.bsp-mega-menu .widget a {
	text-decoration: none;
	transition: color 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.bsp-mega-menu .widget p:last-child {
	margin-bottom: 0;
}

/* Column titles */
.bsp-mega-menu .bsp-mega-menu__widget-title,
.bsp-mega-menu .widget-title,
.bsp-mega-menu .wp-block-heading {
	margin: 0 0 14px;
	padding: 0;
	font-family: inherit;
	font-size: var(--bsp-mega-column-title-size, 13px);
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1.3;
	text-transform: uppercase;
	color: var(--bsp-mega-column-title, var(--bsp-mega-pink, #e91e8c));
}

body.bsp-mega-menu-hide-icons .bsp-mega-menu__widget-title::before,
body.bsp-mega-menu-hide-icons .bsp-mega-menu .widget-title::before {
	display: none !important;
}

/* Category icons (columns 1–4) */
.bsp-mega-menu__col:not(.bsp-mega-menu__col--promo) .bsp-mega-menu__widget-title::before,
.bsp-mega-menu__col:not(:has(.widget_media_image)) .bsp-mega-menu__widget-title::before {
	content: "";
	display: block;
	width: 32px;
	height: 32px;
	margin-bottom: 12px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.bsp-mega-menu__col:nth-child(1):not(:has(.widget_media_image)) .bsp-mega-menu__widget-title::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none' viewBox='0 0 32 32'%3E%3Crect x='10' y='6' width='5' height='14' rx='2' stroke='%23e91e8c' stroke-width='1.5'/%3E%3Crect x='17' y='8' width='5' height='12' rx='2' stroke='%23e91e8c' stroke-width='1.5'/%3E%3Cpath stroke='%23e91e8c' stroke-linecap='round' stroke-width='1.5' d='M12.5 20v4M19.5 20v4'/%3E%3C/svg%3E");
}

.bsp-mega-menu__col:nth-child(2):not(:has(.widget_media_image)) .bsp-mega-menu__widget-title::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none' viewBox='0 0 32 32'%3E%3Cpath stroke='%23e91e8c' stroke-linejoin='round' stroke-width='1.5' d='M8 24l4-16h8l4 16'/%3E%3Cpath stroke='%23e91e8c' stroke-width='1.5' d='M10 20h12'/%3E%3Ccircle cx='16' cy='10' r='2' stroke='%23e91e8c' stroke-width='1.5'/%3E%3C/svg%3E");
}

.bsp-mega-menu__col:nth-child(3):not(:has(.widget_media_image)) .bsp-mega-menu__widget-title::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none' viewBox='0 0 32 32'%3E%3Ccircle cx='16' cy='12' r='5' stroke='%23e91e8c' stroke-width='1.5'/%3E%3Cpath stroke='%23e91e8c' stroke-linecap='round' stroke-width='1.5' d='M11 17c-2 3-2 7 0 10M21 17c2 3 2 7 0 10M13 19c-1 2-1 5 0 7M19 19c1 2 1 5 0 7'/%3E%3C/svg%3E");
}

.bsp-mega-menu__col:nth-child(4):not(:has(.widget_media_image)) .bsp-mega-menu__widget-title::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none' viewBox='0 0 32 32'%3E%3Crect x='12' y='6' width='8' height='18' rx='3' stroke='%23e91e8c' stroke-width='1.5'/%3E%3Cpath stroke='%23e91e8c' stroke-linecap='round' stroke-width='1.5' d='M14 10h4M14 14h4M16 24v4'/%3E%3C/svg%3E");
}

/* —— Navigation Menu widget —— */
.bsp-mega-menu .bsp-mega-menu__links,
.bsp-mega-menu .widget_nav_menu ul.menu,
.bsp-mega-menu .widget_nav_menu ul,
.bsp-mega-menu .wp-block-navigation ul,
.bsp-mega-menu .wp-block-page-list,
.bsp-mega-menu .widget_pages ul,
.bsp-mega-menu .widget_meta ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: var(--bsp-mega-link-gap, 10px);
}

.bsp-mega-menu .bsp-mega-menu__links li,
.bsp-mega-menu .widget_nav_menu li,
.bsp-mega-menu .wp-block-navigation li,
.bsp-mega-menu .wp-block-page-list li,
.bsp-mega-menu .widget_pages li,
.bsp-mega-menu .widget_meta li {
	margin: 0;
	padding: 0;
}

.bsp-mega-menu .bsp-mega-menu__links > li > a,
.bsp-mega-menu .widget_nav_menu a,
.bsp-mega-menu .wp-block-navigation a,
.bsp-mega-menu .wp-block-page-list a,
.bsp-mega-menu .widget_pages a,
.bsp-mega-menu .widget_meta a {
	display: block;
	font-size: var(--bsp-mega-link-font-size, 14px);
	font-weight: 400;
	line-height: 1.45;
	color: var(--bsp-mega-text);
}

.bsp-mega-menu .bsp-mega-menu__links > li > a:hover,
.bsp-mega-menu .bsp-mega-menu__links > li > a:focus,
.bsp-mega-menu .widget_nav_menu a:hover,
.bsp-mega-menu .widget_nav_menu a:focus,
.bsp-mega-menu .wp-block-navigation a:hover,
.bsp-mega-menu .wp-block-page-list a:hover,
.bsp-mega-menu .widget_pages a:hover,
.bsp-mega-menu .widget_meta a:hover {
	color: var(--bsp-mega-link-hover, var(--bsp-mega-pink, #e91e8c));
}

/* View All link — add CSS class "bsp-mega-view-all" to menu item */
.bsp-mega-menu .menu-item.bsp-mega-view-all > a,
.bsp-mega-menu .bsp-mega-view-all a {
	margin-top: 6px;
	font-size: 13px;
	font-weight: 600;
	color: var(--bsp-mega-view-all, var(--bsp-mega-pink, #e91e8c)) !important;
}

.bsp-mega-menu .menu-item.bsp-mega-view-all > a::after,
.bsp-mega-menu .bsp-mega-view-all a::after {
	content: " \2192";
}

/* —— Text / Custom HTML widgets —— */
.bsp-mega-menu .widget_text .textwidget,
.bsp-mega-menu .widget_custom_html .custom-html-widget {
	font-size: var(--bsp-mega-body-font-size, 14px);
	line-height: 1.55;
	color: var(--bsp-mega-muted);
}

.bsp-mega-menu .widget_text .textwidget p,
.bsp-mega-menu .widget_custom_html p {
	margin: 0 0 10px;
	color: var(--bsp-mega-muted);
}

.bsp-mega-menu .widget_text .textwidget a:not(.bsp-mega-promo-btn),
.bsp-mega-menu .widget_custom_html a:not(.bsp-mega-promo-btn) {
	color: var(--bsp-mega-text);
}

.bsp-mega-menu .widget_text .textwidget a:not(.bsp-mega-promo-btn):hover,
.bsp-mega-menu .widget_custom_html a:not(.bsp-mega-promo-btn):hover {
	color: var(--bsp-mega-pink);
}

/* Promo button class for Text / HTML widgets */
.bsp-mega-menu .bsp-mega-promo-btn,
.bsp-mega-menu .widget_text .textwidget a.bsp-mega-promo-btn,
.bsp-mega-menu .widget_custom_html a.bsp-mega-promo-btn {
	display: inline-block;
	margin-top: 8px;
	padding: 11px 20px;
	background: var(--bsp-mega-promo-btn-bg, var(--bsp-mega-text));
	color: var(--bsp-mega-promo-btn-text, #fff) !important;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1.2;
	text-transform: uppercase;
	border-radius: 4px;
}

.bsp-mega-menu .bsp-mega-promo-btn:hover,
.bsp-mega-menu .widget_text .textwidget a.bsp-mega-promo-btn:hover,
.bsp-mega-menu .widget_custom_html a.bsp-mega-promo-btn:hover {
	background: var(--bsp-mega-promo-btn-hover, #333);
	color: var(--bsp-mega-promo-btn-text, #fff) !important;
}

/* —— Image widget —— */
.bsp-mega-menu .widget_media_image {
	margin-top: auto;
}

.bsp-mega-menu .widget_media_image img {
	display: block;
	width: 100%;
	max-width: 220px;
	height: auto;
	margin: 0 auto;
	object-fit: contain;
}

.bsp-mega-menu .widget_media_image .wp-caption {
	margin: 0;
	max-width: 100%;
}

.bsp-mega-menu .widget_media_image .wp-caption-text {
	margin-top: 8px;
	font-size: 12px;
	color: var(--bsp-mega-muted);
	text-align: center;
}

/* —— Promo column (has image widget) —— */
.bsp-mega-menu__col:has(.widget_media_image),
.bsp-mega-menu__col--promo {
	border-radius: 12px;
	padding: 24px 20px 16px;
	min-height: var(--bsp-mega-promo-min-height, 300px);
	display: block;
}

.bsp-mega-menu__col:has(.widget_media_image) .bsp-mega-menu__widget-title,
.bsp-mega-menu__col--promo .bsp-mega-menu__widget-title {
	font-family: var(--bsp-font-heading);
	font-size: var(--bsp-mega-promo-title-size, 22px);
	font-weight: 600;
	letter-spacing: 0;
	text-transform: none;
	color: var(--bsp-mega-text);
}

.bsp-mega-menu__col:has(.widget_media_image) .bsp-mega-menu__widget-title::before,
.bsp-mega-menu__col--promo .bsp-mega-menu__widget-title::before {
	display: none;
}

.bsp-mega-menu__col:has(.widget_media_image) .widget_text .textwidget,
.bsp-mega-menu__col:has(.widget_media_image) .widget_custom_html {
	font-size: 13px;
}

.bsp-mega-menu__col:has(.widget_media_image) .widget_media_image {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	padding-top: 12px;
}

/* =============================================================================
   Universal widget base — applies to every widget in mega menu
   ============================================================================= */

.bsp-mega-menu .widget ul:not(.sub-menu),
.bsp-mega-menu .widget ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

.bsp-mega-menu .widget li {
	margin: 0;
	padding: 0;
}

.bsp-mega-menu .widget li + li {
	margin-top: 0;
}

.bsp-mega-menu .widget img {
	max-width: 100%;
	height: auto;
}

.bsp-mega-menu .widget label {
	display: block;
	margin-bottom: 6px;
	font-size: 13px;
	font-weight: 600;
	color: var(--bsp-mega-text);
}

.bsp-mega-menu .widget input[type="text"],
.bsp-mega-menu .widget input[type="search"],
.bsp-mega-menu .widget input[type="email"],
.bsp-mega-menu .widget input[type="url"],
.bsp-mega-menu .widget input[type="number"],
.bsp-mega-menu .widget input[type="password"],
.bsp-mega-menu .widget textarea,
.bsp-mega-menu .widget select {
	width: 100%;
	max-width: 100%;
	padding: 9px 12px;
	border: 1px solid #f0d4e0;
	border-radius: 8px;
	background: #fff;
	color: var(--bsp-mega-text);
	font-size: 14px;
	line-height: 1.4;
	box-sizing: border-box;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.bsp-mega-menu .widget input:focus,
.bsp-mega-menu .widget textarea:focus,
.bsp-mega-menu .widget select:focus {
	outline: none;
	border-color: var(--bsp-mega-pink);
	box-shadow: 0 0 0 3px rgba(233, 30, 140, 0.12);
}

.bsp-mega-menu .widget button,
.bsp-mega-menu .widget input[type="submit"],
.bsp-mega-menu .widget input[type="button"],
.bsp-mega-menu .widget input[type="reset"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 9px 16px;
	border: 0;
	border-radius: 8px;
	background: var(--bsp-mega-pink);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s ease;
}

.bsp-mega-menu .widget button:hover,
.bsp-mega-menu .widget input[type="submit"]:hover,
.bsp-mega-menu .widget input[type="button"]:hover {
	background: #c2186f;
	color: #fff;
}

/* Shared vertical link lists */
.bsp-mega-menu .widget_archive ul li,
.bsp-mega-menu .widget_categories ul li,
.bsp-mega-menu .widget_recent_entries ul li,
.bsp-mega-menu .widget_recent_comments ul li,
.bsp-mega-menu .widget_meta ul li,
.bsp-mega-menu .widget_pages ul li,
.bsp-mega-menu .widget_rss ul li,
.bsp-mega-menu .woocommerce-widget-layered-nav-list li,
.bsp-mega-menu .widget_layered_nav_filters ul li,
.bsp-mega-menu .widget_product_categories ul li,
.bsp-mega-menu .widget_rating_filter ul li {
	margin-bottom: 10px;
}

.bsp-mega-menu .widget_archive a,
.bsp-mega-menu .widget_categories a,
.bsp-mega-menu .widget_recent_entries a,
.bsp-mega-menu .widget_recent_comments a,
.bsp-mega-menu .widget_meta a,
.bsp-mega-menu .widget_pages a,
.bsp-mega-menu .widget_rss a,
.bsp-mega-menu .woocommerce-widget-layered-nav-list a,
.bsp-mega-menu .widget_layered_nav_filters a,
.bsp-mega-menu .widget_product_categories a,
.bsp-mega-menu .widget_rating_filter a {
	display: block;
	font-size: 14px;
	line-height: 1.45;
	color: var(--bsp-mega-text);
}

.bsp-mega-menu .widget_archive a:hover,
.bsp-mega-menu .widget_categories a:hover,
.bsp-mega-menu .widget_recent_entries a:hover,
.bsp-mega-menu .widget_recent_comments a:hover,
.bsp-mega-menu .widget_meta a:hover,
.bsp-mega-menu .widget_pages a:hover,
.bsp-mega-menu .widget_rss a:hover,
.bsp-mega-menu .woocommerce-widget-layered-nav-list a:hover,
.bsp-mega-menu .widget_layered_nav_filters a:hover,
.bsp-mega-menu .widget_product_categories a:hover,
.bsp-mega-menu .widget_rating_filter a:hover {
	color: var(--bsp-mega-pink);
}

.bsp-mega-menu .widget .count,
.bsp-mega-menu .widget .post-count {
	font-size: 12px;
	color: var(--bsp-mega-muted);
}

/* =============================================================================
   Block widget
   ============================================================================= */

.bsp-mega-menu .widget_block,
.bsp-mega-menu .wp-block-group {
	margin: 0;
}

.bsp-mega-menu .wp-block-image img {
	border-radius: 8px;
}

.bsp-mega-menu .wp-block-button__link {
	background: var(--bsp-mega-text);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border-radius: 4px;
	padding: 11px 20px;
}

.bsp-mega-menu .wp-block-button__link:hover {
	background: #333;
	color: #fff;
}

.bsp-mega-menu .wp-block-list li,
.bsp-mega-menu .wp-block-latest-posts li,
.bsp-mega-menu .wp-block-archives li,
.bsp-mega-menu .wp-block-categories li {
	margin-bottom: 10px;
}

.bsp-mega-menu .wp-block-list a,
.bsp-mega-menu .wp-block-latest-posts a,
.bsp-mega-menu .wp-block-archives a,
.bsp-mega-menu .wp-block-categories a {
	font-size: 14px;
	color: var(--bsp-mega-text);
}

.bsp-mega-menu .wp-block-list a:hover,
.bsp-mega-menu .wp-block-latest-posts a:hover,
.bsp-mega-menu .wp-block-archives a:hover,
.bsp-mega-menu .wp-block-categories a:hover {
	color: var(--bsp-mega-pink);
}

/* =============================================================================
   Search widgets — Search, Product Search
   ============================================================================= */

.bsp-mega-menu .widget_search .search-form,
.bsp-mega-menu .widget_product_search form,
.bsp-mega-menu .woocommerce-product-search {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: stretch;
}

.bsp-mega-menu .widget_search input[type="search"],
.bsp-mega-menu .widget_product_search input[type="search"],
.bsp-mega-menu .woocommerce-product-search input[type="search"] {
	flex: 1;
	min-width: 0;
}

.bsp-mega-menu .widget_product_search button,
.bsp-mega-menu .woocommerce-product-search button {
	padding: 9px 14px;
	background: var(--bsp-mega-pink);
	color: #fff;
	border: 0;
	border-radius: 8px;
	cursor: pointer;
}

/* =============================================================================
   Tag clouds — Tag Cloud, Product Tag Cloud
   ============================================================================= */

.bsp-mega-menu .tagcloud,
.bsp-mega-menu .widget_product_tag_cloud .tagcloud {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	line-height: 1.4;
}

.bsp-mega-menu .tagcloud a,
.bsp-mega-menu .widget_product_tag_cloud a {
	display: inline-block;
	margin: 0;
	padding: 5px 12px;
	border-radius: 999px;
	background: var(--bsp-mega-pink-soft);
	color: var(--bsp-mega-pink) !important;
	font-size: 12px !important;
	font-weight: 500;
}

.bsp-mega-menu .tagcloud a:hover,
.bsp-mega-menu .widget_product_tag_cloud a:hover {
	background: var(--bsp-mega-pink);
	color: #fff !important;
}

/* =============================================================================
   Calendar
   ============================================================================= */

.bsp-mega-menu .widget_calendar .wp-calendar-table,
.bsp-mega-menu .widget_calendar table {
	width: 100%;
	border-collapse: collapse;
	font-size: 13px;
}

.bsp-mega-menu .widget_calendar th,
.bsp-mega-menu .widget_calendar td {
	padding: 6px 4px;
	text-align: center;
	border: 1px solid #f5e6ed;
}

.bsp-mega-menu .widget_calendar caption {
	margin-bottom: 10px;
	font-weight: 600;
	color: var(--bsp-mega-text);
}

.bsp-mega-menu .widget_calendar a {
	color: var(--bsp-mega-pink);
	font-weight: 600;
}

.bsp-mega-menu .widget_calendar .wp-calendar-nav {
	display: flex;
	justify-content: space-between;
	margin-top: 8px;
	font-size: 12px;
}

/* =============================================================================
   RSS
   ============================================================================= */

.bsp-mega-menu .widget_rss .rss-widget-icon {
	display: inline-block;
	vertical-align: middle;
	margin-right: 6px;
}

.bsp-mega-menu .widget_rss .rss-date,
.bsp-mega-menu .widget_rss cite {
	display: block;
	margin-top: 4px;
	font-size: 12px;
	color: var(--bsp-mega-muted);
	font-style: normal;
}

.bsp-mega-menu .widget_rss .rssSummary {
	margin-top: 6px;
	font-size: 13px;
	color: var(--bsp-mega-muted);
	line-height: 1.5;
}

/* =============================================================================
   Recent Comments, Recent Posts
   ============================================================================= */

.bsp-mega-menu .widget_recent_comments .recentcomments,
.bsp-mega-menu .widget_recent_comments li {
	font-size: 13px;
	line-height: 1.5;
	color: var(--bsp-mega-muted);
}

.bsp-mega-menu .widget_recent_comments .comment-author-link a {
	color: var(--bsp-mega-text);
	font-weight: 600;
}

.bsp-mega-menu .widget_recent_entries .post-date {
	display: block;
	margin-top: 2px;
	font-size: 12px;
	color: var(--bsp-mega-muted);
}

/* =============================================================================
   Categories, Archives, Pages, Meta, Product Categories
   ============================================================================= */

.bsp-mega-menu .widget_categories select,
.bsp-mega-menu .widget_archive select,
.bsp-mega-menu .widget_product_categories select {
	margin-top: 4px;
}

.bsp-mega-menu .widget_categories .children,
.bsp-mega-menu .widget_pages .children,
.bsp-mega-menu .widget_product_categories .children {
	margin-top: 8px;
	padding-left: 12px;
	border-left: 2px solid var(--bsp-mega-pink-soft);
}

.bsp-mega-menu .widget_categories .children li,
.bsp-mega-menu .widget_pages .children li,
.bsp-mega-menu .widget_product_categories .children li {
	margin-bottom: 8px;
}

/* =============================================================================
   Media — Audio, Video, Gallery
   ============================================================================= */

.bsp-mega-menu .widget_media_audio .wp-audio-shortcode,
.bsp-mega-menu .widget_media_video .wp-video {
	width: 100% !important;
	max-width: 100%;
	border-radius: 8px;
	overflow: hidden;
}

.bsp-mega-menu .widget_media_gallery .gallery {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px;
	margin: 0;
}

.bsp-mega-menu .widget_media_gallery .gallery-item {
	margin: 0;
}

.bsp-mega-menu .widget_media_gallery .gallery-icon img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: 6px;
}

.bsp-mega-menu .widget_media_gallery .gallery-caption {
	margin-top: 4px;
	font-size: 11px;
	color: var(--bsp-mega-muted);
	line-height: 1.3;
}

/* =============================================================================
   WooCommerce — Products List (thumbnail + title only)
   ============================================================================= */

.bsp-mega-menu .widget_products,
.bsp-mega-menu .widget_top_rated_products,
.bsp-mega-menu .widget_recently_viewed_products,
.bsp-mega-menu .widget_recent_reviews {
	min-width: 0;
}

.bsp-mega-menu .product_list_widget {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.bsp-mega-menu .product_list_widget li {
	align-items: center;
	padding: 10px 0;
	border-bottom: 1px solid #f3e8ee;
}

.bsp-mega-menu .product_list_widget li:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.bsp-mega-menu .product_list_widget li > a {
	display: contents;
	color: inherit;
}

.bsp-mega-menu .product_list_widget li a img {
	grid-column: 1;
	grid-row: 1;
	width: 68px;
	height: 68px;
	object-fit: cover;
	border-radius: 10px;
	background: #faf5f7;
}

.bsp-mega-menu .product_list_widget li .product-title {
	grid-column: 2;
	grid-row: 1;
	display: -webkit-box;
	margin: 0;
	padding: 0;
	overflow: hidden;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--bsp-mega-text);
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	word-break: break-word;
	transition: color 0.2s ease;
}

.bsp-mega-menu .product_list_widget li:hover .product-title,
.bsp-mega-menu .product_list_widget li a:focus .product-title {
	color: var(--bsp-mega-pink);
}

/* Hide price, rating, reviewer in mega menu product lists */
.bsp-mega-menu .product_list_widget li .star-rating,
.bsp-mega-menu .product_list_widget li .price,
.bsp-mega-menu .product_list_widget li .reviewer,
.bsp-mega-menu .product_list_widget li > .woocommerce-Price-amount {
	display: none !important;
}

body.bsp-mega-menu-show-product-price .bsp-mega-menu .product_list_widget li .price,
body.bsp-mega-menu-show-product-price .bsp-mega-menu .product_list_widget li > .woocommerce-Price-amount {
	display: inline !important;
}

body.bsp-mega-menu-show-product-rating .bsp-mega-menu .product_list_widget li .star-rating {
	display: inline-block !important;
}

body.bsp-mega-menu-show-product-rating .bsp-mega-menu .product_list_widget li .reviewer {
	display: inline !important;
}

.bsp-mega-menu .product_list_widget li:not(:has(img)) {
	grid-template-columns: minmax(0, 1fr);
}

.bsp-mega-menu .product_list_widget li:not(:has(img)) .product-title {
	grid-column: 1;
}

/* =============================================================================
   WooCommerce — Cart
   ============================================================================= */

.bsp-mega-menu .widget_shopping_cart .cart_list,
.bsp-mega-menu .widget_shopping_cart .woocommerce-mini-cart {
	list-style: none;
	margin: 0 0 12px;
	padding: 0;
}

.bsp-mega-menu .widget_shopping_cart .woocommerce-mini-cart-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 0;
	border-bottom: 1px solid #f5e6ed;
}

.bsp-mega-menu .widget_shopping_cart .woocommerce-mini-cart-item img {
	width: 48px;
	height: 48px;
	object-fit: cover;
	border-radius: 6px;
}

.bsp-mega-menu .widget_shopping_cart .woocommerce-mini-cart__total {
	display: flex;
	justify-content: space-between;
	padding: 12px 0;
	font-size: 14px;
	font-weight: 700;
	color: var(--bsp-mega-text);
	border-top: 1px solid #f5e6ed;
}

.bsp-mega-menu .widget_shopping_cart .woocommerce-mini-cart__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.bsp-mega-menu .widget_shopping_cart .woocommerce-mini-cart__buttons a {
	flex: 1;
	min-width: 0;
	padding: 10px 14px;
	text-align: center;
	font-size: 12px;
	font-weight: 600;
	border-radius: 8px;
}

.bsp-mega-menu .widget_shopping_cart .woocommerce-mini-cart__buttons a.button.checkout {
	background: var(--bsp-mega-pink);
	color: #fff !important;
}

.bsp-mega-menu .widget_shopping_cart .woocommerce-mini-cart__buttons a.button.wc-forward:not(.checkout) {
	background: var(--bsp-mega-pink-soft);
	color: var(--bsp-mega-pink) !important;
}

.bsp-mega-menu .widget_shopping_cart .remove {
	color: var(--bsp-mega-muted) !important;
	font-size: 18px;
	line-height: 1;
}

.bsp-mega-menu .widget_shopping_cart .remove:hover {
	color: var(--bsp-mega-pink) !important;
}

/* =============================================================================
   WooCommerce — Filters (Price, Attribute, Active Filters, Rating)
   ============================================================================= */

.bsp-mega-menu .widget_price_filter .price_slider_wrapper {
	padding-top: 8px;
}

.bsp-mega-menu .widget_price_filter .ui-slider {
	position: relative;
	height: 6px;
	margin: 16px 8px 20px;
	background: #f5e6ed;
	border-radius: 999px;
}

.bsp-mega-menu .widget_price_filter .ui-slider-range {
	background: var(--bsp-mega-pink);
	border-radius: 999px;
}

.bsp-mega-menu .widget_price_filter .ui-slider-handle {
	top: 50%;
	width: 16px;
	height: 16px;
	margin-top: -8px;
	background: var(--bsp-mega-pink);
	border: 2px solid #fff;
	border-radius: 50%;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.bsp-mega-menu .widget_price_filter .price_slider_amount {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	font-size: 13px;
	color: var(--bsp-mega-muted);
}

.bsp-mega-menu .widget_price_filter .price_label {
	font-weight: 600;
	color: var(--bsp-mega-text);
}

.bsp-mega-menu .widget_price_filter .button {
	padding: 8px 14px;
	font-size: 12px;
}

.bsp-mega-menu .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item {
	margin-bottom: 8px;
}

.bsp-mega-menu .woocommerce-widget-layered-nav-list .chosen a,
.bsp-mega-menu .widget_layered_nav_filters .chosen a {
	color: var(--bsp-mega-pink);
	font-weight: 600;
}

.bsp-mega-menu .widget_layered_nav_filters ul {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.bsp-mega-menu .widget_layered_nav_filters li {
	margin: 0;
}

.bsp-mega-menu .widget_layered_nav_filters a {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 5px 10px;
	border-radius: 999px;
	background: var(--bsp-mega-pink-soft);
	color: var(--bsp-mega-pink) !important;
	font-size: 12px;
	font-weight: 600;
}

.bsp-mega-menu .widget_layered_nav_filters a::before {
	content: "×";
	font-size: 14px;
	line-height: 1;
}

.bsp-mega-menu .widget_layered_nav select,
.bsp-mega-menu .woocommerce-widget-layered-nav-dropdown {
	width: 100%;
}

.bsp-mega-menu .widget_rating_filter .star-rating {
	display: inline-block;
	vertical-align: middle;
	margin-right: 6px;
}

/* =============================================================================
   WooCommerce Brands — Thumbnails, Description, Brand Nav
   ============================================================================= */

.bsp-mega-menu .widget_brand_thumbnails ul {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
}

.bsp-mega-menu .widget_brand_thumbnails li {
	text-align: center;
}

.bsp-mega-menu .widget_brand_thumbnails img {
	display: block;
	width: 100%;
	max-width: 80px;
	height: auto;
	margin: 0 auto;
	border-radius: 8px;
	object-fit: contain;
	filter: grayscale(20%);
	transition: filter 0.2s ease, transform 0.2s ease;
}

.bsp-mega-menu .widget_brand_thumbnails a:hover img {
	filter: none;
	transform: scale(1.04);
}

.bsp-mega-menu .widget_brand_description {
	font-size: 14px;
	line-height: 1.55;
	color: var(--bsp-mega-muted);
}

.bsp-mega-menu .widget_brand_description p {
	margin: 0 0 10px;
}

.bsp-mega-menu .widget_brand_nav .woocommerce-widget-layered-nav-list a::before {
	display: none;
}

/* =============================================================================
   WooCommerce misc
   ============================================================================= */

.bsp-mega-menu .woocommerce .widget {
	font-size: 14px;
}

.bsp-mega-menu .woocommerce .widget .clear {
	clear: both;
}

.bsp-mega-menu .woocommerce-message,
.bsp-mega-menu .woocommerce-info,
.bsp-mega-menu .woocommerce-error {
	padding: 10px 12px;
	margin-bottom: 10px;
	border-radius: 8px;
	font-size: 13px;
	line-height: 1.4;
}

.bsp-mega-menu .woocommerce-info {
	background: var(--bsp-mega-pink-soft);
	color: var(--bsp-mega-text);
	border-left: 3px solid var(--bsp-mega-pink);
}

.bsp-mega-menu .select2-container {
	max-width: 100%;
	font-size: 14px;
}

/* Hide default sub-menu for mega parents */
.bsp-mega-menu-parent > .sub-menu {
	display: none !important;
}

/* Click-only mode: disable CSS hover open on desktop */
body.bsp-mega-menu-click-only .bsp-mega-menu-parent:hover > .bsp-mega-menu,
body.bsp-mega-menu-click-only .bsp-mega-menu-parent:focus-within > .bsp-mega-menu {
	display: none;
}

body.bsp-mega-menu-click-only .bsp-mega-menu-parent.is-open > .bsp-mega-menu {
	display: block;
}

/* Legacy custom classes (if used in HTML) */
.bsp-mega-column,
.bsp-mega-promo {
	display: contents;
}

/* Mobile */
@media (max-width: 991px) {
	body.bsp-mega-menu-open::before {
		display: none;
	}

	.bsp-mega-menu {
		position: static;
		transform: none;
		width: 100%;
		box-shadow: none;
		border-radius: 0;
		padding: 16px 0;
		background: rgba(255, 255, 255, 0.08);
		color: #fff;
	}

	.bsp-mega-menu__grid {
		grid-template-columns: 1fr !important;
		gap: 20px;
	}

	/* Drawer flyout keeps its own column breakpoints in header.css */
	.bsp-header--minimal .bsp-drawer .bsp-mega-menu__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: clamp(20px, 3vw, 40px);
	}

	.bsp-mega-menu .bsp-mega-menu__widget-title,
	.bsp-mega-menu .widget-title,
	.bsp-mega-menu .wp-block-heading {
		color: #fff;
	}

	.bsp-mega-menu .widget a:not(.bsp-mega-promo-btn):not(.button) {
		color: rgba(255, 255, 255, 0.92);
	}

	.bsp-mega-menu .widget a:not(.bsp-mega-promo-btn):not(.button):hover {
		color: #fff;
	}

	.bsp-mega-menu .widget_text .textwidget,
	.bsp-mega-menu .widget_custom_html,
	.bsp-mega-menu .widget_rss .rssSummary,
	.bsp-mega-menu .widget_recent_comments .recentcomments,
	.bsp-mega-menu .widget_brand_description {
		color: rgba(255, 255, 255, 0.85);
	}

	.bsp-mega-menu .widget label,
	.bsp-mega-menu .widget .count,
	.bsp-mega-menu .widget .post-count,
	.bsp-mega-menu .widget_rss .rss-date,
	.bsp-mega-menu .widget_recent_entries .post-date {
		color: rgba(255, 255, 255, 0.7);
	}

	.bsp-mega-menu .widget input[type="text"],
	.bsp-mega-menu .widget input[type="search"],
	.bsp-mega-menu .widget select,
	.bsp-mega-menu .widget textarea {
		background: rgba(255, 255, 255, 0.95);
		border-color: rgba(255, 255, 255, 0.3);
	}

	.bsp-mega-menu .tagcloud a,
	.bsp-mega-menu .widget_product_tag_cloud a,
	.bsp-mega-menu .widget_layered_nav_filters a {
		background: rgba(255, 255, 255, 0.15);
		color: #fff !important;
	}

	.bsp-mega-menu .product_list_widget li,
	.bsp-mega-menu .widget_shopping_cart .woocommerce-mini-cart-item {
		border-bottom-color: rgba(255, 255, 255, 0.15);
	}

	.bsp-mega-menu .widget_calendar th,
	.bsp-mega-menu .widget_calendar td {
		border-color: rgba(255, 255, 255, 0.2);
		color: rgba(255, 255, 255, 0.9);
	}

	.bsp-mega-menu .widget_calendar a {
		color: #fff;
	}

	.bsp-mega-menu .menu-item.bsp-mega-view-all > a,
	.bsp-mega-menu .bsp-mega-view-all a {
		color: #fff !important;
	}

	.bsp-mega-menu__col:has(.widget_media_image),
	.bsp-mega-menu__col--promo {
		background: rgba(255, 255, 255, 0.12);
	}

	.bsp-mega-menu__col:has(.widget_media_image) .bsp-mega-menu__widget-title {
		color: #fff;
	}
}

@media (max-width: 1200px) {
	.bsp-mega-menu__grid--5,
	.bsp-mega-menu__grid--6 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 992px) {
	.bsp-mega-menu__grid--3,
	.bsp-mega-menu__grid--4,
	.bsp-mega-menu__grid--5,
	.bsp-mega-menu__grid--6 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	.bsp-header--minimal .bsp-drawer .bsp-mega-menu__grid,
	.bsp-header--minimal .bsp-drawer .bsp-mega-menu__grid--2,
	.bsp-header--minimal .bsp-drawer .bsp-mega-menu__grid--3,
	.bsp-header--minimal .bsp-drawer .bsp-mega-menu__grid--4,
	.bsp-header--minimal .bsp-drawer .bsp-mega-menu__grid--5,
	.bsp-header--minimal .bsp-drawer .bsp-mega-menu__grid--6 {
		grid-template-columns: 1fr !important;
	}

	.bsp-mega-menu__grid--3,
	.bsp-mega-menu__grid--4,
	.bsp-mega-menu__grid--5,
	.bsp-mega-menu__grid--6 {
		grid-template-columns: 1fr;
	}
}

/* =============================================================================
   Drawer flyout — STYLE HAVEN reference (minimal header)
   ============================================================================= */

.bsp-header--minimal .bsp-mega-menu .bsp-mega-menu__widget-title::before,
.bsp-header--minimal .bsp-mega-menu .widget-title::before {
	display: none !important;
}

.bsp-header--minimal .bsp-mega-menu .bsp-mega-menu__widget-title,
.bsp-header--minimal .bsp-mega-menu .widget-title,
.bsp-header--minimal .bsp-mega-menu .wp-block-heading {
	margin: 0 0 18px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	line-height: 1.3;
	text-transform: uppercase;
	color: #1a1a1a;
}

.bsp-header--minimal .bsp-mega-menu .bsp-mega-menu__links,
.bsp-header--minimal .bsp-mega-menu .widget_nav_menu ul.menu,
.bsp-header--minimal .bsp-mega-menu .widget_nav_menu ul {
	gap: 10px;
}

.bsp-header--minimal .bsp-mega-menu .bsp-mega-menu__links > li > a,
.bsp-header--minimal .bsp-mega-menu .widget_nav_menu a {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.45;
	color: #1a1a1a;
}

.bsp-header--minimal .bsp-mega-menu .bsp-mega-menu__links > li > a:hover,
.bsp-header--minimal .bsp-mega-menu .widget_nav_menu a:hover {
	color: #1a1a1a;
	opacity: 0.65;
}

/* Collection badges — add CSS class to menu item in WP admin */
.bsp-header--minimal .bsp-mega-menu .menu-item.bsp-mega-badge-new > a::after,
.bsp-header--minimal .bsp-mega-menu .menu-item.bsp-mega-badge-hot > a::after {
	content: attr(data-badge);
	margin-left: auto;
	padding: 3px 8px;
	border-radius: 4px;
	background: #f3f4f6;
	color: #1a1a1a;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.04em;
	line-height: 1.2;
	text-transform: capitalize;
	white-space: nowrap;
}

.bsp-header--minimal .bsp-mega-menu .menu-item.bsp-mega-badge-new > a::after {
	content: "New";
}

.bsp-header--minimal .bsp-mega-menu .menu-item.bsp-mega-badge-hot > a::after {
	content: "Hot";
}

/* Color swatches — add class bsp-mega-color-{slug} to menu item */
.bsp-header--minimal .bsp-mega-menu .menu-item[class*="bsp-mega-color-"] > a::before {
	content: "";
	display: inline-block;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	flex-shrink: 0;
	box-sizing: border-box;
}

.bsp-header--minimal .bsp-mega-menu .menu-item.bsp-mega-color-white > a::before { background: #fff; border: 1px solid #d1d5db; }
.bsp-header--minimal .bsp-mega-menu .menu-item.bsp-mega-color-black > a::before { background: #111; }
.bsp-header--minimal .bsp-mega-menu .menu-item.bsp-mega-color-grey > a::before,
.bsp-header--minimal .bsp-mega-menu .menu-item.bsp-mega-color-gray > a::before { background: #9ca3af; }
.bsp-header--minimal .bsp-mega-menu .menu-item.bsp-mega-color-navy > a::before,
.bsp-header--minimal .bsp-mega-menu .menu-item.bsp-mega-color-navy-blue > a::before { background: #1e3a5f; }
.bsp-header--minimal .bsp-mega-menu .menu-item.bsp-mega-color-beige > a::before { background: #d4c4a8; }
.bsp-header--minimal .bsp-mega-menu .menu-item.bsp-mega-color-green > a::before { background: #4a7c59; }
.bsp-header--minimal .bsp-mega-menu .menu-item.bsp-mega-color-brown > a::before { background: #6b4423; }
.bsp-header--minimal .bsp-mega-menu .menu-item.bsp-mega-color-red > a::before { background: #c0392b; }
.bsp-header--minimal .bsp-mega-menu .menu-item.bsp-mega-color-blue > a::before { background: #2563eb; }
.bsp-header--minimal .bsp-mega-menu .menu-item.bsp-mega-color-pink > a::before { background: #ec4899; }

.bsp-header--minimal .bsp-mega-menu .menu-item.bsp-mega-view-all > a,
.bsp-header--minimal .bsp-mega-menu .bsp-mega-view-all a {
	margin-top: 8px;
	font-size: 13px;
	font-weight: 500;
	color: #1a1a1a !important;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.bsp-header--minimal .bsp-mega-menu .menu-item.bsp-mega-view-all > a::after,
.bsp-header--minimal .bsp-mega-menu .bsp-mega-view-all a::after {
	content: none;
}

/* Promo column */
.bsp-header--minimal .bsp-mega-menu__col--promo {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: var(--bsp-mega-promo-min-height, 380px);
	padding: 28px 24px 0;
	background: #f3f4f6;
	border-radius: 0;
	overflow: hidden;
}

.bsp-header--minimal .bsp-mega-menu__col--promo .bsp-mega-menu__widget-title,
.bsp-header--minimal .bsp-mega-menu__col--promo .widget-title {
	margin-bottom: 10px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #1a1a1a;
}

.bsp-header--minimal .bsp-mega-menu__col--promo .widget_text .textwidget,
.bsp-header--minimal .bsp-mega-menu__col--promo .widget_custom_html {
	position: relative;
	z-index: 2;
	font-size: 13px;
	line-height: 1.5;
	color: #1a1a1a;
}

.bsp-header--minimal .bsp-mega-menu__col--promo .widget_text .textwidget strong,
.bsp-header--minimal .bsp-mega-menu__col--promo .widget_custom_html strong,
.bsp-header--minimal .bsp-mega-menu__col--promo .widget_text .textwidget .bsp-mega-promo-headline,
.bsp-header--minimal .bsp-mega-menu__col--promo .widget_custom_html .bsp-mega-promo-headline {
	display: block;
	margin: 0 0 22px;
	font-family: var(--bsp-font-heading, inherit);
	font-size: clamp(20px, 2vw, 28px);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #1a1a1a;
}

.bsp-header--minimal .bsp-mega-menu__col--promo .bsp-mega-promo-btn,
.bsp-header--minimal .bsp-mega-menu__col--promo .widget_text .textwidget a.bsp-mega-promo-btn,
.bsp-header--minimal .bsp-mega-menu__col--promo .widget_custom_html a.bsp-mega-promo-btn,
.bsp-header--minimal .bsp-mega-menu__col--promo .wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 120px;
	margin-top: 0;
	padding: 12px 24px;
	background: #1a1a1a;
	color: #fff !important;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	line-height: 1.2;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 0;
	border: 0;
}

.bsp-header--minimal .bsp-mega-menu__col--promo .bsp-mega-promo-btn:hover,
.bsp-header--minimal .bsp-mega-menu__col--promo .widget_text .textwidget a.bsp-mega-promo-btn:hover,
.bsp-header--minimal .bsp-mega-menu__col--promo .widget_custom_html a.bsp-mega-promo-btn:hover {
	background: #333;
	color: #fff !important;
}

.bsp-header--minimal .bsp-mega-menu__col--promo .widget_media_image {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	margin-top: auto;
	padding-top: 24px;
	min-height: 180px;
}

.bsp-header--minimal .bsp-mega-menu__col--promo .widget_media_image img {
	display: block;
	width: auto;
	max-width: min(100%, 260px);
	height: auto;
	margin: 0 auto;
	object-fit: contain;
}

.bsp-header--minimal .bsp-mega-menu__col--promo:has(.widget_media_image) .widget_media_image {
	margin-top: -20px;
}

.bsp-header--minimal .bsp-mega-menu__col:not(.bsp-mega-menu__col--promo) {
	padding-top: 4px;
}

/* Override legacy mobile drawer mega styles for minimal header */
@media (max-width: 991px) {
	.bsp-header--minimal .bsp-drawer .bsp-mega-menu {
		background: #fff;
		color: #1a1a1a;
	}

	.bsp-header--minimal .bsp-mega-menu .bsp-mega-menu__widget-title,
	.bsp-header--minimal .bsp-mega-menu .widget-title {
		color: #1a1a1a;
	}

	.bsp-header--minimal .bsp-mega-menu .widget_nav_menu a {
		color: #1a1a1a;
	}

	.bsp-header--minimal .bsp-mega-menu__col--promo {
		background: #f3f4f6;
	}
}
