body { font-family: 'Inter', sans-serif; background-color: #f8f9fa;}
/*menü*/
.top-bar { background-color: #1a1d20; font-size: 0.85rem; transition: all 0.3s; }
.nav-link-custom { color: #444; font-weight: 600; transition: 0.3s; padding: 10px 15px; border-bottom: 2px solid transparent; }
.nav-link-custom:hover { color: #dc3545; border-bottom: 2px solid #dc3545; }
.search-wrapper { position: relative; }
.search-input { border-radius: 20px; padding-left: 20px; border: 1px solid #ddd; }
.search-btn { border-radius: 0 20px 20px 0; position: absolute; right: 0; top: 0; height: 100%; z-index: 5; }
.header-main { box-shadow: 0 2px 15px rgba(0,0,0,0.05); background: #fff; }
.logo-img { transition: transform 0.3s ease; }
.logo-img:hover { transform: scale(1.05); }

/* Ana Sayfa Özel Stiller */
.hero-slider { border-radius: 15px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.brand-card { 
	transition: all 0.3s ease; 
	border: none !important; 
	box-shadow: 0 4px 12px rgba(0,0,0,0.05);
	border-radius: 12px;
	background: #fff;
}
.brand-card:hover { 
	transform: translateY(-5px); 
	box-shadow: 0 8px 25px rgba(0,0,0,0.1);
	background: #dc3545; /* Üzerine gelince markanın rengini alabilir */
}
.brand-card:hover div { color: #fff !important; }

.slogan-box {
	background: linear-gradient(45deg, #bdc3c7, #2c3e50); /* Daha premium bir geçiş */
	border: none;
	position: relative;
	overflow: hidden;
}
.category-card {
	border: 1px solid #eee;
	border-radius: 10px;
	transition: 0.3s;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.category-card:hover {
	border-color: #dc3545;
	color: #dc3545 !important;
	background-color: #fff5f5;
}
.section-title {
	font-weight: 700;
	position: relative;
	padding-bottom: 10px;
	margin-bottom: 25px;
}
.section-title::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 50px;
	height: 3px;
	background: #dc3545;
}
