.section-works .swiper-slide,
.section-category .col,
.section-category .col .data {
	border-radius: 25px;
}

.equipment-item img,
.review-item,
.section-contact .this,
.faq-item, 
.price-item {
	border-radius: 20px;
}

.section-category .col, .section-category .col .data {
	overflow: hidden;
}

.price-item .head span {
	font-weight: bold;
}

.price-item .this table tbody tr td {
    color: #fffe88;
}

header .contact svg {
    width: 36px;
    height: 36px;
    margin-right: 10px;
}

header .contact .phone {
	font-size: 22px;
}

header .menu {
	margin-left: auto;
	margin-right: auto;
}

@media (max-width: 780px) {
	.price-item {
		border-radius: 0;
	}

	.price-item .this table tbody tr td {
		background: none !important;
	}

	.price-item .this {
		overflow: visible;
		padding: 0;
	}

	.price-item .this table {
		width: 100%;
		display: block;
		border-collapse: separate;
		border-spacing: 0;
		min-width: unset;
	}

	.price-item .this table thead {
		display: none;
	}

	.price-item .this table tbody {
		display: block;
		width: 100%;
	}

	.price-item .this table tbody tr {
		display: block;
		width: 100%;
		margin-bottom: 15px;
		border: 1px solid #5e5d66;
		border-radius: 10px;
		background: hsla(0, 0%, 100%, .05);
		padding: 15px;
	}

	.price-item .this table tbody tr:nth-child(2n) {
		background: hsla(0, 0%, 100%, .1);
	}

	.price-item .this table tbody tr td {
		display: block;
		width: 100%;
		border: none;
		padding: 8px 0;
		font-size: 16px;
		text-align: left;
	}

	/* Для таблицы с 2 колонками (С монтажом) - стили по умолчанию */
	.price-item .this table tbody tr td:first-child {
		font-weight: 500;
		padding-bottom: 10px;
		margin-bottom: 8px;
		border-bottom: 1px solid rgba(94, 93, 102, 0.5);
	}

	.price-item .this table tbody tr td:last-child {
		font-weight: 600;
		color: #fff;
		padding-top: 8px;
		white-space: normal;
	}

	/* Для таблицы с 4 колонками (Без монтажа) - стили применяются только когда есть третья колонка */
	/* Переопределяем стили для первой колонки в таблице с 4 колонками */
	.price-item .this table tbody tr:has(td:nth-child(3)) td:first-child {
		border-bottom: none;
		margin-bottom: 0;
		padding-bottom: 8px;
	}

	.price-item .this table tbody tr:has(td:nth-child(3)) td:first-child::before {
		content: "Вид: ";
		font-weight: 600;
		color: rgba(255, 255, 255, 0.7);
	}

	.price-item .this table tbody tr:has(td:nth-child(3)) td:nth-child(2)::before {
		content: "Цвет: ";
		font-weight: 600;
		color: rgba(255, 255, 255, 0.7);
		margin-top: 8px;
		padding-top: 8px;
	}

	.price-item .this table tbody tr:has(td:nth-child(3)) td:nth-child(3)::before {
		content: "Тип: ";
		font-weight: 600;
		color: rgba(255, 255, 255, 0.7);
		margin-top: 8px;
		padding-top: 8px;
	}

	.price-item .this table tbody tr:has(td:nth-child(3)) td:nth-child(4)::before {
		content: "Цена: ";
		font-weight: 600;
		color: rgba(255, 255, 255, 0.7);
		margin-top: 8px;
		padding-top: 8px;
	}

	.price-item .this table tbody tr:has(td:nth-child(3)) td:nth-child(4) {
		font-weight: 600;
		color: #fff;
		white-space: normal;
		padding-top: 8px;
	}
}

/* Blog item styles */
.blog-item {
	color: #fff;
	text-decoration: none;
	display: block;
	height: 100%;
	transition: transform .3s ease;
}

.blog-item .image {
	width: 100%;
	height: 280px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 20px;
	margin-bottom: 25px;
	overflow: hidden;
	transition: transform .5s ease;
	position: relative;
}

.blog-item .image::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
	opacity: 0;
	transition: opacity .3s ease;
}

