﻿@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,400;0,6..12,500;1,6..12,400&display=swap');

:root {
	--mk-orange: #d1532a;
	--mk-fg-tertiary: #7c7c65;
	--mk-fg-secondary: #5b5b49;
	--mk-fg-brand: #465400;
	--mk-border: #e8e8e3;
	--mk-brand-bg: #d0dd91;
	--mk-brand-bg-light: rgba(208, 221, 145, 0.12);
	--mk-brand-border: #dfe9af;
	--mk-brand-text: #5d6c12;
	--mk-white: #ffffff;
	--mk-bg:#FBFBF9;
	--mk-max-width: 1600px;
}

body {
	font-family: 'Nunito Sans', 'Open Sans', sans-serif;
	background-color: var(--mk-bg);
}

body:has(.mk-header) {
	padding-top: 160px;
}

@media (max-width: 991px) {
	body:has(.mk-header) {
		padding-top: 124px;
	}
}

@media (max-width: 575px) {
	body:has(.mk-header) {
		padding-top: 72px;
	}
}

.mk-header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1100;
}

@media (min-width: 992px) {
	.mk-header.is-compact .mk-header__top,
	.mk-header.is-compact .mk-header__main-row {
		display: none;
	}

	.mk-header.is-compact .mk-header__main {
		padding-top: 8px;
		padding-bottom: 8px;
	}

	.mk-header.is-compact .mk-header__nav-row {
		margin-top: 0;
	}

	.mk-header.is-compact {
		box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
	}

	body:has(.mk-header.is-compact) {
		padding-top: var(--mk-header-compact-pad, 56px);
	}
}


.mk-header__container {
	max-width: var(--mk-max-width);
	margin: 0 auto;
	padding: 0 20px;
	width: 100%;
}

/* Top bar */
.mk-header__top {
	padding: 12px 0;
	background: var(--mk-bg);
}

.mk-header__top-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.mk-header__top-nav {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0;
	list-style: none;
	margin: 0;
	padding: 0;
}

.mk-header__top-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	padding: 4px 8px;
	font-size: 14px;
	font-weight: 500;
	line-height: 16px;
	color: var(--mk-fg-tertiary);
	text-decoration: none;
	border-radius: 999px;
	white-space: nowrap;
	transition: color 0.2s;
}

.mk-header__top-link:hover,
.mk-header__top-link:focus {
	color: var(--mk-orange);
	text-decoration: none;
}

.mk-header__top-link.is-active {
	color: var(--mk-orange);
}

.mk-header__top-link.is-active::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url('../image/mamakupi/tab-active.svg') center / contain no-repeat;
	z-index: -1;
	transform: scale(1.4, 1.6);
}

.mk-header__top-right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
	flex: 1;
	min-width: 0;
}

.mk-header__hours {
	flex: 1;
	margin: 0;
	font-size: 16px;
	line-height: 20px;
	color: var(--mk-fg-tertiary);
	text-align: right;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* Language switcher */
.mk-header__lang .pull-left {
	float: none !important;
}

.mk-header__lang form {
	margin: 0;
}

.mk-header__lang-group {
	display: flex;
	align-items: center;
	gap: 8px;
}

.mk-header__lang-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 28px;
	padding: 4px;
	border: 1px solid transparent;
	border-radius: 999px;
	background: transparent;
	cursor: pointer;
	transition: border-color 0.2s, background 0.2s;
}

.mk-header__lang-btn.is-active {
	background: var(--mk-white);
	border-color: var(--mk-border);
}

.mk-header__lang-btn img {
	width: 18px;
	height: 18px;
	display: block;
}

.mk-header__lang-label {
	font-size: 12px;
	font-weight: 500;
	line-height: 1;
	color: var(--mk-fg-secondary);
	text-transform: uppercase;
}

/* Main bar */
.mk-header__main {
	background: var(--mk-white);
	border-bottom: 1px solid var(--mk-border);
	padding: 8px 0 12px;
}

.mk-header__main-row {
	display: flex;
	align-items: center;
	gap: 20px;
}

.mk-header__logo {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	line-height: 0;
}

.mk-header__logo-chars {
	width: 27px;
	height: 44px;
	flex-shrink: 0;
}

.mk-header__logo-text {
	width: 140px;
	height: 44px;
	flex-shrink: 0;
}

.mk-header__logo-name {
	display: block;
	max-width: 139px;
	height: 44px;
	line-height: 44px;
	white-space: nowrap;
	overflow: hidden;
	font-weight: 700;
	font-size: 44px;
	color: inherit;
	text-decoration: none;
}

@media (max-width: 575px) {
	.mk-header__logo-chars {
		width: 21px;
		height: 34px;
	}

	.mk-header__logo-text {
		width: 114px;
    	height: 38px;
	}

	.mk-header__main-row {
		gap: 8px;
	}
	.mk-header__burger {
        border: none !important;
    }
}

.mk-header__search-wrap {
	position: relative;
	width: 345px;
	flex-shrink: 0;
	z-index: 1;
}

.mk-header__search-wrap.is-suggest-open {
	z-index: 1300;
}

.mk-header-search__back {
	display: none;
}

.mk-header__search-wrap #search {
	margin-bottom: 0;
}

.mk-header__actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 20px;
	flex: 1;
	min-width: 0;
}

.mk-header__phone {
	text-align: right;
	white-space: nowrap;
}

.mk-header__phone-number {
	display: block;
	margin: 0;
	font-size: 16px;
	line-height: 20px;
	color: var(--mk-fg-secondary);
	text-decoration: none;
}

.mk-header__phone-number:hover {
	color: var(--mk-fg-secondary);
	text-decoration: none;
}

.mk-header__callback {
	display: block;
	margin-top: 2px;
	font-size: 14px;
	font-weight: 500;
	line-height: 16px;
	color: var(--mk-fg-brand);
	text-decoration: none;
}

