.mlk-pds {
	--paper: #fafaf9;
	--paper-deep: #f1eee9;
	--ink: #1c1917;
	--ink-soft: #2f2b27;
	--muted: #6b6451;
	--line: #e2ddd6;
	--accent: #958e09;
	--accent-dim: rgba(149, 142, 9, 0.12);
	--dark: #171412;
	--r: 18px;
	--ease: 220ms ease;
	--w: min(1200px, calc(100vw - 48px));
	color: var(--ink-soft);
	font-family: "Nunito Sans", sans-serif;
}

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

.mlk-pds .wrap {
	width: var(--w);
	margin: 0 auto;
}

.mlk-pds h1,
.mlk-pds h2,
.mlk-pds h3,
.mlk-pds h4 {
	margin: 0;
	font-family: "Lora", serif;
	font-weight: 500;
	line-height: 1.1;
	color: var(--ink-soft);
	letter-spacing: 0;
}

.mlk-pds p {
	margin: 0;
	color: var(--muted);
}

.mlk-pds .eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 10.5px;
	font-weight: 800;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--accent);
}

.mlk-pds .eyebrow::before {
	content: "";
	width: 32px;
	height: 1px;
	background: var(--accent);
}

.mlk-pds .sec-hd {
	display: grid;
	gap: 10px;
}

.mlk-pds .sec-hd.c {
	text-align: center;
	justify-items: center;
}

.mlk-pds .sec-hd h2 {
	font-size: clamp(1.75rem, 2.8vw, 2.6rem);
}

.mlk-pds .sec-hd p {
	max-width: 52ch;
	font-size: 0.95rem;
	line-height: 1.65;
}

.mlk-pds .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 50px;
	padding: 12px 26px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: 11.5px;
	font-weight: 800;
	letter-spacing: 0.18em;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	white-space: normal;
	transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease);
}

.mlk-pds .btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 28px rgba(18, 14, 11, 0.13);
}

.mlk-pds .btn-full {
	width: 100%;
}

.mlk-pds .btn-dark {
	background: var(--accent);
	color: #fff;
}

.mlk-pds .btn-dark:hover {
	background: #7a7407;
	color: #fff;
}

.mlk-pds .btn-ink {
	background: var(--ink);
	color: #fff;
	border-color: var(--ink);
}

.mlk-pds .btn-ink:hover {
	background: #0e0c0b;
	color: #fff;
}

.mlk-pds-details {
	display: grid;
	gap: 20px;
	width: 100%;
}

.mlk-pds .rating-row {
	display: flex;
	align-items: center;
	gap: 10px;
}

.mlk-pds .stars {
	color: var(--accent);
	font-size: 0.95rem;
	letter-spacing: 1px;
}

.mlk-pds .rating-txt {
	color: var(--muted);
	font-size: 11.5px;
	font-weight: 700;
}

.mlk-pds .rating-txt strong {
	color: var(--ink-soft);
}

.mlk-pds .prod-title {
	margin-top: 8px;
	font-size: clamp(1.9rem, 2.8vw, 2.8rem);
	line-height: 1.08;
}

.mlk-pds .usps {
	display: grid;
	gap: 7px;
}

.mlk-pds .usp {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	color: var(--ink-soft);
	font-size: 0.92rem;
	font-weight: 600;
	line-height: 1.55;
}

.mlk-pds .usp-dot {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	margin-top: 3px;
	border-radius: 50%;
	background: var(--accent-dim);
}

.mlk-pds .usp-dot svg {
	width: 10px;
	height: 10px;
	stroke: var(--accent);
	stroke-width: 3;
	fill: none;
}

.mlk-pds .var-block {
	display: grid;
	gap: 9px;
}

.mlk-pds .var-label {
	margin: 0;
	color: var(--muted);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.15em;
	line-height: 1.35;
	text-transform: uppercase;
}

.mlk-pds .var-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.mlk-pds .var-grid > :only-child {
	grid-column: 1 / -1;
}

.mlk-pds .var-card {
	position: relative;
	display: grid;
	gap: 0;
	width: 100%;
	min-width: 0;
	padding: 8px 14px 7px;
	border: 2px solid var(--line);
	border-radius: 14px;
	background: #fff;
	color: inherit;
	cursor: pointer;
	font: inherit;
	text-align: center;
	transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
}

.mlk-pds .var-card:hover {
	border-color: var(--accent);
}

.mlk-pds .var-card.sel {
	border-color: var(--accent);
	background: var(--paper-deep);
	box-shadow: 0 0 0 1px var(--accent);
}

