.df-detailing {
	--df-white: #fff;
	--df-black: #000;
	--df-dark: #131313;
	--df-btn: #e6e6e6;
	--df-btn-hover: #fff;
	font-family: "Montserrat", sans-serif;
	color: var(--df-white);
	background: #fff;
	box-sizing: border-box;
}

body.df-detailing-page {
	--df-section-y: 50px;
	--df-section-x: 24px;
	--df-title-size: 50px;
}

.df-bg,
.df-intro.df-bg,
.df-cards.df-bg,
.df-videos.df-bg,
.df-features.df-bg,
body.df-detailing-page--ppf .df-intro,
body.df-detailing-page--polishing .df-intro,
body.df-detailing-page--antichrome .df-cards--types,
body.df-detailing-page--ceramic .df-videos,
body.df-detailing-page--pdr .df-features,
body.df-detailing-page--cleaning .df-cards--types {
	background-color: #fff !important;
	background-image: url("https://dongfeng.by/wp-content/uploads/2026/08/back.jpg") !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
	background-size: cover !important;
}

@media (max-width: 1024px) {
	body.df-detailing-page {
		--df-section-y: 42px;
		--df-section-x: 20px;
		--df-title-size: 32px;
	}
}

@media (max-width: 767px) {
	body.df-detailing-page {
		--df-section-y: 30px;
		--df-section-x: 16px;
		--df-title-size: 24px;
	}
}

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

.df-detailing h1,
.df-detailing h2,
.df-detailing h3,
.df-detailing p,
.df-detailing a {
	font-family: "Montserrat", sans-serif;
}

.df-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 40px;
	background-color: var(--df-btn);
	color: var(--df-dark);
	font-family: "Montserrat", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.df-btn:hover,
.df-btn:focus {
	background-color: var(--df-btn-hover);
	color: var(--df-black);
	text-decoration: none;
}

.df-carousel {
	width: 100%;
	background: var(--df-dark);
}

.df-carousel__swiper {
	position: relative;
	width: 100%;
	min-height: 70vh;
}

.df-carousel__slide {
	min-height: 70vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 80px 24px 100px;
	background:
		radial-gradient(1200px 500px at 70% 20%, rgba(255, 255, 255, 0.08), transparent 55%),
		var(--df-dark);
}

.df-carousel__inner {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	text-align: left;
}

.df-carousel__kicker {
	margin: 0 0 16px;
	color: var(--df-white);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	opacity: 0.7;
}

.df-carousel__title {
	margin: 0 0 16px;
	color: var(--df-white);
	font-size: clamp(32px, 5vw, 56px);
	font-weight: 600;
	line-height: 1.15;
}

.df-carousel__subtitle {
	margin: 0 0 32px;
	max-width: 640px;
	color: var(--df-white);
	font-size: clamp(16px, 2vw, 20px);
	font-weight: 400;
	line-height: 1.5;
	opacity: 0.85;
}

.df-carousel__nav {
	position: absolute;
	top: 50%;
	z-index: 2;
	width: 48px;
	height: 48px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: var(--df-btn);
	color: var(--df-dark);
	cursor: pointer;
	transform: translateY(-50%);
}

.df-carousel__nav::after {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	margin: 0 auto;
	border-right: 2px solid var(--df-dark);
	border-bottom: 2px solid var(--df-dark);
}

.df-carousel__nav--prev {
	left: 24px;
}

.df-carousel__nav--prev::after {
	transform: rotate(135deg);
	margin-left: 4px;
}

.df-carousel__nav--next {
	right: 24px;
}

.df-carousel__nav--next::after {
	transform: rotate(-45deg);
	margin-right: 4px;
}

.df-carousel__nav:hover {
	background: var(--df-white);
}

.df-carousel__pagination {
	position: absolute;
	right: 0;
	bottom: 28px;
	left: 0;
	z-index: 2;
	display: flex;
	justify-content: center;
	gap: 8px;
}

.df-carousel .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	margin: 0;
	background: rgba(255, 255, 255, 0.35);
	border-radius: 50%;
	opacity: 1;
}

.df-carousel .swiper-pagination-bullet-active {
	background: var(--df-white);
}

.df-detailing--inner {
	min-height: 0;
	background: var(--df-dark);
}

.df-detailing__placeholder {
	max-width: 1100px;
	margin: 0 auto;
	padding: 80px 24px;
}

.df-detailing__placeholder h1 {
	margin: 0;
	color: var(--df-white);
	font-family: "Montserrat", sans-serif;
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 600;
}

@media (max-width: 767px) {
	.df-carousel__swiper,
	.df-carousel__slide {
		min-height: 60vh;
	}

	.df-carousel__nav {
		top: auto;
		bottom: 24px;
		transform: none;
	}

	.df-carousel__nav--prev {
		left: 16px;
	}

	.df-carousel__nav--next {
		right: 16px;
	}

	.df-carousel__pagination {
		bottom: 36px;
	}

	.df-btn {
		padding: 12px 28px;
		width: 100%;
		max-width: 280px;
	}
}