.mk-header__callback:hover {
	color: var(--mk-fg-brand);
	text-decoration: underline;
}

.mk-header__icons {
	display: flex;
	align-items: center;
	gap: 8px;
	position: relative;
	z-index: 1600;
}

.mk-header__icon-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 10px;
	border: 1px solid var(--mk-border);
	border-radius: 999px;
	background: var(--mk-white);
	color: var(--mk-fg-secondary);
	text-decoration: none;
	transition: border-color 0.2s, background 0.2s;
}

.mk-header__icon-btn:hover,
.mk-header__icon-btn:focus {
	border-color: var(--mk-brand-border);
	color: var(--mk-fg-secondary);
	text-decoration: none;
}

.mk-header__icon-btn svg {
	width: 20px;
	height: 20px;
	display: block;
}

.mk-header__icon-btn--cart {
	background: var(--mk-brand-bg);
	border: 2px solid var(--mk-white);
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.mk-header__icon-btn--cart:hover {
	background: var(--mk-brand-bg);
}

/* Header search */
.mk-header-search {
	position: relative;
	overflow: visible;
	display: flex;
	align-items: center;
	gap: 6px;
	width: 100%;
	min-height: 36px;
	padding: 8px 14px;
	border: 1px solid var(--mk-border);
	border-radius: 999px;
	background: var(--mk-white);
	margin: 0;
	cursor: text;
}

.mk-header-search.is-suggest-open {
	border-color: var(--mk-brand-border);
	box-shadow: 0 0 0 3px rgba(208, 221, 145, 0.24);
}

.mk-header-search__icon {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	color: var(--mk-fg-secondary);
	pointer-events: none;
}

.mk-header-search__input {
	flex: 1 1 auto;
	min-width: 0;
	width: 100%;
	height: 20px;
	padding: 0 2px;
	border: 0;
	background: transparent;
	box-shadow: none;
	font-family: inherit;
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	color: var(--mk-fg-secondary);
	outline: none;
}

.mk-header-search__input::placeholder {
	color: var(--mk-fg-secondary);
	opacity: 1;
}

.mk-header-search:focus-within {
	border-color: var(--mk-brand-border);
}

.mk-search-suggest {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	right: 0;
	z-index: 1200;
	overflow: hidden;
	border: 1px solid var(--mk-border);
	border-radius: 20px;
	background: var(--mk-white);
	box-shadow: 0 12px 10px rgba(0, 0, 0, 0.08), 0 18px 36px rgba(29, 29, 21, 0.12);
}

.mk-search-suggest__list {
	margin: 0;
	padding: 8px;
	list-style: none;
}
.mk-search-suggest__item:not(:last-of-type){
	border-bottom: 1px solid var(--mk-border-tertiary);
}

.mk-search-suggest__item + .mk-search-suggest__item {
	margin-top: 4px;
}

.mk-search-suggest__link {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 8px;
	border-radius: 14px;
	color: inherit;
	text-decoration: none;
	transition: background 0.2s;
}

.mk-search-suggest__link:hover,
.mk-search-suggest__link:focus {
	background: var(--mk-brand-bg-light);
	text-decoration: none;
}

.mk-search-suggest__media {
	flex: 0 0 42px;
	width: 42px;
	height: 56px;
	overflow: hidden;
	border: 1px solid var(--mk-border);
	border-radius: 10px;
	background: var(--mk-white);
}

.mk-search-suggest__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mk-search-suggest__body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.mk-search-suggest__name {
	display: -webkit-box;
	overflow: hidden;
	font-size: 14px;
	line-height: 18px;
	color: var(--mk-fg-primary);
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.mk-search-suggest__price {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 6px;
	font-size: 14px;
	line-height: 18px;
}

.mk-search-suggest__price-old {
	color: var(--mk-fg-tertiary);
	text-decoration: line-through;
}

.mk-search-suggest__price-current {
	color: var(--mk-fg-brand);
}

.mk-search-suggest__empty,
.mk-search-suggest__all {
	padding: 14px 16px;
	font-size: 14px;
	line-height: 18px;
}

.mk-search-suggest__empty {
	color: var(--mk-fg-tertiary);
	text-align: center;
}

.mk-search-suggest__all {
	display: block;
	border-top: 1px solid var(--mk-border-tertiary);
	color: var(--mk-fg-brand);
	font-weight: 500;
	text-align: center;
	text-decoration: none;
}

.mk-search-suggest__all:hover {
	background: var(--mk-brand-bg-light);
	color: var(--mk-fg-brand);
	text-decoration: none;
}

/* Cart in header */
.mk-header__cart {
	position: relative;
	z-index: 1600;
}

.mk-header__cart .btn-group {
	display: block;
	width: auto;
}

.mk-header__cart .dropdown-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 10px;
	border: 2px solid var(--mk-white);
	border-radius: 999px;
	background: var(--mk-brand-bg);
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.mk-header__cart .dropdown-toggle .fa {
	display: none;
}

.mk-header__cart .dropdown-menu {
	right: 0;
	left: auto;
	width: min(950px, calc(100vw - 40px));
	min-width: 760px;
	margin-top: 8px;
	padding: 14px;
	border: 1px solid var(--mk-border);
	border-radius: 28px;
	background: var(--mk-white);
	box-shadow: 0 12px 10px rgba(0, 0, 0, 0.08), 0 18px 36px rgba(29, 29, 21, 0.12);
	overflow: hidden;
	background-color: var(--mk-white) !important;
	z-index: 1700;
}

/* Desktop: scroll product list, keep checkout actions visible */
@media (min-width: 833px) {
	.mk-header__cart #cart.open > .dropdown-menu.mk-mini-cart {
		display: flex !important;
		flex-direction: column;
		max-height: calc(100vh - 100px);
		overflow: hidden;
	}

	.mk-header__cart #cart.open > .mk-mini-cart > li:first-child {
		flex: 1 1 auto;
		min-height: 0;
		overflow: hidden;
		display: flex;
		flex-direction: column;
	}

	.mk-header__cart #cart.open > .mk-mini-cart .mk-mini-cart__list {
		flex: 1 1 auto;
		min-height: 0;
		overflow-x: hidden;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		overscroll-behavior: contain;
	}

	.mk-header__cart #cart.open > .mk-mini-cart > li:last-child {
		flex: 0 0 auto;
	}
}

