:root {
	--malan-black: #050505;
	--malan-white: #ffffff;
	--malan-ink: #161616;
	--malan-muted: #666666;
	--malan-line: #e6e2d8;
	--malan-soft: #f7f7f4;
	--malan-accent: #d6b15e;
	--malan-accent-2: #8fa3b8;
	--malan-tint: #f7f5ef;
	--malan-radius: 10px;
	--malan-radius-sm: 8px;
	--malan-shadow: 0 18px 55px rgba(22, 22, 22, 0.11);
	--malan-container: min(100% - 40px, 1240px);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body.malan-theme {
	position: relative;
	margin: 0;
	overflow-x: hidden;
	background:
		linear-gradient(180deg, #ffffff 0%, #ffffff 54%, var(--malan-tint) 100%);
	color: var(--malan-ink);
	font-family: Inter, Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.5;
}

body.malan-theme::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background:
		linear-gradient(90deg, rgba(5, 5, 5, 0.025) 1px, transparent 1px) 0 0 / 92px 92px,
		linear-gradient(180deg, rgba(5, 5, 5, 0.018) 1px, transparent 1px) 0 0 / 92px 92px;
	mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 72%, transparent 100%);
}

.malan-theme a {
	color: inherit;
	text-decoration: none;
}

.malan-theme img {
	display: block;
	max-width: 100%;
	height: auto;
}

.malan-theme svg {
	width: 1em;
	height: 1em;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.malan-site {
	position: relative;
	z-index: 1;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.malan-main {
	flex: 1 0 auto;
}

.malan-breadcrumbs {
	margin: 18px 0 18px;
	font-size: 13px;
	color: var(--malan-muted);
}

.malan-breadcrumbs ol {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 7px;
	margin-block: 0;
	padding-block: 0;
	list-style: none;
}

.malan-breadcrumbs li {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-width: 0;
}

.malan-breadcrumbs li + li::before {
	content: "/";
	color: color-mix(in srgb, var(--malan-muted) 50%, transparent);
}

.malan-breadcrumbs a {
	color: var(--malan-muted);
	transition: color 160ms ease;
}

.malan-breadcrumbs a:hover {
	color: var(--malan-black);
}

.malan-breadcrumbs span {
	color: var(--malan-black);
	font-weight: 700;
}

.malan-container {
	width: var(--malan-container);
	margin-inline: auto;
}

.malan-header {
	position: sticky;
	z-index: 50;
	top: 16px;
	padding-inline: 20px;
	margin-bottom: 16px;
}

.admin-bar .malan-header {
	top: 48px;
}

.malan-header__inner {
	width: min(100%, 1240px);
	min-height: 64px;
	margin-inline: auto;
	display: grid;
	grid-template-columns: auto minmax(220px, 1fr) minmax(220px, 360px) auto;
	align-items: center;
	gap: 24px;
	padding: 10px 18px;
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid var(--malan-line);
	border-bottom-color: color-mix(in srgb, var(--malan-accent) 45%, var(--malan-line));
	border-radius: 999px;
	box-shadow: var(--malan-shadow);
	backdrop-filter: blur(12px);
}

.custom-logo-link img {
	max-width: 180px;
	max-height: 42px;
	object-fit: contain;
}

.malan-logo-text {
	display: inline-flex;
	align-items: center;
	font-size: clamp(26px, 4vw, 42px);
	line-height: 1;
	font-weight: 700;
	letter-spacing: 0;
}

.malan-header .malan-logo-text {
	font-size: 34px;
}

.malan-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(16px, 2vw, 34px);
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 14px;
	font-weight: 600;
}

.malan-nav a {
	padding: 8px 0;
}

.malan-nav a:hover,
.malan-nav .current-menu-item > a {
	color: var(--malan-accent-2);
}

.malan-header__actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.malan-header__search {
	position: relative;
	min-width: 0;
}

.malan-smart-search {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 42px;
	align-items: center;
	min-width: 0;
	height: 44px;
	border: 1px solid var(--malan-line);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: inset 0 -1px 0 color-mix(in srgb, var(--malan-accent) 18%, transparent);
}

.malan-smart-search label {
	min-width: 0;
}

.malan-smart-search input {
	width: 100%;
	min-width: 0;
	height: 42px;
	padding: 0 4px 0 16px;
	border: 0;
	outline: 0;
	background: transparent;
	color: var(--malan-ink);
	font: inherit;
	font-size: 14px;
}

.malan-smart-search input::placeholder {
	color: color-mix(in srgb, var(--malan-muted) 82%, transparent);
}

.malan-smart-search button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	margin-right: 4px;
	border: 0;
	border-radius: 50%;
	background: var(--malan-black);
	color: var(--malan-white);
	cursor: pointer;
}

