@import url("reset.css");
@import url('https://fonts.googleapis.com/css?family=PT+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Days+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&display=swap');

:root {
	--bg-main: #FFFFFF;
	--bg-soft: #FAF8F4;
	--brand-navy: #142B4D;
	--title-main: #2B2B2B;
	--text-secondary: #5E6470;
	--price-card-bg: #F6EFE3;
	--price-card-border: #E7D7BC;
	--price-card-hover: #F0E2C8;
	--price-card-active: #F2DFC1;
	--price-card-active-border: #D2B07A;
	--border-main: #E5E7EB;
	--calc-border: #E7E3DC;
	--qty-bg: #FAF8F4;
	--qty-border: #DDD5C8;
	--cta-bg: #C8A46A;
	--cta-hover: #B89258;
	--shadow-soft: 0 4px 18px rgba(0,0,0,0.04);
}

html,
body {	
	font-family: Arial, Helvetica, Geneva, sans-serif;
	min-width: 250px;
	width: 100%;
	height: 100%;	
	background-color: var(--bg-main);
	color: var(--text-secondary);
}
body.cart-modal-open {
	overflow: hidden;
}
h1, h2, h3, h4, h5, h6 {
	color: var(--title-main);
	font-weight: 600;
}
.clear {
	clear: both;
}
.currency {
	font-family: 'PT Sans', sans-serif;
	display: inline-block;
}
div.wrapper {
	display: flex;
	flex-direction: column;
	min-height: 100%;
}
div.main {
	flex: 1 0 auto;
}
div.header {
	height: 170px;
	border-bottom: 1px solid var(--border-main);
}
div.header div.line_one {
	height: 31px;
	background-color: var(--bg-soft);
}
div.maxwidh {
	margin: 0 auto;
	padding-left: 10px;
	padding-right: 10px;
	width: calc(100% - 20px);
	max-width: 1400px;
	height: 100%;
}
div.header div.line_one div.maxwidh ul {
	font-size: 12px;
}
div.header div.line_one div.maxwidh ul li {
	list-style: none;
	float: left;
	line-height: 32px;
	margin-right: 40px;
}
div.header div.line_one div.maxwidh ul li a {
	color: var(--title-main);
	text-decoration: none;
	line-height: 32px;
	display: inline-block;
	}
div.header div.line_one div.maxwidh ul li a:hover {
	text-decoration: underline;
	color: var(--brand-navy);
	}
div.header div.line_one div.maxwidh ul li.selected a {
	text-decoration: underline;	
	}	
div.header div.line_one div.maxwidh	div.working {
	float: right;
	color: var(--text-secondary);
	font-size: 15px;
	height: 31px;
	line-height: 31px;
}
div.header div.line_one div.maxwidh	div.working span {
	margin-right: 30px;
	font-size: 13px;
}
div.header div.line_one div.maxwidh	div.working a {
	text-decoration: none;
	color: var(--text-secondary);
}
div.header div.line_one div.maxwidh	div.working a:hover {
	text-decoration: underline;
}
div.header div.line_two div.maxwidh {
	margin-top: 25px;
	height: 74px;
	position: relative;
}
div.header div.line_two div.maxwidh div.logo {
	position: absolute;
	width: 161px;
	height: 55px;
}
div.header div.line_two div.maxwidh div.logo:hover a {
	cursor: pointer;
}
div.header div.line_two div.maxwidh div.logo img {
	width: 161px;
	height: 55px;
}
div.header div.line_two div.maxwidh div#search {
	vertical-align: top;
	margin-top: 15px;
	margin-left: 225px;
	margin-right: 300px;
	width: 100%;
	min-width: 150px;
	max-width: 400px;
	position: absolute;
}
div.header div.line_two div.maxwidh div#search .input_search {
	border: 2px solid var(--brand-navy);
	height: 25px;
	border-radius: 3px;
	font-size: 13px;
	font-family: Arial, Helvetica, Geneva, sans-serif;
	padding-left: 10px;
	padding-right: 5px;
	vertical-align: top;
	border-radius: 3px 0px 0px 3px;
	width: 100%;	
	position: absolute;
	}
div.header div.line_two div.maxwidh div#search input.input_search:focus	{
	outline: none;
}
div.header div.line_two div.maxwidh div#search .button_search {
	background-color: var(--brand-navy);
	border: none;
	height: 31px;
	width: 55px;
	border-radius: 0px 3px 3px 0px;
	cursor: pointer;
	
	position: absolute;
	margin-left: 100%;
	
	background-image:url("../img/search.svg");
	background-repeat: no-repeat;
	background-position: center center;	
}
div.header div.line_two div.maxwidh div#search .button_search:hover {
	background-color: var(--brand-navy);
	}

div.header div.line_two div.maxwidh div.basket {
	margin-top: 0;
	float: none;
	height: 44px;
	text-align: right;
	display: inline-flex;
	align-items: center;
	position: relative;
}
div.header div.line_two div.maxwidh div.header_actions {
	float: right;
	margin-top: 4px;
	height: 52px;
	display: flex;
	align-items: center;
	gap: 10px;
}
div.header div.line_two div.maxwidh div.header_phone_center {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
div.header div.line_two div.maxwidh a.header_phone_big {
	text-decoration: none;
	color: var(--text-secondary);
	font-size: 28px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.01em;
}
div.header div.line_two div.maxwidh a.header_phone_big:hover {
	color: var(--brand-navy);
}
div.header div.line_two div.maxwidh span.header_call_label {
	color: var(--text-secondary);
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.04em;
	animation: callPulse 2.2s ease-in-out infinite;
}
div.header div.line_two div.maxwidh div.basket a img {
	height: 34px;
	margin-top: 0;
}

div.header div.line_two div.maxwidh div.basket span#cart_informer {
	display: block;
	position: absolute;
	top: -7px;
	right: -8px;
	line-height: 1;
}
div.header div.line_two div.maxwidh div.basket span#cart_informer a.cart_informer_link {
	text-decoration: none;
	display: inline-block;
}
div.header div.line_two div.maxwidh div.basket span#cart_informer .cart_badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 20px;
	height: 20px;
	padding: 0 6px;
	border-radius: 999px;
	background: var(--brand-navy);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	box-shadow: var(--shadow-soft);
}
div.header div.line_two div.maxwidh div.basket span#cart_informer .empty_cart {
	display: none;
}
@media (max-width: 1260px) {
	div.header div.line_two div.maxwidh a.header_phone_big {
		font-size: 24px;
	}
}
@media (max-width: 980px) {
	div.products div.image,
	div.products div.product_desc {
		display: block;
		width: 100%;
	}
	div.products div.image {
		text-align: center;
	}
	div.products div.image img {
		width: 100%;
		max-width: 380px;
		height: auto;
	}
	div.products div.product_desc h1,
	div.products div.product_desc div.sku,
	div.products form.variants {
		margin-left: 0;
	}
	div.header div.line_two div.maxwidh div.header_actions {
		gap: 10px;
	}
	div.header div.line_two div.maxwidh a.header_phone_big {
		font-size: 20px;
	}
	div.header div.line_two div.maxwidh div.basket a img {
		height: 30px;
	}
}

#cart_added_modal {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 12000;
	opacity: 0;
	transition: opacity 0.24s ease;
}

#cart_added_modal.is-open {
	opacity: 1;
}
.cart_added_modal_backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, 0.28);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}
.cart_added_modal_inner {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) translateY(8px);
	max-width: 500px;
	width: calc(100vw - 32px);
	padding: 28px 26px 24px;
	border-radius: 22px;
	background: #fff;
	box-shadow: 0 30px 70px rgba(15, 23, 42, 0.22);
	opacity: 0;
	transition: transform 0.24s ease, opacity 0.24s ease;
}

#cart_added_modal.is-open .cart_added_modal_inner {
	transform: translate(-50%, -50%) translateY(0);
	opacity: 1;
}

.cart_added_modal_close {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 34px;
	height: 34px;
	border: 0;
	border-radius: 999px;
	background: #f6f8fb;
	color: #667085;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.cart_added_modal_close:hover {
	background: #eef2f7;
	color: #1f2937;
	transform: translateY(-1px);
}

.cart_added_modal_head {
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr);
	gap: 12px;
	align-items: start;
	padding-right: 34px;
}

.cart_added_modal_icon {
	width: 44px;
	height: 44px;
	border-radius: 999px;
	background: #eaf7ee;
	color: #17a34a;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.cart_added_modal_icon svg {
	width: 22px;
	height: 22px;
	display: block;
}
.cart_added_modal_title {
	font-size: 30px;
	line-height: 1.15;
	font-weight: 800;
	color: #111827;
	margin: 2px 0 8px;
}

.cart_added_modal_text {
	font-size: 14px;
	line-height: 1.55;
	font-weight: 500;
	color: #667085;
	margin: 0;
}
.cart_added_modal_actions {
	margin-top: 20px;
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
}
.cart_added_btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 52px;
	padding: 0 18px;
	border-radius: 14px;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	border: 1px solid transparent;
	cursor: pointer;
	box-sizing: border-box;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.cart_added_btn_primary {
	background: #f36b21;
	border-color: #f36b21;
	color: #fff;
	box-shadow: 0 10px 24px rgba(243, 107, 33, 0.28);
}
.cart_added_btn_primary:hover {
	background: #e7621d;
	border-color: #e7621d;
	transform: translateY(-1px);
	box-shadow: 0 14px 28px rgba(243, 107, 33, 0.34);
}
.cart_added_btn_secondary {
	background: #fff;
	color: #334155;
	border-color: #d8e0eb;
}

