/* ================================
   Ürün Kartları - Ortak Stil
   index.html, service.html, blog-single.html
   ================================ */

/* --- Klima Slider Kartları (index + blog-single) --- */
.klima-card{
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid #E7ECEA;
	border-radius: 20px;
	overflow: hidden;
	text-decoration: none;
	transition: all 0.3s ease-in-out;
	height: 100%;
}

/* Swiper slide equal height */
.klimaSwiper .swiper-wrapper{
	align-items: stretch;
}

.klimaSwiper .swiper-slide{
	height: auto;
	display: flex;
}

.klimaSwiper .swiper-slide .klima-card{
	flex: 1;
	display: flex;
	flex-direction: column;
}

.klimaSwiper .swiper-slide .klima-info{
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

/* Isı Pompası slider equal height */
.isiPompasiSwiper .swiper-wrapper{
	align-items: stretch;
}

.isiPompasiSwiper .swiper-slide{
	height: auto;
	display: flex;
}

.isiPompasiSwiper .swiper-slide .klima-card{
	flex: 1;
	display: flex;
	flex-direction: column;
}

.isiPompasiSwiper .swiper-slide .klima-info{
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

/* Endüstriyel slider equal height */
.endustriyelSwiper .swiper-wrapper{
	align-items: stretch;
}

.endustriyelSwiper .swiper-slide{
	height: auto;
	display: flex;
}

.endustriyelSwiper .swiper-slide .klima-card{
	flex: 1;
	display: flex;
	flex-direction: column;
}

.endustriyelSwiper .swiper-slide .klima-info{
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.klima-card:hover{
	box-shadow: 0 8px 28px rgba(0,0,0,0.08);
	border-color: #4B72FE;
}

.klima-img{
	position: relative;
	background: #fff;
	padding: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 280px;
	overflow: hidden;
}

.klima-img img{
	max-width: 100%;
	max-height: 240px;
	object-fit: contain;
	transition: transform 0.5s ease-in-out;
}

.klima-card:hover .klima-img img{
	transform: scale(1.1);
}

.klima-info{
	padding: 20px 16px 24px;
	text-align: center;
}

.klima-info h4{
	font-size: 16px;
	font-weight: 700;
	color: #1E293B;
	margin: 0 0 10px;
	line-height: 1.3em;
	text-transform: uppercase;
}

/* --- Bilgi Al Yazı Efekti (ortak) --- */
.bilgi-al-wrap{
	position: relative;
	height: 22px;
	overflow: hidden;
}

.bilgi-al-wrap span{
	display: block;
	font-size: 15px;
	font-weight: 500;
	font-style: italic;
	line-height: 22px;
	transition: transform 0.35s ease-in-out;
}

.bilgi-al-wrap .bilgi-default{
	color: #4B72FE;
}

.bilgi-al-wrap .bilgi-hover{
	color: #BF1724;
	font-weight: 700;
}

.klima-card:hover .bilgi-al-wrap span,
.product-card:hover .bilgi-al-wrap span{
	transform: translateY(-22px);
}

/* --- Service (Ürünler) Sayfası Kartları --- */
.product-card{
	display: flex;
	flex-direction: column;
	position: relative;
	background: #fff;
	border: 1px solid #E7ECEA;
	border-radius: 20px;
	overflow: hidden;
	text-decoration: none;
	margin-bottom: 30px;
	transition: all 0.3s ease-in-out;
	height: 100%;
}

.product-card:hover{
	box-shadow: 0 8px 28px rgba(0,0,0,0.08);
	border-color: #4B72FE;
}

.product-image{
	background: #fff;
	padding: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 280px;
	overflow: hidden;
	border-radius: 20px 20px 0 0;
}

.product-image figure{
	position: relative;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.product-image figure::before{
	display: none !important;
}

.product-image img{
	max-width: 100%;
	max-height: 240px;
	object-fit: contain;
	border-radius: 0;
	aspect-ratio: auto;
	transition: transform 0.5s ease-in-out;
}

.product-card:hover .product-image img{
	transform: scale(1.1);
}

.product-body{
	position: relative;
	bottom: auto;
	left: auto;
	right: auto;
	transform: none;
	opacity: 1;
	visibility: visible;
	padding: 20px 16px 24px;
	text-align: center;
	z-index: 1;
}

.product-card:hover .product-body{
	bottom: auto;
	transform: none;
}

.product-title h3{
	font-size: 16px;
	font-weight: 700;
	color: #1E293B;
	margin: 0 0 10px;
	line-height: 1.3em;
	text-transform: uppercase;
}

/* --- Responsive --- */
@media (max-width: 991px){
	.klima-img{
		min-height: 220px;
		padding: 20px;
	}

	.klima-img img{
		max-height: 200px;
	}

	.product-image{
		min-height: 220px;
		padding: 20px;
	}

	.product-image img{
		max-height: 200px;
	}
}

@media (max-width: 575px){
	.klima-img{
		min-height: 180px;
		padding: 16px;
	}

	.klima-img img{
		max-height: 160px;
	}

	.klima-info h4,
	.product-title h3{
		font-size: 14px;
	}

	.bilgi-al-wrap{
		height: 20px;
	}

	.bilgi-al-wrap span{
		font-size: 13px;
		line-height: 20px;
	}

	.klima-card:hover .bilgi-al-wrap span,
	.product-card:hover .bilgi-al-wrap span{
		transform: translateY(-20px);
	}

	.product-image{
		min-height: 180px;
		padding: 16px;
	}

	.product-image img{
		max-height: 160px;
	}
}


/* --- 5 Yıldız Badge --- */
.klima-stars{
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 2;
	display: flex;
	gap: 2px;
}

.klima-stars i{
	color: #FFB800;
	font-size: 16px;
	filter: drop-shadow(0 1px 2px rgba(0,0,0,0.15));
}

.product-stars{
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 2;
	display: flex;
	gap: 2px;
}

.product-stars i{
	color: #FFB800;
	font-size: 16px;
	filter: drop-shadow(0 1px 2px rgba(0,0,0,0.15));
}

.klima-img{
	position: relative;
}

.product-image{
	position: relative;
}

/* --- BTU Etiketi --- */
.klima-btu,
.product-btu{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 5px;
	margin-top: 4px;
	margin-bottom: 6px;
}

.klima-btu span,
.product-btu span{
	background: linear-gradient(135deg, #EEF2FF, #E8EEFF);
	color: #4B72FE;
	font-size: 11px;
	font-weight: 600;
	padding: 3px 8px;
	border-radius: 6px;
	line-height: 1.3;
	letter-spacing: 0.02em;
	white-space: nowrap;
}

/* --- Endüstriyel Alt Filtre --- */
.endustriyel-sub-filter{
	display: none;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: -20px;
	margin-bottom: 50px;
}

.endustriyel-sub-filter.active{
	display: flex;
}

.endustriyel-sub-btn{
	background: #F1F5F9;
	color: #475569;
	border: 1px solid #E2E8F0;
	padding: 6px 16px;
	border-radius: 100px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.25s ease;
	white-space: nowrap;
}

.endustriyel-sub-btn:hover{
	background: #E8EEFF;
	color: #4B72FE;
	border-color: #4B72FE;
}

.endustriyel-sub-btn.active{
	background: #4B72FE;
	color: #fff;
	border-color: #4B72FE;
}

@media (max-width: 575px){
	.klima-btu span,
	.product-btu span{
		font-size: 10px;
		padding: 2px 6px;
	}

	.endustriyel-sub-btn{
		font-size: 11px;
		padding: 5px 12px;
	}
}
