/* ── Font Faces ─────────────────────────────────────────────────── */
@font-face {
	font-family: 'SF Pro Display';
	src: url('../fonts/SFProDisplay-Regular.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'SF Pro Display';
	src: url('../fonts/SFProDisplay-Medium.woff2') format('woff2');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'SF Pro Display';
	src: url('../fonts/SFProDisplay-Bold.woff2') format('woff2');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'SF Pro Display';
	src: url('../fonts/SFProDisplay-Black.woff2') format('woff2');
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'SF Pro Rounded';
	src: url('../fonts/SFProRounded-Bold.woff2') format('woff2');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

:root {
	--accent: #3074ae;
	--accent-gradient: linear-gradient(135deg, #3074ae 0%, #1e5282 100%);
	--accent-light: #eff6ff;
	--bg: #f5f7fb;
	--surface: rgba(255, 255, 255, 0.85);
	--surface-solid: #ffffff;
	--border: rgba(0, 0, 0, 0.08);
	--text: #1a1a1a;
	--text-muted: #666666;

	--navbar-bg: #ffffff;
	--navbar-border: rgba(0, 0, 0, 0.05);
	--navbar-h: 65px;

	--radius: 12px;
	--radius-lg: 10px;
	--shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.03);
	--shadow-md: 0 10px 30px rgba(0, 0, 0, 0.06);
	--tr: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@media (prefers-color-scheme: dark) {
	:root {
		--bg: #121212;
		--surface: #1e1e1e;
		--surface-solid: #1e1e1e;
		--border: rgba(255, 255, 255, 0.08);
		--text: #e0e0e0;
		--text-muted: #a0a0a0;
		--navbar-bg: #1e1e1e;
		--navbar-border: rgba(255, 255, 255, 0.08);
		--accent: #4a90e2;
		--accent-light: #1a2a3a;
	}

	/* Logodaki siyah metni dark modda beyaz yapalım */
	.logo-text-black {
		color: #ffffff !important;
	}
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	-webkit-tap-highlight-color: transparent;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--navbar-h) + 20px);
}

body {
	font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	background: var(--bg);
	color: var(--text);
	line-height: 1.5;
}

/* Minimalist Navbar */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: var(--navbar-h);
	background: var(--navbar-bg);
	border-bottom: 1px solid var(--navbar-border);
	display: flex;
	align-items: center;
	z-index: 100;
}

.navbar-container {
	width: 100%;
	max-width: 640px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.navbar-brand {
	font-family: 'SF Pro Rounded', sans-serif;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 22px;
	font-weight: 700;
	letter-spacing: -0.4px;
	line-height: 1;
}

.logo-text-red {
	color: #e53935;
}

.logo-text-blue {
	color: var(--accent);
	font-weight: 800;
}

.logo-text-black {
	color: var(--text);
}

/* Stylish Select */
.city-select-nav {
	padding: 8px 14px;
	border: 1.5px solid var(--border);
	border-radius: 99px;
	background: var(--surface-solid);
	color: var(--text);
	font-size: 14px;
	font-weight: 700;
	font-family: inherit;
	outline: none;
	cursor: pointer;
	transition: var(--tr);
	box-shadow: var(--shadow-sm);
}

.city-select-nav:focus,
.city-select-nav:hover {
	border-color: var(--accent);
	box-shadow: 0 0 0 3px var(--accent-light);
}

.navbar-actions {
	display: flex;
	align-items: center;
	gap: 15px;
}

.navbar-actions a {
	color: var(--text);
	text-decoration: none;
	font-weight: 500;
	font-size: 14px;
	white-space: nowrap;
	transition: var(--tr);
}

.navbar-actions a:hover {
	color: var(--accent);
}

.navbar-toggle {
	display: none;
}

@media (max-width: 600px) {
	.navbar-container {
		padding: 0 20px !important;
		position: relative;
	}

	.navbar-brand {
		font-size: 21px !important;
		gap: 6px !important;
	}

	.navbar-toggle {
		display: flex !important;
		align-items: center;
		justify-content: center;
		width: 28px;
		height: 28px;
		background: transparent;
		border: none;
		cursor: pointer;
		padding: 0;
		outline: none;
		color: var(--text);
		font-size: 20px;
		z-index: 110;
		transition: var(--tr);
	}

	.navbar-toggle * {
		pointer-events: none !important;
	}

	.navbar-toggle:hover {
		color: var(--accent);
	}

	.navbar-actions {
		display: none !important;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--navbar-bg);
		border-bottom: 1.5px solid var(--navbar-border);
		box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
		flex-direction: column;
		align-items: stretch;
		padding: 16px 20px !important;
		gap: 0 !important;
		z-index: 99;
	}

	.navbar-actions.active {
		display: flex !important;
	}

	.navbar-actions a {
		font-size: 15px !important;
		font-weight: 600 !important;
		padding: 12px 0;
		border-bottom: 1px solid var(--border);
		letter-spacing: -0.2px !important;
		display: block;
		width: 100%;
	}

	.navbar-actions a:last-of-type {
		border-bottom: none;
	}

	.city-select-nav {
		margin-top: 12px !important;
		padding: 10px 14px !important;
		font-size: 14px !important;
		max-width: 100% !important;
		width: 100% !important;
		border-radius: var(--radius);
	}
}