.mlk-pds .var-dim {
	display: block;
	font-family: "Lora", serif;
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.2;
	color: var(--ink-soft);
	overflow-wrap: anywhere;
}

.mlk-pds .var-ext {
	display: block;
	color: var(--muted);
	font-size: 12px;
	line-height: 1.25;
}

.mlk-pds .var-price {
	display: block;
	margin-top: 2px;
	color: var(--accent);
	font-size: 0.9rem;
	font-weight: 800;
	line-height: 1.25;
}

.mlk-pds .var-tag {
	position: absolute;
	top: -9px;
	left: 50%;
	padding: 3px 10px;
	border-radius: 999px;
	background: var(--accent);
	color: #fff;
	font-size: 8.5px;
	font-weight: 800;
	letter-spacing: 0.2em;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
	transform: translateX(-50%);
}

.mlk-pds .price-dimension-note {
	display: grid;
	gap: 4px;
	padding: 12px 16px;
	border: 1px solid var(--line);
	border-radius: 14px;
	background: #fff;
	text-align: center;
}

.mlk-pds .price-dimension-note strong {
	font-family: "Lora", serif;
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--ink-soft);
}

.mlk-pds .price-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0;
	min-height: 74px;
	padding: 5px 16px;
	border: 1px solid var(--line);
	border-top: 3px solid var(--accent);
	border-radius: 14px;
	background: var(--paper-deep);
	text-align: center;
	line-height: 1.2;
}

.mlk-pds .price-row {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 6px;
}

.mlk-pds .price-val {
	color: var(--ink-soft);
	font-family: "Lora", serif;
	font-size: clamp(2rem, 2.8vw, 2.5rem);
	font-weight: 600;
}

.mlk-pds .price-cur {
	color: var(--muted);
	font-size: 0.88rem;
}

.mlk-pds .price-note {
	color: var(--muted);
	font-size: 11.5px;
	font-weight: 700;
}

.mlk-pds .cta-area {
	display: grid;
	gap: 9px;
}

.mlk-pds .trust-strip {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1px;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 13px;
	background: var(--line);
}

.mlk-pds .ti {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
	padding: 12px 8px;
	background: var(--paper);
	text-align: center;
}

.mlk-pds .ti svg,
.mlk-pds .ben-icon svg {
	width: 20px;
	height: 20px;
	stroke: var(--accent);
	stroke-width: 1.8;
	fill: none;
}

.mlk-pds .ti span {
	color: var(--ink-soft);
	font-size: 9.5px;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.35;
}

.mlk-pds .acc-list {
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 14px;
}

.mlk-pds .acc-item {
	border-bottom: 1px solid var(--line);
}

.mlk-pds .acc-item:last-child {
	border-bottom: 0;
}

.mlk-pds .acc-btn,
.mlk-pds .faq-btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	gap: 14px;
	border: 0;
	background: none;
	color: var(--ink-soft);
	cursor: pointer;
	text-align: left;
}

.mlk-pds .acc-btn {
	padding: 14px 16px;
	font-family: "Nunito Sans", sans-serif;
	font-size: 0.88rem;
	font-weight: 700;
}

.mlk-pds .acc-icon {
	flex: 0 0 auto;
	color: var(--muted);
	font-size: 1rem;
	transition: transform 0.22s ease;
}

.mlk-pds .acc-item.open .acc-icon {
	transform: rotate(180deg);
}

.mlk-pds .acc-body,
.mlk-pds .faq-ans {
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.3s ease;
}

.mlk-pds .acc-item.open .acc-body {
	max-height: 360px;
}

.mlk-pds .acc-inner {
	padding: 0 16px 14px;
	color: var(--muted);
	font-size: 0.86rem;
	line-height: 1.78;
}

.mlk-pds.specs-sec {
	padding: clamp(52px, 6vw, 80px) 0;
	background: var(--paper);
}

.mlk-pds .specs-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 2px;
	overflow: hidden;
	margin-top: clamp(32px, 4vw, 48px);
	border-radius: var(--r);
	background: var(--line);
}

.mlk-pds .specs-grid[data-count="4"] {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mlk-pds .spec-col {
	display: grid;
	align-content: start;
	gap: 12px;
	padding: clamp(26px, 3vw, 40px);
	background: #fff;
}

.mlk-pds .spec-num {
	color: var(--accent);
	font-family: "Lora", serif;
	font-size: 2.4rem;
	font-weight: 600;
	line-height: 1;
}

.mlk-pds .spec-list {
	display: grid;
	gap: 7px;
}

.mlk-pds .spec-item {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	color: var(--muted);
	font-size: 0.86rem;
	line-height: 1.65;
}

.mlk-pds .spec-item::before {
	content: "-";
	flex: 0 0 auto;
	color: var(--accent);
	font-weight: 700;
}

.mlk-pds.ben-sec {
	padding: clamp(52px, 6vw, 80px) 0;
	background: var(--paper-deep);
}

.mlk-pds .ben-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 2px;
	overflow: hidden;
	margin-top: clamp(32px, 4vw, 48px);
	border-radius: var(--r);
	background: var(--line);
}

