/*
REALWAVE UI layer for the active Bitrix template.
The file keeps project styling separate from the vendor template code.
*/

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

:root {
	--rw-color-ink: #18202b;
	--rw-color-muted: #687384;
	--rw-color-border: #e2e8f0;
	--rw-color-surface: #ffffff;
	--rw-color-soft: #f4f7fb;
	--rw-color-brand: #0f766e;
	--rw-color-brand-dark: #115e59;
	--rw-color-accent: #d97706;
	--rw-radius-sm: 12px;
	--rw-radius-md: 18px;
	--rw-radius-lg: 24px;
	--rw-shadow-soft: 0 18px 45px rgba(24, 32, 43, 0.08);
	--rw-space-page: clamp(12px, 3vw, 28px);
}

html {
	scroll-behavior: smooth;
}

body {
	overflow-x: hidden;
}

body.bx-background-image {
	background: #edf2f7;
	color: var(--rw-color-ink);
	font-family: Inter, "Helvetica Neue", Arial, sans-serif;
	letter-spacing: 0;
}

body.bx-theme-green {
	--primary: var(--rw-color-brand);
	--theme-color-primary: var(--rw-color-brand);
	--theme-color-second: #14b8a6;
	--theme-color-light: #ccfbf1;
	--theme-b-link: var(--rw-color-brand);
	--theme-b-link-hover: var(--rw-color-brand-dark);
	--theme-b-bg-primary: var(--rw-color-brand);
	--theme-b-bd-primary: var(--rw-color-brand);
	--theme-b-bg-primary-hover: var(--rw-color-brand-dark);
	--theme-b-bd-primary-hover: var(--rw-color-brand-dark);
}

a {
	color: var(--rw-color-brand);
}


.rw-logo-text {
	display: inline-flex;
	flex-direction: column;
	gap: 2px;
	color: var(--rw-color-ink);
	line-height: 1.05;
	text-decoration: none;
}

.rw-logo-text strong {
	font-size: clamp(24px, 3vw, 32px);
	font-weight: 900;
	letter-spacing: 0;
}

.rw-logo-text span {
	color: var(--rw-color-muted);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0;
}

.bx-logo-block:hover .rw-logo-text,
.bx-logo-block:focus .rw-logo-text {
	color: var(--rw-color-ink);
	text-decoration: none;
}
a:hover,
a:focus {
	color: var(--rw-color-brand-dark);
}

.bx-wrapper {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 var(--rw-space-page) 32px;
}

.bx-header-section,
.bx-content-section,
.bx-footer-section {
	border: 1px solid var(--rw-color-border);
	border-radius: var(--rw-radius-lg);
	background: rgba(255, 255, 255, 0.98);
	box-shadow: var(--rw-shadow-soft);
}

.bx-header-section {
	margin-top: 16px;
	padding: 16px 20px 14px;
}

.bx-header .row {
	row-gap: 12px;
}

.bx-logo-block {
	display: inline-flex;
	align-items: center;
	max-width: 100%;
	min-height: 48px;
	color: var(--rw-color-ink);
	font-weight: 800;
	text-decoration: none;
	letter-spacing: 0;
}

.bx-logo-block img {
	max-height: 52px;
	width: auto;
	object-fit: contain;
}

.bx-header-contact,
.bx-header-personal {
	color: var(--rw-color-muted);
}

.bx-header-phone-number,
.bx-worktime-title {
	color: var(--rw-color-ink);
	font-weight: 700;
}

.bx-menu-button-mobile {
	border-radius: var(--rw-radius-md);
	background: var(--rw-color-soft);
}

.bx-searchtitle,
#search,
.bx-searchtitle .bx-input-group {
	width: 100%;
}

.bx-searchtitle input,
input[type="text"],
input[type="search"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea,
select {
	border: 1px solid var(--rw-color-border);
	border-radius: var(--rw-radius-md);
	background: #fff;
	color: var(--rw-color-ink);
	box-shadow: none;
}

.bx-searchtitle input:focus,
input:focus,
textarea:focus,
select:focus {
	border-color: var(--rw-color-brand);
	box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.14);
	outline: none;
}

.btn,
.btn.btn-primary,
.btn-primary,
.basket-btn-checkout,
button,
input[type="button"],
input[type="submit"] {
	border-radius: var(--rw-radius-md);
	font-weight: 700;
	letter-spacing: 0;
}

.btn-primary,
.btn.btn-primary,
.basket-btn-checkout {
	border-color: var(--rw-color-brand);
	background: var(--rw-color-brand);
}

.btn-primary:hover,
.btn-primary:focus,
.btn.btn-primary:hover,
.basket-btn-checkout:hover {
	border-color: var(--rw-color-brand-dark);
	background: var(--rw-color-brand-dark);
}

.bx-content-section {
	margin-top: 16px;
	padding: 20px;
}

#pagetitle,
h1,
h2,
h3,
h4,
h5 {
	color: var(--rw-color-ink);
	font-family: Inter, "Helvetica Neue", Arial, sans-serif;
	font-weight: 800;
	letter-spacing: 0;
}

#pagetitle {
	margin-bottom: 24px;
}

.card,
.product-item,
.bx_catalog_tile,
.bx_catalog_list_home,
.bx_sidebar,
.bx-filter,
.catalog-section,
.news-list,
.sale-order-list-container,
.basket-items-list-wrapper {
	border-color: var(--rw-color-border);
	border-radius: var(--rw-radius-lg);
	background: var(--rw-color-surface);
	box-shadow: 0 12px 30px rgba(24, 32, 43, 0.06);
	overflow: hidden;
}

.product-item,
.bx_catalog_item {
	transition: transform 160ms ease, box-shadow 160ms ease;
}

.product-item:hover,
.bx_catalog_item:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 40px rgba(24, 32, 43, 0.1);
}

.breadcrumb,
.bx-breadcrumb {
	color: var(--rw-color-muted);
	font-size: 14px;
}

.alert,
.errortext,
.notetext {
	border-radius: var(--rw-radius-md);
}

