/*!
 * Sentio for Elementor - mega-menu widget
 * Extracted from frontend.css during Batch 7 mechanical extraction (2026-04-19)
 *
 * BACKLOG NOTE (preserved as-is per Tier 3 mechanical extraction):
 *   1. Content controls missing background-color/color across text/links/icons.
 *   2. 2-column dropdown hover positioning has a dead zone causing dropdown
 *      to disappear before reaching items.
 *   3. Search icon too small, no size control.
 *   4. Icon size controls missing across widget.
 * See _audits/widget-settings-backlog.md.
 */

/* ═══════════════════════════════════════════════════════════════
   Mega Menu  (.sentio-mm)
   ═══════════════════════════════════════════════════════════════ */

/* ── Reset & Container ── */
.sentio-mm {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	box-sizing: border-box;
	position: relative;
	z-index: 9999;
	width: 100%;
}
.sentio-mm *, .sentio-mm *::before, .sentio-mm *::after { box-sizing: border-box; }
.sentio-mm__inner {
	display: flex;
	align-items: center;
	width: 100%;
	padding: 0 24px;
}
.sentio-mm__inner--boxed {
	max-width: 1280px;
	margin: 0 auto;
}

/* ── Announcement Top Bar ── */
.sentio-mm__topbar {
	background: #161823;
	color: #fff;
	text-align: center;
	position: relative;
	z-index: 2;
}
.sentio-mm__topbar .sentio-mm__inner {
	justify-content: center;
	padding: 8px 24px;
}
.sentio-mm__topbar-text {
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.01em;
}
.sentio-mm__topbar-link {
	color: inherit;
	text-decoration: none;
}
.sentio-mm__topbar-link:hover {
	text-decoration: underline;
}
.sentio-mm__topbar-close {
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	color: rgba(255,255,255,0.6);
	font-size: 18px;
	cursor: pointer;
	padding: 4px 8px;
	line-height: 1;
	transition: color 0.2s ease;
	padding: 0;
}
.sentio-mm__topbar-close:hover {
	color: #fff;
}
.sentio-mm__topbar--hidden {
	display: none;
}

/* ── Main Bar ── */
.sentio-mm__bar {
	background: #ffffff;
	height: 72px;
	border-bottom: 1px solid #eee;
	position: relative;
	z-index: 1;
	transition: height 0.3s ease, box-shadow 0.3s ease;
}
.sentio-mm__bar .sentio-mm__inner {
	height: 100%;
	gap: 8px;
}

/* Sticky */
.sentio-mm--stuck .sentio-mm__bar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 99998;
	box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.sentio-mm--stuck.sentio-mm--shrunk .sentio-mm__bar {
	height: 56px;
}
.sentio-mm--stuck + .sentio-mm__sticky-spacer {
	display: block;
}

/* ── Logo ── */
.sentio-mm__logo {
	display: flex;
	align-items: center;
	text-decoration: none;
	flex-shrink: 0;
	margin-right: 12px;
}
.sentio-mm__logo img,
.sentio-mm__logo svg {
	width: 130px;
	height: auto;
	display: block;
}
.sentio-mm__logo-text {
	font-size: 22px;
	font-weight: 800;
	color: #161823;
	letter-spacing: -0.02em;
}
.sentio-mm--centered .sentio-mm__logo {
	margin: 0 24px;
}

/* ── Navigation ── */
.sentio-mm__nav {
	display: flex;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
	height: 100%;
	flex: 1;
}
.sentio-mm--centered .sentio-mm__nav {
	flex: none;
}
.sentio-mm--centered .sentio-mm__nav--left {
	justify-content: flex-end;
}
.sentio-mm--centered .sentio-mm__nav--right {
	justify-content: flex-start;
}

.sentio-mm__item {
	position: relative;
	height: 100%;
	display: flex;
	align-items: center;
}
.sentio-mm__link {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 0 28px;
	height: 100%;
	font-size: 14px;
	font-weight: 600;
	color: #161823;
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.2s ease;
	position: relative;
}
.sentio-mm__link:hover,
.sentio-mm__item--active > .sentio-mm__link {
	color: #fe2c55;
}

