:root {
	--black: #0a0a0a;
	--black-light: #111111;
	--black-lighter: #1a1a1a;
	--white: #ffffff;
	--gray: #888888;
	--gray-light: #aaaaaa;
	--gray-dark: #666666;
	--yellow: #ffcc00;
	--yellow-dark: #e6b800;
	--border-color: #222222;
	--border-light: #333333;
	--header-height-desktop: 80px;
	--header-height-tablet: 70px;
	--header-height-mobile: 64px;
	--header-height-small: 60px;
	--font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
	--transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
	--transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.font-zoloto {
	color:#d4a843
}
.bg-zoloto {
	background-color:#d4a843
}

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

ul {
	list-style: none;
}

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


/* ========== HEADER (всегда фиксированный) ========== */
.main-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(10, 10, 10, 0.85);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	transition: all var(--transition-smooth);
	/* Аппаратное ускорение */
	transform: translateZ(0);
	-webkit-transform: translateZ(0);
	will-change: transform, background, box-shadow;
}

/* Состояние при скролле */
.main-header.scrolled {
	background: rgba(10, 10, 10, 0.98);
	border-bottom-color: rgba(255, 255, 255, 0.1);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

/* Скрытие/показ шапки при скролле */
.main-header.hidden {
	transform: translateY(-100%);
}

.main-header.visible {
	transform: translateY(0);
}

.header-container {
	margin: 0 auto;
	padding: 0 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--header-height-desktop);
	gap: 30px;
}

/* Логотип */
.logo {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	transition: opacity var(--transition-fast);
}

.logo:hover {
	opacity: 0.9;
}

.logo-img {
	height: 36px;
	width: auto;
}

/* Навигация */
.main-nav {
	height: 100%;
	display: flex;
	align-items: center;
}

.nav-list {
	display: flex;
	align-items: center;
	height: 100%;
	gap: 0;
}

.nav-item {
	height: 100%;
	display: flex;
	align-items: center;
	position: relative;
}

.nav-link {
	display: flex;
	align-items: center;
	height: 100%;
	padding: 0 20px;
	font-size: 14px;
	font-weight: 600;
	color: var(--gray);
	text-transform: uppercase;
	letter-spacing: 1.5px;
	transition: color var(--transition-fast);
	position: relative;
	white-space: nowrap;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%) scaleX(0);
	width: calc(100% - 40px);
	height: 2px;
	background: var(--yellow);
	transition: transform var(--transition-smooth);
	transform-origin: center;
}

.nav-item:hover .nav-link,
.nav-link.active {
	color: var(--white);
}

.nav-item:hover .nav-link::after,
.nav-link.active::after {
	transform: translateX(-50%) scaleX(1);
}

/* Обёртка для ссылки с дропдауном */
.dropdown-link-wrapper {
	display: flex;
	align-items: center;
	height: 100%;
	gap: 0;
}

.dropdown-link-text {
	display: flex;
	align-items: center;
	height: 100%;
	padding-right: 2px;
}

/* Кнопка-стрелка (отдельный элемент) */
.dropdown-toggle-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	padding: 0 20px 0 4px;
	cursor: pointer;
	background: none;
	border: none;
	color: var(--gray);
	transition: color var(--transition-fast);
	-webkit-tap-highlight-color: transparent;
	outline: none;
}

.dropdown-toggle-btn:hover {
	color: var(--yellow);
}

.dropdown-toggle-btn .dropdown-arrow {
	font-size: 10px;
	transition: transform var(--transition-smooth);
	pointer-events: none;
}

.has-dropdown.active .dropdown-toggle-btn .dropdown-arrow {
	transform: rotate(180deg);
	color: var(--yellow);
}

/* ========== ДРОПДАУН «КАТАЛОГ» ========== */
.catalog-dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	background: rgba(26, 26, 26, 0.98);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--border-color);
	border-radius: 12px;
	min-width: 280px;
	padding: 8px 0;
	visibility: hidden;
	opacity: 0;
	transform: translateY(-10px);
	transition: all var(--transition-smooth);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

.has-dropdown:hover .catalog-dropdown {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}

.catalog-dropdown-header {
	padding: 12px 20px 8px;
	border-bottom: 1px solid var(--border-color);
	margin-bottom: 4px;
}

.catalog-dropdown-title {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--yellow);
}

.catalog-dropdown ul li a {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 20px;
	font-size: 14px;
	font-weight: 500;
	color: var(--gray-light);
	transition: all var(--transition-fast);
}

.catalog-dropdown ul li a:hover {
	background: rgba(255, 255, 255, 0.03);
	color: var(--white);
}

.catalog-dropdown ul li a i {
	width: 18px;
	font-size: 15px;
	color: var(--gray);
	transition: color var(--transition-fast);
	text-align: center;
}

.catalog-dropdown ul li a:hover i {
	color: var(--yellow);
}

.catalog-dropdown .dropdown-divider {
	height: 1px;
	background: var(--border-color);
	margin: 4px 0;
}

