:root {
	--font-body: 'Inter', sans-serif;
	--font-heading: 'PT Sans Caption', sans-serif;
	--ease-out: cubic-bezier(0.23, 1, 0.32, 1);
	--ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
	--ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);
}

html {
	font-family: var(--font-body);
	height: 100%;
}
body {
	margin: 0;
}
main,
nav,
section,
summary {
	display: block;
}
a:focus-visible,
a:active {
	outline: 2px solid transparent;
	outline-offset: 2px;
}
img {
	border: 0;
	max-width: 100%;
	height: auto;
}
svg:not(:root) {
	overflow: hidden;
}
hr {
	box-sizing: content-box;
	height: 0;
}
button,
input {
	color: inherit;
	font: inherit;
	margin: 0;
}
button {
	overflow: visible;
	text-transform: none;
}
button,
html input[type='button'],
input[type='submit'] {
	cursor: pointer;
	border-radius: 0;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}
input {
	line-height: normal;
}
*,
:after,
:before {
	box-sizing: border-box;
}
body,
form,
h3,
hr,
ul {
	margin: 0;
	padding: 0;
}
h3 {
	font-size: inherit;
	font-weight: inherit;
}
img,
svg {
	vertical-align: middle;
}
ul {
	list-style: none;
}
* {
	min-height: 0;
	min-width: 0;
}

/* Page layout */
body,
html {
	height: 100%;
}
.page {
	color: #000;
	background-color: #fff;
	font: 16px / 1.85 var(--font-body);
	display: flex;
	flex-direction: column;
	min-height: 100%;
	position: relative;
	overflow-x: hidden;
}
.page > * {
	flex-shrink: 0;
}
.page__main {
	flex-grow: 1;
}

/* Section */
.section {
	border-color: transparent;
	border-style: solid;
	border-width: 0;
}
.section,
.section__content {
	position: relative;
}

