/* ==========================================================================
   Gorsel iyilestirme katmani - mevcut sablonu bozmadan ustune eklenir
   ========================================================================== */

/* Kartlara (Engine ECU, Body ECU vb.) hover'da hafif yukselme + golge */
div.featured-box {
	transition: transform .25s ease, box-shadow .25s ease;
}
div.featured-box:hover {
	transform: translateY(-6px);
	box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Marka logolari varsayilan gri, hover'da renkli gorunsun */
.owl-carousel img {
	filter: grayscale(100%);
	opacity: 0.7;
	transition: filter .25s ease, opacity .25s ease, transform .25s ease;
}
.owl-carousel img:hover {
	filter: grayscale(0%);
	opacity: 1;
	transform: scale(1.05);
}

/* Bulten (subscribe) alani - duz gri yerine markaya uygun degrade */
.bs-callout {
	background: linear-gradient(135deg, #1980B6 0%, #146794 100%) !important;
	border-radius: 4px;
	padding: 30px 20px;
}
.bs-callout h3,
.bs-callout p {
	color: #ffffff !important;
}
.bs-callout input[type="text"],
.bs-callout input[type="email"] {
	border-radius: 4px 0 0 4px;
	border: none;
	height: 46px;
}
.bs-callout button {
	border-radius: 0 4px 4px 0;
	background-color: #2E363F !important;
	height: 46px;
}
.bs-callout button:hover {
	background-color: #1b1f23 !important;
}

/* Istatistik ikonlarina (95 Brand, 836 Model, 4780 Pack) hafif hover efekti */
.countTo .fa {
	transition: transform .25s ease;
}
.countTo a:hover .fa {
	transform: scale(1.1);
}

/* Footer - bos "latest posts" sutunu icin hizli baglantilar */
.footer-quicklinks h4 {
	color: #ffffff;
	margin-bottom: 15px;
}
.footer-quicklinks ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.footer-quicklinks ul li {
	margin-bottom: 8px;
}
.footer-quicklinks ul li a {
	color: #afafaf;
	transition: color .2s ease, padding-left .2s ease;
}
.footer-quicklinks ul li a:hover {
	color: #ffffff;
	padding-left: 4px;
	text-decoration: none;
}

/* Footer logo blogunun altina eklenen slogan */
.logo-content .footer-tagline {
	color: #afafaf;
	font-size: 13px;
	margin-top: 6px;
}

/* Buton ve link gecisleri genel olarak yumusatilsin */
.btn, a {
	transition: all .2s ease;
}

/* Marka -> Model listesi modernizasyonu (index.php?page=brands&list=..) */
.model-list-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 15px;
	margin: 20px 0;
}
.model-list-count {
	font-size: 15px;
	font-weight: 600;
	color: #2E363F;
	background: #eef4f8;
	padding: 6px 14px;
	border-radius: 20px;
}
.model-search-wrap {
	position: relative;
	min-width: 260px;
}
.model-search-wrap .fa-search {
	position: absolute;
	top: 12px;
	left: 14px;
	color: #9C9C9C;
}
.model-search-wrap input {
	padding-left: 36px;
	border-radius: 20px;
	height: 40px;
}

.model-card {
	border-radius: 6px;
	overflow: hidden;
	background: #fff;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.model-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 20px rgba(0,0,0,0.10);
	border-color: #1980B6;
}
.model-card h4 {
	font-size: 14px;
	font-weight: 600;
}