/* Layout */
.page {
	padding-top: var(--navbar-h);
	padding-bottom: 60px;
	min-height: 100vh;
}

.wrap {
	width: 100%;
	max-width: 640px;
	margin: 0 auto;
	padding-left: 16px;
	padding-right: 16px;
}

/* Minimal Banner */
.banner {
	background: var(--surface-solid);
	color: var(--text);
	padding: 16px 20px;
	border: 1.5px solid var(--accent);
	border-radius: var(--radius-lg);
	margin-bottom: 24px;
	font-weight: 600;
	font-size: 15px;
	display: flex;
	align-items: center;
	gap: 12px;
	box-shadow: var(--shadow-sm);
	transform: translateY(0);
	transition: var(--tr);
}

.banner:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.banner strong {
	color: var(--accent);
}

/* Highlight word */
.hidden {
	display: none !important;
}

/* Date Header */
.date-header {
	margin-top: 10px;
	text-align: center;
	margin-bottom: 15px;
}

.date-header-label {
	font-size: 20px;
	font-weight: 500;
	color: var(--text-muted);
	margin-top: 2px;
}

.date-header h1 {
	font-family: 'SF Pro Rounded', sans-serif;
	font-size: 28px;
	font-weight: 900;
	letter-spacing: -0.5px;
	color: var(--text);
}

/* JS güncelleyene kadar yanlış tarih/menü flash'ını engelle */
#todays-date-title,
#todays-meals-content {
	visibility: hidden;
}


/* Minimal Meal Cards */
.meal-card {
	background: var(--surface-solid);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 16px;
	margin-bottom: 20px;
}

.meal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
	border-bottom: 2px solid var(--accent-light);
	padding-bottom: 12px;
}

.meal-title {
	font-family: 'SF Pro Rounded', sans-serif;
	font-size: 20px;
	font-weight: 800;
	color: var(--accent);
	letter-spacing: -0.3px;
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.meal-status-text {
	font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: var(--text-muted);
	background: rgba(0, 0, 0, 0.03);
	border: 1px solid var(--border);
	padding: 2px 8px;
	border-radius: 6px;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	vertical-align: middle;
}

.meal-status-text.active {
	color: #2e7d32;
	background: rgba(46, 204, 113, 0.08);
	border-color: rgba(46, 204, 113, 0.15);
}

.meal-status-dot {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background-color: var(--text-muted);
	display: inline-block;
}

.meal-status-text.active .meal-status-dot {
	background-color: #2e7d32;
}

@media (prefers-color-scheme: dark) {
	.meal-status-text {
		background: rgba(255, 255, 255, 0.04);
	}

	.meal-status-text.active {
		color: #81c784;
		background: rgba(76, 175, 80, 0.15);
		border-color: rgba(76, 175, 80, 0.2);
	}

	.meal-status-text.active .meal-status-dot {
		background-color: #81c784;
	}
}

.meal-title-gold {
	color: #d4af37 !important;
}

.meal-icon {
	font-size: 24px;
}

/* Food List */
.food-list {
	list-style: none;
}

/* Bugünün Sabit Menüsü Listeleri (Büyük Boyutlar) */
#todays-meals-content .food-list li {
	padding: 7px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.04);
	font-size: 15px;
	color: var(--text);
	font-weight: 600;
	display: flex;
	align-items: center;
	line-height: 1.5;
}