.errortext {
	color: #991b1b;
}

.bx-footer-section {
	margin-top: 16px;
	padding: 20px;
}

@media (max-width: 767.98px) {
	.bx-wrapper {
		padding: 0 10px 20px;
	}

	.bx-header-section,
	.bx-content-section,
	.bx-footer-section {
		border-radius: 20px;
	}

	.bx-header-section {
		margin-top: 10px;
		padding: 12px;
	}

	.bx-header-logo {
		height: auto !important;
		overflow: hidden;
		padding: 8px 12px !important;
		text-align: center;
		background: transparent !important;
	}

	.bx-logo-block {
		justify-content: center;
		min-height: 42px;
		width: 100%;
	}

	.bx-logo-block img {
		max-width: min(100%, 280px);
		max-height: 48px;
		height: auto;
	}

	.bx-header-contact {
		text-align: center;
	}

	.bx-content-section {
		padding: 14px 12px;
	}

	#pagetitle,
	h1 {
		font-size: 26px;
		line-height: 1.16;
	}

	h2 {
		font-size: 22px;
		line-height: 1.2;
	}

	.btn,
	button,
	input[type="button"],
	input[type="submit"] {
		min-height: 42px;
		white-space: normal;
	}

	.bx-basket-fixed,
	.rw-search-body .bx-basket-fixed,
	.rw-cart-body .bx-basket-fixed {
		display: none;
	}
}

@media (min-width: 768px) and (max-width: 1023.98px) {
	.bx-wrapper {
		padding: 0 18px 28px;
	}

	.bx-header-section {
		padding: 16px;
	}

	.bx-content-section {
		padding: 18px;
	}
}

@media (min-width: 1024px) {
	.bx-header-section {
		position: sticky;
		top: 0;
		z-index: 20;
	}
}

.rw-home-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
	gap: 24px;
	align-items: stretch;
	margin-bottom: 24px;
}

.rw-home-hero__content,
.rw-home-hero__panel,
.rw-category-grid,
.rw-quick-links {
	border: 1px solid var(--rw-color-border);
	border-radius: var(--rw-radius-lg);
	background: #fff;
	box-shadow: 0 14px 34px rgba(24, 32, 43, 0.07);
}

.rw-home-hero__content {
	padding: clamp(22px, 4vw, 42px);
	background:
		linear-gradient(135deg, rgba(15, 118, 110, 0.12), rgba(217, 119, 6, 0.08)),
		#fff;
}

.rw-home-hero__eyebrow,
.rw-section-heading p {
	margin: 0 0 8px;
	color: var(--rw-color-brand);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
}

.rw-home-hero h1 {
	margin: 0;
	font-size: clamp(38px, 7vw, 76px);
	line-height: 0.95;
}

.rw-home-hero__lead {
	max-width: 680px;
	margin: 18px 0 0;
	color: var(--rw-color-muted);
	font-size: clamp(16px, 2vw, 20px);
	line-height: 1.55;
}

.rw-home-search {
	max-width: 680px;
	margin-top: 24px;
}

.rw-home-search__label {
	display: block;
	margin-bottom: 8px;
	color: var(--rw-color-ink);
	font-weight: 800;
}

.rw-home-search__row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 10px;
}

.rw-home-search input {
	min-height: 48px;
	padding: 0 16px;
}

.rw-home-search button,
.rw-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 18px;
	border: 1px solid var(--rw-color-brand);
	border-radius: var(--rw-radius-md);
	background: var(--rw-color-brand);
	color: #fff;
	font-weight: 800;
	text-decoration: none;
}

.rw-home-search button:hover,
.rw-button:hover {
	border-color: var(--rw-color-brand-dark);
	background: var(--rw-color-brand-dark);
	color: #fff;
	text-decoration: none;
}

.rw-home-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 18px;
}

.rw-button--secondary {
	border-color: var(--rw-color-border);
	background: #fff;
	color: var(--rw-color-brand);
}

.rw-button--secondary:hover {
	color: #fff;
}

.rw-home-hero__panel {
	display: grid;
	gap: 12px;
	padding: 18px;
}

.rw-home-stat {
	border-radius: var(--rw-radius-md);
	background: var(--rw-color-soft);
	padding: 18px;
}

.rw-home-stat span {
	display: block;
	color: var(--rw-color-brand);
	font-size: 34px;
	font-weight: 900;
	line-height: 1;
}

.rw-home-stat p {
	margin: 8px 0 0;
	color: var(--rw-color-muted);
	font-weight: 700;
}

.rw-home-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 24px;
}

.rw-home-nav a {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 0 16px;
	border: 1px solid var(--rw-color-border);
	border-radius: 999px;
	background: #fff;
	color: var(--rw-color-ink);
	font-weight: 800;
	text-decoration: none;
}

.rw-home-nav a:hover {
	border-color: var(--rw-color-brand);
	color: var(--rw-color-brand);
}

.rw-category-grid,
.rw-quick-links {
	margin-bottom: 24px;
	padding: clamp(18px, 3vw, 28px);
}

.rw-section-heading h2 {
	margin: 0 0 18px;
	font-size: clamp(24px, 3vw, 34px);
}

.rw-category-grid__items,
.rw-quick-links__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.rw-category-card,
.rw-quick-links__grid a {
	display: flex;
	min-height: 160px;
	flex-direction: column;
	justify-content: flex-end;
	border: 1px solid var(--rw-color-border);
	border-radius: var(--rw-radius-lg);
	padding: 18px;
	color: var(--rw-color-ink);
	text-decoration: none;
	overflow: hidden;
}

.rw-category-card {
	background: linear-gradient(135deg, rgba(15, 118, 110, 0.12), rgba(217, 119, 6, 0.1));
}

.rw-category-card--men {
	background: linear-gradient(135deg, rgba(24, 32, 43, 0.10), rgba(15, 118, 110, 0.12));
}

.rw-category-card--kids {
	background: linear-gradient(135deg, rgba(217, 119, 6, 0.14), rgba(15, 118, 110, 0.08));
}

