:root{
	--doga-turuncu: #FF6501;
	--doga-yesil: #41983A;

	--doga-white: #fff;
	--doga-black: #111;
	--doga-radius: 16px;
	--doga-shadow: 0 10px 24px rgba(0,0,0,.08);
	--doga-focus: 0 0 0 4px rgba(29,78,216,.18);


	--doga-koyu-gri: #333333;
	--doga-gri: #686868;
	--doga-acik-gri: #e8e8e8;
	--doga-acik-gri-2: #f9f9f9;
	--doga-acik-gri-3 :#f0f0f0;
	--doga-mavi: #1D4ED8;
	--doga-sari: #ffb700;

	--doga-input-height: 50px; /* Sabit yükseklik */
}

body, p {
	color: #595959 !important;
	line-height: 1.5 !important;
	font-size: 16px !important;
	letter-spacing: 0 !important;
}

a {
	font-weight: normal;
	line-height: 1;
	transition: color 0.2s;
}

a:hover {
	color: #ff6f00;
}

label.doga-form-check-label {
	margin-bottom: 0px !important;
	margin-top: 0px;
	line-height: 115%;
}

/* GENEL VE CONTAINER */
.doga-header-top {
	background-color: #f7f7f7;
	border-bottom: 1px solid var(--doga-acik-gri);
	font-size: 12px;
	color: #6c757d;
}