#todays-meals-content .food-list li:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

#todays-meals-content .food-icon {
	width: 34px;
	height: 34px;
	object-fit: contain;
	margin-right: 12px;
	flex-shrink: 0;
}

#todays-meals-content .meal-title {
	font-family: 'SF Pro Rounded', sans-serif;
	font-size: 20px;
	font-weight: 800;
	color: var(--accent);
	letter-spacing: -0.3px;
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

#todays-meals-content .meal-status-text {
	font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: var(--text-muted);
	background: rgba(0, 0, 0, 0.03);
	border: 1px solid var(--border);
	padding: 2px 8px;
	border-radius: 6px;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	vertical-align: middle;
}

/* Tüm Ayın Menü Listeleri (Mobil Yan Yana için Daraltılmış Boyutlar) */
.day-menu-container .food-list li {
	padding: 5px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.04);
	font-size: 13px;
	color: var(--text);
	font-weight: 600;
	display: flex;
	align-items: center;
	line-height: 1.25;
}

.day-menu-container .food-list li:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.day-menu-container .food-icon {
	width: 24px;
	height: 24px;
	object-fit: contain;
	margin-right: 8px;
	flex-shrink: 0;
}

.day-menu-container .meal-title {
	font-size: 15px;
	gap: 6px;
}


/* Transition animations for menu updates */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(8px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.animate-fade-in {
	animation: fadeInUp 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}


/* Bugünün Sabit Menü Kart Düzeni (Mobilde Dikey, Masaüstünde Yan Yana) */
#todays-meals-content .meals-layout {
	display: flex;
	flex-direction: column;
}

#todays-meals-content .meals-layout.swap-meals {
	flex-direction: column-reverse;
}

#todays-meals-content .meal-card {
	background: var(--surface-solid);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 16px;
	margin-bottom: 20px;
}

/* Tüm Ayın Menü Kart Düzeni (Switch ile Sadece Biri Gösterileceğinden Tek Sütun/Geniş) */
.day-menu-container .meals-layout {
	display: block;
}

.day-menu-container .meal-card {
	background: var(--surface-solid);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 14px;
	margin-bottom: 0;
}

.day-menu-container .meal-title {
	font-size: 17px;
	gap: 6px;
}


.day-menu-container .food-list li {
	padding: 6px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.04);
	font-size: 14px;
	color: var(--text);
	font-weight: 600;
	display: flex;
	align-items: center;
	line-height: 1.4;
}

.day-menu-container .food-list li:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.day-menu-container .food-icon {
	width: 28px;
	height: 28px;
	object-fit: contain;
	margin-right: 10px;
	flex-shrink: 0;
}

/* Switch Gizleme Kuralları */
.menu-container.show-breakfast .card-dinner {
	display: none;
}

.menu-container.show-dinner .card-breakfast {
	display: none;
}

/* Top actions & Buttons */
.menu-top-actions-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	margin-top: 10px;
	margin-bottom: 16px;
	width: 100%;
}

.menu-top-actions-row {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 6px;
	width: 100%;
}

.btn-top-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 8px 12px;
	border: 1.5px solid var(--border);
	border-radius: 99px;
	background: var(--surface-solid);
	color: var(--text);
	font-size: 13px;
	font-weight: 700;
	font-family: inherit;
	outline: none;
	cursor: pointer;
	transition: var(--tr);
	box-shadow: var(--shadow-sm);
	white-space: nowrap;
	text-align: center;
	flex: 1;
	max-width: 220px;
}