.dropdown-badge {
	display: inline-block;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 2px 7px;
	border-radius: 3px;
	margin-left: auto;
	background: var(--yellow);
	color: var(--black);
	line-height: 1.4;
}

.dropdown-badge.hot {
	background: #ff4444;
	color: var(--white);
}

.dropdown-badge.new {
	background: var(--yellow);
	color: var(--black);
}

/* ========== ДЕЙСТВИЯ В HEADER ========== */
.header-actions {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
}

.icon-btn {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	color: var(--gray);
	font-size: 20px;
	transition: all var(--transition-fast);
	position: relative;
	background: transparent;
	border: none;
	cursor: pointer;
}

.icon-btn:hover {
	color: var(--white);
	background: rgba(255, 255, 255, 0.05);
}

.badge {
	position: absolute;
	top: 4px;
	right: 4px;
	min-width: 20px;
	height: 20px;
	background: var(--yellow);
	color: var(--black);
	font-size: 11px;
	font-weight: 700;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 5px;
	line-height: 1;
}

/* Дропдаун пользователя */
.user-dropdown {
	position: relative;
}

.user-dropdown-menu {
	position: absolute;
	top: calc(100% + 10px);
	right: 0;
	background: rgba(26, 26, 26, 0.98);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--border-color);
	border-radius: 12px;
	min-width: 260px;
	padding: 8px 0;
	visibility: hidden;
	opacity: 0;
	transform: translateY(-10px);
	transition: all var(--transition-smooth);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

.user-dropdown:hover .user-dropdown-menu {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}

.dropdown-user-info {
	padding: 16px 20px;
	border-bottom: 1px solid var(--border-color);
	margin-bottom: 4px;
}

.dropdown-user-name {
	font-size: 15px;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 2px;
}

.dropdown-user-email {
	font-size: 12px;
	color: var(--gray);
}

.user-dropdown-menu ul li a {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 20px;
	font-size: 14px;
	color: var(--gray-light);
	transition: all var(--transition-fast);
}

.user-dropdown-menu ul li a:hover {
	background: rgba(255, 255, 255, 0.03);
	color: var(--white);
}

.user-dropdown-menu ul li a i {
	width: 18px;
	font-size: 15px;
	color: var(--gray);
	transition: color var(--transition-fast);
}

.user-dropdown-menu ul li a:hover i {
	color: var(--yellow);
}

.dropdown-logout a {
	color: #ff5555 !important;
}

.dropdown-logout a:hover {
	background: rgba(255, 85, 85, 0.08) !important;
}

/* ========== БУРГЕР-МЕНЮ ========== */
.burger-btn {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 10px;
	z-index: 1001;
	flex-shrink: 0;
}

.burger-btn span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--white);
	transition: all var(--transition-smooth);
	transform-origin: center;
}

.burger-btn.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.burger-btn.active span:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}

.burger-btn.active span:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	z-index: 998;
}

.mobile-overlay.active {
	display: block;
}

/* ========== FOOTER ========== */
.main-footer {
	background: var(--black-light);
	border-top: 1px solid var(--border-color);
	margin-top: auto;
}

.footer-container {
	margin: 0 auto;
    padding: 60px 2rem 0 2rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
	gap: 50px;
	padding-bottom: 50px;
	border-bottom: 1px solid var(--border-color);
}

.footer-col h3 {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--white);
	margin-bottom: 24px;
	position: relative;
	padding-bottom: 12px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: default;
}

.footer-col h3::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 24px;
	height: 2px;
	background: var(--yellow);
}

.footer-accordion-arrow {
	display: none;
	font-size: 12px;
	color: var(--gray);
	transition: transform var(--transition-smooth);
}

.footer-description {
	font-size: 14px;
	color: var(--gray);
	line-height: 1.7;
	margin-bottom: 24px;
	max-width: 340px;
}

.footer-social {
	display: flex;
	gap: 12px;
}

.footer-social a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--black-lighter);
	border: 1px solid var(--border-light);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gray);
	font-size: 16px;
	transition: all var(--transition-fast);
}

.footer-social a:hover {
	background: var(--yellow);
	color: var(--black);
	border-color: var(--yellow);
	transform: translateY(-2px);
}

.footer-links li {
	margin-bottom: 14px;
}

.footer-links li a {
	font-size: 14px;
	color: var(--gray);
	transition: all var(--transition-fast);
	display: inline-block;
}

.footer-links li a:hover {
	color: var(--white);
	transform: translateX(4px);
}

.footer-badge {
	display: inline-block;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 2px 7px;
	border-radius: 3px;
	margin-left: 6px;
	background: var(--yellow);
	color: var(--black);
}

.footer-contact li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 16px;
	font-size: 14px;
	color: var(--gray);
	line-height: 1.5;
}

.footer-contact li i {
	color: var(--yellow);
	font-size: 16px;
	margin-top: 2px;
	width: 18px;
	flex-shrink: 0;
}

.footer-contact li a {
	color: var(--gray);
	transition: color var(--transition-fast);
}