.cart_added_btn_secondary:hover {
	background: #f8fafc;
	border-color: #c9d4e2;
	transform: translateY(-1px);
}
@media (max-width: 760px) {
	.cart_added_modal_inner {
		width: calc(100vw - 20px);
		padding: 24px 16px 16px;
		border-radius: 18px;
	}
	.cart_added_modal_title {
		font-size: 24px;
	}
	.cart_added_modal_text {
		font-size: 13px;
	}
	.cart_added_btn {
		height: 48px;
		font-size: 15px;
	}
	div.header {
		height: auto;
	}
	div.header div.line_one div.maxwidh ul {
		display: none;
	}
	div.header div.line_one div.maxwidh div.working {
		float: none;
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 0 10px;
		font-size: 12px;
		height: auto;
		line-height: 1.3;
	}
	div.header div.line_one div.maxwidh div.working span {
		margin-right: 10px;
		font-size: 12px;
	}
	div.header div.line_two div.maxwidh {
		height: 62px;
		margin-top: 10px;
	}
	div.header div.line_two div.maxwidh div.logo {
		width: 128px;
		height: 44px;
	}
	div.header div.line_two div.maxwidh div.logo img {
		width: 128px;
		height: 44px;
	}
	div.header div.line_two div.maxwidh div.header_phone_center {
		display: none;
	}
	div.header div.line_two div.maxwidh div.header_actions {
		display: none;
	}
	div.content div.products div.path {
		margin-top: 8px;
		margin-bottom: 10px;
	}
}

@keyframes callPulse {
	0% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.72; transform: scale(1.04); }
	100% { opacity: 1; transform: scale(1); }
}


div.header div.line_three div.maxwidh {
	font-size: 15px;
}
div.header div.line_three div.maxwidh a {
	color: var(--title-main);
	margin-right: 15px;
	text-decoration: none;
	display: inline-block;
	line-height: 40px;	
}
div.header div.line_three div.maxwidh a:hover {
	border-bottom: 2px solid var(--brand-navy);
	color: var(--brand-navy);
}
div.header div.line_three div.maxwidh a.selected {
	border-bottom: 2px solid var(--brand-navy);
	color: var(--brand-navy);
}

div.banners {
	margin: 0 auto;
	margin-bottom: 50px;
	width: 100%;
	height: 330px;
}
div.banners ul li {
	list-style: none;
}
div.content {
	margin-top: 14px;	
}
div.content div.items {
	font-size: 0px;
	margin: 0 auto;
	width: calc(100% - 30px);
	text-align: center;
	vertical-align: top;
}
div.content div.item {
	margin:0 auto;
	display: inline-block;
	vertical-align: top;
	width: calc(100%/5 - 22px);
	text-align: center;
	
	margin-left: 10px;
	margin-right: 10px;
	margin-bottom: 14px;
}
@media (max-width: 1400px) {
	div.content div.item {
		width: calc(100%/5 - 22px);
	}
}
@media (max-width: 1250px) {
	div.content div.item {
		width: calc(100%/4 - 22px);
	}
}
@media (max-width: 950px) {
	div.content div.item {
		width: calc(100%/3 - 22px);
	}
}
@media (max-width: 590px) {
	div.content div.item {
		width: calc(100%/2 - 22px);
	}
}



div.content div.item:hover {
	cursor: pointer;
}
div.content div.itm {	
	width: 100%;
	max-width: 900px;
	aspect-ratio: 1 / 1;
	height: auto;
	position: relative;
	margin: 0 auto;
}
div.content div.itm img {
	position: static;
	display: block;
	width: 100%;
	height: 100%;
	max-width: 900px;
	max-height: 900px;
	object-fit: cover;
}
div.content div.name {
	font-size: 13px;
	width: 100%;
	max-width: 900px;
	text-align: center;
	margin-top: 15px;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	justify-content: center;
}
div.content div.item div.name a {
	color: #000000;
	text-decoration: none;
	font-family: "Days", "Days One", "PT Sans", sans-serif;
	font-size: 20px;
	text-transform: uppercase;
	line-height: 1.2;
	display: block;
	width: 100%;
	text-align: center;
}
div.content div.item:hover div.name a {
	color: #000000;
	border-bottom: none;
}
div.content div.item div.name a:visited {
	color: #000000;
	border-bottom: none;
}
div.content div.item:hover div.name a:visited {
	color: #000000;
	border-bottom: none;
}

div.content div.page_top {
	font-size: 15px;
	max-width: 800px;
	margin-top: 30px;
}
div.content div.page_top h1 {
	text-align: center;
	font-size: 29px;
	}
	
div.content div.page_top ul {
	margin-top: 45px;
	margin-bottom: 45px;
	text-align: center;
}
div.content div.page_top ul li {
	display: inline-block;
	margin-left: 10px;
	margin-right: 10px;
	}
div.content div.page_top ul li a {
	background-color: var(--price-card-bg);
	color: var(--title-main);
	text-decoration: none;
	padding: 7px 13px 7px 13px;
	}
div.content div.page_top ul li a:hover {
	background-color: var(--price-card-hover);
	color: var(--brand-navy);
	}
div.content div.page_top ul li.selected a {
	background-color: var(--price-card-active);
	color: var(--brand-navy);
}
div.content div.page_top strong {
	margin-top: 50px;
	margin-bottom: 10px;
	font-size: 17px;
	display: block;
	}
div.content div.page_top strong > span {
	font-size: 25px;
	}	
div.content div.page_top strong > span > span {
	font-size: 21px;
	font-family: 'PT Sans', sans-serif;
	}
	
div.content div.page_top p {
	margin-bottom: 15px;
	}
div.content div.page_top img {
	max-width: 800px;
	width: 100%;
	height: auto;
}

div.content div.page_top section.delivery_info {
	max-width: 700px;
	margin: 24px auto 36px;
	padding: 20px 22px;
	border-radius: 12px;
	background: #ffffff;
	border: 1px solid #e9e9e6;
	box-shadow: 0 4px 12px rgba(20, 20, 18, 0.03);
}
div.content div.page_top .delivery_info_main {
	padding-bottom: 12px;
	border-bottom: 1px solid #ecebe7;
}
div.content div.page_top p.delivery_line {
	margin: 0;
	line-height: 1.45;
	letter-spacing: 0;
}
div.content div.page_top p.delivery_line + p.delivery_line {
	margin-top: 6px;
}
div.content div.page_top p.delivery_line_base {
	font-size: 21px;
	font-weight: 600;
	color: #1d1c19;
}
div.content div.page_top p.delivery_line_free {
	font-size: 26px;
	font-weight: 700;
	color: #14120f;
}
div.content div.page_top p.delivery_line_secondary {
	font-size: 14px;
	font-weight: 500;
	color: #6f6b63;
}
div.content div.page_top .delivery_methods {
	margin-top: 13px;
}
div.content div.page_top .delivery_methods h2 {
	margin: 0 0 10px;
	font-size: 17px;
	font-weight: 600;
	color: #201e1a;
}
div.content div.page_top .delivery_methods ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
div.content div.page_top .delivery_methods li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
	line-height: 1.35;
	color: #25231f;
}
div.content div.page_top .delivery_logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	min-width: 26px;
	padding: 0;
	border-radius: 50%;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	border: 1px solid #d8d6d0;
	background: #ffffff;
	color: #5b564d;
	flex: 0 0 auto;
}
div.content div.page_top .delivery_logo_cdek {
	color: #4a6a56;
}
div.content div.page_top .delivery_logo_wb {
	color: #5e4f69;
}
div.content div.page_top .delivery_logo_ozon {
	color: #4d5c77;
}
div.content div.page_top .delivery_logo_ya {
	color: #5f5552;
}
div.content div.page_top .delivery_method_name {
	font-size: 15px;
	font-weight: 600;
	color: #22201c;
}
@media (max-width: 800px) {
	div.content div.page_top section.delivery_info {
		margin-top: 18px;
		padding: 16px 14px;
		border-radius: 12px;
	}
	div.content div.page_top p.delivery_line_base {
		font-size: 18px;
	}
	div.content div.page_top p.delivery_line_free {
		font-size: 22px;
	}
	div.content div.page_top p.delivery_line_secondary {
		font-size: 13px;
	}
	div.content div.page_top .delivery_methods h2 {
		font-size: 16px;
	}
}
@media (max-width: 520px) {
	div.content div.page_top p.delivery_line_base {
		font-size: 16px;
		line-height: 1.45;
	}
	div.content div.page_top p.delivery_line_free {
		font-size: 19px;
		line-height: 1.4;
	}
	div.content div.page_top p.delivery_line_secondary {
		font-size: 12px;
	}
	div.content div.page_top .delivery_methods li,
	div.content div.page_top .delivery_method_name {
		font-size: 14px;
	}
	div.content div.page_top .delivery_logo {
		width: 24px;
		height: 24px;
		min-width: 24px;
		font-size: 9px;
	}
}

