
/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
	--orange:     #e77b3d;
	--orange-dark:#d16527;
	--bg-dark:    #1C1C1C;
	--bg-header:  #222222;
	--bg-nav:     #2A2A2A;
	--text-light: #FFFFFF;
	--text-muted: #AAAAAA;
	--border:     #F5A800;
	--max-width:  1200px;
	--font-head:  'Oswald', sans-serif;
	--font-body:  'Noto Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
	background: var(--bg-dark);
	color: var(--text-light);
	font-family: var(--font-body);
	font-size: 15px;
	line-height: 1.5;
    overflow-x: hidden;
}

main {
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; }

/* ===== анимации появления ===== */
.reveal {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal--fade  { transform: none; }
.reveal--left  { transform: translateX(-120px); }
.reveal.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal--right { transform: translateX(120px); }

/* ===== HEADER ===== */
.header__topbar {
	border-bottom: 2px solid var(--orange);
	transition: max-height 0.35s ease, opacity 0.35s ease;
	max-height: 120px;
	min-height: 80px;
	overflow: hidden;
	opacity: 1;
}

.header__topbar.hidden {
	max-height: 0;
	opacity: 0;
	border-bottom-width: 0;
}

.header__nav {
	background: var(--bg-nav);
	position: sticky;
	top: 0;
	z-index: 100;
}

.header__topbar-inner {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 12px 20px;
	display: flex;
	align-items: center;
	gap: 32px;
}


/* Logo */
.header__logo {
	flex-shrink: 0;
	display: flex;
	align-items: center;
}

.header__logo img {
	height: 54px;
	width: auto;
	object-fit: contain;
}

.header__logo-fallback {
	font-family: var(--font-head);
	font-size: 22px;
	font-weight: 700;
	color: var(--orange);
	letter-spacing: 1px;
	line-height: 1;
}

.header__logo-fallback span {
	color: var(--text-light);
}

/* Contacts block */
.header__contacts {
	display: flex;
	align-items: center;
	gap: 28px;
	flex-wrap: wrap;
	margin-left: auto;
}

.header__contact-item {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--text-light);
	font-size: 14px;
	transition: color 0.2s;
}

.header__contact-item:hover { color: var(--orange); }

.header__contact-item svg {
	flex-shrink: 0;
	fill: var(--orange);
	width: 16px;
	height: 16px;
}

/* ===== NAV ===== */
.header__nav {
	background: var(--bg-nav);
}

.header__nav-inner {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	align-items: center;
	gap: 4px;
}

.nav__links {
	display: flex;
	align-items: center;
	gap: 8px;
	list-style: none;
}

.nav__links a {
	display: block;
	padding: 12px;
	font-family: var(--font-head);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.5px;
	color: var(--text-light);
	text-transform: uppercase;
	transition: color 0.2s;
	position: relative;
}

.nav__links a::after {
	content: '';
	position: absolute;
	bottom: 0; left: 50%; right: 50%;
	height: 2px;
	background: var(--orange);
	transition: left 0.2s, right 0.2s;
}

.nav__links a:hover,
.nav__links a.active { color: var(--orange); }

.nav__links a:hover::after,
.nav__links a.active::after { left: 0; right: 0; }

/* Social icons in nav */
.nav__socials {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-left: auto;
	margin-right: auto;
}

.nav__socials a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: 1px solid #444;
	transition: border-color 0.2s, background 0.2s;
}

.nav__socials a svg {
	width: 18px;
	height: 18px;
	fill: var(--text-muted);
	transition: fill 0.2s;
}

.nav__socials a:hover {
	border-color: var(--orange);
	background: rgba(245,168,0,0.08);
}

.nav__socials a:hover svg { fill: var(--orange); }

/* CTA Button */
.nav__cta {
	margin-left: 0;
}

.btn-cta {
	display: inline-block;
	padding: 8px 20px;
	background: var(--orange);
	color: #111;
	font-family: var(--font-head);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	border-radius: 20px;
	border: 2px solid var(--orange);
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
	white-space: nowrap;
}

.btn-cta:hover {
	background: transparent;
	color: var(--orange);
}

/* ===== BURGER (mobile) ===== */
.burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 36px;
	height: 36px;
	cursor: pointer;
	margin-left: auto;
	background: none;
	border: none;
	padding: 4px;
}

.burger span {
	display: block;
	height: 2px;
	background: var(--text-light);
	border-radius: 2px;
	transition: transform 0.3s, opacity 0.3s;
}

.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== DROPDOWN (desktop) ===== */
.nav__dropdown {
	position: relative;
}

/* Триггер — стилизуем под обычную nav-ссылку */
.nav__dropdown-trigger {
	display: block;
	padding: 12px 12px;
	font-family: var(--font-head);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.5px;
	color: var(--text-light);
	text-transform: uppercase;
	background: none;
	border: none;
	cursor: pointer;
	transition: color 0.2s;
	position: relative;
	white-space: nowrap;
	margin-bottom: 0.5px;
}

/* Подчёркивание — как у обычных ссылок */
.nav__dropdown-trigger::after {
	content: '';
	position: absolute;
	bottom: 0; left: 50%; right: 50%;
	height: 2px;
	background: var(--orange);
	transition: left 0.2s, right 0.2s;
}

.nav__dropdown-trigger:hover,
.nav__dropdown-trigger.active { color: var(--orange); }

.nav__dropdown-trigger:hover::after,
.nav__dropdown-trigger.active::after { left: 0; right: 0; }

/* Список — скрыт по умолчанию */
.nav__dropdown-list {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 180px;
	background: var(--bg-header);
	border: 1px solid #333;
	border-top: 2px solid var(--orange);
	list-style: none;
	z-index: 200;
}

.nav__dropdown.open .nav__dropdown-list { display: block; }

.nav__dropdown-list li a {
	display: block;
	padding: 12px 20px;
	font-family: var(--font-head);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: var(--text-light);
	border-bottom: 1px solid #2e2e2e;
	transition: color 0.2s, background 0.2s;
}

.nav__dropdown-list li:last-child a { border-bottom: none; }

.nav__dropdown-list li a:hover,
.nav__dropdown-list li a.active {
	color: var(--orange);
	background: rgba(231,123,61,0.07);
}

/* ===== ACCORDION (drawer) ===== */
.nav__drawer-accordion-trigger {
	display: block;
	width: 100%;
	padding: 14px 20px;
	font-family: var(--font-head);
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: var(--text-light);
	background: none;
	border: none;
	border-bottom: 1px solid #333;
	text-align: left;
	cursor: pointer;
	transition: color 0.2s, background 0.2s;
}

.nav__drawer-accordion-trigger:hover,
.nav__drawer-accordion-trigger.active {
	color: var(--orange);
	background: rgba(245,168,0,0.06);
}

/* Список — скрыт, раскрывается через maxHeight в JS */
.nav__drawer-accordion-list {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	background: #1e1e1e;
}

.nav__drawer-accordion-list a {
	padding-left: 36px;
	border-bottom: 1px solid #2a2a2a;
}

/* Ширина выпадашки по родителю */
.nav__dropdown-list {
	min-width: unset;
	width: 100%;
}

/* Стрелки */
.nav__dropdown-arrow,
.nav__drawer-accordion-arrow {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
	transition: transform 0.2s ease;
}

/* Поворот при открытии */
.nav__dropdown.open .nav__dropdown-arrow,
.nav__drawer-accordion.open .nav__drawer-accordion-arrow {
	transform: rotate(180deg);
}

/* ===== PROGRESSIVE NAV HIDE ===== */
@media (max-width: 1024px) {
	.nav-hide-1024 { display: none; }
}
@media (max-width: 920px) {
	.nav-hide-920 { display: none; }
}

/* ===== MOBILE NAV DRAWER ===== */
.nav__drawer {
	display: none;
	flex-direction: column;
	background: var(--bg-nav);
	border-top: 1px solid #333;
}

.nav__drawer.open { display: flex; }

.nav__drawer a {
	display: block;
	padding: 14px 20px;
	font-family: var(--font-head);
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: var(--text-light);
	border-bottom: 1px solid #333;
	transition: color 0.2s, background 0.2s;
}

.nav__drawer a:hover,
.nav__drawer a.active {
	color: var(--orange);
	background: rgba(245,168,0,0.06);
}

.nav__drawer-socials {
	display: flex;
	gap: 14px;
	padding: 14px 20px;
}

.nav__drawer-socials a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid #444;
	padding: 0;
}

.nav__drawer-socials a svg {
	width: 18px;
	height: 18px;
	fill: var(--text-muted);
	transition: fill 0.2s;
}

.nav__drawer-socials a:hover { border-color: var(--orange); background: rgba(245,168,0,0.08); }
.nav__drawer-socials a:hover svg { fill: var(--orange); }

.nav__drawer-cta {
	padding: 14px 20px;
}

.nav__drawer-cta .btn-cta { width: 100%; text-align: center; display: block; }