.mk-mini-cart {
	font-family: 'Nunito Sans', 'Open Sans', sans-serif;
	color: var(--mk-fg-secondary);
}

.mk-mini-cart > li {
	list-style: none;
}

.mk-mini-cart__list {
	display: flex;
	flex-direction: column;
}

.mk-mini-cart__item {
	position: relative;
	display: grid;
	grid-template-columns: 70px minmax(0, 1fr) auto;
	grid-template-areas:
		"image header remove"
		"image meta purchase";
	column-gap: 24px;
	row-gap: 16px;
	align-items: center;
	padding: 12px 0;
	border-bottom: 1px solid var(--mk-border-tertiary);
}

.mk-mini-cart__item--voucher {
	grid-template-columns: minmax(0, 1fr) auto;
	grid-template-areas:
		"header remove"
		"purchase purchase";
	row-gap: 0;
}

.mk-mini-cart__image {
	grid-area: image;
	align-self: start;
	display: block;
	flex: 0 0 70px;
	width: 70px;
	height: 106px;
	overflow: hidden;
	border: 1px solid var(--mk-border);
	border-radius: 12px;
	background: var(--mk-white);
}

.mk-mini-cart__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mk-mini-cart__header {
	grid-area: header;
	display: flex;
	align-items: flex-start;
	gap: 8px;
	min-width: 0;
}

.mk-mini-cart__body {
	flex: 1 1 auto;
	min-width: 0;
}

.mk-mini-cart__brand {
	margin-bottom: 8px;
	font-size: 14px;
	font-weight: 500;
	line-height: 16px;
	color: #abab9a;
}

.mk-mini-cart__name {
	display: block;
	max-width: 100%;
	font-size: 18px;
	font-weight: 400;
	line-height: 22px;
	color: var(--mk-fg-primary);
	text-decoration: none;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.mk-mini-cart__name:hover {
	color: var(--mk-orange);
	text-decoration: none;
}

.mk-mini-cart__meta {
	grid-area: meta;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 20px;
	margin-top: 0;
	font-size: 14px;
	line-height: 16px;
	color: var(--mk-fg-tertiary);
}

.mk-mini-cart__meta:empty {
	display: none;
}

.mk-mini-cart__meta b {
	margin-left: 8px;
	font-weight: 500;
	color: var(--mk-fg-primary);
}

.mk-mini-cart__remove {
	grid-area: remove;
	justify-self: end;
	display: inline-flex;
	flex: 0 0 44px;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 10px;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: var(--mk-fg-tertiary);
	cursor: pointer;
}

.mk-mini-cart__remove svg {
	width: 20px;
	height: 20px;
	display: block;
}

.mk-mini-cart__remove:hover {
	background: var(--mk-border-tertiary);
	color: var(--mk-orange);
}

.mk-mini-cart__purchase {
	grid-area: purchase;
	display: flex;
	flex: 0 0 298px;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-width: 0;
}

.mk-mini-cart__price {
	min-width: 110px;
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	color: var(--mk-fg-brand);
	text-align: right;
	white-space: nowrap;
}

.mk-mini-cart-qty {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.mk-mini-cart-qty__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid var(--mk-border);
	border-radius: 999px;
	background: var(--mk-white);
	font-size: 24px;
	font-weight: 400;
	line-height: 1;
	color: var(--mk-fg-secondary);
	cursor: pointer;
}

.mk-mini-cart-qty__button--plus {
	border-color: var(--mk-brand-border);
	background: var(--mk-brand-bg-light);
	color: var(--mk-fg-brand-alt);
}

.mk-mini-cart-qty__button:hover {
	border-color: var(--mk-brand-border);
	background: var(--mk-brand-bg-light);
}

.mk-mini-cart-qty__button:disabled {
	opacity: 0.45;
	cursor: default;
}

.mk-mini-cart-qty__value {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 44px;
	font-size: 18px;
	font-weight: 400;
	line-height: 22px;
	color: var(--mk-fg-primary);
	text-align: center;
}

.mk-mini-cart__summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-top: 20px !important;
}

.mk-mini-cart__continue,
.mk-mini-cart__checkout {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	border-radius: 999px;
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	text-decoration: none;
	white-space: nowrap;
}

.mk-mini-cart__continue {
	justify-self: start;
	gap: 8px;
	padding: 10px 20px;
	border: 1px solid var(--mk-border);
	background: var(--mk-white);
	color: var(--mk-fg-secondary);
}

.mk-mini-cart__continue:hover {
	border-color: var(--mk-brand-border);
	color: var(--mk-fg-secondary);
	text-decoration: none;
}

.mk-mini-cart__checkout {
	gap: 10px;
	min-width: 212px;
	padding: 10px 16px;
	border: 0;
	background: #f8845f;
	color: var(--mk-white);
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.mk-mini-cart__checkout:hover {
	background: var(--mk-orange);
	color: var(--mk-white);
	text-decoration: none;
}

.mk-mini-cart__actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 20px;
}

.mk-mini-cart__total-row {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
	width: 256px;
	font-size: 18px;
	font-weight: 400;
	line-height: 22px;
	color: var(--mk-fg-secondary);
	text-align: right;
	white-space: nowrap;
}

.mk-mini-cart__total-row span,
.mk-mini-cart__total-row strong {
	padding: 0;
	border: 0;
	font-weight: 400;
}

.mk-mini-cart__total-row strong {
	color: var(--mk-fg-brand-alt);
}

.mk-mini-cart__empty {
	min-width: 320px;
	padding: 32px 24px;
	font-size: 16px;
	line-height: 20px;
	color: var(--mk-fg-tertiary);
	text-align: center;
}