/* Active indicators */
.sentio-mm--ind-underline .sentio-mm__item:hover > .sentio-mm__link::after,
.sentio-mm--ind-underline .sentio-mm__item--active > .sentio-mm__link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 40px);
	height: 3px;
	background: #fe2c55;
	border-radius: 3px 3px 0 0;
}
.sentio-mm--ind-overline .sentio-mm__item:hover > .sentio-mm__link::after,
.sentio-mm--ind-overline .sentio-mm__item--active > .sentio-mm__link::after {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 40px);
	height: 3px;
	background: #fe2c55;
	border-radius: 0 0 3px 3px;
}
.sentio-mm--ind-bg .sentio-mm__item:hover > .sentio-mm__link,
.sentio-mm--ind-bg .sentio-mm__item--active > .sentio-mm__link {
	background: rgba(254,44,85,0.06);
	border-radius: 8px;
}

/* Item Icons */
.sentio-mm__item-icon {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
}
.sentio-mm__item-icon svg {
	width: 18px;
	height: 18px;
}
.sentio-mm__item-icon img {
	width: 18px;
	height: 18px;
	object-fit: contain;
}
.sentio-mm__item-icon i {
	font-size: 18px;
}

/* Chevron */
.sentio-mm__chevron {
	transition: transform 0.3s ease;
	opacity: 0.5;
	margin-left: 2px;
}
.sentio-mm__item:hover .sentio-mm__chevron {
	transform: rotate(180deg);
	opacity: 1;
}

/* Badge */
.sentio-mm__badge {
	display: inline-block;
	padding: 1px 7px;
	font-size: 9px;
	font-weight: 800;
	color: #fff;
	background: #fe2c55;
	border-radius: 4px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	line-height: 1.6;
	animation: sentio-mm-badge-pulse 2s ease-in-out infinite;
}
@keyframes sentio-mm-badge-pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.7; }
}

/* ── Mega Dropdown ── */
/* Remove relative from items so mega positions to the bar */
.sentio-mm__item--has-mega {
	position: static !important;
}
.sentio-mm__bar {
	position: relative;
}
.sentio-mm__mega {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 12px 48px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.04);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
	z-index: 100;
	padding: 28px;
	pointer-events: none;
	margin: 0 auto;
}
.sentio-mm__mega--full {
	width: 100%;
	max-width: 1280px;
	left: 50%;
	right: auto;
	transform: translateX(-50%) translateY(8px);
}
.sentio-mm__mega--boxed {
	width: 1200px;
	max-width: calc(100vw - 32px);
	left: 50%;
	right: auto;
	transform: translateX(-50%) translateY(8px);
}
.sentio-mm__mega--auto {
	min-width: 600px;
	max-width: calc(100vw - 32px);
	left: 0;
	right: auto;
	width: auto;
}

/* Show on hover / click */
.sentio-mm__item--open > .sentio-mm__mega,
.sentio-mm__item:hover > .sentio-mm__mega {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}
.sentio-mm__item--open > .sentio-mm__mega--full,
.sentio-mm__item:hover > .sentio-mm__mega--full {
	transform: translateX(-50%) translateY(0);
}
.sentio-mm__item:hover > .sentio-mm__mega--boxed,
.sentio-mm__item--open > .sentio-mm__mega--boxed {
	transform: translateX(-50%) translateY(0);
}

/* Mega inner grid */
.sentio-mm__mega-inner {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
}

/* Column */
.sentio-mm__col-title {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #161823;
	margin-bottom: 16px;
	padding-bottom: 10px;
	border-bottom: 2px solid #f1f1f2;
}
.sentio-mm__col-svg {
	display: inline-flex;
	flex-shrink: 0;
}
.sentio-mm__col-svg svg {
	width: 18px;
	height: 18px;
}
.sentio-mm__sub-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.sentio-mm__sub-list li {
	margin-bottom: 2px;
}
.sentio-mm__sub-link {
	display: block;
	padding: 6px 0;
	font-size: 14px;
	font-weight: 500;
	color: #5b5b5b;
	text-decoration: none;
	transition: color 0.15s ease, padding-left 0.15s ease;
	border-radius: 4px;
}
.sentio-mm__sub-link:hover {
	color: #fe2c55;
	padding-left: 6px;
}

