/* ==========================================================================
   Hanımağa Sofrası — Arayüz katmanı
   Üst bölüm (header), sağ açılır menü, sol iletişim düğmeleri ve sayfa başlığı.
   Bu dosyadaki bileşenler şablon CSS'inden tamamen bağımsızdır.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Üst bölüm
   -------------------------------------------------------------------------- */

.hs-header {
	position: relative;
	z-index: 900;
}

.hs-header-bosluk { display: none; }
.hs-header.hs-sabit .hs-header-ana {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 900;
	box-shadow: 0 6px 30px rgba(18, 18, 18, .1);
	animation: hsIn .35s ease;
}

@keyframes hsIn { from { transform: translateY(-100%); } to { transform: translateY(0); } }

/* Üst ince şerit */
.hs-header-ust {
	background: var(--siyah);
	color: rgba(255, 255, 255, .68);
	font-size: 13.5px;
}

.hs-header-ust .hs-kapsayici {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: 44px;
	flex-wrap: wrap;
}

.hs-header-ust p { margin: 0; display: inline-flex; align-items: center; gap: 9px; }
.hs-header-ust p i { color: var(--turuncu); font-size: 13px; }
.hs-header-ust strong { color: #fff; font-weight: 600; }

.hs-ust-sag { display: flex; align-items: center; gap: 22px; }

.hs-ust-tel {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #fff;
	font-weight: 600;
	letter-spacing: .01em;
}

.hs-ust-tel i { color: var(--turuncu); }
.hs-ust-tel:hover { color: var(--turuncu); }

.hs-ust-sosyal { display: flex; align-items: center; gap: 14px; }
.hs-ust-sosyal a { color: rgba(255, 255, 255, .55); font-size: 14px; transition: color .25s ease, transform .25s ease; }
.hs-ust-sosyal a:hover { color: var(--turuncu); transform: translateY(-2px); }

@media (max-width: 991px) { .hs-header-ust { display: none; } }

/* Ana çubuk */
.hs-header-ana {
	background: #fff;
	border-bottom: 1px solid var(--border);
	transition: box-shadow .3s ease;
}

.hs-header-ana .hs-kapsayici {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	min-height: 88px;
}

.hs-logo { flex: 0 0 auto; display: block; }
.hs-logo img { height: 56px; width: auto; display: block; transition: height .3s ease; }
.hs-header.hs-sabit .hs-logo img { height: 46px; }
.hs-header.hs-sabit .hs-header-ana .hs-kapsayici { min-height: 72px; }

/* Masaüstü menü */
.hs-nav { flex: 1; display: flex; justify-content: center; }
.hs-nav > ul { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.hs-nav > ul > li { position: relative; }

.hs-nav > ul > li > a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 32px 14px;
	font-size: 15px;
	font-weight: 500;
	color: var(--siyah);
	white-space: nowrap;
	position: relative;
	transition: color .22s ease;
}

.hs-nav > ul > li > a i { font-size: 11px; opacity: .55; transition: transform .25s ease; }

.hs-nav > ul > li > a::after {
	content: "";
	position: absolute;
	left: 14px;
	right: 14px;
	bottom: 26px;
	height: 2px;
	background: var(--turuncu);
	border-radius: 2px;
	transform: scaleX(0);
	transform-origin: center;
	transition: transform .28s cubic-bezier(.4, 0, .2, 1);
}

.hs-nav > ul > li:hover > a,
.hs-nav > ul > li.hs-etkin > a { color: var(--turuncu); }
.hs-nav > ul > li:hover > a::after,
.hs-nav > ul > li.hs-etkin > a::after { transform: scaleX(1); }
.hs-nav > ul > li:hover > a i { transform: rotate(180deg); }

.hs-header.hs-sabit .hs-nav > ul > li > a { padding-block: 24px; }
.hs-header.hs-sabit .hs-nav > ul > li > a::after { bottom: 18px; }

/* Açılır alt menü */
.hs-alt-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 262px;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 14px;
	box-shadow: 0 22px 60px rgba(18, 18, 18, .14);
	padding: 10px;
	list-style: none;
	margin: 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	transition: all .28s cubic-bezier(.4, 0, .2, 1);
	z-index: 20;
}