.btn-all-action {
	width: 100%;
	max-width: 446px;
	padding: 8px 16px !important;
	flex: none;
}

.btn-icon {
	width: 16px;
	height: 16px;
	object-fit: contain;
}

.btn-top-action:focus,
.btn-top-action:hover {
	border-color: var(--accent);
	box-shadow: 0 0 0 3px var(--accent-light);
}

@media (min-width: 480px) {
	.menu-top-actions-row {
		gap: 8px;
	}

	.btn-top-action {
		padding: 8px 16px;
		font-size: 14px;
		flex: 0 1 auto;
	}

	.btn-all-action {
		width: auto;
		flex: 0 1 auto;
		padding: 8px 24px !important;
	}
}

/* Best Menus Section */
.best-menus-section {
	margin-top: 32px;
	background: var(--surface-solid);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 16px;
	scroll-margin-top: calc(var(--navbar-h) + 12px);
}

.section-title {
	font-family: 'SF Pro Rounded', sans-serif;
	font-size: 18px;
	font-weight: 800;
	color: var(--text);
	text-align: center;
	margin-bottom: 16px;
}

.best-menus-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.best-menu-item {
	display: flex;
	align-items: center;
	padding-bottom: 10px;
	/* padding: 12px 14px; */
	/* border-radius: var(--radius); */
	/* border: 1px solid var(--border); */
	/* background: var(--bg); */
	cursor: pointer;
	transition: var(--tr);
}

.best-menu-item:hover {
	transform: translateY(-2px);
	border-color: var(--accent);
	box-shadow: var(--shadow-sm);
}

.best-menu-icon-container {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	/* background: var(--surface-solid); */
	/* border: 1px solid var(--border); */
	margin-right: 12px;
	flex-shrink: 0;
}

.best-menu-food-icon {
	width: 22px;
	height: 22px;
	object-fit: contain;
}

.best-menu-details {
	flex-grow: 1;
	min-width: 0;
}