/* Button */
.button {
	appearance: none;
	display: inline-block;
	vertical-align: middle;
	padding: 0;
	border-color: transparent;
	border-style: solid;
	border-width: 0;
	text-decoration: none;
	background-color: transparent;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.button_style_1 {
	background: #222;
	color: #fff;
	font:
		600 16px/1 -apple-system,
		BlinkMacSystemFont,
		sans-serif;
	padding: 14px 32px;
	border-radius: 6px;
	border: none;
	cursor: pointer;
	transition: background-color 150ms var(--ease-out);
}
.button_style_1:hover {
	background: #0e3753;
}

.button__text {
	position: relative;
	z-index: 1;
}

/* Wysiwyg */
.wysiwyg-string a {
	text-decoration: none;
	color: inherit;
	border-bottom-color: inherit;
	border-bottom-style: solid;
	border-bottom-width: 1px;
}
.wysiwyg-string ul {
	list-style: disc inside;
}

/* Form */
.form__input + .form__input {
	margin-top: 20px;
}
.form__item + .form__item {
	margin-top: 20px;
}
.form__submit {
	margin-top: 40px;
}
.textarea {
	width: 100%;
	min-height: 150px;
	padding: 12px 15px;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.5;
	border: 1px solid #e8e8e8;
	border-radius: 0;
	resize: vertical;
}
.textarea:focus {
	outline: 2px solid transparent;
	outline-offset: 2px;
	border-color: #222;
}

/* Section header/subheader */
.catalog__header {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 28px;
	line-height: 1.2;
	color: #222;
	margin-bottom: 15px;
}
.catalog__header_align_center {
	text-align: center;
}
.catalog__header_width_limit {
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}
.catalog__subheader {
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.5;
	color: #555;
	margin-bottom: 20px;
}
.catalog__subheader_align_center {
	text-align: center;
}
.catalog__subheader_width_limit {
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}
.contacts__header {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 28px;
	line-height: 1.2;
	color: #222;
	margin-bottom: 15px;
}
.contacts__header_align_center {
	text-align: center;
}
.contacts__header_width_limit {
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

/* Catalog grid (index page) */
.catalog-grid {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
}
.catalog-grid_use-gutter {
	margin-left: -20px;
	margin-right: -20px;
}
.catalog-grid__item {
	flex-grow: 0;
	flex-shrink: 0;
}
.catalog-grid_use-gutter .catalog-grid__item {
	padding-left: 0px;
	padding-right: 0px;
	margin-left: 20px;
	margin-right: 20px;
}
.catalog-grid__item:first-child {
	margin-top: 0;
}
.catalog-grid_columns_2 .catalog-grid__item {
	width: 33.33%;
}
.catalog-grid_columns_3 .catalog-grid__item {
	width: 33.33%;
}
.catalog-grid_columns_4 .catalog-grid__item {
	width: 25%;
}
.catalog-grid_mobile-columns_1 .catalog-grid__item {
	width: 100%;
}
.catalog-grid_justify-content_center {
	justify-content: center;
}

/* Contacts info list */
.contacts__info-list {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
}
.contacts__info-list_use-gutter {
	margin-left: -20px;
	margin-right: -20px;
}
.contacts__info-list__item {
	flex-grow: 0;
	flex-shrink: 0;
}
.contacts__info-list_use-gutter .contacts__info-list__item {
	padding-left: 20px;
	padding-right: 20px;
}
.contacts__info-list__item:first-child {
	margin-top: 0;
}
.contacts__info-list_columns_3 .contacts__info-list__item {
	width: 33.3333333333%;
}
.contacts__info-list_columns_4 .contacts__info-list__item {
	width: 25%;
}
@media (max-width: 800px) {
	.contacts__info-list_mobile-columns_1 .contacts__info-list__item {
		width: 100%;
	}
}
.contacts__info-list_justify-content_center {
	justify-content: center;
}

.on-top-button {
	background-color: transparent;
	border: none;
	padding: 0;
	display: none;
	position: fixed;
	z-index: 60;
	background-color: #000;
	opacity: 0.75;
	width: 32px;
	height: 32px;
	transition: opacity 150ms var(--ease-out);
}
.on-top-button svg {
	position: absolute;
	top: 7px;
	left: 7px;
	width: 18px;
	height: 18px;
	fill: #fff;
}
.on-top-button_desktop {
	bottom: 40px;
	right: 40px;
}
.on-top-button_mobile {
	right: 20px;
	bottom: 20px;
}

.cards-08__inner {
	max-width: 1200px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 20px;
	padding-left: 20px;
}
.section_container-width_full .cards-08__inner {
	max-width: 100%;
}
.section_container-width_1620 .cards-08__inner {
	max-width: 1620px;
}
.section_container-width_1000 .cards-08__inner {
	max-width: 1000px;
}
.cards-08-list_align_center {
	justify-content: center;
}

.cards-08-item__inner {
	display: block;
	position: relative;
}
.cards-08-item__img {
	position: absolute;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.cards-08-item__content {
	position: absolute;
	z-index: 2;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	padding: 40px 30px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}
.cards-08-item__content > :last-child {
	margin-bottom: 0;
}
.cards-08-item__content_vertical_bottom {
	justify-content: flex-end;
}
.cards-08-item__content:before {
	content: '';
	position: absolute;
	z-index: -1;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
}
.cards-08-item__header {
	flex-grow: 0;
	flex-shrink: 0;
}

.cards-19 {
	padding-left: 60px;
	padding-right: 60px;
}
.cards-19__inner {
	max-width: 1400px;
	margin-right: auto;
	margin-left: auto;
}
.section_container-width_full .cards-19__inner {
	max-width: 100%;
}
.section_container-width_1620 .cards-19__inner {
	max-width: 100%;
}
.section_container-width_1000 .cards-19__inner {
	max-width: 1000px;
}
@media (max-width: 800px) {
	body:not(.bazium-no-resp) .cards-19 {
		padding-left: 16px;
		padding-right: 16px;
	}
	body:not(.bazium-no-resp) .pizza__card {
		width: calc(50% - 10px);
	}
}
@media (max-width: 440px) {
	body:not(.bazium-no-resp) .pizza__card {
		width: 100%;
	}
}
.pizza__card__list {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-left: 5%;
	margin-right: 5%;
	justify-content: center;
}
.pizza__card {
	width: calc(25% - 15px);
	display: flex;
	padding: 5px;
}
.cards-19-item__inner {
	background-color: #f5f5f5;
	padding: 15px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}
.cards-19-item__inner_with-bg {
	background-color: #f5f5f5;
}
.cards-19-item__inner_padding_small {
	padding: 15px;
}
.cards-19-item__inner_align_left {
	text-align: left;
}
.cards-19-item__header {
	margin-bottom: 10px;
	min-height: 44px;
	display: flex;
	align-items: flex-start;
}
.cards-19-item__title {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 16px;
	line-height: 1.3;
	color: #222;
}
.cards-19-item__body {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}
.cards-19-item__img-container {
	overflow: hidden;
	margin-bottom: 15px;
	aspect-ratio: 3 / 4;
	flex-shrink: 0;
}
.cards-19-item__img {
	width: 100%;
	height: auto;
	object-fit: cover;
}
.cards-19-item__buttons {
	margin-top: auto;
	padding-top: 15px;
}
.cards-19-item__btn1-container {
	width: 100%;
}
.cards-19-item__btn1-container_stretch .cards-19-item__btn1 {
	width: 100%;
	text-align: center;
}
.cards-19-item__btn1 {
	display: inline-block;
	text-decoration: none;
	background-color: #222;
	color: #fff;
	padding: 12px 24px;
	border-radius: 6px;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 14px;
	text-align: center;
	transition:
		background-color 150ms var(--ease-out),
		transform 150ms var(--ease-out);
}
.cards-19-item__btn1:hover {
	background-color: #0e3753;
	transform: translateY(-2px);
}

.form-04__inner {
	max-width: 1200px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 20px;
	padding-left: 20px;
}
.section_container-width_full .form-04__inner {
	max-width: 100%;
}
.section_container-width_1620 .form-04__inner {
	max-width: 1620px;
}
.section_container-width_1000 .form-04__inner {
	max-width: 1000px;
}
@media (max-width: 800px) {
	body:not(.bazium-no-resp) .form-04__inner {
		padding-right: 10px;
		padding-left: 10px;
	}
}
.form-04__content {
	margin-top: 30px;
}

/* Partners block (index page) */
.partners__inner {
	max-width: 1200px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 20px;
	padding-left: 20px;
}
.section_container-width_full .partners__inner {
	max-width: 100%;
}
.section_container-width_1620 .partners__inner {
	max-width: 1620px;
}
.section_container-width_1000 .partners__inner {
	max-width: 1000px;
}
.partners__title:last-child {
	margin-bottom: 0;
}

/* Uncommon (nestandartnye-zerkala) */
.uncommon__h1 {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 40px;
	line-height: 1.2;
	text-align: center;
	max-width: 900px;
	margin: 60px auto 30px;
	padding: 0 20px;
}
.uncommon__h2 {
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 18px;
	line-height: 1.6;
	text-align: center;
	color: #555;
	max-width: 800px;
	margin: 0 auto 50px;
	padding: 0 20px;
}
.uncommon__block1,
.uncommon__block2 {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
	max-width: 1000px;
	margin: 0 auto 50px;
	padding: 0 20px;
}
.uncommon__block1 img,
.uncommon__block2 img {
	flex: 0 0 45%;
	max-width: 45%;
	height: auto;
	border-radius: 12px;
	object-fit: cover;
}
.uncommon__block1 div,
.uncommon__block2 div {
	flex: 1;
	font-size: 18px;
	line-height: 1.7;
	color: #333;
	max-width: 45%;
}
.uncommon__block2 {
	flex-direction: row-reverse;
}
.uncommon__block3 {
	text-align: center;
	margin-bottom: 50px;
}
.uncommon__block3 img {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
}

/* Catalog text block (pizza page) */
.catalog__text-inner {
	max-width: 1200px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 20px;
	padding-left: 20px;
}
.section_container-width_full .catalog__text-inner {
	max-width: 100%;
}
.section_container-width_1620 .catalog__text-inner {
	max-width: 1620px;
}
.section_container-width_1000 .catalog__text-inner {
	max-width: 1000px;
}
.catalog__text-title:last-child {
	margin-bottom: 0;
}

.cover-20 {
	z-index: 10;
}
.cover-20__inner {
	max-width: 1200px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 20px;
	padding-left: 20px;
}
.section_container-width_full .cover-20__inner {
	max-width: 100%;
}
.section_container-width_1620 .cover-20__inner {
	max-width: 1620px;
}
.section_container-width_1000 .cover-20__inner {
	max-width: 1000px;
}
.cover-20__carousels {
	display: block;
}
.section_container-width_full .cover-20__carousels {
	margin-left: -20px;
	margin-right: -20px;
}
.cover-20-carousels {
	display: block;
	text-decoration: none;
}
.cover-20-carousels__row {
	overflow: hidden;
}
.section_container-width_full
	.cover-20-carousels__row:not(.cover-20-carousels__row_fading) {
	margin-left: -10%;
	margin-right: -10%;
}
.cover-20-carousels__row_fading {
	mask-image: radial-gradient(circle, #000, #000 80%, transparent);
}
.cover-20-carousel {
	display: flex;
	align-items: center;
}
.cover-20-carousel__group,
.cover-20-carousel__item {
	flex-grow: 0;
	flex-shrink: 0;
	display: flex;
	align-items: center;
}
.cover-20-carousel__item {
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
}
.cover-20-carousel__item-img-container {
	overflow: hidden;
}

.page-header-23 {
	width: 100%;
}
.page-header-23__inner {
	max-width: 1200px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 20px;
	padding-left: 20px;
}
.section_container-width_full .page-header-23__inner {
	max-width: 100%;
}
.section_container-width_1620 .page-header-23__inner {
	max-width: 1620px;
}
.section_container-width_1000 .page-header-23__inner {
	max-width: 1000px;
}
.page-header-23__content {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 20px;
}
.page-header-23__brand-logo {
	display: inline-block;
}
.page-header-23__controls {
	flex-shrink: 0;
}
.page-header-23-nav__list {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	row-gap: 10px;
}
.page-header-23-nav__item {
	position: relative;
}
.page-header-23-nav__link {
	display: block;
	text-decoration: none;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
}
.page-header-23-nav__text-container {
	position: relative;
}
.page-header-23-nav__text {
	white-space: nowrap;
	line-height: 1;
	position: relative;
	z-index: 1;
}
.page-header-23-nav__list_effects_01 .page-header-23-nav__text-container:after {
	position: absolute;
	z-index: 0;
	left: 0;
	top: 100%;
	width: 100%;
	content: '';
	display: none;
}
.page-header-23-nav__list_effects_01
	.page-header-23-nav__link:hover
	.page-header-23-nav__text-container:after {
	display: block;
}
.page-header-23-nav__list_effects_01.page-header-23-nav__list_effects_smooth
	.page-header-23-nav__text-container:after {
	display: block;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 300ms var(--ease-out);
}
.page-header-23-nav__list_effects_01.page-header-23-nav__list_effects_smooth
	.page-header-23-nav__link:hover
	.page-header-23-nav__text-container:after {
	transform: scaleX(1);
}
.page-header-23-nav__sub {
	visibility: hidden;
	position: absolute;
	z-index: 40;
	top: 100%;
	left: 0;
	padding-top: 20px;
	overflow: visible;
}
.page-header-23-nav__sub-indent {
	display: none;
}
.page-header-23-nav__list_effects_01 .page-header-23-nav__sub-indent {
	display: block;
}
.page-header-23-nav__sub-inner {
	text-align: left;
	border-style: solid;
	border-color: transparent;
	overflow-y: auto;
}
.page-header-23-type1_1 {
	column-count: 1;
}
.page-header-23-type1__item {
	display: inline-block;
}
.page-header-23-type1__item:last-child {
	margin-bottom: 0;
}
.page-header-23-type1__link {
	text-decoration: none;
}
.page-header-23-controls {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 20px;
}
.page-header-23-controls__phone-tel {
	font-family: var(--font-heading);
	font-weight: 700;
	font-style: normal;
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: 0;
	color: #222;
	border-bottom: none !important;
}
.page-header-23-controls__phone-tel a,
.page-header-23-controls a[href^='tel:'],
a.page-header-23-controls__phone-tel {
	text-decoration: none !important;
	border-bottom: none !important;
	color: inherit;
}
.page-header-23_view_4 .page-header-23__content {
	justify-content: space-between;
}
.page-header-23_view_4 .page-header-23__nav {
	flex-shrink: 1;
	flex-grow: 0;
	width: 50%;
}
.page-header-23_view_4 .page-header-23-nav__list {
	justify-content: flex-start;
}
.page-header-23_view_4 .page-header-23__brand {
	flex-shrink: 0;
	flex-grow: 1;
	text-align: center;
}
.page-header-23_view_4 .page-header-23__controls {
	flex-shrink: 1;
	flex-grow: 0;
	width: 50%;
}

.hr__inner {
	max-width: 1200px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 20px;
	padding-left: 20px;
	display: flex;
	flex-direction: row;
	align-items: center;
	padding-left: 0;
	padding-right: 0;
}
.section_container-width_full .hr__inner {
	max-width: 100%;
}
.section_container-width_1620 .hr__inner {
	max-width: 1620px;
}
.section_container-width_1000 .hr__inner {
	max-width: 1000px;
}
.hr__inner_text-align_center {
	justify-content: center;
}

/* Footer */
.page-footer-02__inner {
	max-width: 1200px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 20px;
	padding-left: 20px;
}
.section_container-width_full .page-footer-02__inner {
	max-width: 100%;
}
.section_container-width_1620 .page-footer-02__inner {
	max-width: 1620px;
}
.section_container-width_1000 .page-footer-02__inner {
	max-width: 1000px;
}
.page-footer-02-content {
	display: flex;
	justify-content: left;
	align-items: flex-start;
	margin-left: -20px;
	margin-right: -20px;
}
.page-footer-02-content_align_center {
	justify-content: center;
}
.page-footer-02-content__column {
	padding-left: 20px;
	padding-right: 20px;
	width: 25%;
}
.page-footer-02-column__inner {
	text-align: left;
}
.page-footer-02-content_align_center .page-footer-02-column__inner {
	text-align: center;
}
a.page-footer-02-column__title {
	display: block;
	text-decoration: none;
	color: inherit;
}

/* Button-01 */
.button-01__inner {
	max-width: 1200px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 20px;
	padding-left: 20px;
}
.section_container-width_full .button-01__inner {
	max-width: 100%;
}
.section_container-width_1620 .button-01__inner {
	max-width: 1620px;
}
.section_container-width_1000 .button-01__inner {
	max-width: 1000px;
}
.button-01__item {
	text-align: center;
}

/* Site footer copyright block */
.site-footer-copyright__inner {
	max-width: 1200px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 20px;
	padding-left: 20px;
}
.section_container-width_full .site-footer-copyright__inner {
	max-width: 100%;
}
.section_container-width_1620 .site-footer-copyright__inner {
	max-width: 1620px;
}
.section_container-width_1000 .site-footer-copyright__inner {
	max-width: 1000px;
}

/* Inner (info page) */
.inner {
	max-width: 800px;
	margin: 0 auto;
	line-height: 1.6;
	color: #333;
}
.inner h1 {
	text-align: center;
	font-size: 32px;
	font-weight: 600;
	margin-bottom: 1.5em;
}
.inner h2 {
	font-size: 26px;
	border-bottom: 2px solid #eee;
	padding-bottom: 0.3em;
	margin-top: 1.5em;
}
.inner ol,
.inner p,
.inner ul {
	font-size: 16px;
	text-align: left;
}
.inner li {
	margin-bottom: 0.5em;
}
.attention {
	color: #e74c3c;
	font-weight: 700;
}

/* ============================================================
   Page-specific overrides
   ============================================================ */

/* index.html: page-index__section-0 (cards-08) */
.page-index__section-0 .catalog-grid {
	align-items: center;
	justify-content: center;
}
.page-index__section-0 .cards-08-list__item {
	margin-top: 50px;
}
.page-index__section-0 .cards-08-item__inner {
	transition: transform 200ms var(--ease-out);
}
.page-index__section-0 .cards-08-item__inner:hover {
	transform: scale(1.03);
}
.page-index__section-0 .wysiwyg-string a {
	border-bottom-width: 1px;
}
.page-index__section-0 .cards-08-item__header {
	font-family: var(--font-heading);
	font-weight: 700;
	font-style: normal;
	font-size: 32px;
	line-height: 1.2;
	letter-spacing: 0;
	color: #fff;
	margin-bottom: 10px;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}
.page-index__section-0 .cards-08-item__content:before {
	background-color: #000;
	opacity: 0.65;
}

/* index.html: page-index__section-2 (cover-20) */
.page-index__section-2 .cover-20-carousel__item {
	padding-right: 100px;
}

/* pizza.html: page-catalog__section-1 (text-70) */
.page-catalog__section-1 .wysiwyg-string a {
	border-bottom-width: 1px;
}

/* pizza__header */
.pizza__header {
	max-width: 800px;
	margin: 10px auto 20px;
	padding: 10px;
	font: 600 18px/1.6 var(--font-heading);
	color: #333;
	text-align: center;
	border: 3px solid #000;
	border-radius: 6px;
}

.page-catalog__section-3 {
	margin: 50px 0 20px 0;
}

/* pizza form block – apple style */
.page-catalog__section-3 .section__content {
	background: #fafafa;
	border-radius: 16px;
	padding: 50px 40px;
	max-width: 640px;
	margin: 0 auto;
}
.page-catalog__section-3 .catalog__header {
	font: 600 24px/1.3 var(--font-heading);
	color: #1d1d1f;
	margin-bottom: 10px;
}
.page-catalog__section-3 .catalog__subheader {
	font: 400 15px/1.7 var(--font-body);
	color: #6e6e73;
	margin-bottom: 35px;
	max-width: 480px;
	margin-left: auto;
	margin-right: auto;
}
.page-catalog__section-3 .textarea {
	border: 1px solid #d2d2d7;
	border-radius: 12px;
	padding: 16px 18px;
	font: 400 16px/1.5 var(--font-body);
	background: #fff;
	color: #1d1d1f;
	resize: vertical;
	min-height: 160px;
	transition: border-color 150ms var(--ease-out);
}
.page-catalog__section-3 .textarea:focus {
	outline: 2px solid transparent;
	outline-offset: 2px;
	border-color: #0071e3;
	box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.15);
}
.page-catalog__section-3 .form__submit {
	margin-top: 24px;
	text-align: center;
}

/* mirrors page – two columns in row */
.mirrors-row {
	display: flex;
}
.mirrors__column {
	flex: 1;
	min-height: 80vh;
	background-size: cover;
	background-position: center;
	position: relative;
	overflow: hidden;
}
.mirrors__column:before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.8) 0%,
		rgba(0, 0, 0, 0.6) 100%
	);
	transition: opacity 200ms var(--ease-out);
}
.mirrors-column__content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	height: 100%;
	padding: 40px 30px;
	box-sizing: border-box;
}
.mirrors-column__content-inner {
	max-width: 450px;
}
.mirrors-column__header {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 38px;
	line-height: 1.2;
	color: #fff;
	margin-bottom: 16px;
	text-shadow:
		0 2px 12px rgba(0, 0, 0, 0.7),
		0 0 40px rgba(0, 0, 0, 0.3);
}
.mirrors-column__text {
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 18px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.95);
	margin-bottom: 40px;
	text-shadow:
		0 1px 8px rgba(0, 0, 0, 0.6),
		0 0 30px rgba(0, 0, 0, 0.3);
}
.mirrors-column__btn {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 18px;
	text-decoration: none;
	border-radius: 12px;
	padding: 18px 50px;
	background-color: #fff;
	color: #111;
	border: none;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
	transition:
		background-color 150ms var(--ease-out),
		color 150ms var(--ease-out),
		transform 150ms var(--ease-out);
}
.mirrors-column__btn:hover {
	background-color: #111;
	color: #fff;
	transform: translateY(-2px);
}