div.content div.page_top section.payment_info {
	max-width: 860px;
	margin: 34px auto 46px;
	padding: 26px 28px;
	border-radius: 14px;
	background: var(--bg-soft);
	border: 1px solid var(--border-main);
}
div.content div.page_top section.payment_info > h2 {
	margin: 0 0 16px;
	font-size: 27px;
	line-height: 1.3;
	color: #171614;
}
div.content div.page_top .payment_card {
	background: #ffffff;
	border: 1px solid var(--border-main);
	border-radius: 12px;
	padding: 16px 18px;
	box-shadow: var(--shadow-soft);
}
div.content div.page_top .payment_card + .payment_card {
	margin-top: 14px;
}
div.content div.page_top .payment_card_head {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
}
div.content div.page_top .payment_card h3 {
	margin: 0;
	font-size: 22px;
	line-height: 1.25;
	color: #1a1814;
}
div.content div.page_top .payment_card p {
	margin: 0;
	font-size: 16px;
	line-height: 1.62;
	color: #4e4a42;
}
div.content div.page_top .payment_card p strong {
	font-weight: 700;
	color: #1d1a16;
}
div.content div.page_top .payment_logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 26px;
	min-width: 78px;
	padding: 0 10px;
	border-radius: 8px;
	flex: 0 0 auto;
	box-sizing: border-box;
}
div.content div.page_top .payment_logo_yoomoney {
	background: linear-gradient(135deg, #7a41ee 0%, #5c2ac7 100%);
	color: #ffffff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.01em;
}
div.content div.page_top .payment_logo_doc {
	min-width: 30px;
	width: 30px;
	padding: 0;
	background: #f5f3ef;
	border: 1px solid #e2ddd4;
	color: #6a645a;
}
div.content div.page_top .payment_logo_doc svg {
	width: 16px;
	height: 16px;
	display: block;
}
@media (max-width: 800px) {
	div.content div.page_top section.payment_info {
		margin-top: 24px;
		padding: 18px 16px;
		border-radius: 12px;
	}
	div.content div.page_top section.payment_info > h2 {
		font-size: 22px;
	}
	div.content div.page_top .payment_card {
		padding: 14px 14px;
	}
	div.content div.page_top .payment_card h3 {
		font-size: 19px;
	}
	div.content div.page_top .payment_card p {
		font-size: 15px;
	}
}
@media (max-width: 520px) {
	div.content div.page_top section.payment_info > h2 {
		font-size: 19px;
	}
	div.content div.page_top .payment_card_head {
		gap: 9px;
	}
	div.content div.page_top .payment_card h3 {
		font-size: 17px;
	}
	div.content div.page_top .payment_card p {
		font-size: 14px;
		line-height: 1.58;
	}
	div.content div.page_top .payment_logo {
		height: 24px;
		min-width: 70px;
		font-size: 11px;
	}
}

div.content div.page_top ul.brand_tabs {
	margin-top: 24px;
	margin-bottom: 24px;
	display: flex;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
}
div.content div.page_top ul.brand_tabs li {
	margin: 0;
}
div.content div.page_top ul.brand_tabs li a {
	padding: 10px 16px;
	min-height: 40px;
	border-radius: 12px;
	border: 1px solid var(--border-main);
	background: #ffffff;
	color: var(--title-main);
	font-weight: 600;
	line-height: 1.2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
div.content div.page_top ul.brand_tabs li a:hover {
	border-color: var(--price-card-active-border);
	color: var(--brand-navy);
	background: var(--price-card-hover);
}
div.content div.page_top ul.brand_tabs li.selected a {
	border-color: var(--price-card-active-border);
	color: var(--brand-navy);
	background: var(--price-card-active);
}

div.content div.page_top section.brand_page_content {
	max-width: 820px;
	margin: 0 auto 38px;
}
div.content div.page_top .brand_card {
	background: #ffffff;
	border: 1px solid var(--border-main);
	border-radius: 18px;
	padding: 30px 32px;
	box-shadow: var(--shadow-soft);
}
div.content div.page_top .brand_card + .brand_card {
	margin-top: 16px;
}
div.content div.page_top .brand_card_divider {
	height: 1px;
	background: var(--border-main);
	margin: 18px 0 14px;
}
div.content div.page_top .brand_page_subtitle {
	margin: 0 0 20px;
	font-size: 30px;
	line-height: 1.25;
	color: var(--title-main);
	font-weight: 700;
}

div.content div.page_top .brand_delivery_intro p.delivery_line {
	margin: 0;
}
div.content div.page_top .brand_delivery_intro p.delivery_line + p.delivery_line {
	margin-top: 6px;
}
div.content div.page_top .brand_delivery_intro .delivery_line_base {
	font-size: 24px;
	line-height: 1.34;
	font-weight: 600;
	color: var(--title-main);
}
div.content div.page_top .brand_delivery_intro .delivery_line_free {
	font-size: 30px;
	line-height: 1.3;
	font-weight: 700;
	color: var(--brand-navy);
}
div.content div.page_top .brand_delivery_intro .delivery_line_secondary {
	font-size: 15px;
	line-height: 1.45;
	color: var(--text-secondary);
	font-weight: 500;
}
div.content div.page_top .brand_delivery_methods h2 {
	margin: 0 0 10px;
	font-size: 20px;
	line-height: 1.3;
	font-weight: 700;
	color: var(--title-main);
}
div.content div.page_top .brand_delivery_methods ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
div.content div.page_top .brand_delivery_methods li {
	display: flex;
	align-items: center;
	gap: 12px;
}
div.content div.page_top .brand_logo_box {
	width: 30px;
	height: 30px;
	min-width: 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
div.content div.page_top .brand_logo_box.logo-fallback {
	border: 1px solid var(--border-main);
	border-radius: 9px;
}
div.content div.page_top .brand_logo_box.logo-fallback:before {
	content: "";
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--brand-navy);
	opacity: 0.45;
}
div.content div.page_top .brand_logo_box img {
	max-width: 30px;
	max-height: 24px;
	width: auto;
	height: auto;
	display: block;
	object-fit: contain;
}
div.content div.page_top .brand_method_name {
	font-size: 16px;
	line-height: 1.35;
	font-weight: 600;
	color: var(--title-main);
}

div.content div.page_top .brand_info_row {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 14px 0;
}
div.content div.page_top .brand_info_row + .brand_info_row {
	border-top: 1px solid var(--border-main);
}
div.content div.page_top .brand_inline_logo {
	width: 28px;
	height: 28px;
	min-width: 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--brand-navy);
}
div.content div.page_top .brand_inline_logo.logo-fallback {
	border: 1px solid var(--border-main);
	border-radius: 9px;
}
div.content div.page_top .brand_inline_logo.logo-fallback:before {
	content: "";
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--brand-navy);
	opacity: 0.45;
}
div.content div.page_top .brand_inline_logo img {
	max-width: 28px;
	max-height: 22px;
	width: auto;
	height: auto;
	display: block;
	object-fit: contain;
}
div.content div.page_top .brand_icon_doc svg {
	width: 19px;
	height: 19px;
	display: block;
}
div.content div.page_top .brand_info_text h3 {
	margin: 0 0 6px;
	font-size: 21px;
	line-height: 1.3;
	font-weight: 700;
	color: var(--title-main);
}
div.content div.page_top .brand_info_text p {
	margin: 0;
	font-size: 16px;
	line-height: 1.56;
	color: var(--text-secondary);
}
div.content div.page_top .brand_info_text strong {
	color: var(--title-main);
}

div.content div.page_top .brand_contact_list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
div.content div.page_top .brand_contact_row {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}
div.content div.page_top .brand_contact_icon {
	width: 24px;
	height: 24px;
	min-width: 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--brand-navy);
}
div.content div.page_top .brand_contact_icon svg {
	width: 20px;
	height: 20px;
	display: block;
}
div.content div.page_top .brand_contact_row h3 {
	margin: 0 0 4px;
	font-size: 20px;
	line-height: 1.3;
	color: var(--title-main);
	font-weight: 700;
}
div.content div.page_top .brand_contact_row p {
	margin: 0;
	font-size: 16px;
	line-height: 1.5;
	color: var(--text-secondary);
}
div.content div.page_top .brand_contact_row p a {
	color: var(--brand-navy);
	text-decoration: none;
	border-bottom: 1px solid var(--border-main);
}
div.content div.page_top .brand_contact_row p a:hover {
	color: var(--brand-navy);
	border-bottom-color: var(--brand-navy);
}
div.content div.page_top .brand_requisites {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
div.content div.page_top .brand_requisites_card .brand_page_subtitle {
	margin-bottom: 12px;
	font-size: 24px;
}
div.content div.page_top .brand_requisites_item {
	margin: 0;
	font-size: 16px;
	line-height: 1.5;
	color: var(--text-secondary);
}
div.content div.page_top .brand_requisites_item span {
	color: var(--title-main);
	font-weight: 700;
}
div.content div.page_top .brand_map_card {
	padding: 0;
	overflow: hidden;
}
div.content div.page_top #pickup-map-brand {
	width: 100%;
	height: 360px;
}