/* ===== MODAL ===== */
.modal-backdrop {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.82);
	z-index: 1000;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.modal-backdrop.open { display: flex; }

.modal {
	background: var(--bg-header);
	border: 1px solid #3a3a3a;
	border-top: 3px solid var(--orange);
	border-radius: 8px;
	width: 100%;
	max-width: 860px;
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	overflow: hidden;
	animation: modalIn 0.3s ease;
}

@keyframes modalIn {
	from { opacity: 0; transform: translateY(-24px) scale(0.98); }
	to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal__close {
	position: absolute;
	top: 16px; right: 16px;
	width: 36px; height: 36px;
	display: flex; align-items: center; justify-content: center;
	background: #2e2e2e;
	border: 1px solid #444;
	border-radius: 50%;
	color: var(--text-muted);
	cursor: pointer;
	z-index: 10;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.modal__close svg { width: 16px; height: 16px; stroke: currentColor; }
.modal__close:hover { background: var(--orange); border-color: var(--orange); color: #111; }

/* Left panel */
.modal__left {
	padding: 40px 36px 40px 40px;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.modal__logo {
	margin-bottom: 20px;
}

.modal__logo img {
	height: 56px;
	width: auto;
	object-fit: contain;
}

.modal__logo-fallback {
	font-family: var(--font-head);
	font-size: 20px;
	font-weight: 700;
	color: var(--orange);
}

.modal__logo-fallback span { color: var(--text-light); }

.modal__title {
	font-family: var(--font-head);
	font-size: 28px;
	font-weight: 700;
	color: var(--orange);
	text-transform: uppercase;
	margin-bottom: 20px;
}

.modal__contacts {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 28px;
}

.modal__contacts li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14px;
	color: var(--text-muted);
}

.modal__contacts li svg {
	width: 17px; height: 17px;
	fill: var(--orange);
	flex-shrink: 0;
	margin-top: 1px;
}

.modal__contacts li a {
	color: var(--text-muted);
	transition: color 0.2s;
}

.modal__contacts li a:hover { color: var(--orange); }

.modal__form {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.modal__form input {
	width: 100%;
	padding: 13px 16px;
	background: #2a2a2a;
	border: 1px solid #444;
	border-radius: 6px;
	color: var(--text-light);
	font-family: var(--font-body);
	font-size: 14px;
	outline: none;
	transition: border-color 0.2s;
}

.modal__form input.input--invalid {
	border: 1px solid #e74c3c;
	outline: none;
}
.modal__form input.input--valid {
	border: 1px solid #2ecc71;
	outline: none;
}

.modal__form input:focus { border-color: var(--orange); }
.modal__form input::placeholder { color: #666; }

.modal__submit {
	width: 100%;
	padding: 14px;
	background: var(--orange);
	color: #111;
	font-family: var(--font-head);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
	margin-top: 4px;
}

.modal__submit:hover { background: var(--orange-dark); }

/* Right panel */
.modal__right {
	background: #161616;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 30px;
	min-height: 400px;
}

.modal__right img {
	width: 100%;
	max-width: 320px;
	object-fit: contain;
	filter: drop-shadow(0 8px 32px rgba(0,0,0,0.6));
}

/* Mobile: single column */
@media (max-width: 640px) {
	.modal { grid-template-columns: 1fr; }
	.modal__right { display: none; }
	.modal__left { padding: 36px 24px; }
	.modal__title { font-size: 22px; }
}



/* ===== FAQ ===== */
.faq {
	padding: 72px 20px;
	background: var(--bg-dark);
}

.faq__inner {
	max-width: var(--max-width);
	margin: 0 auto;
}

.faq__header {
	text-align: center;
	margin-bottom: 48px;
}

.faq__title {
	font-family: var(--font-head);
	font-size: 40px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--text-light);
	margin-bottom: 12px;
}

.faq__subtitle {
	font-size: 15px;
	color: var(--text-muted);
}

.faq__list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.faq__item {
	border: 1px solid #333;
	border-radius: 4px;
	overflow: hidden;
}

.faq__question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 24px;
	background: #2a2a2a;
	border: none;
	cursor: pointer;
	text-align: left;
	font-family: var(--font-head);
	font-size: 17px;
	font-weight: 600;
	color: var(--text-light);
	letter-spacing: 0.3px;
	transition: background 0.25s, color 0.25s;
}

.faq__question:hover {
	background: #333;
}

.faq__question[aria-expanded="true"] {
	background: var(--orange);
	color: #111;
}

.faq__icon {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	stroke: currentColor;
	stroke-width: 2.5;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: transform 0.3s ease;
}

.faq__question[aria-expanded="true"] .faq__icon {
	transform: rotate(180deg);
}

.faq__answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
}

.faq__answer-inner {
	padding: 20px 24px;
	font-size: 15px;
	color: var(--text-muted);
	line-height: 1.7;
	border-top: 1px solid #333;
}

@media (max-width: 768px) {
	.faq__title { font-size: 28px; }
	.faq__question { font-size: 15px; padding: 16px 18px; }
	.faq__answer-inner { padding: 16px 18px; }
}

@media (max-width: 480px) {
	.faq { padding: 48px 16px; }
	.faq__title { font-size: 24px; }
}


/* ===== CTA BLOCK ===== */
.cta-block {
	padding: 60px 20px;
	background: var(--bg-dark);
}

.cta-block__inner {
	max-width: var(--max-width);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	border-radius: 8px;
	overflow: hidden;
	min-height: 280px;
}

.cta-block__image {
	position: relative;
	background: #111;
	overflow: hidden;
}

.cta-block__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.85;
}

.cta-block__image::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, transparent 60%, var(--orange) 100%);
}

.cta-block__content {
	background: var(--orange);
	padding: 48px 52px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 16px;
}

.cta-block__label {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-head);
	font-size: 15px;
	font-weight: 500;
	color: #5a3d00;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.cta-block__label svg {
	width: 22px;
	height: 22px;
	fill: #5a3d00;
	flex-shrink: 0;
}

.cta-block__title {
	font-family: var(--font-head);
	font-size: 26px;
	font-weight: 700;
	color: #1a1a1a;
	line-height: 1.25;
}

.cta-block__form {
	display: flex;
	gap: 0;
	margin-top: 8px;
}

.cta-block__form input {
	flex: 1;
	padding: 14px 20px;
	font-family: var(--font-body);
	font-size: 15px;
	border: none;
	outline: none;
	background: #fff;
	color: #222;
	border-radius: 4px 0 0 4px;
}

