:root {
	--marka-black: #080808;
	--marka-white: #fff;
	--marka-muted: #777;
	--marka-line: #e8e8e8;
	--marka-soft: #f5f5f5;
	--marka-radius-lg: 22px;
	--marka-radius-md: 16px;
}

body.marka-homepage-active .page-header,
body.marka-homepage-active .entry-header,
body.marka-homepage-active .page-title,
body.marka-homepage-active .mf-catalog-top-categories {
	display: none !important;
}

body.marka-homepage-active .site-content,
body.marka-homepage-active .content-area,
body.marka-homepage-active .entry-content {
	margin-top: 0 !important;
	padding-top: 0 !important;
}

body.marka-homepage-active .entry-content {
	margin-bottom: 0 !important;
}

.marka-homepage,
.marka-homepage * {
	box-sizing: border-box;
}

.marka-homepage {
	width: 100vw;
	max-width: 100vw;
	margin-inline: calc(50% - 50vw);
	background: var(--marka-white);
	color: var(--marka-black);
	direction: rtl;
	overflow: hidden;
}

.marka-homepage a {
	text-decoration: none !important;
}

.marka-homepage__inner {
	width: min(1440px, calc(100% - 48px));
	margin: 0 auto;
	padding: 28px 0 88px;
}

.marka-home-hero {
	margin: 0 0 76px;
}

.marka-home-banner {
	position: relative;
	display: block;
	color: var(--marka-black) !important;
	background: var(--marka-soft);
	border-radius: var(--marka-radius-lg);
	overflow: hidden;
	isolation: isolate;
}

.marka-home-banner img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0;
	transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .4s ease;
}

.marka-home-banner:hover img {
	transform: scale(1.012);
	filter: contrast(1.02);
}

.marka-home-banner__cta {
	position: absolute;
	left: 20px;
	bottom: 20px;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	min-height: 42px;
	padding: 10px 15px;
	background: rgba(255,255,255,.94);
	color: var(--marka-black);
	font-size: 12px;
	font-weight: 800;
	border: 1px solid rgba(0,0,0,.08);
	border-radius: 999px;
	backdrop-filter: blur(8px);
	transition: background .25s ease, color .25s ease, transform .25s ease;
}

.marka-home-banner__cta svg,
.marka-home-section__more svg {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.marka-home-banner:hover .marka-home-banner__cta {
	background: var(--marka-black);
	color: var(--marka-white);
	transform: translateX(-3px);
}

.marka-home-section {
	margin: 0 0 88px;
}

.marka-home-section__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 25px;
}

.marka-home-section__eyebrow {
	display: block;
	margin-bottom: 7px;
	color: var(--marka-muted);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .02em;
}

.marka-home-section__head h2 {
	margin: 0;
	color: var(--marka-black);
	font-size: clamp(25px, 2.3vw, 38px);
	font-weight: 900;
	line-height: 1.25;
	letter-spacing: -.04em;
}

.marka-home-section__more {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding-bottom: 5px;
	color: var(--marka-black) !important;
	font-size: 12px;
	font-weight: 800;
	border-bottom: 1px solid var(--marka-black);
}

.marka-home-categories__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.marka-home-banner--category {
	border-radius: var(--marka-radius-md);
}

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

.marka-product-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	background: transparent;
}

.marka-product-card__media {
	position: relative;
	aspect-ratio: 4 / 5;
	background: var(--marka-soft);
	border-radius: var(--marka-radius-md);
	overflow: hidden;
	isolation: isolate;
}

.marka-product-card__image-link {
	display: block;
	width: 100%;
	height: 100%;
}

.marka-product-card__image,
.marka-product-card__media img {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	margin: 0 !important;
	object-fit: cover !important;
	object-position: center !important;
	transition: transform .55s cubic-bezier(.2,.7,.2,1) !important;
}

.marka-product-card:hover .marka-product-card__image,
.marka-product-card:hover .marka-product-card__media img {
	transform: scale(1.025);
}

