html {
	font-size: 20px;
}

.sect--title {
	height: 60px;
	margin: 20px 0;
	box-shadow: var(--shadow);
	border-radius: 15px;
	font-size: 40px;
	background: var(--color-white);
}

@media screen and (max-width: 1199px) {
	.sect--title {
		margin: 10px 0 20px;
		font-size: 17px;
		height: auto;
		line-height: 1.6;
		border-radius: 8px;
	}

}


.addBasketButtonClick .modal-param--field {
	padding: unset!important;
}


.rt-modal-content {
	max-height: unset!important;
}

.head-title {
	display: none!important;
}

/* === Каталог: секция и фон === */
.catalog-section {
	margin-top: 40px;
	padding-bottom: 44px;
	position: relative;
}

.catalog-section::before {
	content: "";
	position: absolute;
	width: calc(100% - 60px);
	left: 50%;
	height: 100%;
	background: rgba(255, 255, 255, 0.69);
	transform: translate(-50%, 0);
	border: 1px solid #FFFFFF03;
	backdrop-filter: blur(44px);
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
	border-radius: 15px;
}

/* === Балун (элемент с псевдоэлементом) === */
.catalog .balloon::after {
	top: unset;
	bottom: 15%;
	right: 97.7%;
}

/* === Заголовок секции === */
.catalog-section .sect--title {
	margin-bottom: 50px;
}

/* === Список секций (карточка) === */
.section-list--item {
	width: 100%;
	height: 235px;
	padding: 0 20px 15px;
	border: 5px solid #F48665;
	border-radius: 5px;
	box-shadow: 0 2px 2px 0 #00000040, 0 1px 5px 1px #00000040;

	background-repeat: no-repeat;
	background-position: center;
	background-size: auto !important;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	text-align: center;

	position: relative;
	z-index: 1;
}

/* Затемняющий оверлей */
.section-list--item::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0);
	z-index: -1;
}

/* === Заголовок карточки === */
.section-list--item-title {
	font-family: var(--font-accent);
	font-size: 28px;
	color: var(--color-rose);
	font-weight: 400;
	height: 50px;
	line-height: 50px;
}

.section-list--item {
	overflow: hidden;
}

.section-list--item img {
	width: auto;
	max-height: 150px;
	height: 100%;
}

.section-list--item a {
    position: absolute;
    bottom: 18px;
}

/* === Стрелки слайдера === */
.sections-arrows .swiper-button-prev,
.sections-arrows .swiper-button-next {
	--swiper-navigation-sides-offset: -4.3em;
	--swiper-navigation-top-offset: 60.3%;
}

.sections-arrows .swiper-button-prev::after,
.sections-arrows .swiper-button-next::after {
	display: none;
}

/* === Tooltip === */
.catalog-section .rt-tooltip {
	position: absolute;
	top: -10.7%;
}

@media (min-width: 1200px) {
	.catalog-section .balloon::after {
		top: -42%;
		left: 98.8%;
		z-index: 1;
	}
}

@media (max-width: 1199px) {
	.catalog-section::before {
		display: none;
	}

	.section-list--item {
		aspect-ratio: 245 / 125;
		height: 125px;
		padding: 0 10px 7px;
		background-size: 90px !important;
	}

	.section-list--item-title {
		height: 25px;
		line-height: 25px;
		font-size: 14px;
	}

	.sections-arrows .swiper-button-prev,
	.sections-arrows .swiper-button-next {
		--swiper-navigation-sides-offset: 0.5em;
	}

	.sections-arrows .swiper-button-prev img,
	.sections-arrows .swiper-button-next img {
		width: 28px;
		height: auto;
	}

	.catalog-section .rt-tooltip {
		display: none;
	}

	.section-list--item img {
		max-height: 80px;
	}

	.section-list--item a {
	    bottom: 10px;
	}
}