.malan-smart-search__results {
	position: absolute;
	z-index: 80;
	top: calc(100% + 8px);
	left: 0;
	right: 0;
	min-width: min(440px, calc(100vw - 32px));
	max-height: min(70vh, 520px);
	overflow: auto;
	padding: 10px;
	border: 1px solid var(--malan-line);
	border-radius: var(--malan-radius-sm);
	background: var(--malan-white);
	box-shadow: var(--malan-shadow);
}

.malan-smart-search__title {
	margin: 6px 6px 8px;
	color: var(--malan-muted);
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
}

.malan-smart-search__item,
.malan-smart-search__category,
.malan-smart-search__all,
.malan-smart-search__empty {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 9px;
	border-radius: 8px;
	color: var(--malan-ink);
}

.malan-smart-search__item:hover,
.malan-smart-search__category:hover,
.malan-smart-search__all:hover {
	background: var(--malan-soft);
}

.malan-smart-search__item img,
.malan-smart-search__thumb {
	flex: 0 0 44px;
	width: 44px;
	height: 44px;
	border-radius: 8px;
	object-fit: cover;
	background: var(--malan-tint);
}

.malan-smart-search__item span {
	min-width: 0;
}

.malan-smart-search__item strong {
	display: block;
	overflow: hidden;
	font-size: 13px;
	line-height: 1.25;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.malan-smart-search__item small {
	display: block;
	margin-top: 3px;
	color: var(--malan-muted);
	font-size: 12px;
}

.malan-smart-search__all {
	justify-content: center;
	margin-top: 6px;
	background: var(--malan-black);
	color: var(--malan-white);
	font-weight: 800;
}

.malan-social {
	display: flex;
	align-items: center;
	gap: 8px;
}

.malan-social__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 26px;
	height: 26px;
	padding: 0 7px;
	border-radius: 999px;
	background: var(--malan-soft);
	color: var(--malan-black);
	font-size: 11px;
	font-weight: 700;
}

.malan-social__link--instagram {
	color: var(--malan-accent);
}

.malan-social__link--telegram {
	color: var(--malan-accent-2);
}

.malan-social__link--viber {
	color: #665cac;
}

.malan-header__phone {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	font-weight: 700;
	white-space: nowrap;
}

.malan-cart-button,
.malan-menu-toggle,
.malan-button,
.malan-product-card__button {
	border: 0;
	cursor: pointer;
	font: inherit;
}

.malan-cart-button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--malan-black), #151515);
	color: var(--malan-white);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12), 0 8px 20px rgba(0, 0, 0, 0.18);
}

.malan-cart-count {
	position: absolute;
	right: -2px;
	top: -4px;
	min-width: 19px;
	height: 19px;
	padding: 0 5px;
	border-radius: 999px;
	background: var(--malan-accent);
	color: var(--malan-black);
	border: 1px solid rgba(0, 0, 0, 0.22);
	font-size: 11px;
	line-height: 17px;
	text-align: center;
}

.malan-menu-toggle {
	display: none;
	width: 42px;
	height: 42px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	border-radius: 50%;
	background: var(--malan-soft);
}

.malan-menu-toggle span {
	display: block;
	width: 18px;
	height: 2px;
	background: var(--malan-black);
}

.malan-hero {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	margin-top: -80px;
	padding: 130px 0 58px;
	background:
		radial-gradient(circle at 76% 32%, rgba(214, 177, 94, 0.16), transparent 24%),
		linear-gradient(135deg, #030303 0%, #0f0f0f 66%, #171513 100%);
	color: var(--malan-white);
}

.malan-hero::before,
.malan-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.malan-hero::before {
	z-index: -2;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px) 0 0 / 56px 56px,
		linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px) 0 0 / 56px 56px;
	mask-image: linear-gradient(90deg, transparent 0%, #000 28%, #000 100%);
}