.marka-product-card__badges {
	position: absolute;
	top: 11px;
	right: 11px;
	display: flex;
	gap: 6px;
	pointer-events: none;
}

.marka-product-card__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 29px;
	padding: 6px 10px;
	color: var(--marka-white);
	background: var(--marka-black);
	font-size: 10px;
	font-weight: 900;
	line-height: 1;
	border-radius: 999px;
}

.marka-product-card__badge--light {
	color: var(--marka-black);
	background: rgba(255,255,255,.94);
	border: 1px solid rgba(0,0,0,.08);
}

.marka-product-card__body {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	padding: 13px 2px 0;
}

.marka-product-card__vendor {
	display: block;
	margin-bottom: 5px;
	color: var(--marka-muted) !important;
	font-size: 10.5px;
	font-weight: 600;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.marka-product-card__title {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	min-height: 46px;
	margin: 0 0 12px;
	overflow: hidden;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.65;
}

.marka-product-card__title a {
	color: var(--marka-black) !important;
}

.marka-product-card__bottom {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 10px;
	margin-top: auto;
}

.marka-product-card__price {
	min-width: 0;
	color: var(--marka-black);
	font-size: 13px;
	font-weight: 900;
	line-height: 1.65;
}

.marka-product-card__price .price,
.marka-product-card__price ins,
.marka-product-card__price bdi {
	color: inherit !important;
	font-weight: inherit !important;
	text-decoration: none !important;
}

.marka-product-card__price del {
	display: block;
	color: #999 !important;
	font-size: 10px;
	font-weight: 500;
	opacity: 1 !important;
}

.marka-product-card__action {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	flex: 0 0 42px;
	width: 42px;
	height: 42px;
	min-width: 42px;
	padding: 0 !important;
	margin: 0 !important;
	color: var(--marka-white) !important;
	background: var(--marka-black) !important;
	border: 0 !important;
	border-radius: 50% !important;
	box-shadow: none !important;
	transition: transform .2s ease, background .2s ease !important;
}

.marka-product-card__action:hover {
	transform: translateY(-2px);
	background: #222 !important;
}

.marka-product-card__action span {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	white-space: nowrap;
	border: 0;
}

.marka-product-card__action svg {
	width: 19px;
	height: 19px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.marka-product-card__action.added::after,
.marka-product-card .added_to_cart.wc-forward {
	display: none !important;
}

.marka-product-card__action.loading::after {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	border-radius: inherit;
}

.marka-product-card__action.loading {
	opacity: .6;
	pointer-events: none;
}

.marka-product-card__action.loading svg {
	opacity: 0;
}

.marka-product-card .added_to_cart.wc-forward {
	display: none !important;
}

.marka-product-card__action.loading::after {
	content: '';
	width: 16px;
	height: 16px;
	margin: auto;
	border: 2px solid rgba(255,255,255,.45);
	border-top-color: #fff;
	border-radius: 50%;
	animation: marka-spin .7s linear infinite;
}

@keyframes marka-spin { to { transform: rotate(360deg); } }

.marka-marketplace-strip {
	display: grid;
	grid-template-columns: 1.15fr .85fr;
	align-items: center;
	gap: 40px;
	margin: 0 0 88px;
	padding: clamp(34px, 5vw, 72px);
	color: var(--marka-white);
	background: var(--marka-black);
	border-radius: var(--marka-radius-lg);
	overflow: hidden;
}

.marka-marketplace-strip__copy > span {
	display: block;
	margin-bottom: 13px;
	color: #aaa;
	font-size: 11px;
	font-weight: 700;
}

.marka-marketplace-strip h2 {
	margin: 0 0 14px;
	color: inherit;
	font-size: clamp(28px, 3.2vw, 50px);
	font-weight: 900;
	line-height: 1.3;
	letter-spacing: -.04em;
}

.marka-marketplace-strip p {
	max-width: 620px;
	margin: 0;
	color: #c7c7c7;
	font-size: 14px;
	line-height: 2;
}

.marka-marketplace-strip__name {
	direction: ltr;
	color: #fff;
	font-size: clamp(52px, 8vw, 122px);
	font-weight: 950;
	line-height: .8;
	letter-spacing: -.09em;
	text-align: left;
	opacity: .12;
	white-space: nowrap;
}

.marka-home-benefits {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	border-top: 1px solid var(--marka-line);
	border-bottom: 1px solid var(--marka-line);
}

.marka-home-benefit {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	min-width: 0;
	padding: 26px 22px;
	border-left: 1px solid var(--marka-line);
}

.marka-home-benefit:last-child {
	border-left: 0;
}

.marka-home-benefit__number {
	flex: 0 0 auto;
	color: #aaa;
	font-size: 11px;
	font-weight: 800;
}

.marka-home-benefit h3 {
	margin: 0 0 6px;
	color: var(--marka-black);
	font-size: 13px;
	font-weight: 900;
	line-height: 1.55;
}

.marka-home-benefit p {
	margin: 0;
	color: var(--marka-muted);
	font-size: 11px;
	line-height: 1.8;
}

@media (max-width: 1100px) {
	.marka-homepage__inner {
		width: min(100% - 34px, 1200px);
	}

	.marka-products-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

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

	.marka-home-benefit:nth-child(2) {
		border-left: 0;
	}

	.marka-home-benefit:nth-child(-n+2) {
		border-bottom: 1px solid var(--marka-line);
	}
}

@media (max-width: 767px) {
	.marka-homepage__inner {
		width: min(100% - 24px, 680px);
		padding-top: 14px;
		padding-bottom: 54px;
	}

	.marka-home-hero,
	.marka-home-section,
	.marka-marketplace-strip {
		margin-bottom: 58px;
	}

	.marka-home-banner,
	.marka-home-banner--category,
	.marka-marketplace-strip {
		border-radius: 14px;
	}

	.marka-home-banner__cta {
		left: 11px;
		bottom: 11px;
		min-height: 35px;
		padding: 8px 11px;
		font-size: 10px;
	}

	.marka-home-section__head {
		align-items: center;
		margin-bottom: 18px;
	}

	.marka-home-section__head h2 {
		font-size: 24px;
	}

	.marka-home-section__more {
		font-size: 10.5px;
	}

	.marka-home-categories__grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.marka-products-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 28px 10px;
	}

	.marka-product-card__media {
		border-radius: 12px;
	}

	.marka-product-card__body {
		padding-top: 10px;
	}

	.marka-product-card__vendor {
		font-size: 9.5px;
	}

	.marka-product-card__title {
		min-height: 42px;
		margin-bottom: 9px;
		font-size: 12px;
		line-height: 1.7;
	}

	.marka-product-card__price {
		font-size: 11px;
	}

	.marka-product-card__action {
		flex-basis: 36px;
		width: 36px;
		height: 36px;
		min-width: 36px;
	}

	.marka-product-card__action svg {
		width: 17px;
		height: 17px;
	}

	.marka-product-card__badge {
		min-height: 25px;
		padding: 5px 8px;
		font-size: 9px;
	}

	.marka-marketplace-strip {
		grid-template-columns: 1fr;
		gap: 28px;
		padding: 32px 24px;
	}

	.marka-marketplace-strip__name {
		font-size: 62px;
		text-align: right;
	}

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

	.marka-home-benefit,
	.marka-home-benefit:nth-child(2),
	.marka-home-benefit:last-child {
		padding: 21px 8px;
		border-left: 0;
		border-bottom: 1px solid var(--marka-line);
	}

	.marka-home-benefit:last-child {
		border-bottom: 0;
	}
}

@media (max-width: 420px) {
	.marka-home-banner__cta {
		display: none;
	}

	.marka-product-card__bottom {
		gap: 6px;
	}

	.marka-product-card__price {
		font-size: 10px;
	}
}

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

/* ===== V3 Triple Editorial Hero ===== */
.marka-v3-hero {
    display: grid;
    grid-template-columns: minmax(360px,.78fr) minmax(0,1.22fr);
    min-height: 720px;
    margin: 18px 0 18px;
    color: #fff;
    background: #050505;
    border-radius: 30px;
    overflow: hidden;
    isolation: isolate;
}

.marka-v3-hero__copy {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(34px,4.8vw,72px);
    background:
      radial-gradient(circle at 16% 20%, rgba(255,255,255,.08), transparent 24%),
      #050505;
}

.marka-v3-hero__topline,
.marka-v3-hero__footer {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    color: #8c8c8c;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .13em;
    direction: ltr;
}

.marka-v3-hero h1 {
    margin: auto 0 20px;
    color: #fff;
    font-size: clamp(58px,6vw,96px);
    font-weight: 950;
    line-height: .95;
    letter-spacing: -.075em;
}

.marka-v3-hero h1 span,
.marka-v3-hero h1 strong { display:block; }
.marka-v3-hero h1 strong { font-weight: 300; color:#d6d6d6; }

.marka-v3-hero__copy > p {
    max-width: 530px;
    margin: 0 0 30px;
    color: #aaa;
    font-size: 13px;
    line-height: 2.05;
}

.marka-v3-hero__actions { display:flex; flex-wrap:wrap; gap:10px; }
.marka-v3-button {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    min-height:50px;
    padding:12px 20px;
    border-radius:999px;
    font-size:11px;
    font-weight:900;
    transition:transform .25s ease,background .25s ease,color .25s ease;
}
.marka-v3-button svg { width:17px;height:17px;fill:none;stroke:currentColor;stroke-width:1.8; }
.marka-v3-button--light { color:#050505!important;background:#fff; }
.marka-v3-button--ghost { color:#fff!important;border:1px solid #323232; }
.marka-v3-button:hover { transform:translateY(-3px); }
.marka-v3-button--ghost:hover { color:#050505!important;background:#fff; }
.marka-v3-hero__footer { margin-top:52px;padding-top:20px;border-top:1px solid #242424; }

.marka-v3-hero__gallery {
    position:relative;
    display:grid;
    grid-template-columns: 1.16fr .84fr;
    grid-template-rows: 1fr 1fr;
    gap:2px;
    min-height:720px;
    background:#050505;
}

.marka-v3-hero__tile { position:relative;display:block;overflow:hidden;background:#161616; }
.marka-v3-hero__tile--clothing { grid-row:1 / 3; }
.marka-v3-hero__tile img { width:100%;height:100%;object-fit:cover;transition:transform .8s cubic-bezier(.2,.7,.2,1),filter .4s ease; }
.marka-v3-hero__tile::after { content:'';position:absolute;inset:0;background:linear-gradient(0deg,rgba(0,0,0,.52),transparent 48%);pointer-events:none; }
.marka-v3-hero__tile:hover img { transform:scale(1.035);filter:contrast(1.04) saturate(.9); }
.marka-v3-hero__tile > span { position:absolute;z-index:2;right:18px;bottom:17px;display:flex;align-items:center;gap:9px;color:#fff;font-size:14px;font-weight:900; }
.marka-v3-hero__tile > span b { font-size:9px;font-weight:800;opacity:.7; }

.marka-v3-hero__stamp {
    position:absolute;
    z-index:5;
    left:50%;
    top:50%;
    width:148px;
    height:148px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    color:#050505;
    background:#fff;
    border-radius:50%;
    transform:translate(-50%,-50%) rotate(-8deg);
    box-shadow:0 24px 70px rgba(0,0,0,.24);
    pointer-events:none;
}
.marka-v3-hero__stamp em,.marka-v3-hero__stamp small { font-style:normal;font-size:7px;font-weight:900;letter-spacing:.16em;direction:ltr; }
.marka-v3-hero__stamp strong { margin:5px 0;font-size:24px;font-weight:950;letter-spacing:-.06em;direction:ltr; }

.marka-v3-ticker { margin:0 0 82px;padding:14px 0;border-top:1px solid #111;border-bottom:1px solid #111;overflow:hidden;direction:ltr; }
.marka-v3-ticker__track { display:flex;align-items:center;gap:27px;width:max-content;animation:marka-v3-ticker 30s linear infinite; }
.marka-v3-ticker span { white-space:nowrap;font-size:10px;font-weight:900;letter-spacing:.16em; }
.marka-v3-ticker i { font-style:normal;font-size:9px; }
@keyframes marka-v3-ticker { to { transform:translateX(-50%); } }

.marka-v3-categories__head { align-items:end; }
.marka-v3-categories__head > p { max-width:360px;margin:0;color:#777;font-size:11px;line-height:1.9;text-align:left; }
.marka-v3-category-grid {
    display:grid;
    grid-template-columns: 1.15fr .85fr;
    grid-template-rows: 330px 330px;
    gap:14px;
}
.marka-v3-category { position:relative;display:block;overflow:hidden;border-radius:18px;background:#eee;color:#fff!important; }
.marka-v3-category--clothing { grid-row:1 / 3; }
.marka-v3-category img { width:100%;height:100%;object-fit:cover;transition:transform .75s cubic-bezier(.2,.7,.2,1),filter .4s ease; }
.marka-v3-category::after { content:'';position:absolute;inset:0;background:linear-gradient(0deg,rgba(0,0,0,.68),transparent 55%); }
.marka-v3-category:hover img { transform:scale(1.025);filter:contrast(1.04); }
.marka-v3-category__overlay { position:absolute;z-index:2;right:24px;left:24px;bottom:22px;display:grid;grid-template-columns:1fr auto;align-items:end;gap:4px 18px; }
.marka-v3-category__overlay span { grid-column:1/-1;color:rgba(255,255,255,.7);font-size:8px;font-weight:900;letter-spacing:.12em;direction:ltr;text-align:right; }
.marka-v3-category__overlay strong { color:#fff;font-size:clamp(28px,3vw,50px);font-weight:950;line-height:1; }
.marka-v3-category__overlay em { color:#fff;font-style:normal;font-size:10px;font-weight:800;border-bottom:1px solid rgba(255,255,255,.7);padding-bottom:4px; }

@media (max-width:1100px) {
    .marka-v3-hero { grid-template-columns: .9fr 1.1fr;min-height:620px; }
    .marka-v3-hero__gallery { min-height:620px; }
    .marka-v3-hero__stamp { width:118px;height:118px; }
    .marka-v3-hero__stamp strong { font-size:20px; }
    .marka-v3-category-grid { grid-template-rows:280px 280px; }
}

@media (max-width:767px) {
    .marka-v3-hero { grid-template-columns:1fr;min-height:auto;border-radius:16px; }
    .marka-v3-hero__copy { min-height:430px;padding:34px 24px; }
    .marka-v3-hero h1 { font-size:55px; }
    .marka-v3-hero__topline span:last-child { display:none; }
    .marka-v3-hero__footer { margin-top:32px;gap:8px;font-size:7px; }
    .marka-v3-hero__gallery { min-height:520px;grid-template-columns:1.1fr .9fr; }
    .marka-v3-hero__stamp { width:96px;height:96px; }
    .marka-v3-hero__stamp strong { font-size:17px; }
    .marka-v3-ticker { margin-bottom:58px; }
    .marka-v3-categories__head > p { display:none; }
    .marka-v3-category-grid { grid-template-columns:1fr 1fr;grid-template-rows:390px 220px;gap:10px; }
    .marka-v3-category--clothing { grid-column:1/3;grid-row:auto; }
    .marka-v3-category__overlay { right:14px;left:14px;bottom:14px;display:block; }
    .marka-v3-category__overlay span { margin-bottom:4px; }
    .marka-v3-category__overlay strong { display:block;font-size:27px; }
    .marka-v3-category__overlay em { display:none; }
}

@media (max-width:430px) {
    .marka-v3-hero__copy { min-height:400px; }
    .marka-v3-hero h1 { font-size:48px; }
    .marka-v3-button { min-height:46px;padding:10px 15px; }
    .marka-v3-hero__gallery { min-height:460px; }
    .marka-v3-hero__stamp { width:82px;height:82px; }
    .marka-v3-hero__stamp strong { font-size:15px;margin:3px 0; }
    .marka-v3-hero__stamp em,.marka-v3-hero__stamp small { font-size:5.8px; }
    .marka-v3-category-grid { grid-template-rows:340px 190px; }
}

/* ===== V4 Single Image Editorial Hero ===== */
.marka-v4-hero {
	position: relative;
	display: grid;
	grid-template-columns: minmax(380px, .82fr) minmax(0, 1.18fr);
	min-height: 700px;
	margin: 18px 0 18px;
	color: #fff;
	background: #050505;
	border-radius: 30px;
	overflow: hidden;
	isolation: isolate;
}

.marka-v4-hero__copy {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: clamp(34px, 4.8vw, 72px);
	background:
		radial-gradient(circle at 18% 20%, rgba(255,255,255,.08), transparent 26%),
		#050505;
}

.marka-v4-hero__topline,
.marka-v4-hero__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	color: #8c8c8c;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .13em;
	direction: ltr;
}

.marka-v4-hero__content {
	max-width: 620px;
	margin: auto 0;
}

.marka-v4-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 20px;
	color: #a7a7a7;
	font-size: 9px;
	font-weight: 900;
	letter-spacing: .15em;
	direction: ltr;
}

.marka-v4-hero__eyebrow::before {
	content: '';
	width: 28px;
	height: 1px;
	background: currentColor;
}

.marka-v4-hero h1 {
	margin: 0 0 24px;
	color: #fff;
	font-size: clamp(58px, 6vw, 100px);
	font-weight: 950;
	line-height: .96;
	letter-spacing: -.075em;
}

.marka-v4-hero h1 span,
.marka-v4-hero h1 strong {
	display: block;
}

.marka-v4-hero h1 strong {
	color: #d0d0d0;
	font-weight: 300;
}

.marka-v4-hero__content > p {
	max-width: 540px;
	margin: 0 0 30px;
	color: #aaa;
	font-size: 13px;
	line-height: 2.05;
}

.marka-v4-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.marka-v4-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 50px;
	padding: 12px 20px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 900;
	transition: transform .25s ease, background .25s ease, color .25s ease;
}

.marka-v4-button svg {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.marka-v4-button--light {
	color: #050505 !important;
	background: #fff;
}

.marka-v4-button--ghost {
	color: #fff !important;
	border: 1px solid #323232;
}

.marka-v4-button:hover {
	transform: translateY(-3px);
}

.marka-v4-button--ghost:hover {
	color: #050505 !important;
	background: #fff;
}

.marka-v4-hero__footer {
	padding-top: 20px;
	border-top: 1px solid #242424;
}

.marka-v4-hero__visual {
	position: relative;
	display: block;
	min-width: 0;
	min-height: 700px;
	background: #d8d7ce;
	overflow: hidden;
	isolation: isolate;
}

.marka-v4-hero__visual::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0,0,0,.12), transparent 28%, transparent 72%, rgba(0,0,0,.05));
	pointer-events: none;
}

.marka-v4-hero__visual > img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .4s ease;
}

.marka-v4-hero__visual:hover > img {
	transform: scale(1.018);
	filter: contrast(1.02);
}

.marka-v4-hero__image-tag {
	position: absolute;
	z-index: 3;
	top: 22px;
	left: 22px;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 9px 12px;
	color: #050505;
	background: rgba(255,255,255,.9);
	border: 1px solid rgba(0,0,0,.08);
	border-radius: 999px;
	backdrop-filter: blur(8px);
	direction: ltr;
}

.marka-v4-hero__image-tag small,
.marka-v4-hero__image-tag strong {
	font-size: 7px;
	font-weight: 900;
	letter-spacing: .11em;
}

.marka-v4-hero__image-tag strong {
	padding-left: 10px;
	border-left: 1px solid rgba(0,0,0,.15);
}

.marka-v4-hero__circle {
	position: absolute;
	z-index: 3;
	right: 28px;
	bottom: 28px;
	width: 126px;
	height: 126px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #050505;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 20px 60px rgba(0,0,0,.18);
	transform: rotate(8deg);
	direction: ltr;
}

.marka-v4-hero__circle span {
	font-size: 22px;
	font-weight: 950;
	letter-spacing: -.06em;
}

.marka-v4-hero__circle small {
	margin-top: 4px;
	font-size: 6px;
	font-weight: 900;
	letter-spacing: .15em;
}

@media (max-width: 1100px) {
	.marka-v4-hero {
		grid-template-columns: .9fr 1.1fr;
		min-height: 620px;
	}

	.marka-v4-hero__visual {
		min-height: 620px;
	}

	.marka-v4-hero__circle {
		width: 104px;
		height: 104px;
	}
}

@media (max-width: 767px) {
	.marka-v4-hero {
		grid-template-columns: 1fr;
		min-height: auto;
		border-radius: 16px;
	}

	.marka-v4-hero__visual {
		order: 1;
		min-height: 0;
		aspect-ratio: 958 / 1080;
		background: #d8d7ce;
	}

	.marka-v4-hero__visual > img {
		width: 100%;
		height: 100%;
		object-fit: contain;
	}

	.marka-v4-hero__copy {
		order: 2;
		min-height: 420px;
		padding: 30px 22px 32px;
	}

	.marka-v4-hero__topline span:last-child {
		display: none;
	}

	.marka-v4-hero__content {
		margin: 44px 0;
	}

	.marka-v4-hero h1 {
		font-size: clamp(47px, 14vw, 64px);
	}

	.marka-v4-hero__content > p {
		font-size: 12px;
		line-height: 1.95;
	}

	.marka-v4-hero__footer {
		gap: 7px;
		font-size: 7px;
	}

	.marka-v4-hero__image-tag {
		top: 12px;
		left: 12px;
	}

	.marka-v4-hero__circle {
		right: 14px;
		bottom: 14px;
		width: 86px;
		height: 86px;
	}

	.marka-v4-hero__circle span {
		font-size: 16px;
	}

	/* Category artwork contains its own typography. On mobile keep the full 3:2 artwork visible. */
	.marka-v3-category-grid {
		display: grid;
		grid-template-columns: 1fr;
		grid-template-rows: none;
		gap: 12px;
	}

	.marka-v3-category,
	.marka-v3-category--clothing,
	.marka-v3-category--shoes,
	.marka-v3-category--accessories {
		grid-column: auto;
		grid-row: auto;
		width: 100%;
		height: auto;
		aspect-ratio: 3 / 2;
		border-radius: 14px;
		background: #111;
	}

	.marka-v3-category img {
		width: 100% !important;
		height: 100% !important;
		object-fit: contain !important;
		object-position: center !important;
		transform: none !important;
	}

	.marka-v3-category::after,
	.marka-v3-category__overlay {
		display: none !important;
	}
}

@media (max-width: 430px) {
	.marka-v4-hero__copy {
		min-height: 390px;
	}

	.marka-v4-button {
		min-height: 46px;
		padding: 10px 15px;
	}

	.marka-v4-hero__image-tag {
		padding: 7px 9px;
	}

	.marka-v4-hero__circle {
		width: 78px;
		height: 78px;
	}
}