/* Standart (standartnye-zerkala) */
.standart__slider {
	position: relative;
	max-width: 900px;
	margin: 0 auto 40px;
	overflow: hidden;
}
.standart__slider-track {
	display: flex;
	transition: transform 350ms var(--ease-out);
}
.standart__slider-track img {
	width: 100%;
	flex-shrink: 0;
	object-fit: contain;
}
.standart__slider-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 48px;
	height: 48px;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.9);
	font-size: 20px;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	transition: background-color 150ms var(--ease-out);
	z-index: 2;
}
.standart__slider-btn:hover {
	background: #fff;
}
.standart__slider-btn--prev {
	left: 12px;
}
.standart__slider-btn--next {
	right: 12px;
}
.standart__h {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 36px;
	line-height: 1.3;
	text-align: center;
	max-width: 900px;
	margin: 50px auto;
	padding: 0 20px;
}
.standart__ozon-link {
	text-align: center;
	margin-bottom: 50px;
}
.standart__ozon-link a {
	display: block;
	width: 100vw;
	padding: 40px 40px;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 48px;
	text-decoration: none;
	text-align: center;
	color: #fff;
	background: #004279;
	box-sizing: border-box;
	transition:
		background-color 150ms var(--ease-out),
		transform 150ms var(--ease-out);
}
.standart__ozon-link a:hover {
	background: #003561;
	transform: translateY(-2px);
}