.malan-hero::after {
	z-index: -1;
	top: auto;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(214, 177, 94, 0.86), transparent);
	animation: malan-hero-line 6s ease-in-out infinite;
}

.malan-hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
	gap: 48px;
	align-items: center;
	min-height: 360px;
}

.malan-hero h1 {
	max-width: 720px;
	margin: 0 0 16px;
	font-size: clamp(38px, 5.2vw, 76px);
	line-height: 0.98;
	letter-spacing: 0;
	text-wrap: balance;
}

.malan-hero p {
	max-width: 560px;
	margin: 0 0 32px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 18px;
}

.malan-hero__links {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	max-width: 720px;
}

.malan-pill-link {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 58px;
	gap: 16px;
	padding: 10px 12px 10px 20px;
	background:
		linear-gradient(90deg, rgba(214, 177, 94, 0.16), transparent 34%),
		var(--malan-white);
	color: var(--malan-black);
	border: 1px solid rgba(195, 154, 59, 0.22);
	border-radius: 999px;
	font-weight: 700;
	box-shadow: 0 12px 34px rgba(0, 0, 0, 0.12);
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.malan-pill-link::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(105deg, transparent 0 34%, rgba(143, 163, 184, 0.28) 45%, transparent 58%);
	transform: translateX(-120%);
	transition: transform 520ms ease;
}

.malan-pill-link:hover {
	transform: translateY(-2px);
	border-color: var(--malan-accent);
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.malan-pill-link:hover::after {
	transform: translateX(120%);
}

.malan-pill-link span {
	position: relative;
	z-index: 1;
	color: var(--malan-black);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.malan-pill-link svg {
	position: relative;
	z-index: 1;
	flex: 0 0 36px;
	width: 36px;
	height: 36px;
	padding: 9px;
	border-radius: 50%;
	background: var(--malan-accent);
	color: var(--malan-white);
	stroke-width: 2.4;
}

.malan-hero__visual {
	position: relative;
	min-height: 280px;
	perspective: 760px;
	transform-style: preserve-3d;
}

.malan-hero__frame,
.malan-hero__measure {
	position: absolute;
	pointer-events: none;
	will-change: transform;
}

.malan-hero__frame {
	inset: 10px 42px 24px 34px;
	border: 1px solid rgba(214, 177, 94, 0.38);
	border-radius: 24px;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px) 0 0 / 28px 28px,
		linear-gradient(180deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px) 0 0 / 28px 28px;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
	opacity: 0.62;
	transform: rotate(-4deg);
}

.malan-hero__measure {
	width: 190px;
	height: 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.42);
	border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.malan-hero__measure::before,
.malan-hero__measure::after {
	content: "";
	position: absolute;
	top: -6px;
	width: 1px;
	height: 34px;
	background: rgba(214, 177, 94, 0.72);
}

.malan-hero__measure::before {
	left: 0;
}

.malan-hero__measure::after {
	right: 0;
}

.malan-hero__measure--top {
	right: 16%;
	top: 26px;
}

.malan-hero__measure--bottom {
	right: 6%;
	bottom: 22px;
	width: 150px;
}

.malan-hero__product {
	position: absolute;
	width: 250px;
	aspect-ratio: 1;
	border-radius: 20px;
	background:
		radial-gradient(circle at center, #050505 0 12px, transparent 13px),
		repeating-linear-gradient(0deg, transparent 0 25px, #111111 25px 31px) center / 150px 132px no-repeat,
		linear-gradient(#ffffff, #f3f1ea);
	border: 1px solid rgba(255, 255, 255, 0.42);
	box-shadow:
		0 30px 80px rgba(0, 0, 0, 0.48),
		inset 0 0 0 18px #ffffff,
		inset 0 0 0 21px rgba(5, 5, 5, 0.72),
		0 0 0 1px rgba(214, 177, 94, 0.36);
	will-change: transform;
	animation: malan-product-float 7s ease-in-out infinite;
}

.malan-hero__product::before {
	content: "";
	position: absolute;
	inset: 18px;
	border: 2px solid rgba(5, 5, 5, 0.76);
	border-radius: 10px;
}

.malan-hero__product::after {
	content: "";
	position: absolute;
	inset: 9px;
	border: 1px solid rgba(214, 177, 94, 0.36);
	border-radius: 14px;
}

.malan-hero__product--one {
	right: 16%;
	top: 0;
	transform: rotate(-2deg);
}

.malan-hero__product--two {
	right: 0;
	bottom: 8px;
	border-radius: 50%;
	transform: rotate(26deg) scale(0.76);
	opacity: 0.9;
	animation-delay: -2.4s;
}

.malan-section,
.malan-page {
	padding: 70px 0;
}

.malan-reveal {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 620ms ease, transform 620ms ease;
}

.malan-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.malan-section--compact {
	padding-top: 52px;
}

.malan-section__head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 28px;
}

.malan-section h2,
.malan-page h1,
.malan-page h2 {
	margin: 0 0 24px;
	font-size: clamp(30px, 4vw, 48px);
	line-height: 1.1;
	letter-spacing: 0;
}

.malan-link {
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 4px;
}

.malan-wholesale,
.malan-cta,
.malan-instagram {
	position: relative;
	overflow: hidden;
	background: var(--malan-black);
	color: var(--malan-white);
}

.malan-wholesale::before,
.malan-cta::before,
.malan-instagram::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px) 0 0 / 64px 64px,
		linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px) 0 0 / 64px 64px;
	mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
	opacity: 0.35;
}

