/**
 * MK PWA app chrome — only applied when html has .mk-pwa-app-chrome
 * (standalone install or preview-force).
 */

/* Studio iframe / view-live: never show the app shell. */
html.mk-studio-preview .mk-pwa-topbar,
html.mk-studio-preview .mk-pwa-tabbar,
html.mk-studio-preview #mk-pwa-splash {
	display: none !important;
}

/* —— Hide website mega chrome —— */
html.mk-pwa-app-chrome .mk-header-ticker,
html.mk-pwa-app-chrome .mk-header-top-bar,
html.mk-pwa-app-chrome .mk-header-main,
html.mk-pwa-app-chrome .ph-ticker,
html.mk-pwa-app-chrome .ph-top-bar,
html.mk-pwa-app-chrome .ph-header,
html.mk-pwa-app-chrome .mk-studio-footer-root,
html.mk-pwa-app-chrome .mk-studio-section--footer,
html.mk-pwa-app-chrome [data-mk-section="header_ticker"],
html.mk-pwa-app-chrome [data-mk-section="header_top_bar"],
html.mk-pwa-app-chrome [data-mk-section="header_main"],
html.mk-pwa-app-chrome [data-mk-section="footer"] {
	display: none !important;
}

/* Room for fixed top + bottom bars */
html.mk-pwa-app-chrome {
	--mk-pwa-top-h: calc(56px + env(safe-area-inset-top, 0px));
	--mk-pwa-tab-h: calc(104px + env(safe-area-inset-bottom, 0px));
}

html.mk-pwa-app-chrome body {
	padding-top: var(--mk-pwa-top-h);
	padding-bottom: var(--mk-pwa-tab-h);
}