.footer-contact li a:hover {
	color: var(--white);
}

.footer-cta {
	display: inline-block;
	margin-top: 8px;
	padding: 12px 28px;
	background: transparent;
	border: 2px solid var(--yellow);
	color: var(--yellow);
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	border-radius: 4px;
	transition: all var(--transition-fast);
}

.footer-cta:hover {
	background: var(--yellow);
	color: var(--black);
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 28px 0;
	flex-wrap: wrap;
	gap: 16px;
}

.footer-copyright {
	font-size: 13px;
	color: var(--gray-dark);
}

.footer-legal-links {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
}

.footer-legal-links a {
	font-size: 13px;
	color: var(--gray-dark);
	transition: color var(--transition-fast);
}

.footer-legal-links a:hover {
	color: var(--yellow);
}

.footer-payments {
	display: flex;
	align-items: center;
	gap: 12px;
}

.footer-payments span {
	font-size: 12px;
	color: var(--gray-dark);
	margin-right: 4px;
}

.footer-payments i {
	font-size: 28px;
	color: var(--gray);
	transition: color var(--transition-fast);
}

.footer-payments i:hover {
	color: var(--white);
}

/* ========== АДАПТИВНОСТЬ ========== */

@media (max-width: 1200px) {
	body {
		padding-top: var(--header-height-desktop);
	}
	
	.header-container {
		padding: 0 30px;
	}
	
	.nav-link {
		padding: 0 16px;
		font-size: 13px;
		letter-spacing: 1px;
	}

	.dropdown-link-text {
		padding-right: 1px;
	}

	.dropdown-toggle-btn {
		padding: 0 16px 0 3px;
	}
	
	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}
}

@media (max-width: 992px) {
	body {
		padding-top: var(--header-height-tablet);
	}
	
	.header-container {
		height: var(--header-height-tablet);
		padding: 0 20px;
	}
	
	.nav-link {
		padding: 0 12px;
		font-size: 12px;
		letter-spacing: 0.5px;
	}

	.dropdown-link-text {
		padding-right: 1px;
	}

	.dropdown-toggle-btn {
		padding: 0 12px 0 3px;
	}
	
	.catalog-dropdown {
		min-width: 260px;
	}
	
	.footer-grid {
		gap: 30px;
	}
	
	.footer-container {
		padding: 40px 20px 0;
	}
}