.blog-item .name {
	font-weight: 500;
	font-size: 24px;
	line-height: 130%;
	color: #FFFFFF;
	margin-bottom: 15px;
	transition: color .3s ease;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.blog-item .description {
	font-size: 16px;
	line-height: 150%;
	color: #FFFFFF;
	opacity: 0.7;
	margin-bottom: 20px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: opacity .3s ease;
}

.blog-item .readmore {
	font-weight: 600;
	font-size: 16px;
	color: #FFFFFF;
	opacity: 0.8;
	transition: opacity .3s ease, transform .3s ease;
	display: inline-block;
	position: relative;
}

.blog-item .readmore::after {
	content: '→';
	margin-left: 8px;
	display: inline-block;
	transition: transform .3s ease;
}

.blog-item:hover {
	transform: translateY(-5px);
}

.blog-item:hover .image {
	transform: scale(1.05);
}

.blog-item:hover .image::after {
	opacity: 1;
}

.blog-item:hover .name {
	color: #fffe88;
}

.blog-item:hover .description {
	opacity: 0.9;
}

.blog-item:hover .readmore {
	opacity: 1;
	transform: translateX(5px);
}

.blog-item:hover .readmore::after {
	transform: translateX(5px);
}

@media (max-width: 991px) {
	.blog-item .image {
		height: 240px;
	}

	.blog-item .name {
		font-size: 22px;
	}
}

@media (max-width: 767px) {
	.blog-item .image {
		height: 200px;
		margin-bottom: 20px;
	}

	.blog-item .name {
		font-size: 20px;
		margin-bottom: 12px;
	}

	.blog-item .description {
		font-size: 15px;
		margin-bottom: 15px;
	}
}

/* Стили для страницы поста блога */
.section-blog-post .image {
	padding-right: 50px;
	margin-bottom: 30px;
}

.section-blog-post .image img {
	max-width: 100%;
	height: auto;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.section-blog-post .data {
	display: flex;
	flex-direction: column;
}

.section-blog-post .data .s-title {
	font-weight: 600;
	font-size: 42px;
	line-height: 120%;
	color: #FFFFFF;
	margin-bottom: 25px;
}

.section-blog-post .data .date {
	font-size: 16px;
	color: #FFFFFF;
	opacity: 0.7;
	margin-bottom: 30px;
	font-weight: 500;
}

.section-blog-post .data .text {
	color: #FFFFFF;
	font-size: 18px;
	line-height: 170%;
	padding-top: 0;
	padding-bottom: 0;
}

.section-blog-post .data .text p {
	color: #FFFFFF;
	font-size: 18px;
	line-height: 170%;
	margin-bottom: 20px;
}

.section-blog-post .data .text p:last-child {
	margin-bottom: 0;
}

.section-blog-post .data .text h1,
.section-blog-post .data .text h2,
.section-blog-post .data .text h3,
.section-blog-post .data .text h4,
.section-blog-post .data .text h5,
.section-blog-post .data .text h6 {
	color: #FFFFFF;
	font-weight: 600;
	margin-top: 30px;
	margin-bottom: 20px;
	line-height: 130%;
}

.section-blog-post .data .text h2 {
	font-size: 32px;
}

.section-blog-post .data .text h3 {
	font-size: 28px;
}

.section-blog-post .data .text h4 {
	font-size: 24px;
}

.section-blog-post .data .text ul,
.section-blog-post .data .text ol {
	margin: 20px 0;
	padding-left: 30px;
}

.section-blog-post .data .text ul li,
.section-blog-post .data .text ol li {
	color: #FFFFFF;
	font-size: 18px;
	line-height: 170%;
	margin-bottom: 10px;
	opacity: 0.9;
}

.section-blog-post .data .text ul li::marker {
	color: #fffe88;
}

.section-blog-post .data .text a {
	color: #fffe88;
	text-decoration: underline;
	transition: opacity .3s ease;
}

.section-blog-post .data .text a:hover {
	opacity: 0.7;
}

.section-blog-post .data .text img {
	max-width: 100%;
	height: auto;
	border-radius: 15px;
	margin: 30px 0;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.section-blog-post .data .text blockquote {
	border-left: 4px solid #fffe88;
	padding-left: 20px;
	margin: 30px 0;
	font-style: italic;
	opacity: 0.9;
}

.section-blog-post .data .text code {
	background: rgba(255, 255, 255, 0.1);
	padding: 2px 8px;
	border-radius: 4px;
	font-size: 16px;
	font-family: monospace;
}

.section-blog-post .data .text pre {
	background: rgba(255, 255, 255, 0.05);
	padding: 20px;
	border-radius: 10px;
	overflow-x: auto;
	margin: 20px 0;
}

.section-blog-post .data .text pre code {
	background: none;
	padding: 0;
}

@media (max-width: 991px) {
	.section-blog-post .image {
		padding-right: 0;
		margin-bottom: 30px;
	}

	.section-blog-post .data .s-title {
		font-size: 36px;
	}
}

@media (max-width: 767px) {
	.breadcrumbs .links {
		flex-direction: column;
		gap: 10px;
	}

	.section-blog-post .image {
		padding-right: 0;
		margin-bottom: 25px;
	}

	.section-blog-post .data .s-title {
		font-size: 28px;
		margin-bottom: 20px;
	}

	.section-blog-post .data .date {
		font-size: 14px;
		margin-bottom: 20px;
	}

	.section-blog-post .data .text {
		font-size: 16px;
	}

	.section-blog-post .data .text p {
		font-size: 16px;
		margin-bottom: 15px;
	}

	.section-blog-post .data .text h2 {
		font-size: 24px;
	}

	.section-blog-post .data .text h3 {
		font-size: 22px;
	}

	.section-blog-post .data .text h4 {
		font-size: 20px;
	}

	.section-blog-post .data .text ul,
	.section-blog-post .data .text ol {
		padding-left: 20px;
	}

	.section-blog-post .data .text ul li,
	.section-blog-post .data .text ol li {
		font-size: 16px;
	}
}

/* Cookie Notice Styles */
.cookie-notice {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.95);
	padding: 20px;
	z-index: 10000;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
	transform: translateY(100%);
	transition: transform 0.3s ease-in-out;
}

.cookie-notice.show {
	transform: translateY(0);
}

.cookie-notice__content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

.cookie-notice__text {
	color: #FFFFFF;
	font-size: 16px;
	line-height: 1.5;
	margin: 0;
	flex: 1;
	min-width: 250px;
}

.cookie-notice__button {
	background: #fffe88;
	color: #000000;
	border: none;
	padding: 12px 30px;
	font-size: 16px;
	font-weight: 600;
	border-radius: 25px;
	cursor: pointer;
	transition: background 0.3s ease, transform 0.2s ease;
	white-space: nowrap;
}

.cookie-notice__button:hover {
	background: #fff9a0;
	transform: translateY(-2px);
}

.cookie-notice__button:active {
	transform: translateY(0);
}

@media (max-width: 767px) {
	.cookie-notice {
		padding: 15px;
	}

	.cookie-notice__content {
		flex-direction: column;
		align-items: stretch;
		gap: 15px;
	}

	.cookie-notice__text {
		font-size: 14px;
		text-align: center;
	}

	.cookie-notice__button {
		width: 100%;
		padding: 10px 20px;
		font-size: 14px;
	}
}

/* Form Consent Text Styles */
.form-consent {
	color: rgba(255, 255, 255, 0.6);
	font-size: 13px;
	line-height: 1.5;
	margin: 19px 0 0 0;
}

.form-consent a {
	color: #fffe88;
	text-decoration: underline;
	transition: opacity 0.3s ease;
}

.form-consent a:hover {
	opacity: 0.7;
}

#send-request .form-consent {
	color: rgba(255, 255, 255, 0.7);
	font-size: 13px;
	margin-top: 10px;
	text-align: left;
}

.section-hero .s-form .form-consent,
.section-contact .s-form .form-consent {
	margin-top: 12px;
}

.section-product .form-consent {
	margin-top: 15px;
	text-align: left;
}

.section-calculation .form-consent {
	margin-top: 12px;
}

@media (max-width: 767px) {
	.form-consent {
		font-size: 12px;
		margin-top: 10px;
	}

	#send-request .form-consent {
		font-size: 12px;
	}
}