@media (max-width: 991px) {
	.mk-header__cart .dropdown-menu {
		right: 0;
		width: calc(100vw - 40px);
		min-width: 0;
		max-height: calc(100vh - 120px);
		overflow-y: auto;
	}

	.mk-mini-cart__purchase {
		flex-basis: 260px;
	}
}

@media (max-width: 832px) {
	.mk-header__cart .dropdown-menu {
		position: fixed;
		top: 114px;
		right: auto;
		left: 0;
		width: 100vw;
		margin: 0;
		padding: 16px;
		border-right: 1px solid var(--mk-border);
		border-left: 1px solid var(--mk-border);
		border-radius: 0;
		box-shadow: none;
	}


	#cart .dropdown-menu {
		max-height: none;
	}

	.mk-mini-cart{
		height: calc(100dvh - 114px);
	}

	.mk-header__cart #cart.open > .mk-mini-cart {
		display: flex;
		flex-direction: column;
	}

	.mk-mini-cart > li:first-child {
		order: 2;
	}

	.mk-mini-cart > li:nth-child(2),
	.mk-mini-cart__summary {
		display: contents;
	}

	.mk-mini-cart__item {
		grid-template-columns: 85px minmax(0, 1fr);
		grid-template-areas:
			"image header"
			"image meta"
			"remove purchase";
		column-gap: 12px;
		row-gap: 12px;
		align-items: start;
	}

	.mk-mini-cart__item--voucher {
		grid-template-columns: auto minmax(0, 1fr);
		grid-template-areas:
			"header header"
			"remove purchase";
	}

	.mk-mini-cart__image {
		width: 85px;
		height: 128px;
	}

	.mk-mini-cart__name {
		white-space: normal;
	}

	.mk-mini-cart__purchase {
		flex: 0 0 auto;
		width: auto;
		max-width: none;
		padding-left: 0;
		margin: 0;
		justify-content: flex-end;
	}

	.mk-mini-cart__continue {
		order: 1;
		margin-bottom: 16px;
	}

	.mk-mini-cart__actions {
		order: 3;
		flex-direction: column;
		gap: 20px;
		padding-top: 20px;
	}

	.mk-mini-cart__continue,
	.mk-mini-cart__checkout,
	.mk-mini-cart__total-row {
		width: 100%;
	}

	.mk-mini-cart__total-row {
		order: 1;
		justify-content: space-between;
	}

	.mk-mini-cart__checkout {
		order: 2;
	}

	.mk-mini-cart__remove {
		justify-self: start;
	}
}

@media (max-width: 575px) {
	.mk-header__cart .dropdown-menu {
		top: 64px;
	}

	.mk-mini-cart__price {
		min-width: 90px;
	}

	.mk-mini-cart{
		height: calc(100dvh - 64px);
	}

}

/* Nav row */
.mk-header__nav-row {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-top: 12px;
	position: relative;
}

.mk-header__catalog {
	position: static;
	flex-shrink: 0;
}

.mk-header__catalog-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	border: 1px solid var(--mk-brand-border);
	border-radius: 999px;
	background: var(--mk-brand-bg-light);
	color: var(--mk-brand-text);
	font-size: 16px;
	line-height: 20px;
	cursor: pointer;
	white-space: nowrap;
	transition: background 0.2s;
}

.mk-header__catalog-btn:hover,
.mk-header__catalog-btn.is-open {
	background: rgba(208, 221, 145, 0.24);
}

.mk-header__catalog-btn svg {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

.mk-header__catalog-chevron {
	transition: transform 0.2s;
}

.mk-header__catalog-btn.is-open .mk-header__catalog-chevron {
	transform: rotate(180deg);
}

.mk-mega-menu {
	display: none;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 100vw;
	top: calc(100% + 8px);
	z-index: 1000;
	background: transparent;
	align-items: stretch;
	justify-content: center;
	padding: 0 24px 24px;
	box-sizing: border-box;
}

.mk-mega-menu.is-open {
	display: flex;
}

.mk-mega-menu__sidebar {
	flex: 0 0 264px;
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 16px 0;
	background: var(--mk-white);
	border-top: 1px solid var(--mk-border);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
	box-sizing: border-box;
}

.mk-mega-menu__parent {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	padding: 10px 16px;
	border-radius: 12px;
	font-size: 16px;
	line-height: 20px;
	color: var(--mk-fg-secondary);
	text-decoration: none;
	transition: background 0.15s, color 0.15s;
}

.mk-mega-menu__parent-arrow {
	display: none;
	flex-shrink: 0;
	color: #5b5b49;
}

.mk-mega-menu__parent:hover,
.mk-mega-menu__parent.is-active {
	background: #fbfbf9;
	color: var(--mk-fg-secondary);
	text-decoration: none;
}

.mk-mega-menu__content {
	flex: 0 0 max(540px, calc(75vw - 264px));
	width: max(540px, calc(75vw - 264px));
	overflow: hidden;
	visibility: hidden;
	background: transparent;
}

.mk-mega-menu:has(.mk-mega-menu__parent--has-children:hover) .mk-mega-menu__content,
.mk-mega-menu__content:hover {
	visibility: visible;
	background: var(--mk-white);
	border-top: 1px solid var(--mk-border);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.mk-mega-menu__panel {
	display: none;
}

.mk-mega-menu__panel.is-active {
	display: block;
}

.mk-mega-menu__grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	row-gap: 16px;
}

.mk-mega-menu__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	height: 146px;
	text-decoration: none;
	color: var(--mk-fg-secondary);
}

.mk-mega-menu__item:hover {
	color: var(--mk-fg-secondary);
	text-decoration: none;
}

.mk-mega-menu__item-media {
	width: 108px;
	height: 108px;
	flex-shrink: 0;
	padding: 5px;
	box-sizing: border-box;
	border-radius: 18px;
	overflow: hidden;
	background: #fbfbf9;
}