/* ===== МОБИЛЬНАЯ ВЕРСИЯ (≤768px) ===== */
@media (max-width: 768px) {
	body {
		padding-top: var(--header-height-mobile);
	}
	
	.header-container {
		height: var(--header-height-mobile);
		padding: 0 16px;
		gap: 16px;
	}
	
	/* Порядок элементов */
	.logo {
		order: 1;
		margin-right: auto;
	}
	
	.header-actions {
		order: 2;
		margin-left: 0;
	}
	
	.burger-btn {
		order: 3;
		display: flex;
	}
	
	.main-nav {
		order: 4;
	}
	
	 .burger-btn {
		order: 3;
		display: flex;
	}
	
	.main-nav {
		order: 4;
	}
	
	/* Мобильная навигация */
	.main-nav {
		position: fixed;
		top: 0;
		right: -100%;
		width: 85%;
		max-width: 380px;
		height: 100vh;
		height: 100dvh;
		background: var(--black);
		padding: 80px 24px 40px;
		transition: right var(--transition-smooth);
		z-index: 999;
		overflow-y: auto;
		flex-direction: column;
		align-items: stretch;
	}
	
	.main-nav.active {
		right: 0;
	}
	
	.nav-list {
		flex-direction: column;
		height: auto;
		gap: 0;
	}
	
	.nav-item {
		height: auto;
		flex-direction: column;
		border-bottom: 1px solid var(--border-color);
	}
	
	.nav-link {
		padding: 16px 0;
		font-size: 15px;
		font-weight: 600;
		letter-spacing: 1px;
		width: 100%;
		justify-content: center;
		height: auto;
	}
	
	.nav-link::after {
		display: none;
	}

	/* Обёртка дропдауна в мобильной версии */
	.dropdown-link-wrapper {
		width: 100%;
		height: auto;
		justify-content: space-between;
	}

	.dropdown-link-text {
		padding: 16px 0;
		height: auto;
		flex: 1;
		font-size: 15px;
		font-weight: 600;
		color: var(--gray);
		text-transform: uppercase;
		letter-spacing: 1px;
		transition: color var(--transition-fast);
	}

	.has-dropdown.active .dropdown-link-text {
		color: var(--white);
	}

	/* Кнопка-стрелка (мобильная) */
	.dropdown-toggle-btn {
		padding: 16px 8px 16px 16px;
		height: auto;
		/* Увеличиваем область касания */
		min-width: 44px;
		min-height: 44px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	/* Мобильный дропдаун каталога */
	.catalog-dropdown {
		position: static;
		background: transparent;
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
		border: none;
		border-radius: 0;
		visibility: visible;
		opacity: 1;
		transform: none;
		box-shadow: none;
		max-height: 0;
		overflow: hidden;
		transition: max-height var(--transition-slow);
		min-width: auto;
		padding: 0;
	}
	
	.has-dropdown.active .catalog-dropdown {
		max-height: 500px;
	}
	
	.catalog-dropdown-header {
		display: none;
	}
	
	.catalog-dropdown ul li a {
		padding: 12px 0 12px 16px;
		font-size: 14px;
	}
	
	/* Действия */
	.header-actions {
		gap: 4px;
	}
	
	.icon-btn {
		width: 40px;
		height: 40px;
		font-size: 18px;
	}
	
	.badge {
		min-width: 18px;
		height: 18px;
		font-size: 10px;
		top: 2px;
		right: 2px;
	}
	
	.user-dropdown-menu {
		position: fixed;
		top: var(--header-height-mobile);
		right: 10px;
		min-width: 240px;
	}

	/* ===== МОБИЛЬНЫЙ ФУТЕР (АККОРДЕОН) ===== */
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 0;
		border-bottom: none;
		padding-bottom: 0;
	}

	.footer-col {
		border-bottom: 1px solid var(--border-color);
	}

	.footer-col:last-child {
		border-bottom: none;
	}

	.footer-col h3 {
		margin-bottom: 0;
		padding: 18px 0;
		cursor: pointer;
		user-select: none;
	}

	.footer-col h3::after {
		display: none;
	}

	.footer-accordion-arrow {
		display: inline-block;
	}

	.footer-col.active .footer-accordion-arrow {
		transform: rotate(180deg);
	}

	.footer-col .footer-description,
	.footer-col .footer-social,
	.footer-col .footer-links,
	.footer-col .footer-contact,
	.footer-col .footer-cta {
		max-height: 0;
		overflow: hidden;
		transition: max-height var(--transition-slow), padding var(--transition-smooth), margin var(--transition-smooth);
		padding-top: 0;
		padding-bottom: 0;
		margin-top: 0;
		margin-bottom: 0;
	}

	.footer-col.active .footer-description,
	.footer-col.active .footer-links,
	.footer-col.active .footer-contact {
		max-height: 500px;
	}

	.footer-col.active .footer-social {
		max-height: 60px;
		margin-bottom: 20px;
	}

	.footer-col.active .footer-description {
		margin-bottom: 16px;
	}

	.footer-col.active .footer-links {
		padding-bottom: 8px;
	}

	.footer-col.active .footer-contact {
		padding-bottom: 8px;
	}

	.footer-col.active .footer-cta {
		max-height: 50px;
		margin-top: 8px;
		margin-bottom: 20px;
	}

	.footer-col:first-child .footer-description,
	.footer-col:first-child .footer-social {
		max-height: 500px;
		margin-bottom: 16px;
	}

	.footer-col:first-child .footer-social {
		max-height: 60px;
		margin-bottom: 20px;
	}

	.footer-col:first-child .footer-accordion-arrow {
		display: none;
	}

	.footer-col:first-child h3 {
		cursor: default;
	}

	.footer-bottom {
		flex-direction: column;
		text-align: center;
		gap: 16px;
		border-top: 1px solid var(--border-color);
		margin-top: 0;
		padding-top: 24px;
	}
	
	.footer-legal-links {
		justify-content: center;
		gap: 16px;
	}
	
	.footer-payments {
		justify-content: center;
	}
}

/* Маленький мобильный (≤480px) */
@media (max-width: 480px) {
	body {
		padding-top: var(--header-height-small);
	}
	
	.header-container {
		height: var(--header-height-small);
		padding: 0 12px;
		gap: 10px;
	}
	
	.logo-img {
		height: 28px;
	}
	
	.icon-btn {
		width: 36px;
		height: 36px;
		font-size: 16px;
	}
	
	.dropdown-toggle-btn {
		padding: 14px 6px 14px 14px;
		min-width: 40px;
		min-height: 40px;
	}

	.dropdown-link-text {
		padding: 14px 0;
		font-size: 14px;
	}
	
	.badge {
		min-width: 16px;
		height: 16px;
		font-size: 9px;
		top: 1px;
		right: 1px;
	}
	
	.user-dropdown-menu {
		top: var(--header-height-small);
		right: 6px;
		min-width: 200px;
		border-radius: 8px;
	}
	
	.dropdown-user-info {
		padding: 12px 16px;
	}
	
	.user-dropdown-menu ul li a {
		padding: 10px 16px;
		font-size: 13px;
	}
	
	.footer-container {
		padding: 30px 16px 0;
	}
	
	.footer-col h3 {
		font-size: 13px;
		padding: 16px 0;
	}
	
	.footer-legal-links {
		flex-direction: column;
		align-items: center;
		gap: 8px;
	}
}

@media (hover: none) and (pointer: coarse) {
	.catalog-dropdown {
		transition: none;
	}

	.nav-link::after {
		display: none;
	}
}