.best-menu-dish {
	font-size: 14px;
	font-weight: 700;
	color: var(--text);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.best-menu-date {
	font-size: 12px;
	color: var(--text-muted);
	font-weight: 600;
	margin-top: 2px;
}

.best-menu-score {
	margin-left: 12px;
	flex-shrink: 0;
}

.score-badge {
	display: inline-block;
	padding: 4px 10px;
	border-radius: 8px;
	font-size: 12px;
	font-weight: 700;
	color: #ffffff;
	background: var(--text-muted);
}

.score-badge.score-10 {
	background: #2e7d32;
	box-shadow: 0 2px 8px rgba(46, 125, 50, 0.2);
}

.score-badge.score-9 {
	background: #43a047;
	box-shadow: 0 2px 8px rgba(67, 160, 71, 0.2);
}

.score-badge.score-8 {
	background: #7cb342;
	box-shadow: 0 2px 8px rgba(124, 179, 66, 0.2);
}

.score-badge.score-7 {
	background: #afb42b;
	box-shadow: 0 2px 8px rgba(175, 180, 43, 0.2);
}

.score-badge.score-6 {
	background: #f57c00;
	box-shadow: 0 2px 8px rgba(245, 124, 0, 0.2);
}

.score-badge.score-5,
.score-badge.score-4,
.score-badge.score-3,
.score-badge.score-2,
.score-badge.score-1 {
	background: #d84315;
	box-shadow: 0 2px 8px rgba(216, 67, 21, 0.2);
}

/* Toggle Switch Stilleri */
.monthly-header-row {
	text-align: center;
	margin-top: 32px;
	margin-bottom: 12px;
}

.monthly-menu-title {
	font-size: 22px !important;
}

@media (min-width: 768px) {
	.monthly-menu-title {
		font-size: 26px !important;
	}
}

.meal-toggle-container-wrapper {
	position: sticky;
	top: var(--navbar-h);
	z-index: 90;
	background: none !important;
	border-bottom: none !important;
	box-shadow: none !important;
	padding: 10px 0;
	margin-bottom: 20px;
	display: flex;
	justify-content: center;
	pointer-events: none;
}

/* Dark modda da saydam kalması için */

.meal-toggle-container {
	display: inline-flex;
	background: var(--surface-solid);
	border: 1px solid var(--border);
	padding: 3px;
	border-radius: 99px;
	box-shadow: var(--shadow-sm);
	pointer-events: auto;
}

.meal-toggle-btn {
	padding: 6px 16px;
	border: none;
	background: none;
	border-radius: 99px;
	font-size: 13px;
	font-weight: 700;
	color: var(--text-muted);
	cursor: pointer;
	font-family: inherit;
	transition: var(--tr);
	outline: none;
}

.meal-toggle-btn.active {
	background: var(--accent);
	color: #ffffff;
	box-shadow: 0 2px 6px rgba(48, 116, 174, 0.2);
}

/* Detailed List Section */
.monthly-menu-details-section {
	margin-top: 32px;
	scroll-margin-top: calc(var(--navbar-h) + 16px);
}

.day-menu-container {
	margin-bottom: 18px;
	background: var(--surface-solid);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 16px;
	scroll-margin-top: calc(var(--navbar-h) + 12px);
}

.day-menu-container .date-header {
	margin: 0;
}

.day-menu-container.today-highlight {
	border: 2px solid var(--accent);
	box-shadow: 0 4px 20px rgba(48, 116, 174, 0.15);
}

.day-menu-container.tomorrow-highlight {
	border: 2px solid var(--accent) !important;
	box-shadow: 0 4px 20px rgba(48, 116, 174, 0.25) !important;
}

/* Media Queries for Desktop overrides */
@media (min-width: 768px) {

	.wrap,
	.navbar-container {
		max-width: 960px;
	}

	#todays-meals-content .meals-layout {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 24px;
	}

	#todays-meals-content .meals-layout.swap-meals {
		flex-direction: row;
	}

	#todays-meals-content .meal-card {
		margin-bottom: 0;
	}

	.day-menu-container .meal-card {
		padding: 16px;
	}

	.day-menu-container .meal-title {
		font-size: 20px;
		gap: 8px;
	}


	.day-menu-container .food-list li {
		padding: 7px 0;
		font-size: 15px;
		line-height: 1.5;
	}

	.day-menu-container .food-icon {
		width: 34px;
		height: 34px;
		margin-right: 12px;
	}
}

/* Başa Dön Butonu */
.btn-floating-top {
	position: fixed;
	bottom: 24px;
	right: 24px;
	background: var(--surface-solid);
	color: var(--accent);
	border: 1.5px solid var(--accent);
	padding: 10px 18px;
	font-size: 13px;
	font-weight: 700;
	border-radius: 99px;
	cursor: pointer;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	z-index: 99;
	font-family: inherit;
	transition: opacity 0.25s ease-in-out, transform 0.25s ease-in-out, background 0.2s, color 0.2s;
	opacity: 0;
	transform: translateY(10px);
	pointer-events: none;
}

.btn-floating-top.show {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.btn-floating-top:hover {
	background: var(--accent);
	color: #ffffff;
	box-shadow: 0 6px 20px rgba(48, 116, 174, 0.25);
}

/* Hide status/countdown timer inside monthly menu items */
.day-menu-container .meal-status-text {
	display: none !important;
}

/* ── Breadcrumb Nav ──────────────────────────────────────────────── */
.breadcrumb-nav {
	padding: 10px 0 4px;
}

.breadcrumb-list {
	display: flex;
	align-items: center;
	gap: 4px;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 13px;
	opacity: 0.9;
	color: var(--text-secondary);
}

.breadcrumb-item a {
	color: var(--accent);
	text-decoration: none;
	font-weight: 500;
}

.breadcrumb-item a:hover {
	text-decoration: underline;
}

.breadcrumb-separator {
	color: var(--text-secondary);
	opacity: 0.5;
}

.breadcrumb-current {
	color: var(--text);
	font-weight: 500;
}

/* ── FAQ / SSS Section ───────────────────────────────────────────── */
.faq-section {
	margin-top: 40px;
	margin-bottom: 40px;
}

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 20px;
}