.mk-mega-menu__item-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mk-mega-menu__item-name {
	font-size: 14px;
	line-height: 16px;
	text-align: center;
}

.mk-mega-menu__fallback {
	display: inline-flex;
	padding: 10px 16px;
	border-radius: 12px;
	background: var(--mk-brand-bg-light);
	color: var(--mk-brand-text);
	text-decoration: none;
}

.mk-header__categories {
	display: flex;
	flex-wrap: nowrap;
	overflow: hidden;
	align-items: center;
	opacity: 0;
	gap: 8px;
	flex: 1;
	min-width: 0;
}

.mk-header__category-link {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
	padding: 8px 14px;
	border-radius: 999px;
	font-size: 16px;
	line-height: 20px;
	color: var(--mk-fg-secondary);
	text-decoration: none;
	white-space: nowrap;
	transition: background 0.2s, color 0.2s;
}

.mk-header__category-link:hover {
	background: var(--mk-brand-bg-light);
	color: var(--mk-fg-secondary);
	text-decoration: none;
}

/* Static cart button with label text (backend not wired yet) */
.mk-header__cart-static {
  gap: 6px;
  padding: 10px 16px !important;
  min-width: auto !important;
  border: 0;
  font-family: inherit;
  cursor: pointer;
}

.mk-header__cart-btn {
	gap: 6px;
	padding: 10px 11px !important;
	min-width: auto !important;
	border: 0;
	font-family: inherit;
	cursor: pointer;
}

.mk-header__cart-label {
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  color: var(--mk-fg-secondary);
  white-space: nowrap;
}

/* Hide default OC elements inside new header */
.mk-header #top,
.mk-header > header,
.mk-header > .container > nav#menu {
	display: none;
}

/* Nav drawer */
.mk-nav-drawer-wrapper {
	display: none;
	position: fixed;
	top: 52px;
	left: 0;
	right: 0;
	bottom: 0;
	clip-path: inset(0 -60px -60px -60px);
	pointer-events: none;
	z-index: 1200;
}

body.mk-drawer-open .mk-nav-drawer-wrapper {
	display: block;
}

.mk-nav-drawer {
	display: flex;
	position: absolute;
	top: 0;
	left: 20px;
	width: 346px;
	max-height: calc(100dvh - 52px);
	overflow-y: auto;
	flex-direction: column;
	background: var(--mk-white);
	border: 1px solid var(--mk-border);
	border-radius: 28px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	padding: 12px 16px 20px;
	box-sizing: border-box;
	pointer-events: auto;
}

.mk-nav-drawer__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
}

.mk-nav-drawer__close {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid var(--mk-border);
	border-radius: 999px;
	background: var(--mk-white);
	cursor: pointer;
	color: var(--mk-fg-primary);
	flex-shrink: 0;
}

.mk-nav-drawer__close:hover {
	border-color: var(--mk-fg-secondary);
}

.mk-nav-drawer__lang {
	margin-left: auto;
}

.mk-nav-drawer__nav {
	display: flex;
	flex-direction: column;
	flex: 1;
}

.mk-nav-drawer__link {
	display: block;
	padding: 12px 0;
	font-size: 16px;
	line-height: 22px;
	color: var(--mk-fg-primary);
	text-decoration: none;
}

.mk-nav-drawer__link.is-active {
	color: var(--mk-brand);
}

.mk-nav-drawer__footer {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
	margin-top: 20px;
}

.mk-nav-drawer__hours {
	font-size: 12px;
	line-height: 16px;
	color: var(--mk-fg-secondary);
}

.mk-nav-drawer__contact {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 4px;
}

.mk-nav-drawer__phone {
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
	color: var(--mk-fg-primary);
	text-decoration: none;
	white-space: nowrap;
}

.mk-nav-drawer__callback {
	font-size: 11px;
	font-weight: 600;
	line-height: 16px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--mk-brand);
	text-decoration: none;
}


/* Mobile */
.mk-header__burger {
	display: none;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid var(--mk-border);
	border-radius: 999px;
	background: var(--mk-white);
	cursor: pointer;
}

@media (max-width: 991px) {
	.mk-mega-menu {
		justify-content: flex-start;
		overflow: hidden;
	}

	.mk-mega-menu__parent-arrow {
		display: block;
	}

	.mk-mega-menu__content {
		flex: 1 1 0;
		width: auto;
		min-width: 0;
	}

	.mk-mega-menu__item {
		height: 134px;
	}

	.mk-mega-menu__item-media {
		width: 106px;
		height: 106px;
	}

	.mk-mega-menu__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 700px) {
	.mk-mega-menu__sidebar {
		flex: 0 0 200px;
	}

	.mk-mega-menu__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 575px) {
	.mk-mega-menu__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 1199px) {
	.mk-header__hours {
		display: none;
	}

	.mk-header__search-wrap {
		flex: 1;
		width: auto;
		min-width: 0;
	}
}

@media (max-width: 991px) {
	.mk-header__top {
		display: none;
	}

.mk-header__phone,
	.mk-header__callback {
		display: none;
	}

	.mk-header__burger {
		display: inline-flex;
	}

	.mk-header__main-row {
		flex-wrap: wrap;
	}

	.mk-header__actions {
		flex: 0 0 auto;
		gap: 8px;
	}

	.mk-header__search-wrap {
		flex: 1 1 0;
		min-width: 0;
		width: auto;
	}

	.mk-header__lang {
		display: none;
	}

	.mk-header__cart-label {
		display: none;
	}

	.mk-header__cart-static {
		gap: 0;
		padding: 10px !important;
		min-width: 44px !important;
		height: 44px;
		justify-content: center;
	}

	.mk-header__categories {
		gap: 4px;
	}

	.mk-header__category-link {
		padding: 6px 10px;
		font-size: 15px;
	}
}