/*BLOG*/
.hero-card {
	position: relative;
	width: 100%;
	aspect-ratio: 21/9;
	overflow: hidden;
	cursor: pointer;
}

.hero-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
}

.hero-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 48px 56px;
}

/* CARDS */
.card {
	position: relative;
	overflow: hidden;
	cursor: pointer;
	background: #111;
}

.card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	display: block;
}

.card:hover img {
	transform: scale(1.06);
}

.card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, transparent 60%);
}

.card-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 28px 32px;
}

.card-sm .card-content {
	padding: 20px 24px;
}

/* NUMBERS */
.art-num {
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.35);
	margin-bottom: 8px;
	display: block;
}

/* TAG */
.tag {
	display: inline-block;
	font-size: 9px;
	font-weight: 900;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	padding: 4px 12px;
	border: 1px solid rgba(255, 255, 255, 0.25);
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 12px;
}

.tag-blue {
	border-color: #0066ff;
	color: #0066ff;
	background: rgba(0, 102, 255, 0.08);
}

/* TYPOGRAPHY */
.hero-title {
	font-size: clamp(28px, 4vw, 56px);
	font-weight: 900;
	line-height: 1.0;
	letter-spacing: -0.03em;
	text-transform: uppercase;
	color: #fff;
}

.card-title {
	font-size: clamp(16px, 2vw, 22px);
	font-weight: 900;
	line-height: 1.1;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	color: #fff;
}

.card-title-sm {
	font-size: clamp(13px, 1.4vw, 16px);
	font-weight: 900;
	line-height: 1.15;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	color: #fff;
}

.hero-lead {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.6;
	margin-top: 12px;
	max-width: 560px;
}

/* READ BTN */
.read-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 10px;
	font-weight: 900;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: #fff;
	margin-top: 16px;
}

.read-btn::after {
	content: '→';
	font-size: 14px;
	transition: transform 0.3s ease;
}

.card:hover .read-btn::after {
	transform: translateX(4px);
}

/* DIVIDER */
.section-label {
	font-size: 10px;
	font-weight: 900;
	letter-spacing: 0.4em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.2);
	display: flex;
	align-items: center;
	gap: 16px;
}

.section-label::before {
	content: '';
	flex: 1;
	height: 1px;
	background: rgba(255, 255, 255, 0.08);
}

.section-label::after {
	content: '';
	flex: 1;
	height: 1px;
	background: rgba(255, 255, 255, 0.08);
}

/* HORIZONTAL LIST */
.list-row {
	display: flex;
	gap: 1px;
	background: rgba(255, 255, 255, 0.05);
}

.list-item {
	flex: 1;
	background: #0a0a0a;
	padding: 28px 24px;
	cursor: pointer;
	transition: background 0.3s ease;
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

.list-item:hover {
	background: #111;
}

.list-item-num {
	font-size: 32px;
	font-weight: 900;
	color: rgba(255, 255, 255, 0.06);
	line-height: 1;
	flex-shrink: 0;
	width: 48px;
}
/*END BLOG*/

/*CART*/
body.cart { font-family: 'Inter', sans-serif; background-color: #f8f8f8; }
.cart-item-img { transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1); }
.cart-item:hover .cart-item-img { transform: scale(1.05); }
.qty-input::-webkit-outer-spin-button, .qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty-input { -moz-appearance: textfield; }
/*END CART*/

/*ORDER*/
body.order { font-family: 'Inter', sans-serif; background-color: #f8f8f8; }
.order .input-focus:focus { border-color: #3b82f6; ring: 2px solid rgba(59, 130, 246, 0.1); }
/*END ORDER*/

/*О НАС*/
.about-container {
	margin: 0 auto;
	padding: 60px 20px;
}

/* Хлебные крошки */
.breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: #888;
	margin-bottom: 40px;
	letter-spacing: 0.3px;
}

.breadcrumbs a {
	color: #888;
	text-decoration: none;
	transition: color 0.2s;
	font-weight: 500;
}

.breadcrumbs a:hover {
	color: #d4a843;
}

.breadcrumbs .separator {
	color: #555;
}

.breadcrumbs .current {
	color: #d4a843;
	font-weight: 600;
}

/* Заголовок страницы */
.page-header {
	margin-bottom: 60px;
	border-bottom: 1px solid rgba(212, 168, 67, 0.3);
	padding-bottom: 20px;
}

.page-subtitle {
	font-size: 0.85rem;
	font-weight: 500;
	color: #b0b0b0;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	margin-bottom: 8px;
}

.page-title {
	font-size: clamp(2.2rem, 6vw, 3.5rem);
	font-weight: 700;
	line-height: 1.15;
	color: #ffffff;
	letter-spacing: -0.5px;
}

.page-title .accent {
	color: #d4a843;
}

/* Секции */
.about-section {
	margin-bottom: 80px;
}

.section-title {
	font-size: clamp(1.6rem, 4vw, 2.2rem);
	font-weight: 700;
	color: #ffffff;
	letter-spacing: -0.3px;
	margin-bottom: 30px;
	text-transform: uppercase;
}

.section-title .accent {
	color: #d4a843;
}

/* История — сетка */
.history-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-bottom: 40px;
}

.history-text {
	font-size: 1.05rem;
	color: #c0c0c0;
	line-height: 1.8;
}

.history-text p {
	margin-bottom: 18px;
}

.history-text strong {
	color: #ffffff;
}

.history-text .highlight {
	color: #d4a843;
	font-weight: 600;
}

/* Цифры */
.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 24px;
	margin: 40px 0;
}