.malan-wholesale__inner {
	position: relative;
	z-index: 1;
	min-height: 210px;
	display: grid;
	grid-template-columns: 220px 1fr 220px;
	align-items: center;
	gap: 30px;
	padding: 42px 0;
	text-align: center;
}

.malan-wholesale h2,
.malan-cta h2,
.malan-instagram h2 {
	margin: 0 0 10px;
	font-size: clamp(28px, 4vw, 46px);
	line-height: 1.08;
	letter-spacing: 0;
}

.malan-wholesale p,
.malan-cta p,
.malan-instagram p {
	margin: 0 0 20px;
	color: rgba(255, 255, 255, 0.76);
}

.malan-wholesale__icon {
	position: relative;
	width: 120px;
	height: 92px;
	margin-inline: auto;
}

.malan-wholesale__icon span {
	position: absolute;
	inset: auto 0 0;
	height: 62px;
	border: 4px solid var(--malan-white);
	transform: skewY(-22deg);
}

.malan-wholesale__icon span:nth-child(2) {
	inset: auto 16px 14px;
}

.malan-wholesale__icon span:nth-child(3) {
	inset: auto 32px 28px;
}

.malan-wholesale__cart svg {
	width: 120px;
	height: 120px;
	stroke-width: 1.4;
}

.malan-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 11px 22px;
	border-radius: var(--malan-radius-sm);
	background: var(--malan-black);
	color: var(--malan-white);
	font-weight: 700;
	box-shadow: inset 0 -2px 0 var(--malan-accent);
	transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.malan-button:hover {
	transform: translateY(-1px);
	box-shadow: inset 0 -2px 0 var(--malan-accent), 0 12px 24px rgba(0, 0, 0, 0.14);
}

.malan-button--light {
	background: var(--malan-white);
	color: var(--malan-black);
	box-shadow: inset 0 0 0 1px rgba(195, 154, 59, 0.35);
}

.malan-button--outline-light {
	background: transparent;
	color: var(--malan-white);
	border: 1px solid rgba(255, 255, 255, 0.4);
}

.malan-button svg {
	margin-left: 8px;
}

body.malan-theme a.malan-button,
body.malan-theme a.malan-button:hover,
body.malan-theme a.malan-button:focus-visible {
	color: #ffffff;
	text-decoration: none;
}

body.malan-theme a.malan-button--light,
body.malan-theme a.malan-button--light:hover,
body.malan-theme a.malan-button--light:focus-visible {
	background: #ffffff;
	color: #050505;
}