/* —— Top bar (Amazon-style always-on search) —— */
.mk-pwa-topbar {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100050;
	height: calc(56px + env(safe-area-inset-top, 0px));
	padding: env(safe-area-inset-top, 0px) 10px 0;
	box-sizing: border-box;
	background: var(--mk-pwa-bar-bg, #000000);
	color: var(--mk-pwa-bar-fg, #ffffff);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

html.mk-pwa-app-chrome .mk-pwa-topbar {
	display: flex;
	align-items: center;
	justify-content: center;
}

.mk-pwa-topbar__inner {
	display: flex;
	align-items: center;
	width: 100%;
	max-width: 720px;
	height: 56px;
	gap: 10px;
}

.mk-pwa-topbar__brand {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
	color: inherit;
	text-decoration: none;
	font-weight: 700;
	font-size: 14px;
	min-width: 0;
	max-width: 28%;
}

.mk-pwa-topbar__brand img {
	display: block;
	height: 26px;
	width: auto;
	max-width: 88px;
	object-fit: contain;
}

.mk-pwa-topbar__title {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* Persistent search pill (opens focus mode) */
.mk-pwa-topbar__search-field {
	flex: 1 1 auto;
	display: flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
	height: 40px;
	padding: 0 14px;
	border: 0;
	border-radius: 999px;
	background: #ffffff;
	color: #555;
	font: inherit;
	font-size: 15px;
	text-align: left;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

.mk-pwa-topbar__search-field:focus-visible {
	outline: 2px solid #ec1c24;
	outline-offset: 2px;
}

.mk-pwa-topbar__search-field-icon {
	flex: 0 0 auto;
	display: flex;
	color: #333;
}

.mk-pwa-topbar__search-field-icon svg {
	width: 18px;
	height: 18px;
	display: block;
	stroke: currentColor;
	fill: none;
	stroke-width: 2;
}

.mk-pwa-topbar__search-field-text {
	flex: 1 1 auto;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: #666;
}

/* Hide collection toolbar search in app (top search replaces it) */
html.mk-pwa-app-chrome .mk-collection-toolbar__search,
html.mk-pwa-app-chrome .mk-collection-toolbar__search--bar {
	display: none !important;
}

/* —— Bottom tab bar (taller hit targets for iPhone thumbs) —— */
.mk-pwa-tabbar {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 100050;
	padding: 4px 6px env(safe-area-inset-bottom, 0px);
	box-sizing: border-box;
	background: var(--mk-pwa-bar-bg, #000000);
	color: var(--mk-pwa-bar-fg, #ffffff);
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

html.mk-pwa-app-chrome .mk-pwa-tabbar {
	display: block;
}

.mk-pwa-tabbar__nav {
	display: flex;
	align-items: stretch;
	justify-content: space-around;
	max-width: 640px;
	margin: 0 auto;
	min-height: 96px; /* was 56 — ~2× for easier taps */
}

.mk-pwa-tabbar__item {
	flex: 1 1 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-height: 96px;
	min-width: 48px;
	padding: 10px 4px 12px;
	color: inherit;
	text-decoration: none;
	opacity: 0.72;
	border: 0;
	background: transparent;
	cursor: pointer;
	font: inherit;
	-webkit-tap-highlight-color: transparent;
	position: relative;
	/* Full tab is the hit area — no tiny icon-only target */
	touch-action: manipulation;
}

.mk-pwa-tabbar__item:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: -4px;
	border-radius: 8px;
}

.mk-pwa-tabbar__item.is-active {
	opacity: 1;
}

.mk-pwa-tabbar__item.is-active .mk-pwa-tabbar__label {
	font-weight: 700;
}

.mk-pwa-tabbar__icon {
	position: relative;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.mk-pwa-tabbar__icon svg {
	width: 32px;
	height: 32px;
	display: block;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.35; /* thinner outline — more refined than 1.75 */
	stroke-linecap: round;
	stroke-linejoin: round;
}

/* Cart badge dots use fill — keep those solid */
.mk-pwa-tabbar__icon svg circle[fill] {
	fill: currentColor;
	stroke: none;
}

.mk-pwa-tabbar__label {
	font-size: 10px;
	line-height: 1.15;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	text-align: center;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	padding: 0 2px;
}

.mk-pwa-tabbar__badge {
	position: absolute;
	top: -8px;
	right: -12px;
	min-width: 20px;
	height: 20px;
	padding: 0 5px;
	border-radius: 999px;
	background: #ec1c24;
	color: #ffffff;
	font-size: 11px;
	font-weight: 800;
	line-height: 20px;
	text-align: center;
	box-sizing: border-box;
}

.mk-pwa-tabbar__badge:empty,
.mk-pwa-tabbar__badge[data-count="0"] {
	display: none;
}

/* —— Full-screen white search focus mode (Nike-style docked field) —— */
.mk-pwa-search-sheet {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 100090;
	background: #ffffff;
	align-items: stretch;
	justify-content: flex-start;
	flex-direction: column;
	padding: 0;
	box-sizing: border-box;
}

html.mk-pwa-app-chrome .mk-pwa-search-sheet.is-open {
	display: flex;
}

.mk-pwa-search-sheet__panel {
	width: 100%;
	background: #fff;
	color: #111;
	padding: calc(8px + env(safe-area-inset-top, 0px)) 16px 0;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	min-height: 0;
	height: 100%;
}

.mk-pwa-search-sheet__top {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 4px;
}

.mk-pwa-search-sheet__row {
	display: flex;
	gap: 8px;
	align-items: center;
	background: #f3f3f3;
	border-radius: 999px;
	padding: 0 6px 0 14px;
	min-height: 48px;
}

.mk-pwa-search-sheet__icon {
	flex: 0 0 auto;
	display: flex;
	color: #444;
}

.mk-pwa-search-sheet__icon svg {
	width: 20px;
	height: 20px;
	stroke: currentColor;
	fill: none;
	stroke-width: 2;
}

.mk-pwa-search-sheet__input {
	flex: 1;
	min-width: 0;
	height: 48px;
	border: 0;
	background: transparent;
	padding: 0 4px;
	font-size: 16px; /* avoid iOS zoom */
	color: #111;
	outline: none;
	-webkit-appearance: none;
}

.mk-pwa-search-sheet__close {
	flex: 0 0 auto;
	height: 40px;
	padding: 0 4px 0 12px;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: #111;
	font-weight: 600;
	font-size: 15px;
	cursor: pointer;
}

.mk-pwa-search-sheet__clear-q {
	flex: 0 0 auto;
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: #666;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
}

.mk-pwa-search-sheet__hint {
	margin: 20px 4px 0;
	font-size: 14px;
	color: #999;
	line-height: 1.4;
}

.mk-pwa-search-sheet__status {
	margin: 14px 4px 0;
	font-size: 14px;
	color: #666;
}

.mk-pwa-search-sheet__results {
	flex: 1 1 auto;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	padding: 8px 0 12px;
	margin: 0 -16px;
	min-height: 0;
}

/* Recents */
.mk-pwa-search-sheet__recents {
	flex: 1 1 auto;
	min-height: 0;
	overflow-y: auto;
	padding: 8px 0 12px;
}

.mk-pwa-search-sheet__recents-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin: 8px 0 12px;
}

.mk-pwa-search-sheet__recents-title {
	font-size: 13px;
	font-weight: 600;
	color: #888;
}

.mk-pwa-search-sheet__recents-clear {
	border: 0;
	background: transparent;
	color: #111;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	padding: 4px 0;
}

.mk-pwa-search-sheet__recents-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.mk-pwa-search-sheet__recent-item {
	display: block;
	width: 100%;
	text-align: left;
	border: 0;
	background: transparent;
	padding: 14px 0;
	font-size: 17px;
	font-weight: 500;
	color: #111;
	border-bottom: 1px solid #f0f0f0;
	cursor: pointer;
}

/* Docked search field at bottom of sheet */
.mk-pwa-search-sheet__form--dock {
	flex: 0 0 auto;
	margin-top: auto;
	padding: 10px 0 calc(12px + env(safe-area-inset-bottom, 0px));
	background: #fff;
	border-top: 1px solid #f0f0f0;
}

.mk-pwa-search-hit {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 16px;
	text-decoration: none;
	color: #111;
	border-bottom: 1px solid #f0f0f0;
	-webkit-tap-highlight-color: transparent;
}

.mk-pwa-search-hit:active {
	background: #f6f6f6;
}

.mk-pwa-search-hit__img {
	width: 56px;
	height: 56px;
	object-fit: cover;
	border-radius: 8px;
	background: #f3f3f3;
	flex: 0 0 auto;
}

.mk-pwa-search-hit__meta {
	flex: 1 1 auto;
	min-width: 0;
}

.mk-pwa-search-hit__title {
	font-size: 15px;
	font-weight: 600;
	line-height: 1.3;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.mk-pwa-search-hit__price {
	margin-top: 4px;
	font-size: 13px;
	color: #444;
}

.mk-pwa-search-hit__price del {
	opacity: 0.55;
	margin-right: 0.4em;
}

.mk-pwa-search-hit__price ins {
	text-decoration: none;
	font-weight: 700;
}

.mk-pwa-search-hit__price .screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

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

html.mk-pwa-search-open .mk-pwa-tabbar,
html.mk-pwa-search-open .mk-pwa-topbar {
	visibility: hidden;
	pointer-events: none;
}

/* Panel grows so results list can scroll under the input */
.mk-pwa-search-sheet.is-open .mk-pwa-search-sheet__panel {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	min-height: 0;
	height: 100%;
	box-sizing: border-box;
}

.mk-pwa-search-sheet__form {
	flex: 0 0 auto;
}

/*
 * Bottom tabs stay above mini-cart (ATC peek).
 */
html.mk-pwa-app-chrome .mk-pwa-topbar,
html.mk-pwa-app-chrome .mk-pwa-tabbar {
	z-index: 100080;
}

html.mk-pwa-app-chrome .mk-mini-cart {
	top: var(--mk-pwa-top-h);
	right: 0;
	left: 0;
	bottom: var(--mk-pwa-tab-h);
	z-index: 100090;
}

html.mk-pwa-app-chrome .mk-mini-cart__panel {
	bottom: 0;
	max-height: 100%;
}

html.mk-pwa-app-chrome body.mk-mini-cart-open .mk-pwa-pdp-sticky,
html.mk-pwa-app-chrome .mk-mini-cart.is-open ~ .mk-pwa-pdp-sticky {
	display: none !important;
}

/* In-app navigation progress (also inlined early in head for first paint) */
html.mk-pwa-navigating body {
	cursor: progress;
}

/* Account: stack login + register (PWA only — avoid cramped two-column) */
html.mk-pwa-app-chrome .woocommerce-account .u-columns.col2-set,
html.mk-pwa-app-chrome .woocommerce-account .col2-set {
	display: flex !important;
	flex-direction: column !important;
	width: 100% !important;
	float: none !important;
	gap: 2rem;
}
html.mk-pwa-app-chrome .woocommerce-account .u-column1,
html.mk-pwa-app-chrome .woocommerce-account .u-column2,
html.mk-pwa-app-chrome .woocommerce-account .col-1,
html.mk-pwa-app-chrome .woocommerce-account .col-2 {
	width: 100% !important;
	max-width: 100% !important;
	float: none !important;
	flex: none !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

/* ==========================================================================
   Phase 2 — PWA-clean product page (Nike-inspired, app chrome only)
   Does not change desktop website PDP.
   ========================================================================== */

html.mk-pwa-app-chrome.single-product,
html.mk-pwa-app-chrome body.single-product {
	background: #ffffff;
}

/* Edge-to-edge product main (no boxed letterbox) */
html.mk-pwa-app-chrome.single-product .mk-studio-section--product_main > .mk-studio-section__pad,
html.mk-pwa-app-chrome body.single-product .mk-studio-section--product_main > .mk-studio-section__pad {
	padding-left: 0 !important;
	padding-right: 0 !important;
	padding-top: 0 !important;
}

html.mk-pwa-app-chrome.single-product .mk-studio-product-main.mk-pdp-ph,
html.mk-pwa-app-chrome body.single-product .mk-studio-product-main.mk-pdp-ph {
	max-width: none;
	margin: 0;
	padding: 0;
	color: #121212;
}

/* Sticky ATC sits on the tab bar — pad the page end, not the buy box
   (padding on product_main left a hole above Complementary products). */
html.mk-pwa-app-chrome.single-product main.mk-studio-main,
html.mk-pwa-app-chrome body.single-product main.mk-studio-main {
	padding-bottom: 88px;
}

html.mk-pwa-app-chrome.single-product .mk-pdp-notices {
	padding: 8px 16px 0;
}

/* Hide clutter in app */
html.mk-pwa-app-chrome.single-product .mk-pdp-breadcrumbs,
html.mk-pwa-app-chrome.single-product .woocommerce-breadcrumb,
html.mk-pwa-app-chrome.single-product .mk-pdp-meta,
html.mk-pwa-app-chrome.single-product .product_meta,
html.mk-pwa-app-chrome.single-product .woocommerce-product-rating,
html.mk-pwa-app-chrome.single-product .onsale {
	display: none !important;
}

html.mk-pwa-app-chrome.single-product .mk-pdp-main {
	display: flex !important;
	flex-direction: column !important;
	gap: 0 !important;
	padding: 0 !important;
	grid-template-columns: none !important;
}

/* Full-bleed gallery */
html.mk-pwa-app-chrome.single-product .mk-pdp-gallery {
	width: 100%;
	margin: 0;
	background: #f4f4f4;
}

html.mk-pwa-app-chrome.single-product .mk-pdp-gallery .woocommerce-product-gallery {
	margin: 0 !important;
	width: 100% !important;
}

html.mk-pwa-app-chrome.single-product .woocommerce-product-gallery__image img,
html.mk-pwa-app-chrome.single-product .woocommerce-product-gallery .wp-post-image,
html.mk-pwa-app-chrome.single-product .woocommerce-product-gallery .flex-viewport img {
	width: 100% !important;
	height: auto !important;
	max-height: min(72vh, 560px);
	object-fit: contain !important;
	object-position: center;
	margin: 0 auto;
	background: #f4f4f4;
}

/* Compact horizontal thumbs (or hide if empty) */
html.mk-pwa-app-chrome.single-product .woocommerce-product-gallery .flex-control-thumbs,
html.mk-pwa-app-chrome.single-product .woocommerce-product-gallery ol.flex-control-nav {
	display: flex !important;
	flex-wrap: nowrap;
	gap: 8px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	padding: 10px 14px 12px;
	margin: 0 !important;
	list-style: none;
	scrollbar-width: none;
}

html.mk-pwa-app-chrome.single-product .woocommerce-product-gallery .flex-control-thumbs::-webkit-scrollbar {
	display: none;
}

html.mk-pwa-app-chrome.single-product .woocommerce-product-gallery .flex-control-thumbs li {
	flex: 0 0 auto;
	width: 56px !important;
	margin: 0 !important;
}

html.mk-pwa-app-chrome.single-product .woocommerce-product-gallery .flex-control-thumbs img {
	width: 56px !important;
	height: 56px !important;
	object-fit: cover;
	border-radius: 8px;
	border: 1px solid rgba(0, 0, 0, 0.08);
	opacity: 0.85;
}

html.mk-pwa-app-chrome.single-product .woocommerce-product-gallery .flex-control-thumbs img.flex-active {
	opacity: 1;
	border-color: #121212;
}

/* Summary / buy box — clean type scale */
html.mk-pwa-app-chrome.single-product .mk-pdp-summary {
	padding: 16px 16px 8px;
	box-sizing: border-box;
}

html.mk-pwa-app-chrome.single-product .mk-product-brand {
	margin: 0 0 6px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	opacity: 0.65;
}

html.mk-pwa-app-chrome.single-product .mk-pdp-title,
html.mk-pwa-app-chrome.single-product h1.product_title {
	margin: 0 0 8px;
	font-size: 1.35rem;
	line-height: 1.25;
	font-weight: 700;
	letter-spacing: -0.02em;
}

html.mk-pwa-app-chrome.single-product .mk-pdp-summary .price,
html.mk-pwa-app-chrome.single-product p.price {
	margin: 0 0 12px;
	font-size: 1.15rem;
	font-weight: 700;
}

html.mk-pwa-app-chrome.single-product .mk-pdp-stock {
	margin: 0 0 12px;
	font-size: 13px;
}

html.mk-pwa-app-chrome.single-product .mk-pdp-stock ~ .mk-pdp-form .woocommerce-variation-availability,
html.mk-pwa-app-chrome.single-product .mk-pdp-stock ~ form.cart .woocommerce-variation-availability {
	display: none !important;
}

html.mk-pwa-app-chrome.single-product .mk-pdp-excerpt {
	margin: 0 0 16px;
	font-size: 14px;
	line-height: 1.45;
	opacity: 0.85;
}

/* Variant pills — roomy touch targets */
html.mk-pwa-app-chrome.single-product .mk-variant-pills {
	gap: 8px !important;
	margin-bottom: 12px;
}

html.mk-pwa-app-chrome.single-product .mk-variant-pills__btn {
	min-height: 40px;
	padding: 8px 14px !important;
	font-size: 13px !important;
	border-radius: 999px !important;
}

/* Quantity + buttons: qty, then Add to basket, then Buy it now. */
html.mk-pwa-app-chrome.single-product form.cart:not(.variations_form) {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 10px;
	margin: 0;
}

html.mk-pwa-app-chrome.single-product form.cart.variations_form {
	display: block;
	margin: 0;
}

html.mk-pwa-app-chrome.single-product .woocommerce-variation-add-to-cart {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 10px;
	width: 100%;
}

html.mk-pwa-app-chrome.single-product form.cart .mk-pdp-actions,
html.mk-pwa-app-chrome.single-product .woocommerce-variation-add-to-cart .mk-pdp-actions {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 10px;
	width: 100%;
	order: 2;
}

html.mk-pwa-app-chrome.single-product form.cart .quantity,
html.mk-pwa-app-chrome.single-product .woocommerce-variation-add-to-cart .quantity {
	order: 1;
	width: 100%;
	margin: 0 !important;
}

html.mk-pwa-app-chrome.single-product form.cart .single_add_to_cart_button,
html.mk-pwa-app-chrome.single-product form.cart .mk-buy-now-button {
	flex: 0 0 auto;
	min-height: 48px;
	width: 100%;
	max-width: 100%;
	border-radius: 999px !important;
	font-weight: 700 !important;
	font-size: 14px !important;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

/* Sticky ATC — flush on the tab bar, qty + add + Buy it now */
html.mk-pwa-app-chrome.single-product .mk-pwa-pdp-sticky,
html.mk-pwa-app-chrome body.single-product .mk-pwa-pdp-sticky {
	position: fixed;
	left: 0;
	right: 0;
	bottom: var(--mk-pwa-tab-h);
	z-index: 100070;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 10px;
	padding: 8px 12px;
	background: #ffffff;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
	box-sizing: border-box;
}

html.mk-pwa-app-chrome.single-product .mk-pwa-pdp-sticky__qty,
html.mk-pwa-app-chrome body.single-product .mk-pwa-pdp-sticky__qty {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	border: 1px solid #d8d8d8;
	border-radius: 999px;
	overflow: hidden;
	height: 46px;
	background: #fff;
}

html.mk-pwa-app-chrome .mk-pwa-pdp-sticky__qty-btn {
	width: 40px;
	height: 46px;
	border: 0;
	background: transparent;
	font-size: 20px;
	line-height: 1;
	color: #121212;
	cursor: pointer;
}

html.mk-pwa-app-chrome .mk-pwa-pdp-sticky__qty-val {
	min-width: 1.6em;
	text-align: center;
	font-size: 15px;
	font-weight: 600;
}

html.mk-pwa-app-chrome.single-product .mk-pwa-pdp-sticky .mk-pwa-pdp-sticky__btn,
html.mk-pwa-app-chrome body.single-product .mk-pwa-pdp-sticky .mk-pwa-pdp-sticky__btn {
	flex: 1 1 auto;
	min-height: 46px;
	border: 0;
	border-radius: 999px;
	padding: 8px 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	background: #121212;
	color: #fff;
	cursor: pointer;
}

html.mk-pwa-app-chrome .mk-pwa-pdp-sticky__price {
	font-size: 14px;
	font-weight: 700;
	white-space: nowrap;
}

html.mk-pwa-app-chrome .mk-pwa-pdp-sticky__price del {
	display: none;
}

html.mk-pwa-app-chrome.single-product .mk-pwa-pdp-sticky .mk-pwa-pdp-sticky__btn:disabled,
html.mk-pwa-app-chrome body.single-product .mk-pwa-pdp-sticky .mk-pwa-pdp-sticky__btn:disabled,
html.mk-pwa-app-chrome .mk-pwa-pdp-sticky__buy:disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

html.mk-pwa-app-chrome .mk-pwa-pdp-sticky__buy {
	flex: 1 1 100%;
	min-height: 44px;
	border: 1px solid #121212;
	border-radius: 999px;
	padding: 8px 14px;
	background: #fff;
	color: #121212;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	cursor: pointer;
}

html.mk-pwa-app-chrome.single-product .mk-pwa-pdp-sticky.is-hidden,
html.mk-pwa-app-chrome body.single-product .mk-pwa-pdp-sticky.is-hidden {
	display: none !important;
}

/* Tighter related / trust below the fold */
html.mk-pwa-app-chrome.single-product .mk-studio-section--product_related,
html.mk-pwa-app-chrome.single-product .mk-studio-section--product_trust,
html.mk-pwa-app-chrome.single-product .mk-studio-section--product_description {
	--mk-sec-pt: 12px;
	--mk-sec-pb: 12px;
}

html.mk-pwa-app-chrome.single-product .mk-related-carousel__title,
html.mk-pwa-app-chrome.single-product .ph-carousel__title {
	font-size: 1.05rem;
	padding: 0 12px;
}
