/* =====================================================================
   MCW Footer Widget — fully isolated under .mcw-footer-wrapper
   ===================================================================== */

.mcw-footer-wrapper .mcw-footer {
	position: relative;
	background: #0F172A;
	color: rgba(255,255,255,0.7) !important;
	padding: 80px 32px 0 32px;
	overflow: hidden;
}

/* subtle radial accent in the corner */
.mcw-footer-wrapper .mcw-footer::before {
	content: '';
	position: absolute;
	top: -120px;
	right: -120px;
	width: 360px;
	height: 360px;
	background: radial-gradient( circle, rgba(211,47,47,0.18) 0%, transparent 65% );
	pointer-events: none;
}

.mcw-footer-wrapper .mcw-footer__inner {
	position: relative;
	max-width: 1320px;
	margin: 0 auto;
}

.mcw-footer-wrapper .mcw-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 56px;
	padding-bottom: 56px;
}

/* ---------- BRAND ---------- */
.mcw-footer-wrapper .mcw-footer__brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	text-decoration: none !important;
	margin-bottom: 16px;
}

.mcw-footer-wrapper .mcw-footer__brand-img {
	height: 44px;
	width: auto;
}

.mcw-footer-wrapper .mcw-footer__brand-name {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: #FFFFFF !important;
}

.mcw-footer-wrapper .mcw-footer__brand-name span {
	color: var(--mcw-primary) !important;
}

.mcw-footer-wrapper .mcw-footer__tagline {
	font-size: 15px;
	line-height: 1.6;
	max-width: 32ch;
	margin: 0;
}

/* ---------- COLUMN TITLE ---------- */
.mcw-footer-wrapper .mcw-footer__col-title {
	position: relative;
	font-size: 16px;
	font-weight: 700;
	color: #FFFFFF !important;
	margin: 0 0 22px 0;
	padding-bottom: 12px;
	letter-spacing: 0.02em;
}

.mcw-footer-wrapper .mcw-footer__col-title::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 32px;
	height: 2px;
	background: var(--mcw-primary);
	border-radius: 2px;
}

/* ---------- LISTS ---------- */
.mcw-footer-wrapper .mcw-footer__list,
.mcw-footer-wrapper .mcw-footer__hours {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.mcw-footer-wrapper .mcw-footer__list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 15px;
	line-height: 1.55;
}

.mcw-footer-wrapper .mcw-footer__list--plain li { gap: 0; }

.mcw-footer-wrapper .mcw-footer__icon {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	display: inline-flex;
	color: var(--mcw-primary);
	margin-top: 2px;
}

.mcw-footer-wrapper .mcw-footer a {
	color: rgba(255,255,255,0.78) !important;
	text-decoration: none !important;
	transition: color var(--mcw-base), padding-left var(--mcw-base);
}

.mcw-footer-wrapper .mcw-footer__list--plain a {
	display: inline-block;
	position: relative;
}

.mcw-footer-wrapper .mcw-footer__list--plain a::before {
	content: '→';
	display: inline-block;
	margin-right: 0;
	width: 0;
	overflow: hidden;
	color: var(--mcw-primary);
	transition: width var(--mcw-base), margin-right var(--mcw-base);
}

.mcw-footer-wrapper .mcw-footer__list--plain a:hover {
	color: #FFFFFF !important;
	padding-left: 4px;
}

.mcw-footer-wrapper .mcw-footer__list--plain a:hover::before {
	width: 14px;
	margin-right: 6px;
}

/* ---------- HOURS ---------- */
.mcw-footer-wrapper .mcw-footer__hours li {
	display: grid;
	grid-template-columns: 80px 1fr;
	gap: 12px;
	align-items: center;
	font-size: 15px;
	padding: 8px 0;
	border-bottom: 1px dashed rgba(255,255,255,0.08);
}

.mcw-footer-wrapper .mcw-footer__hours li:last-child { border-bottom: 0; }

.mcw-footer-wrapper .mcw-footer__day {
	font-weight: 600;
	color: #FFFFFF !important;
	font-size: 14px;
}

.mcw-footer-wrapper .mcw-footer__time {
	color: rgba(255,255,255,0.7) !important;
	font-size: 14px;
}

/* ---------- BOTTOM BAR ---------- */
.mcw-footer-wrapper .mcw-footer__bar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 24px 0;
	border-top: 1px solid rgba(255,255,255,0.08);
}

.mcw-footer-wrapper .mcw-footer__copy {
	margin: 0;
	font-size: 13px;
	color: rgba(255,255,255,0.55) !important;
}

.mcw-footer-wrapper .mcw-footer__bar-links {
	display: flex;
	align-items: center;
	gap: 24px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.mcw-footer-wrapper .mcw-footer__bar-links a {
	font-size: 13px;
	color: rgba(255,255,255,0.55) !important;
	transition: color var(--mcw-base);
}

.mcw-footer-wrapper .mcw-footer__bar-links a:hover {
	color: #FFFFFF !important;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
	.mcw-footer-wrapper .mcw-footer__grid {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}
}

@media (max-width: 640px) {
	.mcw-footer-wrapper .mcw-footer {
		padding: 48px 16px 0 16px;
		text-align: center;
	}
	.mcw-footer-wrapper .mcw-footer__grid {
		grid-template-columns: 1fr;
		gap: 32px;
		padding-bottom: 32px;
	}

	/* Center every column */
	.mcw-footer-wrapper .mcw-footer__col {
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	/* Brand */
	.mcw-footer-wrapper .mcw-footer__brand {
		justify-content: center;
	}
	.mcw-footer-wrapper .mcw-footer__tagline {
		max-width: 38ch;
		margin-left: auto;
		margin-right: auto;
	}

	/* Column heading + underline centered */
	.mcw-footer-wrapper .mcw-footer__col-title {
		text-align: center;
		padding-bottom: 14px;
	}
	.mcw-footer-wrapper .mcw-footer__col-title::after {
		left: 50%;
		transform: translateX(-50%);
	}

	/* Lists — center icon+text rows */
	.mcw-footer-wrapper .mcw-footer__list {
		align-items: center;
	}
	.mcw-footer-wrapper .mcw-footer__list li {
		justify-content: center;
		text-align: center;
		flex-direction: column;
		gap: 8px;
	}
	.mcw-footer-wrapper .mcw-footer__icon { margin-top: 0; }

	/* Plain link list — keep simple stacked center */
	.mcw-footer-wrapper .mcw-footer__list--plain li { gap: 0; }
	.mcw-footer-wrapper .mcw-footer__list--plain a:hover { padding-left: 0; }
	.mcw-footer-wrapper .mcw-footer__list--plain a::before { display: none; }

	/* Hours: center each row, stop using grid columns */
	.mcw-footer-wrapper .mcw-footer__hours li {
		grid-template-columns: auto auto;
		justify-content: center;
		gap: 16px;
	}

	/* Bottom bar centered */
	.mcw-footer-wrapper .mcw-footer__bar {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 12px;
	}
	.mcw-footer-wrapper .mcw-footer__bar-links {
		justify-content: center;
	}
}