.page-contacts__section-0 .section__content {
	padding-top: 15px;
	padding-bottom: 50px;
}
.page-contacts__section-0 .contacts__header {
	font-family: var(--font-heading);
	font-weight: 700;
	font-style: normal;
	font-size: 52px;
	line-height: 1;
	letter-spacing: 0;
	color: #fff;
	text-align: center;
	margin-bottom: 30px;
}
.page-contacts__section-0 .promo-04-item__title {
	font-family: var(--font-heading);
	font-weight: 700;
	font-style: normal;
	font-size: 22px;
	line-height: 1.3;
	letter-spacing: 0;
	color: #fff;
	margin-bottom: 6px;
}
.page-contacts__section-0 .promo-04-item__icon-wrapper {
	margin-bottom: 30px;
}
.page-contacts__section-0 .promo-04-item__icon {
	border-radius: 100px;
}

/* Callback form (obratnyy-zvonok) */
.callback {
	max-width: 600px;
	margin: 60px auto;
	padding: 0 20px;
}
.callback__title {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 36px;
	text-align: center;
	margin-bottom: 12px;
}
.callback__subtitle {
	font-size: 17px;
	color: #666;
	text-align: center;
	margin-bottom: 40px;
}
.callback__form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.callback__field input,
.callback__field textarea {
	width: 100%;
	padding: 16px 18px;
	font-size: 16px;
	font-family: var(--font-body);
	border: 1px solid #ddd;
	border-radius: 10px;
	background: #fafafa;
	outline: none;
	transition: border-color 150ms var(--ease-out);
	box-sizing: border-box;
}
.callback__field input:focus,
.callback__field textarea:focus {
	border-color: #0071e3;
}
.callback__field textarea {
	height: 120px;
	resize: vertical;
}
.callback__field input.is-invalid {
	border-color: #e30000;
	background: #fff5f5;
}
.callback__error {
	display: none;
	margin-top: 6px;
	font-size: 14px;
	color: #e30000;
}
.callback__field input.is-invalid ~ .callback__error {
	display: block;
}
.callback__submit {
	padding: 18px 36px;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 17px;
	color: #fff;
	background: #0071e3;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	transition:
		background-color 150ms var(--ease-out),
		transform 150ms var(--ease-out);
}
.callback__submit:hover {
	background: #005bb5;
	transform: translateY(-2px);
}

