@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@400;500;600;700;800&family=Rubik:wght@300;400;500&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@400;500;600;700;800&family=Rubik:wght@300;400;500&display=swap');

:root {
	--ink: #0e0e0f;
	--ink2: #3a3a3c;
	--ink3: #8a8a8f;
	--surface: #f5f4f0;
	--white: #ffffff;
	--accent: #e8401c;
	--border: rgba(14, 14, 15, 0.1);
	--border2: rgba(14, 14, 15, 0.06);
	--radius: 12px;
	--radius-lg: 20px;
}
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html {
	scroll-behavior: smooth;
}
body {
	font-family: 'Rubik', sans-serif;
	background: var(--white);
	color: var(--ink);
	font-size: 15px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4,
h5 {
	font-family: 'Exo 2', sans-serif;
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.1;
}
a {
	text-decoration: none;
	color: inherit;
}

/* NAV */
.nav {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--border);
	padding: 0 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 68px;
}
.nav-logo {
	display: flex;
	align-items: center;
	padding: 4px 0;
}
.nav-logo-dot {
	display: none;
}
.nav-links {
	display: flex;
	gap: 4px;
}
.nav-links a {
	font-size: 14px;
	color: var(--ink2);
	padding: 6px 14px;
	border-radius: 8px;
	transition: all 0.2s;
}
.nav-links a:hover {
	color: var(--ink);
	background: var(--surface);
}
.nav-links a.active {
	color: var(--ink);
	font-weight: 500;
	background: var(--surface);
}
.nav-actions {
	display: flex;
	gap: 10px;
}
.btn-outline {
	font-family: 'Rubik', sans-serif;
	font-size: 13px;
	font-weight: 500;
	padding: 9px 20px;
	border-radius: 8px;
	border: 1px solid var(--border);
	background: transparent;
	color: var(--ink2);
	cursor: pointer;
	transition: all 0.2s;
}
.btn-outline:hover {
	border-color: var(--ink);
	color: var(--ink);
}
.btn-primary {
	font-family: 'Rubik', sans-serif;
	font-size: 13px;
	font-weight: 500;
	padding: 9px 22px;
	border-radius: 8px;
	border: none;
	background: var(--ink);
	color: #fff;
	cursor: pointer;
	transition: background 0.2s;
}
.btn-primary:hover {
	background: var(--accent);
}

/* ========== CATEGORY ARCHIVE PAGE ========== */
.cat-breadcrumb {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	color: var(--ink3);
	margin-bottom: 20px;
	flex-wrap: wrap;
}
.cat-breadcrumb a {
	color: var(--ink3);
	text-decoration: none;
	transition: color 0.2s;
}
.cat-breadcrumb a:hover { color: var(--ink); }
.cat-breadcrumb-current { color: var(--ink); font-weight: 500; }

.cat-hero-body {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 32px;
}
.cat-hero-body h1 {
	margin-bottom: 12px;
}
.cat-hero-meta {
	display: flex;
	gap: 32px;
	flex-shrink: 0;
}
.cat-hero-stat {
	text-align: right;
}
.cat-hero-stat-num {
	display: block;
	font-family: 'Exo 2', sans-serif;
	font-size: 32px;
	font-weight: 800;
	color: var(--ink);
	line-height: 1;
}
.cat-hero-stat-label {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--ink3);
}

.cat-children-bar {
	background: var(--white);
	border-bottom: 1px solid var(--border);
	padding: 24px 40px;
}
.cat-children-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}
.cat-child-card {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 14px 20px;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 12px;
	text-decoration: none;
	transition: all 0.2s;
	min-width: 140px;
}
.cat-child-card:hover {
	border-color: var(--ink);
	background: var(--white);
	transform: translateY(-1px);
	box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.cat-child-name {
	font-size: 14px;
	font-weight: 600;
	color: var(--ink);
}
.cat-child-brand {
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--accent);
}
.cat-child-count {
	font-size: 12px;
	color: var(--ink3);
	margin-top: 4px;
}

@media (max-width: 768px) {
	.cat-hero-body {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}
	.cat-hero-meta {
		gap: 24px;
	}
	.cat-hero-stat { text-align: left; }
	.cat-children-bar { padding: 20px; }
}

/* PAGE HERO (inner pages) */
.page-hero {
	background: var(--surface);
	padding: 64px 40px 56px;
	border-bottom: 1px solid var(--border);
}
.page-hero-inner {
	max-width: 1200px;
	margin: 0 auto;
}
.page-hero-label {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ink3);
	margin-bottom: 12px;
}
.page-hero h1 {
	font-size: 48px;
	font-weight: 800;
	margin-bottom: 16px;
}
.page-hero h1 em {
	font-style: normal;
	color: var(--accent);
}
.page-hero-desc {
	font-size: 16px;
	color: var(--ink2);
	line-height: 1.7;
	max-width: 580px;
}

/* SHARED */
.section {
	padding: 80px 40px;
}
.section-inner {
	max-width: 1200px;
	margin: 0 auto;
}
.section-label {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ink3);
	margin-bottom: 10px;
}
.section-title {
	font-size: 36px;
	font-weight: 800;
	margin-bottom: 14px;
}
.section-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 44px;
}
.section-link {
	font-size: 13px;
	font-weight: 500;
	color: var(--ink2);
	border-bottom: 1px solid var(--border);
	padding-bottom: 2px;
	transition: color 0.2s;
}
.section-link:hover {
	color: var(--ink);
}

/* BUTTONS */
.cta-primary {
	font-family: 'Rubik', sans-serif;
	font-size: 14px;
	font-weight: 500;
	padding: 13px 28px;
	border-radius: 10px;
	background: var(--ink);
	color: #fff;
	border: none;
	cursor: pointer;
	transition: background 0.2s;
	display: inline-block;
}
.cta-primary:hover {
	background: var(--accent);
}
.cta-secondary {
	font-family: 'Rubik', sans-serif;
	font-size: 14px;
	font-weight: 500;
	padding: 13px 28px;
	border-radius: 10px;
	background: transparent;
	color: var(--ink);
	border: 1px solid var(--border);
	cursor: pointer;
	transition: border-color 0.2s;
	display: inline-block;
}
.cta-secondary:hover {
	border-color: var(--ink);
}

/* PROMO BAND */
.promo-wrap {
	padding: 0 40px 80px;
}
.promo-band {
	background: var(--ink);
	border-radius: var(--radius-lg);
	padding: 52px 60px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	position: relative;
	overflow: hidden;
}
.promo-band::before {
	content: '';
	position: absolute;
	top: -100px;
	right: -100px;
	width: 360px;
	height: 360px;
	border-radius: 50%;
	background: var(--accent);
	opacity: 0.07;
}
.promo-label {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.35);
	margin-bottom: 10px;
}
.promo-title {
	font-size: 30px;
	font-weight: 800;
	color: #fff;
	letter-spacing: -0.03em;
	margin-bottom: 10px;
}
.promo-desc {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.5);
	line-height: 1.65;
	max-width: 420px;
}
.btn-white {
	font-family: 'Rubik', sans-serif;
	font-size: 14px;
	font-weight: 500;
	padding: 14px 28px;
	border-radius: 10px;
	background: #fff;
	color: var(--ink);
	border: none;
	cursor: pointer;
	white-space: nowrap;
	flex-shrink: 0;
	transition: all 0.2s;
}
.btn-white:hover {
	background: var(--accent);
	color: #fff;
}