/* ── Promo Card ── */
.sentio-mm__promo {
	display: block;
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	text-decoration: none;
	height: 100%;
	min-height: 220px;
}
.sentio-mm__promo-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}
.sentio-mm__promo:hover .sentio-mm__promo-img {
	transform: scale(1.06);
}
.sentio-mm__promo-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.45);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 20px;
	text-align: center;
	transition: background 0.3s ease;
}
.sentio-mm__promo:hover .sentio-mm__promo-overlay {
	background: rgba(0,0,0,0.55);
}
.sentio-mm__promo-title {
	font-size: 20px;
	font-weight: 800;
	color: #fff;
}
.sentio-mm__promo-sub {
	font-size: 14px;
	color: rgba(255,255,255,0.85);
	font-weight: 500;
}
.sentio-mm__promo-btn {
	display: inline-block;
	margin-top: 8px;
	padding: 8px 20px;
	background: #fff;
	color: #161823;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 700;
	transition: background 0.2s ease, transform 0.2s ease;
}
.sentio-mm__promo:hover .sentio-mm__promo-btn {
	background: #fe2c55;
	color: #fff;
	transform: translateY(-1px);
}

/* ── Mega Bottom Banner ── */
.sentio-mm__mega-banner {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 20px;
	padding-top: 16px;
	border-top: 1px solid #f1f1f2;
}
.sentio-mm__mega-banner-img {
	width: 32px;
	height: 32px;
	object-fit: contain;
	flex-shrink: 0;
}
.sentio-mm__mega-banner-text {
	font-size: 13px;
	font-weight: 600;
	color: #5b5b5b;
	text-decoration: none;
	transition: color 0.2s ease;
}
a.sentio-mm__mega-banner-text:hover {
	color: #fe2c55;
}

/* ── Right-Side Actions ── */
.sentio-mm__actions {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-left: auto;
	flex-shrink: 0;
}
.sentio-mm__action {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 8px;
	border: none;
	background: transparent;
	color: #161823;
	cursor: pointer;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
	position: relative;
	padding: 0;
}
.sentio-mm__action:hover {
	background: #f1f1f2;
	color: #fe2c55;
}
.sentio-mm__cart-count {
	position: absolute;
	top: 4px;
	right: 4px;
	min-width: 18px;
	height: 18px;
	border-radius: 9px;
	background: #fe2c55;
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 4px;
}

/* CTA Button */
.sentio-mm__cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 9px 20px;
	background: #fe2c55;
	color: #fff;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
	transition: background 0.2s ease, transform 0.15s ease;
	margin-left: 4px;
}
.sentio-mm__cta:hover {
	background: #e6254d;
	transform: translateY(-1px);
	color: #fff;
}
.sentio-mm__cta-icon {
	display: inline-flex;
}
.sentio-mm__cta-icon svg {
	width: 16px;
	height: 16px;
}

/* Hamburger (hidden desktop) */
.sentio-mm__hamburger {
	display: none;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: none;
	background: transparent;
	color: #161823;
	cursor: pointer;
	border-radius: 8px;
	transition: background 0.2s ease;
	padding: 0;
	color: #c36;
}
.sentio-mm__hamburger:hover {
	background: #f1f1f2;
}

/* ── Search Panel ── */
.sentio-mm__search-panel {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: #fff;
	padding: 16px 0;
	box-shadow: 0 8px 32px rgba(0,0,0,0.1);
	z-index: 99;
	display: none;
}
.sentio-mm__search-panel--open {
	display: block;
}
.sentio-mm__search-wrap {
	display: flex;
	align-items: center;
	gap: 12px;
	background: #f8f8f8;
	border: 2px solid #e8e8e8;
	border-radius: 12px;
	padding: 12px 16px;
	transition: border-color 0.2s ease;
}
.sentio-mm__search-wrap:focus-within {
	border-color: #fe2c55;
}
.sentio-mm__search-input {
	flex: 1;
	border: none;
	background: none;
	font-size: 16px;
	outline: none;
	color: #161823;
}
.sentio-mm__search-input::placeholder {
	color: #aaa;
}
.sentio-mm__search-close {
	background: none;
	border: none;
	color: #999;
	cursor: pointer;
	display: flex;
	padding: 4px;
	border-radius: 4px;
	transition: color 0.2s ease;
}
.sentio-mm__search-close:hover {
	color: #161823;
}

/* ── Mobile Drawer ── */
.sentio-mm__drawer-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.5);
	z-index: 99998;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}