/* Header section overrides */
.site-header .section__content {
	padding-top: 10px;
	padding-bottom: 10px;
}
.site-header .page-header-23__brand-logo img {
	width: 200px;
	height: auto;
	max-width: none;
	object-fit: contain;
}
.site-header a[href^='tel:'] {
	text-decoration: none !important;
	border-bottom: none !important;
}
.site-header .page-header-23-nav__list {
	column-gap: 1vw;
}
.site-header .page-header-23-nav__text {
	font-family: var(--font-heading);
	font-weight: 700;
	font-style: normal;
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: 0;
}
.site-header
	.page-header-23-nav__list_effects_01
	.page-header-23-nav__text-container:after {
	background-color: #0e3753;
	height: 3px;
	margin-top: 6px;
}
.site-header .page-header-23-nav__sub-inner {
	padding: 30px;
	background-color: #fff;
	border-color: #0e3753;
	border-width: 3px;
	border-radius: 0;
}
.site-header .page-header-23-type1__link {
	font-family: var(--font-heading);
	font-weight: 700;
	font-style: normal;
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: 0;
	color: #000;
}
.site-header .page-header-23-type1 {
	column-gap: 30px;
}
.site-header .page-header-23-type1__item {
	margin-bottom: 10px;
	width: 200px;
}
.site-header .page-header-23-controls__phone-tel {
	font-family: var(--font-heading);
	font-weight: 700;
	font-style: normal;
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: 0;
	color: #222;
}
.site-header .page-header-23-nav__link .page-header-23-nav__text {
	color: #000;
}
.site-header
	.page-header-23-nav__list_effects_01
	.page-header-23-nav__link:hover
	.page-header-23-nav__text,