.rw-category-card span,
.rw-quick-links__grid span {
	color: var(--rw-color-brand);
	font-size: 14px;
	font-weight: 900;
	text-transform: uppercase;
}

.rw-category-card strong,
.rw-quick-links__grid strong {
	margin-top: 8px;
	font-size: 18px;
	line-height: 1.35;
}

.rw-quick-links__grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.rw-quick-links__grid a {
	min-height: 132px;
	background: var(--rw-color-soft);
}

@media (max-width: 1023.98px) {
	.rw-home-hero {
		grid-template-columns: 1fr;
	}

	.rw-category-grid__items,
	.rw-quick-links__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767.98px) {
	.rw-home-hero,
	.rw-home-nav,
	.rw-category-grid,
	.rw-quick-links {
		margin-bottom: 16px;
	}

	.rw-home-search__row,
	.rw-category-grid__items,
	.rw-quick-links__grid {
		grid-template-columns: 1fr;
	}

	.rw-home-search button {
		width: 100%;
	}

	.rw-home-nav {
		display: grid;
		grid-template-columns: 1fr;
	}

	.rw-home-nav a,
	.rw-button {
		width: 100%;
	}

	.rw-category-card,
	.rw-quick-links__grid a {
		min-height: 128px;
	}
}

body .rw-home-page {
	max-width: none;
}

@media (max-width: 767.98px) {
	.rw-logo-text strong {
		font-size: 24px;
	}

	.rw-logo-text span {
		font-size: 12px;
	}
}


.rw-catalog-hero,
.rw-catalog-layout,
.rw-product-list {
	border: 1px solid var(--rw-color-border);
	border-radius: var(--rw-radius-lg);
	background: #fff;
	box-shadow: 0 14px 34px rgba(24, 32, 43, 0.07);
}

.rw-catalog-hero {
	margin-bottom: 18px;
	padding: clamp(24px, 4vw, 42px);
	background: linear-gradient(135deg, rgba(15, 118, 110, 0.12), rgba(217, 119, 6, 0.08)), #fff;
}

.rw-catalog-hero h1 {
	margin: 0;
	font-size: clamp(36px, 6vw, 64px);
	line-height: 1;
}

.rw-catalog-hero p {
	overflow-wrap: anywhere;
}

.rw-catalog-hero p:last-child {
	max-width: 760px;
	margin: 16px 0 0;
	color: var(--rw-color-muted);
	font-size: clamp(16px, 2vw, 20px);
	line-height: 1.55;
}

.rw-catalog-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 18px;
}

.rw-catalog-tabs a {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 0 16px;
	border: 1px solid var(--rw-color-border);
	border-radius: 999px;
	background: #fff;
	color: var(--rw-color-ink);
	font-weight: 800;
	text-decoration: none;
}

.rw-catalog-tabs a.is-active,
.rw-catalog-tabs a:hover {
	border-color: var(--rw-color-brand);
	background: var(--rw-color-brand);
	color: #fff;
}

.rw-catalog-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 280px;
	gap: 18px;
	margin-bottom: 24px;
	padding: clamp(18px, 3vw, 28px);
}

.rw-catalog-section-list,
.rw-product-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.rw-catalog-section-card,
.rw-product-card,
.rw-empty-products,
.rw-catalog-note {
	border: 1px solid var(--rw-color-border);
	border-radius: var(--rw-radius-lg);
	background: var(--rw-color-soft);
	color: var(--rw-color-ink);
	text-decoration: none;
}

.rw-catalog-section-card,
.rw-product-card {
	display: flex;
	min-height: 150px;
	flex-direction: column;
	justify-content: flex-end;
	padding: 18px;
}

.rw-catalog-section-card span,
.rw-product-card span {
	color: var(--rw-color-brand);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.rw-catalog-section-card strong,
.rw-product-card strong {
	margin-top: 8px;
	font-size: 22px;
	line-height: 1.25;
}

.rw-catalog-section-card em {
	margin-top: 10px;
	color: var(--rw-color-muted);
	font-style: normal;
	font-weight: 700;
}

.rw-catalog-note {
	padding: 22px;
}

.rw-catalog-note strong {
	display: block;
	color: var(--rw-color-brand);
	font-size: 44px;
	font-weight: 900;
	line-height: 1;
}

.rw-catalog-note span {
	display: block;
	margin-top: 8px;
	font-weight: 800;
}

.rw-catalog-note p,
.rw-empty-products p {
	margin: 14px 0 0;
	color: var(--rw-color-muted);
	line-height: 1.5;
}

.rw-product-list {
	padding: clamp(18px, 3vw, 28px);
}

.rw-empty-products {
	padding: 22px;
}

.rw-empty-products strong {
	display: block;
	font-size: 18px;
}

@media (max-width: 1023.98px) {
	.rw-catalog-layout {
		grid-template-columns: 1fr;
	}

	.rw-catalog-section-list,
	.rw-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767.98px) {
	.rw-catalog-tabs,
	.rw-catalog-section-list,
	.rw-product-grid {
		grid-template-columns: 1fr;
	}

	.rw-catalog-tabs {
		display: grid;
	}

	.rw-catalog-tabs a,
	.rw-catalog-section-card,
	.rw-product-card {
		width: 100%;
	}
}
/* rw mobile content width guard */
@media (max-width: 767.98px) {
	.bx-content-section > .row {
		margin-left: 0;
		margin-right: 0;
	}

	.bx-content {
		max-width: 100%;
		flex-basis: 100%;
		padding-left: 0;
		padding-right: 0;
	}

	.rw-catalog-hero,
	.rw-catalog-layout,
	.rw-product-list {
		max-width: 100%;
		overflow: hidden;
	}
}
/* rw mobile viewport width guard */
@media (max-width: 767.98px) {
	.bx-wrapper {
		width: 100vw;
		max-width: 100vw;
		padding-left: 10px;
		padding-right: 10px;
		overflow-x: hidden;
	}

	.bx-header-section,
	.bx-content-section,
	.bx-footer-section {
		width: calc(100vw - 20px) !important;
		max-width: calc(100vw - 20px) !important;
		margin-left: auto;
		margin-right: auto;
	}
}
/* rw hide broken mobile header search */
@media (max-width: 767.98px) {
	.bx-header #search {
		display: none !important;
	}
}
.rw-info-hero,
.rw-info-grid {
	border: 1px solid var(--rw-color-border);
	border-radius: var(--rw-radius-lg);
	background: #fff;
	box-shadow: 0 14px 34px rgba(24, 32, 43, 0.07);
}