/* FORM */
.form-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 36px;
}
.form-title {
	font-size: 22px;
	font-weight: 800;
	margin-bottom: 4px;
}
.form-sub {
	font-size: 13px;
	color: var(--ink3);
	margin-bottom: 26px;
}
.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}
.form-field {
	margin-bottom: 12px;
}
.form-label {
	font-size: 12px;
	font-weight: 500;
	color: var(--ink2);
	margin-bottom: 5px;
	display: block;
}
.form-input,
.form-select,
.form-textarea {
	width: 100%;
	background: var(--surface);
	border: 1px solid transparent;
	border-radius: 8px;
	padding: 11px 14px;
	font-family: 'Rubik', sans-serif;
	font-size: 14px;
	color: var(--ink);
	outline: none;
	transition: border-color 0.2s;
}
.form-input::placeholder,
.form-textarea::placeholder {
	color: var(--ink3);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
	border-color: var(--ink);
	background: var(--white);
}
.form-select {
	appearance: none;
	cursor: pointer;
}
.form-textarea {
	resize: vertical;
}
.form-submit {
	width: 100%;
	font-family: 'Rubik', sans-serif;
	font-size: 14px;
	font-weight: 500;
	padding: 13px;
	border-radius: 10px;
	background: var(--ink);
	color: #fff;
	border: none;
	cursor: pointer;
	transition: background 0.2s;
	margin-top: 4px;
}
.form-submit:hover {
	background: var(--accent);
}

/* FOOTER */
footer {
	background: var(--ink);
	color: #fff;
	padding: 64px 40px 32px;
}
.footer-inner {
	max-width: 1200px;
	margin: 0 auto;
}
.footer-top {
	display: grid;
	grid-template-columns: 1.8fr 1fr 1fr 1fr;
	gap: 48px;
	padding-bottom: 48px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-logo {
	font-family: 'Exo 2', sans-serif;
	font-size: 22px;
	font-weight: 800;
	letter-spacing: -0.05em;
	margin-bottom: 12px;
}
.footer-tagline {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.38);
	line-height: 1.65;
	margin-bottom: 22px;
	max-width: 260px;
}
.footer-live {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: rgba(255, 255, 255, 0.07);
	border-radius: 8px;
	padding: 7px 12px;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.45);
}
.live-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #22c55e;
}
.footer-col-title {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.28);
	margin-bottom: 14px;
}
.footer-links {
	display: flex;
	flex-direction: column;
	gap: 9px;
}
.footer-links a {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.5);
	transition: color 0.2s;
}
.footer-links a:hover {
	color: #fff;
}
.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 24px;
}
.footer-copy {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.28);
}

/* ANIMATIONS */
.fade-up {
	opacity: 0;
	transform: translateY(20px);
	transition:
		opacity 0.6s ease,
		transform 0.6s ease;
}
.fade-up.visible {
	opacity: 1;
	transform: translateY(0);
}

/* RESPONSIVE */
/* HAMBURGER */
.hamburger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	cursor: pointer;
	background: none;
	border: none;
	padding: 4px;
	flex-shrink: 0;
}
.hamburger span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--ink);
	border-radius: 2px;
	transition: all 0.25s;
}
.hamburger.open span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
	opacity: 0;
}
.hamburger.open span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
	display: none;
	position: fixed;
	top: 68px;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--white);
	z-index: 99;
	padding: 24px 24px 32px;
	flex-direction: column;
	border-top: 1px solid var(--border);
	overflow-y: auto;
}
.mobile-menu.open {
	display: flex;
}
.mobile-menu a {
	font-size: 18px;
	font-weight: 500;
	color: var(--ink);
	padding: 14px 0;
	border-bottom: 1px solid var(--border2);
}
.mobile-menu a.active {
	color: var(--accent);
}
.mobile-menu-actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 24px;
}
.mobile-menu-actions .btn-primary,
.mobile-menu-actions .btn-outline {
	width: 100%;
	text-align: center;
	padding: 13px;
	font-size: 14px;
	border-radius: 10px;
}

@media (max-width: 900px) {
	.nav-links {
		display: none;
	}
	.nav-actions {
		display: none;
	}
	.hamburger {
		display: flex;
	}
	.nav {
		padding: 0 20px;
	}
	.section {
		padding: 56px 20px;
	}
	.page-hero {
		padding: 48px 20px;
	}
	.page-hero h1 {
		font-size: 36px;
	}
	.promo-band {
		flex-direction: column;
		padding: 32px 28px;
		text-align: left;
		gap: 24px;
	}
	.promo-band .promo-desc {
		text-align: left;
		max-width: 100%;
	}
	.promo-band .btn-white {
		width: 100%;
		text-align: center;
	}
	.promo-wrap {
		padding: 0 20px 56px;
	}
	.form-row {
		grid-template-columns: 1fr;
	}
	footer {
		padding: 48px 20px 24px;
	}
	.footer-top {
		grid-template-columns: 1fr 1fr;
		gap: 32px;
	}
}

/* ========== INDEX PAGE ========== */
/* HERO */
.hero {
	padding: 80px 40px 0;
}
.hero-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 460px;
	gap: 60px;
	align-items: end;
}
.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 100px;
	padding: 5px 14px 5px 8px;
	font-size: 12px;
	font-weight: 500;
	color: var(--ink2);
	margin-bottom: 24px;
}
.hero-badge-pill {
	background: var(--accent);
	color: #fff;
	font-size: 10px;
	font-weight: 600;
	padding: 2px 8px;
	border-radius: 100px;
	letter-spacing: 0.05em;
}
.hero h1 {
	font-size: 58px;
	font-weight: 800;
	margin-bottom: 24px;
}
.hero h1 em {
	font-style: normal;
	color: var(--accent);
}
.hero-desc {
	font-size: 16px;
	color: var(--ink2);
	line-height: 1.7;
	max-width: 500px;
	margin-bottom: 36px;
}
.hero-ctas {
	display: flex;
	gap: 12px;
}
.hero-right {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.hero-stat-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}
.hero-stat {
	background: var(--surface);
	border-radius: var(--radius);
	padding: 20px;
}
.hero-stat.dark {
	background: var(--ink);
}
.hero-stat-num {
	font-family: 'Exo 2', sans-serif;
	font-size: 30px;
	font-weight: 800;
	letter-spacing: -0.04em;
	margin-bottom: 4px;
	color: var(--ink);
}
.hero-stat.dark .hero-stat-num {
	color: #fff;
}
.hero-stat-label {
	font-size: 12px;
	color: var(--ink3);
}
.hero-stat.dark .hero-stat-label {
	color: rgba(255, 255, 255, 0.45);
}
.hero-bottom {
	max-width: 1200px;
	margin: 48px auto 0;
	border-top: 1px solid var(--border);
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}
.hero-trust {
	padding: 22px 24px;
	border-right: 1px solid var(--border);
	display: flex;
	align-items: center;
	gap: 12px;
}
.hero-trust:last-child {
	border-right: none;
}
.trust-icon {
	width: 36px;
	height: 36px;
	flex-shrink: 0;
	border-radius: 10px;
	background: var(--surface);
	display: flex;
	align-items: center;
	justify-content: center;
}
.trust-icon svg {
	width: 17px;
	height: 17px;
}
.trust-text {
	font-size: 13px;
	font-weight: 500;
	line-height: 1.3;
}
.trust-sub {
	font-size: 11px;
	color: var(--ink3);
	margin-top: 2px;
}

