:root {
	--deep: #10402f;
	--deep-soft: #17553f;
	--mint: #22d3a4;
	--ink: #0d1b16;
	--muted: #5c7268;
	--glass: rgba(255, 255, 255, 0.78);
	--glass-line: rgba(255, 255, 255, 0.9);
	--shadow-soft: 0 24px 48px -26px rgba(13, 60, 45, 0.3), 0 8px 20px -14px rgba(13, 60, 45, 0.18);
	--shadow-lift: 0 36px 64px -30px rgba(13, 60, 45, 0.38), 0 14px 28px -18px rgba(13, 60, 45, 0.24);
	--radius-lg: 32px;
	--radius-md: 20px;
	--radius-sm: 14px;
}

.btn--solid,
.btn--ghost {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border-radius: var(--radius-sm);
	font-weight: 600;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn--solid {
	padding: 16px 26px;
	background: linear-gradient(140deg, var(--deep-soft), var(--deep));
	color: var(--white);
	box-shadow: 0 20px 34px -18px rgba(16, 64, 47, 0.7);
}

.btn--ghost {
	padding: 16px 26px;
	background: var(--white);
	color: var(--ink);
	border: 1px solid var(--line);
	box-shadow: var(--shadow-soft);
}

.btn--sm {
	padding: 11px 20px;
	font-size: 14px;
}

.btn--solid:hover,
.btn--ghost:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-lift);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 40;
	padding: 14px 0;
	background: rgba(247, 250, 248, 0.6);
	backdrop-filter: blur(16px) saturate(1.4);
	border-bottom: 1px solid transparent;
	transform: translateY(0);
	transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease, transform 0.35s ease;
}

.site-header.is-stuck {
	padding: 10px 0;
	background: rgba(247, 250, 248, 0.94);
	border-bottom-color: var(--line);
	box-shadow: var(--shadow-soft);
}

.site-header.is-hidden {
	transform: translateY(-100%);
}

.site-header__logo svg,
.site-header__logo img {
	height: 30px;
	width: auto;
}

.site-header .grid {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: nowrap;
}

.site-header .header-left,
.site-header .header-actions {
	flex: 0 0 auto;
	width: auto;
}

.site-header .main-nav {
	flex: 1 1 auto;
	display: flex;
	justify-content: center;
	min-width: 0;
	overflow: hidden;
}

.main-nav__list {
	display: flex;
	align-items: center;
	gap: 6px;
	margin: 0;
	padding: 6px;
	list-style: none;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 999px;
	box-shadow: var(--shadow-soft);
	flex-wrap: nowrap;
	max-width: 100%;
}

.main-nav__list a {
	display: inline-flex;
	align-items: center;
	white-space: nowrap;
	padding: 10px 18px;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 500;
	color: var(--ink);
	transition: background 0.2s ease, color 0.2s ease;
}

.main-nav__list a:hover {
	background: var(--green-soft);
	color: var(--green-dark);
}

@media (max-width: 1450px) {
	.main-nav__list {
		gap: 2px;
	}

	.main-nav__list a {
		padding: 9px 13px;
		font-size: 14px;
	}

	.header-cta {
		padding: 10px 18px;
		font-size: 14px;
	}
}

.header-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
}

.header-cta {
	white-space: nowrap;
}

.user-chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 10px;
	border-radius: 999px;
	border: 1px solid var(--line);
	background: var(--white);
	color: var(--ink);
}

.user-chip__avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: linear-gradient(140deg, var(--green-light), var(--green-dark));
	color: var(--white);
	font-size: 12px;
	font-weight: 700;
}

.cart {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 14px;
	border-radius: 999px;
	border: 1px solid var(--line);
	background: var(--white);
	color: var(--ink);
	box-shadow: var(--shadow-soft);
}

.cart__icon {
	position: relative;
	width: 18px;
	height: 18px;
}

.cart__counter {
	position: absolute;
	top: -8px;
	right: -8px;
	min-width: 15px;
	height: 15px;
	padding: 0 3px;
	border-radius: 50%;
	background: var(--green);
	color: var(--white);
	font-size: 10px;
	line-height: 15px;
	text-align: center;
}

.site-footer {
	padding: 64px 0 32px;
	background: linear-gradient(150deg, var(--deep-soft), #0a2b20);
	color: rgba(255, 255, 255, 0.85);
}

.site-footer__logo svg,
.site-footer__logo img {
	height: 28px;
	filter: brightness(0) invert(1);
}

.site-footer__tagline {
	margin: 16px 0;
	color: rgba(255, 255, 255, 0.6);
	font-size: 15px;
	line-height: 1.6;
}

.footer-col__title {
	display: block;
	margin-bottom: 16px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
}

.footer-menu {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 10px;
}

.footer-menu a,
.footer-contacts a {
	color: rgba(255, 255, 255, 0.82);
	font-size: 15px;
}

.footer-menu a:hover,
.footer-contacts a:hover {
	color: var(--green-light);
}

.footer-contacts {
	display: grid;
	gap: 10px;
}

.footer-contacts__address {
	color: rgba(255, 255, 255, 0.6);
	font-size: 14px;
}

.footer-login {
	display: inline-block;
	margin-top: 4px;
	font-weight: 600;
	color: var(--green-light);
}

.socials {
	display: flex;
	gap: 10px;
	margin: 18px 0;
	padding: 0;
	list-style: none;
}

.socials a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.16);
	color: var(--white);
}

.copyright {
	margin-top: 20px;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.4);
}

.breadcrumbs {
	margin-bottom: 24px;
	font-size: 14px;
	color: var(--muted);
}

.breadcrumbs a {
	color: var(--green-dark);
}

.page {
	padding: 56px 0 88px;
}

.page__title {
	margin: 0 0 20px;
	font-size: clamp(30px, 3.4vw, 46px);
	letter-spacing: -0.015em;
	color: var(--ink);
}

.page__intro {
	max-width: 640px;
	margin-bottom: 36px;
	font-size: 17px;
	line-height: 1.6;
	color: var(--muted);
}

.about-stats {
	margin-bottom: 48px;
}

.stat-card,
.contacts-card {
	padding: 28px 26px;
	border-radius: var(--radius-lg);
	background: var(--white);
	border: 1px solid var(--line);
	box-shadow: var(--shadow-soft);
}

.stat-card__num {
	display: block;
	margin-bottom: 6px;
	font-size: 32px;
	font-weight: 700;
	color: var(--green-dark);
}

.stat-card__label {
	display: block;
	margin-bottom: 4px;
	font-size: 15px;
	font-weight: 600;
	color: var(--ink);
}

.stat-card__desc {
	font-size: 13px;
	color: var(--muted);
}

.contacts-card {
	display: grid;
	gap: 22px;
}

.contact-row {
	display: grid;
	gap: 4px;
}

.contact-row__label {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--green-dark);
}

.contact-row__value {
	font-size: 17px;
	color: var(--ink);
}

.contacts-map {
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-soft);
}

.contacts-map img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (max-width: 1199px) {
	.header-cta {
		display: none;
	}
}

@media (max-width: 786px) {
	.site-header {
		padding: 10px 0;
	}
}