.rw-info-hero {
	margin-bottom: 18px;
	padding: clamp(24px, 4vw, 42px);
	background: linear-gradient(135deg, rgba(15, 118, 110, 0.12), rgba(217, 119, 6, 0.08)), #fff;
}

.rw-info-hero > p {
	margin: 0 0 8px;
	color: var(--rw-color-brand);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.rw-info-hero h1 {
	margin: 0;
	font-size: clamp(34px, 5vw, 58px);
	line-height: 1.05;
}

.rw-info-hero div {
	max-width: 820px;
	margin-top: 16px;
	color: var(--rw-color-muted);
	font-size: clamp(16px, 2vw, 20px);
	line-height: 1.55;
}

.rw-info-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	padding: clamp(18px, 3vw, 28px);
}

.rw-info-card {
	border: 1px solid var(--rw-color-border);
	border-radius: var(--rw-radius-lg);
	background: var(--rw-color-soft);
	padding: 20px;
}

.rw-info-card strong {
	display: block;
	font-size: 20px;
	line-height: 1.25;
}

.rw-info-card p {
	margin: 12px 0 0;
	color: var(--rw-color-muted);
	line-height: 1.5;
}

@media (max-width: 1023.98px) {
	.rw-info-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767.98px) {
	.rw-info-grid {
		grid-template-columns: 1fr;
	}
}

.rw-offer-page {
	--rw-offer-reading-width: 74ch;
	max-width: 1120px;
	margin: 0 auto clamp(48px, 8vw, 88px);
	color: var(--rw-color-ink);
}

.rw-offer-intro {
	margin-bottom: clamp(22px, 4vw, 36px);
	padding: clamp(22px, 4vw, 38px);
	border: 1px solid var(--rw-color-border);
	border-radius: 16px;
	background: rgba(15, 118, 110, 0.07);
}

.rw-offer-intro__version {
	margin: 0 0 10px;
	color: var(--rw-color-brand);
	font-size: 15px;
	font-weight: 800;
}

.rw-offer-intro h2 {
	max-width: 760px;
	margin: 0;
	font-size: clamp(27px, 4vw, 42px);
	line-height: 1.12;
	letter-spacing: -0.025em;
	text-wrap: balance;
}

.rw-offer-intro > p:not(.rw-offer-intro__version) {
	max-width: var(--rw-offer-reading-width);
	margin: 18px 0 0;
	color: var(--rw-color-ink);
	font-size: clamp(16px, 1.8vw, 18px);
	line-height: 1.65;
	text-wrap: pretty;
}

.rw-offer-intro__nav,
.rw-offer-intro__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 22px;
}

.rw-offer-intro__nav a,
.rw-offer-intro__actions a,
.rw-offer-intro__actions button {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(15, 118, 110, 0.34);
	border-radius: 12px;
	background: var(--rw-color-surface);
	color: var(--rw-color-brand-dark);
	font: inherit;
	font-weight: 750;
	line-height: 1.25;
	padding: 10px 15px;
	text-align: center;
	text-decoration: none;
}

.rw-offer-intro__actions {
	margin-top: 12px;
}

.rw-offer-intro__actions button {
	border-color: var(--rw-color-brand);
	background: var(--rw-color-brand);
	color: var(--rw-color-surface);
	cursor: pointer;
}

.rw-offer-intro__nav a:hover,
.rw-offer-intro__nav a:focus-visible,
.rw-offer-intro__actions a:hover,
.rw-offer-intro__actions a:focus-visible {
	border-color: var(--rw-color-brand);
	background: rgba(15, 118, 110, 0.08);
	color: var(--rw-color-brand-dark);
}

.rw-offer-intro__actions button:hover,
.rw-offer-intro__actions button:focus-visible {
	background: var(--rw-color-brand-dark);
}

.rw-offer-intro__nav a:active,
.rw-offer-intro__actions a:active,
.rw-offer-intro__actions button:active {
	transform: translateY(1px);
}

.rw-offer-intro__nav a:focus-visible,
.rw-offer-intro__actions a:focus-visible,
.rw-offer-intro__actions button:focus-visible,
.rw-offer-article a:focus-visible {
	outline: 3px solid rgba(217, 119, 6, 0.44);
	outline-offset: 3px;
}

.rw-offer-article {
	padding: clamp(24px, 5vw, 58px);
	border: 1px solid var(--rw-color-border);
	border-radius: 16px;
	background: var(--rw-color-surface);
}

.rw-offer-print-heading {
	display: none;
}

.rw-offer-part,
.rw-offer-details {
	max-width: var(--rw-offer-reading-width);
	margin-inline: auto;
	scroll-margin-top: 24px;
}

.rw-offer-part + .rw-offer-part,
.rw-offer-details {
	margin-top: clamp(58px, 9vw, 94px);
	padding-top: clamp(38px, 6vw, 58px);
	border-top: 1px solid var(--rw-color-border);
}

.rw-offer-part h2,
.rw-offer-details h2 {
	margin: 0 0 28px;
	color: var(--rw-color-ink);
	font-size: clamp(25px, 3.5vw, 34px);
	line-height: 1.2;
	letter-spacing: -0.02em;
	text-wrap: balance;
}

.rw-offer-part h3 {
	margin: clamp(38px, 6vw, 54px) 0 18px;
	color: var(--rw-color-ink);
	font-size: clamp(19px, 2.3vw, 23px);
	line-height: 1.32;
	text-wrap: pretty;
	scroll-margin-top: 24px;
}