.stat-card {
	background: #161616;
	border: 1px solid #2a2a2a;
	border-radius: 4px;
	padding: 28px 22px;
	text-align: center;
	transition: border-color 0.3s, transform 0.3s;
}

.stat-card:hover {
	border-color: #d4a843;
	transform: translateY(-4px);
}

.stat-number {
	font-size: 2.8rem;
	font-weight: 700;
	color: #d4a843;
	line-height: 1.1;
	margin-bottom: 8px;
}

.stat-label {
	font-size: 0.9rem;
	color: #b0b0b0;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	font-weight: 500;
}

/* Галерея */
.gallery-outer {
	position: relative;
}

.swiper-gallery {
	padding: 6px 12px 44px;
	margin: 0 -12px;
	overflow: hidden;
}
.about-container .swiper-wrapper {
	max-height: 280px;
}

.swiper-slide {
	height: auto;
	display: flex;
}

.gallery-card {
	background: #161616;
	border: 1px solid #2a2a2a;
	border-radius: 4px;
	overflow: hidden;
	cursor: pointer;
	transition: border-color 0.3s, transform 0.3s;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.gallery-card:hover {
	border-color: #d4a843;
	transform: translateY(-4px);
}

.gallery-img {
	height: 280px;
	width: 100%;
	overflow: hidden;
	flex-shrink: 0;
}

.gallery-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s;
}

.gallery-card:hover .gallery-img img {
	transform: scale(1.05);
}

.gallery-caption {
	padding: 14px 16px;
	font-size: 0.85rem;
	color: #b0b0b0;
	letter-spacing: 0.3px;
}

/* Попап */
.popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.9);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s, visibility 0.3s;
}

.popup-overlay.active {
	opacity: 1;
	visibility: visible;
}

.popup-overlay img {
	max-width: 90%;
	max-height: 90%;
	border-radius: 4px;
	box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.popup-close {
	position: absolute;
	top: 20px;
	right: 30px;
	font-size: 2.5rem;
	color: #d4a843;
	cursor: pointer;
	transition: color 0.25s;
	z-index: 2;
}

.popup-close:hover {
	color: #ffffff;
}

/* Навигация галереи */
.swiper-nav-about {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
	pointer-events: none;
}

.swiper-nav-about.prev-about {
	left: -18px;
}

.swiper-nav-about.next-about {
	right: -18px;
}

.swiper-button-prev-about,
.swiper-button-next-about {
	width: 42px;
	height: 42px;
	min-width: 42px;
	background: #1e1e1e;
	border: 1px solid #3a3a3a;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	pointer-events: auto;
	transition: background 0.25s, border-color 0.25s;
	box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.swiper-button-prev-about:hover,
.swiper-button-next-about:hover {
	background: #2a2a2a;
	border-color: #d4a843;
}

.swiper-button-prev-about .nav-icon,
.swiper-button-next-about .nav-icon {
	width: 18px;
	height: 18px;
	color: #d4a843;
	transition: color 0.25s;
}

.swiper-button-prev-about:hover .nav-icon,
.swiper-button-next-about:hover .nav-icon {
	color: #ffffff;
}

.swiper-pagination-about {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	gap: 8px;
}

.swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: #444;
	opacity: 1;
	border-radius: 5px;
	cursor: pointer;
}

.swiper-pagination-bullet-active {
	background: #d4a843;
	width: 26px;
}

/* Отзывы */
.reviews-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 24px;
	margin-bottom: 40px;
}

.review-card {
	background: #161616;
	border: 1px solid #2a2a2a;
	border-radius: 4px;
	padding: 24px 22px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	transition: border-color 0.3s;
}

.review-card:hover {
	border-color: #d4a843;
}

.review-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 12px;
}

.review-author {
	font-weight: 700;
	color: #ffffff;
	font-size: 1rem;
}

.review-date {
	font-size: 0.75rem;
	color: #888;
}

.review-stars {
	color: #d4a843;
	font-size: 1rem;
	letter-spacing: 2px;
}

.review-text {
	color: #c0c0c0;
	font-size: 0.95rem;
	line-height: 1.6;
	flex: 1;
}

.review-source {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.75rem;
	color: #888;
	text-decoration: none;
	transition: color 0.2s;
	margin-top: auto;
}

.review-source:hover {
	color: #d4a843;
}

.review-source .yandex-icon {
	width: 16px;
	height: 16px;
	background: #fc3f1d;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	font-weight: 700;
	color: #fff;
}