.cta-block__form input::placeholder { color: #aaa; }

.cta-block__form button {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 24px;
	background: #1a1a1a;
	color: #fff;
	font-family: var(--font-head);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	border: none;
	border-radius: 0 4px 4px 0;
	cursor: pointer;
	white-space: nowrap;
	transition: background 0.2s;
}

.cta-block__form button:hover { background: #333; }

.cta-block__form button svg {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

.cta-block__form input.input--invalid {
	border: 2px solid #ff3f2a;
	outline: none;
}
.cta-block__form input.input--valid {
	border: 2px solid #d16527;
	outline: none;
}


/* кнопки навигации в CTA-блоке */
.cta-block__nav {
	display: flex;
	gap: 12px;
	margin-top: 12px;
}

.cta-block__nav-btn {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 11px 20px;
	background: #1a1a1a;
	color: #fff;
	font-family: var(--font-head);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	border-radius: 4px;
	transition: background 0.2s;
}

.cta-block__nav-btn:hover {
	background: #333;
	color: #fff;
}

/* мобиль — столбик */
@media (max-width: 480px) {
	.cta-block__nav {
		flex-direction: column;
	}
}

.form-success {
	color: #2ecc71;
	font-family: var(--font-head);
	font-size: 16px;
	font-weight: 600;
}
.form-error {
	color: #ffddda;
	font-size: 13px;
	margin-top: 6px;
	font-weight: 600;
}

@media (max-width: 768px) {
	.cta-block__inner { grid-template-columns: 1fr; }
	.cta-block__image { min-height: 200px; }
	.cta-block__image::after { background: linear-gradient(to bottom, transparent 60%, var(--orange) 100%); }
	.cta-block__content { padding: 32px 28px; }
	.cta-block__title { font-size: 22px; }
}

@media (max-width: 480px) {
	.cta-block__form { flex-direction: column; }
	.cta-block__form input { border-radius: 4px 4px 0 0; }
	.cta-block__form button { border-radius: 0 0 4px 4px; justify-content: center; }
}

/* ===== FOOTER ===== */
.footer {
	background: #1e1e1e;
	border-top: 2px solid var(--orange);
}

.footer__inner {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 56px 20px 40px;
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
	gap: 40px;
}

.footer__logo img {
	height: 64px;
	width: auto;
	object-fit: contain;
	margin-bottom: 16px;
}

.footer__logo-fallback {
	font-family: var(--font-head);
	font-size: 22px;
	font-weight: 700;
	color: var(--orange);
	margin-bottom: 16px;
	display: block;
}

.footer__logo-fallback span { color: var(--text-light); }

.footer__about {
	font-size: 14px;
	color: var(--text-muted);
	line-height: 1.6;
	margin-bottom: 20px;
}

.footer__about strong { color: var(--text-light); }

.footer__socials {
	display: flex;
	gap: 10px;
}

.footer__socials a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #2e2e2e;
	transition: background 0.2s;
}

.footer__socials a svg {
	width: 17px;
	height: 17px;
	fill: var(--text-muted);
	transition: fill 0.2s;
}

.footer__socials a:hover { background: var(--orange); }
.footer__socials a:hover svg { fill: #111; }

.footer__heading {
	font-family: var(--font-head);
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--text-light);
	margin-bottom: 14px;
}

.footer__divider {
	height: 2px;
	background: var(--orange);
	margin-bottom: 20px;
	width: 40px;
}

.footer__list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer__list li {
	font-size: 14px;
	color: var(--text-muted);
	line-height: 1.5;
}

.footer__nav-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer__nav-list li a {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: var(--text-muted);
	transition: color 0.2s;
}

.footer__nav-list li a::before {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	border-top: 2px solid var(--orange);
	border-right: 2px solid var(--orange);
	transform: rotate(45deg);
	flex-shrink: 0;
}

.footer__nav-list li a:hover { color: var(--orange); }

.footer__contacts {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.footer__contacts li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14px;
	color: var(--text-muted);
}

.footer__contacts li svg {
	width: 16px;
	height: 16px;
	fill: var(--orange);
	flex-shrink: 0;
	margin-top: 2px;
}

.footer__contacts li a {
	color: var(--text-muted);
	transition: color 0.2s;
}

.footer__contacts li a:hover { color: var(--orange); }

.footer__bottom {
	border-top: 1px solid #2e2e2e;
}

.footer__bottom-inner {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 18px 20px;
	font-size: 13px;
	color: #555;
	text-align: center;
}

/* ссылки в нижней строке футера */
.footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer__bottom-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer__bottom-links a {
    font-size: 12px;
    color: var(--text-muted);
    transition: color 0.2s;
}

.footer__bottom-links a:hover { color: var(--orange); }

@media (max-width: 480px) {
    .footer__bottom-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 1024px) {
	.footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 480px) {
	.footer__inner { grid-template-columns: 1fr; gap: 28px; padding: 36px 16px 28px; }
	.cta-block { padding: 40px 16px; }
}

/* ===== BREAKPOINTS ===== */

/* 1024px */
@media (max-width: 1024px) {
	.header__contacts { gap: 16px; }
	.header__contact-item { font-size: 13px; }
	.nav__links a { padding: 14px 18px; font-size: 14px; }
}

/* 768px */
@media (max-width: 768px) {
	.header__topbar-inner { gap: 16px; }
	.header__contacts { gap: 12px; }
	.header__contact-item:nth-child(2),
	.header__contact-item:nth-child(3) { display: none; }
	.nav__links a { padding: 14px 12px; font-size: 14px; }
}

/* 480px — мобильный, бургер */
@media (max-width: 480px) {
	.header__topbar-inner {
		flex-wrap: wrap;
		justify-content: space-between;
		gap: 10px;
	}

	.header__contacts {
		display: none; /* контакты спрятаны, они дублируются в drawer */
	}

	/* Nav на мобиле: только логотип + бургер */
	.header__nav-inner {
		flex-wrap: wrap;
		padding: 0 16px;
	}

	.nav__links,
	.nav__socials,
	.nav__cta { display: none; }

	.burger { display: flex; }
}

/* Планшет 481–768: соцсети и кнопка в nav, остальное ok */
@media (min-width: 481px) {
	.nav__drawer { display: none !important; }
}

/* ===== FLOATING CONTACTS ===== */
.floating-contacts {
	position: fixed;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 500;
	display: flex;
	flex-direction: column;
	background: var(--orange);
	border-radius: 12px 0 0 12px;
	overflow: hidden;
	box-shadow: -4px 4px 20px rgba(0,0,0,0.4);
}

.floating-contacts__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	background: transparent;
	border: none;
	cursor: pointer;
	transition: background 0.2s;
	text-decoration: none;
}

.floating-contacts__btn:hover {
	background: rgba(0,0,0,0.12);
}

.floating-contacts__btn svg {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: #fff;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.floating-contacts__divider {
	height: 1px;
	background: rgba(255,255,255,0.35);
	margin: 0 10px;
}

@media (max-width: 768px) {
	.floating-contacts { display: none; }
}

	/* ===== HERO ===== */
	.delivery-hero {
position: relative;
height: 340px;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
	}

	.delivery-hero__bg {
position: absolute;
inset: 0;
background-image: url('/img/delivery_hero.jpg');
background-size: cover;
background-position: center;
	}

	/* затемняющий оверлей */
	.delivery-hero__bg::after {
content: '';
position: absolute;
inset: 0;
background: rgba(0, 0, 0, 0.58);
	}

	.delivery-hero__content {
position: relative;
z-index: 1;
text-align: center;
padding: 0 20px;
	}

	.delivery-hero__title {
font-family: var(--font-head);
font-size: 56px;
font-weight: 700;
color: var(--text-light);
text-transform: uppercase;
letter-spacing: 2px;
line-height: 1.1;
margin-bottom: 14px;
	}

	.delivery-hero__subtitle {
font-size: 17px;
color: rgba(255, 255, 255, 0.78);
	}

	@media (max-width: 480px) {
.delivery-hero { height: 260px; }
.delivery-hero__title { font-size: 36px; }
.delivery-hero__subtitle { font-size: 15px; }
	}

	/* ===== DELIVERY TABLE ===== */
	.delivery-table {
padding: 72px 20px;
background: var(--bg-dark);
	}

	.delivery-table__inner {
max-width: var(--max-width);
margin: 0 auto;
	}

	.delivery-table__title {
font-family: var(--font-head);
font-size: 28px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px;
color: var(--text-light);
margin-bottom: 32px;
	}

	.delivery-table__wrap {
border: 1px solid #333;
border-radius: 4px;
overflow: hidden;
	}

	table.dtable {
width: 100%;
border-collapse: collapse;
font-size: 14px;
	}

	table.dtable thead tr { background: #2a2a2a; }

	table.dtable thead th {
padding: 14px 20px;
text-align: left;
font-family: var(--font-head);
font-size: 13px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
color: var(--text-muted);
border-bottom: 2px solid var(--orange);
	}

	table.dtable tbody tr {
border-bottom: 1px solid #2e2e2e;
transition: background 0.15s;
	}

	table.dtable tbody tr:last-child { border-bottom: none; }
	table.dtable tbody tr:hover { background: #252525; }

	table.dtable td {
padding: 13px 20px;
color: var(--text-muted);
vertical-align: middle;
	}

	table.dtable td:first-child { color: var(--text-light); }

	table.dtable td:last-child {
color: var(--orange);
font-family: var(--font-head);
font-size: 15px;
font-weight: 600;
white-space: nowrap;
	}

	/* ширины колонок */
	table.dtable th:nth-child(1),
	table.dtable td:nth-child(1) { width: 22%; }

	table.dtable th:nth-child(2),
	table.dtable td:nth-child(2) { width: 58%; }

	table.dtable th:nth-child(3),
	table.dtable td:nth-child(3) { width: 20%; }

	@media (max-width: 640px) {
.delivery-table { padding: 48px 16px; }
.delivery-table__title { font-size: 20px; }

/* на мобиле адрес скрываем */
table.dtable th:nth-child(2),
table.dtable td:nth-child(2) { display: none; }

table.dtable th:nth-child(1),
table.dtable td:nth-child(1) { width: 65%; }

table.dtable th:nth-child(3),
table.dtable td:nth-child(3) { width: 35%; }

table.dtable td,
table.dtable th { padding: 11px 14px; }
	}

/* ===== CONTACTS page ===== */
.contacts {
	position: relative;
	padding: 80px 20px;
	overflow: hidden;
	min-height: 100vh;
	display: flex;
	align-items: center;
}

/* фоновое изображение */
.contacts__bg {
	position: absolute;
	inset: 0;
	background-image: url('/img/bg_contacts.jpg');
	background-size: cover;
	background-position: center;
}

/* затемнение поверх фото */
.contacts__bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.72);
}

.contacts__inner {
	position: relative;
	z-index: 1;
	max-width: var(--max-width);
	width: 100%;
	margin: 0 auto;
}

/* заголовок секции */
.contacts__header {
	text-align: center;
	margin-bottom: 32px;
}

.contacts__title {
	font-family: var(--font-head);
	font-size: 48px;
	font-weight: 700;
	color: var(--text-light);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 12px;
}

.contacts__subtitle {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.65);
}