.rw-offer-part p,
.rw-offer-part li {
	color: var(--rw-color-ink);
	font-size: 17px;
	line-height: 1.72;
	overflow-wrap: anywhere;
	text-wrap: pretty;
}

.rw-offer-part p {
	margin: 0 0 17px;
}

.rw-offer-part ul {
	margin: 8px 0 22px;
	padding-left: 28px;
}

.rw-offer-part li {
	padding-left: 5px;
}

.rw-offer-part li + li {
	margin-top: 10px;
}

.rw-offer-part strong {
	color: var(--rw-color-ink);
	font-weight: 780;
}

.rw-offer-part a,
.rw-offer-details a {
	color: var(--rw-color-brand-dark);
	font-weight: 700;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.rw-offer-details dl {
	margin: 0;
}

.rw-offer-details dl > div {
	display: grid;
	grid-template-columns: minmax(150px, 0.34fr) minmax(0, 1fr);
	gap: 22px;
	padding: 16px 0;
	border-bottom: 1px solid var(--rw-color-border);
}

.rw-offer-details dt {
	color: var(--rw-color-muted);
	font-weight: 650;
}

.rw-offer-details dd {
	margin: 0;
	color: var(--rw-color-ink);
	font-weight: 720;
	overflow-wrap: anywhere;
}

@media (max-width: 767.98px) {
	.rw-offer-page {
		margin-bottom: 48px;
	}

	.rw-offer-intro,
	.rw-offer-article {
		border-radius: 14px;
	}

	.rw-offer-intro__nav,
	.rw-offer-intro__actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.rw-offer-intro__nav a,
	.rw-offer-intro__actions a,
	.rw-offer-intro__actions button {
		width: 100%;
	}

	.rw-offer-part p,
	.rw-offer-part li {
		font-size: 16px;
		line-height: 1.68;
	}

	.rw-offer-details dl > div {
		grid-template-columns: 1fr;
		gap: 5px;
	}
}

@media print {
	@page {
		margin: 16mm 14mm;
	}

	#panel,
	.rw-header,
	.rw-offer-intro,
	.bx-footer,
	.bx-footer-section,
	.cookie-consent {
		display: none !important;
	}

	html,
	body,
	.bx-wrapper,
	.workarea,
	.bx-content-section,
	.bx-content,
	.rw-offer-page,
	.rw-offer-article {
		width: auto !important;
		max-width: none !important;
		margin: 0 !important;
		padding: 0 !important;
		border: 0 !important;
		box-shadow: none !important;
		background: #fff !important;
		color: #111 !important;
	}

	.rw-offer-print-heading {
		display: block;
		max-width: var(--rw-offer-reading-width);
		margin: 0 auto 28px;
		padding-bottom: 18px;
		border-bottom: 1px solid #bbb;
	}

	.rw-offer-print-heading h1 {
		margin: 0 0 8px;
		font-size: 24pt;
	}

	.rw-offer-print-heading p {
		margin: 0;
		font-size: 11pt;
	}

	.rw-offer-part p,
	.rw-offer-part li,
	.rw-offer-details dt,
	.rw-offer-details dd {
		color: #111 !important;
		font-size: 10.5pt;
		line-height: 1.45;
	}

	.rw-offer-part h2,
	.rw-offer-details h2 {
		font-size: 16pt;
	}

	.rw-offer-part h3 {
		font-size: 12.5pt;
		page-break-after: avoid;
	}

	.rw-offer-part p,
	.rw-offer-part li,
	.rw-offer-details dl > div {
		orphans: 3;
		widows: 3;
	}

	.rw-offer-part + .rw-offer-part,
	.rw-offer-details {
		page-break-before: always;
	}

	.rw-offer-article a {
		color: #111 !important;
		text-decoration: none;
	}
}
.rw-geo-block {
	border: 1px solid var(--rw-color-border);
	border-radius: var(--rw-radius-lg);
	background: #fff;
	box-shadow: 0 14px 34px rgba(24, 32, 43, 0.07);
	margin-bottom: 24px;
	padding: clamp(18px, 3vw, 28px);
}

.rw-geo-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.rw-geo-card {
	border: 1px solid var(--rw-color-border);
	border-radius: var(--rw-radius-lg);
	background: var(--rw-color-soft);
	color: var(--rw-color-ink);
	min-height: 150px;
	padding: 20px;
	text-decoration: none;
}

.rw-geo-card--active {
	background: linear-gradient(135deg, rgba(15, 118, 110, 0.14), rgba(15, 118, 110, 0.04));
}

.rw-geo-card span {
	color: var(--rw-color-brand);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.rw-geo-card strong {
	display: block;
	margin-top: 8px;
	font-size: 24px;
	line-height: 1.2;
}

.rw-geo-card p {
	margin: 12px 0 0;
	color: var(--rw-color-muted);
	line-height: 1.5;
}

.rw-geo-card--link:hover {
	border-color: var(--rw-color-brand);
	color: var(--rw-color-ink);
}

@media (max-width: 1023.98px) {
	.rw-geo-grid {
		grid-template-columns: 1fr;
	}
}
.rw-product-breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 16px;
	color: var(--rw-color-muted);
}

.rw-product-breadcrumbs a {
	color: var(--rw-color-brand);
	font-weight: 800;
}

.rw-product-detail {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
	gap: 24px;
	margin-bottom: 24px;
}

.rw-product-detail__media,
.rw-product-detail__summary,
.rw-product-info-card {
	border: 1px solid var(--rw-color-border);
	border-radius: var(--rw-radius-lg);
	background: #fff;
	box-shadow: 0 14px 34px rgba(24, 32, 43, 0.07);
}

.rw-product-detail__media {
	align-items: center;
	display: flex;
	justify-content: center;
	min-height: 420px;
	overflow: hidden;
	padding: clamp(16px, 3vw, 28px);
}

.rw-product-detail__media img {
	aspect-ratio: 1 / 1;
	border-radius: var(--rw-radius-md);
	display: block;
	height: auto;
	max-width: 100%;
	object-fit: cover;
	width: min(560px, 100%);
}

.rw-product-detail__summary {
	padding: clamp(20px, 3vw, 32px);
}

.rw-product-detail__eyebrow {
	color: var(--rw-color-brand);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
}

.rw-product-detail__summary h1 {
	font-size: clamp(32px, 5vw, 56px);
	line-height: 1.05;
	margin: 10px 0 16px;
}

.rw-product-detail__price {
	color: var(--rw-color-brand);
	font-size: clamp(30px, 4vw, 42px);
	font-weight: 900;
	margin-bottom: 16px;
}

.rw-product-detail__description {
	color: var(--rw-color-muted);
	font-size: 18px;
	line-height: 1.55;
}

.rw-product-detail__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
}