/* CATS */
.cats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}
.cat-card {
	background: var(--surface);
	border-radius: var(--radius-lg);
	padding: 28px;
	cursor: pointer;
	transition: all 0.25s;
	border: 1px solid transparent;
}
.cat-card:hover {
	border-color: var(--border);
	background: var(--white);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
	transform: translateY(-2px);
}
.cat-card.featured {
	background: var(--ink);
}
.cat-card.featured:hover {
	background: #1a1a1f;
}
.cat-icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: rgba(14, 14, 15, 0.07);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}
.cat-card.featured .cat-icon {
	background: rgba(255, 255, 255, 0.1);
}
.cat-icon svg {
	width: 22px;
	height: 22px;
}
.cat-name {
	font-family: 'Exo 2', sans-serif;
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 6px;
	color: var(--ink);
}
.cat-card.featured .cat-name {
	color: #fff;
}
.cat-desc {
	font-size: 12px;
	color: var(--ink3);
	line-height: 1.5;
}
.cat-card.featured .cat-desc {
	color: rgba(255, 255, 255, 0.45);
}
.cat-badge {
	display: inline-block;
	margin-top: 18px;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--accent);
	background: rgba(232, 64, 28, 0.1);
	border-radius: 6px;
	padding: 3px 8px;
}
.cat-card.featured .cat-badge {
	background: rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.6);
}

/* WHY */
.why-section {
	background: var(--surface);
}
.why-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2px;
}
.why-card {
	background: var(--white);
	padding: 40px;
	transition: box-shadow 0.2s;
}
.why-card:hover {
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.07);
	z-index: 1;
	position: relative;
}
.why-num {
	font-family: 'Exo 2', sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 14px;
}
.why-title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 10px;
}
.why-desc {
	font-size: 14px;
	color: var(--ink2);
	line-height: 1.7;
}

@media (max-width: 900px) {
	.hero-inner {
		grid-template-columns: 1fr;
	}
	.hero h1 {
		font-size: 38px;
	}
	.hero-right {
		display: none;
	}
	.hero-bottom {
		grid-template-columns: 1fr 1fr;
	}
	.cats-grid {
		grid-template-columns: 1fr;
	}
	.why-grid {
		grid-template-columns: 1fr;
	}
	.hero {
		padding: 48px 20px 0;
	}
}

/* ========== CATALOG PAGE ========== */
.filter-bar {
	background: var(--white);
	border-bottom: 1px solid var(--border);
	padding: 0 40px;
	display: flex;
	align-items: center;
	gap: 8px;
	overflow-x: auto;
	height: 56px;
}
.filter-btn {
	font-family: 'Rubik', sans-serif;
	font-size: 13px;
	font-weight: 500;
	padding: 7px 16px;
	border-radius: 100px;
	white-space: nowrap;
	border: 1px solid var(--border);
	background: transparent;
	color: var(--ink2);
	cursor: pointer;
	transition: all 0.2s;
	flex-shrink: 0;
}
.filter-btn:hover {
	border-color: var(--ink);
	color: var(--ink);
}
.filter-btn.active {
	background: var(--ink);
	color: #fff;
	border-color: var(--ink);
}

.filter-btn-back {
	color: var(--ink3);
	border-color: transparent;
	background: transparent;
	padding-left: 4px;
}
.filter-btn-back:hover {
	color: var(--ink);
	border-color: transparent;
	background: transparent;
}
.filter-bar-sep {
	width: 1px;
	height: 18px;
	background: var(--border);
	flex-shrink: 0;
	margin: 0 4px;
}

.catalog-layout {
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: 32px;
}
.sidebar {
	padding-top: 4px;
}
.sidebar-section {
	margin-bottom: 28px;
}
.sidebar-title {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ink3);
	margin-bottom: 12px;
}
.sidebar-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 9px 0;
	border-bottom: 1px solid var(--border2);
	font-size: 13px;
	color: var(--ink2);
	cursor: pointer;
	transition: color 0.2s;
}
.sidebar-item:hover {
	color: var(--ink);
}
.sidebar-item.active {
	color: var(--ink);
	font-weight: 500;
}
.sidebar-count {
	font-size: 11px;
	color: var(--ink3);
	background: var(--surface);
	border-radius: 4px;
	padding: 1px 6px;
}
.sidebar-item.active .sidebar-count {
	background: var(--accent);
	color: #fff;
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
.product-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	cursor: pointer;
	transition: all 0.2s;
}
.product-card:hover {
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
	transform: translateY(-2px);
}
.product-img {
	background: #fff;
	aspect-ratio: 1 / 1;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	border-radius: 10px 10px 0 0;
}
.product-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	transition: transform 0.35s ease;
	display: block;
}
.product-card:hover .product-img img {
	transform: scale(1.04);
}
.product-img svg {
	width: 64px;
	height: 64px;
	color: var(--ink3);
}
.product-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 3px 9px;
	border-radius: 6px;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}
.badge-stock {
	background: rgba(34, 197, 94, 0.18);
	color: #16a34a;
}
.badge-hot {
	background: rgba(232, 64, 28, 0.18);
	color: var(--accent);
}
.badge-new {
	background: rgba(59, 130, 246, 0.18);
	color: #2563eb;
}
.product-body {
	padding: 18px;
}
.product-brand {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ink3);
	margin-bottom: 4px;
}
.product-name {
	font-family: 'Exo 2', sans-serif;
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 6px;
	line-height: 1.3;
}
.product-compat {
	font-size: 12px;
	color: var(--ink3);
	margin-bottom: 14px;
}
.product-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.product-price {
	font-family: 'Exo 2', sans-serif;
	font-size: 18px;
	font-weight: 800;
	color: var(--ink);
}
.product-price span {
	font-size: 12px;
	font-weight: 400;
	color: var(--ink3);
	font-family: 'Rubik', sans-serif;
}
.product-btn {
	font-family: 'Rubik', sans-serif;
	font-size: 12px;
	font-weight: 500;
	padding: 7px 14px;
	border-radius: 8px;
	background: var(--ink);
	color: #fff;
	border: none;
	cursor: pointer;
	transition: background 0.2s;
}
.product-btn:hover {
	background: var(--accent);
}