/* Mobile — nav row hidden under burger */
@media (max-width: 575px) {
	.mk-header__nav-row {
		display: none;
	}

	.mk-nav-drawer-wrapper {
		display: none !important;
	}

}

/* Mobile full-screen menu */
.mk-mobile-menu {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 1200;
	background: var(--mk-white);
	flex-direction: column;
	overflow: hidden;
	box-sizing: border-box;
}

@media (max-width: 575px) {
	.mk-mobile-menu {
		display: flex;
		transform: translateX(-100%);
		transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
		pointer-events: none;
	}

	body.mk-drawer-open .mk-mobile-menu {
		transform: translateX(0);
		pointer-events: auto;
	}

	body.mk-drawer-open {
		overflow: hidden;
	}
}

.mk-mobile-menu__top {
	display: flex;
	align-items: center;
	padding: 8px 20px 12px;
	flex-shrink: 0;
}

.mk-mobile-menu__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid var(--mk-border);
	border-radius: 999px;
	background: var(--mk-white);
	cursor: pointer;
	flex-shrink: 0;
}

.mk-mobile-menu__lang {
	flex-shrink: 0;
	margin-left: 8px;
}

.mk-mobile-menu__top-spacer {
	flex: 1;
}

.mk-mobile-menu__top-actions {
	display: flex;
	align-items: center;
	gap: 8px;
}

.mk-mobile-menu__icon-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 1px solid var(--mk-border);
	border-radius: 999px;
	color: var(--mk-fg-secondary);
	flex-shrink: 0;
	text-decoration: none;
}

.mk-mobile-menu__icon-btn svg {
	width: 20px;
	height: 20px;
}

.mk-mobile-menu__icon-btn--cart {
	background: var(--mk-brand-bg);
	border: 2px solid var(--mk-white);
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.mk-mobile-menu__main {
	flex: 1;
	display: flex;
	flex-direction: column;
	overflow-y: auto;
	padding: 0 20px 24px;
	overflow: hidden;
}

.mk-mobile-menu__categories {
	display: flex;
	flex-direction: column;
	border-top: 1px solid var(--mk-border);
	margin-top: 4px;
}

.mk-mobile-menu__category {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 0;
	border-bottom: 1px solid var(--mk-border);
}

.mk-mobile-menu__category-link {
	flex: 1;
	font-size: 16px;
	line-height: 22px;
	color: var(--mk-fg-primary);
	text-decoration: none;
}

.mk-mobile-menu__category-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	padding: 0;
	border: none;
	background: transparent;
	cursor: pointer;
	color: var(--mk-fg-secondary);
	flex-shrink: 0;
}

.mk-mobile-menu__sub {
	position: absolute;
	top: 64px; /* __top height: 8px + 44px button + 12px */
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	overflow-y: auto;
	padding: 0 20px 24px;
	background: var(--mk-white);
	transform: translateX(100%);
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	pointer-events: none;
}

.mk-mobile-menu__sub.is-active {
	transform: translateX(0);
	pointer-events: auto;
}

.mk-mobile-menu__sub-header {
	padding: 8px 0 12px;
	flex-shrink: 0;
}

.mk-mobile-menu__back {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: none;
	border: none;
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
	line-height: 22px;
	color: var(--mk-fg-primary);
	padding: 4px 0;
}

.mk-mobile-menu__sub-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px 8px;
	padding-top: 16px;
}

.mk-mobile-menu__sub-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	text-decoration: none;
}

.mk-mobile-menu__sub-item-media {
	width: 100%;
	aspect-ratio: 1;
	border-radius: 16px;
	overflow: hidden;
	background: #fbfbf9;
	padding: 6px;
	box-sizing: border-box;
}

.mk-mobile-menu__sub-item-media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.mk-mobile-menu__sub-item-name {
	font-size: 12px;
	line-height: 16px;
	text-align: center;
	color: var(--mk-fg-secondary);
}

.mk-mobile-menu__nav {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	margin-top: 8px;
}

.mk-mobile-menu__nav-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	padding: 10px 0;
	font-size: 15px;
	line-height: 20px;
	color: var(--mk-fg-tertiary);
	text-decoration: none;
}

.mk-mobile-menu__nav-link.is-active {
	color: var(--mk-orange);
}

.mk-mobile-menu__nav-link.is-active::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url('../image/mamakupi/tab-active.svg') center / contain no-repeat;
	z-index: -1;
	transform: scale(1.4, 1.6);
}

.mk-mobile-menu__footer {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
	margin-top: auto;
	padding-top: 20px;
}

.mk-mobile-menu__hours {
	font-size: 12px;
	line-height: 16px;
	color: var(--mk-fg-secondary);
}

.mk-mobile-menu__contact {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 4px;
}

.mk-mobile-menu__phone {
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
	color: var(--mk-fg-primary);
	text-decoration: none;
	white-space: nowrap;
}

.mk-mobile-menu__callback {
	font-size: 11px;
	font-weight: 600;
	line-height: 16px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--mk-brand);
	text-decoration: none;
}