.rw-cart-add-form {
	margin: 0;
}

.rw-cart-add-form--primary {
	display: inline-flex;
}

.rw-button {
	align-items: center;
	background: var(--rw-color-brand);
	border: 1px solid var(--rw-color-brand);
	border-radius: var(--rw-radius-md);
	color: #fff;
	display: inline-flex;
	font-weight: 900;
	justify-content: center;
	min-height: 48px;
	padding: 12px 18px;
	text-decoration: none;
}

button.rw-button {
	cursor: pointer;
	font-family: inherit;
}

.rw-button:hover {
	color: #fff;
}

.rw-button--ghost {
	background: #fff;
	color: var(--rw-color-brand);
}

.rw-button--ghost:hover {
	color: var(--rw-color-brand);
}

.rw-product-info-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin-bottom: 24px;
}

.rw-product-info-card {
	padding: clamp(18px, 3vw, 28px);
}

.rw-product-info-card--wide {
	grid-column: 1 / -1;
}

.rw-product-info-card h2 {
	font-size: 24px;
	margin: 0 0 12px;
}

.rw-product-info-card p {
	color: var(--rw-color-muted);
	font-size: 17px;
	line-height: 1.55;
	margin: 0;
}

.rw-size-table-wrap {
	overflow-x: auto;
}

.rw-size-table-wrap table {
	border-collapse: collapse;
	min-width: 520px;
	width: 100%;
}

.rw-size-table-wrap th,
.rw-size-table-wrap td {
	border-bottom: 1px solid var(--rw-color-border);
	padding: 14px 12px;
	text-align: left;
}

.rw-size-table-wrap th {
	color: var(--rw-color-ink);
	font-weight: 900;
}

.rw-product-card__image {
	align-items: center;
	background: var(--rw-color-soft);
	border-radius: var(--rw-radius-md);
	display: flex;
	justify-content: center;
	margin-bottom: 12px;
	overflow: hidden;
}

.rw-product-card__image img {
	aspect-ratio: 1 / 1;
	display: block;
	object-fit: cover;
	width: 100%;
}

.rw-product-card__image picture,
.rw-product-detail__media picture {
	display: block;
	width: 100%;
}

.rw-product-card__image picture {
	aspect-ratio: 1 / 1;
	overflow: hidden;
}

.rw-product-card__image picture img {
	height: 100%;
}

.rw-product-card__image source,
.rw-product-detail__media source {
	display: none;
}

.rw-product-card em {
	color: var(--rw-color-brand);
	font-style: normal;
	font-weight: 900;
}

@media (max-width: 1023.98px) {
	.rw-product-detail,
	.rw-product-info-grid {
		grid-template-columns: 1fr;
	}

	.rw-product-detail__media {
		min-height: auto;
	}
}

@media (max-width: 575.98px) {
	.rw-product-detail__actions .rw-button {
		width: 100%;
	}
}
.rw-product-detail__summary,
.rw-product-info-card,
.rw-size-table-wrap {
	min-width: 0;
}

.rw-product-info-card p,
.rw-product-detail__description {
	overflow-wrap: anywhere;
}

@media (max-width: 575.98px) {
	.rw-size-table-wrap table {
		font-size: 14px;
		min-width: 0;
	}

	.rw-size-table-wrap th,
	.rw-size-table-wrap td {
		padding: 10px 6px;
	}
}
.rw-product-variants {
	border-top: 1px solid var(--rw-color-border);
	margin-top: 22px;
	padding-top: 22px;
}

.rw-variant-group + .rw-variant-group {
	margin-top: 18px;
}

.rw-variant-group h2 {
	font-size: 18px;
	margin: 0 0 12px;
}

