/* Page 2 (Products) Specific Styles */

/* Products Hero */
.products-hero {
	background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	padding: 6rem 0;
	text-align: center;
}

.products-hero h1 {
	font-size: 3.5rem;
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, #8b4513, #a0522d);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.products-hero p {
	font-size: 1.3rem;
	max-width: 900px;
	margin: 0 auto 3rem;
	color: #555;
}

.hero-product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2.5rem;
	margin-top: 3rem;
}

.hero-product-grid img {
	border-radius: 20px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
	transition: all 0.4s ease;
}

.hero-product-grid img:hover {
	transform: scale(1.05) translateY(-10px);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* Curtain Categories */
.curtain-categories {
	padding: 5rem 0;
}

.curtain-categories h2 {
	text-align: center;
	margin-bottom: 1rem;
}

.curtain-categories > p {
	text-align: center;
	max-width: 900px;
	margin: 0 auto 3rem;
	font-size: 1.2rem;
	color: #666;
}

.category-showcase {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2.5rem;
}

.category-item {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	transition: all 0.4s ease;
	position: relative;
}

.category-item:hover {
	transform: translateY(-12px);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.category-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(135deg, #8b4513, #a0522d);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.category-item:hover::before {
	opacity: 1;
}

.category-item img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	border-radius: 0;
}

.category-item h3 {
	padding: 1.5rem 1.5rem 0.5rem;
	color: #8b4513;
	font-size: 1.4rem;
}

.category-item p {
	padding: 0 1.5rem 1.5rem;
	color: #666;
	margin: 0;
	line-height: 1.6;
}

/* Blind Varieties */
.blind-varieties {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	padding: 5rem 0;
}

.blind-varieties h2 {
	text-align: center;
	margin-bottom: 1rem;
}

.blind-varieties > p {
	text-align: center;
	max-width: 900px;
	margin: 0 auto 3rem;
	font-size: 1.2rem;
	color: #666;
}

.blind-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.blind-grid img {
	border-radius: 15px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	aspect-ratio: 4/3;
	object-fit: cover;
}

.blind-grid img:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Motorized Solutions */
.motorized-solutions {
	padding: 5rem 0;
}

.motorized-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.motorized-text h2 {
	margin-bottom: 1.5rem;
	color: #2c3e50;
}

.motorized-text p {
	margin-bottom: 1.5rem;
	font-size: 1.1rem;
	line-height: 1.7;
}

.motorized-images {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}

.motorized-images img:first-child {
	grid-column: 1 / -1;
	border-radius: 15px;
}

.motorized-images img {
	border-radius: 12px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Fabric Showcase */
.fabric-showcase {
	background: linear-gradient(135deg, #faf8f5 0%, #f5f2ed 100%);
	padding: 5rem 0;
}

.fabric-showcase h2 {
	text-align: center;
	margin-bottom: 1rem;
}

.fabric-showcase > p {
	text-align: center;
	max-width: 900px;
	margin: 0 auto 3rem;
	font-size: 1.2rem;
	color: #666;
}

.fabric-display {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.fabric-display img {
	border-radius: 12px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	aspect-ratio: 1;
	object-fit: cover;
}

.fabric-display img:hover {
	transform: scale(1.05);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Commercial Products */
.commercial-products {
	padding: 5rem 0;
}

.commercial-products h2 {
	text-align: center;
	margin-bottom: 1rem;
}

.commercial-products > p {
	text-align: center;
	max-width: 900px;
	margin: 0 auto 3rem;
	font-size: 1.2rem;
	color: #666;
}

.commercial-showcase {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2.5rem;
}

.commercial-category {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.4s ease;
	border: 2px solid transparent;
}

.commercial-category:hover {
	transform: translateY(-10px);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
	border-color: #8b4513;
}

.commercial-category img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	border-radius: 0;
}

.commercial-category h3 {
	padding: 1.5rem 1.5rem 0.5rem;
	color: #8b4513;
	font-size: 1.4rem;
}

.commercial-category p {
	padding: 0 1.5rem 1.5rem;
	color: #666;
	margin: 0;
}

/* Outdoor Products */
.outdoor-products {
	background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
	padding: 5rem 0;
}

.outdoor-products h2 {
	text-align: center;
	margin-bottom: 1rem;
}

.outdoor-products > p {
	text-align: center;
	max-width: 900px;
	margin: 0 auto 3rem;
	font-size: 1.2rem;
	color: #666;
}

.outdoor-collection {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.outdoor-collection img {
	border-radius: 15px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.outdoor-collection img:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Specialty Applications */
.specialty-applications {
	padding: 5rem 0;
}

.specialty-applications h2 {
	text-align: center;
	margin-bottom: 1rem;
}

.specialty-applications > p {
	text-align: center;
	max-width: 900px;
	margin: 0 auto 3rem;
	font-size: 1.2rem;
	color: #666;
}

.specialty-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2.5rem;
}

.specialty-item {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.4s ease;
	position: relative;
}

.specialty-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.specialty-item::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(139, 69, 19, 0.1),
		rgba(160, 82, 45, 0.1)
	);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.specialty-item:hover::after {
	opacity: 1;
}

.specialty-item img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 0;
}

.specialty-item h3 {
	padding: 1.5rem 1.5rem 0.5rem;
	color: #8b4513;
	position: relative;
	z-index: 1;
}

.specialty-item p {
	padding: 0 1.5rem 1.5rem;
	color: #666;
	margin: 0;
	position: relative;
	z-index: 1;
}

/* Hardware & Accessories */
.hardware-accessories {
	background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
	padding: 5rem 0;
}

.hardware-accessories h2 {
	text-align: center;
	margin-bottom: 1rem;
}

.hardware-accessories > p {
	text-align: center;
	max-width: 900px;
	margin: 0 auto 3rem;
	font-size: 1.2rem;
	color: #666;
}

.hardware-display {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.hardware-display img {
	border-radius: 12px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	aspect-ratio: 4/3;
	object-fit: cover;
}

/* Installation Tools */
.installation-tools {
	padding: 5rem 0;
}

.tools-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.tools-images {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}

.tools-images img:last-child {
	grid-column: 1 / -1;
}

/* Care Products */
.care-products {
	background: linear-gradient(135deg, #fff8e1 0%, #fff3c4 100%);
	padding: 5rem 0;
}

.care-products h2 {
	text-align: center;
	margin-bottom: 1rem;
}

.care-products > p {
	text-align: center;
	max-width: 900px;
	margin: 0 auto 3rem;
	font-size: 1.2rem;
	color: #666;
}

.care-showcase {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

/* Quality Certifications */
.quality-certifications {
	padding: 5rem 0;
}

.quality-certifications h2 {
	text-align: center;
	margin-bottom: 1rem;
}

.quality-certifications > p {
	text-align: center;
	max-width: 900px;
	margin: 0 auto 3rem;
	font-size: 1.2rem;
	color: #666;
}

.certification-display {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

/* Institutional Solutions */
.institutional-solutions {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	padding: 5rem 0;
}

.institutional-solutions h2 {
	text-align: center;
	margin-bottom: 1rem;
}

.institutional-solutions > p {
	text-align: center;
	max-width: 900px;
	margin: 0 auto 3rem;
	font-size: 1.2rem;
	color: #666;
}

.institutional-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2.5rem;
}

.institutional-item {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.4s ease;
}

.institutional-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.institutional-item img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 0;
}

.institutional-item h3 {
	padding: 1.5rem 1.5rem 0.5rem;
	color: #8b4513;
}

.institutional-item p {
	padding: 0 1.5rem 1.5rem;
	color: #666;
	margin: 0;
}

/* Entertainment Venues */
.entertainment-venues {
	padding: 5rem 0;
}

.entertainment-venues h2 {
	text-align: center;
	margin-bottom: 1rem;
}

.entertainment-venues > p {
	text-align: center;
	max-width: 900px;
	margin: 0 auto 3rem;
	font-size: 1.2rem;
	color: #666;
}

.venue-showcase {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

/* Retail & Commercial Spaces */
.retail-commercial {
	background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	padding: 5rem 0;
}

.retail-commercial h2 {
	text-align: center;
	margin-bottom: 1rem;
}

.retail-commercial > p {
	text-align: center;
	max-width: 900px;
	margin: 0 auto 3rem;
	font-size: 1.2rem;
	color: #666;
}

.retail-collection {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2.5rem;
}

.retail-item {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.4s ease;
}

.retail-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.retail-item img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 0;
}

.retail-item h3 {
	padding: 1.5rem 1.5rem 0.5rem;
	color: #8b4513;
}

.retail-item p {
	padding: 0 1.5rem 1.5rem;
	color: #666;
	margin: 0;
}

/* Healthcare Specialties */
.healthcare-specialties {
	padding: 5rem 0;
}

.healthcare-specialties h2 {
	text-align: center;
	margin-bottom: 1rem;
}

.healthcare-specialties > p {
	text-align: center;
	max-width: 900px;
	margin: 0 auto 3rem;
	font-size: 1.2rem;
	color: #666;
}

.healthcare-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

/* Transportation & Marine */
.transportation-marine {
	background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
	padding: 5rem 0;
}

.transportation-marine h2 {
	text-align: center;
	margin-bottom: 1rem;
}

.transportation-marine > p {
	text-align: center;
	max-width: 900px;
	margin: 0 auto 3rem;
	font-size: 1.2rem;
	color: #666;
}

.transport-showcase {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2.5rem;
}

.transport-item {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.4s ease;
}

.transport-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.transport-item img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 0;
}

.transport-item h3 {
	padding: 1.5rem 1.5rem 0.5rem;
	color: #8b4513;
}

.transport-item p {
	padding: 0 1.5rem 1.5rem;
	color: #666;
	margin: 0;
}

/* Product Customization */
.product-customization {
	padding: 5rem 0;
}

.product-customization h2 {
	text-align: center;
	margin-bottom: 1rem;
}

.product-customization > p {
	text-align: center;
	max-width: 900px;
	margin: 0 auto 3rem;
	font-size: 1.2rem;
	color: #666;
}

.customization-showcase {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

/* Responsive Design for Page 2 */
@media (max-width: 768px) {
	.products-hero h1 {
		font-size: 2.5rem;
	}

	.hero-product-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.motorized-content,
	.tools-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.motorized-images,
	.tools-images {
		grid-template-columns: 1fr;
	}

	.category-showcase,
	.commercial-showcase,
	.specialty-grid,
	.institutional-grid,
	.retail-collection,
	.transport-showcase {
		grid-template-columns: 1fr;
	}

	.blind-grid,
	.fabric-display,
	.outdoor-collection,
	.hardware-display,
	.care-showcase,
	.certification-display,
	.venue-showcase,
	.healthcare-grid,
	.customization-showcase {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}
}

@media (max-width: 480px) {
	.products-hero h1 {
		font-size: 2rem;
	}

	.products-hero {
		padding: 4rem 0;
	}

	.blind-grid,
	.fabric-display,
	.outdoor-collection,
	.hardware-display,
	.care-showcase,
	.certification-display,
	.venue-showcase,
	.healthcare-grid,
	.customization-showcase {
		grid-template-columns: 1fr;
	}
}
/* ===============================
   Page 2 — Buying Guide (text-only)
   =============================== */

.buying-guide {
	--accent: #2f7d6d;
	--ink: #1f2a37;
	--muted: #5b6472;

	padding-block: clamp(36px, 6vw, 84px);
	background: linear-gradient(
		180deg,
		rgba(47, 125, 109, 0.03),
		transparent 30%
	);
	border-top: 1px solid rgba(31, 42, 55, 0.06);
	border-bottom: 1px solid rgba(31, 42, 55, 0.06);
	color: var(--ink);
}

.buying-guide .container {
	max-width: 980px; /* чуть уже для удобочитаемости */
}

/* Заголовки и абзацы */
.buying-guide h2 {
	font-family: 'Playfair Display', serif;
	font-weight: 700;
	font-size: clamp(26px, 4vw, 38px);
	line-height: 1.2;
	margin: 0 0 12px;
	letter-spacing: 0.2px;
}

.buying-guide h3 {
	font-weight: 700;
	font-size: clamp(18px, 2.4vw, 22px);
	line-height: 1.3;
	margin: clamp(18px, 3vw, 28px) 0 10px;
	color: var(--ink);
}

.buying-guide > .container > p {
	margin: 0 0 16px;
	color: var(--muted);
	font-size: clamp(16px, 1.6vw, 18px);
	line-height: 1.8;
	hyphens: auto;
	text-wrap: pretty;
}

/* Нумерованный список шагов */
.buying-guide ol {
	margin: 8px 0 20px;
	padding-left: 1.25em;
}

.buying-guide ol li {
	margin: 8px 0;
	line-height: 1.75;
	color: var(--ink);
}

.buying-guide ol li::marker {
	font-weight: 700;
	color: var(--accent);
}

.buying-guide li strong {
	color: var(--ink);
}

/* Глоссарий */
.buying-guide dl {
	display: grid;
	grid-template-columns: minmax(140px, 220px) 1fr;
	gap: 8px 24px;
	margin: 8px 0 22px;
}

.buying-guide dt {
	font-weight: 600;
	color: var(--accent);
}

.buying-guide dd {
	margin: 0 0 8px;
	color: var(--muted);
	line-height: 1.75;
}

.buying-guide abbr[title] {
	text-decoration: underline dotted currentColor;
	text-underline-offset: 2px;
	cursor: help;
}

/* Таблица сравнения */
.buying-guide table {
	width: 100%;
	border-collapse: collapse;
	margin: 10px 0 24px;
	font-size: clamp(14px, 1.5vw, 16px);
}

.buying-guide caption {
	text-align: left;
	font-weight: 600;
	margin-bottom: 8px;
}

.buying-guide th,
.buying-guide td {
	padding: 12px 14px;
	border: 1px solid rgba(31, 42, 55, 0.12);
	text-align: left;
	vertical-align: top;
}

.buying-guide thead th {
	background: rgba(47, 125, 109, 0.08);
}

.buying-guide tbody tr:nth-child(odd) {
	background: rgba(31, 42, 55, 0.03);
}

/* Кнопка внутри секции — оставляем глобальный стиль, лишь добавим отступ */
.buying-guide .cta-button {
	margin-top: 6px;
}

/* Анимация появления, если у вас есть скрипт для .is-visible */
.buying-guide.animate-on-scroll {
	opacity: 0.001;
	transform: translateY(10px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}
.buying-guide.is-visible {
	opacity: 1;
	transform: none;
}

/* Адаптивность */
@media (max-width: 800px) {
	.buying-guide dl {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 640px) {
	/* горизонтальная прокрутка таблицы на очень узких экранах */
	.buying-guide table {
		display: block;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		white-space: nowrap;
	}
}

/* Меньше движения по запросу пользователя */
@media (prefers-reduced-motion: reduce) {
	.buying-guide.animate-on-scroll {
		transition: none;
	}
}
/* HOTFIX: показываем секцию по умолчанию */
.buying-guide.animate-on-scroll {
	opacity: 1 !important;
	transform: none !important;
	color: #1f2a37 !important; /* на случай глобального белого текста */
}