.sentio-mm__drawer-overlay--open {
	opacity: 1;
	visibility: visible;
}
.sentio-mm__drawer {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: 320px;
	background: #fff;
	z-index: 99999;
	transform: translateX(100%);
	transition: transform 0.35s cubic-bezier(0.25,0.8,0.25,1);
	display: flex;
	flex-direction: column;
	overflow: hidden;
}
.sentio-mm__drawer--open {
	transform: translateX(0);
}
.sentio-mm__drawer-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 20px;
	border-bottom: 1px solid #f1f1f2;
	flex-shrink: 0;
}
.sentio-mm__drawer-header .sentio-mm__logo img,
.sentio-mm__drawer-header .sentio-mm__logo svg {
	width: 100px;
}
.sentio-mm__drawer-close {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: none;
	background: #f1f1f2;
	border-radius: 8px;
	color: #161823;
	cursor: pointer;
	transition: background 0.2s ease;
	padding: 0;
}
.sentio-mm__drawer-close:hover {
	background: #e0e0e0;
}
.sentio-mm__drawer-body {
	flex: 1;
	overflow-y: auto;
	padding: 12px 0;
	-webkit-overflow-scrolling: touch;
}
.sentio-mm__drawer-item {
	border-bottom: 1px solid #f8f8f8;
}
.sentio-mm__drawer-link-row {
	display: flex;
	align-items: center;
}
.sentio-mm__drawer-link {
	flex: 1;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 14px 20px;
	font-size: 15px;
	font-weight: 600;
	color: #161823;
	text-decoration: none;
	transition: color 0.2s ease;
}
.sentio-mm__drawer-link:hover {
	color: #fe2c55;
}
.sentio-mm__drawer-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 48px;
	border: none;
	background: none;
	color: #999;
	cursor: pointer;
	flex-shrink: 0;
	transition: transform 0.3s ease;
	padding: 0;
}
.sentio-mm__drawer-toggle--open {
	transform: rotate(180deg);
}
.sentio-mm__drawer-sub {
	display: none;
	padding: 0 20px 16px 32px;
}
.sentio-mm__drawer-sub--open {
	display: block;
}
.sentio-mm__drawer-sub-title {
	display: block;
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #999;
	margin: 12px 0 6px;
}
.sentio-mm__drawer-sub-link {
	display: block;
	padding: 7px 0;
	font-size: 14px;
	font-weight: 500;
	color: #5b5b5b;
	text-decoration: none;
	transition: color 0.15s ease;
}
.sentio-mm__drawer-sub-link:hover {
	color: #fe2c55;
}
.sentio-mm__drawer-promo {
	margin-top: 12px;
}
.sentio-mm__drawer-promo img {
	width: 100%;
	border-radius: 8px;
	margin-bottom: 6px;
}
.sentio-mm__drawer-promo strong {
	font-size: 13px;
	color: #161823;
}

/* ── Editor overrides — force desktop layout only when Elementor is in desktop preview mode ── */
.elementor-device-desktop .sentio-mm--editor .sentio-mm__nav {
	display: flex !important;
}
.elementor-device-desktop .sentio-mm--editor .sentio-mm__hamburger {
	display: none !important;
}
.elementor-device-desktop .sentio-mm--editor .sentio-mm__cta {
	display: inline-flex !important;
}
.elementor-device-desktop .sentio-mm--editor .sentio-mm__item--has-mega:hover > .sentio-mm__mega {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}
.elementor-device-desktop .sentio-mm--editor .sentio-mm__item--has-mega:hover > .sentio-mm__mega--full,
.elementor-device-desktop .sentio-mm--editor .sentio-mm__item--has-mega:hover > .sentio-mm__mega--boxed {
	transform: translateX(-50%) translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
	.sentio-mm .sentio-mm__nav {
		display: none;
	}
	.sentio-mm .sentio-mm__hamburger {
		display: flex;
		color: #c36;
	}
	.sentio-mm .sentio-mm__cta {
		display: none;
	}
}
@media (max-width: 767px) {
	.sentio-mm__bar {
		height: 60px;
	}
	.sentio-mm__inner {
		padding: 0 16px;
	}
	.sentio-mm__logo img,
	.sentio-mm__logo svg {
		width: 100px;
	}
	.sentio-mm__topbar .sentio-mm__inner {
		padding: 6px 16px;
	}
	.sentio-mm__topbar-text {
		font-size: 12px;
	}
	.sentio-mm__action {
		width: 36px;
		height: 36px;
	}
	.sentio-mm__drawer {
		width: 100%;
	}
}