.catalog-topbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
}
.catalog-count {
	font-size: 13px;
	color: var(--ink3);
}
.catalog-sort {
	font-family: 'Rubik', sans-serif;
	font-size: 13px;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 8px;
	padding: 7px 12px;
	outline: none;
	color: var(--ink);
	cursor: pointer;
}

.custom-cta {
	grid-column: 1/-1;
	background: var(--ink);
	border-radius: var(--radius-lg);
	padding: 36px 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	position: relative;
	overflow: hidden;
}
.custom-cta::before {
	content: '';
	position: absolute;
	top: -60px;
	right: -60px;
	width: 200px;
	height: 200px;
	border-radius: 50%;
	background: var(--accent);
	opacity: 0.08;
}
.custom-cta-text {
}
.custom-cta-title {
	font-size: 20px;
	font-weight: 800;
	color: #fff;
	margin-bottom: 6px;
}
.custom-cta-desc {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.5);
	max-width: 400px;
}

.filter-toggle-bar {
	display: none;
}

/* FILTER DRAWER */
.filter-overlay {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 200;
	background: rgba(14, 14, 15, 0.5);
}
.filter-overlay.open {
	display: block;
}

.filter-drawer {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 201;
	background: var(--white);
	border-radius: 20px 20px 0 0;
	transform: translateY(100%);
	transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
	max-height: 85vh;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
}
.filter-drawer.open {
	transform: translateY(0);
}

.filter-drawer-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 24px 16px;
	border-bottom: 1px solid var(--border);
	flex-shrink: 0;
}
.filter-drawer-title {
	font-family: 'Exo 2', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: var(--ink);
}
.filter-drawer-close {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--surface);
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.filter-drawer-body {
	overflow-y: auto;
	padding: 20px 24px;
	flex: 1;
}

.sidebar-reset-btn {
	width: 100%;
	margin-top: 12px;
	margin-bottom: 4px;
	padding: 9px 0;
	font-family: 'Rubik', sans-serif;
	font-size: 13px;
	font-weight: 500;
	color: var(--ink3);
	background: transparent;
	border: 1px solid var(--border);
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.2s;
}
.sidebar-reset-btn:hover {
	border-color: var(--ink);
	color: var(--ink);
}

.filter-drawer-footer {
	padding: 16px 24px;
	border-top: 1px solid var(--border);
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex-shrink: 0;
}
.filter-drawer-reset {
	width: 100%;
	font-family: 'Rubik', sans-serif;
	font-size: 14px;
	font-weight: 500;
	padding: 12px 20px;
	border-radius: 10px;
	background: transparent;
	color: var(--ink2);
	border: 1px solid var(--border);
	cursor: pointer;
	transition: all 0.2s;
}
.filter-drawer-reset:hover {
	border-color: var(--ink);
	color: var(--ink);
}
.filter-drawer-apply {
	flex: 1;
	font-family: 'Rubik', sans-serif;
	font-size: 14px;
	font-weight: 500;
	padding: 12px;
	border-radius: 10px;
	background: var(--ink);
	color: #fff;
	border: none;
	cursor: pointer;
	transition: background 0.2s;
}
.filter-drawer-apply:hover {
	background: var(--accent);
}

.filter-toggle-btn {
	font-family: 'Rubik', sans-serif;
	font-size: 14px;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	border-radius: 10px;
	background: var(--white);
	color: var(--ink);
	border: 1px solid var(--border);
	cursor: pointer;
	transition: all 0.2s;
}
.filter-toggle-btn:hover {
	border-color: var(--ink);
}
.filter-active-count {
	background: var(--accent);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	display: none;
	align-items: center;
	justify-content: center;
}
.filter-active-count.show {
	display: flex;
}

@media (max-width: 900px) {
	.catalog-layout {
		grid-template-columns: 1fr;
	}
	.sidebar {
		display: none;
	}
	.products-grid {
		grid-template-columns: 1fr;
	}
	.filter-bar {
		display: none;
	}
	.filter-toggle-bar {
		display: flex;
		align-items: center;
		gap: 10px;
		padding: 12px 20px;
		border-bottom: 1px solid var(--border);
		background: var(--white);
	}
	.catalog-topbar {
		display: none;
	}
	.custom-cta {
		flex-direction: column;
		align-items: flex-start;
		padding: 28px 24px;
		gap: 20px;
	}
	.custom-cta .btn-white {
		width: 100%;
		text-align: center;
	}
	.custom-cta-desc {
		max-width: 100%;
	}
}

/* ========== QUALITY PAGE ========== */
.quality-intro-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: start;
}
.philosophy-text {
	font-size: 16px;
	color: var(--ink2);
	line-height: 1.8;
}
.philosophy-text p {
	margin-bottom: 16px;
}
.cert-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}
.cert-card {
	background: var(--surface);
	border-radius: var(--radius);
	padding: 20px;
	text-align: center;
}
.cert-val {
	font-family: 'Exo 2', sans-serif;
	font-size: 24px;
	font-weight: 800;
	color: var(--accent);
	margin-bottom: 4px;
}
.cert-label {
	font-size: 12px;
	color: var(--ink3);
}

/* STEPS TIMELINE */
.steps-section {
	background: var(--surface);
}
.steps-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
}
.step-col {
	padding: 36px 28px;
	border-right: 1px solid var(--border);
	transition: all 0.2s;
}
.step-col:last-child {
	border-right: none;
}
.step-col:hover {
	background: var(--white);
}
.step-number {
	font-family: 'Exo 2', sans-serif;
	font-size: 42px;
	font-weight: 800;
	color: var(--accent);
	opacity: 0.2;
	line-height: 1;
	margin-bottom: 16px;
}
.step-tag {
	display: inline-block;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	background: var(--ink);
	color: #fff;
	border-radius: 6px;
	padding: 3px 9px;
	margin-bottom: 14px;
}
.step-name {
	font-family: 'Exo 2', sans-serif;
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 10px;
}
.step-desc {
	font-size: 13px;
	color: var(--ink2);
	line-height: 1.65;
}

/* MATERIALS */
.materials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
.material-card {
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 28px;
	transition: all 0.2s;
}
.material-card:hover {
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
	transform: translateY(-2px);
}
.material-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: var(--surface);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
}
.material-icon svg {
	width: 24px;
	height: 24px;
}
.material-name {
	font-family: 'Exo 2', sans-serif;
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 6px;
}
.material-desc {
	font-size: 13px;
	color: var(--ink2);
	line-height: 1.6;
}
.material-badge {
	display: inline-block;
	margin-top: 14px;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--accent);
	background: rgba(232, 64, 28, 0.1);
	border-radius: 6px;
	padding: 3px 8px;
}