.doga-header-top__container,
.doga-header-main__container {
	margin: 0 auto;
	padding: 0 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.doga-header-top__container {
	height: 30px;
	width: 100%;
	padding: 0px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	position: relative;
}

.doga-header-top__info {
	font-size: 10px;
}

/* HEADER TOP DİL SEÇENEĞİ */
.doga-header-top__language {
	position: relative;
}

.doga-language-toggle {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: inherit;
	padding: 4px 8px;
	flex-direction: row;
	align-content: center;
	justify-content: center;
	line-height: 1;
	gap: 7px;
}

.doga-language-icon {
	width: 18px;
	height: 18px;
}


/* DİL MENÜSÜ DROPDOWN STİLİ */
.doga-language-dropdown {
	/* Başlangıçta gizli tut */
	display: none;

	/* Pozisyonlama: Tıklanan öğeye göre kesin konumlandırma */
	position: absolute;
	top: 100%;
	right: 0;

	/* Titreme riskini sıfırlamak için kritik! */
	margin-top: -1px;
	/* Menüyü 1 piksel yukarı çekerek boşluğu kapatır */

	/* ... Diğer stiller (border, background, radius) ... */
	background-color: white;
	border: 2px solid var(--doga-acik-gri);
	border-radius: 16px;
	padding: 0;
	list-style: none;
	min-width: 150px;
	z-index: 1000;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.doga-dropdown-item {
	border-bottom: 1px solid var(--doga-acik-gri);
}

.doga-dropdown-item:last-child {
	border-bottom: none;
}

.doga-dropdown-item a {
	display: flex;
	align-items: center;
	padding: 8px 16px;
	text-decoration: none;
	color: var(--doga-koyu-gri);
	width: 100%;
	transition: background-color 0.2s;
}

.doga-dropdown-item a:hover {
	background-color: #f0f0f0;
}

.doga-dropdown-item img {
	width: 20px;
	height: 20px;
	margin-right: 8px;
}

/* HEADER MIDDLE CONTAINER VE YAPISI */
.doga-header-middle {
	background-color: white;
	padding: 20px 0;
}

.doga-header-middle__container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}


.doga-header-middle__logo-area {
	display: flex;
	align-items: center;
	gap: 22px;
}

.doga-logo {
	height: 74px;
}

.line-vertical {
	height: 50px;
	width: 2px;
	background-color: var(--doga-acik-gri);
	display: block;
}

.line-vertical-1 {
	height: 26px;
}

.doga-logo-text {
	display: flex;
	flex-direction: column;
	font-size: 12px;
	line-height: 1.3;
	color: var(--doga-gri);
	font-weight: 400;
}

.doga-logo-text__line1 {
	font-weight: 400;
}


.doga-header-middle__actions {
	display: flex;
	align-items: center;
	gap: 14px;
}

/* TELEFON NUMARASI */
.doga-phone {
	text-decoration: none;
	font-size: 16px;
	font-weight: 400;
	color: var(--doga-gri);
	transition: color 0.2s;
	display: flex;
	flex-direction: row;
	align-content: center;
	justify-content: center;
	align-items: center;
	gap: 7px;
	padding: 10px 8px 10px 8px;
}

.doga-phone:hover {
	color: #ff6f00;
	/* Vurgu rengi */
}

/* AUTH BUTON GRUBU */
.doga-auth-buttons {
	display: flex;
	align-items: center;
	padding: 0;
}

.doga-auth-button {
	display: flex;
	align-items: center;
	text-decoration: none;
	padding: 10px 15px;
	color: var(--doga-gri);
	font-size: 16px;
	font-weight: 500;
}

.doga-auth-button i {
	font-size: 18px;
	margin-right: 5px;
}

/* Dikey Ayırıcı Çizgi */
.doga-auth-button--login {
	border-right: 2px solid var(--doga-acik-gri);
	border-left: 2px solid var(--doga-acik-gri);
}

a.doga-auth-button.doga-auth-button--register {
	padding-right: 0px;
}

/* HESAP MENÜSÜ GENEL YAPISI */
.doga-user-menu {
	position: relative;
	/* Dropdown'ı pozisyonlamak için */

}

/* HESAP MENÜSÜ TETİKLEYİCİSİ */
.doga-user-menu-toggle {
	display: flex;
	align-items: center;
	text-decoration: none;
	padding: 10px 8px 10px 8px;
	color: var(--doga-gri);
	font-size: 16px;
	font-weight: 400;
	gap: 7px;
}

.doga-user-menu-toggle i,
.doga-phone i {
	font-size: 18px;
}

.doga-user-menu-toggle i.doga-dropdown-arrow {
	font-size: 14px;
}

/* DROPDOWN KUTUSUNUN STİLİ (Dil menüsü ile aynı) */
.doga-user-dropdown {
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	background-color: white;
	border: 2px solid var(--doga-acik-gri);
	border-radius: 16px;
	padding: 0px 0;
	list-style: none;
	margin: -1px 0 0 0;
	min-width: 200px;
	z-index: 1000;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

/* İtem ve Ayırıcı Stilleri (doga-dropdown-item için zaten tanımlı) */
.doga-user-dropdown .doga-dropdown-item {
	border-bottom: 1px solid var(--doga-acik-gri);
}

.doga-user-dropdown .doga-dropdown-item:last-child {
	border-bottom: none;
}

.doga-user-dropdown .doga-dropdown-item a {
	display: flex;
	align-items: center;
	padding: 12px 16px;
	text-decoration: none;
	color: var(--doga-gri);
	width: 100%;
	line-height: 1;
	gap: 10px;
	font-size: 15px;
	font-weight: normal;
}

.user-menu-line {
	display: none;
}

.doga-header-bottom {
	display: inline-block;
	width: 100%;
	margin-bottom: 0px;
}

.doga-menu-container {
	display: flex;
	align-items: center;
	gap: 15px;
}

/* Sol Turuncu Buton */
.doga-mega-menu-btn {
	background-color: var(--doga-turuncu);
	color: white;
	padding: 12px 20px;
	border-radius: 16px;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	white-space: nowrap;
	font-size: 14px;
	height: 50px;
	line-height: 50px;
	width: 100%;
	flex-direction: row;
	align-content: center;
	justify-content: space-between;
}

/* Sağ Gri Bar */
.doga-nav-bar {
	background-color: var(--doga-acik-gri);
	flex-grow: 1;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 4px 20px;
	border-radius: 16px;
}

.doga-nav-links {
	list-style: none;
	display: flex;
	gap: 25px;
	margin: 0;
	padding: 0;
	color: #444;
	font-weight: 500;
}

.doga-nav-links li.doga-has-sub,
.doga-nav-links li {
	display: flex;
	align-items: center;
	gap: 5px;
	cursor: pointer;
	font-size: 14px;
}

.doga-nav-links li.doga-has-sub>a,
.doga-nav-links li>a {
	color: var(--doga-gri);
	font-weight: 500;
	display: flex;
	flex-direction: row;
	align-content: center;
	justify-content: space-between;
	align-items: center;
	gap: 6px;
	padding: 14px 0;
}

.doga-nav-links li.doga-has-sub>a:hover,
.doga-nav-links li>a:hover {
	color: var(--doga-turuncu);
}

/* Alt menü için ana li pozisyonu */
.doga-has-sub {
	position: relative;
}

/* Sub Menu Genel Konumlandırma */
.doga-sub-menu {
	position: absolute;
	top: 100%;
	/* Menünün tam altından başlar */
	left: 0;
	padding-top: 15px;
	/* Mouse geçerken kopma olmaması için */
	display: none;
	/* Varsayılan olarak gizli */
	z-index: 100;
	width: auto;
}

/* Hover durumunda göster */
.doga-has-sub:hover .doga-sub-menu {
	display: block;
}

/* Sub Menu İçerik Kutusu */
.doga-sub-container {
	background: #F5F5F5;
	/* Görseldeki açık gri arka plan */
	border-radius: 16px;
	padding: 15px;
	display: flex;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	white-space: nowrap;
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
}

/* Görseldeki o küçük beyaz ok (indicator) */
.doga-sub-container::before {
	content: "";
	position: absolute;
	top: -8px;
	left: 30px;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-bottom: 8px solid #F5F5F5;
}

/* Aktivite Kartları */
.doga-sub-card {
	background: #FFFFFF;
	border-radius: 12px;
	display: flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	min-width: 180px;
	transition: transform 0.2s;
	border: 1px solid transparent;
	padding: 10px !important;
	text-wrap: auto;
}

.doga-sub-card:hover {
	transform: translateY(-2px);
	border-color: var(--doga-turuncu);
}

.doga-sub-line {
	height: 60%;
	position: relative;
	width: 2px;
	background-color: var(--doga-acik-gri);
	display: none
}


/* Kart İçindeki İkon Alanı */
.doga-sub-icon {
	width: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 6px;
	background-color: var(--doga-acik-gri-2);
	border: 1px solid var(--doga-acik-gri);
	border-radius: 8px;
}

.doga-sub-icon img {

	width: 40px;
	max-width: 40px;
}

/* Yazı Alanları */
.doga-sub-content {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.doga-sub-title {
	color: var(--doga-gri);
	font-weight: 700;
	font-size: 14px;

}

.doga-sub-card:hover .doga-sub-title {
	color: var(--doga-turuncu);
}

.doga-sub-city {
	color: var(--doga-gri);
	font-size: 12px;
	opacity: 60%;
}

.doga-sub-card:hover .doga-sub-city {
	color: var(--doga-turuncu);
}

/* Standart Dropdown Konteynırı */
.doga-standard-container {
	background: #FFFFFF;
	/* Temiz beyaz arka plan */
	border-radius: 12px;
	padding: 10px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	list-style: none;
	margin: 0;
	min-width: 250px;
	border: 1px solid #EEE;
	position: relative;
}

/* Küçük Ok İşareti (Beyaz) */
.doga-standard-container::before {
	content: "";
	position: absolute;
	top: -8px;
	left: 20px;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-bottom: 8px solid #FFFFFF;
}

.doga-standard-container li {
	margin-bottom: 5px;
	width: 100%;
}

.doga-standard-container li:last-child {
	margin-bottom: 0;
}

.doga-standard-container li a {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 15px;
	border-radius: 8px;
	text-decoration: none;
	color: #444;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.2s ease;
	width: 100%;
	flex-direction: row;
	justify-content: flex-start;
}

/* Hover Efekti */
.doga-standard-container li a:hover {
	background-color: #F5F5F5;
	color: var(--doga-turuncu);
}

/* Tabler Icons Boyutlandırma */
.doga-standard-container li a i {
	font-size: 20px;
	color: var(--doga-turuncu);
	/* İkonlar markanın turuncusunda olsun */
}

.doga-standard-sub .doga-sub-menu {
	left: 0;
	transform: translateX(-10px);
	/* İstersen biraz sola kaydırıp oku ortalayabilirsin */
}

/* Puanlama Alanı */
.doga-rating-badge {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-direction: row;
	align-content: center;
	justify-content: center;
}

.doga-rating-score {
	background-color: #2563EB;
	color: white;
	padding: 0px 12px;
	border-radius: 8px;
	font-weight: bold;
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 10px;
}

.doga-rating-star {
	color: var(--doga-sari);
	font-size: 16px;
}

span.doga-rating-number {
	font-size: 17px;
	font-weight: 500;
}

.doga-rating-text {
	display: flex;
	flex-direction: column;
	line-height: 1.3;
}

.doga-rating-title {
	color: #2563EB;
	font-weight: bold;
	font-size: 14px;
}

.doga-rating-count {
	color: #888;
	font-size: 9px;
}


.doga-mobile-trigger {
	display: none;
	flex-direction: row;
	align-content: center;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	font-weight: 500;
	gap: 6px;
}

.doga-mobile-trigger i {
	font-size: 20px;
}

.doga-mobile-menu-wrapper {
	display: flex;
	width: 100%;
	flex-direction: row;
	align-content: center;
	justify-content: space-between;
	align-items: center;
}

.doga-sub-mobile-close {
	display: none;
}

.swal-overlay{
	z-index: 99999 !important;
}

.doga-user-menu-toggle span {
	display: flex;
	flex-direction: column;
	align-content: flex-start;
	justify-content: center;
	align-items: flex-start;
}

.doga-user-menu-toggle small {
	font-size: 10px;
	margin-top: 4px;
	color: var(--doga-turuncu);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	width: 70px;
}

/* Ana kapsayıcıyı hizala */
.doga-user-menu-toggle {
	display: flex;
	align-items: center;
	gap: 10px; /* Avatar ile yazı arasındaki boşluk */
	text-decoration: none;
	color: #333; /* Varsayılan renk */
}

/* Avatar Yuvarlağı */
.doga-avatar {
	width: 40px;  /* Boyutu buradan ayarlayabilirsin */
	height: 40px;
	border-radius: 50%;
	overflow: hidden; /* Resim taşmasın */
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0; /* Dar alanda sıkışmayı önler */
	border: 2px solid #eee; /* İnce bir çerçeve şık durur */
	transition: all 0.3s ease;
}

/* Resim Varsa */
.doga-avatar.has-img img {
	width: 100%;
	height: 100%;
	object-fit: cover; /* Resmi bozmadan ortalar */
}

/* Resim Yoksa (Baş Harfler) */
.doga-avatar.no-img {
	background-color: #ff6b00; /* Sitenin ana rengi (Turuncu) */
	color: #fff;
	font-weight: 600;
	font-size: 14px; /* Harf boyutu */
	text-transform: uppercase;
}

/* Yazı Alanı Düzenlemesi */
.doga-user-info {
	display: flex;
	flex-direction: column;
	line-height: 1.2;
}

/* İsim Soyisim Kısmı (Turuncu olan yer) */
.doga-user-info small {
	color: var(--doga-gri);
	font-weight: 600;
	font-size: 0.85em;
	text-transform: uppercase;
}

/* Hover Efekti (Opsiyonel) */
.doga-user-menu-toggle:hover .doga-avatar {
	border-color: #ff6b00;
}

.doga-mobile-slogan{
	display: none;
}

.error-list {
	position: absolute;
	right: 0px;
	top: 0px;
	width: auto !important;
	font-size: 10px;
	background-color: #D95C5C;
	/* color: #ffffff; */
	-webkit-border-top-right-radius: 12px;
	-webkit-border-bottom-left-radius: 12px;
	-moz-border-radius-topright: 12px;
	-moz-border-radius-bottomleft: 12px;
	border-top-right-radius: 12px;
	border-bottom-left-radius: 12px;
}

div.error-list ul li {
	list-style-type: none;
	padding: 0px 10px;
	width: 100%;
	font-size: 10px;
	color: #ffffff;
	font-weight: 400;
	/* -webkit-border-top-right-radius: 12px; */
	/* -webkit-border-bottom-left-radius: 12px; */
	-moz-border-radius-topright: 12px;
	-moz-border-radius-bottomleft: 12px;
	/* border-top-right-radius: 12px; */
	/* border-bottom-left-radius: 12px; */
	letter-spacing: 0.4px;
}


@media (max-width: 1199.98px) {
	.doga-phone span {
		display: none;
	}
	.doga-user-menu-toggle i, .doga-phone i  {
		font-size: 24px;
	}

	.doga-header-middle__actions{
		gap:8px;
	}

}

/* 992 */
@media (max-width: 991.98px) {

	.doga-user-menu-toggle>.doga-dropdown-arrow, .doga-user-menu-toggle span, .doga-header-top__info {
		display: none;
	}

	.doga-phone span {
		display: none;
	}

	.doga-user-menu-toggle i, a.doga-phone i {
		font-size: 28px;
		color: var(--doga-turuncu);
	}

	.doga-has-sub:hover .doga-sub-menu {
		display: none;
	}

	.doga-standard-sub .doga-sub-menu {
		left: 0;
		transform: translateX(0px);
		/* İstersen biraz sola kaydırıp oku ortalayabilirsin */
	}

	.doga-mobile-trigger {
		display: flex;
	}

	/* Ana kapsayıcıyı referans noktası yapıyoruz */
	.doga-menu-container {
		position: relative;
	}

	.doga-nav-bar {
		position: relative;
		/* Tetikleyici ve menü için referans */
		display: flex;
		justify-content: flex-end;
		align-items: center;
		min-height: 50px;
	}


	.doga-mobile-menu-wrapper {
		position: absolute;
		top: 100%;
		/* width ve left jQuery tarafından atanacak */
		background: #F2F2F2;
		border-radius: 20px;
		padding: 20px;

		z-index: 9999;
		margin-top: 10px;
		display: none;
		overflow: hidden;
	}

	/* Menü başlığı ve Kapat ikonu alanı (Görseldeki Menü X kısmı) */
	.doga-mobile-menu-header {
		display: flex;
		justify-content: flex-end;
		align-items: center;
		gap: 10px;
		margin-bottom: 15px;
		color: #666;
		font-weight: bold;
	}

	/* Listeler dikey ve temiz */
	.doga-nav-links {
		display: flex !important;
		flex-direction: column;
		gap: 0;
	}

	.doga-nav-links li {
		display: inline-block !important;
		width: 100%;
	}

	.doga-nav-links li:last-child {
		border-bottom: none;
	}

	.doga-nav-links li a {
		font-size: 15px;
		display: flex !important;
		width: 100%;
	}

	/* Sub-menu artık yanına değil, altına açılır */
	.doga-sub-menu {
		position: relative !important;
		width: 100% !important;
		left: 0 !important;
		margin-top: 0px;
		background: transparent;
		border-radius: 16px;
		display: none;
		padding: 0px;
	}

	/* Maksimum yükseklik ve Scroll ayarı */
	.doga-sub-container {

		max-height: 320px;
		overflow: hidden;
		overflow-y: auto;
		padding: 0 !important;
		display: grid !important;
		flex-direction: row;
		gap: 8px !important;
		width: 100% !important;
		background-color: transparent !important;
		grid-template-columns: repeat(3, 1fr);
		box-shadow: none;
		margin-top: 6px;
		margin-bottom: 12px;
	}

	/* Sub-menu Kapatma Butonu Tasarımı */
	.doga-sub-mobile-close {
		position: absolute;
		top: -37px;
		right: -7px;
		z-index: 10;
		background: #686868;
		width: 30px;
		height: 30px;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 50%;
		cursor: pointer;
		color: #ffffff;
	}

	/* Scroll barı biraz daha estetik yapalım */
	.doga-sub-container::-webkit-scrollbar {
		width: 4px;
	}

	.doga-sub-container::-webkit-scrollbar-thumb {
		background: #ccc;
		border-radius: 10px;
	}

	/* Puanlama Kartı Overlay içinde en altta */
	.doga-rating-badge {
		display: flex !important;
		background: #2563EB;
		/* Mavi arka plan */
		padding: 12px;
		border-radius: 12px;
		margin-top: 20px;
		color: white;
	}

	.doga-rating-title,
	.doga-rating-count {
		color: white !important;
	}

	.doga-standard-container {
		box-shadow: none;
	}

	.doga-standard-container::before {
		display: none;
	}


}

/* 992 */

/* 767 */
@media (max-width: 767px) {
	.doga-logo {
		height: 44px;
	}



	.doga-logo-text {
		font-size: 10px;
	}

	.line-vertical {
		height: 34px;
	}

	.doga-header-middle__logo-area {
		gap: 16px;
	}

	.doga-header-middle__actions {
		gap: 8px;
	}



	.doga-sub-container {
		max-height: auto;
		grid-template-columns: repeat(2, 1fr);

	}

}

/* 767 */

/* 576 */
@media (max-width: 575.98px) {

	.doga-logo-text, .doga-logo-text-line{
		display: none;
	}

	.doga-header-top__container{
		height: auto;
	}

	.doga-mobile-slogan {
		display: inline;
		line-height: 130%;
		padding: 8px 0px;
	}

	.doga-user-menu-toggle>.doga-dropdown-arrow,
	.doga-user-menu-toggle span,
	.doga-header-top__info {
		display: none;
	}

	.doga-header-middle__logo-area {
		gap: 8px;
	}

	.doga-logo-text {
		font-size: 8px;
	}

	.line-vertical {
		height: 20px;
	}

	.doga-logo {
		height: 60px;
	}

	a.doga-phone i,
	a.doga-user-menu-toggle i {
		font-size: 26px;
		color: var(--doga-turuncu);
	}

	.user-menu-line {
		display: block;
	}

	.doga-header-middle__actions {
		gap: 4px;
	}

	.doga-sub-container {

		grid-template-columns: repeat(1, 1fr);
	}

	.doga-mega-menu-btn{
		padding: 12px 14px;
		width: 100%;
	}
	.doga-menu-container{
		gap: 6px;
	}

	.doga-nav-bar {
		justify-content: center;
		align-items: center;
		max-width: 110px;
		align-content: center;
	}
}

/* --- TEMEL AÇILIR MENÜ YAPISI --- */
.doga-mega-menu-container {
	position: relative;
	display: inline-block;
}

.doga-mega-menu-container::after {
	content: "";
	position: absolute;
	bottom: -15px;
	left: 30px;
	border-width: 10px;
	border-style: solid;
	border-color: transparent transparent #ffffff transparent;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 1001;
}

.doga-mega-menu-container::before {
	content: "";
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 20px;
	display: none;
	z-index: 998;
}

.doga-mega-menu-container:hover .doga-dropdown-arrow {
	transform: rotate(180deg);
}

.doga-mega-menu-container:hover::after {
	opacity: 1;
	visibility: visible;
	bottom: -10px;
}

.doga-mega-menu-container:hover::before {
	display: block;
}

/* --- ANA PANEL --- */
.doga-mega-dropdown-panel {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	top: 100%;
	left: 0;
	width: auto;
	background: #fff;
	border-radius: 15px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
	margin-top: 10px;
	padding: 0;
	z-index: 1000;
	transition: all 0.28s cubic-bezier(0.165, 0.84, 0.44, 1);
	pointer-events: none;
	display: flex;
	gap: 0; /* Sol menü ile flyout arası boşluk buradaydı, kaldırdım */
	align-items: stretch;
	overflow: hidden; /* Taşmaları engelle */
}

.doga-mega-menu-container:hover .doga-mega-dropdown-panel {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
}

.doga-mega-dropdown-panel.is-flyout-open {
	width: 1110px;
	max-width: calc(100vw - 40px);
}

/* --- SOL MENÜ --- */
.doga-mega-left {
	width: 295px;
	flex: 0 0 295px;
	background: #fff;
	padding: 10px 0;
	display: flex;
	flex-direction: column;
	z-index: 2; /* Sağ tarafın üstünde kalsın */
}

.doga-mega-item {
	display: flex;
	align-items: center;
	padding: 15px 20px 15px 16px;
	text-decoration: none;
	color: #333;
	border-left: 5px solid transparent;
	transition: all 0.2s ease;
	gap: 10px;
	cursor: pointer;
}

.doga-mega-item.active,
.doga-mega-item:hover {
	background-color: #fff9f5;
	border-left-color: #ff6600;
}

.doga-mega-icon {
	font-size: 26px;
	color: var(--doga-turuncu, #ff6600);
	display: flex;
	align-items: center;
	width: 30px;
	justify-content: center;
}

.doga-mega-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.doga-mega-title {
	font-weight: 600;
	font-size: 14px;
	color: #444;
	line-height: 1.3;
}

.doga-mega-desc {
	font-size: 11px;
	color: #999;
	line-height: 1.34;
}

.doga-mega-arrow {
	color: #ddd;
	font-size: 14px;
}

.doga-mega-item.active .doga-mega-title,
.doga-mega-item:hover .doga-mega-title {
	color: #ff6600;
}

.doga-mega-item.active .doga-mega-icon,
.doga-mega-item:hover .doga-mega-icon,
.doga-mega-item:hover .doga-mega-arrow {
	color: #ff6600;
}

/* --- SAĞ AÇILIR ALAN (FLYOUT) --- */
.doga-mega-flyout {
	flex: 1;
	background: #FBE7DD;
	padding: 20px;
	display: none;
	opacity: 0;
	transform: translateX(10px);
	transition: opacity 0.3s ease, transform 0.3s ease;
	border-left: 1px solid #f0f0f0;
}

.doga-mega-dropdown-panel.is-flyout-open .doga-mega-flyout {
	display: block;
	opacity: 1;
	transform: translateX(0);
}

.doga-mega-flyout-inner-wrap {
	display: flex;
	flex-direction: column;
	gap: 20px;
	height: 100%;
}

/* --- TABLAR --- */
.doga-mega-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.doga-mega-tab {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 16px;
	border-radius: 20px;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, .08);
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
	color: #686868;
	transition: .2s ease;
}

.doga-mega-tab:hover {
	border-color: rgba(255, 101, 1, .35);
	color: #FF6501;
}

.doga-mega-tab.active {
	background: #FF6501;
	border-color: #FF6501;
	color: #fff;
}

/* --- KUTU YERLEŞİMİ (GRID SİSTEMİ) --- */
/* Burası en kritik kısım: Kutuları yan yana dizer */
.doga-mega-wrapper {
	display: grid;
	grid-template-columns: repeat(2, 1fr); /* Her satırda 2 kutu */
	gap: 20px; /* Kutular arası boşluk */
	align-items: start; /* Kutuları yukarı yasla */
}

/* Tekil Kutu */
.doga-mega-box {
	background: #fff;
	border-radius: 12px;
	padding: 20px;
	height: 100%; /* Kutu yüksekliğini eşitle */
	box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}


.doga-mega-box-head {
	display: flex;
	justify-content: flex-start;
	align-items: start;
	margin-bottom: 15px;
	border-bottom: 1px solid #f5f5f5;
	padding-bottom: 10px;
	flex-direction: column;
	gap: 0px;
}




.doga-mega-box-title {
	font-weight: 700;
	font-size: 15px;
	color: #FF6501;
}

.doga-mega-box-sub {
	font-size: 12px;
	color: #999;
}

.doga-mega-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

/* --- KART TASARIMI --- */
.doga-mega-card {
	border: 1px solid #eee;
	border-radius: 8px;
	padding: 12px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: .2s ease;
	text-decoration: none;
	color: inherit;
	background: #fff;
}

.doga-mega-card:hover {
	border-color: #FF6501;
	background-color: #fff9f5;
}

.doga-mega-card.is-featured {
	border-left: 4px solid #FF6501;
}

.doga-mega-card .meta {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 0; /* Flex içinde taşmayı önler */
}

.doga-mega-card .meta .title {
	font-weight: 600;
	font-size: 14px;
	color: #333;
}

.doga-mega-card .meta .sub {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	font-size: 11px;
	color: #777;
}

.doga-mega-card .meta .sub span {
	display: flex;
	align-items: center;
	gap: 4px;
}

.doga-mega-card .price {
	text-align: right;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	margin-left: 0;
	font-weight: 700;
	color: #28a745;
	font-size: 12px;
	white-space: nowrap;
	gap: 4px;
}

.doga-mega-card .price span.smallText {
	font-size: 9px;
	color: #575757;
	font-weight: normal;
}

#dogaMobileMegaTrigger {
	display: none;
}

/* Kartın üst kısmı (Başlık ve Badge hizalaması) */
.doga-mega-card .meta-top {
	display: flex;
	align-items: center;
	justify-content: space-between; /* Başlık sola, badge sağa yaslansın dersen */
	gap: 10px;
	margin-bottom: 4px;
}

/* Badge Tasarımı */
.doga-activity-badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background-color: #ffe0b2; /* Açık turuncu arka plan */
	color: #e65100; /* Koyu turuncu yazı */
	font-size: 10px;
	font-weight: 700;
	padding: 3px 8px;
	border-radius: 12px;
	white-space: nowrap;
	line-height: 1;
	border: 1px solid #ffcc80;
}

.doga-activity-badge i {
	font-size: 11px;
}

/* Featured kartlarda badge rengi değişsin istersen */
.doga-mega-card.is-featured .doga-activity-badge {
	background-color: #FF6501;
	color: #fff;
	border-color: #FF6501;
}

/* Mobilde başlık ve badge alt alta gelmesin, sığsın */
@media (max-width: 1199px) {
	.doga-mega-card .meta-top {
		flex-wrap: wrap;
	}
}


@media (max-width: 991.98px) {
	#dogaMegaMenu {
		display: none;
	}

	#dogaMobileMegaTrigger {
		display: inherit;
		flex-grow: 1;
	}

}