.rw-color-options,
.rw-size-options {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.rw-color-option {
	align-items: center;
	border: 1px solid var(--rw-color-border);
	border-radius: var(--rw-radius-md);
	color: var(--rw-color-ink);
	display: inline-flex;
	font-weight: 900;
	gap: 8px;
	min-height: 42px;
	padding: 9px 12px;
}

.rw-color-option i {
	border: 1px solid rgba(24, 32, 43, 0.2);
	border-radius: 999px;
	display: inline-block;
	height: 18px;
	width: 18px;
}

.rw-size-option {
	border: 1px solid var(--rw-color-border);
	border-radius: var(--rw-radius-md);
	color: var(--rw-color-ink);
	display: grid;
	gap: 4px;
	min-width: 156px;
	padding: 12px;
	text-decoration: none;
}

.rw-size-option:hover {
	border-color: var(--rw-color-brand);
	color: var(--rw-color-ink);
}

.rw-size-option button {
	background: transparent;
	border: 0;
	color: inherit;
	cursor: pointer;
	display: grid;
	font: inherit;
	gap: 4px;
	margin: 0;
	padding: 0;
	text-align: left;
	width: 100%;
}

.rw-size-option span,
.rw-size-option strong,
.rw-size-option em {
	display: block;
}

.rw-size-option span {
	font-weight: 900;
}

.rw-size-option strong {
	color: var(--rw-color-brand);
	font-size: 18px;
}

.rw-size-option em {
	color: var(--rw-color-muted);
	font-style: normal;
}

.rw-color-option.is-disabled,
.rw-size-option.is-disabled {
	background: #f3f6f8;
	color: #8a95a3;
	cursor: not-allowed;
	opacity: 0.72;
}

.rw-size-option.is-disabled strong {
	color: #8a95a3;
}

@media (max-width: 575.98px) {
	.rw-size-option {
		min-width: 100%;
	}
}
.rw-product-detail {
	align-items: start;
}

.rw-product-detail__media {
	align-items: flex-start;
}
.rw-product-detail__summary h1,
.rw-catalog-hero h1 {
	overflow-wrap: anywhere;
}
.rw-product-detail__summary h1 {
	font-size: clamp(30px, 4vw, 48px);
	overflow-wrap: break-word;
}

.rw-catalog-hero h1 {
	overflow-wrap: break-word;
}
.rw-product-detail__summary h1 {
	font-size: clamp(28px, 3vw, 40px);
	hyphens: none;
	overflow-wrap: normal;
	word-break: normal;
}
.rw-catalog-hero h1 {
	font-size: clamp(30px, 5vw, 56px);
	line-height: 1.05;
	hyphens: none;
	word-break: normal;
}

@media (max-width: 520px) {
	.rw-catalog-hero h1 {
		font-size: 28px;
		line-height: 1.08;
		overflow-wrap: normal;
	}
}
#pagetitle {
	max-width: 100%;
	hyphens: none;
	overflow-wrap: break-word;
	word-break: normal;
}

@media (max-width: 520px) {
	#pagetitle {
		font-size: 28px;
		line-height: 1.12;
	}
}
@media (max-width: 520px) {
	#pagetitle {
		font-size: 24px;
		line-height: 1.16;
		overflow-wrap: anywhere;
		word-break: break-word;
	}
}
.rw-search-page {
	display: grid;
	gap: 18px;
}

.rw-search-form,
.rw-search-stats {
	background: #fff;
	border: 1px solid var(--rw-color-border);
	border-radius: var(--rw-radius-lg);
	box-shadow: var(--rw-shadow-soft);
}

.rw-search-form {
	padding: 22px;
}

.rw-search-form label {
	display: block;
	font-weight: 800;
	margin-bottom: 10px;
}

.rw-search-form__row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 10px;
}

.rw-search-form input {
	border: 1px solid var(--rw-color-border);
	border-radius: var(--rw-radius-md);
	font: inherit;
	min-height: 48px;
	padding: 0 16px;
	width: 100%;
}

.rw-search-form button {
	background: var(--rw-color-brand);
	border: 0;
	border-radius: var(--rw-radius-md);
	color: #fff;
	font-weight: 900;
	min-height: 48px;
	padding: 0 24px;
}

.rw-search-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 14px 18px;
}

.rw-search-stats span {
	background: var(--rw-color-soft);
	border: 1px solid var(--rw-color-border);
	border-radius: 999px;
	color: var(--rw-color-ink);
	font-size: 13px;
	font-weight: 800;
	padding: 8px 12px;
}

.rw-search-results small {
	color: var(--rw-color-muted);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.35;
	margin-top: 10px;
}

.rw-search-empty {
	background: #fff;
}

@media (max-width: 560px) {
	.rw-search-form__row {
		grid-template-columns: 1fr;
	}

	.rw-search-form button {
		width: 100%;
	}
}
.rw-search-page,
.rw-search-page * {
	box-sizing: border-box;
}

.rw-search-form,
.rw-search-form__row,
.rw-search-form input,
.rw-search-form button,
.rw-search-results,
.rw-search-results .rw-product-card {
	max-width: 100%;
	min-width: 0;
}

.rw-search-form label,
.rw-search-results strong,
.rw-search-results small {
	overflow-wrap: anywhere;
}

@media (max-width: 560px) {
	.rw-search-form {
		padding: 18px;
	}

	.rw-search-form label {
		font-size: 16px;
		line-height: 1.35;
	}
}
@media (max-width: 560px) {
	.rw-search-page {
		max-width: calc(100vw - 32px);
		width: calc(100vw - 32px);
	}

	.rw-search-stats {
		display: grid;
		grid-template-columns: 1fr;
	}

	.rw-search-stats span {
		width: 100%;
	}
}
.rw-filter-panel {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin-top: 14px;
}

.rw-filter-panel label {
	margin: 0;
}

.rw-filter-panel span {
	display: block;
	font-size: 13px;
	font-weight: 800;
	margin-bottom: 7px;
}

.rw-filter-panel select {
	background: #fff;
	border: 1px solid var(--rw-color-border);
	border-radius: var(--rw-radius-md);
	font: inherit;
	min-height: 44px;
	padding: 0 12px;
	width: 100%;
}

.rw-discount-badge {
	align-self: flex-start;
	background: #fee2e2;
	border-radius: 999px;
	color: #991b1b;
	font-size: 12px;
	font-weight: 900;
	margin-top: 8px;
	padding: 6px 10px;
}

.rw-cart-message {
	border: 1px solid var(--rw-color-border);
	border-radius: var(--rw-radius-md);
	font-weight: 800;
	margin-bottom: 16px;
	padding: 14px 16px;
}

.rw-cart-message--success {
	background: #ecfdf5;
	color: #065f46;
}

.rw-cart-message--error {
	background: #fef2f2;
	color: #991b1b;
}

.rw-checkout-page {
	margin: 0 auto 40px;
	max-width: 1180px;
	padding: 0 16px;
}

.rw-checkout-hero {
	background: #ffffff;
	border: 1px solid var(--rw-color-border);
	border-radius: var(--rw-radius-lg);
	box-shadow: var(--rw-shadow-sm);
	margin-bottom: 18px;
	padding: 26px;
}

.rw-checkout-hero p {
	color: var(--rw-color-muted);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0;
	margin: 0 0 8px;
	text-transform: uppercase;
}