/* враппер блоков */
.contacts__body {
	display: flex;
	justify-content: center;
}

/* блоки инфо — одна строка */
.contacts__info {
	display: flex;
	flex-direction: row;
	gap: 32px;
	width: 100%;
	align-items: flex-start;
}

/* каждый блок занимает равную долю */
.contacts__info-group {
	flex: 1;
	min-width: 0;
}

.contacts__info-group h3 {
	font-family: var(--font-head);
	font-size: 20px;
	font-weight: 600;
	color: var(--orange);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--orange);
	display: inline-block;
}

.contacts__info-group p,
.contacts__info-group a {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.75);
	line-height: 1.8;
	display: block;
	transition: color 0.2s;
}

/* строка «лейбл + значение» */
.contacts__info-group .contact-row {
	display: flex;
	align-items: baseline;
	gap: 6px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.75);
	line-height: 1.8;
}

.contacts__info-group .contact-row span:first-child { white-space: nowrap; }
.contacts__info-group .contact-row span:last-child { white-space: normal; word-break: break-word; }

.contacts__info-group a:hover { color: var(--orange); }

/* иконки мессенджеров */
.contacts__socials {
	display: flex;
	gap: 10px;
	margin-top: 8px;
}

.contacts__socials a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #2e2e2e;
	transition: background 0.2s;
}

.contacts__socials a svg {
	width: 18px;
	height: 18px;
	fill: var(--text-muted);
	transition: fill 0.2s;
}

.contacts__socials a:hover { background: var(--orange); }
.contacts__socials a:hover svg { fill: #111; }

/* ===== адаптив ===== */
@media (max-width: 1024px) {
	.contacts__info { gap: 20px; }
}

@media (max-width: 768px) {
	.contacts__info { flex-direction: column; }
	.contacts__title { font-size: 36px; }
}

@media (max-width: 480px) {
	.contacts { padding: 56px 16px; }
	.contacts__title { font-size: 28px; }
}

/* ===== CATALOG HERO ===== */
.cat-hero {
	background: #161616;
	border-bottom: 2px solid var(--orange);
	position: relative;
	overflow: hidden;
	min-height: 130px;
	display: flex;
	align-items: center;
}

/* фоновое изображение — прижато вправо */
.cat-hero__bg {
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	width: 55%;
	background-image: url('/img/catalog_hero.png');
	background-size: cover;
	background-position: left center;
}

/* затемнение слева от картинки */
.cat-hero__bg::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, var(--bg-header) 0%, transparent 60%);
}

/* затемнение сверху/снизу для глубины */
.cat-hero__bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.35);
}

.cat-hero__inner {
	position: relative;
	z-index: 1;
	max-width: var(--max-width);
	width: 100%;
	margin: 0 auto;
	padding: 50px 25px;
}

/* хлебные крошки */
.breadcrumbs {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 25px;
	font-family: var(--font-head);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.8px;
	text-transform: uppercase;
}

.breadcrumbs a {
	color: var(--text-muted);
	transition: color 0.2s;
}

.breadcrumbs a:hover { color: var(--text-light); }

/* разделитель */
.breadcrumbs__sep {
	width: 6px;
	height: 6px;
	background: var(--orange);
	flex-shrink: 0;
}

.breadcrumbs__current {
	color: var(--orange);
}

.cat-hero__title {
	font-family: var(--font-head);
	font-size: 48px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--text-light);
	line-height: 1;
}

@media (max-width: 768px) {
	.cat-hero__bg { width: 70%; }
	.cat-hero__title { font-size: 36px; }
}

@media (max-width: 480px) {
	.cat-hero__bg { width: 50%; }
	.cat-hero__bg::before {
		background: linear-gradient(to right, var(--bg-header) 20%, transparent 100%);
	}
	.cat-hero__title { font-size: 28px; }
}

/* ===== CATALOG LAYOUT ===== */
.catalog {
	padding: 40px 20px 72px;
	background: var(--bg-dark);
}

.catalog__inner {
	max-width: var(--max-width);
	margin: 0 auto;
}

/* пустая выдача */
.brand-grid__empty {
	font-size: 14px;
	color: var(--text-muted);
	padding: 24px 0;
}

/* ===== BRAND GRID ===== */
.brand-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

/* карточка марки */
.brand-card {
	background: #222;
	border: 1px solid #2e2e2e;
	border-radius: 8px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: border-color 0.2s, transform 0.2s;
}

.brand-card:hover {
	border-color: var(--orange);
	transform: translateY(-2px);
}

/* полоска сверху */
.brand-card__top {
	height: 4px;
	background: var(--orange);
	flex-shrink: 0;
}

.brand-card__body {
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex: 1;
}

/* заголовок марки */
.brand-card__title {
	font-family: var(--font-head);
	font-size: 24px;
	font-weight: 700;
	color: var(--text-light);
	line-height: 1.2;
}

/* описание */
.brand-card__desc {
	font-size: 13px;
	color: var(--text-muted);
	line-height: 1.65;
}

/* теги моделей */
.brand-card__models {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 4px;
}

.brand-card__models li a {
	display: inline-block;
	padding: 5px 12px;
	border: 1px solid #3a3a3a;
	border-radius: 20px;
	font-size: 12px;
	font-family: var(--font-body);
	color: var(--text-muted);
	transition: border-color 0.2s, color 0.2s;
}

.brand-card__models li a:hover {
	border-color: var(--orange);
	color: var(--orange);
}

/* ссылка «Перейти в раздел» */
.brand-card__link {
	font-family: var(--font-head);
	font-size: 14px;
	font-weight: 600;
	color: var(--orange);
	margin-top: auto;
	padding-top: 8px;
	transition: letter-spacing 0.2s;
}

.brand-card__link:hover {
	letter-spacing: 0.3px;
}

/* ===== адаптив ===== */
@media (max-width: 1200px) {
	.brand-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
	.brand-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
	.brand-grid { grid-template-columns: 1fr; }
	.catalog { padding: 32px 16px 48px; }
}


	/* ===== PAGINATION ===== */
	.catalog__pagination {
		display: flex;
		align-items: center;
		gap: 6px;
		margin-top: 32px;
	}

	.pagination__btn {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 38px;
		height: 38px;
		background: #2a2a2a;
		border: 1px solid #333;
		color: var(--text-muted);
		font-family: var(--font-head);
		font-size: 14px;
		font-weight: 600;
		transition: background 0.2s, border-color 0.2s, color 0.2s;
	}

	.pagination__btn:hover {
		border-color: var(--orange);
		color: var(--orange);
	}

	.pagination__btn--active {
		background: var(--orange);
		border-color: var(--orange);
		color: #111;
	}

	.pagination__btn--arrow {
		font-size: 16px;
	}

	/* ===== АДАПТИВ ===== */
	@media (max-width: 1024px) {
		.catalog__inner { grid-template-columns: 1fr 240px; gap: 28px; }
		.catalog__grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
	}

	@media (max-width: 768px) {
		/* сайдбар уходит под сетку */
		.catalog__inner { grid-template-columns: 1fr; }
		.catalog__sidebar { position: static; }
		.catalog__grid { grid-template-columns: repeat(3, 1fr); }
		.sidebar__hits { grid-template-columns: repeat(4, 1fr); }
	}

	@media (max-width: 480px) {
		.catalog { padding: 24px 16px 48px; }
		.catalog__grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
		.sidebar__hits { grid-template-columns: repeat(2, 1fr); }
	}

	/* ===== КАК КУПИТЬ ===== */
	.how-to-buy {
		padding: 80px 20px;
		background: var(--bg-dark);
		border-top: 1px solid #2a2a2a;
	}

	.how-to-buy__inner {
		max-width: var(--max-width);
		margin: 0 auto;
		display: grid;
		grid-template-columns: 280px 1fr;
		gap: 64px;
		align-items: start;
	}

	/* левый блок */
	.how-to-buy__lead {
		padding-top: 8px;
	}

	.how-to-buy__title {
		font-family: var(--font-head);
		font-size: 40px;
		font-weight: 700;
		text-transform: uppercase;
		letter-spacing: 1px;
		color: var(--text-light);
		line-height: 1.15;
		margin-bottom: 20px;
	}

	.how-to-buy__text {
		font-size: 16px;
		color: var(--text-muted);
		line-height: 1.7;
	}

	/* правая сетка */
	.how-to-buy__steps {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 0;
	}

	/* шаг */
	.htb-step {
		padding: 28px 32px 36px;
		border-bottom: 1px solid #2a2a2a;
		border-right: 1px solid #2a2a2a;
	}

	/* убираем правую границу у 2-й и 4-й колонок */
	.htb-step:nth-child(2n) { border-right: none; }
	/* убираем нижнюю границу у последних двух */
	.htb-step:nth-last-child(-n+2) { border-bottom: none; }

	/* оранжевая линия сверху */
	.htb-step__top {
		height: 2px;
		background: #333;
		margin-bottom: 24px;
		transition: background 0.3s;
	}

	.htb-step:hover .htb-step__top {
		background: var(--orange);
	}

	.htb-step__num {
		display: block;
		font-family: var(--font-head);
		font-size: 20px;
		font-weight: 600;
		color: var(--text-muted);
		letter-spacing: 1px;
		margin-bottom: 6px;
	}

	.htb-step__title {
		font-family: var(--font-head);
		font-size: 24px;
		font-weight: 700;
		text-transform: uppercase;
		letter-spacing: 0.5px;
		color: var(--text-light);
		margin-bottom: 14px;
	}

	.htb-step__text {
		font-size: 16px;
		color: var(--text-muted);
		line-height: 1.7;
	}

	/* ===== АНИМАЦИЯ ===== */

	/* отдельный класс для слайда снизу */
	.reveal--up {
		transform: translateY(40px);
	}

	.reveal--up.visible {
		transform: translateY(0);
	}

	/* ===== АДАПТИВ ===== */
	@media (max-width: 1024px) {
		.how-to-buy__inner { gap: 40px; }
		.htb-step { padding: 24px 24px 30px; }
	}

	@media (max-width: 768px) {
		/* левый блок наверх, шаги на всю ширину */
		.how-to-buy__inner {
			grid-template-columns: 1fr;
			gap: 32px;
		}
		.how-to-buy__title { font-size: 28px; }
	}

	@media (max-width: 480px) {
		.how-to-buy { padding: 48px 16px; }
		/* шаги в одну колонку */
		.how-to-buy__steps { grid-template-columns: 1fr; }
		.htb-step { border-right: none; border-bottom: 1px solid #2a2a2a; }
		.htb-step:last-child { border-bottom: none; }
	}


.product_page_bc {
	margin-bottom: 0;
}

/* ===== PRODUCT HERO ===== */
.product-hero {
	background: var(--bg-header);
	border-bottom: 2px solid var(--orange);
	padding: 28px 20px;
}

.product-hero__inner {
	max-width: var(--max-width);
	margin: 0 auto;
}

/* ===== PRODUCT MAIN ===== */
.product {
	padding: 48px 20px 80px;
	background: var(--bg-dark);
}

.product__inner {
	max-width: var(--max-width);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 440px 1fr;
	gap: 56px;
	align-items: start;
}

/* ===== ГАЛЕРЕЯ ===== */
.product-gallery {}

.product-gallery__main {
	position: relative;
	background: #1a1a1a;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	margin-bottom: 10px;
}

.product-gallery__main img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
    animation: imgFadeIn 1s ease;
}