body.malan-theme a.malan-button--outline-light,
body.malan-theme a.malan-button--outline-light:hover,
body.malan-theme a.malan-button--outline-light:focus-visible {
	background: transparent;
	color: #ffffff;
}

.malan-benefits {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.malan-production__inner {
	display: grid;
	grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1fr);
	gap: 34px;
	align-items: center;
}

.malan-production__visual {
	position: relative;
	min-height: 430px;
	border: 1px solid var(--malan-line);
	border-radius: var(--malan-radius);
	background:
		linear-gradient(90deg, rgba(5, 5, 5, 0.04) 1px, transparent 1px) 0 0 / 34px 34px,
		linear-gradient(180deg, rgba(5, 5, 5, 0.03) 1px, transparent 1px) 0 0 / 34px 34px,
		var(--malan-tint);
	overflow: hidden;
}

.malan-production__sample {
	position: absolute;
	left: 50%;
	top: 50%;
	width: min(78%, 310px);
	aspect-ratio: 0.72;
	border-radius: 18px;
	background:
		radial-gradient(circle at center, #050505 0 18px, transparent 19px),
		repeating-linear-gradient(45deg, transparent 0 16px, #111111 16px 23px) center / 78% 76% no-repeat,
		linear-gradient(#ffffff, #f3f1ea);
	border: 1px solid rgba(5, 5, 5, 0.18);
	box-shadow: 0 32px 70px rgba(0, 0, 0, 0.18), inset 0 0 0 22px #ffffff;
	transform: translate(-50%, -50%) rotate(-7deg);
}

.malan-production .malan-benefits {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.malan-gallery-section {
	background:
		linear-gradient(180deg, transparent 0%, rgba(247, 245, 239, 0.72) 100%);
}

.malan-benefit {
	position: relative;
	overflow: hidden;
	min-height: 190px;
	padding: 28px 22px;
	background: #ffffff;
	color: var(--malan-ink);
	border: 1px solid var(--malan-line);
	border-radius: var(--malan-radius);
	text-align: center;
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.06);
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.malan-benefit::before {
	content: "";
	position: absolute;
	inset: 0 auto auto 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, var(--malan-black), var(--malan-accent), var(--malan-accent-2));
	transform: scaleX(0.34);
	transform-origin: left;
	transition: transform 260ms ease;
}

.malan-benefit:hover {
	transform: translateY(-3px);
	border-color: color-mix(in srgb, var(--malan-accent) 48%, var(--malan-line));
	box-shadow: 0 22px 48px rgba(0, 0, 0, 0.09);
}

.malan-benefit:hover::before {
	transform: scaleX(1);
}

.malan-benefit__check {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-bottom: 20px;
	border-radius: 50%;
	background: color-mix(in srgb, var(--malan-accent) 18%, #ffffff);
	color: var(--malan-accent-2);
}

.malan-benefit h3 {
	margin: 0 0 8px;
	font-size: 17px;
	line-height: 1.25;
	letter-spacing: 0;
}

.malan-benefit p {
	margin: 0;
	color: var(--malan-muted);
	font-size: 14px;
}

.malan-instagram__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
	gap: 44px;
	align-items: center;
	padding: 52px 0;
}

.malan-instagram__device {
	position: relative;
	width: min(100%, 280px);
	aspect-ratio: 0.62;
	justify-self: center;
	border: 10px solid rgba(255, 255, 255, 0.92);
	border-radius: 34px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 24%),
		repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 72px),
		#111111;
	box-shadow: 0 34px 80px rgba(0, 0, 0, 0.4);
}

.malan-instagram__device::before,
.malan-instagram__device::after {
	content: "";
	position: absolute;
	left: 18px;
	right: 18px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.12);
}

.malan-instagram__device::before {
	top: 54px;
	height: 54px;
}

.malan-instagram__device::after {
	bottom: 22px;
	height: 160px;
	background:
		radial-gradient(circle at 50% 40%, var(--malan-accent), transparent 16%),
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0 8px, transparent 8px 18px);
}

.malan-cta__inner {
	position: relative;
	z-index: 1;
	padding: 44px 0;
	text-align: center;
}

