/* Основной контейнер секции */
.a060126-product-section {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/* Заголовок таблицы */
.a060126-product-section__title {
	margin: 40px 0 40px 0;
	font-size: 28px;
	line-height: 1.1;
	font-weight: 600;
	letter-spacing: -0.015em;
	color: #1d1d1f;
	text-align: center;
}

/* Оболочка таблицы */
.a060126-table {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 100%;
	background-color: #ffffff;
	border-radius: 18px;
	overflow: hidden;
	-webkit-box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

/* Шапка таблицы */
.a060126-table__head {
	display: none;
	background-color: #f5f5f7;
	border-bottom: 1px solid #eee;
}

/* Строка таблицы */
.a060126-table__row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding: 20px;
	border-bottom: 1px solid #f5f5f7;
	-webkit-transition: background-color 0.3s ease;
	-o-transition: background-color 0.3s ease;
	transition: background-color 0.3s ease;
}

.a060126-table__row:last-child {
	border-bottom: none;
}

/* Ячейка таблицы */
.a060126-table__cell {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 8px 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.a060126-table__cell--index {
	font-size: 24px;
	font-weight: 600;
	color: #ccc;
}

.a060126-table__cell--image {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.a060126-table__img-wrapper {
	position: relative;
	width: 120px;
	height: 120px;
	background-color: #fbfbfd;
	border-radius: 12px;
	overflow: hidden;
	cursor: -webkit-zoom-in;
	cursor: zoom-in;
	-webkit-transition: -webkit-transform 0.3s ease;
	transition: -webkit-transform 0.3s ease;
	-o-transition: transform 0.3s ease;
	transition: transform 0.3s ease;
	transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.a060126-table__img-wrapper:hover {
	-webkit-transform: scale(1.04);
	-ms-transform: scale(1.04);
	transform: scale(1.04);
}

.a060126-table__img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	display: block;
}

.a060126-table__cell--desc {
	font-size: 16px;
	line-height: 1.47059;
	font-weight: 400;
	color: #1d1d1f;
	/* text-align: center; */
}

/* Кнопка CTA */
.a060126-cta {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 100%;
	margin-top: 40px;
}

.a060126-cta__button {
	display: inline-block;
	min-width: 200px;
	padding: 12px 24px;
	background-color: #0071e3;
	border-radius: 980px;
	font-size: 17px;
	line-height: 1.17647;
	font-weight: 400;
	letter-spacing: -0.022em;
	color: #ffffff;
	text-decoration: none;
	text-align: center;
	cursor: pointer;
	border: none;
	-webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	-o-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.a060126-cta__button:hover {
	background-color: #0077ed;
	-webkit-transform: scale(1.02);
	-ms-transform: scale(1.02);
	transform: scale(1.02);
	text-decoration: none;
}

/* Pop-up (Модальное окно с затемнением) */
.a060126-modal {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	height: 100%;
	padding: 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background-color: rgba(0, 0, 0, 0.85);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	-webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	-o-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.a060126-modal--active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.a060126-modal__content {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	max-width: 90%;
	max-height: 80vh;
	-webkit-transform: scale(0.95);
	-ms-transform: scale(0.95);
	transform: scale(0.95);
	-webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	-o-transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.a060126-modal--active .a060126-modal__content {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.a060126-modal__img {
	display: block;
	max-width: 100%;
	max-height: 80vh;
	width: auto;
	height: auto;
	border-radius: 12px;
	/* -webkit-box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5); */
	/* box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5); */
}

.a060126-modal__close {
	position: absolute;
	top: -50px;
	right: 0;
	width: 44px;
	height: 44px;
	background-color: rgba(255, 255, 255, 0.1);
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #ffffff;
	-webkit-transition: background-color 0.3s ease;
	-o-transition: background-color 0.3s ease;
	transition: background-color 0.3s ease;
}

.a060126-modal__close:hover {
	background-color: rgba(255, 255, 255, 0.2);
}

.a060126-modal__close::before,
.a060126-modal__close::after {
	content: '';
	position: absolute;
	width: 2px;
	height: 20px;
	background-color: #ffffff;
}

.a060126-modal__close::before {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.a060126-modal__close::after {
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/* Адаптивность: Планшет (768px) */
@media only screen and (min-width: 768px) {
	.a060126-product-section__title {
		font-size: 40px;
	}

	.a060126-table__head {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		padding: 0 20px;
	}

	.a060126-table__head-cell {
		padding: 16px 10px;
		font-size: 12px;
		font-weight: 600;
		text-transform: uppercase;
		letter-spacing: 0.05em;
		color: #86868b;
	}

	.a060126-table__row {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}

	.a060126-table__row:hover {
		background-color: #fbfbfd;
	}

	.a060126-table__cell--index, 
	.a060126-table__head-cell--index {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 50px;
		flex: 0 0 50px;
	}

	.a060126-table__cell--image, 
	.a060126-table__head-cell--image {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 160px;
		flex: 0 0 160px;
		text-align: center;
	}

	.a060126-table__cell--desc, 
	.a060126-table__head-cell--desc {
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
		/* text-align: left; */
		/* text-align: center; */
		padding-left: 20px;
	}

	.a060126-table__img-wrapper {
		width: 100px;
		height: 100px;
	}

	.a060126-modal__close {
		top: 0;
		right: -60px;
	}
}

/* Адаптивность: Десктоп (1024px+) */
@media only screen and (min-width: 1024px) {
	.a060126-product-section {
		padding: 80px 20px;
	}

	.a060126-product-section__title {
		font-size: 48px;
	}

	.a060126-table__row {
		padding: 24px 20px;
	}

	.a060126-table__cell--desc {
		font-size: 19px;
	}

	.a060126-cta__button {
		padding: 18px 32px;
		font-size: 19px;
	}
}


