.nav-link{
	color: #000 !important;
}
.carousel-container {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0px;
}

.owl-carousel .item {
	padding: 0px;
}

.owl-carousel .item img {
	width: 100%;
	height: auto;
	display: block;
}

.custom-nav {
	position: absolute;
	top: 50%;
	width: calc(100% - 40px);
	left: 20px;
	display: flex;
	justify-content: space-between;
	transform: translateY(-50%);
	pointer-events: none;
	z-index: 10;
}

.custom-nav button {
	pointer-events: all;
	background: rgba(255, 255, 255, 0.8);
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.custom-nav button:hover {
	background: white;
	transform: scale(1.1);
}

.custom-nav button i {
	font-size: 18px;
	color: #333;
}

.custom-nav button.hidden {
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
}

.category-badge {
	font-size: 0.8em;
	position: absolute;
	top: 10px;
	right: 10px;
}
.card {
	position: relative;
	transition: transform 0.2s;
}
.card:hover {
	transform: translateY(-5px);
}
.filter-sidebar {
	background: #f8f9fa;
	border-radius: 10px;
	padding: 20px;
	height: fit-content;
}
.filter-header {
	border-bottom: 2px solid #007bff;
	padding-bottom: 10px;
	margin-bottom: 15px;
}
.form-check-input:checked {
	background-color: #007bff;
	border-color: #007bff;
}
.form-check-label {
	cursor: pointer;
	padding-left: 5px;
}
.filter-btn {
	margin-top: 10px;
}
.product-count {
	background: #007bff;
	color: white;
	border-radius: 50%;
	padding: 2px 8px;
	font-size: 0.8em;
	margin-left: 5px;
}
.form-check {
	padding-left: 0;
}
.form-check-input {
	margin-top: 0.3em;
	margin-left: 0;
	margin-right: 8px;
}
.form-check-label {
	display: flex;
	align-items: center;
	transition: all 0.3s ease;
}
.form-check-input:checked + .form-check-label {
	font-weight: 600;
	color: #007bff;
}
.show-more-section {
	text-align: center;
	margin: 30px 0;
	padding: 20px 0;
	border-top: 1px solid #dee2e6;
}
.products-shown {
	color: #6c757d;
	font-size: 0.9em;
	margin-bottom: 10px;
}
.loading-spinner {
	display: none;
	text-align: center;
	padding: 20px;
}
.filter-loading {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.products-container {
	position: relative;
	min-height: 200px;
}
.active-filters {
	transition: all 0.3s ease;
}