.hs-nav > ul > li:hover > .hs-alt-menu { opacity: 1; visibility: visible; transform: translateY(0); }

.hs-alt-menu li a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 11px 14px;
	border-radius: 9px;
	font-size: 14.5px;
	color: var(--siyah);
	line-height: 1.4;
	transition: background .2s ease, color .2s ease, padding-left .2s ease;
}

.hs-alt-menu li a::before {
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--gumus);
	flex: 0 0 5px;
	transition: background .2s ease, transform .2s ease;
}

.hs-alt-menu li a:hover { background: var(--gumus-acik); color: var(--turuncu); padding-left: 18px; }
.hs-alt-menu li a:hover::before { background: var(--turuncu); transform: scale(1.4); }

@media (max-width: 1199px) {
	.hs-nav > ul > li > a { padding-inline: 10px; font-size: 14px; }
	.hs-header-ana .hs-kapsayici { gap: 16px; }
}

@media (max-width: 991px) {
	.hs-nav { display: none; }
	.hs-header-ana .hs-kapsayici { min-height: 72px; }
	.hs-logo img { height: 46px; }
}

/* Sağdaki eylemler */
.hs-header-eylem { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }

.hs-simge-dugme {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	border: 1px solid var(--border);
	background: #fff;
	color: var(--siyah);
	display: grid;
	place-items: center;
	font-size: 16px;
	transition: all .25s ease;
}