.mlk-pds .ben-card {
	display: grid;
	align-content: start;
	gap: 10px;
	padding: clamp(24px, 3vw, 36px);
	background: var(--paper);
}

.mlk-pds .ben-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: var(--accent-dim);
}

.mlk-pds .ben-card p {
	color: var(--muted);
	font-size: 0.86rem;
	line-height: 1.78;
}

.mlk-pds.testi-sec {
	padding: clamp(52px, 6vw, 80px) 0;
	background: var(--dark);
}

.mlk-pds.testi-sec .sec-hd h2 {
	color: #fff;
}

.mlk-pds.testi-sec .sec-hd p {
	color: rgba(255, 255, 255, 0.5);
}

.mlk-pds .testi-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-top: clamp(32px, 4vw, 48px);
}

.mlk-pds .testi-card {
	display: grid;
	align-content: start;
	gap: 14px;
	padding: 26px;
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: var(--r);
	background: rgba(255, 255, 255, 0.05);
}

.mlk-pds .testi-stars,
.mlk-pds .testi-tag {
	color: var(--accent);
}

.mlk-pds .testi-tag {
	font-size: 9.5px;
	font-weight: 800;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}

.mlk-pds .testi-quote {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.88rem;
	font-style: italic;
	line-height: 1.8;
}

.mlk-pds .testi-who {
	display: flex;
	align-items: center;
	gap: 11px;
	padding-top: 8px;
	border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.mlk-pds .testi-av {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(149, 142, 9, 0.18);
	color: var(--accent);
	font-family: "Lora", serif;
	font-weight: 600;
}

.mlk-pds .testi-name {
	color: #fff;
	font-size: 0.85rem;
	font-weight: 700;
}

.mlk-pds .testi-loc {
	color: rgba(255, 255, 255, 0.38);
	font-size: 10.5px;
}

.mlk-pds.faq-sec {
	padding: clamp(52px, 6vw, 80px) 0;
	background: #fff;
}

.mlk-pds .faq-layout {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	align-items: start;
	gap: clamp(40px, 6vw, 80px);
}

.mlk-pds .faq-side {
	position: sticky;
	top: 32px;
	display: grid;
	gap: 18px;
}

.mlk-pds .faq-contact {
	display: grid;
	gap: 5px;
	line-height: 1.45;
}

.mlk-pds .faq-list {
	display: grid;
}

.mlk-pds .faq-item {
	border-bottom: 1px solid var(--line);
}

.mlk-pds .faq-item:first-child {
	border-top: 1px solid var(--line);
}

.mlk-pds .faq-btn {
	padding: 17px 0;
	font-family: "Lora", serif;
	font-size: clamp(0.95rem, 1.2vw, 1.05rem);
	font-weight: 500;
}

.mlk-pds .faq-plus {
	flex: 0 0 auto;
	color: var(--muted);
	font-size: 1.3rem;
	line-height: 1;
	transition: transform 0.22s ease, color 0.22s ease;
}

.mlk-pds .faq-item.open .faq-plus {
	color: var(--accent);
	transform: rotate(45deg);
}

.mlk-pds .faq-item.open .faq-ans {
	max-height: 280px;
}

.mlk-pds .faq-ans-inner {
	padding-bottom: 16px;
	color: var(--muted);
	font-size: 0.88rem;
	line-height: 1.8;
}

@media (max-width: 1100px) {
	.mlk-pds .ben-grid,
	.mlk-pds .testi-grid,
	.mlk-pds .specs-grid,
	.mlk-pds .specs-grid[data-count="4"] {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.mlk-pds .faq-layout {
		grid-template-columns: 1fr;
	}

	.mlk-pds .faq-side {
		position: static;
	}
}

@media (max-width: 600px) {
	.mlk-pds {
		--w: calc(100vw - 32px);
	}

	.mlk-pds .var-grid,
	.mlk-pds .ben-grid,
	.mlk-pds .testi-grid,
	.mlk-pds .specs-grid,
	.mlk-pds .specs-grid[data-count="4"] {
		grid-template-columns: 1fr;
	}
}