:root {
	--doga-m-bg: #2f2f2f;
	--doga-m-bg-2: #3a3a3a;
	--doga-m-border: rgba(255, 255, 255, .10);
	--doga-m-accent: #FF6501;
	--doga-m-text: #fff;
	--doga-m-muted: rgba(255, 255, 255, .70);
	--doga-m-zbase: 9990;
}

body.doga-m-lock {
	overflow: hidden !important;
	touch-action: none;
}

.doga-m-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, .35);
	z-index: var(--doga-m-zbase);
}

.doga-m-panel {
	position: fixed;
	top: 0;
	left: 0;
	height: 100dvh;
	background: var(--doga-m-bg);
	color: var(--doga-m-text);
	z-index: calc(var(--doga-m-zbase) + 1);
	overflow: hidden;
	transform: translateX(-12px);
	opacity: 0;
	transition: transform .18s ease, opacity .18s ease;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, .06), 0 10px 40px rgba(0, 0, 0, .45);
}

.doga-m-panel.is-open {
	transform: translateX(0);
	opacity: 1;
}

.doga-m-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 6px;
	padding: 10px 12px;
	background: var(--doga-m-bg-2);
	border-bottom: 1px solid var(--doga-m-border);
}

.doga-m-head .title {
	font-weight: 600;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: .3px;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.doga-m-btn {

}


.close {
	color: #ffffff;
	font-size: 24px;
	cursor: pointer;
}

.close:hover {
	color: #ffffff;
}

.doga-m-body {
	height: calc(100dvh - 54px);
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}

.doga-m-group {
	border-bottom: 1px solid var(--doga-m-border);
}

.doga-m-group-head {
	padding: 12px 14px 10px 14px;
	padding: 12px 14px 10px 14px;
	background-color: var(--doga-turuncu);
}

.doga-m-group-head .h-title {
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .25px;
	font-size: 12px;
	color: rgba(255, 255, 255, .85);
}

.doga-m-group-head .h-sub {
	margin-top: 0px;
	font-size: 12px;
	color: rgba(255, 255, 255, .55);
	line-height: 1.35;
}

.doga-m-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.doga-m-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 14px 14px;
	border-top: 1px solid var(--doga-m-border);
	cursor: pointer;
	user-select: none;

}