@media (max-width: 900px) {
	div.content div.page_top section.brand_page_content {
		max-width: 100%;
	}
	div.content div.page_top .brand_card {
		padding: 24px 20px;
		border-radius: 16px;
	}
	div.content div.page_top .brand_page_subtitle {
		font-size: 26px;
	}
	div.content div.page_top .brand_delivery_intro .delivery_line_base {
		font-size: 21px;
	}
	div.content div.page_top .brand_delivery_intro .delivery_line_free {
		font-size: 27px;
	}
	div.content div.page_top .brand_info_text h3,
	div.content div.page_top .brand_contact_row h3 {
		font-size: 19px;
	}
}
@media (max-width: 620px) {
	div.content div.page_top ul.brand_tabs {
		gap: 8px;
	}
	div.content div.page_top ul.brand_tabs li a {
		padding: 8px 12px;
		min-height: 36px;
		font-size: 13px;
		border-radius: 10px;
	}
	div.content div.page_top .brand_card {
		padding: 18px 14px;
	}
	div.content div.page_top .brand_page_subtitle {
		font-size: 22px;
	}
	div.content div.page_top .brand_delivery_intro .delivery_line_base {
		font-size: 18px;
	}
	div.content div.page_top .brand_delivery_intro .delivery_line_free {
		font-size: 23px;
	}
	div.content div.page_top .brand_delivery_intro .delivery_line_secondary {
		font-size: 14px;
	}
	div.content div.page_top .brand_method_name,
	div.content div.page_top .brand_info_text p,
	div.content div.page_top .brand_contact_row p,
	div.content div.page_top .brand_requisites_item {
		font-size: 14px;
	}
	div.content div.page_top .brand_info_text h3,
	div.content div.page_top .brand_contact_row h3 {
		font-size: 17px;
	}
	div.content div.page_top #pickup-map-brand {
		height: 280px;
	}
}


div.content div.left_block {
	width: 270px;
	background-color: var(--bg-soft);
	float: left;
}
div.content div.left_block > ul {
	margin-top: 15px;
	margin-left: 15px;
	margin-bottom: 15px;
}
div.content div.left_block > ul > li {
	list-style: none;
	margin-top: 10px;
}
div.content div.left_block > ul > li.selected > a {
	font-size: 23px;
}
div.content div.left_block > ul > li > a {
	text-transform: uppercase;
	color: var(--title-main);
	text-decoration: none;
	font-weight: bold;	
	display: block;
	font-size: 15px;
}	
div.content div.left_block > ul > li > ul {
	margin-top: 5px;
	margin-bottom: 10px;
}
div.content div.left_block > ul > li > ul > li {
	list-style: none;
	line-height: 30px;
	margin-right: 15px;
	}
div.content div.left_block > ul > li > ul > li:last-child {
	margin-bottom: 15px;
	}
div.content div.left_block > ul > li > ul > li.selected {
	background-color: var(--price-card-bg);
	}
div.content div.left_block > ul > li > ul > li.selected a {
	color: var(--title-main);
	}
div.content div.left_block > ul > li > ul > li:hover {
	background-color: var(--price-card-hover);
	}
div.content div.left_block > ul > li > ul > li:hover a {
	color: var(--brand-navy);
	}
div.content div.left_block > ul > li > ul > li a {
	font-size: 14px;
	text-decoration: none;
	color: #444444;
	display: block;
	padding-left: 15px;
	}

div.content div.products {
	margin: 0 auto;
	padding-left: 10px;
	padding-right: 10px;
	max-width: 1400px;
	font-size: 0px;
	vertical-align: top;
}
div.content div.products div.path {
	font-size: 13px;
}
div.content div.products div.path {
	color: var(--text-secondary);
	margin-bottom: 20px;
	font-size: 12px;
}
div.content div.products div.path a {
	color: var(--title-main);
	font-size: 12px;
	text-decoration: none;
}
div.content div.products div.path span.paths {
	width: 5px;
	height: 9px;
	display: inline-block;
	background: url(../img/sled.svg) no-repeat;
	background-size: 5px 9px;
	margin-left: 7px;
	margin-right: 7px;
}
div.content div.products > h1 {
	font-size: 23px;
	color: var(--title-main);
	font-weight: 700;
}
div.content div.products div.description_cat {
	font-size: 15px;
	margin-top: 20px;
	margin-bottom: 35px;
	max-width: 1024px;	
	font-style: italic;
	color: #565656;
}
div.content div.products div.description_cat a {
	text-decoration: none;
	color: #565656;
	border-bottom: 1px solid #bdbdbd;
	display: inline-block;
	line-height: 14px;
}


div.content div.products div.products_item {
	width: calc(100% / 5);
	display: inline-block;
	margin-bottom: 18px;
	vertical-align: top;	
	text-align: center;
}
@media (max-width: 2150px) {
	div.content div.products div.products_item {
		width: calc(100% / 4);
		display: inline-block;
		margin-bottom: 18px;
		vertical-align: top;	
		text-align: center;
	}
}
@media (max-width: 1480px) {
	div.content div.products div.products_item {
		width: calc(100% / 3);
		display: inline-block;
		margin-bottom: 18px;
		vertical-align: top;	
		text-align: center;
	}
}
@media (max-width: 1200px) {
	div.content div.products div.products_item {
		width: calc(100% / 2);
		display: inline-block;
		margin-bottom: 18px;
		vertical-align: top;	
		text-align: center;
	}
}

div.content div.products div.products_item div.img_p {
	width: 100%;
	max-width: 900px;
	display: block;
	margin: 0 auto;
}
div.content div.products div.products_item div.img_p div.img_h a img {
	width: 100%;
	max-width: 900px;
	height: 100%;
	max-height: 900px;
	object-fit: cover;
	display: block;
}
div.content div.products div.products_item span.price {
	font-size: 21px;
	display: block;
	margin-top: 5px;
	font-weight: bold;
	text-align: left;
}
div.content div.products div.products_item span.price strong {
	font-size: 17px;
}
div.content div.products div.products_item span.name {
	margin-top: 5px;
	font-size: 15px;
	display: block;
	max-width: 900px;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}
div.content div.products div.products_item span.name a {
	text-decoration: none;
	color: #000000;
	font-family: "Days", "Days One", "PT Sans", sans-serif;
	font-size: 20px;
	text-transform: uppercase;
	line-height: 1.2;
	display: block;
	width: 100%;
	text-align: center;
}
div.content div.products div.products_item div.img_p:hover span.name a {
	color: #000000;
}
div.content div.products div.products_item span.name:hover a {
	color: #000000;
}
div.content div.products div.products_item span.name a:visited {
	color: #000000;
}
div.content div.products div.products_item div.img_h {
	width: 100%;
	max-width: 900px;
	aspect-ratio: 1 / 1;
	height: auto;
	overflow: hidden;
	margin: 0 auto;
}
div.content div.products div.products_item div.img_h img {
	vertical-align: middle;
}

div.content div.products div.pagination {
	width: 100%;
	font-size: 15px;
	text-align: center;
	margin-bottom: 50px;
}
div.content div.products div.pagination a {
	display: inline-block;
}
div.content div.products div.pagination a.nomer {
	color: #ffffff;
	border-radius: 50%;
	background-color: var(--border-main);
	line-height: 30px;
	width: 30px;
	height: 30px;
	text-decoration: none;
	margin-left: 5px;
	margin-right: 5px;
}
div.content div.products div.pagination a.nomer:hover {
	background-color: var(--brand-navy);
}
div.content div.products div.pagination a.selected {
	background-color: var(--brand-navy);
}
div.content div.products div.pagination a.selected:hover {
	background-color: var(--brand-navy);
	}
div.content div.products div.pagination a.next_page_link, div.content div.products div.pagination a.prev_page_link {
	margin-left: 20px;
	color: var(--brand-navy);
	}
div.content div.products div.pagination a.page_link {
	margin-left: 20px;
	color: #c9d3d8;
	}
div.content div.products div.pagination a.next_page_link:hover, div.content div.products div.pagination a.page_link:hover, div.content div.products div.pagination a.prev_page_link:hover {
	text-decoration: none;
	}