@keyframes imgFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.product-gallery__main:hover img { transform: scale(1.03); }

/* кнопка лупы */
.product-gallery__zoom {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 36px;
	height: 36px;
	background: rgba(0,0,0,0.55);
	border: 1px solid #444;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.2s, border-color 0.2s;
	z-index: 2;
}

.product-gallery__zoom:hover {
	background: var(--orange);
	border-color: var(--orange);
}

.product-gallery__zoom svg {
	width: 16px;
	height: 16px;
	stroke: #fff;
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
}

/* миниатюры */
.product-gallery__thumbs {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 8px;
}

.product-gallery__thumb {
	aspect-ratio: 1 / 1;
	overflow: hidden;
	cursor: pointer;
	border: 2px solid transparent;
	transition: border-color 0.2s;
	background: #1a1a1a;
}

.product-gallery__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.product-gallery__thumb:hover img { transform: scale(1.07); }

.product-gallery__thumb.active {
	border-color: var(--orange);
}

/* цена под галереей */
.product-gallery__price-block {
	margin-top: 28px;
	padding-top: 28px;
	border-top: 1px solid #2a2a2a;
}

.product-gallery__price {
	font-family: var(--font-head);
	font-size: 36px;
	font-weight: 700;
	color: var(--text-light);
	margin-bottom: 16px;
}

.product-gallery__actions {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}

/* счётчик количества */
.qty {
	display: flex;
	align-items: center;
	border: 1px solid #444;
	border-radius: 4px;
	overflow: hidden;
	height: 46px;
}

.qty__btn {
	width: 36px;
	height: 100%;
	background: #2a2a2a;
	border: none;
	color: var(--text-muted);
	font-size: 18px;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
	display: flex;
	align-items: center;
	justify-content: center;
}

.qty__btn:hover { background: var(--orange); color: #111; }

.qty__input {
	width: 44px;
	height: 100%;
	background: #222;
	border: none;
	border-left: 1px solid #444;
	border-right: 1px solid #444;
	color: var(--text-light);
	font-family: var(--font-head);
	font-size: 15px;
	text-align: center;
	outline: none;
}

.product-gallery__cta {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 46px;
	background: var(--orange);
	color: #111;
	font-family: var(--font-head);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	border-radius: 4px;
	transition: background 0.2s;
}

.product-gallery__cta:hover { background: var(--orange-dark); color: #111; }

/* мессенджеры */
.product-gallery__messengers {
	display: flex;
	gap: 10px;
}

.product-gallery__messengers a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: #2a2a2a;
	border: 1px solid #333;
	transition: background 0.2s, border-color 0.2s;
}

.product-gallery__messengers a svg {
	width: 18px;
	height: 18px;
	fill: var(--text-muted);
	transition: fill 0.2s;
}

.product-gallery__messengers a:hover { background: var(--orange); border-color: var(--orange); }
.product-gallery__messengers a:hover svg { fill: #111; }

/* преимущества */
.product-gallery__features {
	margin-top: 28px;
	padding-top: 28px;
	border-top: 1px solid #2a2a2a;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.feature-row {
	display: flex;
	align-items: center;
	gap: 14px;
}

.feature-row__icon {
	width: 36px;
	height: 36px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.feature-row__icon svg {
	width: 24px;
	height: 24px;
	stroke: var(--orange);
	fill: none;
	stroke-width: 1.6;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.feature-row__text {
	font-size: 14px;
	color: var(--text-muted);
	line-height: 1.4;
}

/* ===== ПРАВАЯ КОЛОНКА — инфо ===== */
.product-info {}

.product-info__title {
	font-family: var(--font-head);
	font-size: 32px;
	font-weight: 700;
	color: var(--text-light);
	line-height: 1.2;
	margin-bottom: 20px;
}

/* краткие характеристики */
.product-info__specs {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-bottom: 16px;
	padding-bottom: 16px;
	border-bottom: 1px solid #2a2a2a;
}

.product-info__spec {
	font-size: 13px;
	color: var(--text-muted);
	line-height: 1.6;
}

.product-info__spec strong {
	color: var(--text-light);
}

/* основной текст */
.product-info__desc {
	font-size: 14px;
	color: var(--text-muted);
	line-height: 1.8;
	margin-bottom: 16px;
	padding-bottom: 16px;
	border-bottom: 1px solid #2a2a2a;
}

.product-info__desc p { margin-bottom: 6px; }
.product-info__desc p:last-child { margin-bottom: 0; }

.product-info__desc em {
	font-style: italic;
	color: rgba(255,255,255,0.6);
}

.product-info__desc strong { color: var(--text-light); }

/* блок доставки */
.product-info__block {
	margin-bottom: 16px;
	padding-bottom: 16px;
	border-bottom: 1px solid #2a2a2a;
}

.product-info__block-title {
	font-family: var(--font-head);
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--text-light);
	margin-bottom: 14px;
}

.check-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.check-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: var(--text-muted);
}

.check-list li svg {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	fill: var(--orange);
}

/* ===== ОПИСАНИЕ + ТАБЛИЦА ===== */
.product-description {
	padding: 0 20px 80px;
	background: var(--bg-dark);
}

.product-description__inner {
	max-width: var(--max-width);
	margin: 0 auto;
	border-top: 1px solid #2a2a2a;
	padding-top: 40px;
}

.product-description__title {
	font-family: var(--font-head);
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--text-light);
	margin-bottom: 16px;
}

.product-description__text {
	font-size: 14px;
	color: var(--text-muted);
	line-height: 1.8;
	margin-bottom: 32px;
}

/* таблица */
.spec-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 13px;
}

