/**
 * MK Studio — front-end section chrome
 */

.mk-studio-main {
	width: 100%;
	min-height: 40vh;
}

.mk-studio-header-root {
	width: 100%;
}

.mk-studio-header-preview-note {
	max-width: 720px;
	margin: 48px auto;
	padding: 24px;
	background: #faeec2;
	color: #113a2d;
	border-radius: 8px;
	text-align: center;
	font-size: 14px;
}

/* -------------------------------------------------------------------------- */
/* Header group — PH stack (uses theme .ph-* where possible)                  */
/* -------------------------------------------------------------------------- */

.mk-header-main {
	position: relative;
	z-index: 100;
	width: 100%;
	max-width: 100vw;
	box-sizing: border-box;
	overflow: visible; /* mega panel */
}

.mk-header-main__inner {
	max-width: var(--mk-header-inner-max, 1200px);
	margin: 0 auto;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px 16px;
	position: relative;
	width: 100%;
	box-sizing: border-box;
	/* Never let logo/nav/tools force horizontal page scroll */
	min-width: 0;
}

.mk-header-main__brand {
	flex: 0 1 auto;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	z-index: 1;
	/* Hard cap — stops full-res custom logo (e.g. 875px) from expanding the row */
	max-width: var(--mk-logo-w, 120px);
	min-width: 0;
	width: auto;
	overflow: hidden;
}

.mk-header-main__logo-link {
	display: block;
	line-height: 0;
	max-width: 100%;
}

.mk-header-main__logo,
.mk-header-main__brand img,
.mk-header-main__logo-link img,
.mk-header-main img.custom-logo,
.mk-header-main img.mk-header-main__logo {
	display: block !important;
	width: auto !important;
	height: auto !important;
	max-width: 100% !important;
	max-height: var(--mk-logo-h, 64px) !important;
	object-fit: contain;
}

.mk-header-main__title {
	color: inherit;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-decoration: none;
	font-size: 1.15rem;
}

.mk-header-main__nav {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	justify-content: center;
}

.mk-header-main__tools {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	gap: 6px 12px;
	z-index: 1;
	margin-left: 8px;
	padding-left: 4px;
}

/* Account / My account icon (Shopify-style, next to cart) */
.mk-header-main__account {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	flex: 0 0 auto;
	color: inherit;
	text-decoration: none;
	border-radius: 4px;
	line-height: 0;
}

.mk-header-main__account:hover,
.mk-header-main__account:focus-visible {
	background: rgba(250, 238, 194, 0.12);
	outline: none;
}

.mk-header-main__account svg {
	width: 22px !important;
	height: 22px !important;
	display: block;
}

.mk-header-main__account-dot {
	position: absolute;
	top: 8px;
	right: 8px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--mk-header-menu, #faeec2);
	box-shadow: 0 0 0 2px var(--mk-header-fg, #113a2d);
}

/* Search: icon in tools → PWA-style overlay bar (covers the header, not the logo/nav). */
.mk-header-main__search-wrap {
	position: static;
	display: flex;
	align-items: center;
}

.mk-header-main__search-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 0;
	background: transparent;
	color: inherit;
	cursor: pointer;
	border-radius: 4px;
}

.mk-header-main__search-toggle:hover,
.mk-header-main__search-toggle:focus-visible {
	background: rgba(250, 238, 194, 0.12);
	outline: none;
}