div.products div.image {	
	display: table-cell;
}	
div.products div.image img {
	max-width: 500px;
	max-height: 500px;
	background: #FFFFFF;
	border-radius: 24px;
	box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
div.products div.product_desc {
	display: table-cell;
	vertical-align: top;
	width: 100%;	
	font-size: 23px;
}
div.products div.product_desc h1 {
	margin-left: 25px;
	color: var(--title-main);
	font-weight: 700;
}
div.products div.product_desc div.sku {
	margin-left: 25px;
	width: 150px;
	height: 15px;
	font-size: 13px;
	margin-top: 10px;
	color: var(--text-secondary);
}

div.products form.variants {
	margin-left: 25px;
	margin-top: 30px;
	max-width: 650px;
	border: 1px solid var(--calc-border);
	border-radius: 14px;
	background-color: #ffffff;
	padding: 20px;
	font-family: "Manrope", "Segoe UI", "Noto Sans", "Helvetica Neue", Arial, sans-serif;
	box-shadow: var(--shadow-soft);
}
div.products form.variants * {
	font-family: inherit;
}
div.products form.variants strong.variants_title {
	font-weight: 600;
	font-size: 15px;
	display: block;
	margin-bottom: 14px;
	padding: 0;
	color: var(--title-main);
	letter-spacing: 0.01em;
}
div.products form.variants input.variant_radiobutton {
	display: none;
}
div.products form.variants div.variants_grid {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	border: 0;
	margin: 0;
}
div.products form.variants input:checked + label.variant_name {
	background: var(--price-card-active);
	border-color: var(--price-card-active-border);
	box-shadow: var(--shadow-soft);
}
div.products form.variants input:checked + label .variant_caption {
	color: var(--title-main);
	background-color: transparent;
	border-bottom-color: var(--price-card-active-border);
}
div.products form.variants input:checked + label .variant_cost_row {
	background-color: rgba(255, 255, 255, 0.42);
	border-color: var(--price-card-active-border);
}
div.products form.variants input:checked + label .variant_cost {
	color: var(--title-main);
}
div.products form.variants input:checked + label .variant_cost .price_unit {
	color: #7A7A7A;
}
div.products form.variants label.variant_name {
	display: block;
	width: calc((100% - 30px) / 4);
	min-height: 84px;
	margin: 0;
	padding: 0;
	border: 1px solid var(--price-card-border);
	border-radius: 10px;
	box-sizing: border-box;
	font-size: 14px;
	cursor: pointer;
	color: var(--title-main);
	text-align: center;
	position: relative;
	background-color: var(--price-card-bg);
	overflow: hidden;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
	animation: variantHintPulse 2.8s ease-in-out infinite;
}
div.products form.variants label.variant_name:hover {
	border-color: var(--price-card-active-border);
	background-color: var(--price-card-hover);
	box-shadow: var(--shadow-soft);
	transform: translateY(-1px);
}
div.products form.variants div.variants_grid label.variant_name:nth-of-type(2) {
	animation-delay: .25s;
}
div.products form.variants div.variants_grid label.variant_name:nth-of-type(3) {
	animation-delay: .5s;
}
div.products form.variants div.variants_grid label.variant_name:nth-of-type(4) {
	animation-delay: .75s;
}
div.products form.variants label.variant_name:hover,
div.products form.variants input:checked + label.variant_name:hover {
	animation-play-state: paused;
}
div.products form.variants input:checked + label.variant_name {
	animation: none;
}
div.products form.variants span.variant_caption {
	display: block;
	font-size: 14px;
	line-height: 1.25;
	font-weight: 600;
	color: var(--title-main);
	padding: 10px 8px 9px;
	background-color: transparent;
	border-bottom: 1px solid var(--price-card-border);
}
div.products form.variants span.variant_cost_row {
	display: block;
	background-color: rgba(255, 255, 255, 0.45);
	padding: 10px 8px 11px;
	border-top: 1px solid var(--price-card-border);
}
div.products form.variants span.variant_cost {
	display: block;
	font-size: 23px;
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 0;
	color: var(--title-main);
}
div.products form.variants span.variant_cost .price_unit {
	font-size: 12px;
	font-weight: 500;
	color: #7A7A7A;
	vertical-align: middle;
	margin-left: 3px;
}
div.products form.variants div.variant_note {
	display: none;
}
div.products form.variants div.purchase_row {
	margin-top: 18px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
	padding: 14px;
	border-radius: 12px;
	border: 1px solid var(--calc-border);
	background-color: #ffffff;
}
div.products form.variants div.price_formula_line {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: nowrap;
}
div.products form.variants div.price_formula_line > div.price_formula:last-of-type {
	flex-shrink: 0;
	white-space: nowrap;
	font-size: 37px;
}
div.products form.variants div.price_formula_line > div.price_formula:last-of-type .formula_total_label {
	font-size: 31px;
}
div.products form.variants div.amount_box {
	display: inline-flex;
	align-items: center;
	border: 1px solid var(--qty-border);
	border-radius: 10px;
	overflow: hidden;
	height: 44px;
	background-color: var(--qty-bg);
	flex: 0 0 auto;
}
div.products form.variants div.amount_box button {
	width: 30px;
	min-width: 30px;
	height: 44px;
	padding: 0;
	border: 0;
	background-color: var(--qty-bg);
	font-size: 20px;
	font-weight: 500;
	line-height: 1;
	color: var(--text-secondary);
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease;
}
div.products form.variants div.amount_box button:hover {
	background-color: var(--price-card-hover);
	color: var(--title-main);
}
div.products form.variants input.amount {
	width: 80px;
	min-width: 0;
	padding: 0 3px;
	box-sizing: border-box;
	border: 0;
	height: 44px;
	line-height: 44px;
	font-size: 22px;
	font-weight: 700;
	text-align: center;
	outline: none;
	color: var(--title-main);
	background-color: var(--qty-bg);
}
div.products form.variants input.amount.amount_invalid {
	box-shadow: inset 0 0 0 1px #d24e4e;
	background-color: #fff7f7;
}
div.products form.variants div.price_formula {
	font-size: 38px;
	font-weight: 700;
	color: var(--title-main);
	line-height: 1;
	display: inline-flex;
	align-items: baseline;
	gap: 4px;
}
div.products form.variants div.price_formula .formula_op {
	display: inline-block;
	margin: 0;
	font-weight: 700;
}
div.products form.variants div.price_formula .price_unit {
	font-size: 16px;
	font-weight: 500;
	color: #7A7A7A;
}
div.products form.variants div.price_formula .formula_total_label {
	font-size: 32px;
	font-weight: 700;
	color: var(--title-main);
	margin-right: 2px;
}
div.products form.variants div.price_formula_sub {
	font-size: 13px;
	font-weight: 500;
	color: var(--text-secondary);
	line-height: 1.35;
	padding-left: 2px;
}
div.products form.variants div.price_formula span.calc_total_price {
	font-weight: 700;
	color: var(--title-main);
}
div.products form.variants .currency {
	font-family: "Manrope", "Segoe UI", "Noto Sans", "Helvetica Neue", Arial, sans-serif !important;
	font-style: normal;
	font-weight: 600;
	letter-spacing: 0;
	text-transform: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
div.products form.variants input.button {
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.02em;
	margin-top: 16px;
	margin-left: 0;
	background: #C8A46A;
	border: 0px;
	color: #ffffff;
	border-radius: 12px;
	width: 100%;
	max-width: 260px;
	height: 52px;
	cursor: pointer;
	text-transform: none;
	box-shadow: var(--shadow-soft);
	transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
div.products form.variants input.button:hover {
	transform: translateY(-1px);
	box-shadow: var(--shadow-soft);
	background: #B89258;
	filter: none;
}

@keyframes variantHintPulse {
	0%, 100% {
		box-shadow: 0 0 0 0 rgba(200, 164, 106, 0.06);
		border-color: var(--price-card-border);
	}
	45% {
		box-shadow: 0 0 0 3px rgba(200, 164, 106, 0.14);
		border-color: var(--price-card-active-border);
	}
}

@keyframes variantHintPulseActive {
	0%, 100% {
		transform: translateY(0);
		box-shadow: 0 0 0 0 rgba(243, 107, 33, 0);
		border-color: #e2b989;
		background-color: #fffaf3;
	}
	50% {
		transform: translateY(-1px);
		box-shadow: 0 0 0 7px rgba(243, 107, 33, 0.4);
		border-color: var(--price-card-active-border);
		background-color: #fff3e6;
	}
}

@media (prefers-reduced-motion: reduce) {
	div.products form.variants label.variant_name {
		animation: none;
	}
}

@media (max-width: 1100px) and (hover: none) and (pointer: coarse) {
	div.products form.variants label.variant_name {
		animation: variantHintPulseMobile 1.9s ease-in-out infinite !important;
	}
	div.products form.variants div.variants_grid label.variant_name:nth-of-type(2) {
		animation-delay: .2s;
	}
	div.products form.variants div.variants_grid label.variant_name:nth-of-type(3) {
		animation-delay: .4s;
	}
	div.products form.variants div.variants_grid label.variant_name:nth-of-type(4) {
		animation-delay: .6s;
	}
	div.products form.variants input:checked + label.variant_name {
		animation: none !important;
	}
}

@keyframes variantHintPulseMobile {
	0%, 100% {
		transform: translateY(0);
		box-shadow: 0 0 0 0 rgba(200, 164, 106, 0.08);
		border-color: var(--price-card-border);
	}
	50% {
		transform: translateY(-2px);
		box-shadow: 0 0 0 5px rgba(200, 164, 106, 0.2);
		border-color: var(--price-card-active-border);
	}
}

@keyframes variantHintPulseActiveMobile {
	0%, 100% {
		transform: translateY(0);
		box-shadow: 0 0 0 0 rgba(243, 107, 33, 0);
		border-color: #e4b884;
		background-color: #fff8ef;
	}
	50% {
		transform: translateY(-2px);
		box-shadow: 0 0 0 8px rgba(243, 107, 33, 0.45);
		border-color: var(--price-card-active-border);
		background-color: #ffefd9;
	}
}
@media (max-width: 980px) {
	div.products form.variants label.variant_name {
		width: 50%;
	}
	div.products form.variants div.price_formula {
		font-size: 33px;
	}
	div.products form.variants div.price_formula .formula_total_label {
		font-size: 28px;
	}
	div.products form.variants div.price_formula_line > div.price_formula:last-of-type {
		font-size: 32px;
	}
	div.products form.variants div.price_formula_line > div.price_formula:last-of-type .formula_total_label {
		font-size: 27px;
	}
}
@media (max-width: 640px) {
	div.products form.variants {
		padding: 14px;
		border-radius: 12px;
	}
	div.products form.variants strong.variants_title {
		font-size: 14px;
		padding: 0;
	}
	div.products form.variants div.variants_grid {
		gap: 8px;
	}
	div.products form.variants label.variant_name {
		width: 100%;
		min-height: 78px;
	}
	div.products form.variants span.variant_caption {
		font-size: 13px;
	}
	div.products form.variants span.variant_cost {
		font-size: 20px;
	}
	div.products form.variants div.purchase_row {
		padding: 0;
		flex-wrap: wrap;
		gap: 12px;
		border: 0;
		background: transparent;
	}
	div.products form.variants div.price_formula_line {
		gap: 8px;
		flex-wrap: wrap;
	}
	div.products form.variants div.amount_box {
		height: 42px;
	}
	div.products form.variants div.amount_box button {
		height: 42px;
	}
	div.products form.variants input.amount {
		height: 42px;
		line-height: 42px;
	}
	div.products form.variants div.price_formula {
		font-size: 27px;
	}
	div.products form.variants div.price_formula .formula_total_label {
		font-size: 22px;
	}
	div.products form.variants div.price_formula_line > div.price_formula:last-of-type {
		font-size: 26px;
	}
	div.products form.variants div.price_formula_line > div.price_formula:last-of-type .formula_total_label {
		font-size: 21px;
	}
	div.products form.variants div.price_formula .price_unit {
		font-size: 13px;
	}
	div.products form.variants input.button {
		max-width: 100%;
	}
}

/* Mobile hard-fix for product page layout */
@media (max-width: 1100px) {
	div.content div.maxwidh > div.products {
		display: block;
	}
	div.products div.image,
	div.products div.product_desc {
		display: block !important;
		width: 100% !important;
	}
	div.products div.image {
		text-align: center;
		margin-bottom: 12px;
	}
	div.products div.image img {
		width: 100%;
		max-width: 360px !important;
		height: auto;
		max-height: none;
	}
	div.products div.product_desc h1 {
		margin: 0 0 10px 0 !important;
		font-size: 34px;
		line-height: 1.15;
	}
	div.products form.variants {
		margin: 0 !important;
		max-width: 100%;
	}
	div.products form.variants div.variants_grid {
		gap: 8px;
	}
	div.products form.variants label.variant_name {
		width: calc(50% - 4px);
		min-height: 76px;
	}
	div.products form.variants div.purchase_row {
		padding: 12px;
	}
	div.products form.variants div.price_formula_line {
		align-items: center;
	}
	div.products form.variants div.price_formula {
		font-size: 28px;
	}
	div.products form.variants div.price_formula .formula_total_label {
		font-size: 24px;
	}
	div.products form.variants div.price_formula_line > div.price_formula:last-of-type {
		font-size: 27px;
	}
	div.products form.variants div.price_formula_line > div.price_formula:last-of-type .formula_total_label {
		font-size: 23px;
	}
	div.products form.variants div.amount_box {
		height: 46px;
	}
	div.products form.variants div.amount_box button,
	div.products form.variants input.amount {
		height: 46px;
		line-height: 46px;
	}
	div.products form.variants input.button {
		height: 50px;
	}
}

@media (max-width: 760px) {
	div.content div.maxwidh {
		padding-left: 10px;
		padding-right: 10px;
	}
	div.content div.maxwidh > div.products {
		padding-left: 0;
		padding-right: 0;
	}
	div.products form.variants label.variant_name {
		width: 100%;
	}
	div.products form.variants div.price_formula {
		font-size: 24px;
	}
	div.products form.variants div.price_formula .formula_total_label {
		font-size: 20px;
	}
	div.products form.variants div.price_formula_line > div.price_formula:last-of-type {
		font-size: 23px;
	}
	div.products form.variants div.price_formula_line > div.price_formula:last-of-type .formula_total_label {
		font-size: 19px;
	}
}

@media not all {
/* ===== 2026 Premium Redesign ===== */
:root {
	--ui-bg: #ffffff;
	--ui-soft: #f5f7fa;
	--ui-soft-2: #eef2f6;
	--ui-line: #dce3eb;
	--ui-text: #101828;
	--ui-muted: #667085;
	--ui-accent: #f36b21;
	--ui-accent-hover: #dd5d18;
	--ui-shadow: 0 12px 38px rgba(16, 24, 40, 0.08);
}

html,
body {
	font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	background: var(--ui-bg);
	color: var(--ui-text);
}

div.maxwidh {
	max-width: 1240px;
	padding-left: 24px;
	padding-right: 24px;
}

div.header.sticky_header {
	height: auto;
	border-bottom: 1px solid var(--ui-line);
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(10px);
	position: sticky;
	top: 0;
	z-index: 100;
}

div.header .line_one {
	height: auto;
	background: #fff;
	border-bottom: 1px solid var(--ui-soft-2);
}

div.header .line_one .working {
	float: none;
	display: flex;
	justify-content: flex-end;
	gap: 18px;
	height: auto;
	line-height: 1.2;
	padding: 10px 0;
	font-size: 13px;
	color: var(--ui-muted);
}

div.header .line_one .working a {
	color: var(--ui-muted);
}

div.header .line_two .maxwidh {
	margin-top: 0;
	height: auto;
	min-height: 74px;
	display: flex;
	align-items: center;
	gap: 20px;
}

div.header .line_two .logo {
	position: static !important;
	flex: 0 0 auto;
}

div.header .line_two .logo img {
	width: 154px !important;
	height: auto !important;
}

ul.compact_menu {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
	margin-left: 10px;
}

ul.compact_menu li {
	list-style: none;
}

ul.compact_menu li a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 36px;
	padding: 0 14px;
	border-radius: 10px;
	text-decoration: none;
	color: var(--ui-text);
	font-size: 14px;
	font-weight: 600;
	transition: background-color 0.2s ease, color 0.2s ease;
}

ul.compact_menu li.selected a,
ul.compact_menu li a:hover {
	background: var(--ui-soft);
	color: var(--ui-accent);
}

div.header .line_two .header_phone_center {
	position: static !important;
	transform: none !important;
	margin-left: auto;
}

div.header .line_two a.header_phone_big {
	font-size: 22px !important;
	color: var(--ui-text) !important;
}

div.header .line_two .header_actions {
	float: none !important;
	margin-top: 0 !important;
	gap: 14px !important;
}

.account_link {
	height: 40px;
	padding: 0 16px;
	display: inline-flex;
	align-items: center;
	border-radius: 10px;
	background: var(--ui-soft);
	color: var(--ui-text);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
}

.account_link:hover {
	background: var(--ui-soft-2);
}

div.header .line_two .basket {
	height: 40px !important;
	width: 40px;
	justify-content: center;
	border-radius: 12px;
	background: var(--ui-soft);
}

div.header .line_two .basket a img {
	height: 24px !important;
}

div.header .line_three {
	border-top: 1px solid var(--ui-soft-2);
}

.category_menu {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	padding: 8px 0;
}

div.header div.line_three div.maxwidh a {
	margin-right: 0;
	line-height: 34px;
	padding: 0 12px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	color: var(--ui-muted);
}

div.header div.line_three div.maxwidh a.selected,
div.header div.line_three div.maxwidh a:hover {
	border-bottom: 0;
	background: var(--ui-soft);
	color: var(--ui-accent);
}

div.content {
	margin-top: 0;
}

.hero_premium {
	padding: 34px 0 18px;
}

.hero_layout {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 22px;
	align-items: center;
}

.hero_copy h1 {
	font-size: clamp(34px, 5vw, 56px);
	line-height: 1.06;
	letter-spacing: -0.03em;
	margin: 8px 0 12px;
}

.hero_kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 12px;
	border-radius: 999px;
	background: var(--ui-soft);
	color: var(--ui-accent);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.hero_subtitle {
	font-size: 18px;
	line-height: 1.55;
	color: var(--ui-muted);
	max-width: 620px;
}

.hero_actions {
	margin-top: 18px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.hero_btn {
	height: 48px;
	padding: 0 22px;
	border-radius: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.hero_btn_primary {
	background: var(--ui-accent);
	color: #fff;
	box-shadow: 0 4px 14px rgba(243, 107, 33, 0.2);
}

.hero_btn_primary:hover {
	background: var(--ui-accent-hover);
	transform: translateY(-1px);
}

.hero_btn_secondary {
	background: #fff;
	color: var(--ui-text);
	border: 1px solid var(--ui-line);
}

.hero_btn_secondary:hover {
	background: var(--ui-soft);
}

.hero_visual {
	background: #f8fafc;
	border: 1px solid var(--ui-line);
	border-radius: 28px;
	padding: 20px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 1fr);
	gap: 18px;
	min-height: 320px;
	box-shadow: 0 6px 18px rgba(16, 24, 40, 0.06);
}

.sticker_shape {
	background: #fff;
	border: 1px solid #e8edf3;
	box-shadow: 0 8px 16px rgba(15, 23, 42, 0.06);
}

.sticker_circle {
	border-radius: 999px;
}

.sticker_square {
	border-radius: 18px;
}

.sticker_rect {
	border-radius: 16px;
	transform: rotate(-8deg);
}

.sticker_long {
	border-radius: 16px;
	transform: rotate(7deg);
}

.home_section_head {
	margin: 14px 0 16px;
}

.home_section_head h2 {
	font-size: 31px;
	margin-bottom: 8px;
}

.home_section_head p {
	font-size: 16px;
	color: var(--ui-muted);
}

div.content div.items.premium_items {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
	gap: 14px;
	margin-bottom: 30px;
}

div.content div.item.premium_card {
	width: auto;
	margin: 0;
	padding: 12px;
	border-radius: 18px;
	background: #fff;
	border: 1px solid var(--ui-line);
	box-shadow: 0 2px 10px rgba(16, 24, 40, 0.04);
	display: flex;
	flex-direction: column;
	transition: transform 0.22s ease, box-shadow 0.22s ease;
}

div.content div.item.premium_card:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 18px rgba(16, 24, 40, 0.09);
}

div.content div.item.premium_card .itm {
	background: var(--ui-soft);
	border-radius: 14px;
	padding: 12px;
	aspect-ratio: 1 / 1;
}

div.content div.item.premium_card .itm img {
	border-radius: 12px;
	object-fit: contain;
}

div.content div.item.premium_card div.name {
	margin-top: 14px;
	min-height: 52px;
}

div.content div.item.premium_card div.name a {
	font-family: inherit;
	font-size: 18px;
	font-weight: 700;
	text-transform: none;
	color: var(--ui-text);
}

.card_cta {
	margin-top: 10px;
	height: 42px;
	border-radius: 10px;
	background: var(--ui-soft);
	color: var(--ui-text);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-size: 14px;
	font-weight: 700;
}

.card_cta:hover {
	background: var(--ui-accent);
	color: #fff;
}

.card_meta {
	margin-top: 8px;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.card_meta span {
	height: 26px;
	padding: 0 10px;
	display: inline-flex;
	align-items: center;
	border-radius: 999px;
	background: #f2f4f7;
	border: 1px solid #e5e9f0;
	font-size: 11px;
	font-weight: 700;
	color: #667085;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

div.content div.products {
	padding-left: 24px;
	padding-right: 24px;
	max-width: 1240px;
}

div.content div.products > h1 {
	font-size: 42px;
	letter-spacing: -0.02em;
}

.catalog_filters {
	display: grid;
	grid-template-columns: repeat(4, minmax(140px, 1fr));
	gap: 12px;
	padding: 14px;
	background: var(--ui-soft);
	border-radius: 16px;
	border: 1px solid var(--ui-line);
	margin-bottom: 16px;
}

.filter_item label {
	display: block;
	margin-bottom: 6px;
	font-size: 12px;
	font-weight: 700;
	color: var(--ui-muted);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.filter_item select {
	width: 100%;
	height: 42px;
	border-radius: 10px;
	border: 1px solid var(--ui-line);
	padding: 0 12px;
	font-family: inherit;
	font-size: 14px;
	background: #fff;
	color: var(--ui-text);
}

div.content div.products div.products_item {
	padding: 6px;
}

div.content div.products div.products_item .product_card {
	border: 1px solid var(--ui-line);
	border-radius: 18px;
	background: #fff;
	padding: 12px;
	box-shadow: 0 2px 9px rgba(16, 24, 40, 0.04);
	height: 100%;
	display: flex;
	flex-direction: column;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

div.content div.products div.products_item .product_card:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 18px rgba(16, 24, 40, 0.08);
}

div.content div.products div.products_item .img_h {
	background: var(--ui-soft);
	border-radius: 14px;
	padding: 10px;
}

div.content div.products div.products_item .img_h img {
	object-fit: contain;
}

div.content div.products div.products_item span.name a {
	font-family: inherit;
	font-size: 24px;
	font-weight: 800;
	letter-spacing: -0.01em;
	text-transform: uppercase;
}

.product_layout {
	display: grid;
	grid-template-columns: minmax(320px, 1fr) minmax(340px, 1fr);
	gap: 20px;
	align-items: start;
}

div.products div.image,
div.products div.product_desc {
	display: block;
}

div.products div.image img {
	width: 100%;
	max-width: 100%;
	max-height: none;
	object-fit: contain;
	padding: 16px;
	background: var(--ui-soft);
}

div.products div.product_desc h1 {
	margin-left: 0;
	font-size: 42px;
	letter-spacing: -0.02em;
}

.product_meta {
	display: grid;
	grid-template-columns: repeat(2, minmax(160px, 1fr));
	gap: 10px;
	margin: 10px 0 12px;
}

.product_meta div {
	background: var(--ui-soft);
	border: 1px solid var(--ui-line);
	border-radius: 12px;
	padding: 12px;
}

.product_meta span {
	display: block;
	font-size: 12px;
	font-weight: 700;
	color: var(--ui-muted);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.product_meta strong {
	display: block;
	margin-top: 4px;
	font-size: 16px;
	color: var(--ui-text);
}

div.products form.variants {
	margin-left: 0;
	max-width: none;
	border-radius: 16px;
	border-color: var(--ui-line);
}

div.products form.variants div.price_formula {
	font-size: 42px;
}

div.products form.variants div.price_formula_line > div.price_formula:last-of-type {
	font-size: 41px;
}

div.products form.variants div.price_formula_line > div.price_formula:last-of-type .formula_total_label {
	font-size: 31px;
}

div.products form.variants div.amount_box button {
	font-size: 28px;
}

div.products form.variants input.button {
	max-width: 100%;
	height: 54px;
	font-size: 17px;
	background: var(--ui-accent);
}

div.products form.variants input.button:hover {
	background: var(--ui-accent-hover);
}

.trust_block {
	margin-top: 12px;
	display: grid;
	grid-template-columns: repeat(2, minmax(180px, 1fr));
	gap: 8px;
}

.trust_item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px;
	border-radius: 12px;
	border: 1px solid var(--ui-line);
	background: var(--ui-soft);
	font-size: 14px;
	font-weight: 600;
	color: var(--ui-text);
}

.trust_icon {
	width: 24px;
	height: 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 800;
	color: #fff;
	background: var(--ui-accent);
	border-radius: 999px;
}

.delivery_service_cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(130px, 1fr));
	gap: 10px;
}

.delivery_service_card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	padding: 12px 10px;
	border-radius: 12px;
	border: 1px solid var(--ui-line);
	background: var(--ui-soft);
}

.trust_strip {
	margin-top: 2px;
	margin-bottom: 16px;
	display: grid;
	grid-template-columns: repeat(4, minmax(160px, 1fr));
	gap: 10px;
}

.trust_strip_item {
	background: #f8fafc;
	border: 1px solid var(--ui-line);
	border-radius: 14px;
	padding: 12px;
}

.trust_strip_item strong {
	display: block;
	font-size: 14px;
	line-height: 1.3;
	color: var(--ui-text);
}

.trust_strip_item span {
	display: block;
	margin-top: 4px;
	font-size: 13px;
	line-height: 1.4;
	color: var(--ui-muted);
}

.brand_messengers {
	margin-top: 8px !important;
	display: flex;
	gap: 8px;
}

.brand_messengers a {
	display: inline-flex;
	align-items: center;
	height: 32px;
	padding: 0 11px;
	border-radius: 999px;
	background: var(--ui-soft);
	border: 1px solid var(--ui-line);
	text-decoration: none !important;
}

@media (max-width: 1080px) {
	.hero_layout,
	.product_layout {
		grid-template-columns: 1fr;
	}
	.catalog_filters {
		grid-template-columns: repeat(2, minmax(140px, 1fr));
	}
	.trust_strip {
		grid-template-columns: repeat(2, minmax(160px, 1fr));
	}
	ul.compact_menu,
	.account_link {
		display: none;
	}
}

@media (max-width: 760px) {
	div.maxwidh,
	div.content div.products {
		padding-left: 14px;
		padding-right: 14px;
	}
	.hero_premium {
		padding-top: 22px;
	}
	.hero_visual {
		min-height: 240px;
	}
	.catalog_filters {
		grid-template-columns: 1fr;
	}
	.trust_block {
		grid-template-columns: 1fr;
	}
	.trust_strip {
		grid-template-columns: 1fr;
	}
	.product_meta {
		grid-template-columns: 1fr;
	}
	.delivery_service_cards {
		grid-template-columns: 1fr;
	}
	div.header .line_one {
		display: none;
	}
	div.header .line_two .maxwidh {
		min-height: 62px;
	}
	div.header .line_two .header_phone_center {
		display: none;
	}
	div.header .line_two .header_actions {
		display: flex !important;
	}
}

/* ===== Rebuild Pass: Content Density 2026 ===== */
div.content {
	padding-bottom: 20px;
}

div.content div.products div.path {
	margin-bottom: 12px;
}

.page_lead {
	max-width: 820px;
	margin: 8px auto 18px;
	font-size: 17px;
	line-height: 1.55;
	color: #667085;
	text-align: center;
}

div.content div.page_top {
	max-width: 1000px;
	margin-top: 24px;
}

div.content div.page_top h1 {
	font-size: clamp(30px, 4.5vw, 44px);
	letter-spacing: -0.02em;
	margin-bottom: 6px;
}

div.content div.page_top ul.brand_tabs {
	margin-top: 12px;
	margin-bottom: 18px;
}

div.content div.page_top section.brand_page_content {
	max-width: 1000px;
	margin-bottom: 24px;
}

div.content div.page_top .brand_card {
	padding: 22px 22px;
	border-radius: 16px;
}

.trust_strip {
	margin-top: 0;
	margin-bottom: 12px;
}

.trust_strip_item {
	position: relative;
	overflow: hidden;
}

.trust_strip_item:after {
	content: "";
	position: absolute;
	inset: auto 0 0 0;
	height: 2px;
	background: linear-gradient(90deg, rgba(243, 107, 33, 0.85), rgba(243, 107, 33, 0.2));
}

.catalog_overview {
	display: grid;
	grid-template-columns: repeat(4, minmax(120px, 1fr));
	gap: 10px;
	margin: 6px 0 14px;
}

.catalog_overview_item {
	border: 1px solid #e3e8ef;
	border-radius: 12px;
	background: #f8fafc;
	padding: 10px 12px;
}

.catalog_overview_item strong {
	display: block;
	font-size: 12px;
	color: #667085;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.catalog_overview_item span {
	display: block;
	margin-top: 4px;
	font-size: 16px;
	font-weight: 700;
	color: #101828;
}

div.content div.products div.products_item span.name a {
	font-size: 22px;
}

div.content div.products div.products_item .img_h {
	padding: 8px;
}

.production_flow {
	margin-top: 4px;
}

.flow_grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(170px, 1fr));
	gap: 12px;
}

.flow_step {
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	background: #fff;
	padding: 14px;
}

.flow_step span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 999px;
	background: #fff1e8;
	color: #f36b21;
	font-size: 12px;
	font-weight: 800;
}

