/*============================================================================================*/
/* Your custom styles below */
/*============================================================================================*/

/*============================================================================================*/
/* HERO SECTION: Kategori Sidebar + Slider Layout */
/*============================================================================================*/

.hero-section-wrapper {
	padding: 0;
	background: #fff;
}

.hero-section-wrapper .row.no-gutters {
	margin: 0;
}

/* --- Kategori Sidebar --- */
.home-category-sidebar {
	background: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 8px;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.home-category-sidebar .sidebar-title {
	background: #333;
	color: #fff;
	padding: 14px 20px;
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	display: flex;
	align-items: center;
	gap: 10px;
	border-radius: 8px 8px 0 0;
}

.home-category-sidebar .sidebar-title i {
	font-size: 18px;
}

.sidebar-categories {
	list-style: none;
	margin: 0;
	padding: 0;
	flex: 1;
	overflow: visible;
}

.sidebar-categories > li {
	position: relative;
	border-bottom: 1px solid #f0f0f0;
}

.sidebar-categories > li:last-child {
	border-bottom: none;
}

.sidebar-categories > li > a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 18px;
	color: #444;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.25s ease;
}

.sidebar-categories > li > a:hover {
	background: #f8f9fa;
	color: #004dda;
	padding-left: 22px;
}

.sidebar-categories > li > a i {
	font-size: 10px;
	color: #999;
	transition: all 0.25s ease;
}

.sidebar-categories > li > a:hover i {
	color: #004dda;
	transform: translateX(3px);
}

/* Alt Kategoriler (Hover ile açılır - sidebar dışına taşar) */
.sidebar-subcategories {
	list-style: none;
	margin: 0;
	padding: 8px 0;
	position: absolute;
	left: 100%;
	top: 0;
	min-width: 220px;
	background: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 0 8px 8px 0;
	box-shadow: 4px 4px 15px rgba(0,0,0,0.08);
	z-index: 1001;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateX(-5px);
	transition: all 0.25s ease;
}

.sidebar-categories > li.has-submenu:hover .sidebar-subcategories {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateX(0);
}

.sidebar-subcategories li a {
	display: block;
	padding: 9px 18px;
	color: #555;
	font-size: 13px;
	font-weight: 400;
	text-decoration: none;
	transition: all 0.2s ease;
}

.sidebar-subcategories li a:hover {
	background: #f8f9fa;
	color: #004dda;
	padding-left: 24px;
}

/* --- Slider ile Sidebar Uyumu --- */
.carousel-with-sidebar {
	border-radius: 0 8px 8px 0;
	overflow: hidden;
}

.carousel-with-sidebar .owl-slide.cover {
	border-radius: 0;
}

/* Sidebar kolonunun overflow'u visible olmalı (flyout menü için) */
.hero-section-wrapper .col-lg-3 {
	overflow: visible;
	padding-right: 0;
	padding-top: 15px;
	padding-bottom: 15px;
}

.hero-section-wrapper .col-lg-9 {
	padding-top: 15px;
	padding-bottom: 15px;
	padding-left: 15px;
}

/* --- Responsive --- */
@media (max-width: 991px) {
	/* lg altında sidebar gizlenir, slider tam genişlik olur */
	.hero-section-wrapper .col-12 {
		padding: 0;
	}
	
	.carousel-with-sidebar {
		border-radius: 0;
	}
}

@media (min-width: 992px) {
	.home-category-sidebar {
		height: 500px;
	}
	
	/* Slider container yükseklik sınırlama */
	.carousel-with-sidebar .owl-carousel .owl-slide {
		height: 500px;
	}
}

/* Header'daki kategori menüsünü gizle */
nav.categories,
.categories.menu {
	display: none !important;
}

div.slide-text{display:none !important;};