@media (max-width: 575px) {
	.mk-header__search-wrap {
		order: 2;
		flex: 0 0 auto;
		width: auto;
	}

	.mk-header-search__back {
		display: none;
		align-items: center;
		justify-content: center;
		width: 44px;
		height: 44px;
		margin: 0;
		padding: 0;
		border: 1px solid var(--mk-border);
		border-radius: 999px;
		background: var(--mk-white);
		color: var(--mk-fg-secondary);
	}

	.mk-header-search__back svg {
		width: 20px;
		height: 20px;
	}

	.mk-header-search {
		width: 44px;
		height: 44px;
		padding: 0;
		justify-content: center;
		cursor: pointer;
	}

	.mk-header-search__input {
		display: none;
	}

	body.mk-search-open {
		overflow: hidden;
	}

	.mk-header__search-wrap.is-mobile-open {
		position: fixed;
		inset: 0;
		z-index: 1600;
		display: flex;
		flex-direction: column;
		width: 100%;
		padding: 12px 16px 16px;
		background: var(--mk-white);
	}

	.mk-header__search-wrap.is-mobile-open .mk-header-search__back {
		display: inline-flex;
		flex-shrink: 0;
	}

	.mk-header__search-wrap.is-mobile-open .mk-header-search {
		width: 100%;
		height: 44px;
		padding: 10px 14px;
		justify-content: flex-start;
	}

	.mk-header__search-wrap.is-mobile-open #search {
		display: flex;
		flex: 1;
		min-width: 0;
	}

	.mk-header__search-wrap.is-mobile-open .mk-header-search__input {
		display: block;
	}

	.mk-header__search-wrap.is-mobile-open {
		gap: 12px;
	}

	.mk-header__search-wrap.is-mobile-open .mk-search-suggest {
		position: static;
		top: auto;
		left: auto;
		right: auto;
		max-height: calc(100dvh - 80px);
		overflow-y: auto;
		border-radius: 16px;
		box-shadow: none;
		border: none;
	}

	.mk-header__search-wrap.is-mobile-open .mk-header-search {
		order: 2;
	}

	.mk-header__search-wrap.is-mobile-open .mk-header-search__back {
		order: 1;
	}

	.mk-header__search-wrap.is-mobile-open {
		flex-wrap: nowrap;
	}

	.mk-header__search-wrap.is-mobile-open .mk-search-suggest {
		order: 3;
	}

	.mk-header__search-wrap.is-mobile-open {
		align-items: stretch;
	}

	.mk-header__search-wrap.is-mobile-open > .mk-header-search__back,
	.mk-header__search-wrap.is-mobile-open > .mk-header-search {
		display: inline-flex;
	}

	.mk-header__search-wrap.is-mobile-open {
		flex-direction: row;
		align-content: flex-start;
		flex-wrap: wrap;
	}

	.mk-header__logo {
		order: 3;
		flex: 1;
		justify-content: center;
	}

	.mk-header__actions {
		order: 4;
	}

	.mk-header__icon-btn--account {
		display: none;
	}

	.mk-search-suggest__list {
		padding: 0;
	}

	.mk-search-suggest__all {
		border: 1px solid var(--mk-border-tertiary);
		border-radius: 999px;
	}

	.mk-search-suggest__empty, .mk-search-suggest__all {
		padding: 8px 16px;
	}
}

/* Multi-phone dropdown (header / footer / mobile / contact) */
.mk-phones {
	position: relative;
	display: inline-block;
	max-width: 100%;
	vertical-align: top;
	z-index: 1;
}

.mk-phones--multi {
	z-index: 1200;
}

.mk-phones__current,
.mk-phones__item {
	color: inherit;
	text-decoration: none;
}

.mk-phones__details {
	position: relative;
}

.mk-phones__summary {
	list-style: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	user-select: none;
}

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

/* Галочка зліва */
.mk-phones__caret {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 12px;
	height: 12px;
	flex-shrink: 0;
	position: relative;
}

.mk-phones__caret::before {
	content: '';
	display: block;
	width: 8px;
	height: 5px;
	border-left: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(-45deg);
	opacity: 0.75;
	transition: transform 0.15s ease, opacity 0.15s ease;
}

.mk-phones__details[open] > .mk-phones__summary .mk-phones__caret::before {
	transform: rotate(135deg);
	opacity: 1;
}