.flow_step h3 {
	margin-top: 10px;
	margin-bottom: 6px;
	font-size: 18px;
	line-height: 1.3;
}

.flow_step p {
	font-size: 14px;
	line-height: 1.45;
	color: #667085;
}

.product_note_grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(170px, 1fr));
	gap: 8px;
	margin-top: 10px;
}

.product_note_item {
	border: 1px solid #e4e9f1;
	background: #f8fafc;
	border-radius: 12px;
	padding: 10px;
}

.product_note_item strong {
	display: block;
	font-size: 13px;
	color: #101828;
}

.product_note_item span {
	display: block;
	margin-top: 3px;
	font-size: 13px;
	color: #667085;
	line-height: 1.4;
}

div.header.sticky_header {
	border-bottom-color: #e6ebf2;
}

div.header .line_two .maxwidh {
	min-height: 68px;
}

div.header div.line_three div.maxwidh a {
	height: 34px;
	line-height: 34px;
}

@media (max-width: 1080px) {
	.catalog_overview {
		grid-template-columns: repeat(2, minmax(120px, 1fr));
	}
	.flow_grid {
		grid-template-columns: repeat(2, minmax(170px, 1fr));
	}
}

@media (max-width: 760px) {
	.page_lead {
		font-size: 15px;
		margin-bottom: 14px;
	}
	.catalog_overview {
		grid-template-columns: 1fr;
		gap: 8px;
	}
	.flow_grid {
		grid-template-columns: 1fr;
	}
	.product_note_grid {
		grid-template-columns: 1fr;
	}
}