.site-header .page-header-23-type1__link:hover {
	color: #0e3753;
}

/* HR section overrides */
.site-hr-top .section__content {
	padding-top: 0;
	padding-bottom: 0;
}
.site-hr-top .wysiwyg-string a {
	border-bottom-width: 1px;
}
.site-hr-top .hr-line {
	height: 2px;
	background-color: #141414;
	width: 100%;
}
.site-hr-bottom .section__content {
	padding-top: 20px;
	padding-bottom: 20px;
}
.site-hr-bottom .wysiwyg-string a {
	border-bottom-width: 1px;
}
.site-hr-bottom .hr-line {
	height: 2px;
	background-color: #141414;
	width: 100%;
}

/* Footer section overrides */
.site-footer-contacts .section__content {
	padding-top: 0;
	padding-bottom: 0;
}
.site-footer-contacts .wysiwyg-string a {
	border-bottom-color: #fff;
	border-bottom-width: 1px;
}
.site-footer-contacts .wysiwyg-string a:hover {
	color: #000;
	border-bottom-color: #4274ff;
}

.site-footer-contacts .page-footer-02-column__title {
	font-family: var(--font-heading);
	font-weight: 700;
	font-style: normal;
	font-size: 18px;
	line-height: 1.25;
	letter-spacing: 0.1em;
	margin-bottom: 10px;
}

/* Button section override */
.site-footer-btn .section__content {
	padding-top: 0;
	padding-bottom: 15px;
}
.site-footer-btn .wysiwyg-string a {
	border-bottom-width: 1px;
}
.site-footer-btn .button-01__content {
	text-align: center;
}

/* Text-70 footer override */
.site-footer-copyright .section__content {
	padding-top: 15px;
	padding-bottom: 15px;
}
.site-footer-copyright .wysiwyg-string a {
	border-bottom-width: 1px;
}
.site-footer-copyright .site-footer-copyright__text {
	font-family: var(--font-body);
	font-weight: 400;
	font-style: normal;
	font-size: 12px;
	line-height: 1.25;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	text-align: center;
}

.text__align__left {
	text-align: left;
}

/* Callback form success fade */
.callback__form.is-sent {
	opacity: 0;
	transform: translateY(8px);
	transition:
		opacity 250ms var(--ease-out),
		transform 250ms var(--ease-out);
	pointer-events: none;
}
.callback__success {
	opacity: 0;
	transform: translateY(8px);
	transition:
		opacity 300ms var(--ease-out) 100ms,
		transform 300ms var(--ease-out) 100ms;
	text-align: center;
	font-size: 18px;
	margin-top: 40px;
}
.callback__success.is-visible {
	opacity: 1;
	transform: translateY(0);
}

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

/* Screen reader only (visually hidden) */
.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Breadcrumbs */
.breadcrumbs {
	max-width: 1200px;
	margin: 0 auto;
	padding: 16px 20px 0;
}
.breadcrumbs__list {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0;
	gap: 4px;
}
.breadcrumbs__item {
	font-size: 14px;
	color: #888;
}
.breadcrumbs__item:not(:last-child)::after {
	content: ' / ';
	color: #bbb;
	margin: 0 2px;
}
.breadcrumbs__link {
	color: #555;
	text-decoration: none;
	transition: color 150ms var(--ease-out);
}
.breadcrumbs__link:hover {
	color: #0071e3;
}
.breadcrumbs__current {
	color: #222;
}

/* Index intro */
.index-intro__inner,
.mirrors-intro__inner,
.standart-intro__inner,
.uncommon-intro__inner,
.pizza-intro__inner {
	max-width: 900px;
	margin: 30px auto 40px;
	padding: 0 20px;
}
.index-intro__lead {
	font-size: 18px;
	line-height: 1.7;
	color: #444;
	text-align: center;
}

/* Index about section */
.index-about {
	max-width: 900px;
	margin: 40px auto 60px;
	padding: 0 20px;
}
.index-about h2 {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 28px;
	line-height: 1.3;
	color: #222;
	margin-top: 40px;
	margin-bottom: 16px;
}
.index-about p {
	font-size: 16px;
	line-height: 1.7;
	color: #444;
	margin-bottom: 16px;
}
.index-features {
	padding-left: 20px;
}
.index-features li {
	font-size: 16px;
	line-height: 1.7;
	color: #444;
	margin-bottom: 12px;
	list-style: disc outside;
}
.index-cta {
	margin-top: 30px;
	padding: 20px;
	background: #f5f5f5;
	border-radius: 8px;
	text-align: center;
	font-size: 17px;
}