.malan-wholesale,
.malan-cta,
.malan-instagram,
.malan-footer {
	border-top: 1px solid rgba(195, 154, 59, 0.26);
	background:
		radial-gradient(circle at 16% 0%, rgba(214, 177, 94, 0.16), transparent 26%),
		linear-gradient(135deg, #050505 0%, #111111 72%, #191714 100%);
}

.malan-content {
	max-width: 980px;
}

.malan-content p,
.malan-content li {
	color: #333333;
}

.malan-content a {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.malan-info-page__inner {
	display: grid;
	gap: 32px;
}

.malan-contacts-page {
	padding-top: 42px;
}

.malan-contacts-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.72fr);
	gap: 34px;
	align-items: stretch;
	padding: clamp(28px, 4vw, 54px);
	border-radius: var(--malan-radius);
	background: var(--malan-black);
	color: var(--malan-white);
}

.malan-eyebrow {
	margin: 0 0 14px;
	color: rgba(255, 255, 255, 0.64);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

.malan-contacts-hero h1 {
	max-width: 760px;
	margin: 0 0 18px;
	color: var(--malan-white);
	font-size: clamp(46px, 7vw, 92px);
	line-height: 0.98;
	letter-spacing: 0;
}

.malan-contacts-hero__text {
	max-width: 660px;
}

.malan-contacts-hero__text p {
	margin: 0 0 14px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 18px;
}

.malan-contacts-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 26px;
}

.malan-contacts-panel {
	display: grid;
	align-content: start;
	gap: 14px;
	padding: 24px;
	border-radius: var(--malan-radius-sm);
	background: var(--malan-white);
	color: var(--malan-black);
}

.malan-contacts-panel h2,
.malan-contact-card h2 {
	margin: 0;
	font-size: 22px;
	line-height: 1.18;
	letter-spacing: 0;
}

.malan-contact-row {
	display: grid;
	grid-template-columns: 38px minmax(0, 1fr);
	gap: 12px;
	align-items: center;
	padding: 13px 0;
	border-bottom: 1px solid var(--malan-line);
}

.malan-contact-row span,
.malan-contact-card > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--malan-black);
	color: var(--malan-white);
}

.malan-contact-row strong {
	min-width: 0;
	overflow-wrap: anywhere;
}

.malan-contacts-socials {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding-top: 6px;
}

.malan-contacts-socials a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 7px 12px;
	border-radius: 999px;
	background: var(--malan-soft);
	font-size: 13px;
	font-weight: 800;
}

.malan-contacts-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-top: 22px;
}

.malan-contact-card {
	display: grid;
	gap: 14px;
	min-height: 220px;
	padding: 24px;
	border: 1px solid var(--malan-line);
	border-radius: var(--malan-radius-sm);
	background: var(--malan-white);
}

.malan-contact-card p {
	margin: 0;
	color: var(--malan-muted);
}

.malan-footer {
	background: var(--malan-black);
	color: var(--malan-white);
}

.malan-footer__inner {
	width: var(--malan-container);
	margin-inline: auto;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 50px;
	align-items: center;
	padding: 54px 0;
}

.malan-footer .malan-logo-text {
	color: var(--malan-white);
}

.malan-footer__brand p {
	margin: 14px 0 0;
	color: rgba(255, 255, 255, 0.66);
}