.faq-item {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 12px;
	overflow: hidden;
	transition: box-shadow 0.2s ease;
}

.faq-item:hover {
	box-shadow: 0 4px 16px rgba(48, 116, 174, 0.1);
}

.faq-item[open] {
	border-color: var(--accent);
}

.faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 20px;
	font-size: 15px;
	font-weight: 600;
	color: var(--text);
	cursor: pointer;
	list-style: none;
	user-select: none;
	gap: 12px;
}

.faq-question::-webkit-details-marker {
	display: none;
}

.faq-question::after {
	content: '＋';
	font-size: 18px;
	color: var(--accent);
	flex-shrink: 0;
	transition: transform 0.2s ease;
}

.faq-item[open] .faq-question::after {
	content: '－';
}

.faq-answer {
	padding: 0 20px 16px;
	font-size: 14px;
	line-height: 1.7;
	color: var(--text-secondary);
	border-top: 1px solid var(--border);
	padding-top: 14px;
}

.faq-answer p {
	margin: 0;
}

@media (max-width: 640px) {
	.faq-question {
		font-size: 14px;
		padding: 14px 16px;
	}

	.faq-answer {
		font-size: 13px;
		padding: 0 16px 14px;
		padding-top: 12px;
	}
}

/* ── Menü Kalori Göstergesi ─────────────────────────────────────── */
.meal-calories {
	margin-top: 14px;
	padding-top: 10px;
	border-top: 1px dashed var(--border);
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--text-muted);
	font-size: 13px;
	font-weight: 500;
}

.meal-calories .calorie-icon {
	color: #f59e0b;
	flex-shrink: 0;
}

@media (prefers-color-scheme: dark) {
	.meal-calories .calorie-icon {
		color: #fbbf24;
	}
}

/* ── Breadcrumb Güncel Link Stili ───────────────────────────────── */
.breadcrumb-current a {
	color: var(--text) !important;
	text-decoration: none;
	font-weight: 600;
}

.breadcrumb-current a:hover {
	text-decoration: underline;
}

/* ── Menü Kontrolleri (Filtre ve Arama) ────────────────────────────── */
.menu-controls-container {
	background: var(--surface-solid);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 16px;
	margin-top: 16px;
	margin-bottom: 24px;
	box-shadow: var(--shadow-sm);
}

.week-selector-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	margin-bottom: 16px;
}

.week-btn {
	padding: 6px 14px;
	border: 1px solid var(--border);
	border-radius: 99px;
	background: var(--surface-solid);
	color: var(--text);
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	transition: var(--tr);
	outline: none;
	font-family: inherit;
}

.week-btn:hover {
	border-color: var(--accent);
	background: var(--accent-light);
}

.week-btn.active {
	background: var(--accent);
	color: #ffffff;
	border-color: var(--accent);
	box-shadow: 0 2px 6px rgba(48, 116, 174, 0.2);
}

.search-wrapper {
	max-width: 360px;
	margin: 0 auto;
	position: relative;
}

.search-input {
	width: 100%;
	padding: 10px 16px;
	border: 1.5px solid var(--border);
	border-radius: 99px;
	background: var(--surface-solid);
	color: var(--text);
	font-size: 14px;
	font-weight: 600;
	outline: none;
	transition: var(--tr);
	font-family: inherit;
	text-align: center;
}

.search-input:focus {
	border-color: var(--accent);
	box-shadow: 0 0 0 3px var(--accent-light);
}

/* ── Akordeon (Açılır/Kapanır) Stilleri ────────────────────────────── */
.js-active .day-menu-container {
	transition: box-shadow var(--tr), border-color var(--tr);
}

.js-active .day-menu-container {
	padding: 0;
}

.js-active .day-menu-container .date-header {
	cursor: pointer;
	user-select: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 16px;
	transition: background-color var(--tr), outline var(--tr);
}

.js-active .day-menu-container .meals-layout {
	padding: 0 16px 16px 16px;
}