.mk-header-main__search {
	display: none;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 60;
	align-items: center;
	gap: 10px;
	padding: 8px 16px;
	margin: 0;
	min-width: 0;
	width: auto;
	transform: none;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	background: var(--mk-header-bg, #113a2d);
	color: var(--mk-header-fg, #faeec2);
	box-sizing: border-box;
	overflow: visible;
}

.mk-header-main__search-live {
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	z-index: 61;
	background: #ffffff;
	color: #111;
	max-height: min(70vh, 520px);
	overflow-y: auto;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.mk-header-main__search-live[hidden] {
	display: none !important;
}

.mk-header-main__search-status {
	padding: 14px 18px;
	font-size: 14px;
	color: #555;
}

.mk-header-main__search-status[hidden] {
	display: none !important;
}

.mk-header-main__search-hit {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 16px;
	text-decoration: none;
	color: #111;
	border-bottom: 1px solid #f0f0f0;
}

.mk-header-main__search-hit:hover,
.mk-header-main__search-hit:focus {
	background: #f6f6f6;
	outline: none;
}

.mk-header-main__search-hit-img {
	width: 56px;
	height: 56px;
	object-fit: cover;
	border-radius: 8px;
	background: #f3f3f3;
	flex: 0 0 auto;
}

.mk-header-main__search-hit-meta {
	flex: 1 1 auto;
	min-width: 0;
}

.mk-header-main__search-hit-title {
	font-size: 15px;
	font-weight: 600;
	line-height: 1.3;
}

.mk-header-main__search-hit-price {
	margin-top: 4px;
	font-size: 13px;
	color: #444;
}

.mk-header-main__search-all {
	display: block;
	width: 100%;
	margin: 0;
	padding: 14px 16px;
	border: 0;
	border-top: 1px solid #eee;
	background: #fff;
	color: #113a2d;
	font: inherit;
	font-size: 15px;
	font-weight: 700;
	text-align: left;
	cursor: pointer;
}

.mk-header-main__search-wrap.is-open .mk-header-main__search,
.mk-header-main.is-search-open .mk-header-main__search,
.mk-header-main__search:not([hidden]) {
	display: flex;
}

.mk-header-main__search-pill {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	align-items: center;
	gap: 8px;
	height: 40px;
	padding: 0 6px 0 12px;
	border: 0;
	border-radius: 999px;
	background: #ffffff;
	color: #333;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

.mk-header-main__search input[type="search"] {
	border: 0;
	background: transparent;
	color: #222;
	padding: 8px 8px 8px 0;
	font-size: 15px;
	width: 100%;
	min-width: 0;
	flex: 1 1 auto;
	outline: none;
	box-shadow: none;
}

.mk-header-main__search input[type="search"]::placeholder {
	color: #666;
}

.mk-header-main__search-submit {
	border: 0;
	background: transparent;
	color: #333;
	padding: 4px;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
}

.mk-header-main__search-close {
	flex: 0 0 auto;
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: 4px;
	background: transparent;
	color: inherit;
	padding: 0;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	line-height: 1;
}

.mk-header-main__search-close:hover,
.mk-header-main__search-close:focus-visible {
	background: rgba(250, 238, 194, 0.12);
	outline: none;
}

/* Cart trigger in Studio header (classic MK drawer) */
.mk-header-main__cart-wrap {
	display: inline-flex;
	align-items: center;
	line-height: 0;
	flex: 0 0 auto;
	margin-left: 2px;
}

.mk-header-main__cart-wrap .mk-mini-cart__trigger {
	color: inherit;
}

.mk-header-main__cart-wrap .mk-mini-cart__icon,
.mk-header-main__cart-wrap svg {
	width: 22px !important;
	height: 22px !important;
	max-width: 22px !important;
	max-height: 22px !important;
	display: block !important;
}

/* Search toggle / icons — fixed size, never fill layout */
.mk-header-main__search-toggle {
	flex: 0 0 auto;
}

.mk-header-main__search-toggle svg,
.mk-header-main__search-submit svg {
	width: 20px !important;
	height: 20px !important;
	max-width: 20px !important;
	max-height: 20px !important;
	display: block;
	flex: 0 0 auto;
}

.mk-header-main__tools > * {
	flex: 0 0 auto;
}

.mk-header-main__menu-hint {
	margin: 0;
	font-size: 12px;
	opacity: 0.85;
}

.mk-header-fallback-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 16px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.mk-header-fallback-menu a {
	color: inherit;
	text-decoration: none;
	font-size: 14px;
}

/* Icon-only hamburger (default) — hide “Menu” text */
.mk-header-main--icon-menu .mk-mega__toggle-label {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.mk-header-main--icon-menu .mk-mega__toggle {
	padding: 8px;
	gap: 0;
	border-color: transparent;
	min-width: 40px;
	min-height: 40px;
	justify-content: center;
}

.mk-header-main--icon-menu .mk-mega__toggle:hover,
.mk-header-main--icon-menu .mk-mega__toggle:focus-visible {
	border-color: rgba(250, 238, 194, 0.35);
	background: rgba(250, 238, 194, 0.12);
	outline: none;
}

/* Hamburger-always mode (desktop + mobile) — High Rollers secondary header style */
.mk-header-main--hamburger .mk-header-main__inner {
	display: grid !important;
	grid-template-columns: 48px 1fr auto;
	grid-template-areas: "menu logo tools";
	align-items: center;
	gap: 8px 12px;
	max-width: var(--mk-header-inner-max, 1200px);
}

.mk-header-main--hamburger .mk-header-main__nav {
	grid-area: menu;
	justify-content: flex-start;
	flex: none;
	min-width: 0;
	order: unset;
}

.mk-header-main--hamburger .mk-header-main__brand {
	grid-area: logo;
	justify-self: center;
	align-items: center;
	text-align: center;
	max-width: var(--mk-logo-w, 160px) !important;
}

.mk-header-main--hamburger .mk-header-main__tools {
	grid-area: tools;
	justify-self: end;
	margin-left: 0;
	padding-left: 0;
	gap: 4px 10px;
}

.mk-header-main--hamburger .mk-header-main__logo,
.mk-header-main--hamburger .mk-header-main__brand img,
.mk-header-main--hamburger .mk-header-main__logo-link img {
	max-height: var(--mk-logo-h, 80px) !important;
}

/* Force hamburger toggle visible; hide horizontal mega bar at all widths */
.mk-header-main--hamburger .mk-mega {
	position: static;
	flex: 0 0 auto;
}

.mk-header-main--hamburger .mk-mega__toggle {
	display: inline-flex !important;
}

.mk-header-main--hamburger .mk-mega__bar {
	display: none !important;
}

/* Desktop drawer (mirrors theme mobile mnav) when hamburger mode is active */
.mk-header-main--hamburger .mk-mega__mnav {
	display: block !important;
	position: fixed;
	inset: 0;
	z-index: 100000;
	pointer-events: none;
}

.mk-header-main--hamburger .mk-mega__mnav[hidden] {
	display: none !important;
}

.mk-header-main--hamburger .mk-mega.is-mobile-open .mk-mega__mnav,
body.mk-mega-drawer-open .mk-mega__mnav {
	pointer-events: auto;
}

.mk-header-main--hamburger .mk-mega__mnav-overlay {
	position: absolute;
	inset: 0;
	margin: 0;
	padding: 0;
	border: 0;
	cursor: pointer;
	background: rgba(0, 0, 0, 0.5);
	opacity: 0;
	transition: opacity 0.28s ease;
}

.mk-header-main--hamburger .mk-mega.is-mobile-open .mk-mega__mnav-overlay,
body.mk-mega-drawer-open .mk-mega__mnav-overlay {
	opacity: 1;
}

.mk-header-main--hamburger .mk-mega__mnav-sheet {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: min(420px, 100vw);
	max-width: 100%;
	background: var(--mega-bg, #000000);
	color: var(--mk-header-menu, var(--mega-text, #faeec2));
	font-family: "Poppins", system-ui, sans-serif;
	box-shadow: 12px 0 40px rgba(0, 0, 0, 0.35);
	display: flex;
	flex-direction: column;
	transform: translateX(-100%);
	transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
	box-sizing: border-box;
	overflow: hidden;
}

.mk-header-main--hamburger .mk-mega.is-mobile-open .mk-mega__mnav-sheet,
body.mk-mega-drawer-open .mk-mega__mnav-sheet {
	transform: translateX(0);
}

@media screen and (max-width: 989px) {
	.mk-header-main--mobile-center-logo .mk-header-main__inner {
		display: grid;
		grid-template-columns: 48px 1fr auto;
		grid-template-areas: "menu logo tools";
		align-items: center;
		gap: 8px 10px;
	}

	.mk-header-main__tools {
		gap: 4px 8px;
		margin-left: 0;
		padding-left: 0;
	}

	.mk-header-main__account,
	.mk-header-main__search-toggle {
		width: 38px;
		height: 38px;
	}

	.mk-header-main--mobile-center-logo .mk-header-main__nav {
		grid-area: menu;
		justify-content: flex-start;
		flex: none;
		min-width: 0;
		order: unset;
	}

	.mk-header-main--mobile-center-logo .mk-header-main__brand {
		grid-area: logo;
		justify-self: center;
		align-items: center;
		text-align: center;
	}

	.mk-header-main--mobile-center-logo .mk-header-main__tools {
		grid-area: tools;
		justify-self: end;
	}

	.mk-header-main--mobile-center-logo .mk-header-main__brand {
		max-width: var(--mk-logo-w-mobile, 100px);
	}

	.mk-header-main:not(.mk-header-main--hamburger) .mk-header-main__logo,
	.mk-header-main:not(.mk-header-main--hamburger) .mk-header-main__brand img,
	.mk-header-main:not(.mk-header-main--hamburger) .mk-header-main__logo-link img {
		max-height: 48px !important;
	}

	/* Full-width mobile drawer under the whole header bar */
	.mk-header-main--mobile-center-logo .mk-mega {
		position: static;
	}

	.mk-header-main--mobile-center-logo .mk-mega__bar {
		position: absolute;
		left: 0;
		right: 0;
		top: 100%;
		width: 100%;
		box-sizing: border-box;
	}

	.mk-header-main__search {
		padding: 8px 10px;
	}
}

/* -------------------------------------------------------------------------- */
/* Studio product main (PH PDP)                                               */
/* -------------------------------------------------------------------------- */

.mk-studio-product-main.mk-pdp-ph {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 0 24px;
	box-sizing: border-box;
	color: #113a2d;
}

.mk-studio-product-main .mk-pdp-main {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px 36px;
	padding: 12px 0 20px;
	align-items: start;
}

@media screen and (min-width: 750px) {
	.mk-studio-product-main .mk-pdp-main {
		grid-template-columns: minmax(0, var(--mk-pdp-gal, 45%)) minmax(0, var(--mk-pdp-sum, 55%));
	}
	.mk-studio-product-main.mk-pdp--gallery-right .mk-pdp-main {
		grid-template-columns: minmax(0, var(--mk-pdp-sum, 55%)) minmax(0, var(--mk-pdp-gal, 45%));
	}
	.mk-studio-product-main.mk-pdp--gallery-right .mk-pdp-gallery {
		order: 2;
	}
	.mk-studio-product-main.mk-pdp--gallery-right .mk-pdp-summary {
		order: 1;
	}
}

.mk-studio-product-main .mk-pdp-gallery {
	min-width: 0;
	max-width: 100%;
	/* visible so magnifier / Photoswipe aren't clipped */
	overflow: visible;
	position: relative;
}

.mk-studio-product-main .mk-pdp-gallery .woocommerce-product-gallery {
	width: 100% !important;
	max-width: 100%;
	opacity: 1 !important;
	display: block !important; /* never flex the gallery root */
	position: relative;
}

/* Hide thumbnails when Studio toggle is off */
.mk-studio-product-main.mk-pdp--no-thumbs .flex-control-thumbs,
.mk-studio-product-main.mk-pdp--no-thumbs .woocommerce-product-gallery ol,
.mk-studio-product-main.mk-pdp--no-thumbs .flex-control-nav {
	display: none !important;
}

.mk-studio-product-main .woocommerce-product-gallery .flex-control-thumbs img.flex-active {
	border-color: var(--mk-scheme-button, var(--mk-black, #000));
}

.mk-studio-product-main.mk-pdp--no-qty .quantity {
	display: none !important;
}

.mk-studio-product-main.mk-pdp--no-pills .mk-variant-pills,
.mk-studio-product-main.mk-pdp--no-pills table.variations {
	display: none !important;
}

/* Product main: force pills layout even when body is sitewide dropdown */
.mk-studio-product-main.mk-pdp--variant-pills .mk-variant-pills {
	display: flex !important;
	flex-wrap: wrap;
	gap: 0.5rem;
}
.mk-studio-product-main.mk-pdp--variant-pills .mk-variant-control--pills select {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	clip: rect(0, 0, 0, 0) !important;
	opacity: 0 !important;
	pointer-events: none !important;
}
.mk-studio-product-main.mk-pdp--variant-dropdown .mk-variant-pills {
	display: none !important;
}
.mk-studio-product-main.mk-pdp--variant-dropdown select {
	position: static !important;
	width: 100% !important;
	max-width: 320px !important;
	opacity: 1 !important;
	clip: auto !important;
	height: auto !important;
}

.mk-studio-product-main.mk-pdp--no-atc .single_add_to_cart_button:not(.mk-buy-now-button) {
	display: none !important;
}

.mk-studio-product-main.mk-pdp--no-buy .mk-buy-now-button {
	display: none !important;
}

.mk-studio-product-main.mk-pdp--no-stock .mk-pdp-stock,
.mk-studio-product-main.mk-pdp--no-stock .stock {
	display: none !important;
}

.mk-studio-product-main .mk-pdp-summary {
	min-width: 0;
}

.mk-studio-product-main .mk-pdp-breadcrumbs {
	padding: 12px 0 8px;
	font-size: 12px;
}

.mk-studio-product-main .mk-pdp-stock {
	margin: 0 0 0.75rem;
	font-size: 14px;
	font-weight: 600;
}

/* Trust section (standalone) — colours follow section scheme via inherit + tokens */
.mk-product-trust .mk-trust-row__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	max-width: 1200px;
	margin: 0 auto;
	padding: 8px;
	text-align: center;
}

@media screen and (min-width: 750px) {
	.mk-product-trust .mk-trust-row__inner {
		grid-template-columns: repeat(3, 1fr);
		gap: 0;
	}
	.mk-product-trust .mk-trust-row__col {
		padding: 0 24px;
		border-right: 1px solid color-mix(in srgb, currentColor 14%, transparent);
	}
	.mk-product-trust .mk-trust-row__col:last-child {
		border-right: 0;
	}
}

.mk-product-trust .mk-trust-row__icon {
	width: 44px;
	height: 44px;
	margin: 0 auto 0.65rem;
	border-radius: 50%;
	/* Prefer scheme button tokens; fall back to current text / black */
	background: var(--mk-scheme-button, var(--mk-black, #000000));
	color: var(--mk-scheme-button-text, #faeec2);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
}

.mk-product-trust .mk-trust-row__heading {
	margin: 0 0 0.4rem;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: inherit;
}

.mk-product-trust .mk-trust-row__subtext {
	margin: 0 auto;
	max-width: 280px;
	font-size: 11px;
	line-height: 1.5;
	color: inherit;
	opacity: 0.85;
}

.mk-studio-layout {
	width: 100%;
}

/*
 * Section spacing from Studio schema.
 * - Outer margin on .mk-studio-section (gap between bands)
 * - Inner padding on .mk-studio-section__pad (space ABOVE title / BELOW content inside scheme bg)
 * flow-root stops margin collapse between adjacent sections.
 */
.mk-studio-section {
	box-sizing: border-box;
	width: 100%;
	display: flow-root;
	position: relative;
	/* No padding on shell — colour scheme bg extends full band; pad holds Studio padding */
	padding: 0 !important;
	margin-top: var(--mk-sec-mt, 0px) !important;
	margin-bottom: var(--mk-sec-mb, 0px) !important;
}

.mk-studio-section__pad {
	box-sizing: border-box;
	display: block;
	width: 100%;
	/* Inline style from PHP also sets longhand with !important; vars as fallback */
	padding-top: var(--mk-sec-pt, 16px) !important;
	padding-bottom: var(--mk-sec-pb, 16px) !important;
	padding-left: var(--mk-sec-pl, 0px) !important;
	padding-right: var(--mk-sec-pr, 0px) !important;
}

/* Fallback if an older render path omitted the pad wrapper */
.mk-studio-section:not(:has(> .mk-studio-section__pad)) {
	padding-top: var(--mk-sec-pt, 16px) !important;
	padding-bottom: var(--mk-sec-pb, 16px) !important;
	padding-left: var(--mk-sec-pl, 0px) !important;
	padding-right: var(--mk-sec-pr, 0px) !important;
}

/* Inner only handles horizontal content width — vertical spacing is on __pad. */
.mk-studio-section--boxed > .mk-studio-section__pad > .mk-studio-inner,
.mk-studio-section--boxed .mk-studio-inner {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 15px;
	padding-right: 15px;
	padding-top: 0;
	padding-bottom: 0;
	margin-top: 0;
	margin-bottom: 0;
	box-sizing: border-box;
}

.mk-studio-section--full > .mk-studio-section__pad > .mk-studio-inner,
.mk-studio-section--full .mk-studio-inner {
	width: 100%;
}

/* V3: independent content width — full section band + boxed inner (or reverse) */
.mk-studio-section.mk-studio-content--boxed > .mk-studio-section__pad > .mk-studio-inner,
.mk-studio-section.mk-studio-content--boxed .mk-studio-inner {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 15px;
	padding-right: 15px;
	box-sizing: border-box;
	width: 100%;
}

.mk-studio-section.mk-studio-content--full > .mk-studio-section__pad > .mk-studio-inner,
.mk-studio-section.mk-studio-content--full .mk-studio-inner {
	max-width: none;
	width: 100%;
	margin-left: 0;
	margin-right: 0;
}

/* Content block horizontal placement when boxed (pad sits between section and inner) */
.mk-studio-section.mk-studio-content-align--left.mk-studio-content--boxed > .mk-studio-section__pad > .mk-studio-inner,
.mk-studio-section.mk-studio-content-align--left.mk-studio-content--boxed .mk-studio-inner {
	margin-left: 0 !important;
	margin-right: auto !important;
}
.mk-studio-section.mk-studio-content-align--right.mk-studio-content--boxed > .mk-studio-section__pad > .mk-studio-inner,
.mk-studio-section.mk-studio-content-align--right.mk-studio-content--boxed .mk-studio-inner {
	margin-left: auto !important;
	margin-right: 0 !important;
}
.mk-studio-section.mk-studio-content-align--center.mk-studio-content--boxed > .mk-studio-section__pad > .mk-studio-inner,
.mk-studio-section.mk-studio-content-align--center.mk-studio-content--boxed .mk-studio-inner {
	margin-left: auto !important;
	margin-right: auto !important;
}

/* Text alignment for titles / copy / actions */
.mk-studio-section.mk-studio-text-align--left,
.mk-studio-section.mk-studio-text-align--left .mk-studio-inner {
	text-align: left;
}
.mk-studio-section.mk-studio-text-align--center,
.mk-studio-section.mk-studio-text-align--center .mk-studio-inner {
	text-align: center;
}
.mk-studio-section.mk-studio-text-align--right,
.mk-studio-section.mk-studio-text-align--right .mk-studio-inner {
	text-align: right;
}
.mk-studio-section.mk-studio-text-align--center .tn-actions,
.mk-studio-section.mk-studio-text-align--center .mk-studio-actions,
.mk-studio-section.mk-studio-text-align--center .mk-pdp-actions {
	justify-content: center;
}
.mk-studio-section.mk-studio-text-align--right .tn-actions,
.mk-studio-section.mk-studio-text-align--right .mk-studio-actions {
	justify-content: flex-end;
}

/* Influencer / image-link grid */
.mk-studio-image-link-grid__title {
	margin: 0 0 1rem;
}
.mk-studio-image-link-grid__grid {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(var(--mk-ilg-m, 2), minmax(0, 1fr));
}
@media (min-width: 768px) {
	.mk-studio-image-link-grid__grid {
		grid-template-columns: repeat(var(--mk-ilg-d, 2), minmax(0, 1fr));
		gap: 16px;
	}
}
.mk-studio-image-link-grid__card {
	display: block;
	text-decoration: none;
	color: inherit;
	border-radius: 10px;
	overflow: hidden;
	background: rgba(0, 0, 0, 0.03);
}
.mk-studio-image-link-grid__media {
	aspect-ratio: 1;
	background: #f3f3f3;
	overflow: hidden;
}
.mk-studio-image-link-grid__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.mk-studio-image-link-grid__label {
	display: block;
	padding: 0.65rem 0.25rem 0.15rem;
	font-weight: 600;
	font-size: 0.95rem;
}
.mk-studio-image-link-grid__caption {
	display: block;
	padding: 0 0.25rem 0.7rem;
	font-size: 0.8rem;
	font-weight: 500;
	opacity: 0.78;
}
.mk-studio-image-link-grid__more {
	display: inline-block;
	margin-top: 0.85rem;
	font-weight: 600;
}

/* Password / coming-soon holding page: product tiles sit on the band, not in cards. */
.mk-studio-layout-password .mk-studio-image-link-grid__card,
body.mk-studio-password .mk-studio-image-link-grid__card {
	text-align: center;
	background: transparent;
	border-radius: 0;
}
.mk-studio-layout-password .mk-studio-image-link-grid__media,
body.mk-studio-password .mk-studio-image-link-grid__media {
	aspect-ratio: auto;
	background: transparent;
	min-height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.mk-studio-layout-password .mk-studio-image-link-grid__media img,
body.mk-studio-password .mk-studio-image-link-grid__media img {
	object-fit: contain;
	max-height: 160px;
	width: auto;
	margin: 0 auto;
}

/*
 * Colour schemes — do NOT hardcode palette here.
 * Live colours come from <style id="mk-studio-theme-settings"> (Theme panel Save).
 * Fallbacks below only apply if that block is missing.
 */
/* Canonical schemes (colours overridden live by Theme Settings CSS). */
.mk-studio-section.mk-studio-scheme-white,
.mk-studio-scheme-white {
	background-color: var(--mk-scheme-white-bg, #ffffff);
	color: var(--mk-scheme-white-text, #000000);
}

.mk-studio-section.mk-studio-scheme-black,
.mk-studio-scheme-black {
	background-color: var(--mk-scheme-black-bg, #000000);
	color: var(--mk-scheme-black-text, #ffffff);
}

.mk-studio-section.mk-studio-scheme-red,
.mk-studio-scheme-red {
	background-color: var(--mk-scheme-red-bg, #ec1c24);
	color: var(--mk-scheme-red-text, #ffffff);
}

.mk-studio-section.mk-studio-scheme-bright,
.mk-studio-scheme-bright {
	background-color: var(--mk-scheme-bright-bg, #fff100);
	color: var(--mk-scheme-bright-text, #ff40b4);
}

/* Legacy class names (saved layouts) → same as new schemes */
.mk-studio-section.mk-studio-scheme-forest,
.mk-studio-scheme-forest,
.mk-studio-section.mk-studio-scheme-inverse,
.mk-studio-scheme-inverse {
	background-color: var(--mk-scheme-black-bg, #000000);
	color: var(--mk-scheme-black-text, #ffffff);
}

.mk-studio-section.mk-studio-scheme-cream,
.mk-studio-scheme-cream {
	background-color: var(--mk-scheme-white-bg, #ffffff);
	color: var(--mk-scheme-white-text, #000000);
}

.mk-studio-section.mk-studio-scheme-lime,
.mk-studio-scheme-lime {
	background-color: var(--mk-scheme-red-bg, #ec1c24);
	color: var(--mk-scheme-red-text, #ffffff);
}

/* Default = follow Active site scheme CSS variables */
.mk-studio-section.mk-studio-scheme-default,
.mk-studio-scheme-default {
	background-color: var(--mk-scheme-bg, transparent);
	color: var(--mk-scheme-text, inherit);
}

/*
 * Inside any scheme section, force nested text/chrome to follow section colour.
 * Theme CSS often sets #113a2d !important on titles/prices — that was killing scheme changes.
 */
.mk-studio-section[class*="mk-studio-scheme-"] h1,
.mk-studio-section[class*="mk-studio-scheme-"] h2,
.mk-studio-section[class*="mk-studio-scheme-"] h3,
.mk-studio-section[class*="mk-studio-scheme-"] h4,
.mk-studio-section[class*="mk-studio-scheme-"] p,
.mk-studio-section[class*="mk-studio-scheme-"] li,
.mk-studio-section[class*="mk-studio-scheme-"] label,
.mk-studio-section[class*="mk-studio-scheme-"] .mk-pdp-title,
.mk-studio-section[class*="mk-studio-scheme-"] .product_title,
.mk-studio-section[class*="mk-studio-scheme-"] .price,
.mk-studio-section[class*="mk-studio-scheme-"] .mk-classic-price,
.mk-studio-section[class*="mk-studio-scheme-"] .mk-product-brand,
.mk-studio-section[class*="mk-studio-scheme-"] .mk-pdp-excerpt,
.mk-studio-section[class*="mk-studio-scheme-"] .mk-pdp-stock,
.mk-studio-section[class*="mk-studio-scheme-"] .mk-pdp-meta,
.mk-studio-section[class*="mk-studio-scheme-"] .mk-pdp-breadcrumbs,
.mk-studio-section[class*="mk-studio-scheme-"] .mk-pdp-breadcrumbs a,
.mk-studio-section[class*="mk-studio-scheme-"] .mk-trust-row__heading,
.mk-studio-section[class*="mk-studio-scheme-"] .mk-trust-row__subtext,
.mk-studio-section[class*="mk-studio-scheme-"] .mk-trust-row__col,
.mk-studio-section[class*="mk-studio-scheme-"] .mk-related-carousel__title,
.mk-studio-section[class*="mk-studio-scheme-"] .stock {
	color: inherit !important;
}

/* Trust icon chips: use section button palette (not fixed black/cream) */
.mk-studio-section[class*="mk-studio-scheme-"] .mk-trust-row__icon,
.mk-studio-section[class*="mk-studio-scheme-"] .mk-product-trust .mk-trust-row__icon {
	background: var(--mk-scheme-button, currentColor) !important;
	color: var(--mk-scheme-button-text, var(--mk-scheme-bg, #ffffff)) !important;
}

.mk-studio-section[class*="mk-studio-scheme-"] .mk-trust-row,
.mk-studio-section[class*="mk-studio-scheme-"] .mk-trust-row__col {
	border-color: color-mix(in srgb, currentColor 16%, transparent) !important;
}

.mk-studio-section[class*="mk-studio-scheme-"] a {
	color: inherit;
}

/* Collection toolbar inherits scheme (overrides hard-coded forest chrome) */
.mk-studio-section[class*="mk-studio-scheme-"] .mk-collection-toolbar,
.mk-studio-section[class*="mk-studio-scheme-"] .mk-collection-toolbar__count,
.mk-studio-section[class*="mk-studio-scheme-"] .mk-collection-toolbar__label,
.mk-studio-section[class*="mk-studio-scheme-"] .mk-collection-toolbar__filter-btn,
.mk-studio-section[class*="mk-studio-scheme-"] .mk-collection-toolbar__search-btn {
	color: inherit !important;
}

.mk-studio-section[class*="mk-studio-scheme-"] .mk-collection-toolbar select,
.mk-studio-section[class*="mk-studio-scheme-"] .mk-collection-toolbar input[type="search"] {
	color: var(--mk-scheme-text) !important;
	background-color: color-mix(in srgb, var(--mk-scheme-bg) 82%, #000 18%) !important;
	border-color: color-mix(in srgb, var(--mk-scheme-text) 35%, transparent) !important;
}

.mk-studio-section[class*="mk-studio-scheme-"] .mk-collection-toolbar__filter-badge {
	background: var(--mk-scheme-button) !important;
	color: var(--mk-scheme-button-text) !important;
}

.mk-collection-toolbar-wrap.mk-studio-inner {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 15px;
	padding-right: 15px;
	box-sizing: border-box;
}

/* Device visibility */
@media screen and (max-width: 749px) {
	.mk-studio-hide-mobile {
		display: none !important;
	}
}

@media screen and (min-width: 750px) {
	.mk-studio-hide-desktop {
		display: none !important;
	}
}

/* Image banner — media fills the section; scheme must not paint letterbox bars */
.mk-studio-section--image_banner {
	/* Prefer edge-to-edge media; user can still raise padding in settings */
	--mk-sec-pt: var(--mk-sec-pt, 0px);
	--mk-sec-pb: var(--mk-sec-pb, 0px);
}

.mk-studio-section--image_banner.mk-studio-section[class*="mk-studio-scheme-"]:has(.mk-studio-banner--has-image),
.mk-studio-section--image_banner:has(.mk-studio-banner--has-image) {
	/* Kill scheme fill on the shell so padding never shows as black/cream strips */
	background-color: transparent !important;
	background-image: none !important;
}

.mk-studio-banner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	/* Fixed-height mode fills the band (Shopify-style). Adapt mode uses <img> below. */
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-color: transparent;
	color: #ffffff;
	text-align: center;
	overflow: hidden;
}

/* Fixed min-height mode (Shopify “large / medium” style) */
.mk-studio-banner--fixed {
	min-height: var(--mk-banner-h-m, 240px);
}

@media screen and (min-width: 990px) {
	.mk-studio-banner--fixed {
		min-height: var(--mk-banner-h-d, 360px);
	}
}

/*
 * Full viewport hero (Nike-style home first screen).
 * Media covers the band; text overlays; shopper scrolls for the next Studio sections.
 */
.mk-studio-section--image_banner:has(.mk-studio-banner--viewport) {
	/* Edge-to-edge first screen — no section pad letterboxing */
	--mk-sec-pt: 0px;
	--mk-sec-pb: 0px;
}

.mk-studio-banner--viewport {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	min-height: 100svh;
	min-height: 100dvh;
	width: 100%;
	overflow: hidden;
	background-color: #0a0a0a;
	box-sizing: border-box;
}

.mk-studio-banner--viewport .mk-studio-banner__media {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	background: #111;
}

.mk-studio-banner--viewport .mk-studio-banner__video,
.mk-studio-banner--viewport .mk-studio-banner__img--cover {
	width: 100%;
	height: 100%;
	min-height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.mk-studio-banner--viewport .mk-studio-banner__video-frame {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	padding-bottom: 0;
}

.mk-studio-banner--viewport .mk-studio-banner__video-frame iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.mk-studio-banner--viewport .mk-studio-banner__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.mk-studio-banner--viewport .mk-studio-banner__content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	box-sizing: border-box;
	width: 100%;
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
	padding: 48px 20px 72px;
	pointer-events: none;
	flex: 1 1 auto;
}

.mk-studio-banner--viewport .mk-studio-banner__content a {
	pointer-events: auto;
}

.mk-studio-banner--viewport.mk-studio-banner--valign-top .mk-studio-banner__content {
	justify-content: flex-start;
	padding-top: 72px;
}

.mk-studio-banner--viewport.mk-studio-banner--valign-center .mk-studio-banner__content {
	justify-content: center;
}

.mk-studio-banner--viewport.mk-studio-banner--valign-bottom .mk-studio-banner__content {
	justify-content: flex-end;
	padding-bottom: 88px;
}

.mk-studio-banner--viewport.mk-studio-banner--align-left .mk-studio-banner__content {
	align-items: flex-start;
	text-align: left;
	margin-left: 0;
	margin-right: auto;
}

.mk-studio-banner--viewport.mk-studio-banner--align-center .mk-studio-banner__content {
	align-items: center;
	text-align: center;
}

.mk-studio-banner--viewport.mk-studio-banner--align-right .mk-studio-banner__content {
	align-items: flex-end;
	text-align: right;
	margin-left: auto;
	margin-right: 0;
}

/* Scroll cue — clickable; jumps to the next Studio section */
.mk-studio-banner__cue {
	position: absolute;
	left: 50%;
	bottom: 18px;
	z-index: 4;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.28);
	cursor: pointer;
	pointer-events: auto;
	opacity: 0.92;
	-webkit-tap-highlight-color: transparent;
	transition: background 0.15s ease, opacity 0.15s ease, transform 0.15s ease;
}

.mk-studio-banner__cue:hover,
.mk-studio-banner__cue:focus-visible {
	background: rgba(0, 0, 0, 0.45);
	opacity: 1;
	outline: 2px solid rgba(255, 255, 255, 0.7);
	outline-offset: 2px;
}

.mk-studio-banner__cue:active {
	transform: translateX(-50%) scale(0.96);
}

.mk-studio-banner__cue-chevron {
	display: block;
	width: 14px;
	height: 14px;
	margin-top: -4px;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(45deg);
	animation: mk-banner-cue-bob 1.6s ease-in-out infinite;
	filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.45));
	pointer-events: none;
}

@keyframes mk-banner-cue-bob {
	0%,
	100% {
		transform: rotate(45deg) translateY(0);
		opacity: 0.55;
	}
	50% {
		transform: rotate(45deg) translateY(6px);
		opacity: 1;
	}
}

/* PWA app chrome: hero fills the visual screen between top bar + tab bar */
html.mk-pwa-app-chrome .mk-studio-banner--viewport {
	/* Match app-chrome body padding: top 56+safe, bottom 112+safe */
	min-height: calc(
		100dvh - 56px - 112px - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px)
	);
}

html.mk-pwa-app-chrome .mk-studio-banner--viewport.mk-studio-banner--valign-bottom .mk-studio-banner__content {
	padding-bottom: 56px;
}

html.mk-pwa-app-chrome .mk-studio-banner__cue {
	bottom: 12px;
}

/*
 * Adapt to image — full width, height follows the file’s aspect ratio (all breakpoints).
 * No object-fit crop. Optional max-height only scales the whole image down
 * proportionally (width auto + max-width 100%) so desktop never letterboxes.
 */
.mk-studio-banner--adapt {
	display: block;
	min-height: 0;
	line-height: 0;
	text-align: center;
}

.mk-studio-banner__img {
	display: block;
	width: 100%;
	height: auto;
	max-width: 100%;
	margin: 0 auto;
	vertical-align: middle;
	/* No max-height by default — pure adapt on mobile + desktop */
	max-height: none;
	object-fit: unset;
}

/* Only when Studio sets --mk-banner-max-*: scale whole image, keep proportions */
.mk-studio-banner--adapt.mk-studio-banner--has-max .mk-studio-banner__img {
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: var(--mk-banner-max-m, none);
	object-fit: contain;
}

@media screen and (min-width: 990px) {
	.mk-studio-banner--adapt.mk-studio-banner--has-max .mk-studio-banner__img {
		max-height: var(--mk-banner-max-d, none);
	}
}

.mk-studio-banner--adapt .mk-studio-banner__overlay,
.mk-studio-banner--adapt .mk-studio-banner__content {
	position: absolute;
	inset: 0;
	line-height: normal;
}

.mk-studio-banner--adapt .mk-studio-banner__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	z-index: 2;
	box-sizing: border-box;
	/* inset:0 + max-width without auto margins parks the box on the left on desktop */
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.mk-studio-banner--adapt.mk-studio-banner--align-left .mk-studio-banner__content {
	align-items: flex-start;
	margin-left: 0;
	margin-right: auto;
	text-align: left;
}

.mk-studio-banner--adapt.mk-studio-banner--align-right .mk-studio-banner__content {
	align-items: flex-end;
	margin-left: auto;
	margin-right: 0;
	text-align: right;
}

.mk-studio-banner__overlay {
	position: absolute;
	inset: 0;
	/* Unitless CSS var (0–90); 0 = fully transparent */
	background: rgba(0, 0, 0, calc(var(--mk-banner-overlay, 45) * 0.01));
	pointer-events: none;
	z-index: 1;
	display: none;
}

.mk-studio-banner--has-overlay .mk-studio-banner__overlay {
	display: block;
}

.mk-studio-banner--no-image {
	background-color: var(--mk-scheme-bg, #000000);
	color: var(--mk-scheme-text, #ffffff);
	min-height: var(--mk-banner-h-m, 220px);
}

.mk-studio-banner--has-image {
	/* Never let scheme paint under/around the photo */
	background-color: transparent !important;
}

@media screen and (min-width: 990px) {
	.mk-studio-banner--no-image {
		min-height: var(--mk-banner-h-d, 320px);
	}
}

.mk-studio-banner__content {
	position: relative;
	z-index: 2;
	padding: 32px 15px;
	max-width: 800px;
	color: inherit;
}

.mk-studio-banner--align-left .mk-studio-banner__content {
	text-align: left;
	margin-right: auto;
	margin-left: 0;
}

.mk-studio-banner--align-right .mk-studio-banner__content {
	text-align: right;
	margin-left: auto;
	margin-right: 0;
}

.mk-studio-banner__heading {
	margin: 0 0 12px;
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: inherit;
}

.mk-studio-banner__sub {
	margin: 0 0 18px;
	font-size: 1rem;
	opacity: 0.92;
	color: inherit;
}

/* ---- Video media inside banner ---- */
.mk-studio-banner__media {
	position: relative;
	width: 100%;
	line-height: 0;
	background: #111;
	z-index: 0;
	overflow: hidden;
}

.mk-studio-banner__video {
	display: block;
	width: 100%;
	height: auto;
	max-width: 100%;
	vertical-align: middle;
	object-fit: cover;
	object-position: center;
	background: #111;
	/* Avoid flash of empty black before first frame */
	min-height: 200px;
}

/* Adapt mode: keep a sensible band until metadata loads */
.mk-studio-banner--adapt.mk-studio-banner--media-video .mk-studio-banner__media {
	min-height: min(56vw, 420px);
	background: #111;
}

.mk-studio-banner--adapt.mk-studio-banner--media-video .mk-studio-banner__video {
	min-height: min(56vw, 420px);
	width: 100%;
	height: auto;
	object-fit: cover;
}

/* Fixed-height video: fill the band like a cover image */
.mk-studio-banner--fixed.mk-studio-banner--media-video {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: #111;
}

.mk-studio-banner--fixed.mk-studio-banner--media-video .mk-studio-banner__media {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.mk-studio-banner--fixed.mk-studio-banner--media-video .mk-studio-banner__video {
	width: 100%;
	height: 100%;
	min-height: 100%;
	object-fit: cover;
	object-position: center;
}

/* When autoplay is blocked we re-enable controls — keep them usable above overlay */
.mk-studio-banner__video.is-autoplay-blocked {
	/* controls sit on the video; overlay must not steal all pointer events on the media */
}

.mk-studio-banner--has-overlay .mk-studio-banner__media {
	/* overlay is a sibling after media — video stays visible underneath */
	z-index: 0;
}

.mk-studio-banner--has-overlay .mk-studio-banner__overlay {
	z-index: 1;
	pointer-events: none;
}

.mk-studio-banner--has-overlay .mk-studio-banner__content {
	z-index: 2;
}

/* Allow controls clicks when autoplay failed (overlay would block them) */
.mk-studio-banner--has-overlay .mk-studio-banner__video[controls],
.mk-studio-banner--has-overlay .mk-studio-banner__video.is-autoplay-blocked {
	position: relative;
	z-index: 3;
	pointer-events: auto;
}

.mk-studio-banner__video-frame {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%; /* 16:9 for YT/Vimeo */
	height: 0;
	overflow: hidden;
	background: #000;
}

.mk-studio-banner__video-frame iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.mk-studio-banner--fixed.mk-studio-banner--media-video .mk-studio-banner__video-frame {
	padding-bottom: 0;
	height: 100%;
}

/* Adapt + video: natural width, optional max height */
.mk-studio-banner--adapt.mk-studio-banner--media-video {
	display: block;
	min-height: 0;
	line-height: 0;
}

.mk-studio-banner--adapt.mk-studio-banner--media-video .mk-studio-banner__media {
	position: relative;
}

.mk-studio-banner--adapt.mk-studio-banner--has-max.mk-studio-banner--media-video .mk-studio-banner__video {
	max-height: var(--mk-banner-max-m, none);
	width: 100%;
	object-fit: cover;
}

@media screen and (min-width: 990px) {
	.mk-studio-banner--adapt.mk-studio-banner--has-max.mk-studio-banner--media-video .mk-studio-banner__video {
		max-height: var(--mk-banner-max-d, none);
	}
}

/* Overlay mode + video: content absolute over media (same as image adapt) */
.mk-studio-banner--overlay.mk-studio-banner--media-video.mk-studio-banner--adapt {
	position: relative;
}

.mk-studio-banner--overlay.mk-studio-banner--media-video.mk-studio-banner--adapt .mk-studio-banner__overlay,
.mk-studio-banner--overlay.mk-studio-banner--media-video.mk-studio-banner--adapt .mk-studio-banner__content,
.mk-studio-banner--overlay.mk-studio-banner--media-video.mk-studio-banner--fixed .mk-studio-banner__content {
	position: absolute;
	inset: 0;
	line-height: normal;
	z-index: 2;
}

.mk-studio-banner--overlay.mk-studio-banner--media-video .mk-studio-banner__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	pointer-events: none; /* let clicks pass to video controls if shown */
}

.mk-studio-banner--overlay.mk-studio-banner--media-video .mk-studio-banner__content a {
	pointer-events: auto;
}

.mk-studio-banner--overlay.mk-studio-banner--media-video.mk-studio-banner--align-left .mk-studio-banner__content {
	align-items: flex-start;
	text-align: left;
}

.mk-studio-banner--overlay.mk-studio-banner--media-video.mk-studio-banner--align-right .mk-studio-banner__content {
	align-items: flex-end;
	text-align: right;
}

/* Stacked: media on top, text block below (not over the video) */
.mk-studio-banner--stack {
	/* media block only — content rendered after in .mk-studio-banner-stack-content */
}

.mk-studio-banner--stack.mk-studio-banner--adapt .mk-studio-banner__content {
	/* no absolute content inside stack media box */
	display: none;
}

.mk-studio-banner-stack-content {
	width: 100%;
	box-sizing: border-box;
	padding: 28px 15px 32px;
	background: var(--mk-scheme-bg, #ffffff);
	color: var(--mk-scheme-text, #121212);
}

.mk-studio-banner-stack-content .mk-studio-banner__content {
	position: relative;
	max-width: 800px;
	margin: 0 auto;
	padding: 0;
	color: inherit;
}

.mk-studio-banner-stack-content.mk-studio-banner--align-left .mk-studio-banner__content {
	text-align: left;
	margin-left: 0;
	margin-right: auto;
}

.mk-studio-banner-stack-content.mk-studio-banner--align-center .mk-studio-banner__content {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.mk-studio-banner-stack-content.mk-studio-banner--align-right .mk-studio-banner__content {
	text-align: right;
	margin-left: auto;
	margin-right: 0;
}

.mk-studio-banner-stack-content .mk-studio-banner__heading,
.mk-studio-banner-stack-content .mk-studio-banner__sub {
	color: inherit;
}

.mk-studio-banner__btn {
	display: inline-block;
	padding: 12px 22px;
	background: var(--mk-scheme-button, #faeec2);
	color: var(--mk-scheme-button-text, #113a2d);
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 4px;
}

.mk-studio-banner__btn:hover {
	filter: brightness(1.08);
}

/*
 * Scheme on image banner:
 * - With a photo: keep media clean (no scheme fill); button still uses scheme accents.
 * - No image: solid scheme block is correct.
 */
.mk-studio-section[class*="mk-studio-scheme-"] .mk-studio-banner--no-image {
	background-color: var(--mk-scheme-bg) !important;
	color: var(--mk-scheme-text) !important;
}

.mk-studio-section[class*="mk-studio-scheme-"] .mk-studio-banner--has-image {
	background-color: transparent !important;
	/* Light text over photos by default (readable without heavy overlay) */
	color: #ffffff;
}

.mk-studio-section[class*="mk-studio-scheme-"] .mk-studio-banner__heading,
.mk-studio-section[class*="mk-studio-scheme-"] .mk-studio-banner__sub {
	color: inherit !important;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.mk-studio-section[class*="mk-studio-scheme-"] .mk-studio-banner__btn {
	background: var(--mk-scheme-button) !important;
	color: var(--mk-scheme-button-text) !important;
}

/*
 * Rich text v1.24 — self-contained Shopify-style band.
 * Padding / scheme / type sizes are emitted as scoped CSS on #mk-sec-{id}.mk-rich
 * (see section-rich-text.php). Do NOT force transparent or zero padding here.
 */
.mk-rich {
	box-sizing: border-box;
	width: 100%;
	display: block;
	/* Fallback if scoped style fails to print */
	padding-top: 40px;
	padding-bottom: 52px;
}
.mk-rich.mk-rich--black {
	background-color: #000000;
	color: #ffffff;
}
.mk-rich.mk-rich--white {
	background-color: #ffffff;
	color: #000000;
}
.mk-rich.mk-rich--red {
	background-color: #ec1c24;
	color: #ffffff;
}
.mk-rich.mk-rich--bright {
	background-color: #fff100;
	color: #ff40b4;
}
.mk-rich__wrapper {
	display: flex;
	justify-content: center;
	width: 100%;
	box-sizing: border-box;
	padding-left: 15px;
	padding-right: 15px;
}
.mk-rich__blocks {
	width: 100%;
	max-width: 720px;
	box-sizing: border-box;
}
.mk-rich__heading {
	margin: 0 0 1rem;
	font-weight: 700;
	line-height: 1.25;
	color: inherit;
}
.mk-rich__text {
	line-height: 1.65;
	color: inherit;
}
.mk-rich__text p {
	margin: 0 0 0.85em;
	color: inherit;
}
.mk-rich__text p:last-child {
	margin-bottom: 0;
}
.mk-rich__text h2,
.mk-rich__text h3,
.mk-rich__text h4 {
	font-weight: 700;
	line-height: 1.3;
	color: inherit;
	margin: 1.35em 0 0.45em;
}
.mk-rich__text h2 { font-size: 1.35em; }
.mk-rich__text h3 { font-size: 1.18em; }
.mk-rich__text h4 { font-size: 1.05em; }
.mk-rich__text h2:first-child,
.mk-rich__text h3:first-child,
.mk-rich__text h4:first-child {
	margin-top: 0;
}
.mk-rich__text ul,
.mk-rich__text ol {
	margin: 0 0 0.85em;
	padding-left: 1.35em;
}

.mk-collection-hero__description {
	width: 100%;
	line-height: 1.65;
}

.mk-collection-hero__description p {
	margin: 0 0 0.85em;
}

.mk-collection-hero__description p:last-child {
	margin-bottom: 0;
}

.mk-collection-hero__description h2,
.mk-collection-hero__description h3,
.mk-collection-hero__description h4 {
	font-weight: 700;
	line-height: 1.3;
	margin: 1.35em 0 0.45em;
}

.mk-collection-hero__description h2 { font-size: 1.5rem; }
.mk-collection-hero__description h3 { font-size: 1.2rem; }
.mk-collection-hero__description h4 { font-size: 1.05rem; }

.mk-collection-hero__description h2:first-child,
.mk-collection-hero__description h3:first-child,
.mk-collection-hero__description h4:first-child {
	margin-top: 0;
}

.mk-collection-hero__description ul,
.mk-collection-hero__description ol {
	margin: 0 0 0.85em;
	padding-left: 1.35em;
}
.mk-rich__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.5rem;
}
.mk-rich__btn {
	display: inline-flex;
	align-items: center;
	padding: 10px 18px;
	border-radius: 8px;
	font-weight: 600;
	text-decoration: none;
}

/* Legacy class names still used by older layouts — keep harmless */
.mk-studio-rich__heading { color: inherit; }
.mk-studio-rich__body { color: inherit; }

.mk-studio-rich__btn,
.mk-studio-multicol__btn,
.mk-studio-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 18px;
	border-radius: 8px;
	background: var(--mk-scheme-button, #113a2d);
	color: var(--mk-scheme-button-text, #fff);
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	margin-top: 12px;
}

.mk-studio-rich__btn:hover,
.mk-studio-multicol__btn:hover {
	opacity: 0.92;
	color: var(--mk-scheme-button-text, #fff);
}

.mk-studio-multicol__img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	display: block;
	margin-bottom: 10px;
}

/* Popular categories fallback */
.mk-studio-popcats__title {
	margin: 0 0 16px;
	font-size: 1.25rem;
	font-weight: 700;
}

.mk-studio-popcats__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

@media screen and (min-width: 750px) {
	.mk-studio-popcats__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media screen and (min-width: 990px) {
	.mk-studio-popcats__grid {
		grid-template-columns: repeat(6, minmax(0, 1fr));
	}
}

.mk-studio-popcats__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	text-decoration: none;
	color: inherit;
	padding: 10px;
	border-radius: 6px;
	background: rgba(0, 0, 0, 0.06);
}

.mk-studio-popcats__img {
	width: 100%;
	height: auto;
	max-height: 120px;
	object-fit: contain;
	margin-bottom: 8px;
}

.mk-studio-popcats__name {
	font-size: 13px;
	font-weight: 600;
}

/* Multi column */
.mk-studio-multicol {
	display: grid;
	/* Mobile-first single/few cols */
	grid-template-columns: repeat(var(--mk-mc-m, 1), minmax(0, 1fr));
	gap: 20px;
	width: 100%;
}

/* Studio preview iframe is often 700–900px — use desktop columns earlier */
@media screen and (min-width: 700px) {
	.mk-studio-multicol {
		grid-template-columns: repeat(var(--mk-mc-d, 3), minmax(0, 1fr));
	}
}

/* Force desktop column count inside Studio preview (even if iframe is narrow) */
html.mk-studio-preview .mk-studio-multicol,
body.mk-studio-preview .mk-studio-multicol {
	grid-template-columns: repeat(var(--mk-mc-d, 3), minmax(0, 1fr)) !important;
}

.mk-studio-multicol__cell {
	min-width: 0;
}

.mk-studio-multicol__img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 6px;
	margin-bottom: 10px;
}

.mk-studio-multicol__heading {
	margin: 0 0 8px;
	font-size: 1.1rem;
	font-weight: 700;
}

/* Spacer */
.mk-studio-section--spacer {
	height: var(--mk-spacer-m, 24px);
	padding: 0 !important;
}

@media screen and (min-width: 990px) {
	.mk-studio-section--spacer {
		height: var(--mk-spacer-d, 40px);
	}
}

.mk-studio-empty {
	padding: 16px;
	background: #f7f3e8;
	color: #113a2d;
	border-radius: 4px;
}

/* -------------------------------------------------------------------------- */
/* Image with text                                                            */
/* -------------------------------------------------------------------------- */

.mk-studio-iwt {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	align-items: center;
}

@media screen and (min-width: 750px) {
	.mk-studio-iwt {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}

	.mk-studio-iwt--right .mk-studio-iwt__media {
		order: 2;
	}

	.mk-studio-iwt--right .mk-studio-iwt__content {
		order: 1;
	}
}

.mk-studio-iwt__media img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 8px;
	object-fit: cover;
}

.mk-studio-iwt__heading {
	margin: 0 0 12px;
	font-size: 1.5rem;
	font-weight: 700;
	color: inherit;
}

.mk-studio-iwt__body {
	font-size: 1rem;
	line-height: 1.6;
	color: inherit;
}

/* -------------------------------------------------------------------------- */
/* Brand nav grid — fluid columns + accordion (Popular categories pattern)   */
/* Header padding matches .mk-popular-categories__summary exactly.            */
/* -------------------------------------------------------------------------- */

.mk-studio-brand-nav {
	width: 100%;
	box-sizing: border-box;
	/* Defaults if no inline vars — keep in sync with popular-categories */
	--mk-bn-d: 3;
	--mk-bn-m: 2;
	--mk-bn-gap: 12px;
	--mk-bn-card-pad: 16px;
	--mk-bn-body-pad: 12px;
	--mk-bn-header-pad-y: 16px;
	--mk-bn-title-size: 1.25rem;
	--mk-bn-title-weight: 600;
	--mk-bn-label-size: 0.9rem;
	--mk-bn-label-weight: 600;
	--mk-bn-img-fit: contain;
	--mk-bn-header-bg: #000000;
	--mk-bn-header-fg: #ffffff;
	--mk-bn-body-bg: #ffffff;
	--mk-bn-card-bg: #f3f3f3;
	--mk-bn-fg: #121212;
}

.mk-studio-brand-nav__details {
	border: 0;
	margin: 0;
	width: 100%;
}

/* Same formula as .mk-popular-categories__summary */
.mk-studio-brand-nav__summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	list-style: none;
	cursor: pointer;
	/* top/bottom from control; left 1.25rem / right 1rem = Popular categories */
	padding: var(--mk-bn-header-pad-y) 1rem var(--mk-bn-header-pad-y) 1.25rem;
	user-select: none;
	letter-spacing: 0.04em;
	background-color: var(--mk-bn-header-bg) !important;
	color: var(--mk-bn-header-fg) !important;
	font-size: var(--mk-bn-title-size) !important;
	font-weight: var(--mk-bn-title-weight) !important;
	box-sizing: border-box;
	width: 100%;
	margin: 0;
}

.mk-studio-brand-nav__summary::-webkit-details-marker {
	display: none;
}

.mk-studio-brand-nav__title {
	display: block;
	margin: 0;
	color: inherit !important;
	font-size: inherit;
	font-weight: inherit;
	text-align: left;
	line-height: 1.25;
	flex: 1;
	min-width: 0;
}

/* Open / closed SVG toggle — same size/margins as Popular categories */
.mk-studio-brand-nav__toggle {
	display: block;
	flex-shrink: 0;
	width: 2.75rem;
	height: 1.65rem;
	margin-right: 0.15rem;
	position: relative;
	line-height: 0;
}

.mk-studio-brand-nav__icon {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center right;
}

.mk-studio-brand-nav__icon--open {
	display: none;
}

.mk-studio-brand-nav__details[open] .mk-studio-brand-nav__icon--closed {
	display: none;
}

.mk-studio-brand-nav__details[open] .mk-studio-brand-nav__icon--open {
	display: block;
}

/* Fallback chevron if theme SVGs missing */
.mk-studio-brand-nav__chevron {
	display: block;
	width: 0.55rem;
	height: 0.55rem;
	margin-right: 0.5rem;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	transition: transform 0.2s ease;
	flex-shrink: 0;
	color: inherit;
}

.mk-studio-brand-nav__details[open] .mk-studio-brand-nav__chevron {
	transform: rotate(-135deg);
	margin-top: 0.25rem;
}

.mk-studio-brand-nav__body {
	padding: var(--mk-bn-body-pad);
	background-color: var(--mk-bn-body-bg) !important;
	color: var(--mk-bn-fg) !important;
	box-sizing: border-box;
	width: 100%;
}

/* Mobile: match popular-categories left pad (1rem both sides) */
@media screen and (max-width: 749px) {
	.mk-studio-brand-nav__summary {
		padding-left: 1rem;
	}
}

/* Fluid equal columns — tiles grow/shrink with page width & column count */
.mk-studio-brand-nav__grid {
	display: grid;
	grid-template-columns: repeat(var(--mk-bn-m, 2), minmax(0, 1fr));
	gap: var(--mk-bn-gap, 12px);
	width: 100%;
	box-sizing: border-box;
}

@media screen and (min-width: 750px) {
	.mk-studio-brand-nav__grid {
		grid-template-columns: repeat(var(--mk-bn-d, 3), minmax(0, 1fr));
	}
}

.mk-studio-brand-nav__card {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: flex-start;
	gap: 10px;
	padding: var(--mk-bn-card-pad, 16px);
	text-decoration: none;
	color: var(--mk-bn-fg);
	background: var(--mk-bn-card-bg);
	border-radius: 8px;
	transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
	text-align: center;
	min-width: 0;
	box-sizing: border-box;
}

.mk-studio-brand-nav__card:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
	color: var(--mk-bn-fg);
}

/* Square image always spans full card width (fluid with columns) */
.mk-studio-brand-nav__image {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	flex-shrink: 0;
	border-radius: 6px;
	overflow: hidden;
	background: rgba(0, 0, 0, 0.04);
	position: relative;
}

.mk-studio-brand-nav__image img {
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	object-fit: var(--mk-bn-img-fit, contain);
	object-position: center;
	display: block;
}

.mk-studio-brand-nav__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 100%;
	background: rgba(0, 0, 0, 0.06);
	position: absolute;
	inset: 0;
}

.mk-studio-brand-nav__label {
	font-size: var(--mk-bn-label-size, 0.9rem);
	font-weight: var(--mk-bn-label-weight, 600);
	line-height: 1.25;
	word-break: break-word;
	color: inherit;
}

/* Scheme mode: ensure tokens inherit from section shell when present */
.mk-studio-section[class*="mk-studio-scheme-"] .mk-studio-brand-nav--scheme {
	/* header/body already use var(--mk-scheme-*) when use_scheme_colors is on */
}

/* -------------------------------------------------------------------------- */
/* Text + video                                                              */
/* -------------------------------------------------------------------------- */

.mk-studio-tv {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	align-items: center;
}

@media screen and (min-width: 750px) {
	.mk-studio-tv--two_col {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}

	.mk-studio-tv--two_col.mk-studio-tv--v-left .mk-studio-tv__media {
		order: 1;
	}

	.mk-studio-tv--two_col.mk-studio-tv--v-left .mk-studio-tv__content {
		order: 2;
	}

	.mk-studio-tv--two_col.mk-studio-tv--v-right .mk-studio-tv__media {
		order: 2;
	}

	.mk-studio-tv--two_col.mk-studio-tv--v-right .mk-studio-tv__content {
		order: 1;
	}
}

.mk-studio-tv--one_col .mk-studio-tv__media {
	max-width: 900px;
	margin: 0 auto;
	width: 100%;
}

/* Full-width 1-column video band (edge-to-edge media + content under) */
.mk-studio-tv--full_video {
	display: block;
	width: 100%;
	max-width: none;
	gap: 0;
}

.mk-studio-tv--full_video .mk-studio-tv__media {
	width: 100%;
	max-width: none;
	margin: 0;
}

.mk-studio-tv--full_video .mk-studio-tv__frame {
	border-radius: 0;
}

.mk-studio-tv--full_video .mk-studio-tv__content {
	max-width: 720px;
	margin: 1.5rem auto 0;
	padding: 0 15px;
	text-align: center;
}

.mk-studio-tv--full_video .mk-studio-tv__heading {
	margin: 0 0 0.75rem;
}

.mk-studio-tv--full_video .mk-studio-tv__body {
	margin: 0 0 1rem;
}

/* product_description styles unified with rich text above (.mk-studio-content-band) */

.mk-studio-tv__frame {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	border-radius: 8px;
	background: #000;
}

.mk-studio-tv__frame iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.mk-studio-tv__video,
.mk-studio-tv__media > img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 8px;
}

.mk-studio-tv__heading {
	margin: 0 0 12px;
	font-size: 1.5rem;
	font-weight: 700;
	color: inherit;
}

.mk-studio-tv__body {
	font-size: 1rem;
	line-height: 1.6;
	color: inherit;
}

/* -------------------------------------------------------------------------- */
/* Global footer                                                              */
/* -------------------------------------------------------------------------- */

.mk-studio-footer-root {
	width: 100%;
}

.mk-studio-footer {
	width: 100%;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}

.mk-studio-section--full > .mk-studio-footer.mk-studio-inner {
	max-width: 1200px;
}

.mk-studio-footer__top {
	display: grid;
	grid-template-columns: 1fr;
	gap: 28px;
}

@media screen and (min-width: 750px) {
	.mk-studio-footer__top {
		grid-template-columns: minmax(0, 1.2fr) minmax(0, 2fr) minmax(0, 1fr);
		gap: 32px;
		align-items: start;
	}
}

.mk-studio-footer__brand {
	min-width: 0;
}

.mk-studio-footer__logo img,
.mk-studio-footer__logo .custom-logo {
	display: block;
	max-width: 120px;
	height: auto;
}

.mk-studio-footer__about {
	margin-top: 12px;
	font-size: 14px;
	line-height: 1.55;
	opacity: 0.92;
}

.mk-studio-footer__about p {
	margin: 0 0 0.5em;
	color: inherit;
}

.mk-studio-footer__contact {
	list-style: none;
	margin: 14px 0 0;
	padding: 0;
	font-size: 14px;
	line-height: 1.5;
}

.mk-studio-footer__contact li {
	margin: 0 0 6px;
}

.mk-studio-footer__contact a {
	color: inherit;
	text-decoration: none;
}

.mk-studio-footer__contact a:hover {
	text-decoration: underline;
}

.mk-studio-footer__cols {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

@media screen and (min-width: 600px) {
	.mk-studio-footer__cols {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 16px;
	}
}

.mk-studio-footer__col h3,
.mk-studio-footer__news h3 {
	margin: 0 0 10px;
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: inherit;
}

.mk-studio-footer__links,
.mk-studio-footer__col .menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.mk-studio-footer__links li,
.mk-studio-footer__col .menu li {
	margin: 0 0 6px;
}

.mk-studio-footer__links a,
.mk-studio-footer__col .menu a {
	color: inherit;
	text-decoration: none;
	font-size: 14px;
	opacity: 0.9;
}

.mk-studio-footer__links a:hover,
.mk-studio-footer__col .menu a:hover {
	opacity: 1;
	text-decoration: underline;
}

.mk-studio-footer__news p {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
	opacity: 0.9;
}

.mk-studio-footer__copy {
	margin-top: 28px;
	padding-top: 20px;
	border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.mk-studio-footer__copy p {
	margin: 0;
	font-size: 13px;
	opacity: 0.8;
}

.mk-studio-btn:hover {
	opacity: 0.92;
	color: var(--mk-scheme-button-text, #fff);
}

/* Studio PDP related — reinforce horizontal carousel (Woo grid override) */
.mk-studio-section .mk-related-carousel ul.products,
.mk-studio-section .mk-related-carousel__track {
	display: flex !important;
	flex-wrap: nowrap !important;
	grid-template-columns: none !important;
	overflow-x: auto !important;
	float: none !important;
}
.mk-studio-section .mk-related-carousel ul.products > li.product {
	float: none !important;
	clear: none !important;
	width: 70% !important;
	max-width: 70% !important;
	flex: 0 0 70% !important;
	margin: 0 !important;
}
@media screen and (min-width: 750px) {
	.mk-studio-section .mk-related-carousel ul.products > li.product {
		width: 23% !important;
		max-width: 23% !important;
		flex: 0 0 23% !important;
	}
}
@media screen and (max-width: 749px) {
	.mk-studio-section--product_related .mk-studio-section__pad,
	.mk-studio-section--collection_carousel .mk-studio-section__pad {
		padding-left: 0 !important;
		padding-right: 0 !important;
	}
	.mk-studio-section--collection_toolbar .mk-studio-section__pad {
		padding-top: 6px !important;
		padding-bottom: 6px !important;
	}
	.mk-collection-toolbar-wrap.mk-studio-inner {
		padding-left: 10px;
		padding-right: 10px;
	}
}

/* ——— Blog (Studio) ——— */
.mk-blog-post-main,
.mk-blog-post-content,
.mk-blog-post-tags {
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
}
.mk-blog-post-main--narrow,
.mk-blog-post-content--narrow,
.mk-blog-post-tags--narrow {
	max-width: 720px;
}
.mk-blog-post-main--medium,
.mk-blog-post-content--medium,
.mk-blog-post-tags--medium {
	max-width: 900px;
}
.mk-blog-post-main--wide,
.mk-blog-post-content--wide,
.mk-blog-post-tags--wide {
	max-width: 1100px;
}

.mk-blog-post-main__media {
	margin: 0 0 1.25rem;
	overflow: hidden;
	border-radius: 2px;
}
.mk-blog-post-main__img {
	display: block;
	width: 100%;
	height: auto;
	max-height: none;
}
.mk-blog-post-main__title {
	margin: 0 0 0.75rem;
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	line-height: 1.15;
	font-weight: 700;
}
.mk-blog-post-main__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem 0.5rem;
	font-size: 0.875rem;
	opacity: 0.85;
}
.mk-blog-post-main__sep {
	opacity: 0.5;
}
.mk-blog-post-main__meta a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.mk-blog-post-content__body {
	font-size: 1.0625rem;
	line-height: 1.7;
}
.mk-blog-post-content__body > *:first-child {
	margin-top: 0;
}
.mk-blog-post-content__body > *:last-child {
	margin-bottom: 0;
}
.mk-blog-post-content__body img {
	max-width: 100%;
	height: auto;
}
.mk-blog-post-content__body h2,
.mk-blog-post-content__body h3 {
	line-height: 1.25;
	margin-top: 1.75em;
}

.mk-blog-post-tags {
	font-size: 0.875rem;
}
.mk-blog-post-tags__label {
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin-right: 0.35rem;
}
.mk-blog-post-tags__list a {
	color: inherit;
	margin-right: 0.5rem;
}

.mk-blog-archive-header {
	max-width: 900px;
	margin: 0 auto;
}
.mk-blog-archive-header--center {
	text-align: center;
}
.mk-blog-archive-header--left {
	text-align: left;
}
.mk-blog-archive-header__title {
	margin: 0 0 0.5rem;
	font-size: clamp(1.75rem, 4vw, 2.25rem);
	line-height: 1.15;
}
.mk-blog-archive-header__desc {
	font-size: 1rem;
	line-height: 1.55;
	opacity: 0.9;
}
.mk-blog-archive-header__desc p {
	margin: 0.35em 0;
}

.mk-blog-related__title {
	margin: 0 0 1.25rem;
	text-align: center;
	font-size: clamp(1.25rem, 3vw, 1.75rem);
}

.mk-blog-grid {
	display: grid;
	grid-template-columns: repeat(var(--mk-blog-cols-m, 1), minmax(0, 1fr));
	gap: 1.25rem 1rem;
}
@media screen and (min-width: 750px) {
	.mk-blog-grid {
		grid-template-columns: repeat(var(--mk-blog-cols-d, 3), minmax(0, 1fr));
		gap: 1.5rem 1.25rem;
	}
}

.mk-blog-card {
	display: flex;
	flex-direction: column;
	background: var(--mk-scheme-surface, #fff);
	color: inherit;
	overflow: hidden;
	border-radius: 2px;
	height: 100%;
}
.mk-blog-card__media {
	display: block;
	overflow: hidden;
	background: rgba(0, 0, 0, 0.06);
}
.mk-blog-card__img {
	display: block;
	width: 100%;
	height: auto;
	transition: transform 0.35s ease;
}
.mk-blog-card__media:hover .mk-blog-card__img {
	transform: scale(1.03);
}
.mk-blog-card__placeholder {
	display: block;
	width: 100%;
	background: linear-gradient(135deg, rgba(0,0,0,0.06), rgba(0,0,0,0.12));
	min-height: 160px;
}
.mk-blog-card__body {
	padding: 0.85rem 0.15rem 0.25rem;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	flex: 1;
}
.mk-blog-card__date {
	font-size: 0.75rem;
	opacity: 0.75;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}
.mk-blog-card__title {
	margin: 0;
	font-size: 1.05rem;
	line-height: 1.3;
	font-weight: 700;
}
.mk-blog-card__title a {
	color: inherit;
	text-decoration: none;
}
.mk-blog-card__title a:hover {
	text-decoration: underline;
	text-underline-offset: 2px;
}
.mk-blog-card__excerpt {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.45;
	opacity: 0.88;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.mk-blog-pagination {
	margin-top: 2rem;
	display: flex;
	justify-content: center;
}
.mk-blog-pagination .page-numbers {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
	list-style: none;
	margin: 0;
	padding: 0;
	justify-content: center;
}
.mk-blog-pagination .page-numbers li {
	margin: 0;
}
.mk-blog-pagination .page-numbers a,
.mk-blog-pagination .page-numbers span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.25rem;
	height: 2.25rem;
	padding: 0 0.5rem;
	border: 1px solid currentColor;
	text-decoration: none;
	color: inherit;
	font-size: 0.875rem;
}
.mk-blog-pagination .page-numbers .current {
	font-weight: 700;
	background: currentColor;
	color: var(--mk-scheme-surface, #fff);
}

.mk-studio-section[class*="mk-studio-scheme-"] .mk-blog-post-main__title,
.mk-studio-section[class*="mk-studio-scheme-"] .mk-blog-archive-header__title,
.mk-studio-section[class*="mk-studio-scheme-"] .mk-blog-related__title,
.mk-studio-section[class*="mk-studio-scheme-"] .mk-blog-card__title,
.mk-studio-section[class*="mk-studio-scheme-"] .mk-blog-card__excerpt,
.mk-studio-section[class*="mk-studio-scheme-"] .mk-blog-post-content__body {
	color: inherit;
}

/* ——— Promo banner carousel (Amazon-style peeks) ——— */
.mk-promo-carousel {
	width: 100%;
	--mk-promo-peek: 12%;
	--mk-promo-gap: 12px;
	--mk-promo-radius: 16px;
}

.mk-promo-carousel__viewport {
	position: relative;
	width: 100%;
}

.mk-promo-carousel__track {
	display: flex;
	gap: var(--mk-promo-gap, 12px);
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	/* Side insets so first/last can centre with peeks */
	padding: 0 max(var(--mk-promo-peek, 12%), 10px);
	scrollbar-width: none;
	touch-action: pan-x;
	cursor: grab;
}

.mk-promo-carousel__track::-webkit-scrollbar {
	display: none;
}

.mk-promo-carousel__track:active {
	cursor: grabbing;
}

.mk-promo-carousel__slide {
	/* ~76% width → ~12% peek each side + gap */
	flex: 0 0 calc(100% - 2 * var(--mk-promo-peek, 12%));
	max-width: calc(100% - 2 * var(--mk-promo-peek, 12%));
	scroll-snap-align: center;
	scroll-snap-stop: always;
	align-self: flex-start;
}

.mk-promo-carousel__card {
	display: block;
	width: 100%;
	border-radius: var(--mk-promo-radius, 16px);
	overflow: hidden;
	/* Transparent so different slide heights don’t flash grey letterbox */
	background: transparent;
	line-height: 0;
	text-decoration: none;
	color: inherit;
	-webkit-tap-highlight-color: transparent;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}

.mk-promo-carousel__card--static {
	cursor: default;
}

/* Full image — height follows upload dimensions on mobile AND desktop (no crop). */
.mk-promo-carousel__img {
	display: block;
	width: 100%;
	height: auto;
	max-height: none !important;
	object-fit: unset;
	object-position: center;
	vertical-align: middle;
	user-select: none;
	-webkit-user-drag: none;
	background: transparent;
}

@media screen and (min-width: 750px) {
	.mk-promo-carousel {
		--mk-promo-peek: 18%;
		--mk-promo-gap: 16px;
	}
}

@media screen and (min-width: 1200px) {
	.mk-promo-carousel {
		--mk-promo-peek: 22%;
	}
}

.mk-promo-carousel__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	color: #111;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
	display: none;
	align-items: center;
	justify-content: center;
}

.mk-promo-carousel__arrow--prev {
	left: 8px;
}

.mk-promo-carousel__arrow--next {
	right: 8px;
}

@media screen and (min-width: 750px) {
	.mk-promo-carousel__arrow {
		display: inline-flex;
	}
}

.mk-promo-carousel__dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	padding: 12px 0 0;
}

.mk-promo-carousel__dot {
	width: 8px;
	height: 8px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.22);
	cursor: pointer;
}

.mk-promo-carousel__dot.is-active {
	background: rgba(0, 0, 0, 0.75);
	width: 18px;
}

/* Full-bleed section: slightly tighter side padding on mobile for peeks */
.mk-studio-section--promo_banner_carousel.mk-studio-section--full {
	padding-left: 0 !important;
	padding-right: 0 !important;
}

/* -------------------------------------------------------------------------- */
/* Brand jump links + Brand product accordions (Shopify guest brands layout)  */
/* -------------------------------------------------------------------------- */

.mk-brand-jump {
	width: 100%;
	box-sizing: border-box;
	--mk-bj-d: 7;
	--mk-bj-m: 3;
	--mk-bj-gap: 12px;
	--mk-bj-pad: 12px;
	--mk-bj-title: 1.5rem;
	--mk-bj-label: 0.75rem;
}

.mk-brand-jump__title {
	margin: 0 0 1rem;
	font-size: var(--mk-bj-title);
	font-weight: 700;
	line-height: 1.25;
	color: inherit;
}

.mk-brand-jump__grid {
	display: grid;
	grid-template-columns: repeat(var(--mk-bj-m, 3), minmax(0, 1fr));
	gap: var(--mk-bj-gap, 12px);
	width: 100%;
}

@media screen and (min-width: 750px) {
	.mk-brand-jump__grid {
		grid-template-columns: repeat(var(--mk-bj-d, 7), minmax(0, 1fr));
	}
}

.mk-brand-jump__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
	padding: var(--mk-bj-pad, 12px);
	text-decoration: none;
	color: var(--mk-scheme-text, inherit);
	background: color-mix(in srgb, var(--mk-scheme-text, #000) 6%, var(--mk-scheme-bg, #f6f6f6));
	border-radius: 8px;
	border: 1px solid color-mix(in srgb, var(--mk-scheme-text, #000) 10%, transparent);
	box-sizing: border-box;
	min-width: 0;
	transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
	text-align: center;
}

.mk-brand-jump__item:hover {
	background: var(--mk-scheme-bg, #fff);
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
	transform: translateY(-1px);
	color: var(--mk-scheme-text, inherit);
}

.mk-brand-jump__image {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	aspect-ratio: 1 / 1;
	max-height: 72px;
	overflow: hidden;
}

.mk-brand-jump__image img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	display: block;
}

.mk-brand-jump__placeholder {
	display: block;
	width: 48px;
	height: 48px;
	border-radius: 6px;
	background: rgba(0, 0, 0, 0.06);
}

.mk-brand-jump__label {
	font-size: var(--mk-bj-label);
	font-weight: 600;
	line-height: 1.25;
	word-break: break-word;
}

/* Accordion products */
.mk-brand-acc {
	width: 100%;
	box-sizing: border-box;
	--mk-ba-d: 4;
	--mk-ba-m: 2;
	--mk-ba-gap: 16px;
	--mk-ba-header-py: 12px;
}

.mk-brand-acc__toolbar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px 16px;
	margin-bottom: 16px;
}

.mk-brand-acc__search-wrap {
	flex: 1 1 220px;
	max-width: 420px;
	margin: 0;
}

.mk-brand-acc__search {
	width: 100%;
	box-sizing: border-box;
	padding: 10px 14px;
	border: 1px solid rgba(0, 0, 0, 0.15);
	border-radius: 8px;
	font-size: 14px;
	background: #fff;
	color: inherit;
}

.mk-brand-acc__count {
	margin: 0;
	font-size: 13px;
	opacity: 0.75;
	flex-shrink: 0;
}

.mk-brand-acc__details {
	border: 0;
	margin: 0 0 10px;
	border-radius: 8px;
	overflow: hidden;
	background: transparent;
}

.mk-brand-acc__summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	list-style: none;
	cursor: pointer;
	padding: var(--mk-ba-header-py) 1rem var(--mk-ba-header-py) 1.1rem;
	user-select: none;
	background: var(--mk-scheme-bg, #f5efd8);
	color: var(--mk-scheme-text, #1a1a1a);
	font-size: 1rem;
	font-weight: 700;
	box-sizing: border-box;
}

.mk-brand-acc__summary::-webkit-details-marker {
	display: none;
}

.mk-brand-acc__summary-title {
	flex: 1;
	min-width: 0;
}

.mk-brand-acc__toggle {
	display: block;
	flex-shrink: 0;
	width: 2.75rem;
	height: 1.65rem;
	line-height: 0;
}

.mk-brand-acc__icon {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center right;
}

.mk-brand-acc__icon--open {
	display: none;
}

.mk-brand-acc__details[open] .mk-brand-acc__icon--closed {
	display: none;
}

.mk-brand-acc__details[open] .mk-brand-acc__icon--open {
	display: block;
}

.mk-brand-acc__chevron {
	display: block;
	width: 0.55rem;
	height: 0.55rem;
	margin-right: 0.35rem;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	transition: transform 0.2s ease;
}

.mk-brand-acc__details[open] .mk-brand-acc__chevron {
	transform: rotate(-135deg);
	margin-top: 0.2rem;
}

.mk-brand-acc__body {
	padding: 16px 0 8px;
	box-sizing: border-box;
}

.mk-brand-acc__empty {
	margin: 0;
	padding: 12px 4px;
	opacity: 0.7;
	font-size: 14px;
}

.mk-brand-acc__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(var(--mk-ba-m, 2), minmax(0, 1fr));
	gap: var(--mk-ba-gap, 16px);
	width: 100%;
}

@media screen and (min-width: 750px) {
	.mk-brand-acc__grid {
		grid-template-columns: repeat(var(--mk-ba-d, 4), minmax(0, 1fr));
	}
}

.mk-brand-acc__item {
	margin: 0;
	padding: 0;
	min-width: 0;
	list-style: none;
}

.mk-brand-acc__item.is-filtered-out {
	display: none !important;
}

.mk-brand-acc__details.is-filtered-empty {
	display: none;
}

/* Scroll margin so sticky header doesn’t cover the target */
.mk-brand-acc__details {
	scroll-margin-top: 96px;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

/* -------------------------------------------------------------------------- */
/* Shop category chips (Nike-style horizontal pills)                          */
/* -------------------------------------------------------------------------- */

.mk-shop-chips {
	width: 100%;
	box-sizing: border-box;
}

.mk-shop-chips__scroller {
	display: flex;
	flex-wrap: nowrap;
	gap: 8px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	padding: 4px 16px 8px;
	scroll-snap-type: x proximity;
}

.mk-shop-chips__scroller::-webkit-scrollbar {
	display: none;
}

.mk-shop-chips__chip {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 36px;
	padding: 8px 16px;
	border-radius: 999px;
	border: 1px solid rgba(0, 0, 0, 0.12);
	background: #fff;
	color: #121212;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	white-space: nowrap;
	scroll-snap-align: start;
	-webkit-tap-highlight-color: transparent;
	transition: background 0.12s ease, color 0.12s ease, border-color 0.12s ease;
}

.mk-shop-chips__chip:hover {
	border-color: rgba(0, 0, 0, 0.28);
	color: #121212;
}

.mk-shop-chips__chip.is-active {
	background: #121212;
	border-color: #121212;
	color: #fff;
}

/* On dark scheme sections */
.mk-studio-section[class*="mk-studio-scheme-black"] .mk-shop-chips__chip,
.mk-studio-section[class*="mk-studio-scheme-forest"] .mk-shop-chips__chip {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.28);
	color: inherit;
}

.mk-studio-section[class*="mk-studio-scheme-black"] .mk-shop-chips__chip.is-active,
.mk-studio-section[class*="mk-studio-scheme-forest"] .mk-shop-chips__chip.is-active {
	background: #fff;
	border-color: #fff;
	color: #121212;
}

/* PWA: slightly larger hit targets */
html.mk-pwa-app-chrome .mk-shop-chips__chip {
	min-height: 40px;
	padding: 10px 18px;
	font-size: 14px;
}

html.mk-pwa-app-chrome .mk-shop-chips__scroller {
	padding-left: 14px;
	padding-right: 14px;
}

/* -------------------------------------------------------------------------- */
/* FAQ — modern minimalist accordion (scheme + component CSS vars)            */
/* -------------------------------------------------------------------------- */

.mk-faq {
	width: 100%;
	box-sizing: border-box;
	/* Defaults — PHP render overrides via inline style */
	--mk-faq-gap: 0px;
	--mk-faq-item-pad-y: 18px;
	--mk-faq-icon: 28px;
	--mk-faq-h-size: 1.75rem;
	--mk-faq-i-size: 1rem;
	--mk-faq-q-size: 1rem;
	--mk-faq-a-size: 0.95rem;
	--mk-faq-h-weight: 700;
	--mk-faq-q-weight: 600;
	--mk-faq-list-max: 48rem;
	--mk-faq-heading: var(--mk-scheme-text, inherit);
	--mk-faq-intro: color-mix(in srgb, var(--mk-scheme-text, currentColor) 72%, transparent);
	--mk-faq-question: var(--mk-scheme-text, inherit);
	--mk-faq-answer: color-mix(in srgb, var(--mk-scheme-text, currentColor) 80%, transparent);
	--mk-faq-divider: color-mix(in srgb, var(--mk-scheme-text, currentColor) 14%, transparent);
	--mk-faq-card-bg: color-mix(in srgb, var(--mk-scheme-text, currentColor) 6%, transparent);
	--mk-faq-chevron: var(--mk-scheme-text, currentColor);
	color: var(--mk-faq-question);
}

/* Fallback when color-mix unsupported (older Safari) */
@supports not (color: color-mix(in srgb, black 50%, transparent)) {
	.mk-faq {
		--mk-faq-intro: var(--mk-scheme-text, inherit);
		--mk-faq-answer: var(--mk-scheme-text, inherit);
		--mk-faq-divider: rgba(0, 0, 0, 0.12);
		--mk-faq-card-bg: rgba(0, 0, 0, 0.04);
	}
	.mk-studio-section[class*="mk-studio-scheme-black"] .mk-faq,
	.mk-studio-section[class*="mk-studio-scheme-forest"] .mk-faq,
	.mk-studio-section[class*="mk-studio-scheme-red"] .mk-faq {
		--mk-faq-divider: rgba(255, 255, 255, 0.16);
		--mk-faq-card-bg: rgba(255, 255, 255, 0.08);
	}
}

.mk-faq__header {
	margin-bottom: 1.75rem;
}

.mk-faq--align-left .mk-faq__header {
	text-align: left;
}

.mk-faq--align-center .mk-faq__header {
	text-align: center;
}

.mk-faq--align-right .mk-faq__header {
	text-align: right;
}

.mk-faq__heading {
	margin: 0 0 0.5rem;
	font-size: var(--mk-faq-h-size);
	font-weight: var(--mk-faq-h-weight, 700);
	letter-spacing: -0.02em;
	line-height: 1.2;
	color: var(--mk-faq-heading);
}

.mk-faq__intro {
	margin: 0;
	font-size: var(--mk-faq-i-size, 1rem);
	line-height: 1.5;
	max-width: 40rem;
	color: var(--mk-faq-intro);
	/* opacity removed — colour comes from --mk-faq-intro (scheme or override) */
}

.mk-faq--align-center .mk-faq__intro {
	margin-left: auto;
	margin-right: auto;
}

.mk-faq--align-right .mk-faq__intro {
	margin-left: auto;
}

.mk-faq__list {
	display: flex;
	flex-direction: column;
	gap: var(--mk-faq-gap, 0px);
	max-width: var(--mk-faq-list-max, 48rem);
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}

.mk-faq__item {
	border: 0;
	margin: 0;
	background: transparent;
}

/* Divider style — colour from --mk-faq-divider (scheme or override) */
.mk-faq--divider .mk-faq__item {
	border-bottom: 1px solid var(--mk-faq-divider, rgba(0, 0, 0, 0.12));
}

.mk-faq--divider .mk-faq__item:first-child {
	border-top: 1px solid var(--mk-faq-divider, rgba(0, 0, 0, 0.12));
}

/* Cards style — background from --mk-faq-card-bg */
.mk-faq--cards .mk-faq__item {
	background: var(--mk-faq-card-bg, rgba(0, 0, 0, 0.04));
	border-radius: 12px;
	overflow: hidden;
}

.mk-faq--cards .mk-faq__summary {
	padding-left: 1.1rem;
	padding-right: 1rem;
}

.mk-faq--cards .mk-faq__answer {
	padding-left: 1.1rem;
	padding-right: 1rem;
}

.mk-faq__summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	list-style: none;
	cursor: pointer;
	padding: var(--mk-faq-item-pad-y, 18px) 0;
	user-select: none;
	box-sizing: border-box;
}

.mk-faq__summary::-webkit-details-marker {
	display: none;
}

.mk-faq__question {
	flex: 1;
	min-width: 0;
	font-size: var(--mk-faq-q-size);
	font-weight: var(--mk-faq-q-weight, 600);
	line-height: 1.35;
	color: var(--mk-faq-question);
}

.mk-faq__toggle {
	flex-shrink: 0;
	display: block;
	width: var(--mk-faq-icon, 28px);
	height: var(--mk-faq-icon, 28px);
	position: relative;
	line-height: 0;
	color: var(--mk-faq-chevron);
}

.mk-faq__icon {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.mk-faq__icon--open {
	display: none;
}

.mk-faq__item[open] .mk-faq__icon--closed {
	display: none;
}

.mk-faq__item[open] .mk-faq__icon--open {
	display: block;
}

/* Fallback chevron if no icons */
.mk-faq__chevron {
	display: block;
	width: 0.5rem;
	height: 0.5rem;
	margin: 0.35rem auto 0;
	border-right: 2px solid var(--mk-faq-chevron, currentColor);
	border-bottom: 2px solid var(--mk-faq-chevron, currentColor);
	transform: rotate(45deg);
	transition: transform 0.2s ease;
	opacity: 0.75;
}

.mk-faq__item[open] .mk-faq__chevron {
	transform: rotate(-135deg);
	margin-top: 0.55rem;
}

.mk-faq__answer {
	padding: 0 0 1.15rem;
	font-size: var(--mk-faq-a-size);
	line-height: 1.55;
	color: var(--mk-faq-answer);
	box-sizing: border-box;
}

.mk-faq__answer p {
	margin: 0 0 0.65em;
}

.mk-faq__answer p:last-child {
	margin-bottom: 0;
}

/*
 * Account template — centre the column even when the section is “full”
 * (Studio full inner zeros max-width/margins; 100vw full-bleed shifts left).
 */
.mk-studio-section--account_main.ph-full-bleed,
.mk-studio-section--account_main.mk-studio-section--full {
	width: 100% !important;
	max-width: none !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}

.mk-studio-section--account_main {
	display: block !important;
	width: 100% !important;
	max-width: none !important;
}

.mk-studio-section--account_main > .mk-studio-section__pad {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr);
	justify-items: center;
	width: 100% !important;
	max-width: none !important;
	box-sizing: border-box;
}

.mk-studio-main[data-mk-layout="account"] {
	text-align: center !important;
}

.mk-studio-main[data-mk-layout="account"] > .mk-studio-section {
	display: inline-block !important;
	width: min(100%, var(--mk-account-max, 1100px)) !important;
	max-width: var(--mk-account-max, 1100px) !important;
	margin-left: auto !important;
	margin-right: auto !important;
	text-align: left;
	float: none !important;
	vertical-align: top;
}

.mk-studio-section--account_main.mk-studio-content--full > .mk-studio-section__pad > .mk-studio-inner.mk-account-shell,
.mk-studio-section--account_main .mk-studio-inner.mk-account-shell,
.mk-studio-section--account_links .mk-studio-inner.mk-account-links {
	width: 100% !important;
	max-width: none !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	float: none !important;
	text-align: left;
}