/* ===== Final 2026 Ecommerce Layer ===== */
:root {
	--brand-dark: #111827;
	--brand-soft: #f3f5f8;
	--brand-line: #e3e8ef;
}

.fade-up {
	opacity: 0;
	transform: translateY(14px);
	transition: opacity 0.45s ease, transform 0.45s ease;
}

.fade-up.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.hero_benefits {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 12px;
}

.hero_benefits span {
	height: 34px;
	padding: 0 14px;
	display: inline-flex;
	align-items: center;
	border-radius: 999px;
	background: #f6f8fb;
	border: 1px solid var(--brand-line);
	font-size: 13px;
	font-weight: 700;
	color: #344054;
}

.quick_shapes_grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(160px, 1fr));
	gap: 12px;
}

.quick_shape_card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 8px;
	padding: 18px 14px;
	border-radius: 22px;
	border: 1px solid var(--brand-line);
	background: #fff;
	text-decoration: none;
	color: var(--brand-dark);
	box-shadow: 0 4px 14px rgba(16, 24, 40, 0.06);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quick_shape_card:hover {
	transform: translateY(-3px) scale(1.01);
	box-shadow: 0 12px 26px rgba(16, 24, 40, 0.12);
}

.quick_shape_card strong {
	font-size: 20px;
}