.js-active .day-menu-container .date-header:focus {
	outline: none;
}

.js-active .day-menu-container .date-header:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: -2px;
	border-radius: 12px;
}

.js-active .day-menu-container .date-header h3 {
	margin: 0;
}

.js-active .day-menu-container .date-header::after {
	content: '';
	display: inline-block;
	width: 8px;
	height: 8px;
	border-right: 2px solid var(--text);
	border-bottom: 2px solid var(--text);
	transform: rotate(45deg);
	transition: transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
	margin-right: 8px;
	margin-left: 12px;
	flex-shrink: 0;
}

.js-active .day-menu-container.collapsed .date-header::after {
	transform: rotate(-45deg);
}

.js-active .day-menu-container.collapsed .meals-layout {
	display: none;
}

.js-active .day-menu-container.filtered-out {
	display: none !important;
}

/* ── Arama Eşleşmesi Vurgusu ─────────────────────────────────────── */
mark.highlight {
	background: rgba(245, 158, 11, 0.3);
	color: var(--text);
	border-radius: 4px;
	padding: 0 4px;
	font-weight: 700;
}

@media (prefers-color-scheme: dark) {
	.js-active .day-menu-container .date-header::after {
		border-color: var(--text);
	}

	mark.highlight {
		background: rgba(251, 191, 36, 0.4);
	}
}

/* ── Diğer Şehirler Bölümü ───────────────────────────────────────── */
.other-cities-section {
	background: var(--surface-solid);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 20px;
	margin-top: 32px;
	margin-bottom: 24px;
	box-shadow: var(--shadow-sm);
}

.other-cities-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	margin-top: 16px;
}

@media (min-width: 480px) {
	.other-cities-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (min-width: 768px) {
	.other-cities-grid {
		grid-template-columns: repeat(5, 1fr);
	}
}

.other-city-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 16px;
	border: 1.5px solid var(--border);
	border-radius: 12px;
	background: var(--bg);
	color: var(--text);
	text-decoration: none;
	font-weight: 700;
	font-size: 14px;
	transition: var(--tr);
}

.other-city-card:hover {
	border-color: var(--accent);
	background: var(--surface-solid);
	transform: translateY(-2px);
	box-shadow: var(--shadow-sm);
}

.other-city-arrow {
	color: var(--accent);
	font-weight: 800;
	transition: transform 0.2s ease;
}

.other-city-card:hover .other-city-arrow {
	transform: translateX(4px);
}

/* ── Sitemap Footer Stilleri ─────────────────────────────────────── */
.sitemap-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
	gap: 6px;
	font-size: 0.8em;
}

.sitemap-link {
	color: var(--text-muted);
	text-decoration: none;
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	padding: 2px 0;
	transition: var(--tr);
}

.sitemap-link:hover {
	color: var(--accent);
	text-decoration: underline;
}

/* Homepage specific card animations and badges */
.badge-yakinda {
	background: rgba(48, 116, 174, 0.1);
	color: var(--accent);
	font-size: 0.7em;
	padding: 4px 10px;
	border-radius: 99px;
	font-weight: bold;
	display: inline-block;
	margin-left: 8px;
	vertical-align: middle;
	border: 1px solid rgba(48, 116, 174, 0.2);
}

.hub-card:hover {
	transform: translateY(-4px);
	border-color: var(--accent);
	box-shadow: var(--shadow-md);
}

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

/* ── Arama Kutusu ve Sekme Stilleri ──────────────────────────────── */
.search-tab.active {
	background: var(--accent) !important;
	color: #ffffff !important;
	border-color: var(--accent) !important;
	box-shadow: 0 4px 10px rgba(48, 116, 174, 0.15);
}

.search-dropdown-item {
	padding: 12px 20px;
	cursor: pointer;
	color: var(--text);
	font-weight: 600;
	transition: var(--tr);
	border-bottom: 1px solid var(--border);
	text-align: left;
}

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

.search-dropdown-item:hover {
	background: var(--bg);
	color: var(--accent);
}