/* CUSTOM PRODUCTION */
.custom-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
}
.custom-steps {
	display: flex;
	flex-direction: column;
	gap: 0;
}
.custom-step {
	display: flex;
	gap: 18px;
	padding: 22px 0;
	border-bottom: 1px solid var(--border2);
}
.custom-step:last-child {
	border-bottom: none;
}
.custom-step-num {
	width: 32px;
	height: 32px;
	flex-shrink: 0;
	margin-top: 2px;
	border-radius: 50%;
	background: var(--ink);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Exo 2', sans-serif;
	font-size: 13px;
	font-weight: 700;
}
.custom-step-title {
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 4px;
}
.custom-step-desc {
	font-size: 13px;
	color: var(--ink2);
	line-height: 1.6;
}
.custom-features {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.custom-feature {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	background: var(--surface);
	border-radius: var(--radius);
	padding: 18px 20px;
}
.custom-feature-icon {
	width: 36px;
	height: 36px;
	flex-shrink: 0;
	border-radius: 10px;
	background: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
}
.custom-feature-icon svg {
	width: 16px;
	height: 16px;
}
.custom-feature-title {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 2px;
}
.custom-feature-desc {
	font-size: 12px;
	color: var(--ink3);
}

@media (max-width: 900px) {
	.quality-intro-grid,
	.custom-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.steps-grid {
		grid-template-columns: 1fr 1fr;
	}
	.step-col {
		border-right: none;
		border-bottom: 1px solid var(--border);
	}
	.materials-grid {
		grid-template-columns: 1fr 1fr;
	}
}

/* ========== PARTNERS PAGE ========== */
/* LOYALTY TIERS */
.tiers-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
.tier-card {
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 32px;
	transition: all 0.2s;
	position: relative;
	overflow: hidden;
}
.tier-card:hover {
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
	transform: translateY(-2px);
}
.tier-card.featured {
	background: var(--ink);
	border-color: transparent;
}
.tier-card.featured::before {
	content: '';
	position: absolute;
	top: -60px;
	right: -60px;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	background: var(--accent);
	opacity: 0.1;
}
.tier-badge {
	display: inline-block;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: 6px;
	margin-bottom: 20px;
}
.tier-badge.bronze {
	background: rgba(180, 100, 40, 0.12);
	color: #b46428;
}
.tier-badge.silver {
	background: rgba(100, 100, 120, 0.12);
	color: #646478;
}
.tier-badge.gold {
	background: rgba(232, 64, 28, 0.15);
	color: var(--accent);
}
.tier-card.featured .tier-badge.gold {
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
}
.tier-name {
	font-family: 'Exo 2', sans-serif;
	font-size: 22px;
	font-weight: 800;
	margin-bottom: 6px;
}
.tier-card.featured .tier-name {
	color: #fff;
}
.tier-volume {
	font-size: 13px;
	color: var(--ink3);
	margin-bottom: 24px;
}
.tier-card.featured .tier-volume {
	color: rgba(255, 255, 255, 0.45);
}
.tier-features {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.tier-feature {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 13px;
	color: var(--ink2);
}
.tier-card.featured .tier-feature {
	color: rgba(255, 255, 255, 0.7);
}
.tier-check {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: rgba(34, 197, 94, 0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.tier-card.featured .tier-check {
	background: rgba(255, 255, 255, 0.1);
}
.tier-check svg {
	width: 10px;
	height: 10px;
	color: #16a34a;
}
.tier-card.featured .tier-check svg {
	color: #fff;
}
.tier-discount {
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px solid var(--border);
	display: flex;
	align-items: baseline;
	gap: 8px;
}
.tier-card.featured .tier-discount {
	border-color: rgba(255, 255, 255, 0.1);
}
.tier-discount-val {
	font-family: 'Exo 2', sans-serif;
	font-size: 36px;
	font-weight: 800;
	color: var(--accent);
}
.tier-card.featured .tier-discount-val {
	color: #fff;
}
.tier-discount-label {
	font-size: 13px;
	color: var(--ink3);
}
.tier-card.featured .tier-discount-label {
	color: rgba(255, 255, 255, 0.45);
}

/* ALGO */
.algo-section {
	background: var(--surface);
}
.algo-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
}
.algo-steps {
	display: flex;
	flex-direction: column;
	gap: 0;
}
.algo-step-item {
	display: flex;
	gap: 20px;
	padding: 24px 0;
	border-bottom: 1px solid var(--border2);
}
.algo-step-item:last-child {
	border-bottom: none;
}
.algo-num-big {
	font-family: 'Exo 2', sans-serif;
	font-size: 36px;
	font-weight: 800;
	color: var(--accent);
	opacity: 0.2;
	line-height: 1;
	flex-shrink: 0;
	width: 48px;
}
.algo-step-title {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 6px;
}
.algo-step-desc {
	font-size: 13px;
	color: var(--ink2);
	line-height: 1.65;
}

/* FAQ */
.faq-list {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.faq-item {
	background: var(--white);
	border-radius: var(--radius);
	padding: 18px 22px;
	cursor: pointer;
}
.faq-q {
	font-size: 14px;
	font-weight: 600;
	display: flex;
	justify-content: space-between;
	align-items: center;
	user-select: none;
}
.faq-toggle {
	font-size: 20px;
	font-weight: 300;
	color: var(--ink3);
	line-height: 1;
}
.faq-a {
	font-size: 13px;
	color: var(--ink2);
	line-height: 1.65;
	margin-top: 10px;
	display: none;
}

/* BENEFITS */
.benefits-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
.benefit-card {
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 28px;
	transition: all 0.2s;
}
.benefit-card:hover {
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
	transform: translateY(-2px);
}
.benefit-icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: var(--surface);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}
.benefit-icon svg {
	width: 22px;
	height: 22px;
}
.benefit-title {
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 6px;
}
.benefit-desc {
	font-size: 13px;
	color: var(--ink2);
	line-height: 1.6;
}

@media (max-width: 900px) {
	.tiers-grid {
		grid-template-columns: 1fr;
	}
	.algo-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.benefits-grid {
		grid-template-columns: 1fr 1fr;
	}
}

/* ========== CONTACTS PAGE ========== */
.contacts-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
}

/* CONTACT BLOCKS */
.contact-blocks {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 36px;
}
.contact-block {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	background: var(--surface);
	border-radius: var(--radius);
	padding: 18px 20px;
}
.contact-block-icon {
	width: 40px;
	height: 40px;
	flex-shrink: 0;
	border-radius: 10px;
	background: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--border);
}
.contact-block-icon svg {
	width: 18px;
	height: 18px;
}
.contact-block-label {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ink3);
	margin-bottom: 3px;
}
.contact-block-val {
	font-size: 15px;
	font-weight: 500;
	color: var(--ink);
}
.contact-block-sub {
	font-size: 12px;
	color: var(--ink3);
	margin-top: 2px;
}