/* Footer Policy Link Styles */
footer .bottom p a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: underline;
	transition: color 0.3s ease;
}

footer .bottom p a:hover {
	color: #fffe88;
}

/* Policy Page Styles */
.section.medium {
	padding: 60px 0;
}

.com_text__9WDi7 {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	color: #FFFFFF;
	font-size: 16px;
	line-height: 1.8;
}

.com_text__9WDi7 p {
	margin-bottom: 15px;
}

.com_text__9WDi7 p:last-child {
	margin-bottom: 0;
}

.com_text__9WDi7 b {
	font-weight: 600;
	color: #FFFFFF;
}

.com_text__9WDi7 u {
	text-decoration: underline;
}

.com_text__9WDi7 a {
	color: #fffe88;
	text-decoration: underline;
	transition: opacity 0.3s ease;
}

.com_text__9WDi7 a:hover {
	opacity: 0.7;
}

@media (max-width: 767px) {
	.section.medium {
		padding: 40px 0;
	}

	.com_text__9WDi7 {
		font-size: 14px;
		padding: 0 15px;
	}
}

.section-calculation .form-consent {
	color: #fff;
	opacity: .5;
	margin-top: 10px;
}

.section-calculation .this .s-form input[name=phone] {
	width: auto;
}

.section-contact .form-consent {
	font-size: 13px !important;
}

.s-form input[name=phone] {
	width: auto;
}