#search-input:focus {
	border-color: var(--accent) !important;
	box-shadow: 0 0 0 3px var(--accent-light) !important;
}

.hidden {
	display: none !important;
}

/* ── Top Menu Alert Component ────────────────────────────────────── */
.top-menu-alert {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	background: rgba(48, 116, 174, 0.08);
	border: 1px solid rgba(48, 116, 174, 0.15);
	padding: 6px 14px;
	border-radius: 99px;
	font-size: 0.9em;
	color: var(--text);
	box-shadow: var(--shadow-sm);
	transition: var(--tr);
	font-weight: 500;
}

.top-menu-alert:hover {
	background: rgba(48, 116, 174, 0.12);
	border-color: var(--accent);
}

.top-menu-alert .alert-content {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.top-menu-alert .alert-badge {
	background: var(--accent);
	color: #fff;
	font-size: 0.75em;
	font-weight: 800;
	padding: 2px 8px;
	border-radius: 99px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.top-menu-alert .alert-text {
	font-weight: 600;
	color: var(--text);
}

.top-menu-alert strong {
	color: var(--accent);
	font-weight: 700;
}

.top-menu-alert .alert-link {
	color: #fff;
	background: var(--accent);
	text-decoration: none;
	font-weight: 700;
	padding: 4px 14px;
	border-radius: 99px;
	font-size: 0.85em;
	transition: var(--tr);
	display: inline-block;
}

.top-menu-alert .alert-link:hover {
	background: #1e5282;
	transform: translateY(-1px);
}

@media (max-width: 600px) {
	.top-menu-alert {
		display: flex;
		flex-direction: column;
		align-items: center;
		padding: 10px 14px;
		border-radius: 16px;
		gap: 8px;
		width: 100%;
		max-width: 100%;
	}

	.top-menu-alert .alert-content {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		gap: 6px;
	}

	.top-menu-alert .alert-badge {
		font-size: 0.7em;
		padding: 2px 6px;
	}

	.top-menu-alert .alert-text {
		font-size: 0.85em;
	}

	.top-menu-alert .alert-link {
		margin-left: 0;
		width: 100%;
		text-align: center;
		padding: 6px 12px;
		font-size: 0.8em;
	}
}

/* Sticky Section Nav */
#sticky-section-nav { position: fixed; top: 64px; left: 0; width: 100%; z-index: 100; background: rgba(255, 255, 255, 0.98); border-bottom: 1px solid var(--border); transform: translateY(-150%); opacity: 0; transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1); padding: 10px 20px; display: flex; justify-content: center; }
#sticky-section-nav.visible { transform: translateY(0); opacity: 1; }
@media (prefers-color-scheme: dark) { #sticky-section-nav { background: rgba(30, 30, 30, 0.98); } }
.sticky-nav-container { display: flex; justify-content: space-between; align-items: center; width: 100%; max-width: 800px; margin: 0 auto; }
.sticky-nav-title { font-weight: 700; font-size: 1.1rem; color: var(--text); }
.sticky-nav-dropdown { position: relative; }
.sticky-dropdown-btn { background: var(--accent); color: white; border: none; padding: 8px 16px; border-radius: 8px; font-weight: 600; font-family: inherit; font-size: 0.9rem; cursor: pointer; display: flex; align-items: center; gap: 6px; transition: background 0.2s; }
.sticky-dropdown-btn:hover { background: var(--accent-light); }
.sticky-dropdown-content { display: none; position: absolute; right: 0; top: 100%; margin-top: 8px; background: var(--surface-solid); min-width: 220px; box-shadow: var(--shadow-md); border-radius: 8px; border: 1px solid var(--border); z-index: 101; overflow: hidden; }
.sticky-dropdown-content.show { display: block; }
.sticky-dropdown-content a { color: var(--text); padding: 12px 16px; text-decoration: none; display: block; font-size: 0.95rem; border-bottom: 1px solid var(--border); transition: background 0.2s; }
.sticky-dropdown-content a:last-child { border-bottom: none; }
.sticky-dropdown-content a:hover { background: var(--bg); }