/* HOURS */
.hours-card {
	background: var(--ink);
	border-radius: var(--radius-lg);
	padding: 28px 30px;
}
.hours-title {
	font-size: 15px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 16px;
}
.hours-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.hours-row:last-child {
	border-bottom: none;
}
.hours-day {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.5);
}
.hours-time {
	font-size: 13px;
	font-weight: 500;
	color: #fff;
}
.hours-closed {
	color: rgba(255, 255, 255, 0.25) !important;
}

/* MAP PLACEHOLDER */
.map-placeholder {
	background: var(--surface);
	border-radius: var(--radius-lg);
	height: 260px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--border);
	margin-bottom: 12px;
	position: relative;
	overflow: hidden;
}
.map-placeholder::before {
	content: '';
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(
		45deg,
		transparent,
		transparent 20px,
		rgba(0, 0, 0, 0.02) 20px,
		rgba(0, 0, 0, 0.02) 21px
	);
}
.map-inner {
	text-align: center;
	z-index: 1;
}
.map-inner svg {
	width: 32px;
	height: 32px;
	color: var(--ink3);
	margin-bottom: 8px;
}
.map-inner p {
	font-size: 13px;
	color: var(--ink3);
}
.map-btn {
	width: 100%;
	font-family: 'Rubik', sans-serif;
	font-size: 13px;
	font-weight: 500;
	padding: 11px;
	border-radius: 8px;
	background: transparent;
	color: var(--ink2);
	border: 1px solid var(--border);
	cursor: pointer;
	transition: all 0.2s;
}
.map-btn:hover {
	border-color: var(--ink);
	color: var(--ink);
}

/* FORM */
.form-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 36px;
}

/* SUCCESS */
.success-msg {
	display: none;
	text-align: center;
	padding: 24px;
	background: rgba(34, 197, 94, 0.07);
	border-radius: var(--radius);
	margin-top: 12px;
	border: 1px solid rgba(34, 197, 94, 0.2);
}
.success-icon {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(34, 197, 94, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 12px;
}
.success-icon svg {
	width: 20px;
	height: 20px;
	color: #16a34a;
}
.success-title {
	font-size: 15px;
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 4px;
}
.success-sub {
	font-size: 13px;
	color: var(--ink3);
}

/* DEPARTMENTS */
.dept-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-top: 64px;
}
.dept-card {
	background: var(--surface);
	border-radius: var(--radius-lg);
	padding: 24px;
}
.dept-icon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: var(--white);
	border: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 14px;
}
.dept-icon svg {
	width: 18px;
	height: 18px;
}
.dept-name {
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 4px;
}
.dept-phone {
	font-size: 15px;
	font-weight: 500;
	color: var(--accent);
	margin-bottom: 4px;
}
.dept-desc {
	font-size: 12px;
	color: var(--ink3);
}

@media (max-width: 900px) {
	.contacts-grid {
		grid-template-columns: 1fr;
	}
	.dept-grid {
		grid-template-columns: 1fr;
	}
}

/* ========== PRODUCT PAGE ========== */
/* BREADCRUMB */
.breadcrumb {
	padding: 16px 40px;
	border-bottom: 1px solid var(--border);
	background: var(--white);
}
.breadcrumb-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: var(--ink3);
	flex-wrap: wrap;
}
.breadcrumb-inner a {
	color: var(--ink3);
	transition: color 0.2s;
	white-space: nowrap;
}
.breadcrumb-inner a:hover {
	color: var(--ink);
}
.breadcrumb-sep {
	font-size: 11px;
	flex-shrink: 0;
}
.breadcrumb-current {
	color: var(--ink2);
	font-weight: 500;
}

/* PRODUCT LAYOUT */
.product-page {
	padding: 48px 40px 80px;
}
.product-inner {
	max-width: 1200px;
	margin: 0 auto;
}
.product-grid {
	display: grid;
	grid-template-columns: 1fr 480px;
	gap: 64px;
	align-items: start;
}

/* GALLERY */
.gallery {
	position: sticky;
	top: 88px;
}
.gallery-main {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	aspect-ratio: 1/1;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	margin-bottom: 12px;
	cursor: zoom-in;
}
.gallery-main-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.gallery-main-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.gallery-main-placeholder svg {
	width: 120px;
	height: 120px;
	color: #c8c8cc;
}
.gallery-badge-area {
	position: absolute;
	top: 16px;
	left: 16px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.g-badge {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: 6px;
}
.g-badge-hot {
	background: rgba(232, 64, 28, 0.12);
	color: var(--accent);
}
.g-badge-stock {
	background: rgba(34, 197, 94, 0.12);
	color: #16a34a;
}
.gallery-thumbs {
	display: flex;
	gap: 8px;
}
.gallery-thumb {
	width: 72px;
	height: 72px;
	flex-shrink: 0;
	background: #fff;
	border-radius: 10px;
	border: 2px solid transparent;
	cursor: pointer;
	transition: border-color 0.2s;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.gallery-thumb.active {
	border-color: var(--accent);
}
.gallery-thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}
.gallery-thumb svg {
	width: 32px;
	height: 32px;
	color: #c8c8cc;
}
.gallery-thumb-placeholder {
	width: 100%;
	height: 100%;
	background: var(--surface);
	display: flex;
	align-items: center;
	justify-content: center;
}

/* PRODUCT INFO */
.product-info {
}
.product-meta {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 14px;
}
.product-brand-tag {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ink3);
	background: var(--surface);
	border-radius: 6px;
	padding: 3px 9px;
}
.product-category-tag {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--accent);
	background: rgba(232, 64, 28, 0.1);
	border-radius: 6px;
	padding: 3px 9px;
}
.product-title {
	font-family: 'Exo 2', sans-serif;
	font-size: 32px;
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.15;
	color: var(--ink);
	margin-bottom: 10px;
}
.product-sku {
	font-size: 12px;
	color: var(--ink3);
	margin-bottom: 20px;
}
.product-sku span {
	color: var(--ink2);
	font-weight: 500;
}

/* SKU + ANALOG ROW */
.product-sku-row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px 10px;
	font-size: 12px;
	color: var(--ink3);
	margin-bottom: 18px;
}
.product-sku-item {
	display: flex;
	align-items: center;
	gap: 4px;
}
.product-sku-label {
	color: var(--ink3);
}
.product-sku-val {
	color: var(--ink2);
	font-weight: 500;
}
.product-sku-sep {
	color: var(--border);
	font-size: 14px;
}
.product-sku-link {
	color: var(--accent);
	text-decoration: none;
	transition: opacity 0.15s;
}
.product-sku-link:hover {
	opacity: 0.75;
}

/* RATING */
.product-rating {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
}
.stars {
	display: flex;
	gap: 2px;
}
.star {
	width: 14px;
	height: 14px;
	color: #f59e0b;
}
.star svg {
	width: 14px;
	height: 14px;
	fill: currentColor;
}
.rating-num {
	font-size: 14px;
	font-weight: 500;
	color: var(--ink);
}
.rating-count {
	font-size: 13px;
	color: var(--ink3);
}

