/* =====================================================
   PRODUCT CATALOG PAGE STYLES
   ===================================================== */

:root {
	--catalog-bg: #f8f9fa;
	--catalog-border: #e0e0e0;
	--catalog-text: #333;
	--catalog-accent: #0066cc;
	--catalog-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Hero Banner */
.catalog-hero {
	position: relative;
	height: 300px;
	background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-bottom: 40px;
}

.catalog-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.3);
	z-index: 1;
}

.catalog-hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	color: white;
	max-width: 600px;
	padding: 0 20px;
}

.catalog-hero-content h1 {
	font-size: 48px;
	font-weight: 700;
	margin: 0 0 15px 0;
	line-height: 1.2;
}

.catalog-hero-content p {
	font-size: 18px;
	margin: 0;
	opacity: 0.95;
}

/* Main Container */
.catalog-container {
	background: var(--catalog-bg);
	padding: 40px 20px;
}

.catalog-wrapper {
	max-width: 1200px;
	margin: 0 auto;
	background: white;
	border-radius: 8px;
	padding: 40px;
	box-shadow: var(--catalog-shadow);
}

/* Header Section */
.catalog-header {
	text-align: center;
	margin-bottom: 40px;
	padding-bottom: 30px;
	border-bottom: 2px solid var(--catalog-border);
}

.catalog-header h2 {
	font-size: 36px;
	font-weight: 700;
	color: var(--catalog-text);
	margin: 0 0 15px 0;
}

.catalog-header p {
	font-size: 16px;
	color: #666;
	margin: 0;
	line-height: 1.6;
}

/* Embed Wrapper */
.catalog-embed-wrapper {
	position: relative;
	width: 100%;
	padding-bottom: 133.33%; /* 3:4 aspect ratio for typical document */
	height: 0;
	overflow: hidden;
	border-radius: 6px;
	border: 1px solid var(--catalog-border);
	margin-bottom: 40px;
	background: #f5f5f5;
}

.catalog-viewer {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
	border-radius: 6px;
}

/* Footer Info Section */
.catalog-footer-info {
	margin-top: 40px;
	padding-top: 30px;
	border-top: 2px solid var(--catalog-border);
}

.catalog-info-section {
	background: #f9f9f9;
	padding: 25px;
	border-radius: 6px;
	border-left: 4px solid var(--catalog-accent);
}

.catalog-info-section h3 {
	font-size: 20px;
	font-weight: 600;
	color: var(--catalog-text);
	margin: 0 0 10px 0;
}

.catalog-info-section p {
	color: #666;
	margin: 0 0 20px 0;
	line-height: 1.6;
}

.catalog-contact-links {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.contact-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	background: white;
	border: 2px solid var(--catalog-accent);
	border-radius: 4px;
	color: var(--catalog-accent);
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
}

.contact-link:hover {
	background: var(--catalog-accent);
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.contact-link i {
	font-size: 18px;
}

/* Responsive Design */
@media (max-width: 768px) {
	.catalog-hero-content h1 {
		font-size: 32px;
	}

	.catalog-hero-content p {
		font-size: 16px;
	}

	.catalog-wrapper {
		padding: 25px 20px;
	}

	.catalog-header h2 {
		font-size: 28px;
	}

	.catalog-header p {
		font-size: 14px;
	}

	.catalog-contact-links {
		flex-direction: column;
	}

	.contact-link {
		justify-content: center;
		width: 100%;
	}
}

@media (max-width: 480px) {
	.catalog-hero {
		height: 200px;
		margin-bottom: 30px;
	}

	.catalog-hero-content h1 {
		font-size: 24px;
	}

	.catalog-hero-content p {
		font-size: 14px;
	}

	.catalog-wrapper {
		padding: 20px 15px;
	}

	.catalog-header {
		margin-bottom: 30px;
		padding-bottom: 20px;
	}

	.catalog-header h2 {
		font-size: 22px;
	}

	.catalog-embed-wrapper {
		margin-bottom: 30px;
	}

	.catalog-info-section {
		padding: 20px;
	}

	.catalog-info-section h3 {
		font-size: 18px;
	}
}