.spec-table tr { border-bottom: 1px solid #2a2a2a; }
.spec-table tr:last-child { border-bottom: none; }
.spec-table tr:hover { background: #1e1e1e; }

.spec-table td {
	padding: 11px 16px;
	color: var(--text-muted);
	vertical-align: middle;
}

.spec-table td:first-child {
	width: 40%;
	color: #666;
}

.spec-table td:last-child {
	color: var(--text-light);
	text-align: right;
}

/* ===== ЛАЙТБОКС ===== */
.lightbox {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.92);
	z-index: 2000;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.lightbox.open { display: flex; }

.lightbox__img {
	max-width: 90vw;
	max-height: 90vh;
	object-fit: contain;
	border: 1px solid #333;
}

.lightbox__close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 40px;
	height: 40px;
	background: #2a2a2a;
	border: 1px solid #444;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.2s;
}

.lightbox__close:hover { background: var(--orange); }

.lightbox__close svg {
	width: 16px;
	height: 16px;
	stroke: #fff;
	fill: none;
	stroke-width: 2.5;
	stroke-linecap: round;
}

/* ===== АДАПТИВ ===== */
@media (max-width: 1024px) {
	.product__inner { grid-template-columns: 380px 1fr; gap: 36px; }
	.product-info__title { font-size: 26px; }
}

@media (max-width: 768px) {
	.product__inner { grid-template-columns: 1fr; gap: 32px; }
	.product-gallery__price { font-size: 28px; }
}

@media (max-width: 480px) {
	.product { padding: 24px 16px 48px; }
	.product-description { padding: 0 16px 48px; }
	.product-info__title { font-size: 22px; }
}

/* ===== HERO ===== */
.hero {
	position: relative;
	min-height: 560px;
	display: flex;
	align-items: center;
	overflow: hidden;
}

/* слайды-фоны */
.hero__slides {
	position: absolute;
	inset: 0;
}

.hero__slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 1.2s ease;
}

.hero__slide.active {
	opacity: 1;
}

/* затемнение */
.hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, rgba(0,0,0,0.78) 45%, rgba(0,0,0,0.25) 100%);
	z-index: 1;
}

.hero__inner {
	position: relative;
	z-index: 2;
	max-width: var(--max-width);
	width: 100%;
	margin: 0 auto;
	padding: 80px 20px;
}

.hero__content {
	max-width: 560px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* лейбл */
.hero__label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-head);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--orange);
}

.hero__label svg {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

/* заголовок */
.hero__title {
	font-family: var(--font-head);
	font-size: 52px;
	font-weight: 700;
	color: var(--text-light);
	text-transform: uppercase;
	letter-spacing: 1px;
	line-height: 1.1;
}

/* текст */
.hero__text {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.75);
	line-height: 1.7;
}

/* кнопка */
.hero__btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	align-self: flex-start;
	padding: 14px 28px;
	background: var(--orange);
	color: #111;
	font-family: var(--font-head);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	border: 2px solid var(--orange);
	border-radius: 4px;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
}

.hero__btn:hover {
	background: transparent;
	color: var(--orange);
}

.hero__btn svg {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	transition: transform 0.2s;
}

.hero__btn:hover svg {
	transform: translateX(4px);
}

/* адаптив */
@media (max-width: 768px) {
	.hero { min-height: 460px; }
	.hero__title { font-size: 36px; }
	.hero__overlay {
		background: rgba(0,0,0,0.65);
	}
}

@media (max-width: 480px) {
	.hero { min-height: 400px; }
	.hero__inner { padding: 60px 16px; }
	.hero__title { font-size: 28px; }
	.hero__text { font-size: 14px; }
}