.cta-block {
	margin-top: 40px;
	background: #1a1a1a;
	border: 1px solid #d4a843;
	color: white;
	padding: 28px 30px;
	border-radius: 4px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}

.cta-text {
	font-weight: 600;
	font-size: 1.2rem;
	letter-spacing: 0.3px;
}

.cta-button {
	background: #d4a843;
	color: #0f0f0f;
	font-weight: 700;
	padding: 12px 28px;
	border-radius: 4px;
	text-decoration: none;
	transition: background 0.25s;
	font-size: 0.95rem;
	text-transform: uppercase;
	letter-spacing: 0.6px;
	white-space: nowrap;
}

.cta-button:hover {
	background: #e6bc5c;
}

@media (max-width: 768px) {
	.gallery-img {
		height: 220px;
	}
	.swiper-nav-about {
		display: none;
	}
	.swiper-pagination-bullet {
		width: 12px;
		height: 12px;
	}
	.swiper-pagination-bullet-active {
		width: 28px;
	}
	.gallery-card {
		max-height: 220px;
	}
	.about-container .swiper-wrapper {
		max-height: 220px;
	}
}

@media (max-width: 480px) {
	.cta-block {
		flex-direction: column;
		align-items: flex-start;
	}
}
/*О НАС*/

/*О нас Главная*/
.about-main {
	box-sizing: border-box;
	color: #ffffff;
}

.about-main-header {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-end;
	gap: 16px;
	margin-bottom: 24px;
	border-bottom: 1px solid rgba(212, 168, 67, 0.3);
	padding-bottom: 16px;
}

.about-main-header-left {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.about-main-subtitle {
	font-size: 0.75rem;
	font-weight: 500;
	color: #b0b0b0;
	letter-spacing: 1.2px;
	text-transform: uppercase;
}

.about-main-title {
	font-size: clamp(1.4rem, 5vw, 2.2rem);
	font-weight: 700;
	color: #ffffff;
	letter-spacing: -0.3px;
	margin: 0;
	line-height: 1.15;
	text-transform: uppercase;
}

.about-main-title .accent {
	color: #d4a843;
}

.about-main-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #d4a843;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.8rem;
	letter-spacing: 0.6px;
	text-transform: uppercase;
	transition: color 0.25s, gap 0.25s;
	white-space: nowrap;
	padding-bottom: 2px;
	border-bottom: 1px solid transparent;
	flex-shrink: 0;
}

.about-main-link:hover {
	color: #f0c45a;
	gap: 10px;
	border-bottom-color: #f0c45a;
}

.about-main-link .arrow {
	font-size: 1rem;
	transition: transform 0.25s;
}

.about-main-link:hover .arrow {
	transform: translateX(3px);
}

/* === ОСНОВНАЯ СЕТКА === */
.about-main-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	margin-bottom: 32px;
}

/* Текст */
.about-main-text {
	font-size: 0.9rem;
	color: #c0c0c0;
	line-height: 1.7;
}

.about-main-text p {
	margin-bottom: 12px;
}

.about-main-text strong {
	color: #ffffff;
}

.about-main-text .highlight {
	color: #d4a843;
	font-weight: 600;
}

/* Цифры */
.about-main-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	align-content: start;
}

.about-stat-card {
	background: #161616;
	border: 1px solid #2a2a2a;
	border-radius: 4px;
	padding: 16px 12px;
	text-align: center;
	transition: border-color 0.3s, transform 0.3s;
}

.about-stat-card:hover {
	border-color: #d4a843;
	transform: translateY(-3px);
}

.about-stat-number {
	font-size: 1.6rem;
	font-weight: 700;
	color: #d4a843;
	line-height: 1.1;
	margin-bottom: 4px;
}

.about-stat-label {
	font-size: 0.7rem;
	color: #b0b0b0;
	letter-spacing: 0.4px;
	text-transform: uppercase;
	font-weight: 500;
}

/* === ГАЛЕРЕЯ === */
.about-gallery-outer {
	position: relative;
	margin-bottom: 32px;
}

.swiper-about {
	padding: 4px 8px 40px;
	margin: 0 -8px;
}

.about-gallery-card {
	background: #161616;
	border: 1px solid #2a2a2a;
	border-radius: 4px;
	overflow: hidden;
	cursor: pointer;
	transition: border-color 0.3s, transform 0.3s;
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: column;
	-webkit-tap-highlight-color: transparent;
}
.about-gallery-outer .swiper-wrapper {
	max-height:222px;
}

.about-gallery-card:hover {
	border-color: #d4a843;
	transform: translateY(-4px);
}

.about-gallery-card:active {
	transform: scale(0.98);
}

.about-gallery-img {
	height: 180px;
	width: 100%;
	overflow: hidden;
	flex-shrink: 0;
}

.about-gallery-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s;
}

.about-gallery-card:hover .about-gallery-img img {
	transform: scale(1.05);
}