.doga-m-item .t {
	font-weight: 500;
	font-size: 13px;
	text-transform: uppercase;
	line-height: 1.2;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.doga-m-item .s {
	font-size: 12px;
	color: rgba(255, 255, 255, .60);
	line-height: 1.35;
	font-weight: 300;
	margin-top: 4px;
}

.doga-m-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 10px;
	font-size: 12px;
	color: rgba(255, 255, 255, .70);
}

.doga-m-meta span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	white-space: nowrap;
}

.doga-m-item .price {
	margin-top: 6px;
	font-size: 11px;
	color: rgba(255, 255, 255, .75);
	background-color: var(--doga-mavi);
	border-radius: 6px;
	line-height: 1;
	padding: 6px 12px;
}

.doga-m-item .arrow {
	font-size: 20px;
	opacity: .9;
}

.doga-m-item.is-featured {
	background: rgba(255, 101, 1, .10);
}

/* "Tab" hissi: alt menüde başlıklar sticky kalsın */
.doga-m-sticky-label {
	position: sticky;
	top: 0;
	z-index: 2;
	background: rgba(0, 0, 0, .18);
	border-top: 1px solid var(--doga-m-border);
	border-bottom: 1px solid var(--doga-m-border);
	padding: 12px 14px;
	font-weight: 900;
	font-size: 12px;
	letter-spacing: .2px;
	text-transform: uppercase;
}

