/**
 * OM Category Essentials - Frontend Styles
 */

/* Category Header */
.om-ce-category-header {
	position: relative;
	padding: 40px 20px;
	margin-bottom: 30px;
	text-align: center;
}

.om-ce-category-header.has-background {
	color: #fff;
}

.om-ce-category-header.has-background::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.4);
	z-index: 1;
}

.om-ce-category-header-content {
	position: relative;
	z-index: 2;
	max-width: 800px;
	margin: 0 auto;
}

.om-ce-category-title {
	margin: 0 0 15px;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.2;
}

.om-ce-category-header.has-background .om-ce-category-title {
	color: #fff;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.om-ce-category-short-description {
	font-size: 16px;
	line-height: 1.6;
	opacity: 0.95;
}

.om-ce-category-short-description p:last-child {
	margin-bottom: 0;
}

/* Footer Text */
.om-ce-category-footer-text {
	padding: 30px 0;
	margin-top: 30px;
	border-top: 1px solid #eee;
}

.om-ce-category-footer-text h2,
.om-ce-category-footer-text h3,
.om-ce-category-footer-text h4 {
	margin-top: 0;
}

/* Landing Pages */
.om-ce-landing-pages {
	margin: 30px 0;
}

.om-ce-landing-pages-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 20px;
}

.om-ce-landing-page-item {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 4px;
	overflow: hidden;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.om-ce-landing-page-item:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
}

.om-ce-landing-page-item a {
	display: block;
	text-decoration: none;
	color: inherit;
}

.om-ce-landing-page-image {
	position: relative;
	padding-top: 75%; /* 4:3 aspect ratio */
	overflow: hidden;
}

.om-ce-landing-page-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.om-ce-landing-page-item:hover .om-ce-landing-page-image img {
	transform: scale(1.05);
}

.om-ce-landing-page-title {
	padding: 15px;
	font-size: 14px;
	font-weight: 600;
	text-align: center;
	background: #f9f9f9;
}

/* Shortcode Wrappers */
.om-ce-shortcode-short-description,
.om-ce-shortcode-sidebar-text,
.om-ce-shortcode-footer-text {
	margin-bottom: 20px;
}

/* WooCommerce Integration */
.woocommerce .om-ce-category-header {
	margin-left: -20px;
	margin-right: -20px;
	width: calc(100% + 40px);
}

/* Responsive */
@media screen and (max-width: 768px) {
	.om-ce-category-header {
		padding: 30px 15px;
	}

	.om-ce-category-title {
		font-size: 24px;
	}

	.om-ce-category-short-description {
		font-size: 14px;
	}

	.om-ce-landing-pages-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}
}

@media screen and (max-width: 480px) {
	.om-ce-landing-pages-grid {
		grid-template-columns: 1fr;
	}
}
