/*#########################*/
/*#### CATEGORY OVERVIEW */
/*#########################*/
.category-overview-hero {
	position: relative;
	background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
	color: #fff;
	padding: 60px 40px;
	border-radius: 12px;
	margin-bottom: 40px;
	overflow: hidden;
}

.category-overview-hero::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 50%;
	height: 100%;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
	opacity: 0.3;
}

.category-overview-hero-content {
	position: relative;
	z-index: 1;
}

.category-overview-hero h2 {
	font-size: 42px;
	font-weight: 700;
	margin-bottom: 15px;
}

.category-overview-hero p {
	font-size: 18px;
	margin-bottom: 20px;
	opacity: 0.9;
}

.category-overview-hero-price {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 25px;
}

.category-overview-hero-price .price-old {
	font-size: 24px;
	text-decoration: line-through;
	opacity: 0.7;
}

.category-overview-hero-price .price-new {
	font-size: 36px;
	font-weight: 700;
}

.category-overview-hero .btn-hero {
	padding: 14px 32px;
	background: #fff;
	color: #1e3c72;
	border: none;
	border-radius: 6px;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}

.category-overview-hero .btn-hero:hover {
	background: #f8f9fa;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.category-overview-hero-image {
	position: absolute;
	right: 40px;
	top: 50%;
	transform: translateY(-50%);
	width: 400px;
	opacity: 0.9;
}

.category-overview-hero-image img {
	width: 100%;
	height: auto;
}

/* Quick Links Section */
.category-overview-quicklinks {
	background: #fff;
	border-radius: 12px;
	padding: 30px;
	margin-bottom: 40px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.category-overview-quicklinks h3 {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 25px;
	color: #212529;
}

.category-overview-quicklinks-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
}

.category-quicklink-item {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 20px;
	background: #f8f9fa;
	border-radius: 8px;
	transition: all 0.3s ease-in-out;
}

.category-quicklink-item:hover {
	background: #e9ecef;
	transform: translateY(-3px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.category-quicklink-image {
	width: 80px;
	height: 80px;
	flex-shrink: 0;
	border-radius: 8px;
	overflow: hidden;
	background: #fff;
}

.category-quicklink-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.category-quicklink-content h4 {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 8px;
	color: #212529;
}

.category-quicklink-content ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.category-quicklink-content ul li {
	margin-bottom: 4px;
}

.category-quicklink-content ul li a {
	color: #6c757d;
	text-decoration: none;
	font-size: 14px;
	transition: color 0.2s ease-in-out;
}

.category-quicklink-content ul li a:hover {
	color: #007bff;
}

/* Subcategory Sections */
.category-subcategory-section {
	margin-bottom: 50px;
}

.category-subcategory-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 25px;
	padding-bottom: 15px;
	border-bottom: 2px solid #e9ecef;
}

.subcategory-title {
	font-size: 28px;
	font-weight: 600;
	margin: 0;
	color: #212529;
}

.subcategory-title a {
	color: #212529;
	text-decoration: none;
	transition: color 0.2s ease-in-out;
}

.subcategory-title a:hover {
	color: #007bff;
}

.subcategory-view-all {
	padding: 10px 20px;
	background: transparent;
	color: #007bff;
	border: 2px solid #007bff;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease-in-out;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.subcategory-view-all:hover {
	background: #007bff;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
}

#product-category .category-subcategory-section .product-carousel {
	padding-left: 50px;
	padding-right: 50px;
}

#product-category .category-subcategory-section .product-carousel .item {
	padding: 0 10px;
}

/* Responsive */
@media (max-width: 992px) {
	.category-overview-hero {
		padding: 40px 30px;
	}
	
	.category-overview-hero h2 {
		font-size: 32px;
	}
	
	.category-overview-hero-image {
		width: 300px;
		right: 20px;
	}
	
	.category-overview-quicklinks-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.category-overview-hero {
		padding: 30px 20px;
		text-align: center;
	}
	
	.category-overview-hero-image {
		display: none;
	}
	
	.category-overview-hero h2 {
		font-size: 24px;
	}
	
	.category-overview-hero p {
		font-size: 16px;
	}
}