/* PRICE BLOCK */
.price-block {
	background: var(--surface);
	border-radius: var(--radius-lg);
	padding: 24px;
	margin-bottom: 24px;
}
.price-row {
	display: flex;
	align-items: baseline;
	gap: 12px;
}
.price-main {
	font-family: 'Exo 2', sans-serif;
	font-size: 38px;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: var(--ink);
}
.price-unit {
	font-size: 14px;
	color: var(--ink3);
	font-family: 'Rubik', sans-serif;
}
.price-ask {
	font-size: 26px;
	color: var(--ink3);
}
.price-note {
	font-size: 12px;
	color: var(--ink3);
}
.price-tiers {
	margin-top: 14px;
	display: flex;
	flex-direction: column;
	gap: 0;
	border-top: 1px solid var(--border);
	padding-top: 14px;
}
.price-tier {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 7px 0;
	border-bottom: 1px solid var(--border2);
	font-size: 13px;
}
.price-tier:last-child {
	border-bottom: none;
}
.price-tier-qty {
	color: var(--ink3);
}
.price-tier-val {
	font-weight: 600;
	color: var(--ink);
}
.price-tier-val.best {
	color: var(--accent);
}
.price-tier.active-tier {
	background: rgba(232, 64, 28, 0.04);
	margin: 0 -8px;
	padding: 7px 8px;
	border-radius: 6px;
}

/* QTY + BUY */
.buy-block {
	margin-bottom: 20px;
}
.qty-row {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 14px;
}
.qty-label {
	font-size: 13px;
	color: var(--ink2);
	font-weight: 500;
}
.qty-control {
	display: flex;
	align-items: center;
	border: 1px solid var(--border);
	border-radius: 8px;
	overflow: hidden;
}
.qty-btn {
	width: 36px;
	height: 36px;
	background: var(--surface);
	border: none;
	cursor: pointer;
	font-size: 18px;
	font-weight: 400;
	color: var(--ink2);
	transition: all 0.15s;
	display: flex;
	align-items: center;
	justify-content: center;
}
.qty-btn:hover {
	background: var(--border);
	color: var(--ink);
}
.qty-input {
	width: 52px;
	height: 36px;
	border: none;
	outline: none;
	text-align: center;
	font-family: 'Rubik', sans-serif;
	font-size: 15px;
	font-weight: 500;
	background: var(--white);
	color: var(--ink);
}
.qty-total {
	font-size: 13px;
	color: var(--ink3);
	margin-left: 4px;
}
.qty-total span {
	color: var(--ink);
	font-weight: 600;
}
.btn-buy {
	width: 100%;
	font-family: 'Rubik', sans-serif;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.01em;
	padding: 15px 28px;
	border-radius: 10px;
	background: var(--ink);
	color: #fff;
	border: none;
	cursor: pointer;
	transition: background 0.2s;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}
.btn-buy:hover {
	background: var(--accent);
}
.btn-buy svg {
	width: 18px;
	height: 18px;
}

/* AVAILABILITY */
.avail-row {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 14px 0;
	border-top: 1px solid var(--border2);
	font-size: 13px;
}
.avail-item {
	display: flex;
	align-items: center;
	gap: 7px;
	color: var(--ink2);
}
.avail-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	flex-shrink: 0;
}
.avail-dot.green {
	background: #22c55e;
}
.avail-dot.orange {
	background: #f59e0b;
}

/* COMPAT */
.compat-block {
	margin-bottom: 28px;
}
.compat-title {
	font-size: 13px;
	font-weight: 600;
	color: var(--ink2);
	margin-bottom: 10px;
}
.compat-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}
.compat-tag {
	font-size: 12px;
	font-weight: 500;
	color: var(--ink2);
	background: var(--surface);
	border-radius: 6px;
	padding: 5px 10px;
	border: 1px solid var(--border);
}

/* TABS */
.tabs-nav {
	display: flex;
	gap: 0;
	border-bottom: 1px solid var(--border);
	margin-bottom: 28px;
	margin-top: 64px;
}
.tab-btn {
	font-family: 'Rubik', sans-serif;
	font-size: 14px;
	font-weight: 500;
	padding: 12px 20px;
	background: none;
	border: none;
	cursor: pointer;
	color: var(--ink3);
	border-bottom: 2px solid transparent;
	margin-bottom: -1px;
	transition: all 0.2s;
}
.tab-btn.active {
	color: var(--ink);
	border-bottom-color: var(--accent);
}
.tab-btn:hover {
	color: var(--ink);
}
.tab-panel {
	display: none;
}
.tab-panel.active {
	display: block;
}

/* DESCRIPTION */
.desc-text {
	font-size: 15px;
	color: var(--ink2);
	line-height: 1.75;
}
.desc-text p {
	margin-bottom: 14px;
}
.desc-text ul {
	padding-left: 20px;
	margin-bottom: 14px;
}
.desc-text ul li {
	margin-bottom: 6px;
}

/* SPECS TABLE */
.specs-table {
	width: 100%;
	border-collapse: collapse;
}
.specs-table tr {
	border-bottom: 1px solid var(--border2);
}
.specs-table tr:last-child {
	border-bottom: none;
}
.specs-table td {
	padding: 12px 16px;
	font-size: 14px;
}
.specs-table td:first-child {
	color: var(--ink3);
	font-weight: 400;
	width: 46%;
	background: var(--surface);
}
.specs-table td:last-child {
	color: var(--ink);
	font-weight: 500;
}
.specs-group-title {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ink3);
	padding: 20px 0 8px;
	display: block;
}
.specs-group-title:first-child {
	padding-top: 0;
}

/* DIMENSIONS */
.dims-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-bottom: 24px;
}
.dim-card {
	background: var(--surface);
	border-radius: var(--radius);
	padding: 18px;
	text-align: center;
}
.dim-val {
	font-family: 'Exo 2', sans-serif;
	font-size: 22px;
	font-weight: 800;
	color: var(--ink);
	margin-bottom: 4px;
}
.dim-label {
	font-size: 11px;
	color: var(--ink3);
}
.dims-note {
	font-size: 13px;
	color: var(--ink3);
	line-height: 1.6;
}