/* hero: анимация появления контента */
@keyframes heroSlideIn {
	from {
		opacity: 0;
		transform: translateX(-60px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.hero__label   { animation: heroSlideIn 0.6s ease both; animation-delay: 0.1s; }
.hero__title   { animation: heroSlideIn 0.6s ease both; animation-delay: 0.25s; }
.hero__text    { animation: heroSlideIn 0.6s ease both; animation-delay: 0.4s; }
.hero__btn     { animation: heroSlideIn 0.6s ease both; animation-delay: 0.55s; }


/* ===== CTA MAIN ===== */
.cta-main {
	padding: 60px 20px;
	background: var(--bg-dark);
}

.cta-main__inner {
	max-width: var(--max-width);
	margin: 0 auto;
	background: var(--orange);
	border-radius: 8px;
	display: grid;
	grid-template-columns: 320px 1fr;
	align-items: center;
	overflow: hidden;
	min-height: 260px;
}

/* картинка слева */
.cta-main__image {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 0 20px 20px;
	height: 100%;
}

.cta-main__image img {
	width: 100%;
	max-width: 320px;
	object-fit: contain;
	filter: drop-shadow(0 8px 24px rgba(0,0,0,0.3));
}

/* правая часть */
.cta-main__body {
	padding: 40px 48px 40px 24px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.cta-main__title {
	font-family: var(--font-head);
	font-size: 26px;
	font-weight: 700;
	color: #1a1a1a;
	line-height: 1.25;
}

/* форма */
.cta-main__form {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.cta-main__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.cta-main__form input {
	width: 100%;
	padding: 13px 18px;
	background: #fff;
	border: 2px solid transparent;
	border-radius: 4px;
	color: #222;
	font-family: var(--font-body);
	font-size: 14px;
	outline: none;
	transition: border-color 0.2s;
}

.cta-main__form input::placeholder { color: #aaa; }
.cta-main__form input:focus { border-color: #1a1a1a; }

/* валидация */
.cta-main__form input.input--invalid { border-color: #e74c3c; }
.cta-main__form input.input--valid   { border-color: #27ae60; }

/* кнопка */
.cta-main__form button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 24px;
	background: #1a1a1a;
	color: #fff;
	font-family: var(--font-head);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: background 0.2s;
}

.cta-main__form button:hover { background: #333; }

.cta-main__form button svg {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	transition: transform 0.2s;
}

.cta-main__form button:hover svg { transform: translateX(4px); }

.cta-main__form button:disabled {
	background: #555;
	color: #888;
	cursor: not-allowed;
}

.cta-main__form button:disabled svg {
	stroke: #888;
}

/* адаптив */
@media (max-width: 768px) {
	.cta-main__inner { grid-template-columns: 200px 1fr; }
	.cta-main__body { padding: 32px 28px 32px 16px; }
	.cta-main__title { font-size: 20px; }
}

@media (max-width: 600px) {
	.cta-main__inner { grid-template-columns: 1fr; }
	.cta-main__image { padding: 28px 20px 0; justify-content: center; }
	.cta-main__image img { max-width: 200px; }
	.cta-main__body { padding: 20px 20px 32px; }
}

@media (max-width: 480px) {
	.cta-main { padding: 40px 16px; }
	.cta-main__row { grid-template-columns: 1fr; }
}

/* ===== ABOUT ===== */
.about {
	padding: 80px 20px;
	background: var(--bg-dark);
	border-top: 1px solid #2a2a2a;
}

.about__inner {
	max-width: var(--max-width);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 32px;
	align-items: center;
}

/* левая колонка */
.about__label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-head);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--orange);
	margin-bottom: 16px;
}

.about__label svg {
	width: 16px;
	height: 16px;
	stroke: var(--orange);
}

.about__title {
	font-family: var(--font-head);
	font-size: 40px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--text-light);
	line-height: 1.1;
	margin-bottom: 20px;
}

.about__text {
	font-size: 14px;
	color: var(--text-muted);
	line-height: 1.8;
	margin-bottom: 28px;
}

/* основатель */
.about__founder {
	display: flex;
	align-items: center;
	gap: 14px;
}

.about__founder img {
	width: 56px;
	height: 72px;
	border-radius: 40%;
	object-fit: cover;
	border: 2px solid var(--orange);
	flex-shrink: 0;
}

.about__founder-info {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.about__founder-name {
	font-family: var(--font-head);
	font-size: 18px;
	font-weight: 600;
	color: var(--text-light);
}

.about__founder-role {
	font-size: 13px;
	color: var(--orange);
}

/* центральное изображение */
.about__image {
	width: 480px;
	flex-shrink: 0;
}

.about__image img {
	width: 100%;
	object-fit: contain;
	filter: drop-shadow(0 12px 40px rgba(0,0,0,0.5));
}

/* правая колонка */
.about__right {
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.about__feature {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.about__feature-icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--orange);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.about__feature-icon svg {
	width: 22px;
	height: 22px;
	stroke: #111;
}

.about__feature-body h3 {
	font-family: var(--font-head);
	font-size: 21px;
	font-weight: 700;
	color: var(--text-light);
	margin-bottom: 6px;
}

.about__feature-body p {
	font-size: 14px;
	color: var(--text-muted);
	line-height: 1.6;
}

/* адаптив */
@media (max-width: 1024px) {
	.about__inner { gap: 28px; }
	.about__image { width: 340px; }
	.about__title { font-size: 30px; }
}

@media (max-width: 768px) {
	.about__inner {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.about__image { width: 100%; max-width: 300px; margin: 0 auto; }
	.about__label { justify-content: center; }
	.about__founder { justify-content: center; }
	.about__feature { text-align: left; }
}

@media (max-width: 480px) {
	.about { padding: 48px 16px; }
	.about__title { font-size: 24px; }
	.about__feature-body h3 { font-size: 18px; }
}

/* ===== BRANDS ===== */
.brands {
	position: relative;
	padding: 72px 60px;
	overflow: hidden;
}

/* фон */
.brands__bg {
	position: absolute;
	inset: 0;
	background-image: url('/img/delivery_hero.jpg');
	background-size: cover;
	background-position: center;
}

/* затемнение */
.brands__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.72);
}

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

/* обёртка — маскирует края */
.brands__track-wrap {
	overflow: hidden;
	mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
	-webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

/* бегущая строка */
.brands__track {
	display: flex;
	align-items: center;
	gap: 64px;
	width: max-content;
	animation: brandScroll 22s linear infinite;
}

.brands__track img {
	height: 52px;
	width: auto;
	object-fit: contain;
	opacity: 0.8;
	transition: opacity 0.2s;
	flex-shrink: 0;
}

.brands__track img:hover {
	opacity: 1;
}

@keyframes brandScroll {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}

@media (max-width: 1024px) {
	.brands { padding: 52px 10px; }
}

@media (max-width: 480px) {
	.brands { padding: 36px 10px; }
	.brands__track { gap: 40px; }
	.brands__track img { height: 38px; }
}

/* ===== DELIVERY PROMO ===== */
.delivery-promo {
	padding: 80px 20px;
	background: var(--bg-dark);
	border-top: 1px solid #2a2a2a;
}

.delivery-promo__inner {
	max-width: var(--max-width);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}

/* изображение */
.delivery-promo__image img {
	width: 100%;
	object-fit: contain;
	filter: drop-shadow(0 12px 40px rgba(0,0,0,0.5));
}

/* правая колонка */
.delivery-promo__content {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.delivery-promo__label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-head);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--orange);
}

.delivery-promo__label svg {
	width: 16px;
	height: 16px;
	fill: var(--orange);
}

.delivery-promo__title {
	font-family: var(--font-head);
	font-size: 40px;
	font-weight: 700;
	color: var(--text-light);
	line-height: 1.15;
}

.delivery-promo__text {
	font-size: 14px;
	color: var(--text-muted);
	line-height: 1.8;
}

.delivery-promo__btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	align-self: flex-start;
	padding: 13px 28px;
	background: var(--orange);
	color: #111;
	font-family: var(--font-head);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	border-radius: 4px;
	margin-top: 8px;
	transition: background 0.2s, color 0.2s;
	border: 2px solid var(--orange);
}

.delivery-promo__btn:hover {
	background: transparent;
	color: var(--orange);
}

.delivery-promo__btn svg {
	width: 16px;
	height: 16px;
	transition: transform 0.2s;
}

.delivery-promo__btn:hover svg {
	transform: translateX(4px);
}

/* адаптив */
@media (max-width: 768px) {
	.delivery-promo__inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.delivery-promo__title { font-size: 28px; }
	.delivery-promo__image { max-width: 360px; margin: 0 auto; }
}

@media (max-width: 480px) {
	.delivery-promo { padding: 48px 16px; }
	.delivery-promo__title { font-size: 24px; }
}

/* ===== MECHANIC PROMO ===== */
.mechanic-promo {
	position: relative;
	overflow: visible;
	margin-bottom: 0;
}

/* фон */
.mechanic-promo__bg {
	position: absolute;
	inset: 0;
	background-image: url('/img/main/bg_mechanic.png');
	background-size: cover;
	background-position: center;
}

/* затемнение */
.mechanic-promo__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.62);
}

.mechanic-promo__inner {
	position: relative;
	z-index: 1;
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 64px 20px 0;
	display: grid;
	grid-template-columns: 1fr 420px;
	align-items: flex-end;
	gap: 40px;
}

/* левая колонка */
.mechanic-promo__content {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding-bottom: 64px;
}

.mechanic-promo__title {
	font-family: var(--font-head);
	font-size: 44px;
	font-weight: 700;
	color: var(--text-light);
	line-height: 1.15;
	text-transform: uppercase;
}

.mechanic-promo__text {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.7;
}

.mechanic-promo__btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	align-self: flex-start;
	padding: 13px 28px;
	background: var(--orange);
	color: #111;
	font-family: var(--font-head);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	border: 2px solid var(--orange);
	border-radius: 4px;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
}

.mechanic-promo__btn:hover {
	background: transparent;
	color: var(--orange);
}

.mechanic-promo__btn svg {
	width: 16px;
	height: 16px;
	transition: transform 0.2s;
}

.mechanic-promo__btn:hover svg { transform: translateX(4px); }

/* правое изображение — выходит вверх за блок */
.mechanic-promo__image {
	display: flex;
	align-items: flex-end;
	margin-top: -40px;
}

.mechanic-promo__image img {
	width: 70%;
	object-fit: contain;
	filter: drop-shadow(-8px 0 24px rgba(0,0,0,0.5));
}

/* адаптив */
@media (max-width: 768px) {
	.mechanic-promo__inner {
		grid-template-columns: 1fr;
		padding-bottom: 0;
	}
	.mechanic-promo__content { padding-bottom: 32px; }
	.mechanic-promo__title { font-size: 30px; }
	.mechanic-promo__image {
		margin-top: 0;
		max-width: 320px;
		margin-left: auto;
		margin-right: auto;
	}
}

@media (max-width: 480px) {
	.mechanic-promo__title { font-size: 24px; }
}

/* ===== ENGINE REPLACE ===== */
.engine-replace {
	padding: 80px 20px;
	background: var(--bg-dark);
	border-top: 1px solid #2a2a2a;
}

.engine-replace__inner {
	max-width: var(--max-width);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 72px;
	align-items: center;
}

/* изображение */
.engine-replace__image img {
	width: 100%;
	border-radius: 4px;
	object-fit: cover;
	display: block;
}

/* правая колонка */
.engine-replace__content {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.engine-replace__title {
	font-family: var(--font-head);
	font-size: 40px;
	font-weight: 700;
	color: var(--text-light);
	line-height: 1.15;
}

.engine-replace__text {
	font-size: 14px;
	color: var(--text-muted);
	line-height: 1.8;
}

.engine-replace__divider {
	height: 1px;
	background: #2a2a2a;
}

/* счётчики */
.engine-replace__stats {
	display: flex;
	gap: 48px;
}

.engine-replace__stat {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.engine-replace__num {
	font-family: var(--font-head);
	font-size: 64px;
	font-weight: 700;
	color: var(--orange);
	line-height: 1;
}

.engine-replace__label {
	font-family: var(--font-head);
	font-size: 15px;
	font-weight: 600;
	color: var(--text-light);
}

/* адаптив */
@media (max-width: 768px) {
	.engine-replace__inner {
		grid-template-columns: 1fr;
		gap: 36px;
	}
	.engine-replace__title { font-size: 28px; }
	.engine-replace__num { font-size: 48px; }
}

@media (max-width: 480px) {
	.engine-replace { padding: 48px 16px; }
	.engine-replace__title { font-size: 24px; }
	.engine-replace__stats { gap: 32px; }
}

/* ===== CATEGORIES ===== */
.categories {
	padding: 80px 20px;
	background: var(--bg-dark);
	border-top: 1px solid #2a2a2a;
}

.categories__inner {
	max-width: var(--max-width);
	margin: 0 auto;
}

/* шапка */
.categories__header {
	text-align: center;
	margin-bottom: 48px;
}

.categories__label {
	display: block;
	font-family: var(--font-head);
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--orange);
	margin-bottom: 12px;
}

.categories__title {
	font-family: var(--font-head);
	font-size: 36px;
	font-weight: 700;
	color: var(--text-light);
	line-height: 1.2;
	margin-bottom: 14px;
}

.categories__subtitle {
	font-size: 14px;
	color: var(--text-muted);
	max-width: 640px;
	margin: 0 auto;
	line-height: 1.7;
}

/* сетка карточек */
.categories__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

/* карточка */
.cat-card {
	border-radius: 8px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.cat-card--light {
	background: #2a2a2a;
	border: 1px solid #333;
}

.cat-card--dark {
	background: var(--orange);
}

/* изображение */
.cat-card__image {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 32px 24px 0;
	min-height: 280px;
}

.cat-card__image img {
	max-height: 240px;
	width: auto;
	object-fit: contain;
	filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4));
	transition: transform 0.35s ease;
}

.cat-card:hover .cat-card__image img {
	transform: scale(1.04);
}

/* тело карточки */
.cat-card__body {
	padding: 24px 28px 28px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	flex: 1;
}

.cat-card__title {
	font-family: var(--font-head);
	font-size: 22px;
	font-weight: 700;
	line-height: 1.2;
}

.cat-card--light .cat-card__title { color: var(--text-light); }
.cat-card--dark  .cat-card__title { color: #1a1a1a; }

/* список */
.cat-card__list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.cat-card__list li {
	font-size: 14px;
	line-height: 1.5;
}

.cat-card--light .cat-card__list li { color: var(--orange); }
.cat-card--dark  .cat-card__list li { color: #1a1a1a; font-weight: 500; }

/* кнопка */
.cat-card__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 14px 24px;
	font-family: var(--font-head);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	border-radius: 4px;
	margin-top: auto;
	transition: background 0.2s, color 0.2s;
}

.cat-card__btn--orange {
	background: var(--orange);
	color: #111;
	border: 2px solid var(--orange);
}

.cat-card__btn--orange:hover {
	background: transparent;
	color: var(--orange);
}

.cat-card__btn--dark {
	background: #1a1a1a;
	color: #fff;
	border: 2px solid #1a1a1a;
}

.cat-card__btn--dark:hover {
	background: transparent;
	color: #1a1a1a;
}

/* адаптив */
@media (max-width: 768px) {
	.categories__grid { grid-template-columns: 1fr; }
	.categories__title { font-size: 26px; }
}

@media (max-width: 480px) {
	.categories { padding: 48px 16px; }
	.categories__title { font-size: 22px; }
	.cat-card__image { min-height: 200px; }
}

/* ===== PRODUCTS SLIDER ===== */
.products-slider {
	padding: 80px 20px;
	background: var(--bg-dark);
	border-top: 1px solid #2a2a2a;
}

.products-slider__inner {
	max-width: var(--max-width);
	margin: 0 auto;
}

/* шапка */
.products-slider__header {
	text-align: center;
	margin-bottom: 48px;
}

.products-slider__label {
	display: block;
	font-family: var(--font-head);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--orange);
	margin-bottom: 12px;
}

.products-slider__title {
	font-family: var(--font-head);
	font-size: 32px;
	font-weight: 700;
	color: var(--text-light);
	line-height: 1.2;
	margin-bottom: 10px;
}

.products-slider__subtitle {
	font-size: 14px;
	color: var(--text-muted);
}

/* слайды */
.products-slider__viewport {
	position: relative;
}

.products-slider__slide {
	display: none;
}

.products-slider__slide.active {
	display: block;
}

/* сетка карточек */
.products-slider__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

/* карточка */
.ps-card {
	background: #222;
	border-top: 2px solid #333;
	display: flex;
	flex-direction: column;
	transition: border-color 0.2s;
}

.ps-card:hover { border-top-color: var(--orange); }

.ps-card__img {
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: #1a1a1a;
}

.ps-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.ps-card:hover .ps-card__img img { transform: scale(1.04); }

.ps-card__body {
	padding: 16px 18px 20px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
}

.ps-card__name {
	font-family: var(--font-head);
	font-size: 15px;
	font-weight: 600;
	color: var(--text-light);
	line-height: 1.3;
}

.ps-card__price {
	font-family: var(--font-head);
	font-size: 18px;
	font-weight: 700;
	color: var(--orange);
	margin-top: auto;
}

.ps-card__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 16px;
	background: var(--orange);
	color: #111;
	font-family: var(--font-head);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	border: 2px solid var(--orange);
	border-radius: 4px;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
	margin-top: 4px;
}