/* Mirrors details */
.mirrors-details,
.standart-details,
.uncommon-details,
.pizza-details {
	max-width: 900px;
	margin: 50px auto 60px;
	padding: 0 20px;
}
.mirrors-details h2,
.standart-details h2,
.uncommon-details h2,
.pizza-details h2 {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 26px;
	line-height: 1.3;
	color: #222;
	margin-top: 40px;
	margin-bottom: 16px;
}
.mirrors-details p,
.standart-details p,
.uncommon-details p,
.pizza-details p {
	font-size: 16px;
	line-height: 1.7;
	color: #444;
	margin-bottom: 16px;
}
.mirrors-details ul,
.standart-details ul,
.uncommon-details ul,
.pizza-details ul,
.mirrors-details ol,
.standart-details ol,
.uncommon-details ol,
.pizza-details ol {
	padding-left: 24px;
	margin-bottom: 16px;
}
.mirrors-details li,
.standart-details li,
.uncommon-details li,
.pizza-details li {
	font-size: 16px;
	line-height: 1.7;
	color: #444;
	margin-bottom: 8px;
}
.mirrors-details a,
.standart-details a,
.uncommon-details a,
.pizza-details a {
	color: #0071e3;
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: border-color 150ms var(--ease-out);
}
.mirrors-details a:hover,
.standart-details a:hover,
.uncommon-details a:hover,
.pizza-details a:hover {
	border-bottom-color: #0071e3;
}
.mirrors-cta,
.standart-cta,
.uncommon-cta,
.pizza-cta {
	margin-top: 30px;
	padding: 20px;
	background: #f5f5f5;
	border-radius: 8px;
	text-align: center;
	font-size: 17px;
}

/* Mirrors intro */
.mirrors-intro p {
	font-size: 17px;
	line-height: 1.7;
	color: #444;
	margin-bottom: 16px;
}

/* Standart intro */
.standart-intro p {
	font-size: 17px;
	line-height: 1.7;
	color: #444;
	margin-bottom: 16px;
}

/* Uncommon intro */
.uncommon-intro p {
	font-size: 17px;
	line-height: 1.7;
	color: #444;
	margin-bottom: 16px;
}

/* Pizza intro */
.pizza-intro p {
	font-size: 17px;
	line-height: 1.7;
	color: #444;
	margin-bottom: 16px;
}

/* Pizza section headings */
.pizza-details h2:first-of-type {
	margin-top: 0;
}

/* Pizza product descriptions */
.cards-19-item__desc {
	font-size: 14px;
	line-height: 1.6;
	color: #666;
	margin: 0 0 12px;
}

/* Mirrors column image overlay */
.mirrors__column {
	position: relative;
	overflow: hidden;
}
.mirrors__column-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}
.mirrors__column::before {
	z-index: 1;
}
.mirrors-column__content {
	z-index: 2;
}

/* ============================================================
   Responsive: Tablet (≤ 900px)
   ============================================================ */
@media (max-width: 900px) {
	/* Header: stack nav / logo / controls */
	.page-header-23_view_4 .page-header-23__content {
		flex-wrap: wrap;
		justify-content: center;
		gap: 12px;
	}
	.page-header-23_view_4 .page-header-23__nav {
		order: 2;
		width: 100%;
	}
	.page-header-23_view_4 .page-header-23__brand {
		order: 1;
		width: 100%;
		flex-grow: 0;
	}
	.page-header-23_view_4 .page-header-23__controls {
		order: 3;
		width: 100%;
	}
	.page-header-23-nav__list {
		justify-content: center;
		gap: 60px;
	}
	.page-header-23-nav__text {
		font-size: 16px;
	}
	.page-header-23-controls {
		justify-content: center;
	}

	/* Footer: prevent phone/email wrapping */
	.page-footer-02-column__title {
		white-space: nowrap;
		font-size: 16px;
	}

	/* Catalog grid: 2 cols → 1 col */
	.catalog-grid_columns_2 .catalog-grid__item,
	.catalog-grid_columns_3 .catalog-grid__item,
	.catalog-grid_columns_4 .catalog-grid__item {
		width: 50%;
	}

	/* Pizza cards: 4 cols → 2 cols */
	.pizza__card {
		width: calc(50% - 10px);
	}

	/* Index cards: both fully visible */
	.page-index__section-0 .cards-08-list__item {
		margin-top: 0;
	}
	.page-index__section-0 .cards-08-item__inner {
		padding-bottom: 70%;
	}
	.page-index__section-0 .cards-08-item__content {
		padding: 30px 24px;
	}
	.page-index__section-0 .cards-08-item__header {
		font-size: 28px;
		line-height: 1.25;
	}

	/* Mirrors: stack columns */
	.mirrors-row {
		flex-direction: column;
	}
	.mirrors__column {
		min-height: 50vh;
	}

	/* Uncommon blocks: stack */
	.uncommon__block1,
	.uncommon__block2 {
		flex-direction: column;
		gap: 20px;
	}
	.uncommon__block1 img,
	.uncommon__block2 img {
		flex: none;
		max-width: 100%;
		width: 100%;
	}
	.uncommon__block1 div,
	.uncommon__block2 div {
		flex: none;
		max-width: 100%;
		width: 100%;
	}
	.uncommon__block2 {
		flex-direction: column;
	}

	/* Footer: 2 cols → 1 col */
	.page-footer-02-content__column {
		width: 50%;
	}

	/* Standart ozon link: smaller font */
	.standart__ozon-link a {
		font-size: 32px;
		padding: 30px 20px;
	}

	/* Standart heading */
	.standart__h {
		font-size: 28px;
	}

	/* Contacts header */
	.page-contacts__section-0 .contacts__header {
		font-size: 36px;
	}

	/* Uncommon h1 */
	.uncommon__h1 {
		font-size: 30px;
		margin: 40px auto 20px;
	}
}