.malan-footer__menu {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.malan-footer__menu a,
.malan-footer__contacts a {
	color: rgba(255, 255, 255, 0.82);
}

.malan-footer__contacts {
	display: grid;
	gap: 12px;
}

.malan-footer__contacts h2 {
	margin: 0 0 4px;
	font-size: 18px;
}

.malan-footer__contacts a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.malan-footer .malan-social__link {
	background: rgba(255, 255, 255, 0.12);
	color: var(--malan-white);
}

.malan-plugin-hint {
	padding: 18px;
	border: 1px dashed var(--malan-line);
	border-radius: var(--malan-radius-sm);
	background: var(--malan-soft);
	color: var(--malan-muted);
}

@keyframes malan-hero-line {
	0%,
	100% {
		transform: translateY(-46px) scaleX(0.38);
		opacity: 0;
	}

	35%,
	62% {
		opacity: 0.72;
	}

	50% {
		transform: translateY(-18px) scaleX(1);
	}
}

@keyframes malan-product-float {
	0%,
	100% {
		filter: drop-shadow(0 0 0 rgba(214, 177, 94, 0));
	}

	50% {
		filter: drop-shadow(0 12px 22px rgba(214, 177, 94, 0.16));
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.001ms !important;
	}
}

@media (max-width: 1100px) {
	.malan-header__inner {
		grid-template-columns: auto auto;
		justify-content: space-between;
	}

	.malan-header__search {
		grid-column: 1 / -1;
		grid-row: 2;
		width: 100%;
	}

	.malan-header__actions {
		grid-column: 2;
		grid-row: 1;
	}

	.malan-header__nav {
		position: absolute;
		top: calc(100% + 10px);
		left: 20px;
		right: 20px;
		display: none;
		padding: 20px;
		background: var(--malan-white);
		border: 1px solid var(--malan-line);
		border-radius: var(--malan-radius);
		box-shadow: var(--malan-shadow);
	}

	.malan-header.is-open .malan-header__nav {
		display: block;
	}

	.malan-nav {
		align-items: stretch;
		flex-direction: column;
		gap: 10px;
	}

	.malan-menu-toggle {
		display: inline-flex;
	}

	.malan-header__social {
		display: none;
	}

	.malan-benefits {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 760px) {
	:root {
		--malan-container: min(100% - 24px, 1240px);
	}

	.malan-breadcrumbs {
		margin: 12px 0 14px;
	}

	.admin-bar .malan-header,
	.malan-header {
		top: 8px;
		padding-inline: 12px;
	}

	.malan-header__inner {
		min-height: 56px;
		padding: 8px 10px 8px 16px;
		gap: 12px;
	}

	.malan-smart-search {
		height: 40px;
		grid-template-columns: 1fr 38px;
	}

	.malan-smart-search input {
		height: 38px;
		font-size: 13px;
	}

	.malan-smart-search button {
		width: 32px;
		height: 32px;
	}

	.malan-smart-search__results {
		left: -4px;
		right: -4px;
		min-width: 0;
	}

	.malan-header .malan-logo-text {
		font-size: 27px;
	}

	.malan-header__phone span {
		display: none;
	}

	.malan-header__phone {
		width: 38px;
		height: 38px;
		justify-content: center;
		border-radius: 50%;
		background: var(--malan-soft);
	}

	.malan-cart-button {
		width: 42px;
		height: 42px;
	}

	.malan-hero {
		margin-top: -72px;
		padding: 112px 0 28px;
	}

	.malan-hero__inner,
	.malan-instagram__inner,
	.malan-production__inner,
	.malan-wholesale__inner,
	.malan-footer__inner,
	.malan-contacts-hero,
	.malan-contacts-grid {
		grid-template-columns: 1fr;
	}

	.malan-hero__links {
		grid-template-columns: 1fr;
	}

	.malan-hero__visual {
		min-height: 112px;
	}

	.malan-hero__frame {
		inset: 18px 12px 18px 18px;
	}

	.malan-hero__measure {
		display: none;
	}

	.malan-hero__product {
		width: 118px;
		border-radius: 16px;
	}

	.malan-hero__product--one {
		right: 39%;
		top: 0;
	}

	.malan-hero__product--two {
		right: 0;
		bottom: 0;
	}

	.malan-section,
	.malan-page {
		padding: 48px 0;
	}

	.malan-section {
		padding: 36px 0;
	}

	.malan-section__head {
		align-items: start;
		flex-direction: column;
	}

	.malan-benefits {
		grid-template-columns: 1fr;
	}

	.malan-production__visual {
		min-height: 260px;
	}

	.malan-production .malan-benefits {
		grid-template-columns: 1fr;
	}

	.malan-wholesale__inner {
		text-align: center;
	}

	.malan-wholesale__cart {
		display: none;
	}

	.malan-contacts-page {
		padding-top: 32px;
	}

	.malan-contacts-hero {
		padding: 28px 20px;
	}

	.malan-contacts-hero h1 {
		font-size: 42px;
	}

	.malan-contacts-actions {
		display: grid;
	}
}