.ps-card__btn svg {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

.ps-card__btn:hover {
	background: transparent;
	color: var(--orange);
}

/* точки */
.products-slider__dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 32px;
}

.ps-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #444;
	border: 2px solid #444;
	cursor: pointer;
	padding: 0;
	transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.ps-dot.active {
	background: var(--orange);
	border-color: var(--orange);
	transform: scale(1.3);
}

.ps-dot:hover:not(.active) {
	border-color: var(--orange);
}

/* кнопка в каталог */
.products-slider__footer {
	display: flex;
	justify-content: center;
	margin-top: 32px;
}

.products-slider__catalog-btn {
	display: inline-flex;
	align-items: center;
	padding: 13px 40px;
	border: 2px solid var(--orange);
	color: var(--orange);
	font-family: var(--font-head);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	border-radius: 4px;
	transition: background 0.2s, color 0.2s;
}

.products-slider__catalog-btn:hover {
	background: var(--orange);
	color: #111;
}

/* адаптив */
@media (max-width: 768px) {
	.products-slider__grid { grid-template-columns: 1fr 1fr; gap: 14px; }
	.products-slider__title { font-size: 24px; }
}

@media (max-width: 480px) {
	.products-slider { padding: 48px 16px; }
	.products-slider__grid { grid-template-columns: 1fr; }
}

/* ===== HOW TO ORDER ===== */
.how-to-order {
	padding: 80px 20px;
	background: var(--bg-dark);
	border-top: 1px solid #2a2a2a;
}

.how-to-order__inner {
	max-width: var(--max-width);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}

/* изображение */
.how-to-order__image {
	position: relative;
	border-radius: 4px;
	overflow: hidden;
}

.how-to-order__image > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 4px;
}

/* плашка поверх изображения */
.how-to-order__badge {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 60%;
	background: var(--orange);
	padding: 20px 24px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	border-radius: 8px 0 0 0;
}

.how-to-order__badge p {
	font-family: var(--font-head);
	font-size: 20px;
	font-weight: 700;
	color: #1a1a1a;
	line-height: 1.2;
}

.how-to-order__badge a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-head);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: #1a1a1a;
	transition: gap 0.2s;
}

.how-to-order__badge a:hover { gap: 14px; }

.how-to-order__badge a svg {
	width: 16px;
	height: 16px;
	stroke: #1a1a1a;
}

/* правая колонка */
.how-to-order__content {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.how-to-order__label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-head);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--orange);
}

.how-to-order__label svg {
	width: 18px;
	height: 18px;
	stroke: var(--orange);
	flex-shrink: 0;
}

.how-to-order__title {
	font-family: var(--font-head);
	font-size: 42px;
	font-weight: 700;
	color: var(--text-light);
	line-height: 1.1;
}

.how-to-order__text {
	font-size: 16px;
	color: var(--text-muted);
	line-height: 1.7;
	margin-top: -6px;
}

/* шаги */
.how-to-order__steps {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.hto-step {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.hto-step__num {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--orange);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-head);
	font-size: 15px;
	font-weight: 700;
	color: #111;
	flex-shrink: 0;
}

.hto-step__body h3 {
	font-family: var(--font-head);
	font-size: 18px;
	font-weight: 700;
	color: var(--text-light);
	margin-bottom: 6px;
	line-height: 1.3;
}

.hto-step__body p {
	font-size: 14px;
	color: var(--text-muted);
	line-height: 1.7;
}

/* кнопка */
.how-to-order__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	align-self: flex-start;
	padding: 13px 32px;
	background: var(--orange);
	color: #111;
	font-family: var(--font-head);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	border: 2px solid var(--orange);
	border-radius: 4px;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
	margin-top: 4px;
}

.how-to-order__btn:hover {
	background: transparent;
	color: var(--orange);
}

/* адаптив */
@media (max-width: 768px) {
	.how-to-order__inner {
		grid-template-columns: 1fr;
		gap: 36px;
	}
	.how-to-order__title { font-size: 28px; }
}

@media (max-width: 480px) {
	.how-to-order { padding: 48px 16px; }
	.how-to-order__title { font-size: 24px; }
	.how-to-order__badge p { font-size: 16px; }
}
/* ===== REVIEWS ===== */
.reviews {
	padding: 80px 20px;
	background: var(--bg-dark);
	border-top: 1px solid #2a2a2a;
}

.reviews__inner {
	max-width: var(--max-width);
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 48px;
}

/* шапка */
.reviews__header {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: end;
}

.reviews__label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-head);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--orange);
	margin-bottom: 12px;
}

.reviews__label svg {
	width: 18px;
	height: 18px;
	stroke: var(--orange);
	flex-shrink: 0;
}

.reviews__title {
	font-family: var(--font-head);
	font-size: 48px;
	font-weight: 700;
	color: var(--text-light);
	line-height: 1.1;
}

.reviews__header-right p {
	font-size: 15px;
	color: var(--text-muted);
	line-height: 1.8;
}

/* сетка карточек */
.reviews__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

/* карточка */
.review-card {
	background: #222;
	border: 1px solid #2e2e2e;
	border-bottom: 3px solid var(--orange);
	border-radius: 4px;
	padding: 28px 24px 24px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 24px;
}

.review-card__text {
	font-size: 14px;
	color: var(--text-muted);
	line-height: 1.8;
	font-style: italic;
	flex: 1;
}

.review-card__author {
	display: flex;
	align-items: center;
	gap: 14px;
	padding-top: 16px;
	border-top: 1px solid #2e2e2e;
}

.review-card__author img {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid var(--orange);
	flex-shrink: 0;
}

.review-card__author span {
	font-family: var(--font-head);
	font-size: 15px;
	font-weight: 700;
	color: var(--text-light);
}

/* адаптив */
@media (max-width: 1024px) {
	.reviews__header { gap: 40px; }
	.reviews__title { font-size: 36px; }
}

@media (max-width: 768px) {
	.reviews__header { grid-template-columns: 1fr; gap: 16px; }
	.reviews__grid { grid-template-columns: 1fr; }
	.reviews__title { font-size: 32px; }
}

@media (max-width: 480px) {
	.reviews { padding: 48px 16px; }
	.reviews__title { font-size: 28px; }
}