/* ============================================================
   Responsive: Mobile (≤ 600px)
   ============================================================ */
@media (max-width: 600px) {
	/* Header: phone + button on one line, nav centered */
	.site-header .section__content {
		padding-top: 8px !important;
		padding-bottom: 8px !important;
	}
	.page-header-23_view_4 .page-header-23__content {
		gap: 14px !important;
	}
	.site-header .page-header-23__brand-logo img {
		width: 170px !important;
		height: auto !important;
	}
	.page-header-23-controls {
		flex-wrap: nowrap !important;
		justify-content: center !important;
		align-items: center !important;
		gap: 10px !important;
	}
	.page-header-23-controls > div:last-child {
		width: auto !important;
	}
	.page-header-23-controls > div:first-child {
		width: auto !important;
	}
	.page-header-23-controls .button_style_1 {
		width: auto !important;
		max-width: none !important;
		white-space: nowrap !important;
		padding: 10px 18px !important;
		font-size: 14px !important;
		border-radius: 6px !important;
	}
	.page-header-23-nav__list {
		justify-content: center !important;
		width: 100% !important;
		gap: 60px !important;
	}
	.page-header-23-nav__text {
		font-size: 15px !important;
		letter-spacing: 0.01em !important;
	}
	.page-header-23-controls__phone-tel {
		font-size: 15px !important;
		font-weight: 600 !important;
		white-space: nowrap !important;
	}

	/* Catalog grid: 1 col */
	.catalog-grid_columns_2 .catalog-grid__item,
	.catalog-grid_columns_3 .catalog-grid__item,
	.catalog-grid_columns_4 .catalog-grid__item {
		width: 100%;
	}

	/* Index cards: no top margin on any card */
	.page-index__section-0 .cards-08-list__item {
		margin-top: 0 !important;
	}

	/* Pizza cards: 1 col */
	.pizza__card {
		width: 100%;
	}

	/* Pizza header */
	.pizza__header {
		font-size: 15px;
		padding: 8px 10px;
	}

	/* Pizza card list margins */
	.pizza__card__list {
		margin-left: 10px;
		margin-right: 10px;
		gap: 12px;
	}

	/* Footer: stack columns, prevent wrapping */
	.page-footer-02-content {
		flex-direction: column;
		align-items: center;
		gap: 12px;
	}
	.page-footer-02-content__column {
		width: 100%;
		text-align: center;
	}
	.page-footer-02-column__title {
		white-space: nowrap;
		font-size: 15px;
		display: inline-block;
	}

	/* Standart ozon link */
	.standart__ozon-link a {
		font-size: 24px;
		padding: 24px 16px;
	}

	/* Standart heading */
	.standart__h {
		font-size: 22px;
		margin: 30px auto;
		padding: 0 16px;
	}

	/* Standart slider */
	.standart__slider {
		margin: 0 16px 30px;
	}
	.standart__slider-btn {
		width: 40px;
		height: 40px;
		font-size: 16px;
	}

	/* Callback form */
	.callback {
		margin: 30px auto;
		padding: 0 16px;
	}
	.callback__title {
		font-size: 26px;
	}
	.callback__subtitle {
		font-size: 15px;
		margin-bottom: 24px;
	}

	/* Uncommon h1 */
	.uncommon__h1 {
		font-size: 24px;
		margin: 30px auto 16px;
		padding: 0 16px;
	}
	.uncommon__h2 {
		font-size: 16px;
		margin-bottom: 30px;
		padding: 0 16px;
	}

	/* Inner (info page) */
	.inner h1 {
		font-size: 24px;
	}
	.inner h2 {
		font-size: 20px;
	}

	.inner__info {
		margin: 0 16px;
	}

	/* Index about h2 */
	.index-about h2 {
		font-size: 22px;
	}

	/* Pizza form block */
	.page-catalog__section-3 .section__content {
		padding: 30px 20px;
		border-radius: 12px;
	}
	.page-catalog__section-3 .catalog__header {
		font-size: 20px;
	}

	/* Section header */
	.catalog__header,
	.contacts__header {
		font-size: 22px;
	}

	/* Contacts header */
	.page-contacts__section-0 .contacts__header {
		font-size: 28px;
	}
	.page-contacts__section-0 .promo-04-item__title {
		font-size: 18px;
	}

	/* Mirrors column */
	.mirrors__column {
		min-height: 40vh;
	}
	.mirrors-column__header {
		font-size: 28px;
	}
	.mirrors-column__text {
		font-size: 16px;
		margin-bottom: 24px;
	}
	.mirrors-column__btn {
		font-size: 16px;
		padding: 14px 36px;
	}

	/* Cards-19 item title */
	.cards-19-item__title {
		font-size: 14px;
	}

	/* Page index section-0 header */
	.page-index__section-0 .cards-08-item__header {
		font-size: 22px;
	}
}

/* ============================================================
   Responsive: Small mobile (≤ 400px)
   ============================================================ */
@media (max-width: 400px) {
	.uncommon__h1 {
		font-size: 20px;
	}
	.standart__ozon-link a {
		font-size: 20px;
		padding: 20px 12px;
	}
	.page-contacts__section-0 .contacts__header {
		font-size: 24px;
	}
	.page-index__section-0 .cards-08-item__header {
		font-size: 18px;
	}
}