/* küçük dokunuş */
.doga-m-divider {
	height: 10px;
	background: rgba(0, 0, 0, .12);
	border-top: 1px solid var(--doga-m-border);
	border-bottom: 1px solid var(--doga-m-border);
}

.doga-m-item .left {
	display: flex;
	gap: 10px;
	
	align-items: center;
}

.doga-m-item .ic {
	width: 30.78px;
	height: 30.78px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, .06);
	flex: 0 0 28px;
}

.doga-m-item .ic i {
	font-size: 20px;
	color: var(--doga-turuncu);
}

.doga-m-item .txt {
	flex: 1;
	min-width: 0;
}

/* Google Butonu için özel stil (CSS dosyalarınızda yoksa) */
.doga-btn-google {
	--_bg: var(--doga-white);
	--_fg: var(--doga-black);
	border-color: var(--doga-acik-gri);
	box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.doga-btn-google:hover {
	background: var(--doga-acik-gri-2);
}
.google-icon {
	width: 20px;
	height: 20px;
}

.separator {
	text-align: center;
	margin-bottom: 40px;
	color: var(--doga-gri);
	position: relative;
}
.separator span {
	background: var(--doga-white);
	padding: 0 10px;
	position: absolute;
	z-index: 1;
	left: 0;
	right: 0;
	width: 80px;
	margin: 0 auto;
}
.separator hr {
	position: absolute; 
	width: 100%; 
	top: 50%; 
	border: 0; 
	border-top: 1px solid var(--doga-acik-gri);
}

.rank-math-breadcrumb {
	font-size: 14px;
	color: #666;
	margin-bottom: 0px;
	padding: 10px 0;
}

.rank-math-breadcrumb p {
	padding: 0px;
	margin: 0px;
}

.rank-math-breadcrumb a {
	color: var(--doga-turuncu);
	text-decoration: none;
	transition: color 0.3s ease;
}

.rank-math-breadcrumb a:hover {
	color: #000;
	text-decoration: underline;
}

.rank-math-breadcrumb .separator {
	margin: 0 8px;
	color: #ccc;
}

.rank-math-breadcrumb .last {
	font-weight: 500;
	color: var(--doga-gri);
}


/* Konteynır Ayarları */
.aktivite-tanitim-konteynir {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	padding:0;
	/* max-width: 1200px; */
	margin: 0px 0 0 0;
}

/* Kırmızı Üst Etiket */
.etiket {
	background-color: var(--doga-mavi);
	color: #ffffff;
	padding: 6px 14px;
	border-radius: 6px;
	font-size: 12px;
	font-weight: 500;
	text-transform: none;
}

/* Ana Başlık */
.ana-baslik {
	font-size: 30px;
	font-weight: 800;
	color: #495057 !important;
	margin: 0;
}

/* Açıklama Metni */
.aciklama-metni {
	font-size: 18px !important;
	line-height: 1.6 !important;
	color: #666666 !important;
	margin: 0;
}

/* Metin İçindeki Bold Alanlar */
.vurgulu-gri {
	font-weight: 700;
	color: #444444;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
	.ana-baslik {
		font-size: 28px;
	}
	.aciklama-metni {
		font-size: 16px;
	}
}

/* SEO Alt İçerik Alanı */
.seo-content-bottom {
	background-color: #fcfcfc;
	padding: 60px 40px;
	border-radius: var(--doga-radius);
	border: 1px solid #f0f0f0;
	margin-top: 50px;
	margin-left: auto;
	margin-right: auto;
}

/* Ana Başlık (H2) */
.seo-content-bottom h2 {

	font-size: 1.8rem;
	font-weight: 800;
	color: #2d2d2d;
	margin-bottom: 25px;
	line-height: 1.2;
	border-bottom: 3px solid #FF6501; /* Turuncu vurgu çizgisi */
	display: block;
	padding-bottom: 10px;
}

/* Alt Başlıklar (H3) */
.seo-content-bottom h3 {
	font-size: 1.1rem;
	font-weight: 700;
	color: #333333;
	margin-top: 20px;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	gap: 10px;
}

/* H3 başlıklarının önüne küçük bir turuncu nokta/ayraç */
.seo-content-bottom h3::before {
	content: '';
	width: 8px;
	height: 8px;
	background-color: #FF6501;
	border-radius: 50%;
}

/* Paragraf Metinleri */
.seo-content-bottom p {
	font-size: 17px;
	line-height: 1.8;
	color: #555555;
	margin-bottom: 20px;
}

/* Vurgulu Kelimeler */
.seo-content-bottom strong {
	color: #2d2d2d;
	font-weight: 700;
}

/* CTA (Harekete Geçirici) Kutusu */
.seo-content-bottom .cta-box {
	background: #fff5ee; /* Çok açık turuncu */
	padding: 25px;
	border-left: 5px solid #FF6501;
	margin-top: 40px;
	border-radius: 12px;
}

.seo-content-bottom .cta-box p {
	margin-bottom: 0;
	font-weight: 600;
	color: #444;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
	.seo-content-bottom {
		padding: 40px 20px;
		margin-top: 30px;
	}
	.seo-content-bottom h2 {
		font-size: 1.8rem;
	}
	.seo-content-bottom h3 {
		font-size: 1.3rem;
	}
}

/* --- PAKET KARTI TASARIMI --- */
.d-card {
	background: #fff;
	border-radius: var(--doga-radius);
	overflow: hidden;
	border: 1px solid #f0f0f0;
	display: flex;
	flex-direction: column; /* Dikey dizilim */
	width: 100%;
	height: 100%; /* Flex slide içinde tam boy */
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.d-card:hover { 
	box-shadow: 0 12px 25px rgba(0,0,0,0.08); 
	transform: translateY(-5px);
}

/* Resim Alanı Sabitleme */
.d-card-img { 
	position: relative; 

	min-height: 280px;
	overflow: hidden; 
}

.d-card-img img { 
	width: 100%; 
	height: 100%; 
	object-fit: cover; 
}

.d-card-badge {
	position: absolute;
	top: 15px;
	left: 15px;
	background: var(--doga-turuncu);
	color: #fff;
	padding: 4px 12px;
	border-radius: 30px;
	font-size: 11px;
	font-weight: 600;
	z-index: 2;
	line-height: 1;
}

.d-card-badge-free {
	position: absolute;
	top: 10px;
	right: 10px;
	background: var(--doga-mavi);
	color: #fff;
	padding: 4px 12px;
	border-radius: 30px;
	font-size: 11px;
	font-weight: 600;
	z-index: 2;
	line-height: 1;
}

/* İçerik Alanı */
.d-card-body { 
	padding: 20px; 
	flex: 1; /* Esnek yapı: Başlık kısa olsa da alanı doldurur */
	display: flex;
	flex-direction: column;
}

.d-card-title {

	font-size: 1.25rem;
	font-weight: 700;
	color: var(--doga-black);
	margin-bottom: 10px;

	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	line-height: 1.1;
}

h3.d-card-title span {
	font-size: 14px;
	color: var(--doga-m-accent);
	font-weight: 500;
	width: 100%;
	display: block;
	margin-top: 5px;
}

.d-card-meta {
	display: flex;
	gap: 12px;
	margin-bottom: 15px;
	font-size: 13px;
	color: var(--doga-gri);
}

.d-meta-item { display: flex; align-items: center; gap: 4px; }
.d-meta-item i { color: var(--doga-turuncu); font-size: 16px; }

/* Teknik Detay Kutusu */
.d-card-specs {
	background: var(--doga-acik-gri-2);
	border-radius: 12px;
	padding: 12px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	margin-top: auto; /* Üstteki metin kısa kalsa bile bunu aşağı iter */
	margin-bottom: 0;
}

.d-spec-box { display: flex; flex-direction: column; gap: 2px; }
.d-spec-label { font-size: 10px; color: #999; text-transform: uppercase; letter-spacing: 0.5px; }
.d-spec-value { font-size: 12px; font-weight: 700; color: #444; }

/* Alt Alan (Fiyat ve Buton) */
.d-card-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: auto; /* Her zaman kartın en dibinde kalmasını sağlar */
	padding-top: 10px;
}

.d-price-wrap { display: flex; flex-direction: column; }
.d-price-from { font-size: 11px; color: var(--doga-gri); margin-bottom: 2px; }
.d-price-amount { font-size: 1.4rem; font-weight: 900; color: var(--doga-turuncu); line-height: 1; }

.d-btn-circle {
	width: 46px;
	height: 46px;
	background: var(--doga-black);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.d-btn-circle:hover { 
	background: var(--doga-turuncu); 
	transform: rotate(-45deg); 
}

.pix-words-wrapper {
	height: auto !important;
}