.hs-simge-dugme:hover { background: var(--siyah); border-color: var(--siyah); color: #fff; }

.hs-header-cta {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 14px 24px;
	border-radius: 12px;
	background: var(--turuncu);
	color: #fff;
	font-size: 14.5px;
	font-weight: 600;
	white-space: nowrap;
	box-shadow: 0 8px 22px rgba(242, 101, 34, .28);
	transition: all .25s ease;
}

.hs-header-cta:hover { background: var(--turuncu-koyu); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(242, 101, 34, .36); }

@media (max-width: 767px) { .hs-header-cta { display: none; } }


/* ==========================================================================
   Mobil menü — sağdan açılan çekmece
   ==========================================================================
   Tasarım kararları:
   - Çekmece GÖVDE seviyesinde ve position: fixed. Konumu hiçbir ölçüme
     bağlı değil; bu yüzden sayfa ne kadar kaydırılırsa kaydırılsın ekranın
     aynı yerinde açılır.
   - Alt menüler akordeon: satıra dokunmak listeyi açar, sayfaya gitmez.
   - Kapalıyken hem görünmez hem de dokunma almaz; aksi hâlde ekranı kaplayan
     görünmez bir katman parmağı yutar ve sayfa kaydırılamaz.
   ========================================================================== */

/* --- Hamburger düğmesi --------------------------------------------------- */
.hs-menu-dugme {
	display: none;
	position: relative;
	width: 48px;
	height: 48px;
	border: none;
	border-radius: 14px;
	background: var(--siyah);
	padding: 0;
	cursor: pointer;
	transition: background .25s ease, transform .15s ease;
	-webkit-tap-highlight-color: transparent;
}

@media (max-width: 991px) { .hs-menu-dugme { display: block; } }

.hs-menu-dugme:hover { background: var(--turuncu); }
.hs-menu-dugme:active { transform: scale(.94); }
.hs-menu-dugme:focus-visible { outline: 3px solid var(--turuncu); outline-offset: 3px; }

.hs-menu-dugme span {
	position: absolute;
	left: 50%;
	width: 21px;
	height: 2px;
	margin-left: -10.5px;
	background: #fff;
	border-radius: 2px;
	transition: transform .3s cubic-bezier(.4, 0, .2, 1), opacity .2s ease, width .25s ease;
}

.hs-menu-dugme span:nth-child(1) { top: 17px; }
.hs-menu-dugme span:nth-child(2) { top: 23px; width: 15px; }
.hs-menu-dugme span:nth-child(3) { top: 29px; }
.hs-menu-dugme:hover span:nth-child(2) { width: 21px; }

.hs-menu-dugme[aria-expanded="true"] { background: var(--turuncu); }
.hs-menu-dugme[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hs-menu-dugme[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hs-menu-dugme[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); width: 21px; }

/* --- Karartma örtüsü ----------------------------------------------------- */
.hs-cekmece-ortu {
	position: fixed;
	inset: 0;
	z-index: 1190;
	background: rgba(10, 11, 13, .5);
	backdrop-filter: blur(3px);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity .3s ease, visibility .3s ease;
}

.hs-cekmece-ortu.hs-acik { opacity: 1; visibility: visible; pointer-events: auto; }

/* --- Çekmece ------------------------------------------------------------- */
.hs-cekmece {
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: min(88vw, 360px);
	z-index: 1200;

	flex-direction: column;
	background: #fff;
	box-shadow: -20px 0 60px rgba(10, 11, 13, .25);

	transform: translateX(102%);
	visibility: hidden;
	pointer-events: none;
	transition: transform .34s cubic-bezier(.32, .72, 0, 1), visibility .34s;
}

@media (max-width: 991px) { .hs-cekmece { display: flex; } }

.hs-cekmece.hs-acik { transform: translateX(0); visibility: visible; pointer-events: auto; }

body.hs-cekmece-acik { overflow: hidden; }

/* Üst çubuk */
.hs-cekmece-ust {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: calc(14px + env(safe-area-inset-top, 0px)) 18px 14px;
	border-bottom: 1px solid var(--border);
}

.hs-cekmece-logo img { height: 42px; width: auto; display: block; }

.hs-cekmece-kapat {
	width: 44px;
	height: 44px;
	flex: 0 0 44px;
	border: 1px solid var(--border);
	border-radius: 12px;
	background: #fff;
	color: var(--siyah);
	font-size: 17px;
	display: grid;
	place-items: center;
	cursor: pointer;
	transition: background .2s ease, color .2s ease, border-color .2s ease;
	-webkit-tap-highlight-color: transparent;
}

.hs-cekmece-kapat:hover,
.hs-cekmece-kapat:focus-visible { background: var(--turuncu); border-color: var(--turuncu); color: #fff; }

/* Gövde — uzun menüde kendi içinde kayar */
.hs-cekmece-govde {
	flex: 1 1 auto;
	overflow-y: auto;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior: contain;
	padding: 8px 0;
}

.hs-cekmece-liste { list-style: none; margin: 0; padding: 0; }
.hs-cekmece-liste > li + li { border-top: 1px solid var(--gumus-acik); }

/* Ana satır — bağlantı ya da katlama düğmesi */
.hs-cekmece-satir {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	width: 100%;
	min-height: 58px;
	padding: 14px 20px;
	background: none;
	border: none;
	font-family: inherit;
	font-size: 16.5px;
	font-weight: 600;
	color: var(--siyah);
	text-align: left;
	cursor: pointer;
	transition: background .18s ease, color .18s ease;
	-webkit-tap-highlight-color: transparent;
}

.hs-cekmece-satir:hover,
.hs-cekmece-satir:focus-visible { background: var(--gumus-acik); color: var(--turuncu); }
.hs-cekmece-liste > li.hs-etkin > .hs-cekmece-satir { color: var(--turuncu); }

.hs-cekmece-satir > i {
	flex: 0 0 auto;
	font-size: 13px;
	color: var(--gumus-koyu);
	transition: transform .28s ease, color .2s ease;
}

.hs-cekmece-satir:hover > i { color: var(--turuncu); }
.hs-katlanir[aria-expanded="true"] { color: var(--turuncu); }
.hs-katlanir[aria-expanded="true"] > i { transform: rotate(180deg); color: var(--turuncu); }

/* Alt liste — akordeon */
.hs-cekmece-grup {
	list-style: none;
	margin: 0;
	padding: 0;
	max-height: 0;
	overflow: hidden;
	background: var(--gumus-acik);
	transition: max-height .3s cubic-bezier(.4, 0, .2, 1);
}

.hs-cekmece-grup.hs-acik { max-height: 480px; }

.hs-cekmece-alt {
	display: block;
	padding: 13px 20px 13px 34px;
	font-size: 15px;
	color: var(--text);
	position: relative;
	transition: color .18s ease, padding-left .18s ease;
}

.hs-cekmece-alt::before {
	content: "";
	position: absolute;
	left: 20px;
	top: 50%;
	width: 6px;
	height: 6px;
	margin-top: -3px;
	border-radius: 50%;
	background: var(--gumus);
	transition: background .18s ease;
}

.hs-cekmece-alt:hover { color: var(--turuncu); padding-left: 38px; }
.hs-cekmece-alt:hover::before { background: var(--turuncu); }
.hs-cekmece-grup > li.hs-etkin > .hs-cekmece-alt { color: var(--turuncu); font-weight: 600; }
.hs-cekmece-grup > li.hs-etkin > .hs-cekmece-alt::before { background: var(--turuncu); }

.hs-cekmece-alt.hs-tumu { font-weight: 600; color: var(--siyah); }
.hs-cekmece-alt.hs-tumu::before { background: var(--turuncu); }

/* Alt bilgi */
.hs-cekmece-alt-bilgi {
	flex: 0 0 auto;
	padding: 16px 20px calc(18px + env(safe-area-inset-bottom, 0px));
	border-top: 1px solid var(--border);
	background: #fff;
}

.hs-cekmece-tel {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 18px;
	border-radius: 12px;
	background: var(--turuncu);
	color: #fff;
	font-size: 15.5px;
	font-weight: 700;
	transition: background .2s ease;
}

.hs-cekmece-tel:hover { background: var(--turuncu-koyu); color: #fff; }

.hs-cekmece-sosyal { display: flex; justify-content: center; gap: 10px; margin-top: 14px; }

.hs-cekmece-sosyal a {
	width: 42px;
	height: 42px;
	border-radius: 12px;
	border: 1px solid var(--border);
	display: grid;
	place-items: center;
	color: var(--siyah);
	font-size: 15px;
	transition: all .2s ease;
}

.hs-cekmece-sosyal a:hover { background: var(--siyah); border-color: var(--siyah); color: #fff; }

/* Hareketi azaltmayı seçen ziyaretçilerde geçiş yok */
@media (prefers-reduced-motion: reduce) {
	.hs-cekmece, .hs-cekmece-ortu, .hs-cekmece-grup { transition: none; }
}

/* --------------------------------------------------------------------------
   2. Açılır arama katmanı
   -------------------------------------------------------------------------- */

.hs-arama-katmani {
	position: fixed;
	inset: 0;
	z-index: 1100;
	background: rgba(18, 18, 18, .93);
	backdrop-filter: blur(8px);
	display: grid;
	place-items: center;
	opacity: 0;
	visibility: hidden;
	/* Kapalıyken dokunma almaz — ekranı kaplayan katman parmağı yutmasın */
	pointer-events: none;
	transition: opacity .3s ease, visibility .3s ease;
}

.hs-arama-katmani.hs-acik { opacity: 1; visibility: visible; pointer-events: auto; }

.hs-arama-katmani form { width: min(720px, 90vw); }
.hs-arama-katmani label { display: block; color: var(--turuncu); font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }

.hs-arama-katmani .hs-arama-satir { display: flex; align-items: center; gap: 14px; border-bottom: 2px solid rgba(255, 255, 255, .25); padding-bottom: 14px; }

.hs-arama-katmani input {
	flex: 1;
	background: transparent;
	border: none;
	color: #fff;
	font-size: clamp(20px, 3vw, 32px);
	font-weight: 500;
	padding: 0;
}

.hs-arama-katmani input::placeholder { color: rgba(255, 255, 255, .35); }
.hs-arama-katmani input:focus { outline: none; }
.hs-arama-katmani button[type="submit"] { background: none; border: none; color: var(--turuncu); font-size: 24px; }
.hs-arama-katmani p { color: rgba(255, 255, 255, .45); font-size: 14px; margin: 16px 0 0; }

.hs-arama-kapat {
	position: absolute;
	top: 32px;
	right: 32px;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, .2);
	background: transparent;
	color: #fff;
	font-size: 18px;
	transition: all .25s ease;
}

.hs-arama-kapat:hover { background: var(--turuncu); border-color: var(--turuncu); transform: rotate(90deg); }


/* --------------------------------------------------------------------------
   5. Sayfa başlığı
   -------------------------------------------------------------------------- */

.hs-sayfa-basi {
	position: relative;
	background: var(--siyah);
	background-size: cover;
	background-position: center;
	padding: 92px 0 84px;
	overflow: hidden;
}

/* Arka plan görseli OLMAYAN başlıklarda koyu perde ve turuncu ışık kalır. */
.hs-sayfa-basi:not(.hs-gorselli)::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(760px 420px at 78% 12%, rgba(242, 101, 34, .22) 0%, transparent 62%),
		linear-gradient(112deg, rgba(18, 18, 18, .96) 0%, rgba(18, 18, 18, .84) 52%, rgba(18, 18, 18, .68) 100%);
}

/* İnce doku */
.hs-sayfa-basi:not(.hs-gorselli)::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image: linear-gradient(rgba(255, 255, 255, .028) 1px, transparent 1px);
	background-size: 100% 7px;
	pointer-events: none;
}

.hs-sayfa-basi .hs-kapsayici { position: relative; z-index: 2; }

.hs-yol {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	list-style: none;
	margin: 0 0 20px;
	padding: 8px 16px;
	font-size: 13px;
	background: rgba(255, 255, 255, .07);
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 30px;
	backdrop-filter: blur(6px);
}

.hs-yol li { color: rgba(255, 255, 255, .62); }
.hs-yol li a { color: rgba(255, 255, 255, .82); }
.hs-yol li a:hover { color: var(--turuncu); }
.hs-yol li + li::before { content: "\f105"; font-family: "Font Awesome 5 Pro"; font-weight: 700; margin-right: 8px; color: rgba(255, 255, 255, .3); }
.hs-yol li[aria-current] { color: var(--turuncu); font-weight: 500; }

.hs-sayfa-basi h1 {
	font-size: clamp(30px, 4vw, 52px);
	font-weight: 700;
	color: #fff;
	margin: 0;
	letter-spacing: -0.025em;
	line-height: 1.1;
	max-width: 900px;
}

.hs-sayfa-basi p {
	color: rgba(255, 255, 255, .68);
	font-size: 16.5px;
	margin: 16px 0 0;
	max-width: 660px;
	line-height: 1.75;
}

@media (max-width: 767px) {
	.hs-sayfa-basi { padding: 56px 0 52px; }
}

/* --------------------------------------------------------------------------
   Arka plan görselli sayfa başlığı
   Görsel tam olarak görünsün diye üzerine perde çekilmez; okunabilirlik
   yalnızca yazının kendi gölgesiyle sağlanır.
   -------------------------------------------------------------------------- */

.hs-sayfa-basi.hs-gorselli {
	padding: 132px 0 118px;
	background-attachment: scroll;
}

/* Yazının oturduğu dar alanda çok yumuşak bir koyulaşma — görseli
   kapatmaz, harflerin kenarını taşıyıcı zeminden ayırır. */
.hs-sayfa-basi.hs-gorselli::before {
	content: "";
	position: absolute;
	inset: auto 0 0 0;
	height: 72%;
	background: linear-gradient(to top, rgba(12, 13, 15, .55) 0%, rgba(12, 13, 15, .18) 45%, transparent 100%);
	pointer-events: none;
}

.hs-sayfa-basi.hs-gorselli h1 {
	text-shadow:
		0 2px 4px rgba(0, 0, 0, .55),
		0 6px 22px rgba(0, 0, 0, .45);
}

.hs-sayfa-basi.hs-gorselli p {
	color: rgba(255, 255, 255, .92);
	text-shadow:
		0 1px 3px rgba(0, 0, 0, .6),
		0 4px 16px rgba(0, 0, 0, .4);
}

.hs-sayfa-basi.hs-gorselli .hs-yol {
	background: rgba(12, 13, 15, .38);
	border-color: rgba(255, 255, 255, .16);
	text-shadow: 0 1px 3px rgba(0, 0, 0, .55);
}

.hs-sayfa-basi.hs-gorselli .hs-yol li,
.hs-sayfa-basi.hs-gorselli .hs-yol li a { color: rgba(255, 255, 255, .9); }

@media (max-width: 767px) {
	.hs-sayfa-basi.hs-gorselli { padding: 84px 0 72px; }
}
/* --------------------------------------------------------------------------
   Ek marka simgeleri
   Font Awesome 5.14 sürümünde X ve Threads glifleri bulunmadığı için bu iki
   simge, metin rengini devralan CSS maskesiyle çizilir. Kullanımı ikon
   yazı tipiyle aynıdır: <i class="hs-simge hs-simge-x"></i>
   -------------------------------------------------------------------------- */

.hs-simge {
	display: inline-block;
	width: 1em;
	height: 1em;
	vertical-align: -0.125em;
	background-color: currentColor;
	-webkit-mask: var(--hs-simge) no-repeat center / contain;
	mask: var(--hs-simge) no-repeat center / contain;
}

.hs-simge-x {
	--hs-simge: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18.901 1.153h3.68l-8.04 9.19L24 22.846h-7.406l-5.8-7.584-6.638 7.584H.474l8.6-9.83L0 1.154h7.594l5.243 6.932ZM17.61 20.644h2.039L6.486 3.24H4.298Z'/%3E%3C/svg%3E");
}

.hs-simge-threads {
	--hs-simge: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12.186 24h-.007c-3.581-.024-6.334-1.205-8.184-3.509C2.35 18.44 1.5 15.586 1.472 12.01v-.017c.03-3.579.879-6.43 2.525-8.482C5.845 1.205 8.6.024 12.18 0h.014c2.746.02 5.043.725 6.826 2.098 1.677 1.29 2.858 3.13 3.509 5.467l-2.04.569c-1.104-3.96-3.898-5.984-8.304-6.015-2.91.022-5.11.936-6.54 2.717C4.307 6.504 3.616 8.914 3.589 12c.027 3.086.718 5.496 2.057 7.164 1.43 1.783 3.631 2.698 6.54 2.717 2.623-.02 4.358-.631 5.8-2.045 1.647-1.613 1.618-3.593 1.09-4.798-.31-.71-.873-1.3-1.634-1.75-.192 1.352-.622 2.446-1.284 3.272-.886 1.102-2.14 1.704-3.73 1.79-1.202.065-2.361-.218-3.259-.801-1.063-.689-1.685-1.74-1.752-2.964-.065-1.19.408-2.285 1.33-3.082.88-.76 2.119-1.207 3.583-1.291a13.853 13.853 0 0 1 3.02.142c-.128-.812-.393-1.442-.792-1.86-.552-.577-1.405-.87-2.535-.878h-.033c-.909 0-2.142.25-2.929 1.417L5.42 7.941c1.055-1.566 2.766-2.428 4.823-2.428h.048c3.443.021 5.493 2.132 5.697 5.821.116.05.232.101.346.155 1.614.759 2.793 1.907 3.409 3.32.859 1.968.939 5.176-1.669 7.723-1.994 1.947-4.415 2.83-7.883 2.868Zm1.535-11.271c-.226 0-.454.007-.686.02-1.835.104-2.979.946-2.911 2.148.071 1.26 1.462 1.844 2.8 1.772 1.23-.066 2.83-.545 3.099-3.7a10.5 10.5 0 0 0-2.302-.24Z'/%3E%3C/svg%3E");
}

/* Açık olan alt menü maddesi (masaüstü açılır menü) */
.hs-alt-menu > li.hs-etkin > a { color: var(--turuncu); font-weight: 600; }