.about-gallery-caption {
	padding: 10px 12px;
	font-size: 0.72rem;
	color: #b0b0b0;
	letter-spacing: 0.2px;
	line-height: 1.4;
}

/* Навигация галереи */
.swiper-nav-about {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
	pointer-events: none;
}

.swiper-nav-about.prev-about {
	left: -16px;
}

.swiper-nav-about.next-about {
	right: -16px;
}

.swiper-button-prev-about,
.swiper-button-next-about {
	width: 36px;
	height: 36px;
	min-width: 36px;
	background: #1e1e1e;
	border: 1px solid #3a3a3a;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	pointer-events: auto;
	transition: background 0.25s, border-color 0.25s;
	box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.swiper-button-prev-about:hover,
.swiper-button-next-about:hover {
	background: #2a2a2a;
	border-color: #d4a843;
}

.swiper-button-prev-about .nav-icon,
.swiper-button-next-about .nav-icon {
	width: 16px;
	height: 16px;
	color: #d4a843;
	transition: color 0.25s;
}

.swiper-button-prev-about:hover .nav-icon,
.swiper-button-next-about:hover .nav-icon {
	color: #ffffff;
}

.swiper-pagination-about {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	gap: 8px;
}

.swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: #444;
	opacity: 1;
	border-radius: 5px;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}

.swiper-pagination-bullet-active {
	background: #d4a843;
	width: 26px;
}
.swiper-about {
	overflow: hidden;
}
@media (min-width: 360px) {
	.swiper-about .swiper-wrapper {
		max-height: 165px;
	}
}
/* === АДАПТИВ: Планшеты (580px+) === */
@media (min-width: 580px) {
	.about-main {
		padding: 0 20px;
		margin-top: 48px;
	}

	.about-main-header {
		margin-bottom: 28px;
		padding-bottom: 18px;
	}

	.about-main-subtitle {
		font-size: 0.8rem;
	}

	.about-main-link {
		font-size: 0.85rem;
		gap: 8px;
	}

	.about-main-grid {
		grid-template-columns: 1fr 1fr;
		gap: 30px;
		margin-bottom: 36px;
	}

	.about-main-text {
		font-size: 0.95rem;
	}

	.about-main-stats {
		grid-template-columns: 1fr 1fr;
		gap: 14px;
	}

	.about-stat-card {
		padding: 18px 14px;
	}

	.about-stat-number {
		font-size: 1.8rem;
	}

	.about-stat-label {
		font-size: 0.72rem;
	}

	.about-gallery-img {
		height: 180px;
	}

	.about-gallery-caption {
		font-size: 0.75rem;
		padding: 12px 14px;
	}

	.swiper-about {
		padding: 6px 10px 44px;
		margin: 0 -10px;
	}
}

/* === АДАПТИВ: Десктопы (860px+) === */
@media (min-width: 860px) {
	.about-main {
		margin-top: 80px;
		padding: 0;
	}

	.about-main-header {
		margin-bottom: 32px;
		gap: 20px;
	}

	.about-main-subtitle {
		font-size: 0.85rem;
	}

	.about-main-link {
		font-size: 0.9rem;
	}

	.about-main-link .arrow {
		font-size: 1.1rem;
	}

	.about-main-grid {
		gap: 40px;
		margin-bottom: 40px;
	}

	.about-main-text {
		font-size: 1rem;
		line-height: 1.8;
	}

	.about-main-text p {
		margin-bottom: 16px;
	}

	.about-main-stats {
		grid-template-columns: 1fr 1fr 1fr;
		gap: 16px;
	}

	.about-stat-card {
		padding: 20px 16px;
	}

	.about-stat-number {
		font-size: 2rem;
		margin-bottom: 6px;
	}

	.about-stat-label {
		font-size: 0.78rem;
		letter-spacing: 0.5px;
	}

	.about-gallery-img {
		height: 220px;
	}

	.about-gallery-caption {
		font-size: 0.8rem;
		letter-spacing: 0.3px;
	}

	.swiper-button-prev-about,
	.swiper-button-next-about {
		width: 42px;
		height: 42px;
		min-width: 42px;
	}

	.swiper-button-prev-about .nav-icon,
	.swiper-button-next-about .nav-icon {
		width: 18px;
		height: 18px;
	}

	.swiper-nav-about.prev-about {
		left: -20px;
	}

	.swiper-nav-about.next-about {
		right: -20px;
	}

	.swiper-about {
		padding: 6px 12px 44px;
		margin: 0 -12px;
	}
}

/* === АДАПТИВ: Большие десктопы (1024px+) === */
@media (min-width: 1024px) {
	.about-main-stats {
		grid-template-columns: 1fr 1fr 1fr;
	}
}

/* На тач-устройствах скрываем стрелки */
@media (hover: none) and (pointer: coarse) {
	.swiper-nav-about {
		display: none;
	}
	.swiper-pagination-bullet {
		width: 12px;
		height: 12px;
	}
	.swiper-pagination-bullet-active {
		width: 28px;
	}
}
/*О нас Главная*/