/*
Theme Name: O2K
Theme URI: https://o2k.local
Author: Codex
Description: Custom WooCommerce landing theme for O2K.
Version: 1.1.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: o2k
*/

:root {
	--mp-brand-pink: #ff2f93;
	--mp-brand-pink-dark: #ec1c83;
	--mp-brand-pink-soft: #fff0f7;
	--mp-brand-pink-border: rgba(255, 47, 147, 0.18);
	--mp-brand-ink: #101426;
	--mp-brand-blue: #101426;
	--mp-brand-muted: #68718a;
	--mp-brand-muted-soft: #8b96bb;
	--mp-brand-surface: #ffffff;
	--mp-brand-surface-soft: #f8faff;
	--mp-brand-page-bg: #f7f8fb;
	--mp-brand-page-bg-image: url("assets/images/site-bg.webp");
	--mp-brand-surface-pink: #fff7fb;
	--mp-brand-border: #e9edf5;
	--mp-brand-border-strong: #dfe5ef;
	--mp-brand-disabled-bg: #e9edf5;
	--mp-brand-disabled-text: #7f8aa3;
	--mp-brand-shadow-xs: 0 4px 12px rgba(32, 43, 85, 0.06);
	--mp-brand-shadow-soft: 0 12px 30px rgba(32, 43, 85, 0.06);
	--mp-brand-shadow-card: 0 18px 42px rgba(32, 43, 85, 0.08);
	--mp-brand-shadow-pop: 0 18px 36px rgba(255, 47, 147, 0.18);
	--mp-brand-shadow-focus: 0 0 0 3px rgba(255, 47, 147, 0.12);
	--mp-brand-radius-field: 8px;
	--mp-brand-radius-soft: 12px;
	--mp-brand-radius-card: 14px;
	--mp-brand-radius-panel: 18px;
	--mp-brand-radius-pill: 999px;
	--mp-brand-star: #f3bd45;
	--o2k-pink: var(--mp-brand-pink);
	--o2k-pink-dark: var(--mp-brand-pink-dark);
	--o2k-blue: var(--mp-brand-blue);
	--o2k-muted: var(--mp-brand-muted);
	--o2k-soft: var(--mp-brand-surface-soft);
	--o2k-border: var(--mp-brand-border);
	--o2k-shadow: var(--mp-brand-shadow-card);
	--o2k-radius: var(--mp-brand-radius-panel);
	--o2k-max: 1310px;
	--o2k-container: 1310px;
	--o2k-container-pad: 15px;
	--o2k-font-body: "Poppins", Arial, Helvetica, sans-serif;
	--o2k-font-heading: "Poppins", Arial, Helvetica, sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	overflow-x: clip;
	background: var(--mp-brand-page-bg);
}

body {
	margin: 0;
	color: var(--o2k-blue);
	background:
		linear-gradient(rgba(247, 248, 251, 0.28), rgba(247, 248, 251, 0.28)),
		var(--mp-brand-page-bg-image) center top / cover no-repeat,
		var(--mp-brand-page-bg);
	background-attachment: fixed, fixed, scroll;
	font-family: var(--o2k-font-body);
	overflow-x: clip;
}

main,
.site,
.site-main {
	position: relative;
	z-index: 1;
}

a {
	color: inherit;
	text-decoration: none;
	transition: color 0.22s ease, opacity 0.22s ease, transform 0.22s ease, border-color 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease;
}

main a:not([class]),
.entry-content a:not([class]),
.woocommerce-privacy-policy-text a,
.woocommerce-terms-and-conditions-wrapper a {
	position: relative;
	color: var(--o2k-pink);
	font-weight: 700;
	transition: color 0.22s ease;
}

main a:not([class])::after,
.entry-content a:not([class])::after,
.woocommerce-privacy-policy-text a::after,
.woocommerce-terms-and-conditions-wrapper a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -2px;
	height: 2px;
	border-radius: var(--mp-brand-radius-pill);
	background: currentColor;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.22s ease;
}

main a:not([class]):hover,
main a:not([class]):focus-visible,
.entry-content a:not([class]):hover,
.entry-content a:not([class]):focus-visible,
.woocommerce-privacy-policy-text a:hover,
.woocommerce-privacy-policy-text a:focus-visible,
.woocommerce-terms-and-conditions-wrapper a:hover,
.woocommerce-terms-and-conditions-wrapper a:focus-visible {
	color: var(--mp-brand-pink-dark);
}

main a:not([class]):hover::after,
main a:not([class]):focus-visible::after,
.entry-content a:not([class]):hover::after,
.entry-content a:not([class]):focus-visible::after,
.woocommerce-privacy-policy-text a:hover::after,
.woocommerce-privacy-policy-text a:focus-visible::after,
.woocommerce-terms-and-conditions-wrapper a:hover::after,
.woocommerce-terms-and-conditions-wrapper a:focus-visible::after {
	transform: scaleX(1);
}

.woocommerce-terms-and-conditions-wrapper .o2k-checkout-policy-link {
	color: var(--o2k-pink);
	cursor: pointer;
	text-decoration: none;
}

.woocommerce-terms-and-conditions-wrapper .o2k-checkout-policy-link::after {
	display: none;
}

.woocommerce-terms-and-conditions-wrapper .o2k-checkout-policy-link:hover,
.woocommerce-terms-and-conditions-wrapper .o2k-checkout-policy-link:focus-visible {
	color: var(--mp-brand-pink-dark);
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 3px;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

.woocommerce-cart .woocommerce > br,
.woocommerce-checkout .woocommerce > br {
	display: none;
}

.o2k-header-wrap {
	position: fixed;
	top: 24px;
	left: 15px;
	right: auto;
	z-index: 60;
	width: calc(100% - 30px);
	max-width: 100%;
	box-sizing: border-box;
	pointer-events: none;
	padding-inline: 0;
}

.admin-bar .o2k-header-wrap {
	top: 32px;
}

@media (max-width: 782px) {
	.admin-bar .o2k-header-wrap {
		top: 46px;
	}
}

.o2k-hero__content h1,
.o2k-title,
.o2k-compare__title,
.o2k-contact-content h1,
.o2k-about-content h1,
.o2k-service-hero__content h1,
.o2k-product-config h1,
.woocommerce-products-header__title,
.product_title,
.page-title {
	font-family: var(--o2k-font-heading);
}

.o2k-site-header {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto auto auto;
	align-items: center;
	gap: 10px;
	width: min(100%, var(--o2k-container));
	max-width: var(--o2k-container);
	margin: 0 auto;
	padding: 14px 15px;
	border: 1px solid rgba(32, 43, 85, 0.06);
	border-radius: var(--mp-brand-radius-card);
	background: rgba(255, 255, 255, 0.94);
	box-shadow: var(--mp-brand-shadow-card);
	backdrop-filter: blur(18px);
	pointer-events: auto;
}

.o2k-brand {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	flex-shrink: 0;
}

.o2k-brand:hover,
.o2k-brand:focus-visible {
	opacity: 0.9;
	transform: translateY(-2px);
}

.o2k-brand__mark {
	display: inline-grid;
	place-items: center;
	width: 56px;
	height: 56px;
	border-radius: var(--mp-brand-radius-card);
	color: var(--mp-brand-surface);
	font-size: 2rem;
	font-weight: 900;
	line-height: 1;
	background: linear-gradient(135deg, var(--mp-brand-pink) 0%, var(--o2k-pink) 45%, var(--mp-brand-pink-dark) 100%);
	box-shadow: inset 0 -8px 16px rgba(119, 0, 59, 0.18);
}

.o2k-brand__logo {
	display: block;
	width: auto;
	height: 52px;
	max-width: 250px;
	object-fit: contain;
	transform: translateY(-5px);
}

.o2k-menu-toggle {
	display: none;
}

.o2k-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(24px, 3vw, 46px);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	text-transform: uppercase;
}

.o2k-nav > a,
.o2k-nav-item > a {
	position: relative;
	padding-block: 8px;
	transition: color 0.22s ease;
	color: black;
}

.o2k-nav > a::before,
.o2k-nav-item > a::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 2px;
	border-radius: var(--mp-brand-radius-pill);
	background: var(--o2k-pink);
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.24s ease;
}

.o2k-nav a:hover,
.o2k-nav a:focus,
.o2k-nav a.is-active {
	color: var(--o2k-pink);
}

.o2k-nav > a:hover::before,
.o2k-nav > a:focus::before,
.o2k-nav > a.is-active::before,
.o2k-nav-item > a:hover::before,
.o2k-nav-item > a:focus::before,
.o2k-nav-item > a.is-active::before {
	transform: scaleX(1);
}

.o2k-nav-item {
	position: relative;
	display: flex;
	align-items: center;
}

.o2k-nav-item--has-menu > a {
	display: inline-flex;
	align-items: center;
	gap: 9px;
}

.o2k-nav-item--has-menu > a::after {
	content: "";
	position: static;
	display: block;
	width: 7px;
	height: 7px;
	margin-top: -4px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	background: none;
	transform: rotate(45deg);
	transition: transform 0.22s ease;
}

.o2k-nav-item--has-menu:hover > a::after,
.o2k-nav-item--has-menu:focus-within > a::after,
.o2k-nav-item--has-menu.is-open > a::after {
	transform: translateY(3px) rotate(225deg);
}

.o2k-submenu {
	position: absolute;
	top: calc(100% + 18px);
	left: 50%;
	display: grid;
	gap: 4px;
	min-width: 280px;
	padding: 12px;
	border: 1px solid rgba(236, 238, 245, 0.9);
	border-radius: var(--mp-brand-radius-card);
	background: rgba(255, 255, 255, 0.96);
	box-shadow: var(--o2k-shadow);
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, 8px);
	transition: opacity 0.18s ease, transform 0.18s ease;
	backdrop-filter: blur(18px);
}

.o2k-submenu::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: -18px;
	height: 18px;
}

.o2k-submenu a {
	display: block;
	padding: 11px 12px;
	border-radius: var(--mp-brand-radius-field);
	color: var(--o2k-blue);
	font-size: 0.82rem;
	line-height: 1.3;
	text-transform: none;
	white-space: nowrap;
}

.o2k-submenu a:hover,
.o2k-submenu a:focus {
	color: var(--o2k-pink);
	background: var(--mp-brand-pink-soft);
}

.o2k-nav-item--has-menu:hover .o2k-submenu,
.o2k-nav-item--has-menu:focus-within .o2k-submenu {
	opacity: 1;
	pointer-events: auto;
	transform: translate(-50%, 0);
}

.o2k-header-socials {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding-right: 15px;
}

.o2k-header-socials::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	width: 1px;
	height: 20px;
	background: rgba(32, 43, 85, 0.16);
	transform: translateY(-50%);
}

.o2k-header-social {
	display: inline-grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border: 1px solid rgba(32, 43, 85, 0.12);
	border-radius: var(--mp-brand-radius-field);
	background: rgba(255, 255, 255, 0.92);
	box-shadow: var(--mp-brand-shadow-soft);
	transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.o2k-header-social img {
	display: block;
	width: 27px;
	height: 27px;
	object-fit: contain;
}

.o2k-header-social:hover,
.o2k-header-social:focus-visible {
	border-color: rgba(255, 47, 147, 0.5);
	box-shadow: var(--mp-brand-shadow-pop);
	transform: translateY(-2px);
}

.o2k-button,
.woocommerce .button,
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 12px 22px;
	border: 1px solid transparent;
	border-radius: var(--mp-brand-radius-field);
	color: var(--mp-brand-surface);
	background: var(--o2k-pink);
	font-weight: 700;
	text-align: center;
	cursor: pointer;
	box-shadow: var(--mp-brand-shadow-pop);
	transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, color 0.22s ease;
}

.o2k-button:hover,
.o2k-button:focus-visible {
	border: 1px solid var(--mp-brand-pink);
	color: var(--mp-brand-pink);
	background: var(--mp-brand-surface);
	box-shadow: var(--mp-brand-shadow-pop);
	transform: translateY(-2px);
}

.o2k-button:active {
	box-shadow: var(--mp-brand-shadow-pop);
	transform: translateY(0);
}

.o2k-language-switcher {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	width: auto;
	min-width: 104px;
	min-height: 48px;
	padding-inline: 14px 22px;
	margin-bottom: 0;
}

.o2k-language-switcher__flag {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 16px;
	border-radius: 3px;
	overflow: hidden;
	box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.16);
	pointer-events: none;
}

.o2k-language-switcher__flag img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}


.o2k-language-switcher__flag--lt {
	background: linear-gradient(to bottom, #fdb913 0 33.33%, #006a44 33.33% 66.66%, #c1272d 66.66% 100%);
}


.o2k-language-switcher__flag--ru {
	background: linear-gradient(to bottom, var(--mp-brand-surface) 0 33.33%, #1c57a7 33.33% 66.66%, #d52b1e 66.66% 100%);
}


.o2k-language-switcher__flag--lv {
	background: linear-gradient(to bottom, #9e3039 0 40%, var(--mp-brand-surface) 40% 60%, #9e3039 60% 100%);
}


.o2k-language-switcher__flag--global {
	border-radius: 50%;
	background: radial-gradient(circle at center, transparent 0 34%, var(--o2k-blue) 35% 43%, transparent 44%), linear-gradient(to bottom, transparent 0 45%, var(--o2k-blue) 46% 54%, transparent 55%), var(--mp-brand-surface);
}

.o2k-language-switcher select {
	position: absolute;
	inset: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
	min-height: 0;
	padding: 0;
	border: 0;
	color: var(--o2k-blue);
	background: transparent;
	font: inherit;
	font-size: 1rem;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
	cursor: pointer;
	opacity: 0;
	appearance: none;
}

.o2k-language-switcher select option {
	color: var(--o2k-blue);
	font-size: 15px;
	text-align: center;
	font-weight: 700;
}

.o2k-language-switcher__code {
	position: relative;
	z-index: 1;
	color: var(--mp-brand-ink);
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	pointer-events: none;
}

.o2k-language-switcher__chevron {
	position: relative;
	z-index: 1;
	width: 7px;
	height: 7px;
	margin-top: -4px;
	border-right: 2px solid #000;
	border-bottom: 2px solid #000;
	transform: rotate(45deg);
	pointer-events: none;
}

.o2k-language-switcher:hover {
  background: none;
  transform: translateY(-2px);
}

.o2k-language-switcher:focus-within {
	outline: none;
	outline-offset: 2px;
}

.o2k-header-cart {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
	min-height: 48px;
	padding-left: 22px;
	font-weight: 800;
	white-space: nowrap;
}

.o2k-header-cart::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 1px;
	height: 20px;
	background: rgba(32, 43, 85, 0.16);
	transform: translateY(-50%);
}

.o2k-header-cart__total {
	order: 2;
	color: var(--mp-brand-ink);
	font-size: 15px;
}

.o2k-header-cart:hover,
.o2k-header-cart:focus-visible {
	color: var(--o2k-pink);
	transform: translateY(-2px);
}

.o2k-header-cart:hover .o2k-header-cart__total,
.o2k-header-cart:focus-visible .o2k-header-cart__total {
	color: var(--o2k-pink);
}

.o2k-header-cart:hover .o2k-cart-icon,
.o2k-header-cart:focus-visible .o2k-cart-icon {
	border-color: var(--o2k-pink);
	box-shadow: var(--mp-brand-shadow-pop);
}

.o2k-cart-icon {
	position: relative;
	order: 1;
	width: 22px;
	height: 22px;
	border: 2px solid var(--o2k-blue);
	border-radius: var(--mp-brand-radius-field);
}

.o2k-cart-icon::before {
	content: "";
	position: absolute;
	left: 4px;
	right: 4px;
	top: -8px;
	height: 10px;
	border: 2px solid var(--o2k-blue);
	border-bottom: 0;
	border-radius: var(--mp-brand-radius-field) var(--mp-brand-radius-field) 0 0;
}

.o2k-cart-icon::after {
	content: attr(data-count);
	position: absolute;
	top: -22px;
	right: -20px;
	display: grid;
	place-items: center;
	width: 19px;
	height: 19px;
	border-radius: var(--mp-brand-radius-pill);
	color: var(--mp-brand-surface);
	background: var(--mp-brand-pink);
	font-size: 0.72rem;
}

.o2k-home {
	overflow: hidden;
	background: transparent;
}

.o2k-hero {
	position: relative;
	min-height: 720px;
	padding: 120px 0 70px;
	background: none;
}

.o2k-hero--has-bg {
	background: var(--mp-brand-surface);
}

.o2k-hero--has-bg::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(to top, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.94) 72%);
	pointer-events: none;
}

.o2k-hero__bg-image {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.o2k-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	display: none;
	grid-template-columns: repeat(6, 1fr);
	gap: 28px;
	padding: 150px 80px 70px;
	opacity: 0.26;
	filter: blur(6px);
}

.o2k-hero__bg span {
	min-height: 180px;
	border-radius: var(--mp-brand-radius-panel);
	background: linear-gradient(145deg, var(--mp-brand-border-strong), var(--mp-brand-surface));
	box-shadow: var(--o2k-shadow);
}

.o2k-hero__inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
	align-items: center;
	gap: clamp(40px, 8vw, 120px);
	width: 100%;
	max-width: var(--o2k-container);
	margin: 0 auto;
	padding-inline: var(--o2k-container-pad);
}

.o2k-hero__content {
	max-width: 680px;
	padding-top: 0;
}

.o2k-hero__content h1 {
	margin: 0;
	color: var(--mp-brand-ink);
	font-size: clamp(4.3rem, 5vw, 4.8125rem);
	font-weight: 600;
	line-height: 0.94;
}

.o2k-hero__content h1 span {
	color: var(--o2k-pink);
}

.o2k-hero__content p {
	margin: 24px 0 30px;
	max-width: 610px;
	color: var(--mp-brand-ink);
	font-size: clamp(1.5rem, 1.9vw, 1.625rem);
	font-weight: 600;
	line-height: 1.28;
}

.o2k-hero__benefits {
	display: grid;
	gap: 12px;
	margin: 0 0 40px;
	padding: 0;
	color: #101010;
	font-size: 1.0625rem;
	font-weight: 600;
	line-height: 1.35;
	list-style: none;
}

.o2k-hero__benefits li {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 20px;
	padding-left: 32px;
}

.o2k-hero__benefits li::before {
	content: "";
	position: absolute;
	left: 2px;
	top: 50%;
	display: block;
	width: 13px;
	height: 7px;
	border: solid var(--o2k-pink);
	border-width: 0 0 2.6px 2.6px;
	border-radius: 1px;
	background: transparent;
	transform: translateY(-62%) rotate(-45deg);
}

.o2k-hero__benefits li.has-icon::before {
	display: none;
}

.o2k-hero__benefits li img {
	position: absolute;
	left: 0;
	top: 50%;
	width: 18px;
	height: 18px;
	object-fit: contain;
	transform: translateY(-50%);
}

.o2k-hero__button {
	min-width: 300px;
	min-height: 66px;
	padding-inline: 34px;
	font-size: 1rem;
}

.o2k-hero__video-card {
	position: relative;
	width: min(100%, 430px);
	min-height: 620px;
	border-radius: var(--mp-brand-radius-panel);
	box-shadow: 0 26px 70px rgba(0, 0, 0, 0.32);
	overflow: hidden;
}

.o2k-hero__video-media,
.o2k-hero__video-media video,
.o2k-hero__video-media img {
	width: 100%;
	height: 100%;
	min-height: 620px;
}

.o2k-hero__video-media video,
.o2k-hero__video-media img {
	display: block;
	object-fit: cover;
}

@supports (height: 1svh) {
	.o2k-hero__video-card,
	.o2k-hero__video-media,
	.o2k-hero__video-media video,
	.o2k-hero__video-media img,
	.o2k-placeholder--hero-video {
		height: min(620px, 76svh);
		min-height: 0;
	}
}

.o2k-placeholder--hero-video {
	width: 100%;
	height: 100%;
	min-height: 620px;
	border-radius: var(--mp-brand-radius-panel);
	background:
		linear-gradient(135deg, rgba(255, 47, 147, 0.18), rgba(32, 43, 85, 0.08)),
		repeating-linear-gradient(45deg, rgba(255, 47, 147, 0.08) 0 18px, rgba(255, 255, 255, 0.12) 18px 36px),
		var(--mp-brand-surface-soft);
}

.o2k-home > .o2k-section,
.o2k-home > .o2k-compare,
.o2k-category-archive,
.o2k-category-single,
.o2k-category-hero,
.o2k-category-showcase,
.o2k-contact-page,
.o2k-contact-hero,
.o2k-about-page,
.o2k-about-hero,
.o2k-service-hero,
.o2k-product-builder,
.o2k-cart-page,
.o2k-checkout-page,
.woocommerce-page .site-main,
.woocommerce-page main {
	background: transparent !important;
	background-image: none !important;
}

.o2k-section {
	position: relative;
	padding: 70px 0;
}

.o2k-section__inner {
	width: 100%;
	max-width: var(--o2k-container);
	margin: 0 auto;
	padding-inline: var(--o2k-container-pad);
	text-align: center;
}

.o2k-title {
	margin: 0 0 24px;
	color: var(--o2k-blue);
	font-size: clamp(2.4rem, 5vw, 5rem);
	font-weight: 700;
	line-height: 1.05;
	letter-spacing: 0;
	text-transform: uppercase;
}

.o2k-title span {
	color: var(--o2k-pink);
}

.o2k-home .o2k-title {
	margin-bottom: 12px;
	font-size: clamp(2rem, 3vw, 2.9rem) !important;
	font-weight: 900;
	line-height: 1.04;
}

.o2k-home .o2k-lead,
.o2k-home .o2k-reviews__lead {
	max-width: 560px;
	margin-bottom: 28px;
	font-size: 0.82rem !important;
	font-weight: 600;
	line-height: 1.38;
}

.o2k-home .o2k-price-card__price {
	font-size: clamp(1.42rem, 2vw, 1.65rem) !important;
	line-height: 1;
}

.o2k-home .mp-home-reviews-score h3,
.o2k-home .mp-home-reviews-main__head h3 {
	font-size: 17px !important;
}

.o2k-home .mp-home-reviews-score__number {
	font-size: 48px !important;
	line-height: 1;
}

.o2k-home .mp-home-review-card p {
	font-size: 13px !important;
	line-height: 1.45;
}

.o2k-lead {
	max-width: 620px;
	margin: 0 auto 42px;
	color: var(--o2k-muted);
	font-size: 1.2rem;
	line-height: 1.55;
}

.o2k-placeholder {
	position: relative;
	display: grid;
	place-items: center;
	min-height: 220px;
	border-radius: var(--mp-brand-radius-card);
	background:
		linear-gradient(135deg, rgba(255, 47, 147, 0.16), rgba(32, 43, 85, 0.08)),
		repeating-linear-gradient(45deg, var(--mp-brand-surface-soft) 0 16px, var(--mp-brand-surface) 16px 32px);
	overflow: hidden;
}

.o2k-placeholder::before {
	content: "";
	position: absolute;
	inset: 18px;
	border: 2px dashed rgba(32, 43, 85, 0.2);
	border-radius: var(--mp-brand-radius-card);
}

.o2k-placeholder span,
.o2k-placeholder strong {
	position: relative;
	z-index: 1;
	color: rgba(32, 43, 85, 0.52);
	font-weight: 900;
	text-transform: uppercase;
}

.o2k-placeholder img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.o2k-placeholder--has-image::before {
	display: none;
}

.o2k-works-slider {
	position: relative;
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 18px 78px;
	overflow: hidden;
}

.o2k-works-slider .swiper-slide,
.o2k-pricing-slider .swiper-slide {
	box-sizing: border-box;
	flex-shrink: 0;
	min-width: 0;
}

.o2k-works-slider img,
.o2k-pricing-slider img {
	display: block;
	max-width: 100%;
}

.o2k-works-slider .swiper-wrapper,
.o2k-works-slider .swiper-slide {
	overflow: visible;
}

.o2k-works-slider .swiper-wrapper {
	align-items: stretch;
}

.o2k-works-slider .swiper-slide {
	display: flex;
	justify-content: center;
	height: auto;
}

.o2k-work-card {
	width: min(100%, 360px);
	margin-inline: auto;
}

.o2k-works-slider--marquee {
	padding-inline: 0;
}

.o2k-works-slider--marquee .o2k-works-track {
	display: flex;
	align-items: stretch;
	gap: 42px;
	width: max-content;
	transition: none !important;
	will-change: transform;
}

.o2k-works-slider--marquee .o2k-works-track__slide {
	flex: 0 0 clamp(280px, 26vw, 360px);
	width: clamp(280px, 26vw, 360px);
}

.o2k-works-slider--marquee .o2k-work-card {
	width: 100%;
}

.o2k-work-card,
.o2k-price-card {
	min-width: 0;
}

.o2k-placeholder--work {
	aspect-ratio: 0.74;
	min-height: 430px;
}

.o2k-slider-btn {
	position: absolute;
	top: 50%;
	z-index: 4;
	display: grid;
	place-items: center;
	width: 54px;
	height: 54px;
	border: 0;
	border-radius: var(--mp-brand-radius-pill);
	color: var(--o2k-pink);
	background: rgba(255, 255, 255, 0.92);
	font-size: 0;
	line-height: 1;
	cursor: pointer;
	box-shadow: var(--mp-brand-shadow-soft);
	transform: translateY(-50%);
	transition: none;
}

.o2k-slider-btn::before {
	content: "";
	width: 45px;
	height: 45px;
	background: currentColor;
	background-size: 30px;
	-webkit-mask: url("assets/images/slider-arrow.svg") center / contain no-repeat;
	mask: url("assets/images/slider-arrow.svg") center / contain no-repeat;
}

.o2k-slider-btn:hover,
.o2k-slider-btn:focus {
	color: var(--mp-brand-surface);
	background: var(--o2k-pink);
	box-shadow: var(--mp-brand-shadow-pop);
	transform: translateY(-50%);
}

.o2k-slider-btn--prev {
	left: 20px;
}

.o2k-slider-btn--prev::before {
	transform: rotate(180deg);
}

.o2k-slider-btn--next {
	right: 20px;
}

.o2k-works-slider .o2k-slider-btn {
	width: 66px;
	height: 66px;
	animation: none;
	box-shadow: var(--mp-brand-shadow-pop);
}

.o2k-works-slider .o2k-slider-btn::before {
	width: 54px;
	height: 54px;
}

.o2k-works-slider .o2k-slider-btn:hover,
.o2k-works-slider .o2k-slider-btn:focus {
	animation: none;
}

@keyframes o2kSliderPulse {
	0%,
	100% {
		box-shadow: var(--mp-brand-shadow-pop);
	}

	50% {
		box-shadow: var(--mp-brand-shadow-pop), var(--mp-brand-shadow-focus);
	}
}

.o2k-works-pagination {
	position: static;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin-top: 28px;
	padding-bottom: 2px;
}

.o2k-works-pagination .swiper-pagination-bullet {
	width: 9px;
	height: 9px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: var(--mp-brand-radius-pill);
	background: var(--mp-brand-border-strong);
	opacity: 1;
	cursor: pointer;
}

.o2k-works-pagination .swiper-pagination-bullet-active {
	width: 9px;
	height: 9px;
	border-radius: var(--mp-brand-radius-pill);
	background: var(--o2k-pink);
}

.o2k-compare {
	padding-block: clamp(50px, 7vw, 88px);
}

.o2k-compare__inner {
	width: 100%;
	max-width: var(--o2k-container);
	margin: 0 auto;
	padding: clamp(26px, 3vw, 34px) var(--o2k-container-pad);
	border: 2px solid var(--o2k-pink);
	border-radius: var(--mp-brand-radius-panel);
	background: rgba(255, 255, 255, 0.82);
	box-shadow: var(--mp-brand-shadow-card);
}

.o2k-compare__content {
	grid-column: 1;
	grid-row: 1;
	max-width: none;
	margin: 0;
	align-self: start;
}

.o2k-compare__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
	grid-template-rows: auto auto;
	column-gap: clamp(28px, 3vw, 44px);
	row-gap: clamp(18px, 2vw, 24px);
	align-items: stretch;
}

.o2k-compare__visual {
	grid-column: 2;
	grid-row: 1 / span 2;
	align-self: stretch;
	height: 100%;
}

.o2k-compare__visual--mobile {
	display: none;
}

.o2k-compare__title {
	max-width: 560px;
	margin: 0;
	color: #070707;
	font-size: 40px;
	font-weight: 900;
	line-height: 0.9;
	text-transform: uppercase;
}

.o2k-compare__title span {
	display: block;
	color: var(--o2k-pink);
}

.o2k-compare__lead {
	max-width: 560px;
	margin: clamp(14px, 1.6vw, 20px) 0 0;
	color: #3b3f4b;
	font-size: clamp(0.82rem, 0.9vw, 1rem);
	font-weight: 600;
	line-height: 1.5;
}

.o2k-compare__features {
	grid-column: 1;
	grid-row: 2;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0 clamp(16px, 1.8vw, 24px);
	align-content: start;
}

.o2k-compare-feature {
	display: grid;
	grid-template-columns: clamp(36px, 3.1vw, 48px) minmax(0, 1fr);
	align-items: center;
	gap: clamp(9px, 1vw, 12px);
	min-height: clamp(54px, 5.2vw, 76px);
	padding: clamp(10px, 1.1vw, 16px) 0;
	border-bottom: 1px solid rgba(255, 47, 147, 0.18);
}

.o2k-compare-feature__icon {
	position: relative;
	display: grid;
	place-items: center;
	width: clamp(32px, 2.7vw, 44px);
	height: clamp(32px, 2.7vw, 44px);
	border-radius: var(--mp-brand-radius-soft);
	background: var(--mp-brand-surface);
}

.o2k-compare-feature__icon img {
	width: 33px;
	height: 33px;
	object-fit: contain;
}

.o2k-compare-feature h3 {
	margin: 0;
	color: var(--mp-brand-ink);
	font-size: clamp(0.72rem, 0.82vw, 0.95rem);
	font-weight: 900;
	line-height: 1.08;
	text-transform: uppercase;
}

.o2k-compare-feature h3 span {
	display: block;
	color: var(--o2k-pink);
	font-size: 0.92em;
	font-weight: 600;
}

.o2k-compare__visual {
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(18px, 2vw, 28px);
	align-items: stretch;
}

.o2k-compare-panel {
	display: grid;
	grid-template-rows: auto 1fr;
	gap: 14px;
	height: 100%;
	justify-items: center;
}

.o2k-compare-panel > strong {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: clamp(112px, 9vw, 150px);
	min-height: clamp(34px, 3vw, 44px);
	padding: 8px 22px;
	border: 2px solid var(--o2k-pink);
	border-radius: var(--mp-brand-radius-field);
	color: var(--mp-brand-surface);
	background: var(--mp-brand-pink);
	font-size: clamp(0.7rem, 0.9vw, 1rem);
	font-weight: 900;
	text-transform: uppercase;
}

.o2k-compare-panel--metal > strong {
	color: var(--o2k-pink);
	background: var(--mp-brand-surface);
}

.o2k-compare-panel__media {
	position: relative;
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	min-height: 100%;
	overflow: hidden;
	border-radius: var(--mp-brand-radius-card);
	background: linear-gradient(135deg, var(--mp-brand-pink-soft), var(--mp-brand-surface-soft));
	box-shadow: var(--mp-brand-shadow-card);
}

.o2k-compare-panel--canvas .o2k-compare-panel__media {
	filter: saturate(0.66) contrast(0.9);
}

.o2k-compare-panel__media::before {
	content: "";
	position: absolute;
	inset: 18px;
	border: 2px dashed rgba(32, 43, 85, 0.18);
	border-radius: var(--mp-brand-radius-field);
}

.o2k-compare-panel__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.o2k-compare-panel__media.o2k-placeholder--has-image::before {
	display: none;
}

.o2k-compare-panel__media span {
	color: rgba(32, 43, 85, 0.5);
	font-weight: 900;
	text-transform: uppercase;
}

.o2k-compare__vs {
	position: absolute;
	left: 50%;
	top: 55%;
	z-index: 2;
	display: grid;
	place-items: center;
	width: 88px;
	height: 88px;
	border-radius: 50%;
	color: var(--mp-brand-surface);
	background: var(--o2k-pink);
	font-size: 1.9rem;
	font-weight: 900;
	transform: translate(-50%, -50%);
	box-shadow: var(--mp-brand-shadow-pop);
}

.o2k-pricing-slider {
	position: relative;
	margin-inline: auto;
	padding-bottom: 0;
	overflow: hidden;
}

.o2k-pricing-slider .swiper-wrapper {
	align-items: flex-start;
}

.o2k-pricing-slider .swiper-slide {
	height: auto;
}

.o2k-pricing-slider--static {
	overflow: visible !important;
}

.o2k-pricing-slider--static .swiper-wrapper {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	transform: none !important;
	overflow: visible !important;
}

.o2k-pricing-slider--static .swiper-slide {
	width: auto !important;
	margin-right: 0 !important;
	overflow: visible !important;
}

.o2k-pricing-slider--static .o2k-pricing-pagination {
	display: none;
}

.o2k-price-card {
	display: grid;
	gap: 16px;
	align-content: start;
	min-width: 0;
}

.o2k-price-card__media {
	position: relative;
	display: grid;
	justify-items: center;
	min-width: 0;
	padding-bottom: 4px;
}

.o2k-price-card__badge {
	position: absolute;
	top: -15px;
	left: 50%;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	min-height: 30px;
	min-width: 146px;
	padding: 6px 14px;
	border-radius: var(--mp-brand-radius-field);
	background: linear-gradient(135deg, var(--mp-brand-pink), var(--mp-brand-pink));
	color: var(--mp-brand-surface);
	font-size: 0.66rem;
	font-weight: 800;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	box-shadow: var(--mp-brand-shadow-pop);
	transform: translateX(-50%);
}

.o2k-price-card__badge--popular::before {
	content: "\2665";
	display: inline-grid;
	place-items: center;
	width: 18px;
	height: 18px;
	border-radius: var(--mp-brand-radius-pill);
	background: var(--mp-brand-surface);
	color: var(--o2k-pink);
	font-size: 0.68rem;
	line-height: 1;
}

.o2k-price-card__badge-icon {
	display: inline-grid;
	place-items: center;
	width: 12px;
	height: 12px;
	flex-shrink: 0;
}

.o2k-price-card__badge-icon img {
	display: block;
	width: 12px;
	height: 12px;
	object-fit: contain;
}

.o2k-placeholder--price {
	aspect-ratio: 1 / 1.5;
	min-height: 448px;
	border-radius: var(--mp-brand-radius-panel);
	box-shadow: var(--mp-brand-shadow-card);
	background:
		linear-gradient(135deg, rgba(255, 47, 147, 0.18), rgba(32, 43, 85, 0.06)),
		var(--mp-brand-surface-soft);
}

.o2k-price-card:nth-child(n+4) .o2k-placeholder--price {
	background: linear-gradient(135deg, #ff3c65, #e307f7);
}

.o2k-price-card:nth-child(n+4) .o2k-placeholder--price strong {
	color: var(--mp-brand-surface);
	font-size: 1.2rem;
}

.o2k-price-card__size {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 102px;
	min-height: 36px;
	margin: -18px 0 0;
	padding: 6px 16px;
	position: relative;
	z-index: 2;
	background: var(--mp-brand-surface);
	border-radius: var(--mp-brand-radius-field);
	color: var(--mp-brand-ink);
	font-size: 1.38rem;
	font-weight: 800;
	line-height: 1;
	box-shadow: var(--mp-brand-shadow-soft);
}

.o2k-price-card__footer {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	align-items: center;
	gap: 14px;
	width: 100%;
	box-sizing: border-box;
	min-width: 0;
	padding: 10px 12px;
	border-radius: var(--mp-brand-radius-card);
	background: var(--mp-brand-surface);
	box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.2);
}

.o2k-price-card__price {
	white-space: nowrap;
	color: var(--mp-brand-ink);
	font-size: 1.85rem;
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0;
}

.o2k-pricing-pagination {
	position: relative;
	z-index: 4;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 12px;
	margin-top: 28px;
}

.o2k-pricing-pagination.swiper-pagination-lock {
	display: none;
}

.o2k-pricing-pagination .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	margin: 0;
	background: var(--mp-brand-border-strong);
	opacity: 1;
}

.o2k-pricing-pagination .swiper-pagination-bullet-active {
	width: 32px;
	border-radius: var(--mp-brand-radius-pill);
	background: var(--o2k-pink);
}

.o2k-button--small {
	min-height: 42px;
	width: 100%;
	padding-inline: 12px;
	font-size: 0.92rem;
}

.o2k-price-card .o2k-button--small {
	width: 100%;
	min-width: 0;
	min-height: 36px;
	padding-inline: 14px;
	border-radius: var(--mp-brand-radius-field);
	font-size: 0.68rem;
	font-weight: 800;
	box-shadow: var(--mp-brand-shadow-pop);
}

@media (min-width: 1280px) {
	.o2k-pricing-slider.o2k-pricing-slider--static,
	.o2k-pricing-slider.o2k-pricing-slider--static .swiper-wrapper,
	.o2k-pricing-slider.o2k-pricing-slider--static .swiper-slide {
		overflow: visible !important;
	}
}

.o2k-reviews__lead {
	max-width: 620px;
	margin: -10px auto 30px;
	color: var(--o2k-muted);
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.45;
	text-align: center;
}

.o2k-faq-section {
	min-height: 0;
	padding: clamp(44px, 5vw, 66px) 0 clamp(34px, 4vw, 52px);
}

.o2k-faq-section .o2k-title {
	margin-bottom: 8px;
	font-size: clamp(2rem, 3.1vw, 2.9rem) !important;
	line-height: 1.04;
}

.o2k-faq__lead {
	display: block;
	max-width: 520px;
	margin: 0 auto 22px;
	color: var(--o2k-muted);
	font-size: 0.82rem;
	font-weight: 600;
	line-height: 1.36;
	text-align: center;
	transform: translateZ(0);
}

.o2k-faq {
	display: grid;
	gap: 12px;
	width: min(100%, 620px);
	margin: 0 auto;
	text-align: left;
}

.o2k-faq__item {
	border: 1px solid rgba(32, 43, 85, 0.08);
	border-radius: var(--mp-brand-radius-field);
	color: var(--o2k-blue);
	background: rgba(255, 255, 255, 0.96);
	box-shadow: var(--mp-brand-shadow-xs);
	font-weight: 800;
	overflow: hidden;
	transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.o2k-faq__item[open] {
	border-color: rgba(255, 47, 147, 0.18);
	background: var(--mp-brand-surface);
	box-shadow: var(--mp-brand-shadow-soft);
}

.o2k-faq__item summary {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	min-height: 47px;
	padding: 12px 46px 12px 18px;
	color: var(--mp-brand-ink);
	cursor: pointer;
	list-style: none;
	font-size: 0.78rem;
	font-weight: 900;
	line-height: 1.25;
}

.o2k-faq__item summary::-webkit-details-marker {
	display: none;
}

.o2k-faq__item summary::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 17px;
	display: grid;
	place-items: center;
	width: 17px;
	height: 17px;
	border-radius: var(--mp-brand-radius-pill);
	color: var(--mp-brand-surface);
	background: var(--o2k-pink);
	flex: 0 0 auto;
	transform: translateY(-50%);
	transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.o2k-faq__item summary::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 22px;
	z-index: 1;
	width: 7px;
	height: 7px;
	background:
		linear-gradient(var(--mp-brand-surface), var(--mp-brand-surface)) center / 7px 1.5px no-repeat,
		linear-gradient(var(--mp-brand-surface), var(--mp-brand-surface)) center / 1.5px 7px no-repeat;
	transform: translateY(-50%) rotate(0deg);
	transition: transform 0.24s ease, background-size 0.24s ease;
}

.o2k-faq__item[open] summary::after {
	transform: translateY(-50%) rotate(180deg);
	box-shadow: var(--mp-brand-shadow-xs);
}

.o2k-faq__item[open] summary::before {
	background-size: 7px 1.5px, 1.5px 0;
	transform: translateY(-50%) rotate(180deg);
}

.o2k-faq__item p {
	margin: 0;
	max-width: 560px;
	padding: 0 46px 15px 18px;
	color: #80889a;
	font-size: 0.76rem;
	font-weight: 500;
	line-height: 1.45;
	animation: o2kFaqOpen 0.24s ease both;
}

@keyframes o2kFaqOpen {
	from {
		opacity: 0;
		transform: translateY(-6px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.woocommerce ul.products {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
	margin: 26px 0;
	padding: 0;
	list-style: none;
}

.woocommerce ul.products li.product {
	padding: 16px;
	border: 1px solid var(--o2k-border);
	border-radius: var(--o2k-radius);
	background: var(--mp-brand-surface);
	box-shadow: var(--mp-brand-shadow-soft);
}

.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce select {
	min-height: 44px;
	padding: 10px 12px;
	border: 1px solid var(--o2k-border);
	border-radius: var(--mp-brand-radius-field);
	background: var(--mp-brand-surface);
}

.o2k-page {
	padding-top: 150px;
}

.o2k-content-page > .o2k-section {
	padding-top: 0;
}

.o2k-page-card {
	max-width: 920px;
	margin: 0 auto;
	padding: 42px;
	border: 1px solid var(--o2k-border);
	border-radius: var(--o2k-radius);
	background: var(--mp-brand-surface);
	box-shadow: var(--mp-brand-shadow-soft);
	text-align: left;
}

.o2k-page-card__header {
	margin-bottom: 28px;
	text-align: center;
}

.o2k-page-card__content {
	color: var(--o2k-muted);
	font-size: 1.08rem;
	line-height: 1.7;
}

.o2k-page-card__content h2 {
	font-size: 28px;
}

.o2k-page-card.post-735 {
	color: var(--mp-brand-pink);
}

.o2k-page-card__content > *:first-child {
	margin-top: 0;
}

.o2k-page-card__content > *:last-child {
	margin-bottom: 0;
}

.o2k-category-archive {
	background:
		radial-gradient(circle at 100% 10%, rgba(255, 47, 147, 0.16), rgba(255, 255, 255, 0) 26%),
		radial-gradient(circle at 0 70%, rgba(255, 47, 147, 0.1), rgba(255, 255, 255, 0) 24%),
		var(--mp-brand-surface);
}

.o2k-category-hero {
	padding: 0 0 22px;
}

.o2k-archive-shell {
	width: 100%;
	max-width: var(--o2k-container);
	margin: 0 auto;
	padding-inline: var(--o2k-container-pad);
}

.o2k-breadcrumbs {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 18px;
	color: #8b91a6;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.35;
}

.o2k-breadcrumbs a {
	color: var(--mp-brand-ink);
	transition: color 0.2s ease;
}

.o2k-breadcrumbs a:hover {
	color: var(--o2k-pink);
}

.o2k-breadcrumbs span:last-child {
	color: var(--mp-brand-ink);
}

.o2k-section__inner > .o2k-breadcrumbs,
.o2k-archive-shell > .o2k-breadcrumbs,
.o2k-cart-shell > .o2k-breadcrumbs {
	width: 100%;
	text-align: left;
}

.o2k-about-hero__inner > .o2k-breadcrumbs,
.o2k-contact-hero__inner > .o2k-breadcrumbs,
.o2k-service-hero__inner > .o2k-breadcrumbs,
.o2k-category-showcase__inner > .o2k-breadcrumbs {
	grid-column: 1 / -1;
	width: 100%;
	margin-bottom: clamp(18px, 2.2vw, 28px);
	text-align: left;
	justify-self: start;
}

.o2k-product-builder > .o2k-breadcrumbs {
	width: 100%;
	max-width: 1180px;
	margin: 0 auto 18px;
	padding-inline: var(--o2k-container-pad);
}

.o2k-cart-shell > .o2k-breadcrumbs {
	margin-bottom: 30px;
}

.o2k-archive-section .o2k-section__inner {
	text-align: left;
}

.o2k-archive-section .o2k-title {
	margin-bottom: 18px;
	text-align: left;
}

.o2k-archive-section .o2k-lead {
	max-width: 760px;
	margin: 0 0 42px;
	text-align: left;
}

.o2k-archive-header {
	max-width: 760px;
	margin-bottom: 42px;
	text-align: left;
}

.o2k-archive-header h1 {
	margin: 0 0 18px;
	color: var(--mp-brand-ink);
	font-size: clamp(3rem, 6vw, 4.8rem);
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0;
}

.o2k-archive-header p {
	margin: 0;
	color: var(--mp-brand-ink);
	font-size: 1.18rem;
	font-weight: 600;
	line-height: 1.5;
}

.o2k-category-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 34px;
	align-items: stretch;
}

.o2k-category-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	border-radius: var(--mp-brand-radius-panel);
	background: var(--mp-brand-surface);
	box-shadow: var(--mp-brand-shadow-soft);
	overflow: hidden;
	text-align: center;
}

.o2k-category-card__media {
	display: block;
	height: 190px;
	overflow: hidden;
	background: var(--mp-brand-surface-soft);
}

.o2k-category-card__media img,
.o2k-category-card__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.o2k-category-card__placeholder {
	background:
		linear-gradient(135deg, rgba(255, 47, 147, 0.12), rgba(32, 43, 85, 0.08)),
		repeating-linear-gradient(45deg, var(--mp-brand-surface-soft) 0 15px, var(--mp-brand-surface) 15px 30px);
}

.o2k-category-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	margin: -27px auto 12px;
	border-radius: var(--mp-brand-radius-pill);
	background: var(--mp-brand-pink-soft);
	box-shadow: var(--mp-brand-shadow-pop);
	font-size: 2.2rem;
	position: relative;
	z-index: 2;
}

.o2k-category-card__icon img {
	width: 47px;
	height: 47px;
	object-fit: contain;
	border-radius: var(--mp-brand-radius-panel)
}

@media (min-width: 1025px) {
	.o2k-archive-header h1 {
		font-size: 60px;
		font-weight: 700;
	}
}

.o2k-category-card__body {
	padding: 0 24px 30px;
}

.o2k-category-card h2 {
	margin: 0 0 12px;
	color: var(--mp-brand-ink);
	font-size: 1.45rem;
	font-weight: 700;
	line-height: 1.15;
}

.o2k-category-card h2 a:hover {
	color: var(--o2k-pink);
}

.o2k-category-card p {
	margin: 0;
	color: #636b86;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.42;
}

.o2k-category-cta {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 28px;
	margin-top: 54px;
	padding: 28px 36px;
	border-radius: var(--mp-brand-radius-panel);
	background: linear-gradient(90deg, var(--mp-brand-pink-soft), var(--mp-brand-pink-soft));
	text-align: left;
}

.o2k-category-cta__icon {
	display: grid;
	place-items: center;
	width: 72px;
	height: 72px;
	color: var(--o2k-pink);
	font-size: 3rem;
}

.o2k-category-cta__icon img {
	width: 48px;
	height: 48px;
	object-fit: contain;
}

.o2k-category-cta h2 {
	margin: 0 0 6px;
	color: var(--mp-brand-ink);
	font-size: 1.45rem;
	font-weight: 900;
}

.o2k-category-cta p {
	margin: 0;
	color: #4f5670;
	font-size: 1.02rem;
	font-weight: 700;
	line-height: 1.35;
}

.o2k-category-single {
	min-height: 100vh;
	padding-top: 150px;
	background:
		radial-gradient(circle at 100% 12%, rgba(255, 47, 147, 0.2), rgba(255, 255, 255, 0) 34%),
		radial-gradient(circle at 0 78%, rgba(255, 47, 147, 0.14), rgba(255, 255, 255, 0) 30%),
		var(--mp-brand-surface);
}

.o2k-category-showcase {
	padding: 0 0 72px;
	overflow: hidden;
}

.o2k-category-showcase__inner {
	width: 100%;
	max-width: var(--o2k-container);
	margin: 0 auto;
	padding-inline: var(--o2k-container-pad);
	text-align: center;
}

.o2k-category-showcase__header {
	max-width: 900px;
	margin: 0 auto 42px;
}

.o2k-category-showcase__header span {
	display: block;
	margin-bottom: 28px;
	color: #151515;
	font-size: 1.55rem;
	font-weight: 700;
}

.o2k-category-showcase__header h1 {
	margin: 0 0 24px;
	color: var(--mp-brand-ink);
	font-size: clamp(3rem, 6.5vw, 5.6rem);
	font-weight: 900;
	line-height: 1.02;
	letter-spacing: 0;
}

.o2k-category-showcase__header p {
	max-width: 990px;
	margin: 0 auto;
	color: #1d1d1d;
	font-size: clamp(1.15rem, 2vw, 1.55rem);
	font-weight: 700;
	line-height: 1.45;
}

.o2k-category-benefits {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 28px;
	max-width: 1120px;
	margin: 40px auto 34px;
	text-align: left;
}

.o2k-category-benefit {
	display: flex;
	align-items: center;
	gap: 18px;
	min-width: 0;
}

.o2k-category-benefit__icon {
	display: grid;
	place-items: center;
	width: 64px;
	height: 64px;
	border-radius: var(--mp-brand-radius-pill);
	color: var(--mp-brand-surface);
	background: var(--o2k-pink);
	font-size: 2rem;
	font-weight: 900;
	flex: 0 0 auto;
}

.o2k-category-benefit__icon img {
	width: 30px;
	height: 30px;
	object-fit: contain;
}

.o2k-category-benefit strong {
	display: block;
	color: var(--mp-brand-ink);
	font-size: 1.28rem;
	font-weight: 800;
	line-height: 1.15;
}

.o2k-category-gallery-slider {
	max-width: 1180px;
	margin: 0 auto;
}

.o2k-category-gallery-slider .o2k-placeholder--work {
	min-height: clamp(340px, 36vw, 500px);
}

.o2k-showcase-cta {
	display: flex;
	align-items: center;
	justify-content: center;
	width: min(100%, 1220px);
	min-height: 64px;
	margin: 0 auto 22px;
	border-radius: var(--mp-brand-radius-pill);
	color: var(--mp-brand-surface);
	background: var(--o2k-pink);
	font-size: 1.25rem;
	font-weight: 900;
	box-shadow: var(--mp-brand-shadow-pop);
}

.o2k-showcase-note {
	margin: 0;
	color: var(--mp-brand-ink);
	font-size: 1.05rem;
	font-weight: 600;
}

.o2k-service-single {
	min-height: 100vh;
	padding-top: 150px;
	background: var(--mp-brand-surface);
}

.o2k-service-hero {
	padding: 0 0 70px;
}

.o2k-service-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
	grid-template-areas:
		"content visual"
		"details visual"
		"cta cta"
		"note note";
	gap: 46px 70px;
	width: 100%;
	max-width: var(--o2k-container);
	margin: 0 auto;
	padding-inline: var(--o2k-container-pad);
	align-items: start;
}

.o2k-service-hero__content {
	grid-area: content;
	padding-top: 20px;
}

.o2k-service-hero__content h1 {
	margin: 0 0 28px;
	color: var(--mp-brand-ink);
	font-size: clamp(4rem, 8vw, 7rem);
	font-weight: 900;
	line-height: 0.95;
	letter-spacing: 0;
}

.o2k-service-hero__content p {
	margin: 0 0 48px;
	max-width: 680px;
	color: var(--mp-brand-ink);
	font-size: clamp(1.45rem, 2.4vw, 2rem);
	font-weight: 900;
	line-height: 1.3;
}

.o2k-service-checklist {
	display: grid;
	gap: 18px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.o2k-service-checklist li {
	position: relative;
	padding-left: 46px;
	color: var(--mp-brand-ink);
	font-size: 1.45rem;
	font-weight: 900;
	line-height: 1.2;
}

.o2k-service-checklist li::before {
	content: "\2713";
	position: absolute;
	left: 0;
	top: 50%;
	display: grid;
	place-items: center;
	width: 28px;
	height: 28px;
	border-radius: var(--mp-brand-radius-pill);
	color: var(--mp-brand-surface);
	background: var(--o2k-pink);
	font-size: 1rem;
	transform: translateY(-50%);
}

.o2k-before-after {
	grid-area: visual;
	border-radius: var(--mp-brand-radius-panel);
	overflow: hidden;
}

.o2k-before-after__panel {
	position: relative;
	min-height: 690px;
	border-radius: var(--mp-brand-radius-panel);
	background: var(--mp-brand-border);
	overflow: hidden;
	box-shadow: var(--mp-brand-shadow-card);
	cursor: ew-resize;
	touch-action: none;
	user-select: none;
}

.o2k-before-after__side {
	position: absolute;
	inset: 0;
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(255, 47, 147, 0.09), rgba(32, 43, 85, 0.06)),
		repeating-linear-gradient(45deg, var(--mp-brand-surface-soft) 0 18px, var(--mp-brand-surface) 18px 36px);
}

.o2k-before-after__side--before {
	z-index: 2;
	clip-path: inset(0 calc(100% - var(--o2k-before-after-position, 50%)) 0 0);
}

.o2k-before-after__side--after {
	z-index: 1;
	background:
		linear-gradient(135deg, rgba(255, 47, 147, 0.18), rgba(32, 43, 85, 0.07)),
		repeating-linear-gradient(45deg, var(--mp-brand-pink-soft) 0 18px, var(--mp-brand-surface) 18px 36px);
}

.o2k-before-after__side::before {
	content: "";
	position: absolute;
	inset: 24px;
	border: 2px dashed rgba(32, 43, 85, 0.18);
	border-radius: var(--mp-brand-radius-panel);
}

.o2k-before-after__side img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.o2k-before-after__side.has-image::before {
	display: none;
}

.o2k-before-after__label {
	position: absolute;
	top: 24px;
	z-index: 4;
	color: var(--mp-brand-ink);
	font-size: 1.3rem;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
	pointer-events: none;
}

.o2k-before-after__label--before {
	left: 34px;
}

.o2k-before-after__label--after {
	right: 34px;
}

.o2k-before-after__divider {
	position: absolute;
	top: 0;
	bottom: 0;
	left: var(--o2k-before-after-position, 50%);
	z-index: 5;
	width: 4px;
	background: var(--mp-brand-surface);
	transform: translateX(-50%);
}

.o2k-before-after__divider span {
	position: absolute;
	top: 50%;
	left: 50%;
	display: grid;
	place-items: center;
	width: 74px;
	height: 74px;
	border-radius: var(--mp-brand-radius-pill);
	background: var(--mp-brand-surface);
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
	transform: translate(-50%, -50%);
}

.o2k-before-after__divider span::before {
	content: "\2161";
	color: var(--mp-brand-ink);
	font-size: 2rem;
	font-weight: 900;
}

.o2k-before-after__range {
	position: absolute;
	inset: 0;
	z-index: 6;
	width: 100%;
	height: 100%;
	margin: 0;
	opacity: 0;
	cursor: ew-resize;
}

.o2k-service-details {
	grid-area: details;
	align-self: stretch;
	display: grid;
	grid-template-rows: auto 1fr;
	gap: 18px;
	min-width: 0;
}

.o2k-service-details h2 {
	margin: 0;
	color: var(--mp-brand-ink);
	font-size: clamp(2rem, 3.2vw, 2.7rem);
	font-weight: 900;
	line-height: 1.05;
}

.o2k-service-info {
	display: grid;
	align-content: start;
	min-height: 100%;
	padding: 34px 38px;
	border-radius: var(--mp-brand-radius-panel);
	background: var(--mp-brand-surface);
	box-shadow: var(--mp-brand-shadow-card);
	text-align: left;
}

.o2k-service-note {
	grid-area: note;
	display: grid;
	gap: 14px;
}

.o2k-service-note__text {
	color: var(--mp-brand-ink);
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.55;
	text-align: center;
}

.o2k-service-note__text > *:first-child {
	margin-top: 0;
}

.o2k-service-note__text > *:last-child {
	margin-bottom: 0;
}

.o2k-service-info ul {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
	color: var(--mp-brand-ink);
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.45;
}

.o2k-service-cta {
	grid-area: cta;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 70px;
	border-radius: var(--mp-brand-radius-pill);
	color: var(--mp-brand-surface);
	background: var(--o2k-pink);
	font-size: 1.55rem;
	font-weight: 900;
	box-shadow: var(--mp-brand-shadow-pop);
}

.o2k-product-builder {
	padding: 150px 0 38px;
	background:
		radial-gradient(circle at 96% 8%, rgba(255, 47, 147, 0.08), rgba(255, 255, 255, 0) 28%),
		linear-gradient(180deg, var(--mp-brand-surface-soft) 0%, var(--mp-brand-surface) 42%, var(--mp-brand-surface-soft) 100%);
}

.o2k-product-builder__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.02fr) minmax(480px, 0.9fr);
	gap: 0px;
	width: 100%;
	max-width: 1180px;
	margin: 0 auto;
	padding-inline: var(--o2k-container-pad);
	align-items: stretch;
}

.o2k-product-preview {
	display: grid;
	grid-template-rows: 1fr auto;
	gap: 14px;
	min-width: 0;
}

.o2k-product-preview__frame,
.o2k-product-config {
	border: 1px solid rgba(32, 43, 85, 0.05);
	border-radius: var(--mp-brand-radius-panel);
	background: var(--mp-brand-surface);
	box-shadow: var(--mp-brand-shadow-card);
}

.o2k-product-preview__frame {
	display: grid;
	place-items: center;
	min-height: 620px;
	padding: 22px;
	overflow: hidden;
}

.o2k-product-preview__frame img,
.o2k-product-preview__placeholder {
	width: min(100%, 495px);
	height: 100%;
	max-height: 620px;
	aspect-ratio: 0.72;
	border-radius: var(--mp-brand-radius-field);
	object-fit: cover;
	box-shadow: none;
	transform: scale(1);
	transition: transform 0.34s ease, box-shadow 0.34s ease;
}

.o2k-product-preview__frame:hover img,
.o2k-product-preview__frame:hover .o2k-product-preview__placeholder {
	box-shadow: var(--mp-brand-shadow-card);
	transform: scale(1.18);
}

.o2k-product-preview__placeholder {
	background:
		linear-gradient(135deg, rgba(255, 47, 147, 0.12), rgba(32, 43, 85, 0.08)),
		repeating-linear-gradient(45deg, var(--mp-brand-surface-soft) 0 18px, var(--mp-brand-surface) 18px 36px);
}

.o2k-product-config {
	display: flex;
	flex-direction: column;
	padding: 28px 34px 24px;
}

.o2k-product-config h1 {
	position: relative;
	margin: 0 0 18px;
	color: var(--mp-brand-ink);
	font-size: clamp(1.3rem, 1.65vw, 2rem);
	font-weight: 900;
	line-height: 1.04;
	letter-spacing: 0;
	text-transform: uppercase;
}

.o2k-product-config h1::after {
	content: "";
	display: block;
	width: 58px;
	height: 3px;
	margin-top: 9px;
	border-radius: var(--mp-brand-radius-pill);
	background: var(--o2k-pink);
}

.o2k-product-config__group {
	margin-bottom: 18px;
}

.o2k-product-config__group h2 {
	margin: 0 0 9px;
	color: var(--mp-brand-ink);
	font-size: 0.88rem;
	font-weight: 900;
}

.o2k-option-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
}

.o2k-option-grid button {
	min-height: 43px;
	border: 2px solid #d8dbe4;
	border-radius: var(--mp-brand-radius-field);
	background: var(--mp-brand-surface);
	color: var(--mp-brand-ink);
	font-size: 0.88rem;
	font-weight: 900;
	cursor: pointer;
/* 	transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease; */
}

.o2k-option-grid button:hover {
	animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 47, 147, 0.45);
  }

  70% {
    transform: scale(1.03);
    box-shadow: 0 0 0 12px rgba(255, 47, 147, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 47, 147, 0);
  }
}

.o2k-option-grid button.is-active {
	border-color: var(--o2k-pink);
	color: var(--mp-brand-pink);
	background: var(--mp-brand-surface);
	
}

.o2k-option-grid button.is-disabled,
.o2k-option-grid button:disabled {
	cursor: not-allowed;
	opacity: 0.42;
	pointer-events: none;
}

.o2k-mount-options {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.o2k-mount-option {
	position: relative;
	grid-template-columns: minmax(0, 1fr) 22px;
	align-items: center;
	gap: 12px;
	min-height: 48px;
	padding: 12px 14px;
	border: 1px solid var(--mp-brand-border);
	border-radius: var(--mp-brand-radius-field);
	color: var(--mp-brand-ink);
	background: var(--mp-brand-surface);
	font-size: 0.8rem;
	font-weight: 900;
	line-height: 1.15;
	text-align: center;
	cursor: pointer;
	box-shadow: none;
	transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.o2k-mount-option:hover {
	border-color: rgba(255, 47, 147, 0.45);
	background: var(--mp-brand-surface-pink);
}

.o2k-mount-option.is-active {
	border-color: var(--o2k-pink);
	background: var(--mp-brand-surface);
}

.o2k-mount-option.is-disabled,
.o2k-mount-option:disabled {
	cursor: not-allowed;
	opacity: 0.42;
	pointer-events: none;
}

.o2k-mount-option span:first-child {
	justify-self: center;
}

.o2k-mount-option.is-active .o2k-option-check::after {
	content: "";
	position: absolute;
	left: 5px;
	top: 2px;
	width: 5px;
	height: 9px;
	border: solid var(--mp-brand-surface);
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.o2k-extra-options {
	display: grid;
	gap: 8px;
}

.o2k-extra-options label {
	position: relative;
	display: grid;
	grid-template-columns: 18px minmax(0, 1fr) auto;
	align-items: center;
	gap: 9px;
	min-height: 24px;
	padding: 0;
	border: 0;
	border-radius: 0;
	color: var(--mp-brand-ink);
	font-weight: 800;
	cursor: pointer;
}

.o2k-extra-options input {
	width: 17px;
	height: 17px;
	margin: 0;
	accent-color: var(--o2k-pink);
}

.o2k-extra-options__body {
	display: block;
	min-width: 0;
}

.o2k-extra-options__body strong {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	max-width: 100%;
	white-space: nowrap;
	font-size: 0.84rem;
	line-height: 1.2;
}

.o2k-extra-options__title {
	display: inline-block;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	vertical-align: middle;
	font-weight: 600;
}

.o2k-extra-options__body small {
	display: none;
}

.o2k-extra-options em {
	color: var(--o2k-pink);
	font-size: 0.83rem;
	font-style: normal;
	font-weight: 900;
	white-space: nowrap;
}

.o2k-product-order-row {
	display: grid;
	grid-template-columns: 154px minmax(0, 1fr);
	gap: 12px;
	align-items: stretch;
	margin: 10px 0 14px;
}

.o2k-upload-box {
	position: relative;
	display: grid;
	place-items: center;
	grid-template-columns: minmax(0, 1fr);
	min-height: 82px;
	margin: 0;
	padding: 10px 14px;
	border: 2px dashed var(--mp-brand-border-strong);
	border-radius: var(--mp-brand-radius-field);
	color: var(--mp-brand-ink);
	text-align: center;
	cursor: pointer;
	transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease, background-color 0.22s ease;
}

.o2k-upload-box:hover,
.o2k-upload-box:focus-within {
	border-color: var(--o2k-pink);
	background: rgba(255, 47, 147, 0.035);
	box-shadow: var(--mp-brand-shadow-pop);
	transform: translateY(-2px);
}

.o2k-upload-box strong {
	display: block;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 0.76rem;
	font-weight: 900;
	line-height: 1.25;
}

.o2k-upload-box__icon {
	position: relative;
	display: grid;
	place-items: center;
	width: 26px;
	height: 26px;
	margin-bottom: 6px;
	border: 2px solid var(--mp-brand-muted);
	border-radius: var(--mp-brand-radius-field);
	transition: border-color 0.22s ease, transform 0.22s ease;
}

.o2k-upload-box:hover .o2k-upload-box__icon,
.o2k-upload-box:focus-within .o2k-upload-box__icon {
	border-color: var(--o2k-pink);
	transform: scale(1.08);
}

.o2k-upload-box__icon:has(img) {
	width: 32px;
	height: 32px;
	border: 0;
	border-radius: 0;
}

.o2k-upload-box__icon img {
	width: 32px;
	height: 32px;
	object-fit: contain;
}

.o2k-upload-box__icon:has(img)::before,
.o2k-upload-box__icon:has(img)::after {
	display: none;
}

.o2k-upload-box__icon::before {
	content: "";
	position: absolute;
	top: -6px;
	left: 6px;
	width: 10px;
	height: 7px;
	border: 2px solid var(--mp-brand-muted);
	border-bottom: 0;
	border-radius: var(--mp-brand-radius-field) var(--mp-brand-radius-field) 0 0;
	transition: border-color 0.22s ease;
}

.o2k-upload-box__icon::after {
	content: "";
	position: absolute;
	top: 5px;
	left: 8px;
	width: 6px;
	height: 6px;
	border: 2px solid var(--mp-brand-muted);
	border-radius: var(--mp-brand-radius-pill);
	transition: border-color 0.22s ease;
}

.o2k-upload-box:hover .o2k-upload-box__icon::before,
.o2k-upload-box:hover .o2k-upload-box__icon::after,
.o2k-upload-box:focus-within .o2k-upload-box__icon::before,
.o2k-upload-box:focus-within .o2k-upload-box__icon::after {
	border-color: var(--o2k-pink);
}

.o2k-upload-box.is-uploading .o2k-upload-box__icon {
	width: 24px;
	height: 24px;
	margin-bottom: 6px;
	border: 2px solid rgba(255, 47, 147, 0.22);
	border-top-color: var(--o2k-pink);
	border-radius: var(--mp-brand-radius-pill);
	transform: none;
	animation: o2kUploadSpin 0.75s linear infinite;
}

.o2k-upload-box.is-uploading .o2k-upload-box__icon img,
.o2k-upload-box.is-uploading .o2k-upload-box__icon::before,
.o2k-upload-box.is-uploading .o2k-upload-box__icon::after {
	display: none;
}

@keyframes o2kUploadSpin {
	to {
		transform: rotate(360deg);
	}
}

.o2k-upload-box small {
	display: block;
	margin-top: 3px;
	max-width: 100%;
	overflow-wrap: anywhere;
	color: var(--mp-brand-muted);
	font-size: 0.58rem;
	font-weight: 800;
	text-transform: uppercase;
}

.o2k-upload-box__status {
	display: block;
	min-height: 13px;
	margin-top: 4px;
	color: #8790aa;
	font-size: 0.58rem;
	font-weight: 900;
	line-height: 1.2;
	text-transform: uppercase;
}

.o2k-upload-box.is-uploading .o2k-upload-box__status {
	color: var(--o2k-pink);
}

.o2k-upload-box.is-uploaded .o2k-upload-box__status {
	color: #1aa85b;
}

.o2k-upload-box.is-upload-error .o2k-upload-box__status {
	color: #d93025;
}

.o2k-upload-box input[type="file"] {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
	opacity: 0;
}

.o2k-info-dot {
	position: relative;
	flex: 0 0 auto;
	z-index: 4;
	display: inline-grid;
	place-items: center;
	width: 17px;
	height: 17px;
	border-radius: var(--mp-brand-radius-pill);
	color: #7a8091;
	background: var(--mp-brand-surface);
	font-size: 0;
	line-height: 1;
	cursor: help;
}

.o2k-info-dot::before {
	content: "";
	width: 11px;
	height: 11px;
	background: currentColor;
	mask: url("assets/images/more-info-icon.svg") center / contain no-repeat;
}

.o2k-info-dot img {
	width: 19px;
	height: 19px;
	object-fit: contain;
	border-radius: var(--mp-brand-radius-soft);
}

.o2k-info-dot:has(img)::before {
	display: none;
}

.o2k-info-dot::after {
	content: attr(data-tooltip);
	position: absolute;
	left: 50%;
	bottom: calc(100% + 10px);
	z-index: 20;
	width: max-content;
	max-width: 240px;
	padding: 10px 12px;
	border-radius: var(--mp-brand-radius-field);
	color: var(--mp-brand-surface);
	background: rgba(32, 43, 85, 0.96);
	box-shadow: var(--mp-brand-shadow-soft);
	font-size: 0.76rem;
	font-weight: 700;
	line-height: 1.35;
	text-align: left;
	white-space: pre-wrap;
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, 6px);
	transition: opacity 0.18s ease, transform 0.18s ease;
}

.o2k-info-dot:hover::after,
.o2k-info-dot:focus-visible::after {
	opacity: 1;
	transform: translate(-50%, 0);
}

.o2k-product-price {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	align-content: center;
	gap: 6px;
	margin: 0;
	padding: 15px 16px;
	border-radius: var(--mp-brand-radius-field);
	color: var(--o2k-pink);
	background: #faf7fb;
	font-size: 1.8rem;
	font-weight: 900;
	line-height: 1;
	white-space: nowrap;
}

.o2k-product-price del {
	margin-left: 7px;
	color: var(--mp-brand-muted);
	font-size: 1rem;
	font-weight: 700;
}

.o2k-product-price ins {
	text-decoration: none;
}

.o2k-product-cart form.cart {
	display: grid;
	gap: 12px;
	margin: 0;
}

.o2k-product-cart input[name="o2k_customer_photo"],
.o2k-product-cart input[name="o2k_customer_photo_nonce"] {
	display: none !important;
}

.o2k-product-cart table.variations,
.o2k-product-cart .reset_variations,
.o2k-product-cart .woocommerce-variation-description,
.o2k-product-cart .woocommerce-variation-availability,
.o2k-product-cart .woocommerce-variation-price {
	display: none !important;
}

.o2k-product-cart .single_variation_wrap {
	display: grid;
	gap: 12px;
}

.o2k-product-cart .quantity,
.o2k-product-cart form.cart .quantity,
.o2k-product-cart form.cart .quantity.hidden,
.o2k-product-cart form.cart div.quantity,
.o2k-product-cart form.cart .quantity input.qty,
.o2k-product-cart form.cart .quantity label {
	display: none !important;
}

.o2k-product-cart .single_add_to_cart_button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	min-height: 64px !important;
	border: 1px solid transparent;
	border-radius: var(--mp-brand-radius-field);
	background: var(--o2k-pink);
	font-size: 0.98rem;
	font-weight: 900;
	box-shadow: var(--mp-brand-shadow-pop);
	transition: border-color 0.22s ease, background-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease, transform 0.22s ease;
}

.o2k-product-cart .single_add_to_cart_button.is-uploading-to-cart {
	pointer-events: none;
	cursor: wait;
}

.o2k-product-cart .single_add_to_cart_button.is-uploading-to-cart::before {
	content: "";
	width: 18px;
	height: 18px;
	border: 2px solid rgba(255, 255, 255, 0.45);
	border-top-color: var(--mp-brand-surface);
	border-radius: var(--mp-brand-radius-pill);
	animation: o2kUploadSpin 0.75s linear infinite;
}

.o2k-product-cart .single_add_to_cart_button:disabled,
.o2k-product-cart .single_add_to_cart_button.disabled,
.o2k-product-cart .single_add_to_cart_button.is-disabled-by-upload {
	border-color: rgba(32, 43, 85, 0.12);
	color: var(--mp-brand-muted-soft);
	background: var(--mp-brand-border);
	box-shadow: none;
	cursor: not-allowed;
	opacity: 1;
	transform: none;
	padding: 22px 22px;
}

.o2k-product-cart .single_add_to_cart_button:disabled:hover,
.o2k-product-cart .single_add_to_cart_button.disabled:hover,
.o2k-product-cart .single_add_to_cart_button.is-disabled-by-upload:hover {
	border-color: rgba(32, 43, 85, 0.12);
	color: var(--mp-brand-muted-soft);
	background: var(--mp-brand-border);
	box-shadow: none;
	transform: none;
}

.o2k-cart-page {
	padding: 150px 0 80px;
	background:
		radial-gradient(circle at 100% 10%, rgba(255, 47, 147, 0.13), rgba(255, 255, 255, 0) 28%),
		linear-gradient(180deg, var(--mp-brand-surface-soft), var(--mp-brand-surface) 32%);
}

.o2k-cart-shell {
	width: 100%;
	max-width: 1310px;
	margin: 0 auto;
	padding-inline: var(--o2k-container-pad);
}

.o2k-cart-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
	gap: 28px;
	align-items: start;
}

.o2k-cart-items,
.o2k-cart-summary {
	border-radius: var(--mp-brand-radius-panel);
	background: var(--mp-brand-surface);
	box-shadow: var(--mp-brand-shadow-card);
}

.o2k-cart-items {
	display: grid;
	gap: 18px;
	padding: 24px;
}

.o2k-cart-item {
	display: grid;
	grid-template-columns: 130px minmax(0, 1fr);
	gap: 22px;
	padding: 18px;
	border: 1px solid rgba(32, 43, 85, 0.08);
	border-radius: var(--mp-brand-radius-panel);
	background: var(--mp-brand-surface);
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.o2k-cart-item.is-removing {
	opacity: 0.45;
	pointer-events: none;
	transform: scale(0.985);
}

.o2k-cart-item__media {
	display: block;
	aspect-ratio: 1 / 1.15;
	border-radius: var(--mp-brand-radius-card);
	background: var(--mp-brand-surface-soft);
	overflow: hidden;
}

.o2k-cart-item__body {
	display: grid;
	gap: 20px;
	min-width: 0;
}

.o2k-cart-item h2 {
	margin: 0 0 8px;
	font-size: 1.35rem;
	font-weight: 900;
	line-height: 1.15;
}

.o2k-cart-item h2 a {
	color: var(--o2k-dark);
}

.o2k-cart-item dl.variation {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 12px;
	margin: 0;
	color: var(--o2k-muted);
	font-size: 0.95rem;
	font-weight: 700;
}

.o2k-cart-item__remove {
	display: grid;
	flex: 0 0 auto;
	place-items: center;
	width: 36px;
	height: 36px;
	border-radius: var(--mp-brand-radius-pill);
	color: var(--o2k-dark);
	background: var(--mp-brand-surface-soft);
	font-size: 1.6rem;
	font-weight: 900;
	line-height: 1;
}

.o2k-cart-item__remove:hover {
	color: var(--mp-brand-surface);
	background: var(--o2k-pink);
}

.o2k-cart-item__remove.is-loading {
	color: transparent;
	background: var(--mp-brand-pink-soft);
	font-size: 0;
}

.o2k-cart-item__remove.is-loading::before {
	content: "";
	width: 16px;
	height: 16px;
	border: 2px solid rgba(251, 47, 142, 0.2);
	border-top-color: var(--o2k-pink);
	border-radius: var(--mp-brand-radius-pill);
	animation: o2kUploadSpin 0.75s linear infinite;
}

.o2k-cart-summary {
	position: sticky;
	top: 130px;
	padding: 28px;
}

.o2k-cart-summary h2 {
	margin: 0 0 22px;
	color: var(--o2k-dark);
	font-size: 2rem;
	font-weight: 900;
}

.o2k-cart-totals {
	display: grid;
	gap: 14px;
}

.o2k-cart-total-row {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	padding-bottom: 14px;
	border-bottom: 1px solid rgba(32, 43, 85, 0.1);
	color: var(--o2k-dark);
	font-weight: 800;
}

.o2k-cart-total-row strong {
	text-align: right;
	font-weight: 900;
}

.o2k-cart-total-row.order-total {
	align-items: baseline;
	padding-top: 8px;
	border-bottom: 0;
	font-size: 1.15rem;
}

.o2k-cart-total-row.order-total strong {
	color: var(--o2k-dark);
	font-size: 2rem;
}

.o2k-cart-checkout {
	margin-top: 24px;
}

.o2k-cart-checkout .checkout-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 62px;
	border-radius: var(--mp-brand-radius-pill);
	color: var(--mp-brand-surface);
	background: var(--o2k-pink);
	font-size: 1.08rem;
	font-weight: 900;
	box-shadow: var(--mp-brand-shadow-pop);
}

.o2k-empty-cart {
	display: grid;
	justify-items: center;
	gap: 18px;
	max-width: 720px;
	margin: 0 auto;
	padding: 72px 28px;
	border-radius: var(--mp-brand-radius-panel);
	background: var(--mp-brand-surface);
	box-shadow: var(--mp-brand-shadow-card);
	text-align: center;
}

.o2k-empty-cart h1 {
	margin: 0;
	color: var(--o2k-dark);
	font-size: clamp(2.6rem, 5vw, 4.5rem);
	font-weight: 900;
	line-height: 1;
}

.o2k-empty-cart p {
	max-width: 520px;
	margin: 0 0 14px;
	color: var(--o2k-muted);
	font-size: 1.1rem;
	font-weight: 700;
	line-height: 1.5;
}

@media (min-width: 821px) {
	.o2k-hero,
	.o2k-section,
	.o2k-service-hero,
	.o2k-category-hero,
	.o2k-category-showcase {
		display: flex;
		align-items: center;
		min-height: auto;
	}

	.o2k-section__inner,
	.o2k-hero__inner,
	.o2k-service-hero__inner,
	.o2k-archive-shell,
	.o2k-category-showcase__inner {
		flex: 1 1 auto;
	}
}

@media (max-width: 1100px) {
	.o2k-site-header {
		grid-template-columns: auto 1fr auto auto;
	}

	.o2k-nav {
		order: 4;
		grid-column: 1 / 3;
		display: flex;
		flex-direction: column;
		justify-content: center;
		flex-wrap: nowrap;
	}

	.o2k-header-socials {
		order: 5;
		grid-column: 3 / -1;
		justify-self: end;
	}

	.o2k-submenu {
		left: auto;
		right: 0;
		transform: translateY(8px);
	}

	.o2k-nav-item--has-menu:hover .o2k-submenu,
	.o2k-nav-item--has-menu:focus-within .o2k-submenu {
		transform: translateY(0);
	}

	.o2k-category-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.o2k-category-benefits {
		gap: 28px;
	}

	.o2k-service-hero__inner {
		grid-template-columns: 1fr;
		grid-template-areas:
			"content"
			"visual"
			"details"
			"cta"
			"note";
	}

	.o2k-before-after__panel {
		min-height: 560px;
	}

	.o2k-product-builder__inner {
		grid-template-columns: 1fr;
	}

	.o2k-cart-layout {
		grid-template-columns: 1fr;
	}

	.o2k-cart-summary {
		position: static;
	}

	.o2k-product-preview__frame {
		min-height: 520px;
	}

	.o2k-compare__grid {
		grid-template-columns: 1fr;
		grid-template-rows: auto auto auto;
	}

	.o2k-compare__content,
	.o2k-compare__features,
	.o2k-compare__visual {
		grid-column: auto;
		grid-row: auto;
	}

	.o2k-compare__visual {
		max-width: 820px;
		margin-inline: auto;
	}

	.o2k-compare__visual--desktop {
		display: none;
	}

	.o2k-compare__visual--mobile {
		display: block;
		width: 100%;
	}

	.o2k-about-hero__inner {
		grid-template-columns: 1fr;
		align-items: start;
	}

	.o2k-contact-hero__inner {
		grid-template-columns: 1fr;
		align-items: start;
	}

	.o2k-contact-form-card {
		max-width: 720px;
	}

	.o2k-about-gallery {
		max-width: 760px;
		margin-inline: auto;
	}
}

@media (max-width: 1100px) {
	.o2k-site-header {
		display: flex;
		align-items: center;
		justify-content: space-between;
		flex-wrap: wrap;
	}

	.o2k-brand {
		flex: 0 1 auto;
		margin-right: auto;
	}

	.o2k-nav {
		flex: 1 0 100%;
	}

	.o2k-header-socials,
	.o2k-language-switcher,
	.o2k-header-cart {
		flex: 0 0 auto;
	}
}

@media (max-width: 1160px) {
	body.o2k-menu-open {
		overflow: hidden;
	}

	.o2k-site-header {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: space-between;
		flex-wrap: nowrap;
		gap: 10px;
	}

	.o2k-brand {
		order: 1;
		min-width: 0;
		margin-right: auto;
	}

	.o2k-menu-toggle {
		position: relative;
		z-index: 83;
		order: 4;
		display: grid;
		place-items: center;
		width: 42px;
		height: 42px;
		min-height: 42px;
		padding: 0;
		border: 0;
		border-radius: var(--mp-brand-radius-soft);
		color: var(--o2k-blue);
		background: var(--mp-brand-surface);
		box-shadow: var(--mp-brand-shadow-soft);
		cursor: pointer;
	}

	.o2k-menu-toggle i,
	.o2k-menu-toggle i::before,
	.o2k-menu-toggle i::after {
		display: block;
		width: 22px;
		height: 2px;
		border-radius: var(--mp-brand-radius-pill);
		background: currentColor;
		transition: transform 0.22s ease, opacity 0.22s ease;
	}

	.o2k-menu-toggle i {
		position: relative;
	}

	.o2k-menu-toggle i::before,
	.o2k-menu-toggle i::after {
		content: "";
		position: absolute;
		left: 0;
	}

	.o2k-menu-toggle i::before {
		top: -7px;
	}

	.o2k-menu-toggle i::after {
		top: 7px;
	}

	.o2k-site-header.is-menu-open .o2k-menu-toggle i {
		background: transparent;
	}

	.o2k-site-header.is-menu-open .o2k-menu-toggle i::before {
		transform: translateY(7px) rotate(45deg);
	}

	.o2k-site-header.is-menu-open .o2k-menu-toggle i::after {
		transform: translateY(-7px) rotate(-45deg);
	}

	.o2k-language-switcher {
		order: 2;
		width: 42px;
		min-width: 42px;
		min-height: 42px;
		padding: 0;
		gap: 0;
		border-radius: var(--mp-brand-radius-soft);
	}

	.o2k-language-switcher__code,
	.o2k-language-switcher__chevron {
		display: none;
	}

	.o2k-header-cart {
		order: 3;
		display: flex;
		justify-content: center;
		align-items: center;
		width: 42px;
		min-width: 42px;
		min-height: 42px;
		padding: 0;
		border: 1px solid rgba(32, 43, 85, 0.12);
		border-radius: var(--mp-brand-radius-soft);
		background: var(--mp-brand-surface);
		box-shadow: var(--mp-brand-shadow-soft);
	}

	.o2k-header-cart::before,
	.o2k-header-cart strong {
		display: none;
	}

	.o2k-nav {
		position: absolute;
		top: calc(100% + 12px);
		left: 0;
		right: 0;
		z-index: 82;
		display: flex;
		flex: none;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: 8px;
		width: 100%;
		box-sizing: border-box;
		max-height: calc(100vh - 108px);
		padding: 14px;
		border: 1px solid rgba(32, 43, 85, 0.08);
		border-radius: var(--mp-brand-radius-panel);
		background: rgba(255, 255, 255, 0.96);
		box-shadow: var(--mp-brand-shadow-card);
		font-size: 1rem;
		overflow-y: auto;
		opacity: 0;
		pointer-events: none;
		transform: translateY(-22px);
		transition: opacity 0.24s ease, transform 0.24s ease;
		backdrop-filter: blur(20px);
	}

	.o2k-site-header.is-menu-open .o2k-nav {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}

	.o2k-nav > a,
	.o2k-nav-item > a {
		display: flex;
		align-items: center;
		justify-content: space-between;
		min-height: 54px;
		padding: 0 16px;
		border: 1px solid rgba(32, 43, 85, 0.1);
		border-radius: var(--mp-brand-radius-soft);
		background: var(--mp-brand-surface);
		box-shadow: var(--mp-brand-shadow-soft);
	}

	.o2k-nav-item {
		position: relative;
		display: block;
	}

	.o2k-submenu {
		position: static;
		display: grid;
		max-height: 0;
		min-width: 0;
		margin: 0;
		padding: 0 10px;
		border: 0;
		background: transparent;
		box-shadow: none;
		opacity: 1;
		overflow: hidden;
		pointer-events: auto;
		transform: none;
		transition: max-height 0.24s ease, padding 0.24s ease;
		backdrop-filter: none;
	}

	.o2k-submenu::before {
		display: none;
	}

	.o2k-nav-item.is-open .o2k-submenu {
		max-height: 520px;
		padding: 8px 10px 4px;
	}

	.o2k-submenu a {
		min-height: 42px;
		padding: 10px 12px;
		background: var(--mp-brand-pink-soft);
		white-space: normal;
	}

	.o2k-header-socials {
		position: static;
		justify-content: center;
		width: 100%;
		margin-top: 10px;
		padding: 14px;
		border: 1px solid rgba(32, 43, 85, 0.08);
		border-radius: var(--mp-brand-radius-card);
		background: rgba(255, 255, 255, 0.96);
		box-shadow: var(--mp-brand-shadow-soft);
		opacity: 1;
		pointer-events: auto;
		transform: none;
		transition: none;
		backdrop-filter: blur(18px);
	}

	.o2k-header-socials::after {
		display: none;
	}
}

@media (max-width: 820px) {
	.o2k-header-wrap {
		position: fixed;
		top: 12px;
		z-index: 80;
		left: 12px;
		width: calc(100% - 24px);
		padding-inline: 0;
	}

	.o2k-site-header {
		position: relative;
		flex-wrap: nowrap;
		gap: 8px;
		padding: 9px 10px;
		border-radius: var(--mp-brand-radius-card);
	}

	.o2k-brand__mark {
		width: 46px;
		height: 46px;
		border-radius: var(--mp-brand-radius-soft);
		font-size: 1.65rem;
	}

	.o2k-brand__logo {
		height: 36px;
		max-width: 168px;
		transform: translateY(-3px);
	}

	.o2k-brand {
		order: 1;
		min-width: 0;
		justify-self: start;
	}

	.o2k-site-header.is-menu-open .o2k-header-socials {
		transform: none;
	}

	.o2k-language-switcher__flag {
		width: 24px;
		height: 16px;
	}

	.o2k-language-switcher__code {
		display: none;
	}

	.o2k-language-switcher__chevron {
		display: none;
	}

	.o2k-header-cart {
		order: 3;
		display: flex;
		justify-content: center;
		align-items: center;
		width: 42px;
		min-height: 42px;
		padding: 0;
		border: 1px solid rgba(32, 43, 85, 0.12);
		border-radius: var(--mp-brand-radius-soft);
		background: var(--mp-brand-surface);
		box-shadow: var(--mp-brand-shadow-soft);
		justify-self: stretch;
	}

	.o2k-header-cart::before {
		display: none;
	}

	.o2k-header-cart strong {
		display: none;
	}

	.o2k-cart-icon {
		width: 21px;
		height: 21px;
	}

	.o2k-cart-icon::after {
		top: -16px;
		right: -13px;
		width: 18px;
		height: 18px;
		font-size: 0.68rem;
	}

	.o2k-nav {
		position: absolute;
		top: calc(100% + 12px);
		left: 0;
		right: 0;
		z-index: 82;
		display: flex;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: 8px;
		width: 100%;
		box-sizing: border-box;
		max-height: calc(100vh - 108px);
		padding: 14px;
		border: 1px solid rgba(32, 43, 85, 0.08);
		border-radius: var(--mp-brand-radius-panel);
		background: rgba(255, 255, 255, 0.96);
		box-shadow: var(--mp-brand-shadow-card);
		font-size: 1rem;
		overflow-y: auto;
		opacity: 0;
		pointer-events: none;
		transform: translateY(-22px);
		transition: opacity 0.24s ease, transform 0.24s ease;
		backdrop-filter: blur(20px);
	}

	.o2k-nav-item--has-menu > a::after {
		margin-left: auto;
	}

	.o2k-hero {
		min-height: auto;
		padding: 230px 0 70px;
	}

	.o2k-hero__bg {
		grid-template-columns: repeat(2, 1fr);
		padding: 180px 20px 40px;
	}

	.o2k-hero__inner {
		grid-template-columns: 1fr;
		justify-items: center;
		gap: 44px;
	}

	.o2k-hero__content {
		order: 2;
		width: 100%;
		max-width: 720px;
	}

	.o2k-hero__video-card {
		order: 1;
	}

	.o2k-hero__video-card,
	.o2k-hero__video-media,
	.o2k-hero__video-media video,
	.o2k-hero__video-media img,
	.o2k-placeholder--hero-video {
		min-height: 520px;
	}

	@supports (height: 1svh) {
		.o2k-hero__video-card,
		.o2k-hero__video-media,
		.o2k-hero__video-media video,
		.o2k-hero__video-media img,
		.o2k-placeholder--hero-video {
			height: min(520px, 64svh);
			min-height: 0;
		}
	}

	.woocommerce ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.o2k-category-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.o2k-category-benefits {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.o2k-category-showcase__header {
		margin-bottom: 44px;
	}

	.o2k-category-showcase__header h1 {
		font-size: 3rem;
	}

	.o2k-service-single {
		padding-top: 150px;
	}

	.o2k-service-hero__content h1 {
		font-size: 4rem;
	}

	.o2k-service-details h2 {
		font-size: 2.2rem;
	}

	.o2k-service-info {
		padding: 34px 26px;
	}

	.o2k-product-builder {
		padding-top: 90px;
	}

	.o2k-category-cta {
		grid-template-columns: 1fr;
		justify-items: center;
		text-align: center;
	}

}

@media (max-width: 820px) {
	.o2k-breadcrumbs {
		font-size: 12px;
	}

}

@media (max-width: 560px) {
	.o2k-site-header {
		width: 100%;
	}

	.o2k-product-config {
		padding: 15px;
	}

	.o2k-price-card {
		padding: 0 5px;
	}

	.o2k-price-card__footer {
		grid-template-columns: auto minmax(128px, 1fr);
		gap: 10px;
		padding: 9px 10px;
	}

	.o2k-price-card__price {
		font-size: 1.55rem;
		text-align: center;
	}

	.o2k-price-card .o2k-button--small {
		min-height: 38px;
		padding-inline: 10px;
		font-size: 0.64rem;
	}

	.o2k-brand__mark {
		width: 48px;
		height: 48px;
	}

	.o2k-brand__logo {
		height: 36px;
		max-width: 170px;
	}

	.o2k-language-switcher {
		min-width: 42px;
		width: 42px;
		padding-inline: 0;
	}

	.o2k-language-switcher__code,
	.o2k-language-switcher__chevron {
		display: none;
	}

	.o2k-brand {
		gap: 8px;
	}

	.o2k-header-cart {
		width: 42px;
		min-width: 42px;
	}

	.o2k-title {
		font-size: 2.45rem;
	}

	.o2k-hero {
		padding-top: 60px;
	}

	.o2k-hero__content h1 {
		font-size: 2.7rem;
	}

	.o2k-hero__content p {
		font-size: 1.08rem;
		margin: 18px 0 24px;
	}

	.o2k-hero__button {
		width: 100%;
		min-width: 0;
	}

	.o2k-hero__video-card,
	.o2k-hero__video-media,
	.o2k-hero__video-media video,
	.o2k-hero__video-media img,
	.o2k-placeholder--hero-video {
		min-height: 360px;
	}

	@supports (height: 1svh) {
		.o2k-hero__video-card,
		.o2k-hero__video-media,
		.o2k-hero__video-media video,
		.o2k-hero__video-media img,
		.o2k-placeholder--hero-video {
			height: clamp(360px, 58svh, 460px);
			min-height: 0;
		}
	}

	.o2k-works-slider {
		padding-inline: 12px;
	}

	.o2k-works-slider--marquee {
		padding-inline: 12px;
	}

	.o2k-works-slider--marquee .o2k-works-track {
		gap: 24px;
	}

	.o2k-works-slider--marquee .o2k-works-track__slide {
		flex-basis: 72vw;
		width: 72vw;
	}

	.o2k-works-slider .o2k-placeholder--work {
		min-height: clamp(300px, 86vw, 390px);
	}

	.o2k-compare__inner {
		width: 100%;
		padding: 24px var(--o2k-container-pad);
	}

	.o2k-compare__grid {
		display: flex;
		flex-direction: column;
	}

	.o2k-compare__content {
		order: 0;
	}

	.o2k-compare__visual--mobile {
		order: 1;
		display: block;
		width: 100%;
		max-width: none;
		margin-inline: 0;
		padding: 4px 0 18px;
	}

	.o2k-compare__visual--mobile .o2k-service-compare .o2k-before-after__panel {
		aspect-ratio: 0.72;
		min-height: clamp(430px, 122vw, 520px);
	}

	.o2k-compare__features {
		order: 2;
		grid-template-columns: 1fr;
	}

	.o2k-compare-panel__media {
		aspect-ratio: 1.05;
		height: auto;
		min-height: 0;
	}

	.o2k-slider-btn {
		width: 44px;
		height: 44px;
		font-size: 0;
	}

	.o2k-works-slider .o2k-slider-btn {
		width: 46px;
		height: 46px;
	}

	.o2k-works-slider .o2k-slider-btn::before {
		width: 36px;
		height: 36px;
	}

	.o2k-slider-btn--prev {
		left: 2px;
	}

	.o2k-slider-btn--next {
		right: 2px;
	}

	.o2k-category-grid,
	.woocommerce ul.products {
		grid-template-columns: 1fr;
	}

	.o2k-category-benefits {
		grid-template-columns: 1fr;
	}

	.o2k-category-single {
		padding-top: 150px;
	}

	.o2k-category-showcase {
		padding-top: 0;
	}

	.o2k-before-after__panel {
		min-height: 430px;
	}

	.o2k-service-hero__content h1 {
		font-size: 3.1rem;
	}

	.o2k-service-hero__content p,
	.o2k-service-checklist li,
	.o2k-service-info ul,
	.o2k-service-note__text {
		font-size: 1.1rem;
	}

	.o2k-service-cta {
		font-size: 1.15rem;
	}

	.o2k-product-preview__frame {
		min-height: 400px;
		padding: 28px;
	}

	.o2k-option-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 8px;
	}

	.o2k-option-grid button {
		min-height: 40px;
		font-size: 0.78rem;
	}

	.o2k-product-config {
		padding: 22px;
	}

	.o2k-cart-page {
		padding-top: 150px;
	}

	.o2k-cart-items,
	.o2k-cart-summary {
		padding: 18px;
	}

	.o2k-cart-item {
		grid-template-columns: 1fr;
	}

	.o2k-cart-item__media {
		max-width: 180px;
	}

}

/* Step cart and checkout */
.woocommerce-info {
	display: none !important;
}

.o2k-cart-page {
	padding: 150px 0 110px;
	background: var(--mp-brand-surface);
}

.o2k-checkout-steps {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	width: min(720px, 100%);
	margin: 0 auto 70px;
	color: #8a8d98;
	font-size: 1.18rem;
	font-weight: 800;
	text-align: center;
}

.o2k-checkout-steps::before {
	content: "";
	position: absolute;
	top: 18px;
	left: 16.5%;
	right: 16.5%;
	height: 3px;
	background: var(--mp-brand-border-strong);
}

.o2k-checkout-steps::after {
	content: "";
	position: absolute;
	top: 18px;
	left: 16.5%;
	width: 33%;
	height: 3px;
	background: var(--o2k-pink);
}

.o2k-checkout-page .o2k-checkout-steps::after {
	width: 66%;
}

.o2k-checkout-step {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 14px;
	justify-items: center;
}

.o2k-checkout-step i {
	display: block;
	width: 34px;
	height: 34px;
	border: 3px solid var(--mp-brand-border-strong);
	border-radius: 50%;
	background: var(--mp-brand-border-strong);
	box-shadow: 0 0 0 7px var(--mp-brand-surface);
}

.o2k-checkout-step.is-active,
.o2k-checkout-step.is-done {
	color: var(--mp-brand-pink-dark);
}

.o2k-checkout-step.is-active i {
	border-color: var(--o2k-pink);
	background: var(--mp-brand-surface);
	box-shadow: inset 0 0 0 7px var(--o2k-pink), 0 0 0 7px var(--mp-brand-surface);
}

.o2k-checkout-step.is-done i {
	border-color: #8f8f96;
	background: var(--mp-brand-border-strong);
}

.o2k-cart-layout,
.o2k-checkout-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(330px, 390px);
	gap: 34px;
	align-items: start;
}

.o2k-cart-items {
	display: grid;
	gap: 26px;
	padding: 0;
	background: transparent;
	box-shadow: none;
}

.o2k-cart-item,
.o2k-cart-promo,
.o2k-checkout-fields,
.o2k-cart-summary,
.o2k-checkout-summary {
	border: 1px solid rgba(32, 43, 85, 0.12);
	border-radius: var(--mp-brand-radius-field);
	background: var(--mp-brand-surface);
	box-shadow: var(--mp-brand-shadow-card);
}

.o2k-cart-item {
	position: relative;
	display: grid;
	grid-template-columns: 136px minmax(0, 1fr) 160px 140px;
	gap: 28px;
	align-items: center;
	padding: 28px 38px;
}

.o2k-cart-item__media {
	width: 136px;
	aspect-ratio: 1 / 0.82;
	border-radius: var(--mp-brand-radius-field);
	background: var(--mp-brand-surface-soft);
	overflow: hidden;
}

.o2k-cart-item__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.o2k-cart-item h2 {
	margin: 0 0 8px;
	color: var(--mp-brand-ink);
	font-size: 1.45rem;
	font-weight: 900;
	line-height: 1.15;
}

.o2k-cart-item h2 a {
	color: inherit;
}

.o2k-cart-item dl.variation {
	display: grid;
	gap: 2px;
	margin: 0;
	color: var(--mp-brand-muted);
	font-size: 1.02rem;
	font-weight: 600;
}

.o2k-cart-item dl.variation dt,
.o2k-cart-item dl.variation dd,
.o2k-cart-item dl.variation p {
	margin: 0;
}

.o2k-cart-item__quantity .quantity {
	display: flex;
	gap: 14px;
	align-items: center;
	justify-content: center;
}

.o2k-qty-button {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	border: 1px solid rgba(255, 47, 147, 0.5);
	border-radius: 50%;
	background: var(--mp-brand-surface);
	color: var(--mp-brand-pink-dark);
	box-shadow: var(--mp-brand-shadow-pop);
	font-size: 1.6rem;
	font-weight: 500;
	cursor: pointer;
}

.o2k-cart-item__quantity .quantity input {
	width: 72px;
	min-height: 54px;
	border: 0;
	background: transparent;
	color: var(--mp-brand-ink);
	font-size: 1.35rem;
	font-weight: 900;
	text-align: center;
}

.o2k-cart-item__subtotal {
	color: var(--mp-brand-ink);
	font-size: 1.35rem;
	font-weight: 900;
	text-align: right;
}

.o2k-cart-item__remove {
	position: absolute;
	top: 18px;
	right: 18px;
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	color: var(--mp-brand-pink-dark);
	background: var(--mp-brand-pink-soft);
	font-size: 1.3rem;
	font-weight: 900;
}

.o2k-cart-promo {
	padding: 34px;
}

.o2k-cart-promo span {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 0 18px;
	border-radius: var(--mp-brand-radius-field);
	background: linear-gradient(135deg, var(--mp-brand-pink), var(--mp-brand-pink-dark));
	color: var(--mp-brand-surface);
	font-weight: 900;
	text-transform: uppercase;
}

.o2k-cart-promo h2 {
	margin: 22px 0 10px;
	color: var(--mp-brand-ink);
	font-size: 1.65rem;
	font-weight: 900;
}

.o2k-cart-promo p {
	margin: 0 0 28px;
	color: var(--mp-brand-ink);
	font-size: 1.1rem;
	font-weight: 700;
}

.o2k-button--outline {
	width: 100%;
	border: 2px solid var(--mp-brand-pink-dark);
	background: var(--mp-brand-surface);
	color: var(--mp-brand-pink-dark);
	box-shadow: none;
}

.o2k-button--outline:hover,
.o2k-button--outline:focus-visible {
	border-color: var(--mp-brand-pink);
	background: var(--mp-brand-surface);
	color: var(--mp-brand-pink);
}

.o2k-cart-summary,
.o2k-checkout-summary {
	position: sticky;
	top: 128px;
	padding: 34px;
	border: 0;
	border-radius: var(--mp-brand-radius-field);
}

.o2k-cart-summary h2,
.o2k-checkout-summary h2 {
	margin: 0 0 24px;
	color: var(--mp-brand-ink);
	font-size: 1.65rem;
	font-weight: 900;
}

.o2k-cart-totals {
	display: grid;
	gap: 18px;
}

.o2k-cart-total-row {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	padding-bottom: 18px;
	border-bottom: 1px solid rgba(17, 17, 17, 0.12);
	color: var(--mp-brand-ink);
	font-size: 1.05rem;
	font-weight: 700;
}

.o2k-cart-total-row.order-total {
	align-items: baseline;
	padding-top: 8px;
	border-bottom: 0;
	font-size: 1.45rem;
	font-weight: 900;
}

.o2k-cart-total-row.order-total strong {
	color: var(--mp-brand-pink-dark);
	font-size: 2.2rem;
}

.o2k-cart-checkout .checkout-button,
.o2k-checkout-summary #place_order {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 66px;
	margin-top: 24px;
	border: 0;
	border-radius: var(--mp-brand-radius-pill);
	background: linear-gradient(135deg, var(--mp-brand-pink), var(--mp-brand-pink-dark));
	color: var(--mp-brand-surface);
	box-shadow: var(--mp-brand-shadow-pop);
	font-size: 1.1rem;
	font-weight: 900;
}

.o2k-summary-benefits {
	display: grid;
	gap: 14px;
	margin: 34px 0 0;
	padding: 0;
	list-style: none;
	color: var(--mp-brand-ink);
	font-size: 1.05rem;
	font-weight: 700;
}

.o2k-summary-benefits li::before {
	content: "\2713";
	margin-right: 12px;
	font-weight: 900;
}

.o2k-payment-badges {
	display: flex;
	gap: 10px;
	margin-top: 22px;
}

.o2k-payment-badges span {
	display: inline-grid;
	place-items: center;
	min-width: 58px;
	min-height: 34px;
	padding: 0 10px;
	border: 1px solid var(--mp-brand-border);
	border-radius: var(--mp-brand-radius-field);
	background: var(--mp-brand-surface);
	color: #284d9a;
	font-size: 0.72rem;
	font-weight: 900;
}

.o2k-checkout-fields {
	padding: 0;
	border: 0;
	box-shadow: none;
}

.o2k-checkout-card {
	padding: 40px;
	border: 1px solid rgba(32, 43, 85, 0.12);
	border-radius: var(--mp-brand-radius-panel);
	background: var(--mp-brand-surface);
	box-shadow: var(--mp-brand-shadow-card);
}

.o2k-checkout-fields h3,
.o2k-checkout-fields .woocommerce-billing-fields > h3,
.o2k-checkout-fields .woocommerce-additional-fields > h3 {
	margin: 0 0 22px;
	color: var(--mp-brand-ink);
	font-size: 1.75rem;
	font-weight: 900;
}

.o2k-checkout-card--customer > h3,
.o2k-delivery-methods > h3 {
	margin: 0 0 28px;
	color: var(--mp-brand-ink);
	font-size: clamp(1.85rem, 2.2vw, 2.6rem);
	font-weight: 800;
	line-height: 1.1;
}

.o2k-checkout-card--customer .woocommerce-billing-fields > h3,
.o2k-checkout-card--customer .woocommerce-additional-fields > h3,
.o2k-checkout-card--customer .woocommerce-shipping-fields > h3 {
	display: none;
}

.o2k-checkout-customer {
	display: grid;
	gap: 34px;
}

.o2k-delivery-methods {
	margin-top: 0;
	padding-top: 40px;
	padding-bottom: 40px;
	border-top: 0;
	position: relative;
}

.o2k-delivery-methods::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 5;
	border-radius: inherit;
	background: rgba(255, 255, 255, 0.72);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.18s ease;
}

.o2k-delivery-methods::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 6;
	width: 34px;
	height: 34px;
	margin: -17px 0 0 -17px;
	border: 3px solid rgba(255, 47, 147, 0.22);
	border-top-color: var(--mp-brand-pink);
	border-radius: 50%;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.18s ease;
	animation: o2k-spin 0.75s linear infinite;
}

.o2k-delivery-methods.is-o2k-loading::after,
.o2k-delivery-methods.is-o2k-loading::before,
body.is-o2k-delivery-loading .o2k-delivery-methods::after,
body.is-o2k-delivery-loading .o2k-delivery-methods::before {
	opacity: 1;
}

.o2k-delivery-methods.is-o2k-loading .o2k-delivery-methods__content,
body.is-o2k-delivery-loading .o2k-delivery-methods .o2k-delivery-methods__content {
	pointer-events: none;
}

@keyframes o2k-spin {
	to {
		transform: rotate(360deg);
	}
}

.o2k-delivery-methods__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.o2k-delivery-method-item {
	position: relative;
}

.o2k-delivery-method-item > input.shipping_method {
	position: absolute;
	inset: 0;
	opacity: 0;
	pointer-events: none;
}

.o2k-delivery-card {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 18px;
	min-height: 132px;
	padding: 26px 24px 22px;
	border: 2px solid rgba(32, 43, 85, 0.12);
	border-radius: var(--mp-brand-radius-panel);
	background: var(--mp-brand-surface);
	color: var(--mp-brand-ink);
	cursor: pointer;
	transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.o2k-delivery-method-item > input.shipping_method:checked + .o2k-delivery-card {
	border-color: var(--mp-brand-pink);
	background: var(--mp-brand-surface-pink);
	box-shadow: var(--mp-brand-shadow-pop);
}

.o2k-delivery-card.is-selected {
	border-color: var(--mp-brand-pink);
	background: var(--mp-brand-surface-pink);
	box-shadow: var(--mp-brand-shadow-pop);
}

.o2k-delivery-card__main {
	display: grid;
	gap: 8px;
}

.o2k-delivery-card__main strong {
	display: block;
	color: var(--mp-brand-ink);
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.15;
	text-transform: uppercase;
}

.o2k-delivery-card__main small {
	display: block;
	color: var(--mp-brand-muted-soft);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.o2k-delivery-card__price {
	color: var(--mp-brand-ink);
	font-size: 1.35rem;
	font-weight: 800;
	white-space: nowrap;
}

.o2k-delivery-methods .woo_lithuaniapost_lpexpress_terminal_select_container,
.o2k-delivery-methods .woo_lithuaniapost_lpexpress_terminal_label,
.o2k-delivery-methods .woo_lithuaniapost_delivery_time_label {
	display: block;
}

.o2k-delivery-methods .woo_lithuaniapost_lpexpress_terminal_select_container {
	margin: 0;
	padding-top: 10px;
}

.o2k-delivery-methods .woo_lithuaniapost_lpexpress_terminal_label,
.o2k-delivery-methods .woo_lithuaniapost_delivery_time_label {
	margin: 0 0 12px;
	color: var(--mp-brand-muted-soft);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.o2k-delivery-methods .woo_lithuaniapost_lpexpress_terminal_id,
.o2k-delivery-methods .select2-container--default .select2-selection--single {
	min-height: 60px;
	border: 2px solid rgba(255, 47, 147, 0.35) !important;
	border-radius: var(--mp-brand-radius-panel) !important;
	background: var(--mp-brand-surface) !important;
	box-shadow: var(--mp-brand-shadow-pop);
	color: var(--mp-brand-ink);
	font-size: 1rem;
	font-weight: 700;
}

.o2k-delivery-methods .select2-container--default .select2-selection--single .select2-selection__rendered {
	padding-left: 20px;
	padding-right: 44px;
	color: var(--mp-brand-ink);
	line-height: 56px;
}

.o2k-delivery-methods .select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 56px;
	right: 14px;
}

.o2k-delivery-methods .select2-dropdown {
	border: 1px solid rgba(32, 43, 85, 0.16);
	border-radius: var(--mp-brand-radius-panel);
	box-shadow: var(--mp-brand-shadow-card);
	overflow: hidden;
}

.o2k-delivery-methods .select2-search--dropdown {
	padding: 14px;
}

.o2k-delivery-methods .select2-search--dropdown .select2-search__field {
	min-height: 48px;
	border: 1px solid rgba(32, 43, 85, 0.2);
	border-radius: var(--mp-brand-radius-card);
	padding: 0 14px;
}

.o2k-delivery-methods .select2-results__group {
	color: var(--mp-brand-ink);
	font-weight: 800;
}

.o2k-delivery-methods .select2-results__option {
	padding: 12px 16px;
	color: var(--mp-brand-ink);
	font-weight: 600;
}

.o2k-delivery-methods .select2-results__option--highlighted[aria-selected] {
	background: rgba(255, 47, 147, 0.08) !important;
	color: var(--mp-brand-ink) !important;
}

.o2k-delivery-methods__empty,
.o2k-delivery-methods .mp-selected-pickup-point-info {
	margin-top: 12px;
	color: #5d647a;
	font-weight: 700;
}

.o2k-checkout-fields .form-row {
	margin: 0 0 18px;
}

.o2k-checkout-card--customer .woocommerce-billing-fields__field-wrapper {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px 24px;
}

.o2k-checkout-card--customer .form-row-first,
.o2k-checkout-card--customer .form-row-last,
.o2k-checkout-card--customer .form-row-wide {
	float: none;
	width: auto;
	margin: 0;
}

.o2k-checkout-card--customer .form-row-wide {
	grid-column: 1 / -1;
}

.o2k-checkout-fields label {
	display: block;
	margin-bottom: 10px;
	color: var(--mp-brand-muted-soft);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.o2k-checkout-fields input.input-text,
.o2k-checkout-fields textarea,
.o2k-checkout-fields select,
.o2k-checkout-fields .select2-container--default .select2-selection--single {
	min-height: 60px;
	border: 1px solid rgba(32, 43, 85, 0.14);
	border-radius: var(--mp-brand-radius-panel);
	background: #f8fbff;
	box-shadow: var(--mp-brand-shadow-soft);
	color: var(--mp-brand-ink);
	font-size: 1rem;
	font-weight: 600;
}

.o2k-checkout-fields textarea {
	min-height: 110px;
	border-radius: var(--mp-brand-radius-panel);
	padding: 16px 18px;
}

.o2k-checkout-fields input.input-text,
.o2k-checkout-fields select {
	padding: 0 18px;
}

.o2k-checkout-fields .woocommerce-input-wrapper {
	display: block;
}

.o2k-checkout-fields .optional {
	display: none;
}

.o2k-checkout-summary .woocommerce-checkout-review-order-table {
	width: 100%;
	border-collapse: collapse;
	color: var(--mp-brand-ink);
}

.o2k-checkout-summary .woocommerce-checkout-review-order-table th,
.o2k-checkout-summary .woocommerce-checkout-review-order-table td {
	padding: 12px 0;
	border-bottom: 1px solid rgba(17, 17, 17, 0.12);
	text-align: left;
}

.o2k-checkout-summary .woocommerce-checkout-review-order-table td:last-child,
.o2k-checkout-summary .woocommerce-checkout-review-order-table th:last-child {
	text-align: right;
}

.o2k-checkout-summary .order-total th,
.o2k-checkout-summary .order-total td {
	border-bottom: 0;
	font-size: 1.7rem;
	font-weight: 900;
}

.o2k-checkout-summary .order-total .amount {
	color: var(--mp-brand-pink-dark);
}

.o2k-checkout-summary .woocommerce-shipping-methods {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.o2k-checkout-summary .woocommerce-shipping-methods li {
	padding: 14px;
	border: 2px solid rgba(255, 47, 147, 0.35);
	border-radius: var(--mp-brand-radius-field);
	background: var(--mp-brand-surface);
	text-align: left;
}

.o2k-checkout-summary .woocommerce-shipping-methods input {
	margin-right: 8px;
	accent-color: var(--o2k-pink);
}

.o2k-checkout-summary .woocommerce-checkout-payment {
	margin-top: 22px;
}

.o2k-checkout-summary .wc_payment_methods {
	margin: 0 0 20px;
	padding: 0;
	list-style: none;
}

.o2k-checkout-summary .woocommerce-terms-and-conditions-wrapper {
	color: var(--mp-brand-ink);
	font-size: 0.95rem;
	font-weight: 700;
}

@media (max-width: 1100px) {
	.o2k-cart-layout,
	.o2k-checkout-layout {
		grid-template-columns: 1fr;
	}

	.o2k-cart-summary,
	.o2k-checkout-summary {
		position: static;
	}
}

@media (max-width: 700px) {
	.o2k-cart-page {
		padding-top: 150px;
	}

	.o2k-checkout-steps {
		margin-bottom: 40px;
		font-size: 0.85rem;
	}

	.o2k-cart-item {
		grid-template-columns: 96px minmax(0, 1fr);
		gap: 18px;
		padding: 22px;
	}

	.o2k-contact-page {
		padding-top: 150px;
	}

	.o2k-contact-hero {
		padding: 0 0 70px;
	}

	.o2k-contact-content h1 {
		font-size: 3rem;
	}

	.o2k-contact-intro {
		font-size: 1rem;
	}

	.o2k-about-page {
		padding-top: 150px;
	}

	.o2k-about-hero {
		padding: 0 0 70px;
	}

	.o2k-about-content h1 {
		font-size: 3.2rem;
	}

	.o2k-about-subtitle {
		font-size: 1.2rem;
	}

	.o2k-about-gallery {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.o2k-contact-row {
		grid-template-columns: 40px minmax(0, 1fr);
		gap: 14px;
	}

	.o2k-contact-row__icon {
		width: 38px;
		height: 38px;
	}

	.o2k-delivery-methods__grid {
		grid-template-columns: 1fr;
	}

	.o2k-checkout-card {
		padding: 28px 22px;
		border-radius: var(--mp-brand-radius-panel);
	}

	.o2k-checkout-card--customer .woocommerce-billing-fields__field-wrapper {
		grid-template-columns: 1fr;
	}

	.o2k-checkout-card--customer .form-row-wide {
		grid-column: auto;
	}

	.o2k-cart-item__media {
		width: 96px;
	}

	.o2k-cart-item__quantity,
	.o2k-cart-item__subtotal {
		grid-column: 2;
		text-align: left;
	}

	.o2k-cart-promo,
	.o2k-cart-summary,
	.o2k-checkout-summary {
		padding: 24px;
	}
}

@media (min-width: 821px) {
	.o2k-compare {
		width: 100%;
	}

	.o2k-compare__inner {
		width: min(90%, var(--o2k-container));
		max-width: var(--o2k-container);
	}

	h1,
	.o2k-hero__content h1,
	.o2k-archive-header h1,
	.o2k-category-showcase__header h1,
	.o2k-contact-content h1,
	.o2k-about-content h1,
	.o2k-service-hero__content h1,
	.o2k-product-config h1,
	.o2k-empty-cart h1,
	.woocommerce-products-header__title,
	.product_title,
	.page-title {
		font-size: 70px;
	}

	.o2k-content-page .o2k-page-card__header h1 {
		font-size: 50px;
		line-height: 1.08;
	}

	h2,
	.o2k-title,
	.o2k-compare__title,
	.o2k-service-info h2 {
		font-size: 72px;
	}

	h3 {
		font-size: 46px;
	}

	.o2k-product-config h1 {
		font-size: 52px;
	}

	.o2k-compare__inner {
		padding: clamp(24px, 2.5vw, 34px);
	}

	.o2k-compare__title {
		font-size: 40px;
		line-height: 0.9;
	}

	.o2k-compare__lead {
		font-size: clamp(13px, 0.9vw, 16px);
	}

	.o2k-compare-feature h3 {
		font-size: clamp(11px, 0.82vw, 15px);
	}

	.o2k-compare-panel__media {
		min-height: clamp(350px, 28vw, 520px);
	}

	.o2k-compare__vs {
		width: clamp(58px, 5vw, 78px);
		height: clamp(58px, 5vw, 78px);
		font-size: clamp(1.25rem, 1.8vw, 1.7rem);
	}
}

.o2k-title,
.o2k-compare__title,
.o2k-hero__content h1,
.o2k-contact-content h1,
.o2k-about-content h1,
.o2k-service-hero__content h1,
.o2k-category-hero h1,
.o2k-category-showcase__header h1,
.o2k-archive-header h1,
.o2k-product-config h1,
.o2k-empty-cart h1,
.woocommerce-products-header__title,
.product_title,
.page-title,
.o2k-section__title {
	color: var(--mp-brand-ink);
}

@media (min-width: 821px) {
	.o2k-product-config > h1 {
		font-size: clamp(1.52rem, 1.65vw, 2rem);
	}

	.o2k-about-content h1 {
		font-size: 60px;
	}

	.o2k-about-hero__inner {
		min-height: calc(100vh - 260px);
	}
}

@media (max-width: 720px) {
	.o2k-product-order-row {
		grid-template-columns: minmax(96px, 0.75fr) minmax(0, 1.25fr);
		gap: 8px;
		align-items: stretch;
	}

	.o2k-product-price {
		justify-content: center;
		padding: 10px 8px;
		font-size: 1.6rem;
	}

	.o2k-upload-box {
		min-height: 74px;
		padding: 8px 10px;
	}

	.o2k-upload-box__icon,
	.o2k-upload-box__icon:has(img) {
		width: 24px;
		height: 24px;
		margin-bottom: 4px;
	}

	.o2k-upload-box__icon img {
		width: 24px;
		height: 24px;
	}

	.o2k-upload-box strong {
		font-size: 0.68rem;
	}

	.o2k-upload-box small {
		font-size: 0.58rem;
	}

	.o2k-mount-options {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 8px;
	}

	.o2k-mount-option {
		grid-template-columns: minmax(0, 1fr) 18px;
		gap: 8px;
		min-height: 46px;
		padding: 10px 8px;
		font-size: 0.68rem;
	}

	.o2k-option-check {
		width: 18px;
		height: 18px;
	}

}

/* Cart page visual polish */
.o2k-cart-page {
	padding: 150px 0 96px;
	background:
		radial-gradient(circle at 94% 12%, rgba(255, 47, 147, 0.08), transparent 28%),
		linear-gradient(180deg, var(--mp-brand-surface-soft) 0%, var(--mp-brand-surface) 42%, var(--mp-brand-surface-soft) 100%);
}

@media (max-width: 700px) {
	.o2k-cart-page {
		padding-top: 90px;
	}
}

.o2k-cart-page--empty {
	padding-top: 150px;
}

.o2k-cart-shell {
	max-width: 1180px;
}

.o2k-checkout-steps {
	width: min(620px, 100%);
	margin-bottom: 46px;
	color: #9a9ba3;
	font-size: 1rem;
	font-weight: 800;
}

.o2k-checkout-steps::before,
.o2k-checkout-steps::after {
	top: 14px;
	height: 2px;
}

.o2k-checkout-step {
	gap: 12px;
}

.o2k-checkout-step i {
	width: 28px;
	height: 28px;
	border-width: 3px;
	box-shadow: 0 0 0 7px var(--mp-brand-surface);
}

.o2k-checkout-step.is-active i {
	box-shadow: inset 0 0 0 6px var(--o2k-pink), 0 0 0 7px var(--mp-brand-surface);
}

.o2k-cart-layout {
	grid-template-columns: minmax(0, 1fr) minmax(350px, 410px);
	gap: 24px;
}

.o2k-cart-items {
	gap: 18px;
}

.o2k-cart-item,
.o2k-cart-promo,
.o2k-cart-summary {
	border: 1px solid rgba(32, 43, 85, 0.07);
	border-radius: var(--mp-brand-radius-field);
	box-shadow: var(--mp-brand-shadow-card);
}

.o2k-cart-item {
	grid-template-columns: 164px minmax(0, 1fr) auto;
	align-items: center;
	gap: 24px;
	min-height: 168px;
	padding: 24px 28px 24px 24px;
}

.o2k-cart-item__title {
	margin: 0 34px 10px 0;
	color: var(--mp-brand-ink);
	font-size: 1.18rem;
	font-weight: 900;
	line-height: 1.12;
}

.o2k-cart-item__title a {
	color: inherit;
}

.o2k-cart-item__media {
	width: 164px;
	aspect-ratio: 1 / 0.88;
	border-radius: var(--mp-brand-radius-field);
}

.o2k-cart-item__body {
	align-self: center;
	width: 100%;
	min-width: 0;
}

.o2k-cart-item dl.variation {
	display: flex;
	flex-direction: column;
	gap: 6px;
	color: var(--mp-brand-ink);
	font-size: 0.82rem;
	font-weight: 800;
	line-height: 1.28;
}

.o2k-cart-item__detail {
	display: flex;
	align-items: baseline;
	gap: 4px;
	min-width: 0;
}

.o2k-cart-item dl.variation dt {
	display: inline;
	flex: 0 0 auto;
	font-weight: 900;
}

.o2k-cart-item dl.variation dd {
	display: inline;
	min-width: 0;
	color: var(--mp-brand-ink);
	overflow-wrap: anywhere;
}

.o2k-cart-item dl.variation dt::before {
	content: "\2022 ";
	color: var(--mp-brand-ink);
}

.o2k-cart-item__quantity .quantity {
	gap: 14px;
}

.o2k-qty-button {
	width: 46px;
	height: 46px;
	border-color: rgba(255, 47, 147, 0.22);
	color: var(--o2k-pink);
	background: var(--mp-brand-surface);
	box-shadow: var(--mp-brand-shadow-pop);
	font-size: 1.55rem;
}

.o2k-cart-item__quantity .quantity input {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
	opacity: 0;
	pointer-events: none;
}

.o2k-qty-value {
	display: inline-grid;
	place-items: center;
	min-width: 18px;
	color: var(--mp-brand-ink);
	font-size: 1.25rem;
	font-weight: 900;
	line-height: 1;
}

.o2k-cart-item__subtotal {
	align-self: center;
	justify-self: end;
	color: var(--mp-brand-ink);
	font-size: 0.9rem;
	font-weight: 900;
	white-space: nowrap;
}

.o2k-cart-item__remove {
	top: 18px;
	right: 20px;
	width: 28px;
	height: 28px;
	color: var(--o2k-pink);
	background: var(--mp-brand-pink-soft);
	font-size: 1.15rem;
}

.o2k-cart-promo {
	padding: 24px 28px 28px;
}

.o2k-cart-promo span {
	min-height: 29px;
	padding: 0 18px;
	border-radius: var(--mp-brand-radius-field);
	background: linear-gradient(135deg, var(--o2k-pink), var(--mp-brand-pink-dark));
	font-size: 0.82rem;
}

.o2k-cart-promo h2 {
	margin: 20px 0 8px;
	color: var(--mp-brand-ink);
	font-size: 1.55rem;
	line-height: 1.08;
}

.o2k-cart-promo p {
	margin-bottom: 26px;
	color: var(--mp-brand-ink);
	font-size: 0.98rem;
	font-weight: 700;
}

.o2k-cart-promo .o2k-button--outline {
	position: relative;
	min-height: 52px;
	border-color: rgba(255, 47, 147, 0.65);
	border-radius: var(--mp-brand-radius-field);
	color: var(--mp-brand-pink-dark);
	font-size: 0.95rem;
}

.o2k-cart-promo .o2k-button--outline::after {
	content: "\2192";
	position: absolute;
	right: 18px;
	font-size: 1.35rem;
	font-weight: 500;
}

.o2k-cart-summary {
	top: 122px;
	padding: 36px 36px 34px;
}

.o2k-cart-summary h2 {
	margin-bottom: 26px;
	color: var(--mp-brand-ink);
	font-size: 1.7rem;
	line-height: 1.1;
}

.o2k-cart-totals {
	gap: 18px;
}

.o2k-cart-total-row {
	color: var(--mp-brand-ink);
	font-size: 0.95rem;
}

.o2k-cart-total-row.cart-subtotal {
	padding-bottom: 20px;
}

.o2k-cart-total-row.order-total {
	padding-top: 8px;
	font-size: 1.4rem;
}

.o2k-cart-total-row.order-total strong {
	color: var(--mp-brand-pink);
	font-size: 2.08rem;
	line-height: 1;
	white-space: nowrap;
}

.o2k-cart-checkout .checkout-button {
	min-height: 48px;
	margin-top: 18px;
	border-radius: var(--mp-brand-radius-field);
	background: linear-gradient(135deg, var(--o2k-pink), var(--mp-brand-pink-dark));
	box-shadow: var(--mp-brand-shadow-pop);
	font-size: 0.98rem;
}

.o2k-summary-benefits {
	display: none;
}

.o2k-payment-badges {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
	margin-top: 34px;
}

.o2k-payment-badges span {
	min-width: 0;
	min-height: 46px;
	border-color: rgba(32, 43, 85, 0.09);
	border-radius: var(--mp-brand-radius-field);
	color: var(--mp-brand-ink);
	font-size: 0.72rem;
	box-shadow: var(--mp-brand-shadow-soft);
}

.o2k-payment-badges img {
	display: block;
	width: auto;
	max-width: 58px;
	max-height: 30px;
	object-fit: contain;
}

@media (max-width: 720px) {
	.o2k-cart-item {
		grid-template-columns: 84px minmax(0, 1fr) auto;
		gap: 12px;
		align-items: start;
		padding: 20px 18px;
	}

	.o2k-cart-item__media {
		grid-column: 1;
		grid-row: 1;
		width: 84px;
	}

	.o2k-cart-item__body {
		grid-column: 2 / 3;
		grid-row: 1;
		min-width: 0;
		text-align: left;
	}

	.o2k-cart-item__title {
		margin: 0 0 8px;
		font-size: 1rem;
		line-height: 1.14;
		text-align: left;
	}

	.o2k-cart-item dl.variation {
		gap: 3px;
		font-size: 0.78rem;
		line-height: 1.2;
		text-align: left;
	}

	.o2k-cart-item__detail {
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
		gap: 3px;
		text-align: left;
	}

	.o2k-cart-item dl.variation dt,
	.o2k-cart-item dl.variation dd {
		flex: 0 1 auto;
		text-align: left;
	}

	.o2k-cart-item__subtotal {
		grid-column: 3;
		grid-row: 1;
		align-self: center;
		justify-self: end;
		font-size: 0.82rem;
		text-align: right;
	}

	.o2k-payment-badges {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

/* Checkout payment step */
.o2k-checkout-page {
	padding-top: 150px;
}

.o2k-checkout-page .o2k-cart-shell {
	max-width: 1100px;
}

.o2k-checkout-page .o2k-checkout-steps {
	margin-bottom: 40px;
}

.o2k-checkout-layout {
	grid-template-columns: minmax(0, 1fr) minmax(340px, 400px);
	gap: 20px;
	align-items: start;
}

.o2k-checkout-card,
.o2k-checkout-summary {
	border: 1px solid rgba(32, 43, 85, 0.06);
	border-radius: var(--mp-brand-radius-field);
	background: var(--mp-brand-surface);
	box-shadow: var(--mp-brand-shadow-card);
}

.o2k-checkout-card {
	padding: 28px 30px 30px;
}

.o2k-checkout-card--customer > h3,
.o2k-delivery-methods > h3 {
	margin: 0 0 16px;
	color: var(--mp-brand-ink);
	font-size: 1.45rem;
	font-weight: 900;
	line-height: 1.12;
}

.o2k-checkout-customer {
	gap: 18px;
}

.o2k-checkout-card--customer .woocommerce-billing-fields__field-wrapper {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
	width: 100%;
}

.o2k-checkout-card--customer .woocommerce-billing-fields__field-wrapper::before {
	display: none;
	content: none;
}

.o2k-checkout-card--customer #billing_first_name_field { order: 10; }
.o2k-checkout-card--customer #billing_last_name_field { order: 20; }
.o2k-checkout-card--customer #billing_email_field { order: 30; }
.o2k-checkout-card--customer #billing_phone_field { order: 40; }
.o2k-checkout-card--customer #billing_city_field { order: 41; }
.o2k-checkout-card--customer #billing_country_field { order: 60; }
.o2k-checkout-card--customer #billing_address_1_field { order: 61; }
.o2k-checkout-card--customer #billing_address_2_field { order: 62; }

.o2k-checkout-card--customer .form-row-first,
.o2k-checkout-card--customer .form-row-last,
.o2k-checkout-card--customer .form-row-wide {
	float: none !important;
	width: 100% !important;
	margin: 0;
}

.o2k-checkout-card--customer .form-row-wide,
.o2k-checkout-card--customer #billing_country_field {
	grid-column: 1 / -1;
}

.o2k-checkout-card--customer #billing_address_1_field,
.o2k-checkout-card--customer #billing_address_2_field,
.o2k-checkout-card--customer.is-courier-delivery #billing_address_1_field,
.o2k-checkout-card--customer.is-courier-delivery #billing_address_2_field,
.o2k-checkout-card--customer .o2k-courier-address-field {
	position: absolute !important;
	left: -9999px !important;
	display: block !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

.o2k-checkout-card--customer.is-courier-delivery #billing_address_1_field,
.o2k-checkout-card--customer.is-courier-delivery #billing_address_2_field {
	display: block !important;
}

.o2k-checkout-card--customer #billing_phone_field {
	grid-column: 1;
}

.o2k-checkout-card--customer #billing_city_field {
	grid-column: 2;
}

@media (max-width: 700px) {
	.o2k-checkout-card--customer .woocommerce-billing-fields__field-wrapper {
		grid-template-columns: 1fr;
	}

	.o2k-checkout-card--customer .form-row,
	.o2k-checkout-card--customer .form-row-wide,
	.o2k-checkout-card--customer #billing_phone_field,
	.o2k-checkout-card--customer #billing_city_field,
	.o2k-checkout-card--customer.is-courier-delivery #billing_address_1_field,
	.o2k-checkout-card--customer.is-courier-delivery #billing_address_2_field {
		grid-column: 1 / -1;
	}

	.o2k-checkout-card--customer.is-courier-delivery #billing_address_2_field {
		padding-top: 0;
	}
}

.o2k-checkout-fields .form-row {
	margin: 0;
}

.o2k-checkout-fields label {
	margin-bottom: 7px;
	color: var(--mp-brand-muted-soft);
	font-size: 0.68rem;
	font-weight: 900;
	letter-spacing: 0.14em;
}

.o2k-checkout-fields input.input-text,
.o2k-checkout-fields textarea,
.o2k-checkout-fields select,
.o2k-checkout-fields .select2-container--default .select2-selection--single {
	width: 100%;
	min-height: 46px;
	border: 1px solid rgba(32, 43, 85, 0.12);
	border-radius: var(--mp-brand-radius-field);
	background: var(--mp-brand-surface);
	box-shadow: none;
	color: var(--mp-brand-ink);
	font-size: 0.86rem;
	font-weight: 700;
}

.o2k-checkout-fields input.input-text,
.o2k-checkout-fields select {
	padding: 0 16px;
}

.o2k-checkout-fields .select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 22px;
	padding-left: 16px;
	color: var(--mp-brand-ink);
}

.o2k-checkout-fields .select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 44px;
}

.o2k-checkout-page .woocommerce-NoticeGroup-checkout,
.o2k-checkout-page .woocommerce-NoticeGroup,
.o2k-checkout-page .woocommerce-error,
.o2k-checkout-page .woocommerce-message,
.o2k-checkout-page .woocommerce-info,
.o2k-checkout-form .woocommerce-NoticeGroup-checkout,
.o2k-checkout-form .woocommerce-NoticeGroup,
.o2k-checkout-form .woocommerce-error,
.o2k-checkout-form .woocommerce-message,
.o2k-checkout-form .woocommerce-info,
.o2k-checkout-summary .woocommerce-NoticeGroup,
.o2k-checkout-summary .woocommerce-error,
.o2k-checkout-summary .woocommerce-message,
.o2k-checkout-summary .woocommerce-info {
	display: none !important;
}

.o2k-checkout-fields .form-row.woocommerce-invalid input.input-text,
.o2k-checkout-fields .form-row.woocommerce-invalid select,
.o2k-checkout-fields .form-row.woocommerce-invalid .select2-selection--single,
.o2k-checkout-fields .form-row.is-o2k-invalid input.input-text,
.o2k-checkout-fields .form-row.is-o2k-invalid select,
.o2k-checkout-fields .form-row.is-o2k-invalid .select2-selection--single,
.o2k-checkout-fields .form-row.is-o2k-invalid textarea,
.o2k-checkout-fields input.input-text.is-o2k-invalid,
.o2k-checkout-fields select.is-o2k-invalid,
.o2k-checkout-fields textarea.is-o2k-invalid,
.o2k-checkout-fields .select2-selection--single.is-o2k-invalid,
.o2k-checkout-page input.is-o2k-invalid,
.o2k-checkout-page select.is-o2k-invalid,
.o2k-checkout-page textarea.is-o2k-invalid {
	border-color: var(--o2k-pink);
	box-shadow: var(--mp-brand-shadow-focus);
	outline: 0;
}

.o2k-checkout-fields input.input-text:focus,
.o2k-checkout-fields select:focus,
.o2k-checkout-fields .select2-container--open .select2-selection--single {
	border-color: rgba(32, 43, 85, 0.26);
	box-shadow: var(--mp-brand-shadow-xs);
	outline: 0;
}

.o2k-checkout-fields .form-row.is-o2k-invalid input.input-text,
.o2k-checkout-fields .form-row.is-o2k-invalid select,
.o2k-checkout-fields .form-row.is-o2k-invalid textarea,
.o2k-checkout-fields .form-row.is-o2k-invalid .select2-selection--single,
.o2k-checkout-fields input.input-text.is-o2k-invalid,
.o2k-checkout-fields select.is-o2k-invalid,
.o2k-checkout-fields textarea.is-o2k-invalid,
.o2k-checkout-fields .select2-selection--single.is-o2k-invalid,
.o2k-checkout-page input.is-o2k-invalid,
.o2k-checkout-page select.is-o2k-invalid,
.o2k-checkout-page textarea.is-o2k-invalid {
	border-color: var(--mp-brand-pink) !important;
}

.o2k-delivery-methods.is-o2k-invalid,
.o2k-delivery-methods.is-o2k-invalid-block {
	border-color: var(--mp-brand-pink) !important;
	box-shadow: var(--mp-brand-shadow-focus) !important;
}

.o2k-delivery-methods .select2-selection--single.is-o2k-invalid,
.o2k-delivery-methods select.is-o2k-invalid,
.o2k-delivery-methods input.input-text.is-o2k-invalid {
	border-color: var(--mp-brand-pink) !important;
}

.woocommerce-terms-and-conditions-wrapper.is-o2k-invalid,
.woocommerce-terms-and-conditions-wrapper.is-o2k-invalid-block,
.woocommerce-terms-and-conditions-wrapper label.is-o2k-invalid,
.woocommerce-terms-and-conditions-wrapper label.is-o2k-invalid-block {
	color: var(--mp-brand-pink) !important;
}

.woocommerce-terms-and-conditions-wrapper input[type="checkbox"].is-o2k-invalid,
.woocommerce-terms-and-conditions-wrapper.is-o2k-invalid input[type="checkbox"],
.woocommerce-terms-and-conditions-wrapper.is-o2k-invalid-block input[type="checkbox"] {
	border-color: var(--mp-brand-pink) !important;
	box-shadow: var(--mp-brand-shadow-focus) !important;
}

.o2k-checkout-summary .woocommerce-terms-and-conditions-wrapper.is-o2k-invalid,
.o2k-checkout-summary .woocommerce-terms-and-conditions-wrapper.is-o2k-invalid-block {
	border-color: var(--mp-brand-pink) !important;
}

.o2k-checkout-page .is-o2k-invalid,
.o2k-checkout-page .is-o2k-invalid-block {
	scroll-margin-top: 130px;
}

.o2k-checkout-page .o2k-block-error-message,
.o2k-checkout-page .o2k-paysera-bank-error {
	margin: 8px 0 0;
	color: var(--mp-brand-pink) !important;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.35;
}

.o2k-checkout-card--payment .paysera-radio-control.is-o2k-invalid,
.o2k-checkout-card--payment #paysera-payment-element.is-o2k-invalid {
	border-radius: var(--mp-brand-radius-field);
}

.o2k-checkout-card--payment .paysera-radio-control.is-o2k-invalid .radio-control__option,
.o2k-checkout-card--payment #paysera-payment-element.is-o2k-invalid .radio-control__option,
.o2k-checkout-card--payment .radio-control__option.is-o2k-invalid,
.o2k-checkout-card--payment .radio-control__option-layout.is-o2k-invalid,
.o2k-checkout-card--payment .radio-control__option-group.is-o2k-invalid {
	border-color: var(--mp-brand-pink) !important;
	box-shadow: var(--mp-brand-shadow-focus) !important;
}

.o2k-delivery-methods {
	order: 70;
	margin-top: 0;
	padding-top: 26px;
	padding-bottom: 30px;
}

.o2k-delivery-methods > h3 {
	margin-top: 0;
	padding-top: 0;
	border-top: 0;
	font-size: 0;
}

.o2k-delivery-methods > h3::before {
	content: var(--o2k-checkout-delivery-method, "Pristatymo b\016B das");
	display: block;
	color: var(--mp-brand-muted-soft);
	font-size: 0.68rem;
	font-weight: 900;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.o2k-delivery-methods__grid {
	gap: 14px;
}

.o2k-delivery-card {
	position: relative;
	display: grid;
	grid-template-columns: 24px minmax(0, 1fr);
	grid-template-areas:
		"check main"
		"check price";
	align-items: center;
	column-gap: 16px;
	row-gap: 5px;
	min-height: 78px;
	padding: 18px 18px 16px;
	border: 1px solid rgba(32, 43, 85, 0.1);
	border-radius: var(--mp-brand-radius-field);
}

.o2k-delivery-card::before {
	content: "";
	grid-area: check;
	display: block;
	width: 24px;
	height: 24px;
	border: 2px solid rgba(32, 43, 85, 0.16);
	border-radius: var(--mp-brand-radius-pill);
	background: transparent;
}

.o2k-delivery-method-item > input.shipping_method:checked + .o2k-delivery-card,
.o2k-delivery-card.is-selected {
	border: 2px solid var(--o2k-pink);
	background: var(--mp-brand-surface-pink);
	box-shadow: var(--mp-brand-shadow-pop);
}

.o2k-delivery-card__main {
	grid-area: main;
	min-width: 0;
}

.o2k-delivery-card__main strong {
	color: var(--mp-brand-ink);
	font-size: 0.8rem;
}

.o2k-delivery-card__main small {
	color: var(--mp-brand-muted-soft);
	font-size: 0.65rem;
	letter-spacing: 0.08em;
}

.o2k-delivery-card__price {
	grid-area: price;
	justify-self: start;
	color: var(--mp-brand-ink);
	font-size: 0.86rem;
	font-weight: 900;
}

.o2k-delivery-method-item__extras {
	grid-column: 1 / -1;
	width: 100%;
	margin-top: 12px;
}

.o2k-delivery-method-item > img,
.o2k-delivery-method-item > picture,
.o2k-delivery-method-item .shipping-method-logo,
.o2k-delivery-method-item .unisend-logo,
.o2k-delivery-method-item .lpexpress-logo {
	display: none !important;
}

.o2k-delivery-method-item__extras:not(.is-active) {
	display: none;
}

.o2k-courier-fields {
	display: flex;
	flex-direction: column;
	gap: 18px 20px;
	width: 100%;
}

.o2k-courier-fields .form-row {
	float: none !important;
	width: 100% !important;
	margin: 0;
}

.o2k-delivery-method-item__extras > br {
	display: none;
}

.o2k-delivery-methods .woo_lithuaniapost_lpexpress_terminal_label,
.o2k-delivery-methods .woo_lithuaniapost_delivery_time_label {
	display: block;
	margin-bottom: 8px;
	font-size: 0.68rem;
	font-weight: 900;
}

.o2k-delivery-methods .woo_lithuaniapost_lpexpress_terminal_select_container {
	margin: 0;
	width: 100% !important;
}

.o2k-delivery-methods .woo_lithuaniapost_lpexpress_terminal_id,
.o2k-delivery-methods .select2-container--default .select2-selection--single {
	width: 100% !important;
	min-height: 46px;
	border: 1px solid rgba(32, 43, 85, 0.14) !important;
	border-radius: var(--mp-brand-radius-field) !important;
	box-shadow: none;
	font-size: 0.86rem;
}

.o2k-delivery-methods .select2-container {
	width: 100% !important;
}

.o2k-delivery-methods .select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 44px;
}

.o2k-delivery-methods .select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 44px;
}

.o2k-checkout-summary {
	top: 122px;
	padding: 28px 28px 30px;
}

.o2k-checkout-summary h2 {
	margin: 0 0 22px;
	color: var(--mp-brand-ink);
	font-size: 1.5rem;
	font-weight: 900;
	line-height: 1.1;
}

.o2k-checkout-summary .woocommerce-checkout-review-order-table {
	color: var(--mp-brand-ink);
}

.o2k-checkout-summary .woocommerce-checkout-review-order-table,
.o2k-checkout-summary .woocommerce-checkout-review-order-table tbody,
.o2k-checkout-summary .woocommerce-checkout-review-order-table tfoot,
.o2k-checkout-summary .woocommerce-checkout-review-order-table tr,
.o2k-checkout-summary .woocommerce-checkout-review-order-table th,
.o2k-checkout-summary .woocommerce-checkout-review-order-table td {
	display: block;
}

.o2k-checkout-summary .woocommerce-checkout-review-order-table tr.cart_item {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 14px;
	padding-bottom: 26px;
	border-bottom: 1px solid rgba(17, 17, 17, 0.1);
}

.o2k-checkout-summary .woocommerce-checkout-review-order-table th,
.o2k-checkout-summary .woocommerce-checkout-review-order-table td {
	padding: 0;
	border-bottom: 0;
}

.o2k-checkout-summary .product-name {
	display: grid !important;
	grid-template-columns: 58px minmax(0, 1fr);
	gap: 12px;
	align-items: start;
	text-align: left;
}

.o2k-review-product__image {
	display: block;
	width: 58px;
	aspect-ratio: 1;
	border-radius: var(--mp-brand-radius-field);
	overflow: hidden;
	background: var(--mp-brand-surface-soft);
}

.o2k-review-product__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.o2k-review-product__content {
	display: block;
	min-width: 0;
}

.o2k-review-product__content > strong {
	display: block;
	margin-bottom: 5px;
	color: var(--mp-brand-ink);
	font-size: 0.86rem;
	font-weight: 900;
	line-height: 1.15;
}

.o2k-review-product__content > span {
	display: none;
}

.o2k-review-product__content dl.variation {
	display: grid;
	gap: 2px;
	margin: 0;
	color: var(--mp-brand-ink);
	font-size: 0.74rem;
	font-weight: 700;
}

.o2k-review-product__content dl.variation dt,
.o2k-review-product__content dl.variation dd,
.o2k-review-product__content dl.variation p {
	margin: 0;
	display: inline-flex;
}

.o2k-review-product__content dl.variation dt::before {
	content: "\2022 ";
}

.o2k-checkout-summary .product-total {
	align-self: center;
	color: var(--mp-brand-ink);
	font-size: 0.86rem;
	font-weight: 900;
	white-space: nowrap;
}

.o2k-checkout-summary tfoot {
	display: grid !important;
	gap: 14px;
	padding-top: 24px;
}

.o2k-checkout-summary tfoot tr {
	display: flex !important;
	justify-content: space-between;
	gap: 18px;
	color: var(--mp-brand-ink);
	font-size: 0.92rem;
	font-weight: 800;
}

.o2k-checkout-summary tfoot th,
.o2k-checkout-summary tfoot td {
	text-align: left !important;
}

.o2k-checkout-summary tfoot td {
	text-align: right !important;
	font-weight: 900;
}

.o2k-checkout-summary .order-total {
	align-items: baseline;
	margin-top: 12px;
	padding-top: 24px;
	border-top: 1px solid rgba(17, 17, 17, 0.1);
}

.o2k-checkout-summary .order-total th,
.o2k-checkout-summary .order-total td {
	font-size: 1.45rem;
}

.o2k-checkout-summary .order-total .amount {
	color: var(--o2k-pink);
	font-size: 2rem;
	white-space: nowrap;
}

.o2k-checkout-summary .woocommerce-checkout-payment {
	margin-top: 22px;
	display: flex;
	flex-direction: column;
}

.o2k-checkout-summary .wc_payment_methods {
	order: 3;
	display: block;
	margin: 16px 0;
	padding: 0;
	list-style: none;
	height: auto;
	overflow: visible;
	opacity: 1;
}

.o2k-checkout-summary .payment_box {
	display: block !important;
}

.o2k-checkout-summary .woocommerce-privacy-policy-text {
	display: none;
}

.o2k-checkout-summary .woocommerce-terms-and-conditions-wrapper {
	order: 1;
	display: block;
	margin: 0 0 18px;
	color: var(--mp-brand-ink);
	font-size: 0.82rem;
	font-weight: 700;
	line-height: 1.45;
}

.o2k-checkout-summary .form-row.place-order {
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 0;
}

.o2k-checkout-summary .woocommerce-form__label-for-checkbox {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 0;
	cursor: pointer;
}

.o2k-checkout-summary .woocommerce-form__label-for-checkbox input[type="checkbox"] {
	flex: 0 0 auto;
	width: 20px;
	height: 20px;
	margin: 1px 0 0;
	border: 2px solid rgba(255, 47, 147, 0.45);
	border-radius: var(--mp-brand-radius-field);
	accent-color: var(--o2k-pink);
}

.o2k-checkout-summary .woocommerce-form__label-for-checkbox a {
	color: var(--o2k-pink);
	font-weight: 800;
}

.o2k-checkout-summary #place_order {
	order: 2;
	min-height: 48px;
	margin-top: 0;
	border-radius: var(--mp-brand-radius-field);
	background: var(--mp-brand-pink);
	box-shadow: var(--mp-brand-shadow-pop);
	font-size: 0.98rem;
}

.o2k-thankyou-page {
	min-height: 62vh;
}

.o2k-thankyou-card {
	display: grid;
	justify-items: center;
	max-width: 760px;
	margin: 0 auto;
	padding: clamp(42px, 7vw, 72px) clamp(22px, 5vw, 64px);
	border: 1px solid rgba(32, 43, 85, 0.08);
	border-radius: var(--mp-brand-radius-card);
	background: rgba(255, 255, 255, 0.98);
	text-align: center;
	box-shadow: var(--mp-brand-shadow-card);
}

.o2k-thankyou-card h1 {
	margin: 0;
	color: var(--mp-brand-ink);
	font-size: clamp(2.6rem, 5vw, 4.7rem);
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0;
}

.o2k-thankyou-actions {
	margin-top: 28px;
}

@media (max-width: 1100px) {
	.o2k-checkout-layout {
		grid-template-columns: 1fr;
	}

	.o2k-checkout-summary {
		position: static;
	}
}

@media (max-width: 700px) {
	.o2k-checkout-card--customer .woocommerce-billing-fields__field-wrapper,
	.o2k-delivery-methods__grid,
	.o2k-courier-fields {
		grid-template-columns: 1fr;
	}

	.o2k-checkout-card--customer.is-courier-delivery #billing_address_1_field,
	.o2k-checkout-card--customer.is-courier-delivery #billing_address_2_field,
	.o2k-courier-fields #billing_address_1_field,
	.o2k-courier-fields #billing_address_2_field {
		grid-column: auto;
	}
}

.o2k-service-hero {
	min-height: auto;
	padding: 0 0 clamp(54px, 7vw, 82px);
}

.o2k-service-hero__inner {
	display: grid;
	grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
	grid-template-areas:
		"breadcrumbs breadcrumbs"
		"content visual"
		"steps details";
	gap: clamp(16px, 2.2vw, 28px);
	width: 100%;
	max-width: var(--o2k-container);
	margin: 0 auto;
	padding-inline: var(--o2k-container-pad);
	align-items: stretch;
}

.o2k-service-hero__inner > .o2k-breadcrumbs {
	grid-area: breadcrumbs;
	margin-bottom: 0;
}

.o2k-service-hero__content {
	grid-area: content;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	min-width: 0;
	padding: clamp(12px, 2vw, 24px) 0;
}

.o2k-service-hero__content h1,
body .o2k-service-hero__content h1 {
	margin: 0 0 14px;
	color: var(--mp-brand-ink);
	font-size: clamp(2.55rem, 4.2vw, 3rem);
	font-weight: 700;
	line-height: 0.98;
	letter-spacing: 0;
}

.o2k-service-hero__content h1 span {
	color: var(--o2k-pink);
}

.o2k-service-hero__content > p {
	max-width: 680px;
	margin: 0 0 18px;
	color: var(--mp-brand-ink);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.3;
	display: block;
}

.o2k-service-checklist {
	display: grid;
	gap: 8px;
	margin: 0 0 22px;
	padding: 0;
	list-style: none;
}

.o2k-service-checklist li {
	position: relative;
	padding-left: 25px;
	color: var(--mp-brand-ink);
	font-size: 0.86rem;
	font-weight: 700;
	line-height: 1.35;
}

.o2k-service-checklist li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 9px;
	width: 19px;
	height: 19px;
	border-radius: var(--mp-brand-radius-pill);
	background: var(--o2k-pink);
}

.o2k-service-checklist li::after {
	content: "";
	position: absolute;
	left: 7px;
	top: 4px;
	width: 6px;
	height: 9px;
	border: solid var(--mp-brand-surface);
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.o2k-service-cta {
	min-width: 210px;
	min-height: 44px;
	padding: 12px 24px;
	border-radius: var(--mp-brand-radius-field);
	font-size: 0.86rem;
	font-weight: 800;
	box-shadow: var(--mp-brand-shadow-pop);
}

.o2k-service-compare {
	grid-area: visual;
	border-radius: var(--mp-brand-radius-soft);
	box-shadow: var(--mp-brand-shadow-card);
}

.o2k-service-compare .o2k-before-after__panel {
	min-height: clamp(330px, 35vw, 475px);
	border-radius: var(--mp-brand-radius-soft);
	box-shadow: none;
}

@media (min-width: 1025px) and (max-width: 1199px) {
	.o2k-service-compare .o2k-before-after__panel {
		min-height: clamp(430px, 42vw, 520px);
	}
}

.o2k-service-compare .o2k-before-after__side img {
	object-fit: cover;
}

.o2k-service-compare .o2k-before-after__label {
	top: 13px;
	padding: 6px 10px;
	border-radius: var(--mp-brand-radius-field);
	color: var(--mp-brand-surface);
	background: var(--o2k-pink);
	font-size: 0.66rem;
	font-weight: 800;
	text-transform: uppercase;
}

.o2k-service-compare .o2k-before-after__label--before {
	left: 14px;
}

.o2k-service-compare .o2k-before-after__label--after {
	right: 14px;
}

.o2k-service-compare .o2k-before-after__divider span {
	width: 42px;
	height: 42px;
	box-shadow: var(--mp-brand-shadow-soft);
}

.o2k-service-compare .o2k-before-after__divider span::before {
	content: "";
	width: 14px;
	height: 14px;
	background: var(--mp-brand-ink);
	mask: url("assets/images/slider-arrow.svg") center / contain no-repeat;
	transform: rotate(180deg);
}

.o2k-service-compare .o2k-before-after__divider span::after {
	content: "";
	width: 14px;
	height: 14px;
	margin-left: -3px;
	background: var(--mp-brand-ink);
	mask: url("assets/images/slider-arrow.svg") center / contain no-repeat;
}

.o2k-service-steps,
.o2k-service-details {
	min-width: 0;
	padding: clamp(18px, 2vw, 24px);
	border: 1px solid rgba(32, 43, 85, 0.08);
	border-radius: var(--mp-brand-radius-soft);
	background: var(--mp-brand-surface);
	box-shadow: var(--mp-brand-shadow-soft);
}

.o2k-service-steps {
	grid-area: steps;
}

.o2k-service-details {
	grid-area: details;
	display: block;
}

.o2k-service-steps h2,
.o2k-service-details h2 {
	margin: 0 0 16px;
	color: var(--mp-brand-ink);
	font-size: clamp(1.05rem, 1.5vw, 1.3rem);
	font-weight: 800;
	line-height: 1.15;
	text-align: center;
}

.o2k-service-steps__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.o2k-service-step {
	position: relative;
	display: grid;
	gap: 8px;
	justify-items: center;
	text-align: center;
}

.o2k-service-step:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 20px;
	left: calc(50% + 28px);
	width: calc(100% - 42px);
	border-top: 2px dashed rgba(255, 47, 147, 0.35);
}

.o2k-service-step__icon {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border: 2px solid rgba(255, 47, 147, 0.45);
	border-radius: var(--mp-brand-radius-pill);
	color: var(--o2k-pink);
	background: var(--mp-brand-surface);
	font-size: 0.95rem;
	font-weight: 900;
}

.o2k-service-step__icon img {
	width: 24px;
	height: 24px;
	object-fit: contain;
}

.o2k-service-step strong {
	color: var(--o2k-pink);
	font-size: 0.78rem;
	font-weight: 800;
}

.o2k-service-step p {
	margin: 0;
	color: var(--mp-brand-muted);
	font-size: 0.72rem;
	font-weight: 600;
	line-height: 1.35;
}

.o2k-service-info {
	min-height: 0;
	padding: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.o2k-service-info ul {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px 20px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.o2k-service-info li {
	position: relative;
	padding-left: 20px;
	color: var(--mp-brand-ink);
	font-size: 0.76rem;
	font-weight: 700;
	line-height: 1.4;
}

.o2k-service-info li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.32em;
	width: 9px;
	height: 9px;
	border-radius: var(--mp-brand-radius-pill);
	background: var(--o2k-pink);
}

.o2k-service-note__text {
	margin-top: 18px;
	color: var(--mp-brand-muted);
	font-size: 0.86rem;
	font-weight: 600;
	line-height: 1.5;
	text-align: left;
}

@media (max-width: 1024px) {
	.o2k-service-hero__inner {
		grid-template-columns: 1fr;
		grid-template-areas:
			"breadcrumbs"
			"content"
			"visual"
			"steps"
			"details";
	}

	.o2k-service-hero__content {
		padding: 0;
	}
}

@media (min-width: 701px) and (max-width: 1024px) {
	.o2k-service-compare .o2k-before-after__panel {
		min-height: clamp(480px, 58vw, 620px);
	}
}

@media (max-width: 700px) {
	.o2k-service-single {
		padding-top: 90px;
	}

	.o2k-service-steps__grid,
	.o2k-service-info ul {
		grid-template-columns: 1fr;
	}

	.o2k-service-step:not(:last-child)::after {
		display: none;
	}

	.o2k-service-compare .o2k-before-after__panel {
		min-height: 390px;
	}
}

@media (min-width: 821px) and (max-width: 1180px) {
}

@media (min-width: 821px) and (max-width: 1180px) {
	.o2k-hero {
		padding: 130px 0 64px;
	}

	.o2k-hero__inner {
		grid-template-columns: 1fr;
		justify-items: center;
		gap: 42px;
		max-width: 820px;
	}

	.o2k-hero__content {
		width: 100%;
		max-width: 760px;
		text-align: center;
	}

	.o2k-hero__content h1 {
		font-size: clamp(3.25rem, 8vw, 5rem);
		line-height: 0.96;
	}

	.o2k-hero__content p {
		margin-inline: auto;
		font-size: clamp(1.2rem, 2.8vw, 1.55rem);
	}

	.o2k-hero__benefits {
		max-width: 560px;
		margin-inline: auto;
		justify-items: start;
		text-align: left;
	}

	.o2k-hero__video-card {
		width: min(100%, 430px);
		min-height: 560px;
	}

	.o2k-hero__video-media,
	.o2k-hero__video-media video,
	.o2k-hero__video-media img,
	.o2k-placeholder--hero-video {
		min-height: 560px;
	}

	@supports (height: 1svh) {
		.o2k-hero__video-card,
		.o2k-hero__video-media,
		.o2k-hero__video-media video,
		.o2k-hero__video-media img,
		.o2k-placeholder--hero-video {
			height: min(560px, 62svh);
			min-height: 0;
		}
	}
}

@media (max-width: 1023px) {
	.o2k-works-slider,
	.o2k-works-slider--marquee,
	.o2k-pricing-slider {
		padding-inline: 12px;
	}

	.o2k-works-slider,
	.o2k-works-slider--marquee {
		padding-bottom: 0;
	}

	.o2k-works-slider--marquee .o2k-works-track {
		align-items: flex-start;
	}

	.o2k-works-slider--marquee .o2k-works-track__slide {
		align-self: flex-start;
	}

	.o2k-works-slider .o2k-placeholder--work {
		aspect-ratio: 0.74;
		height: clamp(360px, 118vw, 460px);
		min-height: 0;
	}

	.o2k-pricing-slider {
		margin-inline: -8px;
		padding-inline: 20px;
		padding-top: 20px;
	}

	.o2k-pricing-slider .swiper-wrapper {
		padding-top: 20px;
	}

	.o2k-pricing-slider .swiper-slide {
		min-width: 0;
	}

	.o2k-placeholder--price {
		width: 100%;
		min-height: clamp(320px, 54vw, 448px);
	}

	.o2k-price-card__footer {
		gap: 10px;
		padding: 9px 10px;
	}

	.o2k-price-card__price {
		font-size: clamp(1.35rem, 3vw, 1.75rem);
	}

	.o2k-price-card .o2k-button--small {
		padding-inline: 10px;
		font-size: 0.64rem;
	}

	.o2k-works-slider .o2k-slider-btn {
		width: 46px;
		height: 46px;
	}

	.o2k-works-slider .o2k-slider-btn {
		top: calc(clamp(360px, 118vw, 460px) / 2);
	}

	.o2k-works-slider .o2k-slider-btn::before {
		width: 36px;
		height: 36px;
	}

	.o2k-works-slider .o2k-slider-btn--prev,
	.o2k-slider-btn--prev {
		left: 2px;
	}

	.o2k-works-slider .o2k-slider-btn--next,
	.o2k-slider-btn--next {
		right: 2px;
	}

	.o2k-works-pagination,
	.o2k-pricing-pagination {
		margin-top: 24px;
	}

	.o2k-works-pagination {
		padding-bottom: 0;
	}
}

@media (max-width: 700px) {
	.o2k-pricing-slider .o2k-placeholder--price {
		aspect-ratio: auto;
		height: clamp(256px, 92vw, 358px);
		min-height: 0;
	}
}

@media (max-width: 639px) {
	.o2k-works-slider,
	.o2k-works-slider--mobile-swiper {
		width: 100%;
		max-width: 100%;
		margin-inline: 0;
		padding-inline: 0;
		overflow: hidden;
	}

	.o2k-works-slider .swiper-wrapper,
	.o2k-work-card.swiper-slide {
		box-sizing: border-box;
		width: 100%;
	}

	.o2k-work-card.swiper-slide,
	.o2k-work-card.swiper-slide-active,
	.o2k-work-card.swiper-slide-next {
		max-width: none;
		width: 100%;
		margin-inline: 0;
	}

	.o2k-work-card .o2k-placeholder,
	.o2k-work-card .o2k-placeholder--work,
	.o2k-work-card img {
		width: 100%;
		max-width: none;
	}
}

@media (max-width: 820px) {
	.o2k-checkout-step {
		font-size: 12px;
	}

	.o2k-checkout-card--customer .woocommerce-billing-fields__field-wrapper,
	.o2k-delivery-methods__grid,
	.o2k-courier-fields {
		grid-template-columns: 1fr;
	}

	.o2k-checkout-card--customer .form-row,
	.o2k-checkout-card--customer .form-row-wide,
	.o2k-checkout-card--customer #billing_phone_field,
	.o2k-checkout-card--customer #billing_city_field,
	.o2k-checkout-card--customer.is-courier-delivery #billing_address_1_field,
	.o2k-checkout-card--customer.is-courier-delivery #billing_address_2_field,
	.o2k-courier-fields .form-row {
		grid-column: 1 / -1;
	}

	.o2k-checkout-card--customer.is-courier-delivery #billing_address_2_field {
		padding-top: 0;
	}
}

@media (max-width: 700px) {
	.o2k-page,
	.o2k-contact-page,
	.o2k-category-single,
	.o2k-service-single,
	.o2k-checkout-page,
	.o2k-cart-page--empty,
	.o2k-about-page {
		padding-top: 90px;
	}

	.o2k-faq-section {
		padding: 38px 0 34px;
	}

	.o2k-faq-section .o2k-title {
		font-size: 1.72rem !important;
		line-height: 1.06;
	}

	.o2k-faq__lead {
		max-width: 310px;
		margin-bottom: 18px;
		font-size: 0.74rem;
	}

	.o2k-faq {
		gap: 10px;
	}

	.o2k-faq__item summary {
		min-height: 43px;
		padding: 10px 40px 10px 14px;
		font-size: 0.72rem;
	}

	.o2k-faq__item summary::after {
		right: 14px;
		width: 16px;
		height: 16px;
	}

	.o2k-faq__item summary::before {
		right: 18.5px;
	}

	.o2k-faq__item p {
		padding: 0 38px 13px 14px;
		font-size: 0.72rem;
	}
}

.o2k-button:hover,
.o2k-button:focus-visible,
.o2k-button--outline:hover,
.o2k-button--outline:focus-visible,
.woocommerce .button:hover,
.woocommerce .button:focus-visible,
.woocommerce button.button:hover,
.woocommerce button.button:focus-visible,
.woocommerce a.button:hover,
.woocommerce a.button:focus-visible {
	border: 1px solid var(--mp-brand-pink);
	background: var(--mp-brand-surface);
	color: var(--mp-brand-pink);
	box-shadow: var(--mp-brand-shadow-pop);
	transform: translateY(-2px);
}

@media (max-width: 820px) {
	.o2k-site-header {
		display: grid;
		grid-template-columns: minmax(0, 1fr) 42px 42px 42px;
		align-items: center;
		justify-content: stretch;
		gap: 8px;
	}

	.o2k-brand {
		grid-column: 1;
		width: 100%;
		min-width: 0;
		margin-right: 0;
	}

	.o2k-brand__logo {
		width: auto;
		max-width: 165px;
	}

	.o2k-site-header .o2k-language-switcher {
		grid-column: 2;
	}

	.o2k-site-header .o2k-header-cart {
		grid-column: 3;
	}

	.o2k-site-header .o2k-menu-toggle {
		grid-column: 4;
		display: grid !important;
	}

	.o2k-site-header .o2k-language-switcher,
	.o2k-site-header .o2k-header-cart,
	.o2k-site-header .o2k-menu-toggle {
		width: 42px;
		min-width: 42px;
		height: 42px;
		min-height: 42px;
		border: 0;
		background: transparent;
		box-shadow: none;
	}

	.o2k-site-header .o2k-language-switcher:hover,
	.o2k-site-header .o2k-language-switcher:focus-within,
	.o2k-site-header .o2k-header-cart:hover,
	.o2k-site-header .o2k-header-cart:focus-visible,
	.o2k-site-header .o2k-menu-toggle:hover,
	.o2k-site-header .o2k-menu-toggle:focus-visible {
		background: transparent;
		box-shadow: none;
		transform: none;
	}

	.o2k-site-header .o2k-header-cart:hover .o2k-cart-icon,
	.o2k-site-header .o2k-header-cart:focus-visible .o2k-cart-icon {
		box-shadow: none;
	}
}

@media (max-width: 420px) {
	.o2k-header-wrap {
		left: 10px;
		width: calc(100% - 20px);
		padding-inline: 0;
		box-sizing: border-box;
	}

	.o2k-site-header {
		width: 100%;
		max-width: 100%;
		min-width: 0;
		grid-template-columns: minmax(0, 1fr) 38px 38px 38px;
		justify-content: stretch;
		gap: 6px;
		padding: 9px 8px;
		overflow: visible;
	}

	.o2k-brand {
		min-width: 0;
		max-width: none;
		margin-right: 0;
	}

	.o2k-brand__logo {
		width: auto;
		height: 32px;
		max-width: 150px;
	}

	.o2k-site-header .o2k-language-switcher,
	.o2k-site-header .o2k-header-cart,
	.o2k-site-header .o2k-menu-toggle {
		width: 38px;
		min-width: 38px;
		height: 38px;
		min-height: 38px;
	}

	.o2k-site-header .o2k-menu-toggle {
		display: grid !important;
	}

	.o2k-nav {
		left: 0;
		right: 0;
		width: 100%;
		max-width: 100%;
		max-height: calc(100dvh - 94px);
		padding: 12px;
		overflow-x: hidden;
		box-sizing: border-box;
	}

	.o2k-nav > a,
	.o2k-nav-item > a,
	.o2k-submenu,
	.o2k-submenu a,
	.o2k-header-socials {
		width: 100%;
		max-width: 100%;
		min-width: 0;
		box-sizing: border-box;
	}

	.o2k-nav > a,
	.o2k-nav-item > a {
		min-height: 50px;
		padding-inline: 14px;
	}

	.o2k-submenu {
		padding-inline: 0;
	}

	.o2k-nav-item.is-open .o2k-submenu {
		padding: 8px 0 4px;
	}

	.o2k-submenu a {
		overflow-wrap: anywhere;
	}
}

@media (max-width: 380px) {
	.o2k-header-wrap {
		left: 8px;
		width: calc(100% - 16px);
	}

	.o2k-site-header {
		grid-template-columns: minmax(0, 1fr) 36px 36px 36px;
		gap: 5px;
		padding-inline: 7px;
	}

	.o2k-brand {
		max-width: none;
	}

	.o2k-brand__logo {
		height: 30px;
		max-width: 138px;
	}

	.o2k-site-header .o2k-language-switcher,
	.o2k-site-header .o2k-header-cart,
	.o2k-site-header .o2k-menu-toggle {
		width: 36px;
		min-width: 36px;
		height: 36px;
		min-height: 36px;
	}

	.o2k-menu-toggle i,
	.o2k-menu-toggle i::before,
	.o2k-menu-toggle i::after {
		width: 20px;
	}
}

@media (max-width: 820px), (hover: none) {
	.o2k-product-preview__frame:hover img,
	.o2k-product-preview__frame:hover .o2k-product-preview__placeholder {
		box-shadow: none;
		transform: none;
	}

	.o2k-option-grid button:hover {
		animation: none;
	}

	.o2k-mount-option:hover {
		border-color: var(--mp-brand-border);
		background: var(--mp-brand-surface);
		transform: none;
	}

	.o2k-mount-option.is-active:hover {
		border-color: var(--o2k-pink);
		background: var(--mp-brand-surface-pink);
	}

	.o2k-upload-box:hover {
		border-color: var(--mp-brand-border-strong);
		background: transparent;
		box-shadow: none;
		transform: none;
	}
}

@media (max-width: 1160px) {
	.o2k-nav {
		visibility: hidden;
		transition: opacity 0.24s ease, transform 0.24s ease, visibility 0s linear 0.24s;
	}

	.o2k-site-header.is-menu-open .o2k-nav {
		visibility: visible;
		transition: opacity 0.24s ease, transform 0.24s ease, visibility 0s linear 0s;
	}
}

@media (max-width: 820px) {
	.o2k-site-header > .o2k-nav {
		grid-column: 1 / -1 !important;
		justify-self: stretch !important;
		inset-inline: 0 !important;
		width: 100% !important;
		min-width: 100% !important;
		max-width: 100% !important;
		max-height: calc(100dvh - 92px) !important;
		padding: 12px !important;
		overflow-x: hidden !important;
		overflow-y: auto !important;
		overscroll-behavior: contain;
		-webkit-overflow-scrolling: touch;
		touch-action: pan-y;
	}

	.o2k-site-header > .o2k-nav .o2k-nav-item.is-open .o2k-submenu {
		max-height: none !important;
		overflow: visible !important;
	}
}


.woocommerce-message,
.woocommerce-info,
.wc-block-components-notice-banner,
.coupon-error-notice {
	display: none !important;
}

img[src*="unisend" i],
img[class*="unisend" i],
img[alt*="unisend" i],
img[src*="lpexpress" i],
img[class*="lpexpress" i],
img[alt*="lpexpress" i] {
	display: none !important;
}

.o2k-delivery-methods {
	padding: clamp(28px, 5vw, 46px);
	border-radius: var(--mp-brand-radius-field);
    background: var(--mp-brand-surface);
    box-shadow: var(--mp-brand-shadow-card);
}

.o2k-delivery-methods > h3 {
	margin: 0 0 26px;
	font-size: 0;
}

.o2k-delivery-methods > h3::before {
	content: var(--o2k-checkout-delivery-method, "Pristatymo b\016B das");
	display: block;
	color: var(--mp-brand-muted-soft);
	font-size: 0.92rem;
	font-weight: 900;
	letter-spacing: 0.13em;
	line-height: 1.2;
	text-transform: uppercase;
}

.o2k-delivery-methods__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 270px));
	justify-content: start;
	gap: 28px 26px;
}

.o2k-delivery-method-item {
	display: contents;
}

.o2k-delivery-method-item > input.shipping_method {
	position: fixed;
	left: 0;
	top: 0;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

.o2k-delivery-card {
	position: relative;
	order: 1;
	display: grid;
	grid-template-areas:
		"carrier"
		"type"
		"price";
	align-content: center;
	align-items: start;
	row-gap: 3px;
	min-height: 124px;
	padding: 26px 34px;
	border: 2px solid rgba(32, 43, 85, 0.1);
	border-radius: var(--mp-brand-radius-card);
	background: var(--mp-brand-surface);
	box-shadow: none;
	color: var(--mp-brand-ink);
	cursor: pointer;
	transition: none;
}

.o2k-delivery-card::before {
	display: none;
}

.o2k-delivery-method-item > input.shipping_method:checked + .o2k-delivery-card,
.o2k-delivery-card.is-selected {
	border-color: var(--o2k-pink);
	background: var(--mp-brand-surface-pink);
	box-shadow: none;
}

.o2k-delivery-card__main {
	display: contents;
}

.o2k-delivery-card__main strong {
	grid-area: carrier;
	align-self: center;
	color: var(--mp-brand-ink);
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.05;
	text-transform: uppercase;
}

.o2k-delivery-card__main small {
	grid-area: type;
	display: block;
	color: var(--mp-brand-muted-soft);
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	line-height: 1.05;
	text-transform: uppercase;
}

.o2k-delivery-card__price {
	grid-area: price;
	justify-self: start;
	color: var(--mp-brand-ink);
	font-size: 1.34rem;
	font-weight: 900;
	letter-spacing: 0.03em;
	line-height: 1.05;
	white-space: nowrap;
}

.o2k-delivery-method-item__extras {
	order: 2;
	grid-column: 1 / -1;
	width: 100%;
	max-width: 100%;
	margin-top: 10px;
}

.o2k-courier-fields {
	display: grid;
	grid-template-columns: 1fr;
	gap: 26px;
}

.o2k-checkout-card--customer .o2k-courier-address-field {
	position: absolute !important;
	left: -9999px !important;
	display: block !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

.o2k-delivery-methods .o2k-courier-address-field {
	display: block !important;
}

.o2k-delivery-methods .form-row label,
.o2k-courier-fields .form-row label,
.o2k-delivery-methods .woo_lithuaniapost_lpexpress_terminal_label,
.o2k-delivery-methods .woo_lithuaniapost_delivery_time_label {
	margin: 0 0 12px;
	color: var(--mp-brand-muted-soft);
	font-size: 0.82rem;
	font-weight: 900;
	letter-spacing: 0.12em;
	line-height: 1.2;
	text-transform: uppercase;
}

.o2k-delivery-methods input.input-text,
.o2k-delivery-methods select,
.o2k-delivery-methods .woo_lithuaniapost_lpexpress_terminal_id,
.o2k-delivery-methods .select2-container--default .select2-selection--single {
	width: 100% !important;
	min-height: 58px;
	border: 1px solid rgba(32, 43, 85, 0.12) !important;
	border-radius: var(--mp-brand-radius-field) !important;
	background: var(--mp-brand-surface) !important;
	box-shadow: none;
	color: var(--mp-brand-ink);
	font-size: 1rem;
	font-weight: 500;
}

.o2k-delivery-methods input.input-text {
	padding: 0 22px;
}

.o2k-delivery-methods .select2-container--default .select2-selection--single .select2-selection__rendered {
	padding-left: 22px;
	line-height: 22px;
}

.o2k-delivery-methods .select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 56px;
}

@media (max-width: 820px) {
	.o2k-hero {
		min-height: auto;
		padding: 80px 0 70px;
	}

	.o2k-section {
		padding: 30px 0;
	}

	.o2k-delivery-methods {
		padding: 30px 22px;
	}

	.o2k-delivery-methods__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 22px 14px;
	}

	.o2k-delivery-card {
		row-gap: 3px;
		min-height: 124px;
		padding: 24px 22px;
	}

	.o2k-checkout-fields input,
	.o2k-checkout-fields select,
	.o2k-checkout-fields textarea,
	.o2k-delivery-methods input,
	.o2k-delivery-methods select,
	.o2k-delivery-methods textarea,
	.o2k-delivery-methods .select2-container--default .select2-selection--single .select2-selection__rendered,
	.select2-search--dropdown .select2-search__field {
		font-size: 16px !important;
	}

}

@media (max-width: 820px) {
	html,
	body {
		max-width: 100%;
		overflow-x: hidden;
	}

	.o2k-header-wrap {
		left: 10px;
		right: auto;
		width: calc(100% - 20px);
		max-width: none;
	}

	.o2k-site-header {
		position: relative;
		width: 100%;
		max-width: 100%;
		min-width: 0;
	}

	.o2k-site-header > .o2k-nav {
		position: absolute !important;
		top: calc(100% + 12px) !important;
		left: 0 !important;
		right: 0 !important;
		inset-inline: 0 !important;
		width: 100% !important;
		min-width: 0 !important;
		max-width: 100% !important;
		height: 60vh !important;
		height: 60dvh !important;
		max-height: 60dvh !important;
		margin: 0 !important;
		overflow-x: hidden !important;
		overflow-y: auto !important;
		overscroll-behavior: contain;
		-webkit-overflow-scrolling: touch;
		transform-origin: top center;
	}

	.o2k-site-header > .o2k-nav .o2k-submenu {
		position: static !important;
		width: 100% !important;
		max-height: 0 !important;
		overflow: hidden !important;
		transform: none !important;
	}

	.o2k-site-header > .o2k-nav .o2k-nav-item.is-open .o2k-submenu {
		max-height: none !important;
		overflow: visible !important;
	}

	.admin-bar .o2k-site-header > .o2k-nav {
		max-height: 60dvh !important;
	}
}
/* Checkout text polish */
.o2k-checkout-page,
.o2k-checkout-page .o2k-checkout-card,
.o2k-checkout-page .o2k-checkout-summary,
.o2k-checkout-page .woocommerce-checkout-review-order-table,
.o2k-checkout-page .woocommerce-terms-and-conditions-wrapper,
.o2k-checkout-page .o2k-review-product__content > strong,
.o2k-checkout-page .o2k-review-product__content dl.variation,
.o2k-checkout-page .product-total,
.o2k-checkout-page tfoot tr,
.o2k-checkout-page input.input-text,
.o2k-checkout-page select,
.o2k-checkout-page textarea,
.o2k-checkout-page .select2-container--default .select2-selection--single .select2-selection__rendered,
.o2k-delivery-card,
.o2k-delivery-card__main strong,
.o2k-delivery-card__main small,
.o2k-delivery-card__price {
	color: var(--mp-brand-ink);
}

.o2k-checkout-page input::placeholder,
.o2k-checkout-page textarea::placeholder {
	color: #8d94aa;
	opacity: 1;
}

.o2k-checkout-card--customer > h3,
.o2k-delivery-methods > h3 {
	margin: 0 0 22px;
	color: var(--mp-brand-ink);
	font-size: 1.45rem;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.12;
	text-transform: none;
}

.o2k-delivery-methods > h3::before {
	content: none !important;
	display: none !important;
}

.o2k-checkout-fields label,
.o2k-delivery-methods .form-row label,
.o2k-courier-fields .form-row label,
.o2k-delivery-methods .woo_lithuaniapost_lpexpress_terminal_label,
.o2k-delivery-methods .woo_lithuaniapost_delivery_time_label,
.o2k-checkout-summary .woocommerce-terms-and-conditions-wrapper label {
	color: var(--mp-brand-ink);
}

.o2k-delivery-methods .form-row label,
.o2k-courier-fields .form-row label,
.o2k-delivery-methods .woo_lithuaniapost_lpexpress_terminal_label,
.o2k-delivery-methods .woo_lithuaniapost_delivery_time_label {
	font-size: 0.68rem;
	font-weight: 900;
	letter-spacing: 0.14em;
}

.o2k-checkout-page .checkout-inline-error-message,
.o2k-checkout-page .o2k-inline-error-message,
.o2k-checkout-page .form-row .description,
.o2k-checkout-page .woocommerce-input-wrapper .description,
.o2k-checkout-summary .woocommerce-terms-and-conditions-wrapper p:not(.form-row) {
	color: var(--mp-brand-muted-soft);
}

.o2k-checkout-page .checkout-inline-error-message {
	font-size: 12px;
}
/* MetalPic thank you page */

.o2k-thankyou-card.mp-thankyou-card {
	max-width: 760px;
	margin: 0 auto;
	padding: 34px 42px 38px;
	border-radius: var(--mp-brand-radius-panel);
	background: var(--mp-brand-surface);
	border: 1px solid rgba(255, 47, 147, 0.12);
	box-shadow: var(--mp-brand-shadow-pop);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.mp-thankyou-check {
	width: 62px;
	height: 62px;
	margin: 0 auto 20px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--mp-brand-pink) 0%, var(--mp-brand-pink-dark) 100%);
	box-shadow: var(--mp-brand-shadow-pop);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 2;
}

.mp-thankyou-check span {
	width: 25px;
	height: 14px;
	border-left: 5px solid var(--mp-brand-surface);
	border-bottom: 5px solid var(--mp-brand-surface);
	transform: rotate(-45deg);
	margin-top: -4px;
}

.o2k-thankyou-page .o2k-thankyou-card.mp-thankyou-card h1.mp-thankyou-title {
	margin: 0 0 12px !important;
	color: var(--mp-brand-ink) !important;
	font-size: 42px !important;
	line-height: 1.02 !important;
	font-weight: 900 !important;
	letter-spacing: 0;
}

.mp-thankyou-subtitle {
	margin: 0 0 22px !important;
	color: var(--mp-brand-muted) !important;
	font-size: 18px !important;
	line-height: 1.35 !important;
	font-weight: 600 !important;
}

.mp-thankyou-order {
	margin: 0 auto 20px;
	max-width: 420px;
}

.mp-thankyou-order-label {
	margin: 0 0 10px !important;
	color: var(--mp-brand-muted) !important;
	font-size: 19px !important;
	line-height: 1.25 !important;
	font-weight: 600 !important;
}

.mp-thankyou-order-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 14px 18px;
	border-radius: var(--mp-brand-radius-card);
	background: linear-gradient(135deg, rgba(255, 47, 147, 0.08), rgba(255, 47, 147, 0.03));
	border: 2px solid rgba(255, 47, 147, 0.15);
}

.mp-thankyou-order-box strong {
	color: var(--mp-brand-pink);
	font-size: 34px;
	line-height: 1;
	font-weight: 900;
	letter-spacing: 0;
	white-space: nowrap;
}

.mp-thankyou-copy {
	min-height: 46px;
	padding: 0 20px;
	border-radius: var(--mp-brand-radius-soft);
	border: 2px solid rgba(255, 47, 147, 0.5);
	background: var(--mp-brand-surface);
	color: var(--mp-brand-pink);
	font-size: 16px;
	font-weight: 800;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.mp-thankyou-copy:hover {
	transform: translateY(-1px);
	background: var(--mp-brand-pink);
	color: var(--mp-brand-surface);
}

.mp-thankyou-copy.is-copied {
	background: #25D366;
	border-color: #25D366;
	color: var(--mp-brand-surface);
}

.mp-copy-icon {
	width: 16px;
	height: 20px;
	border: 2px solid currentColor;
	border-radius: var(--mp-brand-radius-field);
	position: relative;
	display: inline-block;
}

.mp-copy-icon::before {
	content: "";
	position: absolute;
	width: 16px;
	height: 20px;
	border: 2px solid currentColor;
	border-radius: var(--mp-brand-radius-field);
	left: -7px;
	top: 4px;
	background: var(--mp-brand-surface);
	z-index: -1;
}

.mp-thankyou-alert {
	max-width: 560px;
	margin: 22px auto 20px;
	padding: 15px 20px;
	border-radius: var(--mp-brand-radius-card);
	background: rgba(255, 47, 147, 0.04);
	border: 2px solid rgba(255, 47, 147, 0.14);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	color: var(--mp-brand-ink);
}

.mp-thankyou-alert-icon {
	width: 34px;
	height: 34px;
	min-width: 34px;
	border-radius: 50%;
	background: var(--mp-brand-pink);
	color: var(--mp-brand-surface);
	font-size: 22px;
	line-height: 34px;
	font-weight: 900;
	text-align: center;
}

.mp-thankyou-alert strong {
	color: var(--mp-brand-pink);
	font-size: 17px;
	font-weight: 900;
	letter-spacing: 0.02em;
}

.mp-thankyou-alert p {
	margin: 0 !important;
	color: var(--mp-brand-ink) !important;
	font-size: 17px !important;
	line-height: 1.3 !important;
	font-weight: 700 !important;
	text-align: left;
}

.mp-thankyou-actions {
	max-width: 560px;
	margin: 0 auto 22px;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.mp-thankyou-action {
	min-height: 58px;
	padding: 13px 18px;
	border-radius: var(--mp-brand-radius-card);
	color: var(--mp-brand-surface) !important;
	text-decoration: none !important;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	font-size: 15px;
	line-height: 1.15;
	font-weight: 600;
	box-shadow: 0 12px 26px rgba(0, 0, 0, 0.13);
	transition: transform 0.15s ease, opacity 0.15s ease;
}

.mp-thankyou-action:hover {
	transform: translateY(-1px);
	opacity: 0.94;
}

.mp-thankyou-action--whatsapp {
	background: linear-gradient(135deg, #12c94b 0%, #08b83f 100%);
}

.mp-thankyou-action--messenger {
	background: linear-gradient(135deg, #1688ff 0%, #006df0 100%);
}

.mp-action-icon {
	width: 34px;
	height: 34px;
	min-width: 34px;
	border-radius: 50%;
	background: var(--mp-brand-surface);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.mp-action-icon--whatsapp::before,
.mp-action-icon--messenger::before {
	content: "";
	display: block;
	width: 24px;
	height: 24px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

.mp-action-icon--whatsapp::before {
	background-image: url("assets/images/wa-whatsapp-icon.svg");
}

.mp-action-icon--messenger::before {
	background-image: url("assets/images/messenger-color-icon.svg");
}

.mp-thankyou-footer-note {
	max-width: 520px;
	margin: 0 auto !important;
	color: #3f4668 !important;
	font-size: 17px !important;
	line-height: 1.4 !important;
	font-weight: 500 !important;
}

.mp-thankyou-footer-note span {
	font-size: 24px;
	vertical-align: middle;
	margin-right: 6px;
}

/* Smaller confetti */
.mp-thankyou-confetti {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 1;
}

.mp-confetti {
	position: absolute;
	display: block;
	border-radius: 50%;
}

.mp-confetti-1 {
	width: 9px;
	height: 9px;
	background: #4285f4;
	left: 34%;
	top: 80px;
}

.mp-confetti-2 {
	width: 12px;
	height: 12px;
	background: #fbbc04;
	left: 39%;
	top: 68px;
	clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.mp-confetti-3 {
	width: 9px;
	height: 9px;
	background: #ff5a1f;
	right: 36%;
	top: 82px;
}

.mp-confetti-4 {
	width: 8px;
	height: 8px;
	background: #c9a4d8;
	right: 41%;
	top: 95px;
}

.mp-confetti-5 {
	width: 8px;
	height: 18px;
	border-radius: var(--mp-brand-radius-field);
	background: #21ba45;
	right: 39%;
	top: 48px;
	transform: rotate(-25deg);
}

/* Mobile compact */
@media (max-width: 768px) {
	.o2k-thankyou-card.mp-thankyou-card {
		max-width: calc(100% - 24px);
		padding: 28px 18px 32px;
		border-radius: var(--mp-brand-radius-panel);
	}

	.mp-thankyou-check {
		width: 54px;
		height: 54px;
		margin-bottom: 16px;
	}

	.mp-thankyou-check span {
		width: 22px;
		height: 12px;
		border-left-width: 4px;
		border-bottom-width: 4px;
	}

	.o2k-thankyou-page .o2k-thankyou-card.mp-thankyou-card h1.mp-thankyou-title {
		font-size: 32px !important;
		line-height: 1.05 !important;
		margin-bottom: 10px !important;
	}

	.mp-thankyou-subtitle {
		font-size: 16px !important;
		margin-bottom: 18px !important;
	}

	.mp-thankyou-order {
		margin-bottom: 18px;
	}

	.mp-thankyou-order-label {
		font-size: 17px !important;
		margin-bottom: 9px !important;
	}

	.mp-thankyou-order-box {
		padding: 13px 14px;
		gap: 10px;
	}

	.mp-thankyou-order-box strong {
		font-size: 30px;
	}

	.mp-thankyou-copy {
		min-height: 42px;
		padding: 0 14px;
		font-size: 14px;
	}

	.mp-copy-icon {
		width: 14px;
		height: 18px;
	}

	.mp-copy-icon::before {
		width: 14px;
		height: 18px;
		left: -6px;
		top: 4px;
	}

	.mp-thankyou-alert {
		margin: 18px auto 16px;
		padding: 13px 14px;
		gap: 10px;
	}

	.mp-thankyou-alert-icon {
		width: 30px;
		height: 30px;
		min-width: 30px;
		font-size: 20px;
		line-height: 30px;
	}

	.mp-thankyou-alert strong {
		font-size: 15px;
	}

	.mp-thankyou-alert p {
		font-size: 15px !important;
		line-height: 1.25 !important;
	}

	.mp-thankyou-actions {
		grid-template-columns: 1fr;
		gap: 12px;
		margin-bottom: 18px;
	}

	.mp-thankyou-action {
		min-height: 54px;
		font-size: 17px;
		padding: 12px 16px;
	}

	.mp-action-icon {
		width: 30px;
		height: 30px;
		min-width: 30px;
	}

	.mp-thankyou-footer-note {
		font-size: 15px !important;
		line-height: 1.35 !important;
	}

	.mp-thankyou-footer-note span {
		font-size: 21px;
	}
}

/* Very small phones */
@media (max-width: 420px) {
	.o2k-thankyou-card.mp-thankyou-card {
		padding: 24px 14px 28px;
	}

	.o2k-thankyou-page .o2k-thankyou-card.mp-thankyou-card h1.mp-thankyou-title {
		font-size: 28px !important;
	}

	.mp-thankyou-subtitle {
		font-size: 15px !important;
	}

	.mp-thankyou-order-box {
		flex-direction: row;
		padding: 12px;
	}

	.mp-thankyou-order-box strong {
		font-size: 26px;
	}

	.mp-thankyou-copy {
		font-size: 13px;
		padding: 0 11px;
	}

	.mp-thankyou-alert {
		align-items: flex-start;
		text-align: left;
	}

	.mp-thankyou-alert p {
		text-align: left;
	}

	.mp-thankyou-action {
		font-size: 16px;
		min-height: 52px;
	}

	.mp-confetti {
		display: none;
	}
}
.mp-thankyou-hidden-output {
	display: none !important;
	visibility: hidden !important;
	height: 0 !important;
	overflow: hidden !important;
}
/* Compact pre-print approval block */

.mp-preprint-mini {
	margin-top: 20px;
	border: 1.5px solid rgba(236, 74, 145, 0.45);
	border-radius: var(--mp-brand-radius-card);
	background: var(--mp-brand-surface);
	box-shadow: none;
	overflow: hidden;
	color: var(--mp-brand-ink);
}

.mp-preprint-mini__head {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 18px 12px;
	border-bottom: 1px solid rgba(255, 47, 147, 0.12);
}

.mp-preprint-mini__head span {
	width: 28px;
	height: 28px;
	min-width: 28px;
	border-radius: 50%;
	background: var(--mp-brand-pink);
	color: var(--mp-brand-surface);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 17px;
	line-height: 1;
	font-weight: 900;
}

.mp-preprint-mini__head strong {
	display: block;
	font-size: 16px;
	line-height: 1.22;
	font-weight: 900;
	color: var(--mp-brand-ink);
	letter-spacing: 0;
}

.mp-preprint-mini__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0;
	padding: 13px 14px 12px;
}

.mp-preprint-mini__item {
	position: relative;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 0 10px;
	min-height: 42px;
}

.mp-preprint-mini__item:not(:last-child) {
	border-right: 1px dashed rgba(236, 74, 145, 0.24);
}

.mp-preprint-mini__item span {
	width: 22px;
	height: 22px;
	min-width: 22px;
	border-radius: 50%;
	background: rgba(255, 47, 147, 0.12);
	color: var(--mp-brand-pink);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	line-height: 1;
	font-weight: 900;
}

.mp-preprint-mini__item p {
	margin: 0;
	font-size: 12px;
	line-height: 1.25;
	font-weight: 700;
	color: var(--mp-brand-ink);
}

.mp-preprint-mini__footer {
	padding: 10px 16px;
	background: linear-gradient(135deg, var(--mp-brand-pink) 0%, #f02f8f 100%);
	color: var(--mp-brand-surface);
	text-align: center;
	font-size: 12px;
	line-height: 1.3;
	font-weight: 800;
}

/* Desktop/mobile placement */

.mp-preprint-mini--mobile {
	display: none;
}

/* Mobile */

@media (max-width: 768px) {
	.mp-preprint-mini--desktop {
		display: none;
	}

	.mp-preprint-mini--mobile {
		display: block;
		margin-top: 18px;
	}

	.mp-preprint-mini {
		border-radius: var(--mp-brand-radius-card);
	}

	.mp-preprint-mini__head {
		padding: 13px 14px 11px;
	}

	.mp-preprint-mini__head span {
		width: 26px;
		height: 26px;
		min-width: 26px;
		font-size: 15px;
	}

	.mp-preprint-mini__head strong {
		font-size: 14.5px;
		line-height: 1.25;
	}

	.mp-preprint-mini__grid {
		grid-template-columns: 1fr;
		padding: 10px 14px 8px;
	}

	.mp-preprint-mini__item {
		min-height: auto;
		padding: 7px 0;
		border-right: 0 !important;
		border-bottom: 1px dashed rgba(255, 47, 147, 0.18);
	}

	.mp-preprint-mini__item:last-child {
		border-bottom: 0;
	}

	.mp-preprint-mini__item p {
		font-size: 13px;
		line-height: 1.3;
	}

	.mp-preprint-mini__footer {
		padding: 10px 14px;
		font-size: 12.5px;
	}
}
/* Fix mobile header socials flash */

@media (max-width: 1160px) {
	.o2k-site-header > .o2k-header-socials {
		display: none !important;
	}

	body.o2k-menu-open .o2k-nav .o2k-header-socials,
	.o2k-site-header.is-menu-open .o2k-nav .o2k-header-socials {
		display: flex !important;
		position: static;
		width: 100%;
		margin-top: 10px;
		padding: 14px;
		border: 1px solid rgba(32, 43, 85, 0.08);
		border-radius: var(--mp-brand-radius-card);
		background: rgba(255, 255, 255, 0.96);
		box-shadow: var(--mp-brand-shadow-soft);
	}

	body.o2k-menu-open .o2k-nav .o2k-header-socials::after,
	.o2k-site-header.is-menu-open .o2k-nav .o2k-header-socials::after {
		display: none;
	}
}
/* Product size buttons with prices */
.o2k-size-price-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	overflow: visible;
}

.o2k-size-price-grid .o2k-size-price-option {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 1px auto;
	align-items: center;
	gap: 5px;
	min-height: 48px;
	padding: 10px 14px;
	border: 1px solid #dfe3ee;
	border-radius: var(--mp-brand-radius-field);
	background: var(--mp-brand-surface);
	color: var(--mp-brand-ink);
	cursor: pointer;
	overflow: visible;
	animation: none !important;
	transform: none !important;
	transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.o2k-size-price-grid .o2k-size-price-option:hover {
	border-color: rgba(255, 47, 147, 0.45);
	background: var(--mp-brand-surface);
	animation: none !important;
	transform: none !important;
}

.o2k-size-price-grid .o2k-size-price-option.is-active {
	border-color: var(--o2k-pink);
	background: var(--mp-brand-surface);
	color: var(--mp-brand-ink);
}

.o2k-size-price-option__size {
	display: block;
	color: var(--mp-brand-ink);
	font-size: 0.78rem;
	font-weight: 800;
	line-height: 1;
	text-align: left;
	white-space: nowrap;
}

.o2k-size-price-option__divider {
	display: block;
	width: 1px;
	height: 22px;
	background: #e3e6ef;
}

.o2k-size-price-option__price {
	display: block;
	color: var(--o2k-pink);
	font-size: 1rem;
	font-weight: 900;
	line-height: 1;
	white-space: nowrap;
	text-align: right;
}

.o2k-size-price-grid .o2k-size-price-option.is-disabled,
.o2k-size-price-grid .o2k-size-price-option:disabled {
	cursor: not-allowed;
	opacity: 0.42;
	pointer-events: none;
}

@media (max-width: 640px) {
	.o2k-size-price-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px 10px;
	}

	.o2k-size-price-grid .o2k-size-price-option {
		min-height: 46px;
		padding: 10px 12px;
		gap: 9px;
	}

	.o2k-size-price-option__size {
		font-size: 0.9rem;
	}

	.o2k-size-price-option__price {
		font-size: 0.93rem;
	}

}

/* Product Messenger CTA */

.mp-product-messenger-cta {
	display: grid;
	grid-template-columns: 38px minmax(0, 1fr) 18px;
	align-items: center;
	gap: 12px;
	width: 100%;
	min-height: 58px;
	margin: 12px 0 12px;
	padding: 10px 14px;
	border: 1.5px solid rgba(255, 47, 147, 0.55);
	border-radius: var(--mp-brand-radius-field);
	background: var(--mp-brand-surface);
	color: var(--mp-brand-ink);
	box-shadow: none;
	text-decoration: none;
	transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.mp-product-messenger-cta::after {
	display: none !important;
}

.mp-product-messenger-cta:hover,
.mp-product-messenger-cta:focus-visible {
	border-color: var(--o2k-pink);
	background: var(--mp-brand-surface-pink);
	box-shadow: var(--mp-brand-shadow-pop);
	color: var(--mp-brand-ink);
	transform: none;
}

.mp-product-messenger-cta__icon {
	display: inline-grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: var(--mp-brand-radius-pill);
	background: var(--o2k-pink);
	color: var(--mp-brand-surface);
	box-shadow: var(--mp-brand-shadow-pop);
}

.mp-product-messenger-cta__icon svg {
	display: block;
	width: 21px;
	height: 21px;
	fill: currentColor;
}

.mp-product-messenger-cta__text {
	display: grid;
	gap: 3px;
	min-width: 0;
}

.mp-product-messenger-cta__text strong {
	display: block;
	color: var(--mp-brand-ink);
	font-size: 0.78rem;
	font-weight: 900;
	line-height: 1.15;
}

.mp-product-messenger-cta__text small {
	display: block;
	color: var(--o2k-pink);
	font-size: 0.75rem;
	font-weight: 900;
	line-height: 1.15;
}

.mp-product-messenger-cta__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--o2k-pink);
	font-size: 1.65rem;
	font-weight: 600;
	line-height: 1;
}

@media (max-width: 640px) {
	.mp-product-messenger-cta {
		grid-template-columns: 36px minmax(0, 1fr) 16px;
		min-height: 56px;
		margin: 10px 0 14px;
		padding: 9px 12px;
		border-radius: var(--mp-brand-radius-field);
	}

	.mp-product-messenger-cta__icon {
		width: 32px;
		height: 32px;
	}

	.mp-product-messenger-cta__icon svg {
		width: 20px;
		height: 20px;
	}

	.mp-product-messenger-cta__text strong {
		font-size: 0.74rem;
	}

	.mp-product-messenger-cta__text small {
		font-size: 0.72rem;
	}

	.mp-product-messenger-cta__arrow {
		font-size: 1.45rem;
	}
}

/* Product Google rating under title */

.mp-product-google-rating {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	width: fit-content;
	margin: -4px 0 18px;
	padding: 0;
	background: transparent;
	color: var(--mp-brand-ink);
	box-shadow: none;
	text-decoration: none;
	line-height: 1;
}

.mp-product-google-rating::after {
	display: none !important;
}

.mp-product-google-rating:hover,
.mp-product-google-rating:focus-visible {
	color: var(--mp-brand-ink);
	transform: none;
	opacity: 0.88;
}

.mp-product-google-rating__logo {
	display: block;
	width: 13px;
	height: 13px;
	object-fit: contain;
	flex: 0 0 19px;
}

.mp-product-google-rating__score {
	color: var(--mp-brand-ink);
	font-size: 0.78rem;
	font-weight: 800;
	line-height: 1;
	white-space: nowrap;
}

.mp-product-google-rating__stars {
	color: #fbbc05;
	font-size: 0.83rem;
	font-weight: 900;
	line-height: 1;
	letter-spacing: 1px;
	white-space: nowrap;
}

.mp-product-google-rating__count {
	color: var(--mp-brand-ink);
	font-size: 0.78rem;
	font-weight: 700;
	line-height: 1;
	white-space: nowrap;
}

@media (max-width: 640px) {
	.mp-product-google-rating {
		gap: 6px;
		margin: -2px 0 16px;
	}

	.mp-product-google-rating__logo {
		width: 18px;
		height: 18px;
		flex-basis: 18px;
	}

	.mp-product-google-rating__score,
	.mp-product-google-rating__count {
		font-size: 0.74rem;
	}

	.mp-product-google-rating__stars {
		font-size: 0.76rem;
		letter-spacing: 0.7px;
	}
}

/* Product image smaller only on mobile */
@media (max-width: 640px) {
	.o2k-product-preview__frame {
		display: flex;
		align-items: center;
		justify-content: center;
		min-height: 0;
		padding: 16px;
	}

	.o2k-product-preview__frame img,
	.o2k-product-preview__placeholder {
		width: min(100%, 310px);
		height: auto;
		max-height: none;
		aspect-ratio: auto;
		object-fit: contain;
	}
}

/* Product image height smaller only on mobile */
@media (max-width: 640px) {
	.o2k-product-preview__frame {
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		min-height: 0 !important;
		padding: 14px !important;
	}

	.o2k-product-preview__frame img,
	.o2k-product-preview__placeholder {
		width: 100% !important;
		height: clamp(340px, 88vw, 378px) !important;
		max-height: 378px !important;
		aspect-ratio: auto !important;
		object-fit: cover !important;
		object-position: center center !important;
		border-radius: var(--mp-brand-radius-soft);
	}
}

/* Separate product info card: preprint */
.mp-product-info-card {
	display: grid;
	gap: 16px;
	width: 100%;
	margin-top: 18px;
	padding: 18px;
	border: 1px solid rgba(236, 238, 245, 0.95);
	border-radius: var(--mp-brand-radius-panel);
	background: var(--mp-brand-surface);
	box-shadow: var(--mp-brand-shadow-card);
}

.mp-product-info-card .mp-preprint-mini {
	margin-top: 0;
}

.mp-product-delivery-strip {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	align-items: center;
	width: 100%;
	min-height: 50px;
	margin-top: 0;
	padding: 0 16px;
	border-radius: var(--mp-brand-radius-field);
	background: #ff2f93;
	box-shadow: none;
	color: #fff;
	overflow: hidden;
}

.mp-product-delivery-strip::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.22), transparent 28%),
		radial-gradient(circle at 82% 88%, rgba(255, 255, 255, 0.16), transparent 30%);
	opacity: 0.22;
	pointer-events: none;
}

.mp-product-delivery-strip__item {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 24px minmax(0, 1fr);
	align-items: center;
	justify-content: center;
	justify-self: center;
	gap: 9px;
	min-width: 0;
}

.mp-product-delivery-strip__divider {
	position: relative;
	z-index: 1;
	display: block;
	width: 1px;
	height: auto;
	align-self: stretch;
	margin-inline: 16px;
	background: rgba(255, 255, 255, 0.46);
}

.mp-product-delivery-strip__icon {
	display: grid;
	place-items: center;
	width: 24px;
	height: 24px;
	color: rgba(255, 255, 255, 0.92);
}

.mp-product-delivery-strip__icon svg {
	display: block;
	width: 24px;
	height: 24px;
	fill: none;
	stroke: currentColor;
	stroke-width: 3.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.mp-product-delivery-strip__clock-ring {
	stroke-dasharray: 9 5;
}

.mp-product-delivery-strip__text {
	display: grid;
	gap: 2px;
	min-width: 0;
	color: #fff;
	line-height: 1.08;
}

.mp-product-delivery-strip__text strong,
.mp-product-delivery-strip__text small {
	display: block;
	color: inherit;
	letter-spacing: 0;
}

.mp-product-delivery-strip__text strong {
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	white-space: nowrap;
}

.mp-product-delivery-strip__text small {
	color: rgba(255, 255, 255, 0.78);
	font-size: 10px;
	font-weight: 600;
	white-space: nowrap;
}

.mp-product-info-card--preprint {
	display: none;
}

@media (min-width: 769px) {
	.mp-product-info-card {
		grid-column: 2;
	}
}

@media (max-width: 768px) {
	.mp-product-info-card {
		margin-top: 16px;
		padding: 14px;
		border-radius: var(--mp-brand-radius-panel);
		box-shadow: var(--mp-brand-shadow-soft);
	}

	.mp-product-delivery-strip {
		min-height: 48px;
		margin-top: 0;
		padding: 0 12px;
	}

	.mp-product-delivery-strip__item {
		grid-template-columns: 22px minmax(0, 1fr);
		justify-self: center;
		gap: 7px;
	}

	.mp-product-delivery-strip__divider {
		margin-inline: 10px;
	}

	.mp-product-delivery-strip__icon {
		width: 22px;
		height: 22px;
	}

	.mp-product-delivery-strip__icon svg {
		width: 22px;
		height: 22px;
		stroke-width: 3.9;
	}

	.mp-product-delivery-strip__text {
		gap: 2px;
	}

	.mp-product-delivery-strip__text strong {
		font-size: 11px;
		font-weight: 800;
	}

	.mp-product-delivery-strip__text small {
		font-size: 9px;
		font-weight: 600;
	}

	.mp-product-info-card--preprint {
		display: grid;
	}

	.mp-product-info-card .mp-preprint-mini--mobile {
		display: block;
	}
}

@media (max-width: 420px) {
	.mp-product-delivery-strip {
		min-height: 44px;
		padding: 0 10px;
	}

	.mp-product-delivery-strip__item {
		grid-template-columns: 18px minmax(0, 1fr);
		justify-self: center;
		gap: 5px;
	}

	.mp-product-delivery-strip__divider {
		margin-inline: 7px;
	}

	.mp-product-delivery-strip__icon {
		width: 18px;
		height: 18px;
	}

	.mp-product-delivery-strip__icon svg {
		width: 18px;
		height: 18px;
		stroke-width: 4.2;
	}

	.mp-product-delivery-strip__text strong {
		font-size: 10px;
	}

	.mp-product-delivery-strip__text small {
		font-size: 8px;
	}
}

/* Desktop gap between product photo and product config */
@media (min-width: 769px) {
	.o2k-product-builder__inner {
		column-gap: 36px !important;
	}
}

/* MetalPic product bottom blocks */

.mp-sp-sections {
	--mp-sp-pink: var(--mp-brand-pink, var(--mp-brand-pink));
	--mp-sp-blue: var(--mp-brand-blue, var(--mp-brand-ink));
	--mp-sp-muted: var(--mp-brand-muted, var(--mp-brand-muted));
	--mp-sp-border: var(--mp-brand-pink-border);
	display: grid;
	gap: 28px;
	width: 100%;
	max-width: var(--o2k-container, 1310px);
	margin: 30px auto 0;
	padding: 0 var(--o2k-container-pad, 15px) 20px;
	font-family: var(--o2k-font-body, "Poppins", Arial, sans-serif);
}

.mp-sp-card {
	border: 1px solid var(--mp-sp-border);
	border-radius: var(--o2k-radius);
	background: var(--mp-brand-surface, var(--mp-brand-surface));
	box-shadow: var(--mp-brand-shadow-card);
	overflow: hidden;
}

.mp-sp-eyebrow {
	display: inline-block;
	margin-bottom: 10px;
	color: var(--mp-sp-pink);
	font-size: 0.82rem;
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.mp-sp-sections h2 {
	margin: 0;
	color: var(--mp-brand-ink, var(--mp-brand-ink));
	font-size: clamp(1.45rem, 2vw, 2.15rem);
	font-weight: 900;
	line-height: 1.04;
	letter-spacing: 0;
	text-transform: uppercase;
}

.mp-sp-sections p {
	margin: 12px 0 0;
	color: var(--mp-sp-muted);
	font-size: 0.88rem;
	font-weight: 600;
	line-height: 1.45;
}

.mp-sp-size-guide {
	display: grid;
	grid-template-columns: minmax(270px, 330px) minmax(0, 1fr);
	grid-template-rows: auto auto;
	background: linear-gradient(90deg, var(--mp-brand-surface) 0%, var(--mp-brand-surface) 32%, var(--mp-brand-surface-pink) 100%);
}

.mp-sp-size-guide__content {
	position: relative;
	z-index: 2;
	padding: 32px 30px 26px;
}

.mp-sp-size-guide__visual {
	min-width: 0;
	min-height: 390px;
}

.mp-sp-size-guide__image {
	width: 100%;
	height: 100%;
	min-height: 390px;
	object-fit: cover;
	object-position: center;
}

.mp-sp-how {
	display: grid;
	grid-template-columns: minmax(250px, 300px) minmax(0, 1fr);
	gap: 24px;
	align-items: center;
	padding: 30px 28px;
}

.mp-sp-how__steps {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 28px minmax(0, 1fr) 28px minmax(0, 1fr);
	align-items: center;
	gap: 15px;
}

.mp-sp-step {
	position: relative;
	display: grid;
	justify-items: center;
	align-content: center;
	min-height: 164px;
	padding: 20px 15px 18px;
	border: 1px solid rgba(255, 47, 147, 0.16);
	border-radius: var(--mp-brand-radius-card);
	background: var(--mp-brand-surface);
	text-align: center;
}

.mp-sp-step__num {
	position: absolute;
	left: 16px;
	top: 14px;
	color: var(--mp-sp-pink);
	font-size: 1.45rem;
	font-weight: 900;
	line-height: 1;
}

.mp-sp-step img {
	width: 48px;
	height: 48px;
	margin: 13px 0 13px;
	object-fit: contain;
}

.mp-sp-step strong {
	display: block;
	color: var(--mp-brand-ink);
	font-size: 0.84rem;
	font-weight: 900;
	line-height: 1.2;
}

.mp-sp-step small {
	display: block;
	margin-top: 7px;
	color: var(--mp-brand-muted);
	font-size: 0.74rem;
	font-weight: 600;
	line-height: 1.35;
}

.mp-sp-grid-2 {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	gap: 24px;
}

.mp-sp-faq,
.mp-sp-delivery {
	padding: 28px 28px 24px;
}

.mp-sp-faq__list {
	display: grid;
	margin-top: 18px;
}

.mp-sp-faq__list details {
	border-bottom: 1px solid rgba(32, 43, 85, 0.08);
}

.mp-sp-faq__list details:first-child {
	border-top: 1px solid rgba(32, 43, 85, 0.08);
}

.mp-sp-faq__list summary {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 46px;
	padding: 10px 34px 10px 0;
	color: var(--mp-brand-ink);
	font-size: 0.84rem;
	font-weight: 800;
	line-height: 1.25;
	cursor: pointer;
	list-style: none;
}

.mp-sp-faq__list summary::-webkit-details-marker {
	display: none;
}

.mp-sp-faq__list summary::after {
	content: "+";
	position: absolute;
	right: 0;
	top: 50%;
	color: var(--mp-sp-pink);
	font-size: 1.28rem;
	font-weight: 900;
	line-height: 1;
	transform: translateY(-50%);
}

.mp-sp-faq__list details[open] summary::after {
	content: "\2212";
}

.mp-sp-faq__list p {
	margin: 0;
	padding: 0 28px 14px 0;
	font-size: 0.8rem;
	font-weight: 600;
}

.mp-sp-delivery__body {
	display: grid;
	grid-template-columns: minmax(180px, 0.8fr) minmax(0, 1.2fr);
	gap: 20px;
	align-items: center;
	margin-top: 18px;
}

.mp-sp-delivery__list {
	display: grid;
	gap: 15px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.mp-sp-delivery__list li {
	display: grid;
	grid-template-columns: 28px minmax(0, 1fr) auto;
	align-items: center;
	gap: 11px;
	color: var(--mp-brand-ink);
	font-size: 0.84rem;
	font-weight: 800;
}

.mp-sp-delivery__list em {
	color: var(--mp-brand-muted);
	font-size: 0.82rem;
	font-style: normal;
	font-weight: 700;
}

.mp-sp-flag {
	display: block;
	width: 23px;
	height: 23px;
	border-radius: var(--mp-brand-radius-pill);
	box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.12);
	overflow: hidden;
}

.mp-sp-flag--lt { background: linear-gradient(to bottom, #fdb913 0 33.33%, #006a44 33.33% 66.66%, #c1272d 66.66% 100%); }
.mp-sp-flag--lv { background: linear-gradient(to bottom, #9e3039 0 40%, var(--mp-brand-surface) 40% 60%, #9e3039 60% 100%); }
.mp-sp-flag--ee { background: linear-gradient(to bottom, #0072ce 0 33.33%, #000 33.33% 66.66%, var(--mp-brand-surface) 66.66% 100%); }

.mp-sp-delivery__map {
	width: 100%;
	max-width: 150px;
	margin: 0 auto;
}

.mp-sp-delivery__note {
	display: flex;
	align-items: center;
	gap: 11px;
	width: fit-content;
	max-width: 100%;
	margin-top: 18px;
	padding: 11px 16px;
	border-radius: var(--mp-brand-radius-field);
	color: var(--mp-brand-muted);
	background: var(--mp-brand-pink-soft);
	font-size: 0.8rem;
	font-weight: 700;
	line-height: 1.28;
}

.mp-sp-delivery__note span {
	color: var(--mp-sp-pink);
	font-size: 1.18rem;
	font-weight: 900;
}

@media (max-width: 900px) {
	.mp-sp-sections {
		gap: 20px;
		margin-top: 24px;
	}

	.mp-sp-size-guide,
	.mp-sp-how,
	.mp-sp-grid-2 {
		grid-template-columns: 1fr;
	}

	.mp-sp-size-guide {
		grid-template-rows: auto auto auto;
	}

	.mp-sp-size-guide__content {
		padding: 26px 24px 8px;
	}

	.mp-sp-size-guide__visual,
	.mp-sp-size-guide__image {
		min-height: 330px;
	}

	.mp-sp-how {
		padding: 26px 24px;
	}

	.mp-sp-delivery__body {
		grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	}

}

@media (max-width: 640px) {
	.mp-sp-sections {
		gap: 16px;
		margin-top: 18px;
		padding-inline: 16px;
		padding-bottom: 18px;
	}

	.mp-sp-card {
		border-radius: var(--mp-brand-radius-card);
	}

	.mp-sp-sections h2 {
		font-size: 1.42rem;
		line-height: 1.06;
	}

	.mp-sp-eyebrow {
		font-size: 0.76rem;
		margin-bottom: 8px;
	}

	.mp-sp-sections p {
		font-size: 0.82rem;
		line-height: 1.42;
	}

	.mp-sp-size-guide__content,
	.mp-sp-how,
	.mp-sp-faq,
	.mp-sp-delivery {
		padding: 22px 18px 18px;
	}

	.mp-sp-size-guide__visual,
	.mp-sp-size-guide__image {
		min-height: auto;
	}

	.mp-sp-size-guide__image {
		object-position: center;
	}

	.mp-sp-how {
		gap: 18px;
	}

	.mp-sp-how__steps {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.mp-sp-step {
		min-height: 132px;
		padding: 18px 16px 16px;
	}

	.mp-sp-step__num {
		font-size: 1.22rem;
		left: 14px;
		top: 13px;
	}

	.mp-sp-step img {
		width: 44px;
		height: 44px;
		margin: 10px 0 11px;
	}

	.mp-sp-step strong {
		font-size: 0.8rem;
	}

	.mp-sp-step small {
		font-size: 0.7rem;
	}

	.mp-sp-grid-2 {
		gap: 16px;
	}

	.mp-sp-faq__list {
		margin-top: 15px;
	}

	.mp-sp-faq__list summary {
		min-height: 43px;
		padding-right: 28px;
		font-size: 0.78rem;
	}

	.mp-sp-faq__list p {
		padding-right: 0;
		font-size: 0.74rem;
	}

	.mp-sp-delivery__body {
		grid-template-columns: 1fr;
		gap: 16px;
		margin-top: 15px;
	}

	.mp-sp-delivery__list {
		gap: 13px;
	}

	.mp-sp-delivery__list li,
	.mp-sp-delivery__list em {
		font-size: 0.78rem;
	}

	.mp-sp-delivery__map {
		max-width: 150px;
	}

	.mp-sp-delivery__note {
		width: 100%;
		font-size: 0.76rem;
	}

}

@media (max-width: 380px) {
	.mp-sp-sections {
		padding-inline: 14px;
	}

	.mp-sp-size-guide__visual,
	.mp-sp-size-guide__image {
		min-height: 220px;
	}
}

/* MetalPic compact size guide */

.mp-sp-size-guide.mp-sp-size-guide--compact {
	display: grid !important;
	grid-template-columns: minmax(260px, 330px) minmax(0, 1fr) !important;
	align-items: stretch !important;
	min-height: 315px !important;
	border-radius: var(--mp-brand-radius-card) !important;
	overflow: hidden !important;
	background: var(--mp-brand-surface) !important;
	border: 1px solid rgba(255, 47, 147, 0.18) !important;
	box-shadow: var(--mp-brand-shadow-soft) !important;
}

.mp-sp-size-guide.mp-sp-size-guide--compact .mp-sp-size-guide__content {
	padding: 24px 24px 22px !important;
	background: var(--mp-brand-surface) !important;
}

.mp-sp-size-guide.mp-sp-size-guide--compact .mp-sp-eyebrow {
	display: block !important;
	margin: 0 0 8px !important;
	color: var(--o2k-pink, var(--mp-brand-pink)) !important;
	font-size: 0.66rem !important;
	font-weight: 900 !important;
	letter-spacing: 0.04em !important;
	line-height: 1.1 !important;
	text-transform: uppercase !important;
}

.mp-sp-size-guide.mp-sp-size-guide--compact h2 {
	max-width: 260px !important;
	margin: 0 !important;
	color: var(--mp-brand-ink) !important;
	font-size: clamp(1.55rem, 2.2vw, 2.15rem) !important;
	font-weight: 900 !important;
	line-height: 0.96 !important;
	letter-spacing: 0;
	text-transform: none !important;
}

.mp-sp-size-guide.mp-sp-size-guide--compact p {
	max-width: 265px !important;
	margin: 10px 0 0 !important;
	color: #5b6478 !important;
	font-size: 0.76rem !important;
	font-weight: 700 !important;
	line-height: 1.35 !important;
}

.mp-sp-size-guide.mp-sp-size-guide--compact .mp-sp-size-options {
	display: grid !important;
	gap: 7px !important;
	margin-top: 16px !important;
}

.mp-sp-size-guide.mp-sp-size-guide--compact .mp-sp-size-option {
	display: grid !important;
	grid-template-columns: 28px minmax(0, 1fr) 12px !important;
	align-items: center !important;
	gap: 10px !important;
	min-height: 42px !important;
	padding: 7px 10px 7px 11px !important;
	border: 1px solid rgba(32, 43, 85, 0.08) !important;
	border-radius: var(--mp-brand-radius-soft) !important;
	background: var(--mp-brand-surface) !important;
	box-shadow: 0 5px 14px rgba(32, 43, 85, 0.07) !important;
}

.mp-sp-size-guide.mp-sp-size-guide--compact .mp-sp-size-option__icon {
	display: grid !important;
	place-items: center !important;
	width: 26px !important;
	height: 26px !important;
}

.mp-sp-size-guide.mp-sp-size-guide--compact .mp-sp-size-option__icon img {
	width: 23px !important;
	height: 23px !important;
	object-fit: contain !important;
}

.mp-sp-size-guide.mp-sp-size-guide--compact .mp-sp-size-option__text {
	display: grid !important;
	gap: 1px !important;
	min-width: 0 !important;
}

.mp-sp-size-guide.mp-sp-size-guide--compact .mp-sp-size-option__text strong {
	color: var(--mp-brand-ink) !important;
	font-size: 0.78rem !important;
	font-weight: 900 !important;
	line-height: 1.04 !important;
}

.mp-sp-size-guide.mp-sp-size-guide--compact .mp-sp-size-option__text small {
	color: #5d6679 !important;
	font-size: 0.63rem !important;
	font-weight: 700 !important;
	line-height: 1.15 !important;
}

.mp-sp-size-guide.mp-sp-size-guide--compact .mp-sp-size-option__arrow {
	color: var(--o2k-pink, var(--mp-brand-pink)) !important;
	font-size: 1.45rem !important;
	font-weight: 400 !important;
	line-height: 1 !important;
}

.mp-sp-size-guide.mp-sp-size-guide--compact .mp-sp-size-guide__visual {
	min-width: 0 !important;
	min-height: 315px !important;
	background: #f7f7f8 !important;
}

.mp-sp-size-guide.mp-sp-size-guide--compact .mp-sp-size-guide__image {
	width: 100% !important;
	height: 100% !important;
	min-height: 315px !important;
	object-fit: cover !important;
	object-position: center !important;
}

@media (max-width: 900px) {
	.mp-sp-size-guide.mp-sp-size-guide--compact {
		grid-template-columns: 1fr !important;
		min-height: 0 !important;
	}

	.mp-sp-size-guide.mp-sp-size-guide--compact .mp-sp-size-guide__content {
		padding: 20px 15px 14px !important;
	}

	.mp-sp-size-guide.mp-sp-size-guide--compact h2 {
		max-width: 100% !important;
		font-size: clamp(1.55rem, 7vw, 2rem) !important;
	}

	.mp-sp-size-guide.mp-sp-size-guide--compact p {
		max-width: 100% !important;
		font-size: 0.74rem !important;
	}

	.mp-sp-size-guide.mp-sp-size-guide--compact .mp-sp-size-options {
		gap: 7px !important;
		margin-top: 14px !important;
	}

	.mp-sp-size-guide.mp-sp-size-guide--compact .mp-sp-size-option {
		grid-template-columns: 26px minmax(0, 1fr) 10px !important;
		gap: 9px !important;
		min-height: 40px !important;
		padding: 7px 9px !important;
		border-radius: var(--mp-brand-radius-field) !important;
	}

	.mp-sp-size-guide.mp-sp-size-guide--compact .mp-sp-size-option__icon,
	.mp-sp-size-guide.mp-sp-size-guide--compact .mp-sp-size-option__icon img {
		width: 22px !important;
		height: 22px !important;
	}

	.mp-sp-size-guide.mp-sp-size-guide--compact .mp-sp-size-option__text strong {
		font-size: 0.75rem !important;
	}

	.mp-sp-size-guide.mp-sp-size-guide--compact .mp-sp-size-option__text small {
		font-size: 0.61rem !important;
	}

	.mp-sp-size-guide.mp-sp-size-guide--compact .mp-sp-size-guide__visual,
	.mp-sp-size-guide.mp-sp-size-guide--compact .mp-sp-size-guide__image {
		min-height: 190px !important;
	}
}

@media (max-width: 420px) {
	.mp-sp-size-guide.mp-sp-size-guide--compact .mp-sp-size-guide__content {
		padding: 18px 12px 12px !important;
	}

	.mp-sp-size-guide.mp-sp-size-guide--compact .mp-sp-size-option {
		min-height: 38px !important;
	}
}

/* =========================================================
   MetalPic single product reviews block
   ========================================================= */

.mp-sp-reviews-new,
.mp-sp-reviews-new * {
	box-sizing: border-box;
}

.mp-sp-reviews-new {
	--mp-review-pink: var(--mp-brand-pink, var(--mp-brand-pink));
	--mp-review-pink-soft: var(--mp-brand-pink-border);
	--mp-review-blue: var(--mp-brand-ink, var(--mp-brand-ink));
	--mp-review-muted: var(--mp-brand-muted, var(--mp-brand-muted));
	--mp-review-star: var(--mp-brand-star, var(--mp-brand-star));
	display: grid;
	grid-template-columns: minmax(240px, 0.34fr) minmax(0, 1fr);
	gap: 24px;
	width: 100%;
	margin-top: 22px;
	color: var(--mp-review-blue);
	font-family: var(--o2k-font-body, "Poppins", Arial, sans-serif);
}

.mp-sp-reviews-score,
.mp-sp-reviews-main {
	border: 1px solid var(--mp-review-pink-soft);
	border-radius: var(--o2k-radius);
	background: var(--mp-brand-surface, var(--mp-brand-surface));
	box-shadow: var(--mp-brand-shadow-soft);
}

.mp-sp-reviews-score {
	min-height: 230px;
	padding: 24px 30px 22px;
}

.mp-sp-reviews-score h2,
.mp-sp-reviews-main__head h2 {
	margin: 0;
	color: var(--mp-review-blue);
	font-size: clamp(1.05rem, 1.35vw, 1.32rem);
	font-weight: 900;
	line-height: 1.12;
	letter-spacing: 0;
}

.mp-sp-reviews-score__number {
	margin-top: 22px;
	font-size: clamp(2.7rem, 4vw, 4.2rem);
	font-weight: 800;
	line-height: 0.86;
	letter-spacing: 0;
}

.mp-sp-reviews-score__stars,
.mp-sp-review-card__stars {
	color: var(--mp-review-star);
	font-weight: 900;
	letter-spacing: 3px;
	white-space: nowrap;
}

.mp-sp-reviews-score__stars {
	margin-top: 12px;
	font-size: 1.62rem;
	line-height: 1;
}

.mp-sp-reviews-score p {
	margin: 12px 0 14px;
	color: var(--mp-review-muted);
	font-size: 0.82rem;
	font-weight: 600;
	line-height: 1.35;
}

.mp-sp-rating-lines {
	display: grid;
	gap: 8px;
	max-width: 290px;
}

.mp-sp-rating-line {
	display: grid;
	grid-template-columns: 14px 16px minmax(90px, 1fr) 34px;
	align-items: center;
	gap: 8px;
	color: var(--mp-review-muted);
	font-size: 0.8rem;
	font-weight: 700;
	line-height: 1;
}

.mp-sp-rating-line b {
	color: var(--mp-review-star);
	font-size: 0.9rem;
	font-weight: 900;
}

.mp-sp-rating-line i {
	position: relative;
	display: block;
	height: 8px;
	border-radius: var(--mp-brand-radius-pill);
	background: rgba(255, 47, 147, 0.16);
	overflow: hidden;
}

.mp-sp-rating-line i em {
	display: block;
	width: 0;
	height: 100%;
	border-radius: inherit;
	background: var(--mp-review-pink);
}

.mp-sp-rating-line--full i em {
	width: 100%;
}

.mp-sp-rating-line strong {
	color: var(--mp-review-blue);
	font-size: 0.75rem;
	font-weight: 700;
	text-align: right;
}

.mp-sp-reviews-main {
	min-height: 230px;
	padding: 24px 30px 28px;
}

.mp-sp-reviews-main__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 24px;
}

.mp-sp-reviews-main__head a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--mp-review-pink);
	font-size: 0.88rem;
	font-weight: 900;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
}

.mp-sp-reviews-main__head a::after {
	display: none !important;
}

.mp-sp-reviews-main__head a span {
	font-size: 1.32rem;
	line-height: 0.7;
}

.mp-sp-review-cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.mp-sp-review-card {
	position: relative;
	min-height: 148px;
	padding: 24px 116px 22px 28px;
	border: 1px solid var(--mp-review-pink-soft);
	border-radius: var(--mp-brand-radius-panel);
	background: var(--mp-brand-surface);
	box-shadow: 0 10px 24px rgba(32, 43, 85, 0.035);
	overflow: hidden;
}

.mp-sp-review-card__stars {
	font-size: 1.06rem;
	line-height: 1;
}

.mp-sp-review-card p {
	max-width: 460px;
	margin: 14px 0 18px;
	color: #303a55;
	font-size: clamp(0.86rem, 0.95vw, 1rem);
	font-style: italic;
	font-weight: 600;
	line-height: 1.44;
}

.mp-sp-review-card__author {
	display: flex;
	align-items: center;
	gap: 12px;
}

.mp-sp-review-avatar {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: var(--mp-brand-radius-pill);
	color: var(--mp-brand-surface);
	background: linear-gradient(135deg, #f7cfb7, #cc845e);
	font-size: 0.9rem;
	font-weight: 900;
	box-shadow: 0 7px 14px rgba(32, 43, 85, 0.13);
	flex: 0 0 auto;
}

.mp-sp-review-avatar--dark {
	background: linear-gradient(135deg, #222b3e, var(--mp-brand-muted-soft));
}

.mp-sp-review-card__author strong {
	display: block;
	color: var(--mp-review-blue);
	font-size: 0.86rem;
	font-weight: 900;
	line-height: 1.2;
}

.mp-sp-review-card__author small {
	display: block;
	margin-top: 2px;
	color: var(--mp-review-muted);
	font-size: 0.78rem;
	font-weight: 600;
	line-height: 1.2;
}

.mp-sp-review-card__quote {
	position: absolute;
	right: 28px;
	bottom: 14px;
	color: rgba(255, 47, 147, 0.12);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 7.6rem;
	font-weight: 900;
	line-height: 0.7;
	pointer-events: none;
}

@media (max-width: 1100px) {
	.mp-sp-reviews-new {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.mp-sp-reviews-score {
		min-height: auto;
	}

	.mp-sp-rating-lines {
		max-width: 420px;
	}
}

@media (max-width: 760px) {
	.mp-sp-reviews-new {
		margin-top: 16px;
	}

	.mp-sp-reviews-score,
	.mp-sp-reviews-main {
		border-radius: var(--mp-brand-radius-card);
		padding: 18px 16px;
	}

	.mp-sp-reviews-score__number {
		margin-top: 16px;
		font-size: 3rem;
	}

	.mp-sp-reviews-score__stars {
		font-size: 1.22rem;
		letter-spacing: 2px;
	}

	.mp-sp-reviews-main__head {
		align-items: flex-start;
		margin-bottom: 16px;
	}

	.mp-sp-reviews-main__head a {
		font-size: 0.76rem;
		gap: 6px;
	}

	.mp-sp-review-cards {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.mp-sp-review-card {
		min-height: 0;
		padding: 18px 62px 18px 18px;
		border-radius: var(--mp-brand-radius-card);
	}

	.mp-sp-review-card p {
		margin: 10px 0 14px;
		font-size: 0.84rem;
		line-height: 1.4;
	}

	.mp-sp-review-card__stars {
		font-size: 0.92rem;
		letter-spacing: 2px;
	}

	.mp-sp-review-card__quote {
		right: 16px;
		bottom: 12px;
		font-size: 5.2rem;
	}
}

@media (max-width: 430px) {
	.mp-sp-reviews-score h2,
	.mp-sp-reviews-main__head h2 {
		font-size: 1rem;
	}

	.mp-sp-reviews-main__head {
		flex-direction: column;
		gap: 10px;
	}

	.mp-sp-rating-line {
		grid-template-columns: 12px 14px minmax(0, 1fr) 28px;
		gap: 6px;
		font-size: 0.74rem;
	}
}

/* =========================================================
   MetalPic compact "Kaip tai veikia?" block
   ========================================================= */

.mp-sp-how--compact {
	display: grid !important;
	grid-template-columns: minmax(210px, 285px) minmax(0, 1fr) !important;
	align-items: center !important;
	gap: 18px !important;
	padding: 22px 24px !important;
}

.mp-sp-how--compact .mp-sp-how__intro h2 {
	margin: 0 0 8px !important;
	font-size: 1.55rem !important;
	line-height: 1.05 !important;
	letter-spacing: 0;
}

.mp-sp-how--compact .mp-sp-how__intro p {
	max-width: 280px !important;
	margin: 0 !important;
	font-size: 0.82rem !important;
	line-height: 1.42 !important;
	font-weight: 600 !important;
}

.mp-sp-how--compact .mp-sp-how__steps {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: 10px !important;
	align-items: stretch !important;
}

.mp-sp-how--compact .mp-sp-step {
	position: relative !important;
	display: grid !important;
	grid-template-columns: 30px minmax(0, 1fr) !important;
	grid-template-rows: auto auto !important;
	column-gap: 10px !important;
	row-gap: 5px !important;
	align-content: center !important;
	justify-items: start !important;
	min-height: 96px !important;
	padding: 14px 13px !important;
	border-radius: var(--mp-brand-radius-soft) !important;
	text-align: left !important;
}

.mp-sp-how--compact .mp-sp-step__num {
	position: static !important;
	grid-column: 1 !important;
	grid-row: 1 / span 2 !important;
	align-self: start !important;
	font-size: 1rem !important;
	line-height: 1 !important;
	font-weight: 900 !important;
}

.mp-sp-how--compact .mp-sp-step img {
	grid-column: 2 !important;
	grid-row: 1 !important;
	width: 26px !important;
	height: 26px !important;
	margin: 0 0 3px !important;
	object-fit: contain !important;
}

.mp-sp-how--compact .mp-sp-step__text {
	grid-column: 2 !important;
	grid-row: 2 !important;
	min-width: 0 !important;
}

.mp-sp-how--compact .mp-sp-step strong {
	display: block !important;
	font-size: 0.72rem !important;
	line-height: 1.18 !important;
	font-weight: 900 !important;
}

.mp-sp-how--compact .mp-sp-step small {
	display: block !important;
	margin-top: 4px !important;
	font-size: 0.64rem !important;
	line-height: 1.28 !important;
	font-weight: 600 !important;
}

@media (max-width: 900px) {
	.mp-sp-how--compact {
		grid-template-columns: 1fr !important;
		gap: 14px !important;
		padding: 20px 18px !important;
	}

	.mp-sp-how--compact .mp-sp-how__intro p {
		max-width: 100% !important;
	}

	.mp-sp-how--compact .mp-sp-how__steps {
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
		gap: 9px !important;
	}
}

@media (max-width: 640px) {
	.mp-sp-how--compact {
		padding: 18px 16px !important;
		gap: 13px !important;
		border-radius: var(--mp-brand-radius-card) !important;
	}

	.mp-sp-how--compact .mp-sp-how__intro h2 {
		font-size: 1.28rem !important;
		line-height: 1.05 !important;
		margin-bottom: 6px !important;
	}

	.mp-sp-how--compact .mp-sp-how__intro p {
		font-size: 0.76rem !important;
		line-height: 1.35 !important;
	}

	.mp-sp-how--compact .mp-sp-how__steps {
		grid-template-columns: 1fr !important;
		gap: 8px !important;
	}

	.mp-sp-how--compact .mp-sp-step {
		grid-template-columns: 34px 32px minmax(0, 1fr) !important;
		grid-template-rows: auto auto !important;
		column-gap: 10px !important;
		row-gap: 2px !important;
		align-items: center !important;
		min-height: 66px !important;
		padding: 10px 12px !important;
		border-radius: var(--mp-brand-radius-soft) !important;
	}

	.mp-sp-how--compact .mp-sp-step__num {
		grid-column: 1 !important;
		grid-row: 1 / span 2 !important;
		align-self: center !important;
		font-size: 1rem !important;
	}

	.mp-sp-how--compact .mp-sp-step img {
		grid-column: 2 !important;
		grid-row: 1 / span 2 !important;
		align-self: center !important;
		width: 28px !important;
		height: 28px !important;
		margin: 0 !important;
	}

	.mp-sp-how--compact .mp-sp-step__text {
		grid-column: 3 !important;
		grid-row: 1 / span 2 !important;
		align-self: center !important;
	}

	.mp-sp-how--compact .mp-sp-step strong {
		font-size: 0.74rem !important;
		line-height: 1.15 !important;
	}

	.mp-sp-how--compact .mp-sp-step small {
		margin-top: 3px !important;
		font-size: 0.64rem !important;
		line-height: 1.2 !important;
	}
}

@media (max-width: 380px) {
	.mp-sp-how--compact {
		padding: 16px 14px !important;
	}

	.mp-sp-how--compact .mp-sp-step {
		grid-template-columns: 30px 28px minmax(0, 1fr) !important;
		min-height: 62px !important;
		padding: 9px 10px !important;
	}

	.mp-sp-how--compact .mp-sp-step img {
		width: 25px !important;
		height: 25px !important;
	}
}

/* Delivery map right side fix */
.mp-sp-delivery__body {
	grid-template-columns: minmax(0, 1fr) 160px !important;
	gap: 18px !important;
	align-items: center !important;
}

.mp-sp-delivery__map {
	max-width: 150px !important;
	margin: 0 0 0 auto !important;
}

.mp-sp-delivery__note {
	grid-column: 1 / -1 !important;
}

@media (max-width: 430px) {
	.mp-sp-delivery__body {
		grid-template-columns: minmax(0, 1fr) 120px !important;
		gap: 12px !important;
	}

	.mp-sp-delivery__map {
		max-width: 115px !important;
	}

	.mp-sp-delivery__list li {
		grid-template-columns: 24px minmax(0, 1fr) auto !important;
		gap: 8px !important;
	}
}

/* =========================================================
   MetalPic home reviews block
   ========================================================= */

.mp-home-reviews-section {
	padding-top: 62px;
	padding-bottom: 70px;
}

.mp-home-reviews-new,
.mp-home-reviews-new * {
	box-sizing: border-box;
}

.mp-home-reviews-new {
	--mp-home-review-pink: var(--mp-brand-pink, var(--mp-brand-pink));
	--mp-home-review-pink-soft: var(--mp-brand-pink-border);
	--mp-home-review-blue: var(--mp-brand-ink, var(--mp-brand-ink));
	--mp-home-review-muted: var(--mp-brand-muted, var(--mp-brand-muted));
	--mp-home-review-star: var(--mp-brand-star, var(--mp-brand-star));
	display: grid;
	grid-template-columns: minmax(230px, 0.34fr) minmax(0, 1fr);
	gap: 24px;
	width: min(100%, 1180px);
	margin: 34px auto 0;
	color: var(--mp-home-review-blue);
	font-family: var(--o2k-font-body, "Poppins", Arial, sans-serif);
	text-align: left;
}

.mp-home-reviews-score,
.mp-home-reviews-main {
	border: 1px solid var(--mp-home-review-pink-soft);
	border-radius: var(--o2k-radius);
	background: var(--mp-brand-surface, var(--mp-brand-surface));
	box-shadow: var(--mp-brand-shadow-soft);
}

.mp-home-reviews-score {
	min-height: 230px;
	padding: 28px 30px 26px;
}

.mp-home-reviews-score h3,
.mp-home-reviews-main__head h3 {
	margin: 0;
	color: var(--mp-home-review-blue);
	font-size: 20px;
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: 0;
}

.mp-home-reviews-score__number {
	margin-top: 22px;
	color: var(--mp-home-review-blue);
	font-size: 58px;
	font-weight: 800;
	line-height: 0.9;
	letter-spacing: 0;
}

.mp-home-reviews-score__stars {
	margin-top: 10px;
	color: var(--mp-home-review-star);
	font-size: 28px;
	line-height: 1;
	letter-spacing: 0.08em;
}

.mp-home-reviews-score p {
	margin: 12px 0 18px;
	color: var(--mp-home-review-muted);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.35;
}

.mp-home-rating-lines {
	display: grid;
	gap: 8px;
}

.mp-home-rating-line {
	display: grid;
	grid-template-columns: 16px 16px minmax(0, 1fr) 36px;
	align-items: center;
	gap: 8px;
	color: var(--mp-home-review-muted);
	font-size: 14px;
	font-weight: 600;
}

.mp-home-rating-line b {
	color: var(--mp-home-review-star);
	font-style: normal;
	font-weight: 800;
}

.mp-home-rating-line i {
	position: relative;
	display: block;
	height: 6px;
	border-radius: var(--mp-brand-radius-pill);
	background: rgba(255, 47, 147, 0.16);
	overflow: hidden;
}

.mp-home-rating-line em {
	position: absolute;
	inset: 0 auto 0 0;
	width: 0%;
	border-radius: inherit;
	background: var(--mp-home-review-pink);
}

.mp-home-rating-line--full em {
	width: 100%;
}

.mp-home-rating-line strong {
	color: var(--mp-home-review-muted);
	font-size: 13px;
	font-weight: 700;
	text-align: right;
}

.mp-home-reviews-main {
	min-width: 0;
	padding: 28px 30px 28px;
}

.mp-home-reviews-main__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 24px;
}

.mp-home-reviews-main__head a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--mp-home-review-pink);
	font-size: 15px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
}

.mp-home-reviews-main__head a::after {
	display: none !important;
}

.mp-home-review-cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.mp-home-review-card {
	position: relative;
	min-height: 180px;
	padding: 24px 28px 24px;
	border: 1px solid var(--mp-home-review-pink-soft);
	border-radius: var(--mp-brand-radius-panel);
	background: var(--mp-brand-surface);
	overflow: hidden;
}

.mp-home-review-card__stars {
	color: var(--mp-home-review-star);
	font-size: 22px;
	line-height: 1;
	letter-spacing: 0.08em;
}

.mp-home-review-card p {
	position: relative;
	z-index: 2;
	margin: 16px 0 22px;
	max-width: 92%;
	color: #26324f;
	font-size: 16px;
	font-style: italic;
	font-weight: 500;
	line-height: 1.45;
}

.mp-home-review-card__author {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 12px;
}

.mp-home-review-avatar {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: var(--mp-brand-radius-pill);
	background: linear-gradient(135deg, rgba(255, 47, 147, 0.18), rgba(32,43,85,.08));
	overflow: hidden;
	flex: 0 0 auto;
}

.mp-home-review-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mp-home-review-card__author strong {
	display: block;
	color: #18233d;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.1;
}

.mp-home-review-card__author small {
	display: block;
	margin-top: 4px;
	color: var(--mp-home-review-muted);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.1;
}

.mp-home-review-quote {
	position: absolute;
	right: 28px;
	bottom: -6px;
	color: rgba(255, 47, 147, 0.10);
	font-size: 110px;
	font-weight: 900;
	line-height: 1;
	font-family: Georgia, serif;
	pointer-events: none;
}

@media (max-width: 980px) {
	.mp-home-reviews-new {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.mp-home-reviews-score {
		min-height: 0;
	}
}

@media (max-width: 680px) {
	.mp-home-reviews-section {
		padding-top: 42px;
		padding-bottom: 48px;
	}

	.mp-home-reviews-new {
		margin-top: 22px;
		gap: 14px;
	}

	.mp-home-reviews-score,
	.mp-home-reviews-main {
		border-radius: var(--mp-brand-radius-card);
		padding: 20px 18px;
	}

	.mp-home-reviews-score h3,
	.mp-home-reviews-main__head h3 {
		font-size: 17px;
	}

	.mp-home-reviews-score__number {
		margin-top: 14px;
		font-size: 44px;
	}

	.mp-home-reviews-score__stars {
		font-size: 22px;
	}

	.mp-home-reviews-score p {
		font-size: 13px;
	}

	.mp-home-reviews-main__head {
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
		margin-bottom: 16px;
	}

	.mp-home-reviews-main__head a {
		font-size: 13px;
	}

	.mp-home-review-cards {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.mp-home-review-card {
		min-height: 0;
		padding: 18px 16px;
		border-radius: var(--mp-brand-radius-card);
	}

	.mp-home-review-card__stars {
		font-size: 18px;
	}

	.mp-home-review-card p {
		max-width: 100%;
		margin: 12px 0 16px;
		font-size: 13px;
		line-height: 1.45;
	}

	.mp-home-review-avatar {
		width: 36px;
		height: 36px;
	}

	.mp-home-review-card__author strong {
		font-size: 13px;
	}

	.mp-home-review-card__author small {
		font-size: 12px;
	}

	.mp-home-review-quote {
		right: 16px;
		font-size: 76px;
	}
}

.o2k-checkout-card--payment {
	margin-top: 24px;
}

.o2k-checkout-card--payment .woocommerce-privacy-policy-text {
	display: none;
}

.o2k-checkout-card--payment .woocommerce-terms-and-conditions-wrapper {
	order: 2;
	margin: 4px 0 18px;
	color: var(--mp-brand-ink);
	font-size: 0.82rem;
	font-weight: 700;
	line-height: 1.45;
}

.o2k-checkout-card--payment .form-row.place-order {
	order: 3;
	margin: 0;
	padding: 0;
}

.o2k-checkout-card--payment #place_order {
	width: 100%;
	min-height: 52px;
	margin: 0;
	border: 0;
	border-radius: var(--mp-brand-radius-field);
	background: var(--mp-brand-pink);
	box-shadow: var(--mp-brand-shadow-pop);
	color: var(--mp-brand-surface);
	font-size: 1rem;
	font-weight: 900;
}

/* ======================================================================
   MetalPic checkout layout
   ====================================================================== */

/* Correct checkout block order */
.o2k-checkout-customer {
	display: grid !important;
	gap: 24px !important;
}

.o2k-checkout-card--customer {
	order: 1 !important;
}

.o2k-delivery-methods {
	order: 2 !important;
	margin-top: 0 !important;
}

.o2k-checkout-card--payment {
	order: 3 !important;
	margin-top: 0 !important;
	padding: 30px !important;
	border: 1px solid rgba(32, 43, 85, 0.06) !important;
	border-radius: var(--mp-brand-radius-card) !important;
	background: var(--mp-brand-surface) !important;
	box-shadow: var(--mp-brand-shadow-card) !important;
}

/* Hide duplicated payment elements from right summary */
.o2k-checkout-summary .woocommerce-checkout-payment,
.o2k-checkout-summary .wc_payment_methods,
.o2k-checkout-summary .payment_box,
.o2k-checkout-summary .woocommerce-terms-and-conditions-wrapper,
.o2k-checkout-summary .form-row.place-order,
.o2k-checkout-summary #place_order,
.o2k-checkout-summary .o2k-payment-badges {
	display: none !important;
}

/* WooCommerce payment wrapper */
.o2k-checkout-card--payment .woocommerce-checkout-payment {
	display: flex !important;
	flex-direction: column !important;
	margin: 0 !important;
	padding: 0 !important;
	background: transparent !important;
}

.o2k-checkout-card--payment .wc_payment_methods {
	order: 1 !important;
	display: block !important;
	height: auto !important;
	margin: 0 0 14px !important;
	padding: 0 !important;
	list-style: none !important;
	overflow: visible !important;
	opacity: 1 !important;
	background: transparent !important;
}

.o2k-checkout-card--payment .wc_payment_method > input[name="payment_method"] {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	opacity: 0 !important;
}

.o2k-checkout-card--payment .wc_payment_method > label {
	display: none !important;
}

.o2k-checkout-card--payment .payment_box,
.o2k-checkout-card--payment .payment_box::before,
.o2k-checkout-card--payment .payment_box::after {
	display: block !important;
	margin: 0 !important;
	padding: 0 !important;
	background: transparent !important;
	border: 0 !important;
	content: none !important;
}

/* ======================================================================
   MetalPic Smart Checkout layout
   ====================================================================== */

.o2k-checkout-page {
	--mp-checkout-pink: var(--mp-brand-pink, var(--mp-brand-pink));
	--mp-checkout-pink-dark: var(--mp-brand-pink-dark, var(--mp-brand-pink-dark));
	--mp-checkout-pink-soft: var(--mp-brand-pink-soft, var(--mp-brand-pink-soft));
	--mp-checkout-ink: var(--mp-brand-ink, var(--mp-brand-ink));
	--mp-checkout-muted: var(--mp-brand-muted-soft, var(--mp-brand-muted-soft));
	--mp-checkout-line: var(--mp-brand-border, var(--mp-brand-border));
	--mp-checkout-panel: var(--mp-brand-surface, var(--mp-brand-surface));
	--mp-checkout-shadow: var(--mp-brand-shadow-card);
	color: var(--mp-checkout-ink);
	font-family: var(--o2k-font-body, "Poppins", Arial, sans-serif);
}

.o2k-checkout-page .o2k-cart-shell {
	max-width: 1120px !important;
}

.o2k-checkout-page .o2k-checkout-layout {
	grid-template-columns: minmax(0, 660px) minmax(300px, 360px) !important;
	gap: 22px !important;
	align-items: start !important;
}

.o2k-checkout-page .o2k-checkout-card,
.o2k-checkout-page .o2k-delivery-methods,
.o2k-checkout-page .o2k-checkout-summary {
	border: 1px solid var(--mp-checkout-line) !important;
	border-radius: var(--mp-brand-radius-card) !important;
	background: var(--mp-checkout-panel) !important;
	box-shadow: var(--mp-checkout-shadow) !important;
}

.o2k-checkout-page .o2k-checkout-card,
.o2k-checkout-page .o2k-delivery-methods {
	padding: 28px 30px !important;
}

.o2k-checkout-page .o2k-checkout-card--payment {
	padding: 28px 30px 30px !important;
	overflow: hidden !important;
}

.o2k-checkout-card--customer > h3,
.o2k-delivery-methods > h3,
.o2k-checkout-card--payment > h3,
.o2k-checkout-summary h2 {
	margin: 0 0 16px !important;
	color: var(--mp-checkout-ink) !important;
	font-size: 23px !important;
	font-weight: 900 !important;
	line-height: 1.12 !important;
	letter-spacing: 0;
	text-transform: none !important;
}

.o2k-checkout-payment-subtitle {
	margin: -8px 0 18px !important;
	color: var(--mp-checkout-muted) !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	line-height: 1.35 !important;
}

.o2k-checkout-page .o2k-checkout-fields label,
.o2k-checkout-page .o2k-delivery-methods .form-row label,
.o2k-checkout-page .o2k-delivery-methods .woo_lithuaniapost_lpexpress_terminal_label,
.o2k-checkout-page .o2k-delivery-methods .woo_lithuaniapost_delivery_time_label {
	margin-bottom: 7px !important;
	color: var(--mp-brand-blue, var(--mp-brand-ink)) !important;
	font-size: 10px !important;
	font-weight: 900 !important;
	line-height: 1.2 !important;
	letter-spacing: 0.08em !important;
	text-transform: uppercase !important;
}

.o2k-checkout-page .o2k-checkout-fields input.input-text,
.o2k-checkout-page .o2k-checkout-fields textarea,
.o2k-checkout-page .o2k-checkout-fields select,
.o2k-checkout-page .o2k-checkout-fields .select2-container--default .select2-selection--single,
.o2k-checkout-page .o2k-delivery-methods input.input-text,
.o2k-checkout-page .o2k-delivery-methods select,
.o2k-checkout-page .o2k-delivery-methods .select2-container--default .select2-selection--single {
	min-height: 45px !important;
	border: 1px solid var(--mp-brand-border-strong, var(--mp-brand-border-strong)) !important;
	border-radius: var(--mp-brand-radius-field) !important;
	background: var(--mp-brand-surface, var(--mp-brand-surface)) !important;
	box-shadow: none !important;
	color: var(--mp-checkout-ink) !important;
	font-size: 13px !important;
	font-weight: 700 !important;
}

.o2k-checkout-page .o2k-checkout-fields input.input-text:focus,
.o2k-checkout-page .o2k-checkout-fields textarea:focus,
.o2k-checkout-page .o2k-checkout-fields select:focus,
.o2k-checkout-page .o2k-delivery-methods input.input-text:focus,
.o2k-checkout-page .o2k-delivery-methods select:focus,
.o2k-checkout-page .select2-container--open .select2-selection--single {
	border-color: rgba(255, 47, 147, 0.62) !important;
	box-shadow: var(--mp-brand-shadow-focus) !important;
	outline: 0 !important;
}

.o2k-checkout-page input::placeholder,
.o2k-checkout-page textarea::placeholder {
	color: #a7b0c4 !important;
	font-weight: 600 !important;
}

.o2k-delivery-methods__grid {
	gap: 16px !important;
}

.o2k-delivery-card {
	min-height: 104px !important;
	padding: 20px 22px !important;
	border: 1px solid var(--mp-checkout-line) !important;
	border-radius: var(--mp-brand-radius-card) !important;
	background: var(--mp-brand-surface, var(--mp-brand-surface)) !important;
	box-shadow: none !important;
	transition: border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease !important;
}

.o2k-delivery-card:hover {
	border-color: rgba(255, 47, 147, 0.45) !important;
	box-shadow: var(--mp-brand-shadow-soft) !important;
}

.o2k-delivery-method-item > input.shipping_method:checked + .o2k-delivery-card,
.o2k-delivery-card.is-selected {
	border-color: var(--mp-checkout-pink) !important;
	background: var(--mp-checkout-pink-soft) !important;
	box-shadow: inset 0 0 0 1px rgba(255, 47, 147, 0.18), 0 12px 24px rgba(255, 47, 147, 0.10) !important;
}

.o2k-delivery-card__main strong {
	color: var(--mp-checkout-ink) !important;
	font-size: 14px !important;
	font-weight: 900 !important;
	line-height: 1.18 !important;
	letter-spacing: 0 !important;
	text-transform: none !important;
}

.o2k-delivery-card__main small {
	margin-top: 7px !important;
	color: var(--mp-checkout-muted) !important;
	font-size: 11px !important;
	font-weight: 800 !important;
	letter-spacing: 0.04em !important;
	text-transform: uppercase !important;
}

.o2k-delivery-card__price {
	color: var(--mp-checkout-pink) !important;
	font-size: 19px !important;
	font-weight: 900 !important;
	letter-spacing: 0;
}

.o2k-checkout-card--payment .payment_box {
	padding: 0 !important;
}

.o2k-checkout-card--payment .paysera-radio-control {
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	gap: 12px !important;
	width: 100% !important;
	margin: 8px 0 0 !important;
}

.o2k-checkout-card--payment .paysera-radio-control .radio-control__option {
	position: relative !important;
	display: block !important;
	min-height: 58px !important;
	padding: 0 !important;
	border: 1px solid var(--mp-checkout-line) !important;
	border-radius: var(--mp-brand-radius-field) !important;
	background: var(--mp-brand-surface, var(--mp-brand-surface)) !important;
	box-shadow: none !important;
	overflow: hidden !important;
	transition: border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease !important;
}

.o2k-checkout-card--payment .paysera-radio-control .radio-control__option:hover {
	border-color: rgba(255, 47, 147, 0.42) !important;
	background: var(--mp-brand-surface, var(--mp-brand-surface)) !important;
	box-shadow: var(--mp-brand-shadow-soft) !important;
	transform: translateY(-1px) !important;
}

.o2k-checkout-card--payment .paysera-radio-control .radio-control__option:has(input[type="radio"]:checked) {
	border-color: var(--mp-checkout-pink) !important;
	background: var(--mp-checkout-pink-soft) !important;
	box-shadow: inset 0 0 0 1px rgba(255, 47, 147, 0.18), 0 12px 24px rgba(255, 47, 147, 0.10) !important;
}

.o2k-checkout-card--payment .paysera-radio-control .radio-control__option:has(input[type="radio"]:checked)::after {
	content: "";
	position: absolute;
	top: 10px;
	right: 10px;
	width: 8px;
	height: 8px;
	border-radius: var(--mp-brand-radius-pill);
	background: var(--mp-checkout-pink);
	box-shadow: var(--mp-brand-shadow-focus);
	pointer-events: none;
}

.o2k-checkout-card--payment .paysera-radio-control .radio-control__option-layout,
.o2k-checkout-card--payment .paysera-radio-control .radio-control__option-group {
	width: 100% !important;
	min-height: 58px !important;
}

.o2k-checkout-card--payment .paysera-radio-control .radio-control__option-layout .radio-control__option-group {
	display: grid !important;
	grid-template-columns: 38px minmax(0, 1fr) !important;
	align-items: center !important;
	gap: 12px !important;
	padding: 11px 14px !important;
}

.o2k-checkout-card--payment .paysera-radio-control .radio-control__icon {
	display: grid !important;
	place-items: center !important;
	width: 34px !important;
	height: 34px !important;
	border-radius: var(--mp-brand-radius-pill) !important;
	background: var(--mp-brand-surface-soft, var(--mp-brand-surface-soft)) !important;
	overflow: hidden !important;
}

.o2k-checkout-card--payment .paysera-radio-control .radio-control__icon img,
.o2k-checkout-card--payment .paysera-radio-control .radio-control__icon svg {
	display: block !important;
	width: 24px !important;
	height: 24px !important;
	max-width: 24px !important;
	max-height: 24px !important;
	object-fit: contain !important;
}

.o2k-checkout-card--payment .paysera-radio-control .radio-control__label {
	display: block !important;
	min-width: 0 !important;
	color: var(--mp-checkout-ink) !important;
	font-size: 12px !important;
	font-weight: 900 !important;
	line-height: 1.15 !important;
	letter-spacing: 0.02em !important;
	text-transform: uppercase !important;
	white-space: nowrap !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
}

.o2k-checkout-card--payment .paysera-radio-control .radio-control__description,
.o2k-checkout-card--payment .paysera-radio-control .radio-control__text {
	display: block !important;
	margin-top: 2px !important;
	color: var(--mp-checkout-muted) !important;
	font-size: 10px !important;
	font-weight: 700 !important;
	line-height: 1.2 !important;
	white-space: nowrap !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
}

.o2k-checkout-card--payment .woocommerce-terms-and-conditions-wrapper {
	margin: 18px 0 16px !important;
	padding: 14px 0 0 !important;
	border-top: 1px solid var(--mp-checkout-line) !important;
	color: var(--mp-checkout-ink) !important;
	font-size: 11px !important;
	font-weight: 800 !important;
	line-height: 1.35 !important;
}

.o2k-checkout-card--payment .woocommerce-terms-and-conditions-wrapper ~ .woocommerce-terms-and-conditions-wrapper {
	display: none !important;
}

.o2k-checkout-card--payment .woocommerce-form__label-for-checkbox {
	display: grid !important;
	grid-template-columns: 18px minmax(0, 1fr) !important;
	align-items: start !important;
	gap: 10px !important;
	margin: 0 !important;
	color: var(--mp-checkout-ink) !important;
	cursor: pointer !important;
}

.o2k-checkout-card--payment .woocommerce-form__label-for-checkbox input[type="checkbox"] {
	width: 17px !important;
	height: 17px !important;
	margin: 0 !important;
	border-radius: var(--mp-brand-radius-field) !important;
	accent-color: var(--mp-checkout-pink) !important;
}

.o2k-checkout-card--payment .woocommerce-form__label-for-checkbox span {
	display: block !important;
	min-width: 0 !important;
}

.o2k-checkout-card--payment .woocommerce-form__label-for-checkbox a {
	color: var(--mp-checkout-pink) !important;
	font-weight: 900 !important;
	text-decoration: none !important;
}

.o2k-checkout-card--payment .woocommerce-form__label-for-checkbox a:hover {
	text-decoration: underline !important;
	text-underline-offset: 3px !important;
}

.o2k-checkout-card--payment .form-row.place-order {
	margin-top: 6px !important;
}

.o2k-checkout-card--payment #place_order,
.o2k-checkout-card--payment button[name="woocommerce_checkout_place_order"] {
	min-height: 54px !important;
	border-radius: var(--mp-brand-radius-field) !important;
	background: linear-gradient(135deg, var(--mp-checkout-pink) 0%, var(--mp-checkout-pink-dark) 100%) !important;
	box-shadow: var(--mp-brand-shadow-pop) !important;
	color: var(--mp-brand-surface) !important;
	font-size: 13px !important;
	font-weight: 900 !important;
	letter-spacing: 0.04em !important;
	text-transform: uppercase !important;
	transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease !important;
}

.o2k-checkout-card--payment #place_order:hover,
.o2k-checkout-card--payment button[name="woocommerce_checkout_place_order"]:hover {
	box-shadow: var(--mp-brand-shadow-pop) !important;
	filter: saturate(1.04) !important;
	transform: translateY(-1px) !important;
}

.o2k-checkout-card--payment #place_order:active,
.o2k-checkout-card--payment button[name="woocommerce_checkout_place_order"]:active {
	box-shadow: var(--mp-brand-shadow-pop) !important;
	transform: translateY(0) !important;
}

.o2k-checkout-summary {
	position: sticky !important;
	top: 116px !important;
	padding: 28px 28px 24px !important;
}

.o2k-checkout-summary .woocommerce-checkout-review-order-table tr.cart_item {
	padding-bottom: 18px !important;
	border-bottom: 1px solid var(--mp-checkout-line) !important;
}

.o2k-checkout-summary .product-name,
.o2k-checkout-summary .product-total,
.o2k-checkout-summary tfoot th,
.o2k-checkout-summary tfoot td {
	color: var(--mp-checkout-ink) !important;
	font-size: 13px !important;
	font-weight: 800 !important;
	line-height: 1.35 !important;
}

.o2k-checkout-summary .order-total {
	margin-top: 14px !important;
	padding-top: 18px !important;
	border-top: 1px solid var(--mp-checkout-line) !important;
}

.o2k-checkout-summary .order-total th,
.o2k-checkout-summary .order-total td {
	font-size: 19px !important;
	font-weight: 900 !important;
}

.o2k-checkout-summary .order-total .amount {
	color: var(--mp-checkout-pink) !important;
	font-size: 30px !important;
	font-weight: 900 !important;
	letter-spacing: 0;
}

.o2k-checkout-trust-grid {
	gap: 12px !important;
	margin-top: 20px !important;
}

.o2k-checkout-trust-card {
	min-height: 76px !important;
	padding: 15px 10px 13px !important;
	border: 1px solid var(--mp-checkout-line) !important;
	border-radius: var(--mp-brand-radius-soft) !important;
	background: var(--mp-brand-surface-soft, var(--mp-brand-surface-soft)) !important;
}

.o2k-checkout-trust-card__emoji {
	margin-bottom: 8px !important;
	font-size: 20px !important;
}

.o2k-checkout-trust-card strong {
	color: var(--mp-checkout-muted) !important;
	font-size: 9px !important;
	font-weight: 900 !important;
	letter-spacing: 0.10em !important;
}

.o2k-checkout-card--payment .paysera-radio-control:empty {
	min-height: 154px !important;
	border: 1px dashed var(--mp-brand-border-strong, var(--mp-brand-border-strong)) !important;
	border-radius: var(--mp-brand-radius-soft) !important;
	background: var(--mp-brand-surface-soft, var(--mp-brand-surface-soft)) !important;
}

.o2k-checkout-card--payment .paysera-radio-control:empty::before {
	left: 18px !important;
	top: 18px !important;
	color: var(--mp-checkout-muted) !important;
	font-size: 13px !important;
	font-weight: 800 !important;
}

@media (max-width: 980px) {
	.o2k-checkout-page .o2k-checkout-layout {
		grid-template-columns: 1fr !important;
	}

	.o2k-checkout-summary {
		position: static !important;
	}
}

/* MetalPic checkout adjustments */
.o2k-checkout-summary .o2k-checkout-trust-grid {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	gap: 10px !important;
	margin-top: 18px !important;
}

.o2k-checkout-summary .o2k-checkout-trust-card {
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	justify-content: center !important;
	min-width: 0 !important;
	min-height: 74px !important;
	padding: 13px 8px 12px !important;
	text-align: center !important;
}

.o2k-checkout-summary .o2k-checkout-trust-card strong {
	font-size: 8px !important;
	line-height: 1.25 !important;
	white-space: normal !important;
}

.o2k-delivery-methods .o2k-courier-fields {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	gap: 14px 16px !important;
	margin-top: 18px !important;
}

.o2k-delivery-methods .o2k-courier-fields .form-row {
	width: 100% !important;
	margin: 0 !important;
}

.o2k-delivery-methods .o2k-courier-fields [data-o2k-proxy-field="billing_address_1"] {
	grid-column: 1 / -1 !important;
}

.o2k-delivery-methods .o2k-courier-fields [data-o2k-proxy-field="billing_postcode"] {
	grid-column: 1 !important;
}

.o2k-delivery-methods .o2k-courier-fields [data-o2k-proxy-field="billing_address_2"] {
	grid-column: 2 !important;
}

.o2k-checkout-card--payment .paysera-payment-country-select,
.o2k-checkout-card--payment .paysera-payment-country-select__wrapper,
.o2k-checkout-card--payment .paysera-payment-methods__country-select {
	display: none !important;
}

.o2k-checkout-card--payment .paysera-radio-control {
	margin-top: 0 !important;
}

.o2k-checkout-card--payment .paysera-customer-consent,
.o2k-checkout-card--payment .paysera-customer-consent__text {
	margin-top: 12px !important;
	color: #98a2b3 !important;
	font-size: 9px !important;
	font-weight: 500 !important;
	line-height: 1.35 !important;
}

.o2k-checkout-card--payment .paysera-customer-consent a,
.o2k-checkout-card--payment .paysera-customer-consent__text a {
	color: var(--mp-brand-muted, var(--mp-brand-muted)) !important;
	font-weight: 800 !important;
}

@media (max-width: 680px) {
	.o2k-delivery-methods .o2k-courier-fields {
		grid-template-columns: 1fr !important;
	}

	.o2k-delivery-methods .o2k-courier-fields [data-o2k-proxy-field="billing_address_1"],
	.o2k-delivery-methods .o2k-courier-fields [data-o2k-proxy-field="billing_postcode"],
	.o2k-delivery-methods .o2k-courier-fields [data-o2k-proxy-field="billing_address_2"] {
		grid-column: 1 / -1 !important;
	}
}
/* MetalPic shared visual system */
.o2k-site-header,
.o2k-submenu,
.o2k-product-preview__frame,
.o2k-product-config,
.o2k-cart-items,
.o2k-cart-summary,
.o2k-checkout-card,
.o2k-checkout-summary,
.o2k-delivery-methods,
.o2k-price-card,
.o2k-work-card,
.o2k-compare__inner,
.o2k-placeholder,
.mp-sp-card,
.mp-sp-size-guide,
.mp-sp-how,
.mp-sp-faq,
.mp-sp-delivery,
.mp-sp-reviews-new,
.mp-home-reviews-new {
	border: 1px solid var(--mp-brand-border) !important;
	border-radius: var(--mp-brand-radius-panel) !important;
	background-color: var(--mp-brand-surface) !important;
	box-shadow: var(--mp-brand-shadow-card) !important;
}

.o2k-price-card,
.o2k-work-card,
.o2k-pricing-slider .o2k-placeholder--price,
.o2k-works-slider .o2k-placeholder--work,
.o2k-price-card__footer {
	box-shadow: none !important;
}

.o2k-cart-item,
.o2k-cart-promo,
.o2k-delivery-card,
.o2k-checkout-trust-card,
.o2k-checkout-card--payment .paysera-radio-control .radio-control__option-layout .radio-control__option-group,
.o2k-checkout-card--payment .payment_box,
.o2k-checkout-card--payment .paysera-radio-control:empty,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce-input-wrapper input,
.woocommerce-input-wrapper textarea,
.woocommerce-input-wrapper select,
.o2k-cart-item__media,
.o2k-product-preview__placeholder {
	border-color: var(--mp-brand-border) !important;
	border-radius: var(--mp-brand-radius-card) !important;
	background-color: var(--mp-brand-surface-soft) !important;
}

.o2k-button,
.woocommerce .button,
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.o2k-product-cart .single_add_to_cart_button,
.o2k-cart-checkout .checkout-button,
.o2k-checkout-card--payment #place_order,
.o2k-checkout-card--payment button[name="woocommerce_checkout_place_order"] {
	border-radius: var(--mp-brand-radius-field) !important;
	background: var(--mp-brand-pink) !important;
	border-color: var(--mp-brand-pink) !important;
	color: var(--mp-brand-surface) !important;
	box-shadow: var(--mp-brand-shadow-pop) !important;
}

.o2k-button:hover,
.o2k-button:focus-visible,
.woocommerce .button:hover,
.woocommerce button.button:hover,
.woocommerce a.button:hover,
.woocommerce input.button:hover,
.o2k-product-cart .single_add_to_cart_button:hover,
.o2k-cart-checkout .checkout-button:hover,
.o2k-checkout-card--payment #place_order:hover,
.o2k-checkout-card--payment button[name="woocommerce_checkout_place_order"]:hover {
	background: var(--mp-brand-surface) !important;
	color: var(--mp-brand-pink) !important;
	border-color: var(--mp-brand-pink) !important;
	box-shadow: var(--mp-brand-shadow-pop) !important;
}

.o2k-product-config h1,
.o2k-title,
.mp-sp-sections h2,
.mp-sp-reviews-new h2,
.mp-home-reviews-new h2,
.o2k-checkout-card h3,
.o2k-delivery-methods h3,
.o2k-checkout-summary h2,
.o2k-cart-summary h2 {
	color: var(--mp-brand-ink) !important;
	letter-spacing: 0 !important;
}

.o2k-lead,
.o2k-cart-item dl.variation,
.o2k-checkout-card p,
.o2k-checkout-summary,
.mp-sp-sections p {
	color: var(--mp-brand-muted) !important;
}

.o2k-product-price ins,
.o2k-cart-total-row.order-total strong,
.o2k-checkout-summary .order-total .amount,
.o2k-price-card__price,
.mp-sp-eyebrow {
	color: var(--mp-brand-pink) !important;
}

.o2k-site-header,
.o2k-header-wrap .o2k-site-header {
	background: rgba(255, 255, 255, 0.96) !important;
	backdrop-filter: blur(14px);
}

.o2k-nav-item > a,
.o2k-header-cart,
.o2k-language-switcher,
.o2k-header-social {
	border-color: var(--mp-brand-border) !important;
	border-radius: var(--mp-brand-radius-field) !important;
	background-color: var(--mp-brand-surface) !important;
}

input:focus,
textarea:focus,
select:focus,
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus,
.o2k-checkout-card--payment .paysera-radio-control .radio-control__option-layout .radio-control__option-group:focus-within,
.o2k-delivery-card.is-selected,
.o2k-delivery-card:hover {
	border-color: var(--mp-brand-pink) !important;
	box-shadow: var(--mp-brand-shadow-focus) !important;
	outline: none !important;
}

.o2k-checkout-step i,
.o2k-price-card__badge,
.o2k-header-cart::before,
.o2k-cart-icon::after,
.o2k-compare-feature__icon {
	background-color: var(--mp-brand-pink-soft) !important;
	color: var(--mp-brand-pink) !important;
	border-color: var(--mp-brand-pink-border) !important;
}

.o2k-cart-item__media img,
.o2k-product-preview__frame img,
.o2k-placeholder img,
.mp-sp-sections img,
.mp-sp-reviews-new img,
.mp-home-reviews-new img {
	border-radius: var(--mp-brand-radius-card) !important;
}

@media (max-width: 680px) {
	.o2k-site-header,
	.o2k-product-preview__frame,
	.o2k-product-config,
	.o2k-cart-items,
	.o2k-cart-summary,
	.o2k-checkout-card,
	.o2k-checkout-summary,
	.o2k-delivery-methods,
	.mp-sp-card,
	.mp-sp-size-guide,
	.mp-sp-how,
	.mp-sp-faq,
	.mp-sp-delivery,
	.mp-sp-reviews-new,
	.mp-home-reviews-new {
		border-radius: var(--mp-brand-radius-card) !important;
	}
}
/* MetalPic footer */ .mp-site-footer {
	position: relative !important;
	margin-top: clamp(30px, 4vw, 54px) !important;
	padding: clamp(44px, 5vw, 64px) 0 24px !important;
	background: transparent !important;
	color: var(--mp-brand-ink) !important;
	border-top: 1px solid rgba(16, 20, 38, 0.08) !important;
	box-shadow: 0 -18px 34px rgba(32, 43, 85, 0.045) !important;
}

.mp-site-footer::before {
	content: "" !important;
	position: absolute !important;
	left: 50% !important;
	top: -1px !important;
	width: min(100% - 30px, var(--o2k-container)) !important;
	height: 1px !important;
	background: linear-gradient(90deg, transparent, rgba(255, 47, 147, 0.28), transparent) !important;
	transform: translateX(-50%) !important;
}

.mp-footer__inner {
	width: min(100% - 30px, var(--o2k-container, 1310px)) !important;
	max-width: var(--o2k-container, 1310px) !important;
	margin: 0 auto !important;
	padding: 0 0 clamp(28px, 4vw, 42px) !important;
	display: grid !important;
	grid-template-columns: minmax(260px, 1.2fr) minmax(180px, 0.9fr) minmax(190px, 0.95fr) minmax(240px, 1fr) !important;
	gap: clamp(28px, 4vw, 58px) !important;
	align-items: start !important;
	border-bottom: 1px solid var(--mp-brand-border) !important;
}

.mp-footer__brand {
	display: grid !important;
	gap: 18px !important;
	align-content: start !important;
	text-align: left !important;
}

.mp-footer__logo {
	display: inline-flex !important;
	align-items: center !important;
	width: fit-content !important;
	max-width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
}

.mp-footer__logo .o2k-brand__logo,
.mp-footer__logo img {
	display: block !important;
	width: auto !important;
	height: 48px !important;
	max-width: 230px !important;
	object-fit: contain !important;
	filter: none !important;
}

.mp-footer__text {
	max-width: 285px !important;
	margin: 0 !important;
	color: var(--mp-brand-muted) !important;
	font-size: 14px !important;
	font-weight: 500 !important;
	line-height: 1.65 !important;
}

.mp-footer__contacts {
	display: grid !important;
	gap: 10px !important;
	margin: 4px 0 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

.mp-footer__contacts li {
	display: grid !important;
	grid-template-columns: 38px minmax(0, 1fr) !important;
	align-items: center !important;
	gap: 12px !important;
	min-height: 40px !important;
	padding: 0 !important;
	border: 0 !important;
	color: var(--mp-brand-muted) !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	line-height: 1.35 !important;
}

.mp-footer__contact-icon {
	display: inline-grid !important;
	place-items: center !important;
	width: 36px !important;
	height: 36px !important;
	min-width: 36px !important;
	border: 1px solid var(--mp-brand-pink-border) !important;
	border-radius: var(--mp-brand-radius-field) !important;
	background: var(--mp-brand-pink-soft) !important;
	color: var(--mp-brand-pink) !important;
	box-shadow: none !important;
}

.mp-footer__contact-icon img {
	width: 18px !important;
	height: 18px !important;
	object-fit: contain !important;
}

.mp-footer__contacts a,
.mp-footer__contacts span,
.mp-footer__nav a {
	color: var(--mp-brand-muted) !important;
	text-decoration: none !important;
}

.mp-footer__nav,
.mp-footer__social {
	display: grid !important;
	align-content: start !important;
	gap: 0 !important;
	min-width: 0 !important;
	text-align: left !important;
}

.mp-footer__nav h3,
.mp-footer__social h3 {
	position: relative !important;
	margin: 0 0 18px !important;
	padding-bottom: 12px !important;
	color: var(--mp-brand-ink) !important;
	font-size: 13px !important;
	font-weight: 900 !important;
	line-height: 1.25 !important;
	letter-spacing: 0.04em !important;
	text-transform: uppercase !important;
}

.mp-footer__nav h3::after,
.mp-footer__social h3::after {
	content: "" !important;
	position: absolute !important;
	left: 0 !important;
	bottom: 0 !important;
	width: 34px !important;
	height: 2px !important;
	border-radius: var(--mp-brand-radius-pill) !important;
	background: var(--mp-brand-pink) !important;
}

.mp-footer__nav a {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 14px !important;
	width: 100% !important;
	min-height: 39px !important;
	padding: 0 !important;
	border-bottom: 1px solid var(--mp-brand-border) !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	line-height: 1.35 !important;
	transition: color 0.18s ease, transform 0.18s ease !important;
}

.mp-footer__nav a::after,
.mp-footer__contacts a::after {
	display: none !important;
}

.mp-footer__nav a b {
	color: var(--mp-brand-pink) !important;
	font-size: 18px !important;
	font-weight: 800 !important;
	line-height: 1 !important;
}

.mp-footer__contacts a:hover,
.mp-footer__contacts a:focus-visible,
.mp-footer__nav a:hover,
.mp-footer__nav a:focus-visible {
	color: var(--mp-brand-pink) !important;
	transform: translateX(2px) !important;
}

.mp-footer__social-list {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 10px !important;
	margin: 0 0 22px !important;
}

.mp-footer__social-list a {
	display: inline-grid !important;
	place-items: center !important;
	width: 44px !important;
	height: 44px !important;
	border: 1px solid var(--mp-brand-border) !important;
	border-radius: var(--mp-brand-radius-field) !important;
	background: var(--mp-brand-surface) !important;
	color: var(--mp-brand-ink) !important;
	box-shadow: var(--mp-brand-shadow-xs) !important;
	transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease !important;
}

.mp-footer__social-list a:hover,
.mp-footer__social-list a:focus-visible {
	color: var(--mp-brand-pink) !important;
	border-color: var(--mp-brand-pink-border) !important;
	box-shadow: var(--mp-brand-shadow-pop) !important;
	transform: translateY(-2px) !important;
}

.mp-footer__social-list img {
	width: 22px !important;
	height: 22px !important;
	object-fit: contain !important;
}

.mp-footer__secure {
	display: grid !important;
	grid-template-columns: 44px minmax(0, 1fr) !important;
	align-items: center !important;
	gap: 14px !important;
	max-width: 285px !important;
	padding: 16px 18px !important;
	border: 1px solid var(--mp-brand-pink-border) !important;
	border-radius: var(--mp-brand-radius-card) !important;
	background: linear-gradient(135deg, var(--mp-brand-pink-soft), var(--mp-brand-surface)) !important;
	box-shadow: var(--mp-brand-shadow-soft) !important;
}

.mp-footer__secure img {
	width: 38px !important;
	height: 38px !important;
	object-fit: contain !important;
}

.mp-footer__secure strong {
	margin: 0 0 3px !important;
	color: var(--mp-brand-ink) !important;
	font-size: 13px !important;
	font-weight: 900 !important;
	line-height: 1.2 !important;
}

.mp-footer__secure p {
	margin: 0 !important;
	color: var(--mp-brand-muted) !important;
	font-size: 12px !important;
	font-weight: 500 !important;
	line-height: 1.35 !important;
}

.mp-footer__bottom {
	width: min(100% - 30px, var(--o2k-container, 1310px)) !important;
	max-width: var(--o2k-container, 1310px) !important;
	margin: 22px auto 0 !important;
	padding: 0 !important;
	border: 0 !important;
	text-align: center !important;
}

.mp-footer__bottom p {
	margin: 0 !important;
	color: var(--mp-brand-muted-soft) !important;
	font-size: 12.5px !important;
	font-weight: 500 !important;
	line-height: 1.5 !important;
}

@media (max-width: 980px) {
	.mp-footer__inner {
		grid-template-columns: 1fr 1fr !important;
		gap: 34px 28px !important;
	}

	.mp-footer__brand,
	.mp-footer__social {
		grid-column: span 2 !important;
	}
}

@media (max-width: 640px) {
	.mp-site-footer {
		margin-top: 48px !important;
		padding: 38px 0 22px !important;
	}

	.mp-footer__inner {
		grid-template-columns: 1fr !important;
		gap: 28px !important;
	}

	.mp-footer__brand,
	.mp-footer__social {
		grid-column: auto !important;
	}

	.mp-footer__logo .o2k-brand__logo,
	.mp-footer__logo img {
		height: 44px !important;
	}

	.mp-footer__secure {
		max-width: 100% !important;
	}
}
/* MetalPic purchase flow */
.o2k-product-builder,
.o2k-cart-page,
.o2k-checkout-page,
.o2k-thankyou-page {
	background: transparent !important;
}

.o2k-cart-shell,
.o2k-cart-layout,
.o2k-checkout-layout {
	gap: clamp(22px, 3vw, 34px) !important;
}

.o2k-cart-items,
.o2k-cart-summary,
.o2k-checkout-card,
.o2k-delivery-methods,
.o2k-checkout-summary {
	padding: clamp(22px, 3vw, 32px) !important;
}

.o2k-cart-item__media img,
.o2k-cart-item__uploaded-image {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
}

.o2k-product-config__group h2,
.o2k-delivery-card__main strong,
.o2k-cart-item h2,
.o2k-cart-total-row strong,
.o2k-checkout-summary .product-name,
.o2k-checkout-summary tfoot th {
	color: var(--mp-brand-ink) !important;
	font-weight: 900 !important;
	letter-spacing: 0 !important;
}

.o2k-product-price,
.o2k-cart-total-row.order-total,
.o2k-checkout-summary .order-total {
	color: var(--mp-brand-ink) !important;
}

.o2k-product-price ins,
.o2k-cart-item__subtotal,
.o2k-cart-total-row.order-total strong,
.o2k-checkout-summary .order-total .amount {
	color: var(--mp-brand-pink) !important;
}

.o2k-checkout-steps {
	max-width: 560px !important;
	margin: 0 auto clamp(28px, 4vw, 42px) !important;
}

.o2k-checkout-step {
	color: var(--mp-brand-muted-soft) !important;
	font-size: 13px !important;
	font-weight: 900 !important;
	letter-spacing: 0 !important;
}

.o2k-checkout-step i {
	width: 24px !important;
	height: 24px !important;
	border: 2px solid var(--mp-brand-border-strong) !important;
	box-shadow: 0 0 0 6px var(--mp-brand-surface) !important;
}

.o2k-checkout-step.is-active,
.o2k-checkout-step.is-done {
	color: var(--mp-brand-pink) !important;
}

.o2k-checkout-step.is-active i,
.o2k-checkout-step.is-done i {
	border-color: var(--mp-brand-pink) !important;
	background: var(--mp-brand-pink) !important;
}

.o2k-cart-layout,
.o2k-checkout-layout {
	align-items: start !important;
}

.o2k-cart-summary,
.o2k-checkout-summary {
	position: sticky !important;
	top: 112px !important;
}

.o2k-cart-item {
	display: grid !important;
	align-items: center !important;
	grid-template-columns: 118px minmax(0, 1fr) auto !important;
	gap: 18px !important;
	padding: 18px !important;
	border: 1px solid var(--mp-brand-border) !important;
	background: var(--mp-brand-surface) !important;
}

.o2k-cart-item__media {
	width: 118px !important;
	height: 118px !important;
	border-radius: var(--mp-brand-radius-card) !important;
	background: var(--mp-brand-surface-soft) !important;
}

.o2k-cart-item dl.variation,
.o2k-cart-item__detail,
.o2k-checkout-summary .variation,
.o2k-checkout-summary .product-name small {
	color: var(--mp-brand-muted) !important;
	font-size: 12.5px !important;
	line-height: 1.45 !important;
}

.o2k-cart-total-row,
.o2k-checkout-summary tfoot tr {
	padding: 12px 0 !important;
	border-bottom: 1px solid var(--mp-brand-border) !important;
}

.o2k-cart-total-row.order-total,
.o2k-checkout-summary .order-total {
	margin-top: 8px !important;
	padding-top: 18px !important;
	border-top: 1px solid var(--mp-brand-border-strong) !important;
	border-bottom: 0 !important;
}

.o2k-checkout-trust-grid {
	gap: 12px !important;
}

.o2k-checkout-card--customer .woocommerce-billing-fields__field-wrapper,
.o2k-checkout-card--customer .o2k-courier-fields,
.o2k-delivery-methods .o2k-courier-fields {
	gap: 14px 16px !important;
}

.o2k-checkout-fields label,
.woocommerce form .form-row label {
	margin-bottom: 7px !important;
	color: var(--mp-brand-ink) !important;
	font-size: 11px !important;
	font-weight: 900 !important;
	letter-spacing: 0.04em !important;
	text-transform: uppercase !important;
}

.o2k-checkout-fields input.input-text,
.o2k-checkout-fields textarea,
.o2k-checkout-fields select,
.o2k-checkout-fields .select2-container--default .select2-selection--single,
.o2k-delivery-methods .woo_lithuaniapost_lpexpress_terminal_id,
.o2k-delivery-methods .select2-container--default .select2-selection--single {
	min-height: 48px !important;
	padding: 12px 14px !important;
	border: 1px solid var(--mp-brand-border) !important;
	border-radius: var(--mp-brand-radius-field) !important;
	background: var(--mp-brand-surface-soft) !important;
	color: var(--mp-brand-ink) !important;
	font-size: 14px !important;
	font-weight: 600 !important;
}

.o2k-delivery-methods__grid,
.o2k-checkout-card--payment .paysera-radio-control {
	gap: 12px !important;
}

.o2k-delivery-card,
.o2k-checkout-card--payment .paysera-radio-control .radio-control__option,
.o2k-checkout-card--payment .paysera-radio-control .radio-control__option-layout,
.o2k-checkout-card--payment .paysera-radio-control .radio-control__option-group {
	min-height: 74px !important;
	border: 1px solid var(--mp-brand-border) !important;
	border-radius: var(--mp-brand-radius-card) !important;
	background: var(--mp-brand-surface) !important;
	box-shadow: none !important;
}

.o2k-delivery-card.is-selected,
.o2k-delivery-method-item > input.shipping_method:checked + .o2k-delivery-card,
.o2k-checkout-card--payment .paysera-radio-control .radio-control__option:has(input[type="radio"]:checked),
.o2k-checkout-card--payment .paysera-radio-control .radio-control__option:hover {
	border-color: var(--mp-brand-pink) !important;
	background: var(--mp-brand-pink-soft) !important;
	box-shadow: var(--mp-brand-shadow-focus) !important;
}

.o2k-checkout-trust-card {
	border-radius: var(--mp-brand-radius-card) !important;
	background: var(--mp-brand-surface-soft) !important;
	box-shadow: none !important;
}

@media (max-width: 980px) {
	.o2k-product-builder__inner,
	.o2k-cart-layout,
	.o2k-checkout-layout {
		grid-template-columns: 1fr !important;
	}

	.o2k-cart-summary,
	.o2k-checkout-summary {
		position: static !important;
	}
}

@media (max-width: 680px) {
	.o2k-product-preview__frame,
	.o2k-product-config,
	.o2k-cart-items,
	.o2k-cart-summary,
	.o2k-checkout-card,
	.o2k-delivery-methods,
	.o2k-checkout-summary {
		padding: 20px 16px !important;
	}

	.o2k-delivery-methods__grid,
	.o2k-checkout-card--payment .paysera-radio-control,
	.o2k-checkout-trust-grid {
		grid-template-columns: 1fr !important;
	}

	.o2k-cart-item {
		grid-template-columns: 1fr !important;
	}

	.o2k-cart-item__media {
		width: 100% !important;
		height: auto !important;
		aspect-ratio: 1 / 1 !important;
	}

	.o2k-checkout-steps {
		max-width: 100% !important;
		gap: 8px !important;
	}

	.o2k-checkout-step {
		font-size: 11px !important;
	}
}

/* MetalPic purchase flow compact media/payment */
.o2k-review-product__image {
	display: block !important;
	flex: 0 0 58px !important;
	width: 58px !important;
	height: 58px !important;
	overflow: hidden !important;
	border: 1px solid var(--mp-brand-border) !important;
	border-radius: var(--mp-brand-radius-card) !important;
	background:
		linear-gradient(135deg, rgba(255, 47, 147, 0.08), rgba(255, 255, 255, 0.92)) !important;
	box-shadow: none !important;
}

.o2k-review-product__image img,
.o2k-checkout-summary .o2k-review-product__image img {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	object-fit: cover !important;
	border-radius: inherit !important;
}

.o2k-checkout-summary .product-name {
	display: flex !important;
	align-items: flex-start !important;
	gap: 14px !important;
	min-width: 0 !important;
}

.o2k-checkout-summary .o2k-review-product__content {
	display: grid !important;
	gap: 5px !important;
	min-width: 0 !important;
}

.o2k-checkout-summary .o2k-review-product__content strong {
	font-size: 13px !important;
	line-height: 1.2 !important;
}

.o2k-checkout-summary .product-total {
	white-space: nowrap !important;
}

.o2k-checkout-card--payment {
	padding-bottom: 24px !important;
}

.o2k-checkout-card--payment .paysera-radio-control {
	gap: 10px !important;
}

.o2k-checkout-card--payment .paysera-radio-control .radio-control__option,
.o2k-checkout-card--payment .paysera-radio-control .radio-control__option-layout,
.o2k-checkout-card--payment .paysera-radio-control .radio-control__option-group {
	min-height: 62px !important;
}

.o2k-checkout-card--payment .paysera-radio-control .radio-control__option-layout,
.o2k-checkout-card--payment .paysera-radio-control .radio-control__option-group {
	padding: 11px 13px !important;
}

.o2k-checkout-card--payment .paysera-radio-control .radio-control__icon {
	width: 30px !important;
	height: 30px !important;
}

.o2k-checkout-card--payment .paysera-radio-control .radio-control__label {
	font-size: 12px !important;
	line-height: 1.1 !important;
}

.o2k-checkout-card--payment .paysera-customer-consent,
.o2k-checkout-card--payment .paysera-customer-consent__text {
	margin-top: 10px !important;
	font-size: 10.5px !important;
	line-height: 1.45 !important;
}

.o2k-checkout-card--payment .woocommerce-terms-and-conditions-wrapper {
	margin-top: 14px !important;
	padding-top: 14px !important;
	border-top: 1px solid var(--mp-brand-border) !important;
}

.o2k-checkout-card--payment #place_order,
.o2k-checkout-card--payment button[name="woocommerce_checkout_place_order"] {
	margin-top: 12px !important;
}

.o2k-cart-item__media {
	position: relative !important;
	overflow: hidden !important;
}

.o2k-cart-item__media::before {
	content: "" !important;
	position: absolute !important;
	inset: 0 !important;
	background: linear-gradient(135deg, rgba(255, 47, 147, 0.08), rgba(255, 255, 255, 0)) !important;
	pointer-events: none !important;
}

.o2k-cart-item__media img {
	position: relative !important;
	z-index: 1 !important;
}

@media (min-width: 981px) {
	.o2k-checkout-page .o2k-checkout-layout {
		grid-template-columns: minmax(0, 640px) minmax(300px, 350px) !important;
		justify-content: center !important;
	}

	.o2k-cart-page:not(.o2k-checkout-page) .o2k-cart-layout {
		grid-template-columns: minmax(0, 720px) minmax(300px, 360px) !important;
		justify-content: center !important;
	}
}

@media (max-width: 680px) {
	.o2k-review-product__image {
		width: 52px !important;
		height: 52px !important;
		flex-basis: 52px !important;
	}

	.o2k-checkout-summary .product-name {
		gap: 10px !important;
	}

	.o2k-checkout-card--payment .paysera-radio-control .radio-control__option,
	.o2k-checkout-card--payment .paysera-radio-control .radio-control__option-layout,
	.o2k-checkout-card--payment .paysera-radio-control .radio-control__option-group {
		min-height: 58px !important;
	}
}

/* MetalPic product top layout */
.single-product .o2k-product-builder__inner,
.o2k-product-builder .o2k-product-builder__inner {
	gap: 36px !important;
	align-items: stretch !important;
}

.single-product .o2k-product-preview__frame,
.o2k-product-builder .o2k-product-preview__frame {
	display: grid !important;
	place-items: center !important;
	min-height: 620px !important;
	padding: 22px !important;
}

.single-product .o2k-product-preview__frame img,
.single-product .o2k-product-preview__placeholder,
.o2k-product-builder .o2k-product-preview__frame img,
.o2k-product-builder .o2k-product-preview__placeholder {
	width: min(100%, 495px) !important;
	height: 100% !important;
	max-height: 620px !important;
	aspect-ratio: 0.72 !important;
	object-fit: cover !important;
}

.single-product .o2k-product-config,
.o2k-product-builder .o2k-product-config {
	display: flex !important;
	flex-direction: column !important;
	gap: 0 !important;
	padding: 28px 34px 24px !important;
}

.single-product .o2k-product-config__group,
.o2k-product-builder .o2k-product-config__group {
	margin-bottom: 18px !important;
	padding: 0 !important;
	border-bottom: 0 !important;
}

.single-product .o2k-product-order-row,
.o2k-product-builder .o2k-product-order-row {
	display: grid !important;
	grid-template-columns: 154px minmax(0, 1fr) !important;
	gap: 12px !important;
	align-items: stretch !important;
	margin: 10px 0 14px !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
}

.single-product .o2k-upload-box,
.o2k-product-builder .o2k-upload-box {
	min-height: 82px !important;
	padding: 10px 14px !important;
}

.single-product .o2k-product-price,
.o2k-product-builder .o2k-product-price {
	min-height: 82px !important;
}

@media (max-width: 720px) {
	.single-product .o2k-product-order-row,
	.o2k-product-builder .o2k-product-order-row {
		grid-template-columns: minmax(96px, 0.75fr) minmax(0, 1.25fr) !important;
		gap: 8px !important;
	}

	.single-product .o2k-upload-box,
	.o2k-product-builder .o2k-upload-box {
		min-height: 74px !important;
		padding: 8px 10px !important;
	}
}

@media (max-width: 640px) {
	.single-product .o2k-product-preview__frame,
	.o2k-product-builder .o2k-product-preview__frame {
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		min-height: 0 !important;
		padding: 14px !important;
	}

	.single-product .o2k-product-preview__frame img,
	.single-product .o2k-product-preview__placeholder,
	.o2k-product-builder .o2k-product-preview__frame img,
	.o2k-product-builder .o2k-product-preview__placeholder {
		width: 100% !important;
		height: clamp(340px, 88vw, 378px) !important;
		max-height: 378px !important;
		aspect-ratio: auto !important;
		object-fit: cover !important;
	}

	.single-product .o2k-product-config,
	.o2k-product-builder .o2k-product-config {
		padding: 24px 20px !important;
	}
}

/* MetalPic mobile product spacing */
@media (max-width: 768px) {
	.single-product .o2k-product-builder__inner,
	.o2k-product-builder .o2k-product-builder__inner {
		row-gap: 16px !important;
		gap: 16px !important;
	}

	.single-product .o2k-product-preview,
	.o2k-product-builder .o2k-product-preview {
		gap: 10px !important;
	}

	.single-product .mp-product-info-card,
	.o2k-product-builder .mp-product-info-card {
		margin-top: 12px !important;
		padding: 12px !important;
	}

}

@media (max-width: 420px) {
	.single-product .o2k-product-builder__inner,
	.o2k-product-builder .o2k-product-builder__inner {
		row-gap: 12px !important;
		gap: 12px !important;
	}

}

/* MetalPic mobile checkout/cart typography */
@media (max-width: 680px) {
	.o2k-cart-page .o2k-cart-shell {
		padding-inline: 14px !important;
	}

	.o2k-cart-page .o2k-cart-items,
	.o2k-cart-page .o2k-cart-summary,
	.o2k-cart-page .o2k-checkout-card,
	.o2k-cart-page .o2k-delivery-methods,
	.o2k-cart-page .o2k-checkout-summary {
		padding: 16px !important;
		border-radius: 14px !important;
	}

	.o2k-cart-page .o2k-cart-layout,
	.o2k-cart-page .o2k-checkout-layout,
	.o2k-cart-page .o2k-checkout-customer,
	.o2k-cart-page .o2k-checkout-fields {
		gap: 14px !important;
	}

	.o2k-cart-page .o2k-cart-item {
		grid-template-columns: minmax(0, 1fr) auto !important;
		gap: 10px 12px !important;
		padding: 14px !important;
		border-radius: 14px !important;
	}

	.o2k-cart-page .o2k-cart-item__media {
		width: 58px !important;
		height: 58px !important;
		aspect-ratio: 1 / 1 !important;
		grid-row: span 2 !important;
	}

	.o2k-cart-page .o2k-cart-item__title,
	.o2k-cart-page .o2k-cart-item h2 {
		margin: 0 34px 8px 0 !important;
		font-size: 20px !important;
		line-height: 1.05 !important;
		letter-spacing: 0 !important;
	}

	.o2k-cart-page .o2k-cart-item dl.variation,
	.o2k-cart-page .o2k-cart-item__detail,
	.o2k-cart-page .o2k-cart-item dl.variation dt,
	.o2k-cart-page .o2k-cart-item dl.variation dd,
	.o2k-cart-page .o2k-cart-item dl.variation p {
		font-size: 12px !important;
		line-height: 1.35 !important;
	}

	.o2k-cart-page .o2k-cart-item__subtotal {
		font-size: 13px !important;
		line-height: 1 !important;
	}

	.o2k-cart-page .o2k-cart-item__remove {
		width: 28px !important;
		height: 28px !important;
		top: 12px !important;
		right: 12px !important;
		font-size: 18px !important;
	}

	.o2k-cart-page .o2k-cart-promo {
		padding: 18px !important;
		border-radius: 14px !important;
	}

	.o2k-cart-page .o2k-cart-promo span {
		font-size: 12px !important;
		line-height: 1 !important;
		padding: 8px 14px !important;
	}

	.o2k-cart-page .o2k-cart-promo h2 {
		max-width: 260px !important;
		margin: 16px 0 8px !important;
		font-size: 24px !important;
		line-height: 1.05 !important;
		letter-spacing: 0 !important;
	}

	.o2k-cart-page .o2k-cart-promo p {
		max-width: 280px !important;
		font-size: 14px !important;
		line-height: 1.35 !important;
	}

	.o2k-cart-page .o2k-cart-promo .o2k-button,
	.o2k-cart-page .o2k-cart-promo .o2k-button--outline {
		min-height: 46px !important;
		margin-top: 16px !important;
		font-size: 13px !important;
	}

	.o2k-cart-page .o2k-cart-summary h2,
	.o2k-cart-page .o2k-checkout-summary h2,
	.o2k-cart-page .o2k-checkout-card h3,
	.o2k-cart-page .o2k-delivery-methods > h3 {
		margin-bottom: 14px !important;
		font-size: 24px !important;
		line-height: 1.08 !important;
		letter-spacing: 0 !important;
	}

	.o2k-cart-page .o2k-checkout-summary .woocommerce-checkout-review-order-table tr.cart_item {
		gap: 10px !important;
		padding-bottom: 14px !important;
	}

	.o2k-cart-page .o2k-checkout-summary tfoot {
		gap: 10px !important;
		padding-top: 14px !important;
	}

	.o2k-cart-page .o2k-checkout-summary tfoot tr {
		padding: 8px 0 !important;
		font-size: 13px !important;
	}

	.o2k-cart-page .o2k-checkout-summary .order-total {
		margin-top: 6px !important;
		padding-top: 14px !important;
	}

	.o2k-cart-page .o2k-checkout-summary .order-total th,
	.o2k-cart-page .o2k-checkout-summary .order-total td {
		font-size: 20px !important;
		line-height: 1.05 !important;
	}

	.o2k-cart-page .o2k-checkout-summary .order-total .amount {
		font-size: 30px !important;
		line-height: 1 !important;
	}

	.o2k-cart-page .o2k-checkout-summary #place_order,
	.o2k-cart-page .o2k-cart-checkout .checkout-button,
	.o2k-cart-page .wc-proceed-to-checkout .checkout-button {
		min-height: 46px !important;
		font-size: 14px !important;
	}
}

@media (max-width: 390px) {
	.o2k-cart-page .o2k-cart-item__title,
	.o2k-cart-page .o2k-cart-item h2 {
		font-size: 18px !important;
	}

	.o2k-cart-page .o2k-cart-promo h2,
	.o2k-cart-page .o2k-cart-summary h2,
	.o2k-cart-page .o2k-checkout-summary h2,
	.o2k-cart-page .o2k-checkout-card h3,
	.o2k-cart-page .o2k-delivery-methods > h3 {
		font-size: 22px !important;
	}
}

/* MetalPic mobile cart density */
@media (max-width: 680px) {
	.o2k-cart-page:not(.o2k-checkout-page) .o2k-cart-items {
		gap: 12px !important;
		padding: 12px !important;
	}

	.o2k-cart-page:not(.o2k-checkout-page) .o2k-cart-item {
		display: grid !important;
		grid-template-columns: 68px minmax(0, 1fr) auto !important;
		grid-template-areas:
			"media body price"
			"media body price" !important;
		align-items: start !important;
		min-height: 104px !important;
		padding: 12px !important;
		gap: 10px !important;
		border-radius: 14px !important;
	}

	.o2k-cart-page:not(.o2k-checkout-page) .o2k-cart-item__media {
		grid-area: media !important;
		width: 68px !important;
		height: 68px !important;
		aspect-ratio: 1 / 1 !important;
		border-radius: 13px !important;
	}

	.o2k-cart-page:not(.o2k-checkout-page) .o2k-cart-item__body {
		grid-area: body !important;
		min-width: 0 !important;
	}

	.o2k-cart-page:not(.o2k-checkout-page) .o2k-cart-item__title,
	.o2k-cart-page:not(.o2k-checkout-page) .o2k-cart-item h2 {
		margin: 0 0 8px !important;
		font-size: 15px !important;
		line-height: 1.15 !important;
		letter-spacing: 0 !important;
		text-transform: none !important;
	}

	.o2k-cart-page:not(.o2k-checkout-page) .o2k-cart-item__title a,
	.o2k-cart-page:not(.o2k-checkout-page) .o2k-cart-item h2 a {
		font-size: inherit !important;
		line-height: inherit !important;
	}

	.o2k-cart-page:not(.o2k-checkout-page) .o2k-cart-item dl.variation {
		gap: 2px !important;
	}

	.o2k-cart-page:not(.o2k-checkout-page) .o2k-cart-item__detail,
	.o2k-cart-page:not(.o2k-checkout-page) .o2k-cart-item dl.variation dt,
	.o2k-cart-page:not(.o2k-checkout-page) .o2k-cart-item dl.variation dd,
	.o2k-cart-page:not(.o2k-checkout-page) .o2k-cart-item dl.variation p {
		font-size: 10.5px !important;
		line-height: 1.25 !important;
	}

	.o2k-cart-page:not(.o2k-checkout-page) .o2k-cart-item__subtotal {
		grid-area: price !important;
		align-self: center !important;
		font-size: 12px !important;
		line-height: 1 !important;
		white-space: nowrap !important;
	}

	.o2k-cart-page:not(.o2k-checkout-page) .o2k-cart-item__remove {
		width: 24px !important;
		height: 24px !important;
		top: 10px !important;
		right: 10px !important;
		font-size: 16px !important;
	}

	.o2k-cart-page:not(.o2k-checkout-page) .o2k-cart-promo {
		display: grid !important;
		grid-template-columns: minmax(0, 1fr) !important;
		padding: 14px !important;
		border-radius: 14px !important;
		background: linear-gradient(135deg, rgba(255, 47, 147, 0.06), rgba(255, 255, 255, 0.96)) !important;
	}

	.o2k-cart-page:not(.o2k-checkout-page) .o2k-cart-promo span {
		justify-self: start !important;
		padding: 6px 12px !important;
		font-size: 10px !important;
		line-height: 1 !important;
	}

	.o2k-cart-page:not(.o2k-checkout-page) .o2k-cart-promo h2 {
		max-width: 100% !important;
		margin: 12px 0 6px !important;
		font-size: 19px !important;
		line-height: 1.08 !important;
	}

	.o2k-cart-page:not(.o2k-checkout-page) .o2k-cart-promo p {
		max-width: 100% !important;
		margin: 0 !important;
		font-size: 12px !important;
		line-height: 1.35 !important;
	}

	.o2k-cart-page:not(.o2k-checkout-page) .o2k-cart-promo .o2k-button,
	.o2k-cart-page:not(.o2k-checkout-page) .o2k-cart-promo .o2k-button--outline {
		min-height: 40px !important;
		margin-top: 12px !important;
		font-size: 12px !important;
		border-radius: 10px !important;
	}

	.o2k-cart-page:not(.o2k-checkout-page) .o2k-cart-summary h2,
	.o2k-cart-page:not(.o2k-checkout-page) .o2k-checkout-summary h2 {
		font-size: 21px !important;
		line-height: 1.1 !important;
	}

	.o2k-cart-page:not(.o2k-checkout-page) .o2k-checkout-summary .order-total th,
	.o2k-cart-page:not(.o2k-checkout-page) .o2k-checkout-summary .order-total td,
	.o2k-cart-page:not(.o2k-checkout-page) .o2k-cart-total-row.order-total strong {
		font-size: 18px !important;
	}

	.o2k-cart-page:not(.o2k-checkout-page) .o2k-checkout-summary .order-total .amount,
	.o2k-cart-page:not(.o2k-checkout-page) .o2k-cart-total-row.order-total .amount {
		font-size: 26px !important;
	}
}

@media (max-width: 390px) {
	.o2k-cart-page:not(.o2k-checkout-page) .o2k-cart-item {
		grid-template-columns: 62px minmax(0, 1fr) auto !important;
	}

	.o2k-cart-page:not(.o2k-checkout-page) .o2k-cart-item__media {
		width: 62px !important;
		height: 62px !important;
	}

	.o2k-cart-page:not(.o2k-checkout-page) .o2k-cart-item__title,
	.o2k-cart-page:not(.o2k-checkout-page) .o2k-cart-item h2 {
		font-size: 14px !important;
	}

	.o2k-cart-page:not(.o2k-checkout-page) .o2k-cart-promo h2 {
		font-size: 18px !important;
	}

	.o2k-checkout-card--payment .paysera-radio-control .radio-control__label {
		font-size: 9.8px !important;
	}
}

/* MetalPic mobile Paysera labels */
@media (max-width: 680px) {
	.o2k-checkout-page .o2k-delivery-methods .woo_lithuaniapost_lpexpress_terminal_id,
	.o2k-checkout-page .o2k-delivery-methods .select2-container--default .select2-selection--single {
		font-size: 12px !important;
		font-weight: 800 !important;
	}

	.o2k-checkout-page .o2k-delivery-methods .select2-container--default .select2-selection--single .select2-selection__rendered {
		font-size: 12px !important;
		font-weight: 800 !important;
		line-height: 44px !important;
		padding-right: 34px !important;
	}

	.o2k-checkout-card--payment .payment_box,
	.o2k-checkout-card--payment #paysera-payment-element,
	.o2k-checkout-card--payment .paysera-payment-methods,
	.o2k-checkout-card--payment .paysera-payment-methods__list,
	.o2k-checkout-card--payment .paysera-radio-control,
	.o2k-checkout-card--payment .paysera-radio-control .radio-control__option,
	.o2k-checkout-card--payment .paysera-radio-control .radio-control__option-layout,
	.o2k-checkout-card--payment .paysera-radio-control .radio-control__option-group {
		background: #fff !important;
		background-color: #fff !important;
		box-shadow: none !important;
	}

	.o2k-checkout-card--payment .paysera-customer-consent,
	.o2k-checkout-card--payment .paysera-customer-consent__text {
		display: none !important;
	}

	.o2k-checkout-card--payment .paysera-radio-control {
		display: grid !important;
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 10px !important;
		margin: 0 !important;
		padding: 0 !important;
	}

	.o2k-checkout-card--payment .paysera-radio-control .radio-control__option {
		display: flex !important;
		align-items: center !important;
		min-height: 58px !important;
		padding: 0 10px !important;
		border-radius: 10px !important;
		overflow: hidden !important;
	}

	.o2k-checkout-card--payment .paysera-radio-control .radio-control__option-layout,
	.o2k-checkout-card--payment .paysera-radio-control .radio-control__option-group,
	.o2k-checkout-card--payment .paysera-radio-control .radio-control__option-layout .radio-control__option-group {
		display: flex !important;
		align-items: center !important;
		justify-content: flex-start !important;
		gap: 8px !important;
		width: 100% !important;
		min-height: 0 !important;
		padding: 0 !important;
		border-radius: 0 !important;
		border: 0 !important;
		box-shadow: none !important;
		background: transparent !important;
	}

	.o2k-checkout-card--payment .paysera-radio-control .radio-control__icon {
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		flex: 0 0 24px !important;
		width: 24px !important;
		height: 24px !important;
		margin: 0 !important;
		border: 0 !important;
		background: transparent !important;
		box-shadow: none !important;
	}

	.o2k-checkout-card--payment .paysera-radio-control .radio-control__icon img,
	.o2k-checkout-card--payment .paysera-radio-control .radio-control__icon svg {
		display: block !important;
		max-width: 24px !important;
		max-height: 24px !important;
	}

	.o2k-checkout-card--payment .paysera-radio-control .radio-control__label,
	.o2k-checkout-card--payment .paysera-radio-control .radio-control__text {
		display: block !important;
		flex: 1 1 auto !important;
		min-width: 0 !important;
		width: auto !important;
		color: var(--mp-brand-ink) !important;
		font-size: 10.5px !important;
		font-weight: 900 !important;
		line-height: 1.1 !important;
		text-align: left !important;
		white-space: nowrap !important;
		overflow: hidden !important;
		text-overflow: ellipsis !important;
	}

	.o2k-checkout-card--payment .paysera-radio-control .radio-control__option-group > span:not(.radio-control__icon),
	.o2k-checkout-card--payment .paysera-radio-control .radio-control__option-layout > span:not(.radio-control__icon) {
		display: block !important;
		min-width: 0 !important;
		color: var(--mp-brand-ink) !important;
		font-size: 10.5px !important;
		font-weight: 900 !important;
		line-height: 1.1 !important;
		opacity: 1 !important;
		visibility: visible !important;
		white-space: nowrap !important;
		overflow: hidden !important;
		text-overflow: ellipsis !important;
	}
}

/* MetalPic mobile delivery layout */
@media (max-width: 680px) {
	.o2k-checkout-page .o2k-delivery-methods__grid {
		display: grid !important;
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		justify-content: start !important;
		gap: 16px !important;
		margin: 0 !important;
		padding: 0 !important;
		list-style: none !important;
	}

	.o2k-checkout-page .o2k-delivery-method-item {
		display: contents !important;
	}

	.o2k-checkout-page .o2k-delivery-card {
		position: relative !important;
		order: 1 !important;
		display: grid !important;
		grid-template-areas:
			"carrier"
			"type"
			"price" !important;
		grid-template-columns: 1fr !important;
		grid-template-rows: auto auto auto !important;
		align-content: center !important;
		align-items: start !important;
		justify-content: stretch !important;
		justify-items: start !important;
		row-gap: 8px !important;
		min-width: 0 !important;
		min-height: 116px !important;
		padding: 17px 18px !important;
		text-align: left !important;
	}

	.o2k-checkout-page .o2k-delivery-card__main {
		display: contents !important;
	}

	.o2k-checkout-page .o2k-delivery-card__main strong {
		grid-area: carrier !important;
		align-self: center !important;
		justify-self: start !important;
		order: initial !important;
		margin: 0 !important;
		color: var(--mp-brand-ink) !important;
		font-size: 13px !important;
		font-weight: 900 !important;
		letter-spacing: 0 !important;
		line-height: 1.12 !important;
		text-align: left !important;
		text-transform: none !important;
		white-space: normal !important;
	}

	.o2k-checkout-page .o2k-delivery-card__main small {
		grid-area: type !important;
		display: block !important;
		justify-self: stretch !important;
		order: initial !important;
		width: 100% !important;
		margin: 0 !important;
		padding-bottom: 8px !important;
		border-bottom: 1px solid var(--mp-brand-border) !important;
		color: var(--mp-brand-muted-soft) !important;
		font-size: 10px !important;
		font-weight: 900 !important;
		letter-spacing: 0.04em !important;
		line-height: 1.12 !important;
		text-align: left !important;
		text-transform: uppercase !important;
		white-space: normal !important;
	}

	.o2k-checkout-page .o2k-delivery-card__price {
		grid-area: price !important;
		justify-self: start !important;
		align-self: start !important;
		order: initial !important;
		margin: 0 !important;
		color: var(--mp-brand-pink) !important;
		font-size: 18px !important;
		font-weight: 900 !important;
		letter-spacing: 0 !important;
		line-height: 1 !important;
		text-align: left !important;
		white-space: nowrap !important;
	}

	.o2k-checkout-page .o2k-delivery-method-item__extras {
		order: 2 !important;
		grid-column: 1 / -1 !important;
		width: 100% !important;
		max-width: 100% !important;
		margin-top: 14px !important;
	}
}

@media (max-width: 390px) {
	.o2k-checkout-page .o2k-delivery-methods__grid {
		gap: 10px !important;
	}

	.o2k-checkout-page .o2k-delivery-card {
		min-height: 112px !important;
		padding: 16px !important;
	}
}

/* MetalPic CTA states */
.o2k-product-cart .single_add_to_cart_button:disabled,
.o2k-product-cart .single_add_to_cart_button.disabled,
.o2k-product-cart .single_add_to_cart_button.is-disabled-by-upload,
.o2k-product-cart .single_add_to_cart_button[aria-disabled="true"] {
	border-color: var(--mp-brand-border-strong) !important;
	background: var(--mp-brand-disabled-bg) !important;
	color: var(--mp-brand-disabled-text) !important;
	box-shadow: none !important;
	cursor: not-allowed !important;
	opacity: 1 !important;
	transform: none !important;
}

.o2k-product-cart .single_add_to_cart_button:not(:disabled):not(.disabled):not(.is-disabled-by-upload):not([aria-disabled="true"]) {
	border-color: transparent !important;
	background: var(--mp-brand-pink) !important;
	color: #fff !important;
	box-shadow: var(--mp-brand-shadow-pop) !important;
	cursor: pointer !important;
}

.o2k-product-cart .single_add_to_cart_button:disabled:hover,
.o2k-product-cart .single_add_to_cart_button.disabled:hover,
.o2k-product-cart .single_add_to_cart_button.is-disabled-by-upload:hover,
.o2k-product-cart .single_add_to_cart_button[aria-disabled="true"]:hover {
	border-color: var(--mp-brand-border-strong) !important;
	background: var(--mp-brand-disabled-bg) !important;
	color: var(--mp-brand-disabled-text) !important;
	box-shadow: none !important;
	transform: none !important;
}

.o2k-cart-promo span {
	border: 1px solid rgba(11, 18, 32, 0.12) !important;
	background: var(--mp-brand-ink) !important;
	color: #fff !important;
	box-shadow: none !important;
}

/* Unified checkout validation errors */
.o2k-checkout-page .checkout-inline-error-message,
.o2k-checkout-page .o2k-inline-error-message,
.o2k-checkout-page .o2k-block-error-message,
.o2k-checkout-page .o2k-paysera-bank-error,
.o2k-checkout-page .woocommerce-error li {
	display: block !important;
	margin: 8px 0 0 !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	color: var(--mp-brand-pink) !important;
	font-family: inherit !important;
	font-size: 12px !important;
	font-weight: 800 !important;
	letter-spacing: 0 !important;
	line-height: 1.35 !important;
	list-style: none !important;
	text-transform: none !important;
}

.o2k-checkout-page .checkout-inline-error-message::before,
.o2k-checkout-page .o2k-inline-error-message::before,
.o2k-checkout-page .o2k-block-error-message::before,
.o2k-checkout-page .o2k-paysera-bank-error::before,
.o2k-checkout-page .woocommerce-error::before,
.o2k-checkout-page .woocommerce-error li::before {
	display: none !important;
	content: none !important;
}

.o2k-checkout-page .woocommerce-error {
	margin: 8px 0 0 !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	list-style: none !important;
}

.o2k-checkout-page .woocommerce-error a,
.o2k-checkout-page .checkout-inline-error-message a,
.o2k-checkout-page .o2k-inline-error-message a {
	color: var(--mp-brand-pink) !important;
	font: inherit !important;
	text-decoration: underline !important;
	text-underline-offset: 2px !important;
}

.o2k-checkout-card--payment .o2k-paysera-bank-error {
	margin-top: 10px !important;
}

.o2k-checkout-card--payment .woocommerce-terms-and-conditions-wrapper .checkout-inline-error-message,
.o2k-checkout-card--payment .woocommerce-terms-and-conditions-wrapper .o2k-inline-error-message {
	margin: 8px 0 0 28px !important;
}

.o2k-delivery-methods .woo_lithuaniapost_lpexpress_terminal_select_container .checkout-inline-error-message,
.o2k-delivery-methods .woo_lithuaniapost_lpexpress_terminal_select_container .o2k-inline-error-message {
	margin-top: 8px !important;
}

.o2k-checkout-page #billing_phone_field .o2k-phone-country-hint,
.o2k-checkout-page #billing_phone_field .description:not(.checkout-inline-error-message),
.o2k-checkout-page #billing_phone_field .o2k-field-hint {
	display: none !important;
}

/* About page */
.mp-about-page {
	--mp-about-ink: #111827;
	--mp-about-muted: #5d667a;
	--mp-about-pink: #f72b8a;
	--mp-about-border: #e8ecf4;
	background: transparent;
	color: var(--mp-about-ink);
	font-family: var(--mp-font-primary, inherit);
}

.mp-about-section {
	padding: clamp(124px, 9.5vw, 148px) 20px clamp(56px, 6.5vw, 88px);
}

.mp-about-shell {
	display: grid;
	grid-template-columns: minmax(300px, 0.82fr) minmax(420px, 1.18fr);
	gap: clamp(28px, 4.5vw, 58px);
	width: min(1120px, 100%);
	margin: 0 auto;
	align-items: center;
}

.mp-about-shell > .o2k-breadcrumbs {
	grid-column: 1 / -1;
	margin: 0 0 clamp(12px, 1.8vw, 20px);
}

.mp-about-copy h1 {
	margin: 0;
	color: var(--mp-about-ink);
	font-size: clamp(36px, 3.8vw, 48px);
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.02;
}

.mp-about-copy h1 span,
.mp-about-copy h1 strong {
	display: inline;
}

.mp-about-copy h1 strong {
	color: var(--mp-about-pink);
}

.mp-about-lead {
	max-width: 500px;
	margin: 18px 0 0;
	color: var(--mp-about-muted);
	font-size: clamp(15px, 1.25vw, 17px);
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.45;
}

.mp-about-line {
	width: 48px;
	height: 2px;
	margin: 24px 0 26px;
	border-radius: 999px;
	background: var(--mp-about-pink);
}

.mp-about-text {
	display: grid;
	gap: 20px;
	max-width: 500px;
}

.mp-about-text p {
	margin: 0;
	color: var(--mp-about-ink);
	font-size: clamp(15px, 1.15vw, 16px);
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.65;
}

.mp-about-cta {
	display: inline-flex;
	min-width: 280px;
	align-items: center;
	justify-content: center;
	gap: 22px;
	margin-top: 30px;
	padding: 17px 28px;
	border-radius: 7px;
	background: var(--mp-about-pink);
	color: #fff;
	font-size: clamp(15px, 1.2vw, 17px);
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1;
	text-decoration: none;
	box-shadow: 0 14px 28px rgba(247, 43, 138, 0.2);
	transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.mp-about-cta:hover {
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 18px 34px rgba(247, 43, 138, 0.24);
}

.mp-about-cta svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.mp-about-gallery {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.mp-about-gallery__item {
	overflow: hidden;
	min-height: 170px;
	margin: 0;
	border-radius: 12px;
	background: #f6f8fc;
	box-shadow: 0 12px 30px rgba(19, 26, 43, 0.08);
}

.mp-about-gallery__item--large {
	grid-column: 1 / -1;
	min-height: 280px;
}

.mp-about-gallery__item img,
.mp-about-gallery__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	min-height: inherit;
}

.mp-about-gallery__item img {
	object-fit: cover;
}

.mp-about-gallery__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px dashed rgba(247, 43, 138, 0.34);
	background: linear-gradient(145deg, #fff7fb 0%, #f7f9fd 100%);
	color: var(--mp-about-muted);
	font-size: 14px;
	font-weight: 800;
	text-align: center;
}

.mp-about-stats {
	display: grid;
	grid-column: 1 / -1;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	width: min(940px, 100%);
	margin: clamp(30px, 4vw, 46px) auto 0;
	padding: 20px 22px;
	border: 1px solid rgba(247, 43, 138, 0.14);
	border-radius: 14px;
	background:
		linear-gradient(135deg, rgba(247, 43, 138, 0.1) 0%, rgba(255, 255, 255, 0.96) 44%, rgba(247, 43, 138, 0.08) 100%),
		#fff;
	box-shadow: 0 12px 30px rgba(247, 43, 138, 0.08);
}

.mp-about-stat {
	display: flex;
	min-height: 56px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 0 18px;
	text-align: center;
	border-right: 1px solid rgba(247, 43, 138, 0.18);
}

.mp-about-stat:last-child {
	border-right: 0;
}

.mp-about-stat strong {
	display: block;
	color: var(--mp-about-pink);
	font-size: clamp(22px, 1.9vw, 28px);
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.05;
}

.mp-about-stat span {
	display: block;
	margin-top: 7px;
	color: #3c4353;
	font-size: clamp(12px, 0.95vw, 14px);
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.3;
}

@media (max-width: 980px) {
	.mp-about-section {
		padding: 118px 18px 52px;
	}

	.mp-about-shell {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.mp-about-gallery__item--large {
		min-height: 240px;
	}

	.mp-about-gallery__item {
		min-height: 145px;
	}

	.mp-about-stats {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		margin-top: 24px;
		padding: 16px;
	}

	.mp-about-stat:nth-child(2n) {
		border-right: 0;
	}

	.mp-about-stat:nth-child(-n+2) {
		padding-bottom: 16px;
		border-bottom: 1px solid rgba(247, 43, 138, 0.14);
	}

	.mp-about-stat:nth-child(n+3) {
		padding-top: 16px;
	}
}

@media (max-width: 640px) {
	.mp-about-section {
		padding: 92px 16px 46px;
	}

	.mp-about-copy h1 {
		font-size: 30px;
		line-height: 1.04;
	}

	.mp-about-lead {
		margin-top: 12px;
		font-size: 14px;
	}

	.mp-about-line {
		width: 42px;
		height: 3px;
		margin: 14px 0 18px;
	}

	.mp-about-text {
		gap: 14px;
	}

	.mp-about-text p {
		font-size: 13px;
		line-height: 1.55;
	}

	.mp-about-cta {
		width: 100%;
		min-width: 0;
		margin-top: 22px;
		padding: 15px 20px;
		font-size: 14px;
	}

	.mp-about-gallery {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.mp-about-gallery__item,
	.mp-about-gallery__item--large {
		min-height: 190px;
		border-radius: 10px;
	}

	.mp-about-stats {
		grid-template-columns: 1fr;
		padding: 12px;
		border-radius: 14px;
	}

	.mp-about-stat,
	.mp-about-stat:nth-child(2n),
	.mp-about-stat:nth-child(-n+2),
	.mp-about-stat:nth-child(n+3) {
		min-height: auto;
		padding: 13px 8px;
		border-right: 0;
		border-bottom: 1px solid rgba(247, 43, 138, 0.13);
	}

	.mp-about-stat:last-child {
		border-bottom: 0;
	}

	.mp-about-stat strong {
		font-size: 22px;
	}

	.mp-about-stat span {
		margin-top: 5px;
		font-size: 12px;
	}
}

/* Contact page */
.mp-contact-page {
	--mp-contact-ink: #111827;
	--mp-contact-muted: #5d667a;
	--mp-contact-pink: #f72b8a;
	--mp-contact-border: #e8ecf4;
	--mp-contact-soft: #fff4fa;
	background: transparent;
	color: var(--mp-contact-ink);
	font-family: var(--mp-font-primary, inherit);
}

.mp-contact-hero {
	padding: clamp(124px, 9.5vw, 148px) 20px clamp(48px, 6vw, 74px);
}

.mp-contact-shell {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
	gap: clamp(28px, 4.5vw, 58px);
	width: min(1020px, 100%);
	margin: 0 auto;
	align-items: center;
}

.mp-contact-shell > .o2k-breadcrumbs {
	grid-column: 1 / -1;
	margin: 0 0 clamp(12px, 1.8vw, 20px);
}

.mp-contact-info h1 {
	margin: 0;
	color: var(--mp-contact-ink);
	font-size: clamp(36px, 3.8vw, 48px);
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.02;
}

.mp-contact-info h1 span,
.mp-contact-info h1 strong {
	display: block;
}

.mp-contact-info h1 strong {
	color: var(--mp-contact-pink);
}

.mp-contact-lead {
	max-width: 470px;
	margin: 18px 0 0;
	color: var(--mp-contact-muted);
	font-size: clamp(15px, 1.25vw, 17px);
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.35;
}

.mp-contact-line {
	width: 48px;
	height: 2px;
	margin: 16px 0 24px;
	border-radius: 999px;
	background: var(--mp-contact-pink);
}

.mp-contact-list {
	max-width: 500px;
}

.mp-contact-item {
	display: grid;
	grid-template-columns: 58px 1fr;
	gap: 18px;
	align-items: center;
	padding: 18px 0;
	border-bottom: 1px solid var(--mp-contact-border);
}

.mp-contact-item:first-child {
	padding-top: 0;
}

.mp-contact-item:last-child {
	border-bottom: 0;
}

.mp-contact-item__icon {
	display: inline-flex;
	width: 52px;
	height: 52px;
	align-items: center;
	justify-content: center;
	border-radius: 15px;
	background: linear-gradient(145deg, #ffe5f1 0%, #fff8fb 100%);
	color: var(--mp-contact-pink);
}

.mp-contact-item__icon svg {
	width: 27px;
	height: 27px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.mp-contact-item h2 {
	margin: 0 0 5px;
	color: var(--mp-contact-ink);
	font-size: clamp(16px, 1.25vw, 18px);
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.15;
}

.mp-contact-item a,
.mp-contact-item p {
	margin: 0;
	color: var(--mp-contact-ink);
	font-size: clamp(15px, 1.15vw, 16px);
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.42;
	text-decoration: none;
}

.mp-contact-item--company {
	align-items: flex-start;
}

.mp-contact-card {
	position: relative;
	overflow: hidden;
	padding: clamp(26px, 3vw, 38px) clamp(22px, 2.8vw, 34px) clamp(24px, 2.8vw, 34px);
	border: 1px solid var(--mp-contact-border);
	border-radius: 20px;
	background: linear-gradient(180deg, #fff 0%, #fffafd 100%);
	box-shadow: 0 16px 42px rgba(19, 26, 43, 0.08);
	text-align: center;
}

.mp-contact-card__bubble {
	display: inline-flex;
	width: 74px;
	height: 74px;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	border: 2px solid #fff;
	border-radius: 999px;
	background: radial-gradient(circle at 50% 36%, #fff8fc 0%, #ffe1ef 100%);
	color: var(--mp-contact-pink);
	box-shadow: 0 12px 28px rgba(247, 43, 138, 0.14);
}

.mp-contact-card__bubble svg {
	width: 40px;
	height: 40px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.mp-contact-card h2 {
	margin: 0 0 10px;
	color: var(--mp-contact-ink);
	font-size: clamp(21px, 1.8vw, 26px);
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.1;
}

.mp-contact-card p {
	max-width: 320px;
	margin: 0 auto;
	color: #3c4353;
	font-size: clamp(15px, 1.2vw, 17px);
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.42;
}

.mp-contact-card p strong {
	color: var(--mp-contact-ink);
	font-weight: 900;
}

.mp-contact-card__arrows {
	width: 106px;
	margin: 16px auto 12px;
	color: var(--mp-contact-pink);
}

.mp-contact-card__arrows svg {
	display: block;
	width: 100%;
	height: auto;
	fill: none;
	stroke: currentColor;
	stroke-width: 3;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.mp-contact-actions {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin-top: 4px;
}

.mp-contact-action {
	display: flex;
	min-height: 90px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 8px;
	border-radius: 16px;
	color: #fff;
	font-size: clamp(15px, 1.2vw, 17px);
	font-weight: 900;
	letter-spacing: 0;
	text-decoration: none;
	box-shadow: 0 12px 22px rgba(19, 26, 43, 0.11);
	transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.mp-contact-action:hover {
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 16px 28px rgba(19, 26, 43, 0.15);
}

.mp-contact-action span {
	display: inline-flex;
	width: 34px;
	height: 34px;
	align-items: center;
	justify-content: center;
}

.mp-contact-action svg {
	width: 34px;
	height: 34px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.mp-contact-action--whatsapp {
	background: linear-gradient(135deg, #24d366 0%, #11b955 100%);
}

.mp-contact-action--messenger {
	background: linear-gradient(135deg, #208cff 0%, #006bf1 100%);
}

.mp-contact-response {
	display: flex;
	gap: 14px;
	align-items: center;
	margin-top: 24px;
	padding: 16px 18px;
	border-radius: 15px;
	background: linear-gradient(135deg, #fff0f7 0%, #fff7fb 100%);
	text-align: left;
}

.mp-contact-response > span {
	display: inline-flex;
	width: 34px;
	height: 34px;
	flex: 0 0 34px;
	align-items: center;
	justify-content: center;
	color: var(--mp-contact-pink);
}

.mp-contact-response svg {
	width: 32px;
	height: 32px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.mp-contact-response strong {
	display: block;
	color: var(--mp-contact-pink);
	font-size: clamp(15px, 1.2vw, 17px);
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.1;
}

.mp-contact-response p {
	margin: 4px 0 0;
	color: #3c4353;
	font-size: clamp(13px, 1vw, 15px);
	font-weight: 500;
	line-height: 1.25;
}

@media (max-width: 980px) {
	.mp-contact-hero {
		padding: 118px 18px 52px;
	}

	.mp-contact-shell {
		grid-template-columns: 1fr;
		gap: 26px;
	}

	.mp-contact-card {
		max-width: 500px;
		margin: 0 auto;
	}
}

@media (max-width: 640px) {
	.mp-contact-hero {
		padding: 92px 16px 46px;
	}

	.mp-contact-info h1 {
		font-size: 30px;
		line-height: 1.04;
	}

	.mp-contact-lead {
		margin-top: 12px;
		font-size: 14px;
	}

	.mp-contact-line {
		width: 42px;
		height: 3px;
		margin: 14px 0 18px;
	}

	.mp-contact-item {
		grid-template-columns: 44px 1fr;
		gap: 12px;
		padding: 15px 0;
	}

	.mp-contact-item__icon {
		width: 40px;
		height: 40px;
		border-radius: 12px;
	}

	.mp-contact-item__icon svg {
		width: 22px;
		height: 22px;
	}

	.mp-contact-item h2 {
		margin-bottom: 4px;
		font-size: 15px;
	}

	.mp-contact-item a,
	.mp-contact-item p {
		font-size: 13px;
	}

	.mp-contact-card {
		padding: 22px 14px 18px;
		border-radius: 16px;
	}

	.mp-contact-card__bubble {
		width: 60px;
		height: 60px;
		margin-bottom: 14px;
	}

	.mp-contact-card__bubble svg {
		width: 32px;
		height: 32px;
	}

	.mp-contact-card h2 {
		margin-bottom: 8px;
		font-size: 21px;
	}

	.mp-contact-card p {
		font-size: 14px;
	}

	.mp-contact-card__arrows {
		width: 92px;
		margin: 12px auto 10px;
	}

	.mp-contact-actions {
		gap: 10px;
	}

	.mp-contact-action {
		min-height: 72px;
		border-radius: 13px;
		font-size: 13px;
	}

	.mp-contact-action span,
	.mp-contact-action svg {
		width: 26px;
		height: 26px;
	}

	.mp-contact-response {
		gap: 10px;
		margin-top: 14px;
		padding: 13px 12px;
		border-radius: 13px;
	}

	.mp-contact-response > span,
	.mp-contact-response svg {
		width: 26px;
		height: 26px;
		flex-basis: 26px;
	}

	.mp-contact-response strong {
		font-size: 14px;
	}

	.mp-contact-response p {
		font-size: 13px;
	}
}