.mk-phones__popup {
	position: absolute;
	z-index: 1500;
	top: calc(100% + 8px);
	left: 0;
	min-width: max(100%, 220px);
	padding: 12px 16px;
	background: var(--mk-white, #fff);
	border: 1px solid var(--mk-border, #e8e8e3);
	border-radius: 16px;
	box-shadow: 0 12px 32px rgba(29, 29, 21, 0.12);
	white-space: nowrap;
}

.mk-phones__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.mk-phones__list li {
	margin: 0;
	padding: 0;
}

.mk-phones__list li + li {
	margin-top: 8px;
}

.mk-phones__item {
	display: block;
	font-size: 14px;
	line-height: 1.35;
	color: var(--mk-fg-secondary, #5b5b49);
	text-decoration: none;
	transition: color 0.15s ease;
}

.mk-phones__item:hover,
.mk-phones__item.is-active {
	color: var(--mk-fg-secondary, #5b5b49);
	text-decoration: underline;
	background: none;
}

.mk-header__phone,
.mk-header__actions {
	overflow: visible;
	position: relative;
	z-index: 1;
}

.mk-phones--header .mk-phones__current {
	display: block;
	margin: 0;
	font-size: 16px;
	line-height: 20px;
	color: var(--mk-fg-secondary);
}

.mk-phones--header .mk-phones__current:hover {
	color: var(--mk-fg-secondary);
	text-decoration: none;
}

.mk-phones--header .mk-phones__popup {
	right: 0;
	left: auto;
}

.mk-phones--footer {
	display: block;
	z-index: 50;
}

.mk-phones--footer .mk-phones__current {
	font-size: 18px;
	line-height: 22px;
	color: #000;
}

.mk-phones--footer .mk-phones__popup {
	left: 0;
	right: auto;
	min-width: 240px;
}

.mk-phones--footer .mk-phones__item {
	font-size: 16px;
}

.mk-footer__card,
.mk-footer__card-value,
.mk-footer__sidebar {
	overflow: visible;
}

.mk-phones--drawer,
.mk-phones--mobile {
	text-align: right;
}

.mk-phones--drawer .mk-phones__summary,
.mk-phones--mobile .mk-phones__summary {
	flex-direction: row;
	justify-content: flex-end;
}

.mk-phones--drawer .mk-phones__current,
.mk-phones--mobile .mk-phones__current {
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
	color: var(--mk-fg-primary, #1d1d15);
}

.mk-phones--drawer .mk-phones__popup,
.mk-phones--mobile .mk-phones__popup {
	right: 0;
	left: auto;
}

.mk-phones--contact .mk-phones__current {
	font-size: 16px;
	line-height: 20px;
	font-weight: 500;
	color: var(--mk-fg-secondary, #5b5b49);
}

.mk-phones--contact .mk-phones__popup {
	left: 0;
	right: auto;
	min-width: 240px;
}

@media (max-width: 991px) {
	.mk-phones__popup {
		border-radius: 14px;
		padding: 12px 14px;
	}

			.mk-phones__item {
		font-size: 15px;
	}
}

/* Callback modal — above sticky header/nav (up to ~1700) */
.mk-callback-modal {
	z-index: 2100;
}

.modal-backdrop.mk-callback-backdrop {
	z-index: 2050;
}

.mk-callback-modal .modal-dialog {
	max-width: 420px;
	margin: 24px auto;
	padding: 0 16px;
}

.mk-callback-modal .modal-content {
	position: relative;
	border: 0;
	border-radius: 20px;
	box-shadow: 0 16px 48px rgba(40, 40, 30, 0.18);
	padding: 8px 8px 16px;
	overflow: hidden;
}

.mk-callback-modal__close {
	position: absolute;
	top: 12px;
	right: 14px;
	z-index: 2;
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 50%;
	background: transparent;
	font-size: 28px;
	line-height: 1;
	color: #5b5b49;
	cursor: pointer;
}

.mk-callback-modal .modal-header {
	border: 0;
	padding: 28px 24px 8px;
}

.mk-callback-modal .modal-title {
	font-size: 22px;
	line-height: 28px;
	font-weight: 600;
	color: #2b2b22;
	padding-right: 28px;
}

.mk-callback-modal .modal-body {
	padding: 8px 24px 16px;
}

.mk-callback-modal .form-group {
	margin-bottom: 14px;
}

.mk-callback-modal .control-label {
	display: block;
	margin-bottom: 6px;
	font-size: 13px;
	font-weight: 500;
	color: #5b5b49;
}

.mk-callback-modal .form-control {
	height: 48px;
	border-radius: 12px;
	border: 1px solid #e8e8e3;
	box-shadow: none;
	font-size: 16px;
}

.mk-callback-modal .form-control:focus {
	border-color: var(--mk-orange, #d1532a);
	box-shadow: none;
}

.mk-callback-modal .has-error .form-control {
	border-color: #c0392b;
}

.mk-callback-modal__submit {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 48px;
	margin-top: 8px;
	border: 0;
	border-radius: 999px;
	background: var(--mk-orange, #d1532a);
	color: #fff;
	font-size: 16px;
	font-weight: 500;
}

.mk-callback-modal__submit:hover,
.mk-callback-modal__submit:focus {
	background: var(--mk-orange-light, #f5855e);
	color: #fff;
}

.mk-callback-modal__success-text {
	margin: 0 0 20px;
	font-size: 16px;
	line-height: 24px;
	color: #5b5b49;
}

.mk-callback-modal .alert {
	margin-bottom: 12px;
	border-radius: 12px;
}

@media (max-width: 575px) {
	.mk-callback-modal .modal-dialog {
		margin: 12px auto;
	}

	.mk-callback-modal .modal-header,
	.mk-callback-modal .modal-body {
		padding-left: 16px;
		padding-right: 16px;
	}
}

/* Cart / option message modal — above header (~1700) and callback (~2100) */
.mk-cart-message-modal {
	z-index: 2300;
}

.modal-backdrop.mk-cart-message-backdrop {
	z-index: 2250;
}

.mk-cart-message-modal .modal-dialog {
	max-width: 440px;
	margin: 24px auto;
	padding: 0 16px;
}

.mk-cart-message-modal .modal-content {
	position: relative;
	border: 0;
	border-radius: 20px;
	box-shadow: 0 16px 48px rgba(40, 40, 30, 0.18);
	padding: 8px 8px 16px;
	overflow: hidden;
}

.mk-cart-message-modal__close {
	position: absolute;
	top: 12px;
	right: 14px;
	z-index: 2;
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 50%;
	background: transparent;
	font-size: 28px;
	line-height: 1;
	color: #5b5b49;
	cursor: pointer;
}

.mk-cart-message-modal .modal-header {
	border: 0;
	padding: 28px 24px 8px;
}

.mk-cart-message-modal .modal-title {
	font-size: 22px;
	line-height: 28px;
	font-weight: 600;
	color: #2b2b22;
	padding-right: 28px;
}

.mk-cart-message-modal .modal-body {
	padding: 8px 24px 16px;
	font-size: 16px;
	line-height: 24px;
	color: #5b5b49;
	word-wrap: break-word;
}

.mk-cart-message-modal .modal-body a {
	color: var(--mk-orange, #d1532a);
	text-decoration: underline;
}

.mk-cart-message-modal__list {
	margin: 0;
	padding-left: 18px;
}

.mk-cart-message-modal__list li + li {
	margin-top: 6px;
}

.mk-cart-message-modal__ok {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 48px;
	margin-top: 8px;
	border: 0;
	border-radius: 999px;
	background: var(--mk-orange, #d1532a);
	color: #fff;
	font-size: 16px;
	font-weight: 500;
}

.mk-cart-message-modal__ok:hover,
.mk-cart-message-modal__ok:focus {
	background: var(--mk-orange-light, #f5855e);
	color: #fff;
}

.mk-cart-message-modal.is-error .mk-cart-message-modal__ok {
	background: #5b5b49;
}

.mk-cart-message-modal.is-error .mk-cart-message-modal__ok:hover,
.mk-cart-message-modal.is-error .mk-cart-message-modal__ok:focus {
	background: #2b2b22;
}

@media (max-width: 575px) {
	.mk-cart-message-modal .modal-dialog {
		margin: 12px auto;
	}

	.mk-cart-message-modal .modal-header,
	.mk-cart-message-modal .modal-body {
		padding-left: 16px;
		padding-right: 16px;
	}
}