.quick_shape_card span:last-child {
	font-size: 13px;
	color: #667085;
}

.quick_shape_icon {
	width: 92px;
	height: 92px;
	background: #fff;
	border: 1px solid #e5eaf1;
	box-shadow: 0 10px 20px rgba(16, 24, 40, 0.08);
}

.quick_shape_circle { border-radius: 999px; }
.quick_shape_square { border-radius: 18px; }
.quick_shape_rect { border-radius: 16px; width: 104px; height: 80px; }
.quick_shape_custom { border-radius: 16px; clip-path: polygon(50% 0%, 88% 16%, 100% 50%, 82% 86%, 50% 100%, 16% 84%, 0% 50%, 18% 16%); }

.flow_grid {
	grid-template-columns: repeat(3, minmax(180px, 1fr));
}

.materials_grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(150px, 1fr));
	gap: 12px;
}

.material_card {
	border: 1px solid var(--brand-line);
	border-radius: 22px;
	background: #fff;
	padding: 12px;
}

.material_card strong {
	font-size: 16px;
	line-height: 1.3;
}

.material_preview {
	display: block;
	width: 100%;
	height: 130px;
	border-radius: 16px;
	margin-bottom: 10px;
	border: 1px solid #e6ebf2;
}

.material_matte { background: linear-gradient(160deg, #f6f7f8, #eceff3); }
.material_glossy { background: linear-gradient(160deg, #ffffff, #f1f3f8); }
.material_clear { background: linear-gradient(160deg, #f4f8ff, #e9eef8); }
.material_kraft { background: linear-gradient(160deg, #dfc7a3, #c8ab7d); }

.examples_grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(150px, 1fr));
	gap: 12px;
}

.example_card {
	height: 168px;
	border-radius: 22px;
	border: 1px solid #dde4ec;
	background: linear-gradient(145deg, #f8fafc, #eef2f7);
	position: relative;
	overflow: hidden;
}

.example_card span {
	position: absolute;
	left: 12px;
	bottom: 12px;
	height: 30px;
	padding: 0 12px;
	display: inline-flex;
	align-items: center;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid #d8e0ea;
	font-size: 13px;
	font-weight: 700;
	color: #1f2937;
}

.trust_stats {
	margin-top: 10px;
	display: grid;
	grid-template-columns: repeat(3, minmax(170px, 1fr));
	gap: 12px;
}

.trust_stat {
	border: 1px solid var(--brand-line);
	background: #fff;
	border-radius: 22px;
	padding: 18px;
}

.trust_stat strong {
	display: block;
	font-size: clamp(24px, 3vw, 36px);
	line-height: 1.1;
	color: #0f172a;
}

.trust_stat span {
	display: block;
	margin-top: 6px;
	font-size: 14px;
	color: #667085;
}

.reviews_track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(260px, 1fr);
	gap: 12px;
	overflow-x: auto;
	padding-bottom: 6px;
	scroll-snap-type: x mandatory;
}

.review_card {
	scroll-snap-align: start;
	border: 1px solid var(--brand-line);
	border-radius: 22px;
	background: #fff;
	padding: 16px;
}

.review_card p {
	font-size: 15px;
	line-height: 1.5;
	color: #1f2937;
}

.review_card strong {
	display: block;
	margin-top: 10px;
	font-size: 13px;
	color: #667085;
}

.card_price {
	margin-top: 8px;
	font-size: 26px;
	font-weight: 800;
	color: #111827;
}

.card_cta.card_cta_strong {
	margin-top: 8px;
	background: #111827;
	color: #fff;
	height: 44px;
}

.card_cta.card_cta_strong:hover {
	background: #0b1220;
}

.sticky_order_mobile {
	display: none;
	position: fixed;
	left: 12px;
	right: 12px;
	bottom: 12px;
	height: 54px;
	border-radius: 16px;
	background: #111827;
	color: #fff;
	font-size: 16px;
	font-weight: 800;
	text-decoration: none;
	align-items: center;
	justify-content: center;
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.28);
	z-index: 120;
}

@media (max-width: 1100px) {
	.quick_shapes_grid,
	.materials_grid,
	.examples_grid {
		grid-template-columns: repeat(2, minmax(150px, 1fr));
	}
	.trust_stats {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 760px) {
	.quick_shapes_grid,
	.flow_grid,
	.materials_grid,
	.examples_grid {
		grid-template-columns: 1fr;
	}
	.quick_shape_card strong {
		font-size: 22px;
	}
	.hero_btn {
		width: 100%;
	}
	.sticky_order_mobile {
		display: flex;
	}
	.wrapper {
		padding-bottom: 76px;
	}
}
}