.rw-checkout-hero h1 {
	color: var(--rw-color-ink);
	font-size: 30px;
	font-weight: 900;
	line-height: 1.15;
	margin: 0;
}

.rw-checkout-steps {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 18px;
}

.rw-checkout-steps span {
	background: var(--rw-color-soft);
	border: 1px solid var(--rw-color-border);
	border-radius: 999px;
	color: var(--rw-color-ink);
	font-size: 13px;
	font-weight: 900;
	padding: 8px 12px;
}

.rw-checkout-note {
	background: #ecfdf5;
	border: 1px solid #a7f3d0;
	border-radius: var(--rw-radius-md);
	color: #065f46;
	font-weight: 800;
	line-height: 1.45;
	margin-bottom: 18px;
	padding: 14px 16px;
}

.rw-cdek-status {
	background: #fff7ed;
	border: 1px solid rgba(217, 119, 6, 0.28);
	border-radius: var(--rw-radius-md);
	color: #7c2d12;
	display: grid;
	gap: 16px;
	grid-template-columns: minmax(220px, 0.9fr) minmax(260px, 1.1fr);
	margin-bottom: 18px;
	padding: 18px;
}

.rw-cdek-status p {
	color: #9a3412;
	font-size: 13px;
	font-weight: 900;
	margin: 0 0 6px;
	text-transform: uppercase;
}

.rw-cdek-status strong {
	color: var(--rw-color-ink);
	display: block;
	font-size: 18px;
	line-height: 1.35;
}

.rw-cdek-status ul {
	font-size: 14px;
	line-height: 1.55;
	margin: 0;
	padding-left: 18px;
}

.rw-psb-status {
	background: #eef2ff;
	border: 1px solid rgba(79, 70, 229, 0.22);
	border-radius: var(--rw-radius-md);
	color: #3730a3;
	display: grid;
	gap: 16px;
	grid-template-columns: minmax(220px, 0.9fr) minmax(260px, 1.1fr);
	margin-bottom: 18px;
	padding: 18px;
}

.rw-psb-status p {
	color: #4338ca;
	font-size: 13px;
	font-weight: 900;
	margin: 0 0 6px;
	text-transform: uppercase;
}

.rw-psb-status strong {
	color: var(--rw-color-ink);
	display: block;
	font-size: 18px;
	line-height: 1.35;
}

.rw-psb-status ul {
	font-size: 14px;
	line-height: 1.55;
	margin: 0;
	padding-left: 18px;
}

.rw-ofd1-status {
	background: #f0fdfa;
	border: 1px solid rgba(13, 148, 136, 0.24);
	border-radius: var(--rw-radius-md);
	color: #115e59;
	display: grid;
	gap: 16px;
	grid-template-columns: minmax(220px, 0.9fr) minmax(260px, 1.1fr);
	margin-bottom: 18px;
	padding: 18px;
}

.rw-ofd1-status p {
	color: #0f766e;
	font-size: 13px;
	font-weight: 900;
	margin: 0 0 6px;
	text-transform: uppercase;
}

.rw-ofd1-status strong {
	color: var(--rw-color-ink);
	display: block;
	font-size: 18px;
	line-height: 1.35;
}

.rw-ofd1-status ul {
	font-size: 14px;
	line-height: 1.55;
	margin: 0;
	padding-left: 18px;
}

.rw-email-status {
	background: #fdf2f8;
	border: 1px solid rgba(219, 39, 119, 0.22);
	border-radius: var(--rw-radius-md);
	color: #831843;
	display: grid;
	gap: 16px;
	grid-template-columns: minmax(220px, 0.9fr) minmax(260px, 1.1fr);
	margin-bottom: 18px;
	padding: 18px;
}

.rw-email-status p {
	color: #be185d;
	font-size: 13px;
	font-weight: 900;
	margin: 0 0 6px;
	text-transform: uppercase;
}

.rw-email-status strong {
	color: var(--rw-color-ink);
	display: block;
	font-size: 18px;
	line-height: 1.35;
}

.rw-email-status ul {
	font-size: 14px;
	line-height: 1.55;
	margin: 0;
	padding-left: 18px;
}

.rw-psb-payment-blocker {
	background: #eef2ff;
	border: 1px solid rgba(79, 70, 229, 0.22);
	border-radius: var(--rw-radius-md);
	color: #3730a3;
	margin: 18px 0;
	padding: 20px;
}

.rw-psb-payment-blocker h2 {
	color: var(--rw-color-ink);
	font-size: 24px;
	font-weight: 900;
	margin: 0 0 10px;
}

.rw-psb-payment-blocker p,
.rw-psb-payment-blocker li {
	font-size: 15px;
	line-height: 1.55;
}

.rw-checkout-component {
	background: #ffffff;
	border: 1px solid var(--rw-color-border);
	border-radius: var(--rw-radius-lg);
	box-shadow: var(--rw-shadow-sm);
	padding: 18px;
}

.rw-checkout-component input,
.rw-checkout-component textarea,
.rw-checkout-component select {
	max-width: 100%;
}

.rw-checkout-component .bx-soa-section {
	border-radius: var(--rw-radius-md);
	overflow: hidden;
}

.rw-checkout-component .bx-soa-section-title,
.rw-checkout-component .bx-soa-cart-total {
	font-weight: 900;
}

@media (max-width: 760px) {
	.rw-filter-panel {
		grid-template-columns: 1fr;
	}

	.rw-checkout-page {
		max-width: calc(100vw - 32px);
		padding: 0;
		width: calc(100vw - 32px);
	}

	.rw-checkout-hero,
	.rw-checkout-component {
		padding: 18px;
	}

	.rw-cdek-status {
		grid-template-columns: 1fr;
	}

	.rw-psb-status {
		grid-template-columns: 1fr;
	}

	.rw-ofd1-status {
		grid-template-columns: 1fr;
	}

	.rw-email-status {
		grid-template-columns: 1fr;
	}

	.rw-checkout-hero h1 {
		font-size: 24px;
	}

	.rw-checkout-body .bx-basket-fixed {
		display: none;
	}
}