/* REVIEWS */
.reviews-summary {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 40px;
	align-items: center;
	margin-bottom: 32px;
}
.review-big-num {
	text-align: center;
}
.review-big-val {
	font-family: 'Exo 2', sans-serif;
	font-size: 56px;
	font-weight: 800;
	color: var(--ink);
	line-height: 1;
}
.review-big-stars {
	display: flex;
	gap: 3px;
	justify-content: center;
	margin: 8px 0;
}
.review-big-stars svg {
	width: 16px;
	height: 16px;
	fill: #f59e0b;
}
.review-big-count {
	font-size: 12px;
	color: var(--ink3);
}
.review-bars {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.review-bar-row {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 12px;
	color: var(--ink3);
}
.review-bar-track {
	flex: 1;
	height: 6px;
	background: var(--surface);
	border-radius: 3px;
	overflow: hidden;
}
.review-bar-fill {
	height: 100%;
	background: var(--accent);
	border-radius: 3px;
}
.review-cards {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.review-card {
	background: var(--surface);
	border-radius: var(--radius);
	padding: 20px;
}
.review-card-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 8px;
}
.review-author {
	font-size: 14px;
	font-weight: 600;
	color: var(--ink);
}
.review-date {
	font-size: 12px;
	color: var(--ink3);
}
.review-stars {
	display: flex;
	gap: 2px;
	margin-bottom: 8px;
}
.review-stars svg {
	width: 12px;
	height: 12px;
	fill: #f59e0b;
}
.review-text {
	font-size: 13px;
	color: var(--ink2);
	line-height: 1.6;
}

/* RELATED */
.related-section {
	padding: 64px 40px;
	background: var(--surface);
}
.related-inner {
	max-width: 1200px;
	margin: 0 auto;
}
.related-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}
.related-card {
	background: var(--white);
	border-radius: var(--radius-lg);
	border: 1px solid var(--border);
	overflow: hidden;
	cursor: pointer;
	transition: all 0.2s;
	display: block;
	text-decoration: none;
	color: inherit;
}
.related-card:hover {
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
	transform: translateY(-2px);
}
.related-img {
	background: var(--surface);
	height: 140px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.related-img svg {
	width: 52px;
	height: 52px;
	color: #c8c8cc;
}
.related-body {
	padding: 14px;
}
.related-brand {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ink3);
	margin-bottom: 4px;
}
.related-name {
	font-size: 13px;
	font-weight: 600;
	color: var(--ink);
	margin-bottom: 8px;
	line-height: 1.3;
}
.related-price {
	font-family: 'Exo 2', sans-serif;
	font-size: 16px;
	font-weight: 800;
	color: var(--ink);
}

@media (max-width: 900px) {
	.breadcrumb {
		padding: 10px 20px;
	}
	.breadcrumb-inner {
		gap: 5px;
		flex-wrap: nowrap;
		overflow: hidden;
	}
	/* On mobile: hide middle crumbs, show only back arrow + current */
	.breadcrumb-inner a:not(:first-child) {
		display: none;
	}
	.breadcrumb-inner .breadcrumb-sep {
		display: none;
	}
	.breadcrumb-inner .breadcrumb-sep:first-of-type {
		display: flex;
	}
	.breadcrumb-current {
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		max-width: 200px;
	}
	/* Show back link styled as ← Назад */
	.breadcrumb-inner a:first-child {
		display: flex;
		align-items: center;
		gap: 5px;
		font-size: 13px;
		font-weight: 500;
		color: var(--ink2);
		white-space: nowrap;
	}
	.breadcrumb-inner a:first-child::before {
		content: '←';
		font-size: 14px;
	}
	.product-page {
		padding: 24px 20px 60px;
	}
	.product-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.gallery {
		position: static;
	}
	.gallery-thumbs {
		gap: 8px;
	}
	.gallery-thumb {
		width: 60px;
		height: 60px;
	}
	.product-title {
		font-size: 26px;
	}
	.price-main {
		font-size: 30px;
	}
	.tabs-nav {
		margin-top: 40px;
		overflow-x: auto;
	}
	.tab-btn {
		white-space: nowrap;
		padding: 10px 16px;
		font-size: 13px;
	}
	.dims-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.related-section {
		padding: 48px 20px;
	}
	.related-grid {
		grid-template-columns: 1fr 1fr;
	}
	.reviews-summary {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

/* ── Infinite scroll loader spinner ── */
@keyframes mp-spin {
  to { transform: rotate(360deg); }
}

/* ── Contact Form 7 — стилізація під дизайн теми ── */
.wpcf7 form p {
	margin: 0 0 12px;
}
.wpcf7 form p:last-child {
	margin-bottom: 0;
}
/* Обгортки полів */
.wpcf7 .cf7-field-group {
	margin-bottom: 12px;
}
/* Лейбли */
.wpcf7 .cf7-label {
	font-size: 12px;
	font-weight: 500;
	color: var(--ink2);
	margin-bottom: 5px;
	display: block;
}
.wpcf7 .cf7-required {
	color: #e53e3e;
}
/* Інпути */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="number"],
.wpcf7 input[type="url"],
.wpcf7 select,
.wpcf7 textarea {
	width: 100%;
	box-sizing: border-box;
	background: var(--surface);
	border: 1px solid transparent;
	border-radius: 8px;
	padding: 11px 14px;
	font-family: 'Rubik', sans-serif;
	font-size: 14px;
	color: var(--ink);
	outline: none;
	transition: border-color 0.2s, background 0.2s;
}
.wpcf7 input[type="text"]::placeholder,
.wpcf7 input[type="email"]::placeholder,
.wpcf7 input[type="tel"]::placeholder,
.wpcf7 textarea::placeholder {
	color: var(--ink3);
}
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 input[type="number"]:focus,
.wpcf7 input[type="url"]:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
	border-color: var(--ink);
	background: var(--white);
}
.wpcf7 textarea {
	resize: vertical;
	min-height: 120px;
}
/* Кнопка submit */
.wpcf7 input[type="submit"],
.wpcf7 .wpcf7-submit {
	width: 100%;
	font-family: 'Rubik', sans-serif;
	font-size: 14px;
	font-weight: 600;
	padding: 13px 24px;
	border-radius: 10px;
	background: var(--ink);
	color: #fff;
	border: none;
	cursor: pointer;
	transition: background 0.2s;
	margin-top: 4px;
	letter-spacing: 0.01em;
}
.wpcf7 input[type="submit"]:hover,
.wpcf7 .wpcf7-submit:hover {
	background: var(--accent);
}
/* cta-primary як submit — якщо клас заданий у формі */
.wpcf7 .cta-primary {
	display: block;
	text-align: center;
}
/* Помилки валідації */
.wpcf7-not-valid {
	border-color: #e53e3e !important;
	background: #fff5f5 !important;
}
.wpcf7-not-valid-tip {
	font-size: 11px;
	color: #e53e3e;
	display: block;
	margin-top: 3px;
}
/* Повідомлення після відправки */
.wpcf7-response-output {
	margin: 12px 0 0;
	padding: 10px 14px;
	border-radius: 8px;
	font-size: 13px;
	border: 1px solid;
}
.wpcf7 form.sent .wpcf7-response-output {
	background: rgba(34, 197, 94, 0.07);
	border-color: rgba(34, 197, 94, 0.3);
	color: #166534;
}
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
	background: rgba(229, 62, 62, 0.06);
	border-color: rgba(229, 62, 62, 0.25);
	color: #9b1c1c;
}
.wpcf7 form.spam .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output {
	background: rgba(251, 191, 36, 0.08);
	border-color: rgba(251, 191, 36, 0.3);
	color: #92400e;
}
/* Спінер під час відправки */
.wpcf7 .ajax-loader {
	display: none !important;
}
