/* ==========================================================================
   Jhomesia Anasayfa stilleri (turuncu tema)
   ========================================================================== */

/* ---- Kategori carousel: temiz, esit, sabit ikon ---- */
.category-carousel .category-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	height: 100%;
	padding: 26px 18px 20px;
	margin: 12px 0;
	background: #fff;
	border: 1px solid #f0f0f0;
	border-radius: 14px;
	gap: 14px;
	box-shadow: 0 4px 18px rgba(0, 0, 0, .04);
}
.category-carousel .category-item:hover {
	transform: translateY(-6px);
	box-shadow: 0 14px 32px rgba(0, 0, 0, .08);
	border-color: #f7d9c2;
}
.category-carousel .category-item img {
	width: 92px;
	height: 92px;
	object-fit: contain;
}
/* Thumbnail'i olmayan kategoriler (Instagram, Facebook, Twitter, TikTok, YouTube...) icin marka ikonu */
.category-carousel .category-item .jh-cat-ic {
	width: 92px;
	height: 92px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fef1e7;
	border-radius: 20px;
	color: #f27a1a;
	font-size: 46px;
	line-height: 1;
}
.category-carousel .category-item:hover .jh-cat-ic { background: #fde6d3; }
.category-carousel .category-item .category-title {
	margin-top: 0;
	font-size: 15px;
	font-weight: 600;
	text-transform: none;
	color: #222;
}
/* Slide'lar esit yukseklik */
.category-carousel .swiper-wrapper { align-items: stretch; }
.category-carousel .swiper-slide { height: auto; }

/* ---- Bolum basliklari ---- */
.section-title { font-weight: 700; }

/* ---- Hakkinda kutusu (maskot + metin) ---- */
.jh-about {
	display: flex;
	align-items: center;
	gap: 32px;
	background: #fff;
	border: 2px solid #fbe2d1;
	border-radius: 20px;
	padding: 26px 36px;
	position: relative;
	overflow: hidden;
}
.jh-about::before {
	content: '';
	position: absolute;
	left: 0; top: 0; bottom: 0;
	width: 6px;
	background: linear-gradient(180deg, #f27a1a, #f9a64d);
}
.jh-about-mascot { flex: 0 0 auto; }
.jh-about-mascot img { height: 130px; width: auto; display: block; }
.jh-about-text { flex: 1 1 auto; }
.jh-about-text p { margin: 0; color: #555; font-size: 15.5px; line-height: 1.75; }

@media (max-width: 575.98px) {
	.jh-about { flex-direction: column; text-align: center; gap: 18px; padding: 24px; }
	.jh-about::before { width: 100%; height: 6px; bottom: auto; }
	.jh-about-text .jh-fancy-line { margin-left: auto; margin-right: auto; }
}

/* ==========================================================================
   Hero slider: içeriği dikey ortala (alt boşluk azalsın) + sağ/sol oklar
   ========================================================================== */
.banner-ad .swiper-slide { min-height: 560px; align-items: center; }
.main-swiper { position: relative; }
.jh-hero-arrow {
	position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
	width: 46px; height: 46px; border-radius: 50%; border: 0;
	background: rgba(255, 255, 255, .92); color: #f27a1a; font-size: 20px;
	display: flex; align-items: center; justify-content: center;
	box-shadow: 0 4px 14px rgba(0, 0, 0, .15); cursor: pointer; opacity: .9;
	transition: background .15s ease, color .15s ease, transform .15s ease, opacity .15s ease;
}
.jh-hero-arrow:hover { background: #f27a1a; color: #fff; opacity: 1; }
.main-swiper-prev { left: 16px; }
.main-swiper-next { right: 16px; }
@media (max-width: 575px) {
	.banner-ad .swiper-slide { min-height: 430px; }
	.jh-hero-arrow { width: 38px; height: 38px; font-size: 17px; }
}
