/* Categories Page Styles */
.categories-hero {
	background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1542838132-92c53300491e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
	background-size: cover;
	background-position: center;
	color: white;
	padding: 80px 0;
	text-align: center;
	margin-bottom: 40px;
}

.categories-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 20px;
}

.categories-breadcrumb {
	background: transparent;
	padding: 0;
	margin-bottom: 0;
}

.categories-container {
	padding: 40px 0;
}

.section-title {
	position: relative;
	margin-bottom: 30px;
	text-align: center;
	padding-bottom: 15px;
	font-weight: 700;
	color: var(--dark-color);
}

.section-title:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background: var(--primary-color);
}

.category-filter {
	margin-bottom: 30px;
	background: white;
	border-radius: 10px;
	padding: 20px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.category-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
}

.category-btn {
	background: var(--light-color);
	border: none;
	padding: 10px 20px;
	border-radius: 30px;
	font-weight: 500;
	transition: all 0.3s;
}

.category-btn:hover, .active-category, .all-category {
	background: var(--primary-color);
	color: white;
}

.product-grid {
	margin-top: 30px;
}

.product-card {
	border: none;
	border-radius: 10px;
	overflow: hidden;
	transition: all 0.3s;
	margin-bottom: 20px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	background: white;
}

.product-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.product-img {
	height: 200px;
	object-fit: cover;
}

.product-title {
	font-weight: 600;
	margin-bottom: 5px;
	color: var(--dark-color);
}

.product-price {
	color: var(--primary-color);
	font-weight: 700;
	font-size: 1.2rem;
}

.product-old-price {
	text-decoration: line-through;
	color: #6c757d;
	font-size: 0.9rem;
	margin-left: 10px;
}

.add-to-cart {
	background-color: var(--primary-color);
	color: white;
	border: none;
	padding: 8px 20px;
	border-radius: 30px;
	font-weight: 500;
	width: 100%;
	margin-top: 10px;
}


@media (max-width: 768px) {	
	.categories-title {
		font-size: 2rem;
	}
	
	.category-buttons {
		flex-direction: column;
		align-items: center;
	}
	
	.category-btn {
		width: 100%;
		text-align: center;
	}
}

.no-found{
	color: #a38019;
    font-size: 1.5rem;
    text-align: center;
    display: block;
    background: antiquewhite;
    padding: 20px;
}