@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&amp;display=swap');
:root {
	--brand: #de4c4e;
	--brand-600: #e54545;
	--ink: #222;
	--muted: #666;
	--line: #e8e8e8;
	--bg: #fafafa;
	--chip: #f6f6f6;
	--radius: 14px;
	--radius-lg: 20px;
	--shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
	--topbar-h: 72px;
}

#hk-app * {
	box-sizing: border-box;
}

html {
	height: 100%;
	scroll-behavior: smooth;
}

body {
	height: auto;
	min-height: 100vh;
	margin: 0;
	font-family: 'Outfit', system-ui, -apple-system, Helvetica, sans-serif;
	color: var(--ink);
	background: #f9f9f9;
	overflow-x: clip !important;
}

a:focus,
a:active {
	outline: none;
	box-shadow: none;
}

#hk-app a {
	color: inherit;
	text-decoration: none;
}

#hk-app img {
	max-width: 100%;
	display: block;
}

/* ----------------------------------
   2) Header (Topbar)
---------------------------------- */

#hk-app .site-top,
.site-top {
	position: sticky !important;
	top: 0 !important;
	z-index: 500 !important;
	background: rgba(255, 255, 255, 0.95);
	transition: all 0.3s ease;
	backdrop-filter: saturate(180%) blur(6px);
}

body.scrolled #hk-app .site-top,
body.scrolled .site-top {
	background: rgba(255, 255, 255, 0.98) !important;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1) !important;
}

body.has-intro #hk-app .site-top .topbar-logo,
body.has-intro #hk-app .site-top .mobile-avatar,
body.has-intro #hk-app .site-top .search-wrap {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(-10px);
}

#hk-app .site-top .topbar-logo,
#hk-app .site-top .mobile-avatar,
#hk-app .site-top .search-wrap {
	transition: all 0.5s ease;
}

body:not(.has-intro) #hk-app .site-top .topbar-logo,
body:not(.has-intro) #hk-app .site-top .mobile-avatar,
body:not(.has-intro) #hk-app .site-top .search-wrap {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

#hk-app .topbar {
	max-width: 1320px;
	margin: 0 auto;
	padding: 16px 20px;
	display: flex;
	align-items: center;
	gap: 16px;
}

#hk-app .desktop-logo {
	display: block;
}

#hk-app .topbar-logo {
	width: 180px;
	height: auto;
	display: block;
}

#hk-app .mobile-avatar {
	display: none;
	width: 40px;
	height: 40px;
	border-radius: 8px;
	overflow: hidden;
	flex-shrink: 0;
	padding: 2px;
}
#hk-app .avatar-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* --- Orta konumlu dikey kart --- */
#hk-app .company-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: clamp(4px, 1.6vw, 8px);
	padding: clamp(6px, 2.4vw, 10px) clamp(10px, 3vw, 20px);
	border-radius: 100px;
	color: #888888;
	max-width: min(760px, 90%);
	border: 1px solid rgba(0, 0, 0, 0.1);
	margin-bottom: 40px;
}

#hk-app .company-card .brand-name {
	margin: 0;
	font-weight: 400;
	font-size: clamp(0.8em, 3vw, 1em);
	line-height: 1;
}

/* ----------------------------------
   User Dropdown (logged-in)
---------------------------------- */
#hk-app .auth-user {
	display: none;
}
body.is-auth #hk-app .auth-user {
	display: block;
}
body.is-auth #hk-app .auth-guest {
	display: none;
}

#hk-app .user {
	position: relative;
}
#hk-app .user-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 10px;
	border: none;
	border-radius: 999px;
	background: #f9f9f9;
	line-height: 1;
	cursor: pointer;
	transition: background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
#hk-app .user-btn:hover {
	background: #efefef;
}
#hk-app .user-btn .chevron {
	opacity: 0.8;
	transition: transform 0.2s ease, opacity 0.2s ease;
}
#hk-app .user-btn[aria-expanded='true'] .chevron {
	transform: rotate(180deg);
}

#hk-app .user-avatar {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	object-fit: cover;
	display: block;
}
#hk-app .user-initial {
	font-weight: 700;
	letter-spacing: 0.3px;
}

#hk-app .user-menu {
	position: absolute;
	top: 40px;
	right: 0;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 16px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
	padding: 8px;
	min-width: 240px;
	z-index: 100;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-8px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
#hk-app .user-menu.visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

#hk-app .user-menu-head {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 10px 12px 6px;
}
#hk-app .user-logo {
	max-width: 80%;
	max-height: 80px;
	display: block;
	margin-bottom: 15px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	padding: 10px;
}
#hk-app .user-company {
	font-size: 14px;
	color: #888;
	font-weight: 400;
}
#hk-app .user-fullname {
	font-size: 16px;
	color: var(--ink);
	font-weight: 500;
	margin-top: 4px;
}

#hk-app .menu-divider {
	height: 1px;
	background: var(--line);
	margin: 8px 8px;
	border-radius: 1px;
}

#hk-app .user-menu a {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 14px;
	border: none;
	background: transparent;
	border-radius: 8px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	color: var(--ink);
	text-decoration: none;
	transition: background 0.2s ease;
}
#hk-app .user-menu a:hover {
	background: var(--chip);
}
#hk-app .user-menu a.logout {
	color: var(--brand);
}

/* Logged-in görünürlüğü (body.is-auth ile kontrol) */
#hk-app .mobile-auth-user {
	display: none;
}
body.is-auth #hk-app .mobile-auth-user {
	display: block;
}
body.is-auth #hk-app .mobile-auth-guest {
	display: none;
}

/* Kullanıcı kartı */
#hk-app .mobile-user-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 8px;
	padding: 6px 10px 12px;
}
#hk-app .mobile-user-logo {
	max-height: 100px;
	max-width: 200px;
	display: block;
	margin-bottom: 10px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	padding: 10px;
	border-radius: 8px;
}
#hk-app .mobile-user-company {
	font-size: 0.9em;
	color: #888;
	font-weight: 400;
}
#hk-app .mobile-user-fullname {
	font-size: 1em;
	color: var(--ink);
	font-weight: 600;
}

/* Divider */
#hk-app .mobile-menu-divider {
	height: 1px;
	background: var(--line);
	margin: 8px 0;
	border-radius: 1px;
}

/* Kullanıcı menü linkleri */
#hk-app .mobile-user-menu a {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 10px;
	border: none;
	background: transparent;
	border-radius: 12px;
	cursor: pointer;
	font-size: 1em;
	font-weight: 600;
	color: var(--ink);
	text-decoration: none;
	transition: background 0.2s ease;
}
#hk-app .mobile-user-menu a:hover {
	background: var(--chip);
}
#hk-app .mobile-user-menu a.logout {
	color: var(--brand);
}

/* ----------------------------------
   3) Search (tekil & konsolide)
---------------------------------- */
#hk-app .search-wrap {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}
#hk-app .search {
	position: relative;
	max-width: 560px;
	width: 100%;
}
#hk-app .search input {
	width: 100%;
	height: 44px;
	border: 2px solid var(--brand);
	border-radius: 999px;
	padding: 0 44px;
	outline: 0;
	font-size: 16px;
	font-weight: 500;
	font-family: 'Outfit', system-ui, -apple-system, Helvetica, sans-serif;
	color: var(--ink);
	background: #fff;
	transition: border-color 0.2s ease;
}
#hk-app .search input::placeholder {
	color: #9c9c9c;
}
#hk-app .search input:focus {
	border-color: var(--line);
	color: var(--ink);
}

#hk-app .intro .search input {
	height: 50px;
}
#hk-app .intro .suggest {
	top: 58px;
}

#hk-app .search input::-webkit-search-cancel-button,
#hk-app .search input::-webkit-search-decoration {
	-webkit-appearance: none;
	appearance: none;
}
#hk-app .search input::-ms-clear {
	display: none;
}

#hk-app .search .icon {
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--brand);
	transition: color 0.2s ease;
}
#hk-app .search .icon circle,
#hk-app .search .icon path {
	stroke: currentColor;
	transition: stroke 0.2s ease;
}
/* Focus efekti */
#hk-app .search:focus-within .icon {
	color: #bababa;
}

/* Clear button (sağ) */
#hk-app .search .clear-btn {
	position: absolute;
	right: 14px;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	border: none;
	background: none;
	color: #888;
	cursor: pointer;
	border-radius: 50%;
	display: none;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
	padding: 0;
}
#hk-app .search .clear-btn.visible {
	display: flex;
}
#hk-app .search .clear-btn:hover {
	color: #666;
	background: rgba(136, 136, 136, 0.1);
}
#hk-app .search .clear-btn svg {
	width: 16px;
	height: 16px;
}

/* Öneriler (suggest) */
#hk-app .suggest {
	position: absolute;
	left: 0;
	right: 0;
	top: 48px;
	background: #fff;
	border: 2px solid var(--line);
	border-radius: 14px;
	box-shadow: var(--shadow);
	overflow: hidden;
	display: none;
	z-index: 100;
}
#hk-app .suggest.visible {
	display: block;
}
#hk-app .suggest ul {
	list-style: none;
	margin: 0;
	padding: 6px;
}
#hk-app .suggest li {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 12px;
	border-radius: 10px;
	cursor: pointer;
}
#hk-app .suggest li:hover,
#hk-app .suggest li.active {
	background: var(--chip);
}
#hk-app .suggest .tag {
	font-size: 12px;
	color: #888;
	margin-left: auto;
}

/* ----------------------------------
   4) Actions & Buttons
---------------------------------- */
#hk-app .actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

#hk-app .buton {
	height: 36px;
	padding: 0 20px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	text-align: center;
	gap: 8px;
	border: 1px solid var(--brand);
	color: var(--brand);
	background: #fff;
	font-weight: 500;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.3s ease;
}
#hk-app .buton:hover {
	background: #fff5f5;
}
#hk-app .buton.primary {
	background: var(--brand);
	color: #fff;
	border-color: var(--brand);
}
#hk-app .buton.primary:hover {
	background: #e03539;
	border-color: #e03539;
}

#hk-app .btn-all {
	height: 36px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	text-align: center;
	gap: 8px;
	color: var(--brand);
	font-weight: 400;
	font-size: 16px;
	cursor: pointer;
	transition: transform 0.2s ease;
}
#hk-app .btn-all::after {
	content: '↗';
	margin: 2px 10px 0 0;
	font-size: 1em;
}
#hk-app .btn-all:hover {
	transform: translateY(-3px);
}

#hk-app .desktop-actions {
	display: flex;
}
#hk-app .mobile-menu-btn {
	display: none;
	width: 40px;
	height: 40px;
	border: none;
	background: none;
	cursor: pointer;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 4px;
	padding: 8px;
	margin-left: auto;
}
#hk-app .mobile-menu-btn span {
	width: 24px;
	height: 2px;
	background: var(--ink);
	transition: all 0.3s ease;
	border-radius: 2px;
}
#hk-app .mobile-menu-btn.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}
#hk-app .mobile-menu-btn.active span:nth-child(2) {
	opacity: 0;
}
#hk-app .mobile-menu-btn.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -6px);
}

/* ----------------------------------
   5) Mobile Menu
---------------------------------- */
#hk-app .mobile-menu {
	position: fixed;
	inset: 0 0 0 0;
	width: 100%;
	height: 100vh;
	background: rgba(0, 0, 0, 0.5);
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}
#hk-app .mobile-menu.active {
	opacity: 1;
	visibility: visible;
}
#hk-app .mobile-menu-content {
	position: absolute;
	top: 0;
	right: 0;
	width: 320px;
	max-width: 90vw;
	height: 100vh;
	background: #fff;
	transform: translateX(100%);
	transition: transform 0.3s ease;
	overflow-y: auto;
	padding: 10px 20px;
}
#hk-app .mobile-menu.active .mobile-menu-content {
	transform: translateX(0);
}

#hk-app .mobile-menu-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 2px;
	margin-bottom: 30px;
	padding-bottom: 20px;
}
#hk-app .mobile-logo {
	width: 170px;
	height: auto;
}

#hk-app .mobile-menu-close {
	width: 40px;
	height: 40px;
	padding: 0;
	border: none;
	background: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: right;
	border-radius: 50%;
	transition: background 0.2s ease;
}
#hk-app .mobile-menu-close:hover {
	background: var(--chip);
}

#hk-app .mobile-actions .btn {
	height: 36px;
	padding: 0 20px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	text-align: center;
	gap: 8px;
	border: 1px solid var(--brand);
	color: var(--brand);
	background: #fff;
	font-weight: 500;
	font-size: 18px;
	cursor: pointer;
	transition: all 0.3s ease;
}

#hk-app .mobile-actions .btn.primary {
	background: var(--brand);
	color: #fff;
	border-color: var(--brand);
}

#hk-app .mobile-actions {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-bottom: 30px;
}
#hk-app .mobile-actions .btn {
	width: 100%;
	justify-content: center;
	height: 48px;
	font-size: 18px;
}

/* ----------------------------------
   6) Language Dropdown
---------------------------------- */
#hk-app .lang {
	position: relative;
}
#hk-app .lang-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px;
	border: none;
	border-radius: 999px;
	background: #f9f9f9;
	line-height: 1;
	cursor: pointer;
	transition: background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
#hk-app .lang-btn:hover {
	background: #efefef;
}
#hk-app .lang-btn .flag {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	object-fit: cover;
	display: block;
}
#hk-app .lang-btn .code {
	font-weight: 700;
	letter-spacing: 0.5px;
}
#hk-app .lang-btn .chevron {
	opacity: 0.8;
	transition: transform 0.2s ease, opacity 0.2s ease;
}
#hk-app .lang-btn:hover .chevron {
	opacity: 1;
}
#hk-app .lang-btn[aria-expanded='true'] .chevron {
	transform: rotate(180deg);
}

#hk-app .lang-menu {
	position: absolute;
	top: 40px;
	right: 0;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 16px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
	padding: 8px;
	min-width: 100px;
	z-index: 100;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-8px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
#hk-app .lang-menu.visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
#hk-app .lang-menu button {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 16px;
	border: none;
	background: transparent;
	border-radius: 12px;
	cursor: pointer;
	font-size: 0.8em;
	font-weight: 600;
	color: var(--ink);
	transition: all 0.2s ease;
	position: relative;
}
#hk-app .lang-menu button:hover {
	background: var(--chip);
}
#hk-app .lang-menu button .flag {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	object-fit: cover;
}

#hk-app .mobile-lang {
	margin: 50px 10px;
}
#hk-app .mobile-lang-options {
	display: flex;
	gap: 10px;
}
#hk-app .mobile-lang-options button {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px;
	border: 1px solid var(--line);
	background: #fff;
	border-radius: 12px;
	cursor: pointer;
	font-size: 15px;
	font-weight: 600;
	color: var(--ink);
	transition: all 0.2s ease;
}
#hk-app .mobile-lang-options button.active {
	border-color: var(--brand);
	background: #fff5f5;
	color: var(--brand);
}
#hk-app .mobile-lang-options button .flag {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	object-fit: cover;
}

/* ----------------------------------
   7) Hero / Banner Carousel
---------------------------------- */
#hk-app .hero {
	max-width: 1320px;
	margin: 22px auto 0;
	padding: 0 20px;
}
#hk-app .banner {
	position: relative;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: #f7f7f7;
	aspect-ratio: 20/5;
	height: auto;
}
#hk-app .hero .banner {
	border-radius: var(--radius-lg);
	overflow: hidden !important;
	isolation: isolate;
}

#hk-app .hero .slides {
	gap: 0;
}
#hk-app .hero .slide {
	flex: 0 0 100%;
}

#hk-app .slides {
	display: flex;
	width: 100%;
	height: 100%;
	transition: transform 0.5s ease;
}
#hk-app .slide {
	flex: 0 0 100%;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 48px;
	font-weight: bold;
	color: #fff;
}

/* --- Banner katman ve link --- */
#hk-app .slide {
	position: relative;
}
#hk-app .bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}
#hk-app .bg-gradient {
	background: var(--grad, linear-gradient(135deg, #111 0%, #333 100%));
}
#hk-app .bg-image {
	background-image: var(--img);
	background-size: cover;
	background-position: center;
}
#hk-app .scrim {
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
}

/* Tüm bannerı tıklanabilir yapan görünmez link */
#hk-app .banner-link {
	position: absolute;
	inset: 0;
	z-index: 1; /* kartın altında, ok ve dotların altında kalacak */
}

/* --- Orta konumlu dikey kart --- */
#hk-app .banner-card {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: clamp(4px, 1.6vw, 8px);
	padding: clamp(14px, 2.4vw, 28px) clamp(18px, 3vw, 36px);
	border-radius: 16px;
	color: var(--ink);
	max-width: min(760px, 90%);
}

#hk-app .banner-card .brandmark {
	width: auto;
	height: clamp(60px, 8vw, 120px);
	object-fit: contain;
	background-color: #fff;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 8px;
	padding: 12px;
	margin-bottom: 10px;
}

#hk-app .banner-card .brand-name {
	margin: 0;
	font-weight: 600;
	font-size: clamp(18px, 3vw, 26px);
	line-height: 1;
}

#hk-app .banner-card .brand-tagline {
	margin: 0;
	font-weight: 400;
	font-size: clamp(14px, 1.4vw, 18px);
	line-height: 1.4;
	opacity: 0.95;
}

/* Açık fotoğraflarda koyu kart istersen bu sınıfı slide’a ekle: .slide.is-light */
#hk-app .slide.is-light #hk-app .banner-card {
	background: rgba(255, 255, 255, 0.92);
	color: var(--ink);
}

/* Oklar ve noktalar her şeyin üstünde kalsın */
#hk-app .banner .nav {
	z-index: 4;
}
#hk-app .banner .dots {
	z-index: 5;
}

/* Mobil uyarlama */
@media (max-width: 768px) {
	#hk-app .banner-card {
		padding: 16px 18px;
		gap: 10px;
		width: 80%;
	}
	#hk-app .banner-card .brandmark {
		height: 80px;
	}
}

/* Carousel arrows */
#hk-app .nav {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	pointer-events: none;
	padding: 0 8px;
}
#hk-app .nav button {
	pointer-events: auto;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	border: none;
	background: none;
	display: grid;
	place-items: center;
	cursor: pointer;
	transition: all 0.3s;
	opacity: 0.3;
}
#hk-app .nav button:hover {
	opacity: 1;
}
#hk-app .nav button:active {
	transform: scale(0.95);
}
#hk-app .nav svg {
	width: 60px;
	height: 60px;
}

/* Carousel dots */
#hk-app .dots {
	position: absolute;
	left: 50%;
	bottom: 10px;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
	padding: 6px 10px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.2);
}
#hk-app .dots button {
	width: 12px;
	height: 12px;
	border-radius: 100%;
	border: none;
	background: rgba(255, 255, 255, 0.2);
	cursor: pointer;
	transition: all 0.3s;
}
#hk-app .dots button:hover {
	transform: scale(1.1);
	background: rgba(255, 255, 255, 0.9);
}
#hk-app .dots button.active {
	background: rgba(255, 255, 255, 0.6);
}

/* ----------------------------------
   8) Feature Bullets
---------------------------------- */
#hk-app .bullets {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin: 40px 0 40px;
}
#hk-app .bullet {
	display: flex;
	gap: 12px;
	padding: 14px;
}
#hk-app .bullet img {
	margin-right: 0.6em;
}
#hk-app .bullet h4 {
	margin: 0;
	font-size: 19px;
	font-weight: 500;
	color: var(--brand);
}
#hk-app .bullet p {
	margin: 0;
	font-size: 19px;
	font-weight: 500;
	color: var(--ink);
}

/* ----------------------------------
   9) Sections & Categories
---------------------------------- */
#hk-app .section {
	max-width: 1320px;
	margin: 50px auto;
	padding: 0 20px;
}
#hk-app .section-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
}
#hk-app .section-head h2 {
	font-size: 25px;
	margin: 0;
	font-weight: 500;
}
#hk-app .section-head .nav-arrows {
	display: flex;
	gap: 8px;
	align-items: center;
}
#hk-app .section-head .nav-arrows button {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 1px solid var(--line);
	background: #fff;
	display: grid;
	place-items: center;
	cursor: pointer;
	transition: all 0.2s;
}
#hk-app .section-head .nav-arrows button:hover {
	background: #f5f5f5;
	border-color: #ccc;
}
#hk-app .section-head .nav-arrows button:disabled {
	opacity: 0.4;
	cursor: not-allowed;
}
#hk-app .section-head .nav-arrows svg {
	width: 16px;
	height: 16px;
}

#hk-app .cat-strip {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 24px;
	overflow: hidden;
}
#hk-app .cat-strip .section-head {
	padding-bottom: 10px;
	border-bottom: solid 1px #efefef;
}

#hk-app .cat-carousel {
	position: relative;
	overflow: hidden;
}
#hk-app .cat-track {
	will-change: transform;
	display: flex;
	gap: 40px;
	transition: transform 0.5s ease;
	padding: 16px 16px 0 16px;
}

#hk-app .cat-item {
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	cursor: pointer;
	transition: transform 0.2s;
}
#hk-app .cat-item:hover {
	transform: translateY(-4px);
}

#hk-app .cat-icon {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background-color: var(--brand);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 24px;
	transition: all 0.3s;
}
#hk-app .cat-icon img {
	width: 36px;
	height: 36px;
	color: #fff;
	background: url('assets/images/cat-icons/egitim.svg') no-repeat center/contain;
}

#hk-app .cat-item:hover .cat-icon {
	transform: scale(1);
}

#hk-app .cat-info {
	text-align: center;
}
#hk-app .cat-count {
	font-size: 13px;
	color: var(--brand);
	font-weight: 400;
	margin-bottom: 2px;
}
#hk-app .cat-name {
	font-size: 14.5px;
	font-weight: 600;
	color: #222;
	line-height: 1.2;
	width: 72px;
}

/* ----------------------------------
   10) Horizontal Rows (Books)
---------------------------------- */
#hk-app .row-scroll {
	display: flex;
	gap: 40px;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 8px 2px 20px;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
}
#hk-app .row-scroll::-webkit-scrollbar {
	height: 6px;
}
#hk-app .row-scroll::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 10px;
}
#hk-app .row-scroll::-webkit-scrollbar-thumb {
	background: #ccc;
	border-radius: 10px;
}
#hk-app .row-scroll::-webkit-scrollbar-thumb:hover {
	background: #aaa;
}

#hk-app .book-card {
	flex: 1;
	min-width: 200px;
	cursor: pointer;
}
#hk-app .book-card,
#hk-app .book-card .book-cover {
	transition: all 0.3s ease;
}
#hk-app .book-card:hover {
	transform: translateY(-3px);
}
#hk-app .book-card:hover .book-title {
	text-decoration: underline;
}
#hk-app .book-card:hover .book-cover {
	-webkit-box-shadow: 1px 3px 8px rgba(0, 0, 0, 0.2);
	box-shadow: 1px 3px 8px rgba(0, 0, 0, 0.2);
}
#hk-app .book-cover {
	width: 100%;
	aspect-ratio: 1 / 1.45;
	object-fit: cover;
	border-radius: 8px;
	background: #f0f0f0;
	position: relative;
	overflow: hidden;
}
#hk-app .book-cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#hk-app .book-title {
	margin: 20px 0 10px;
	font-weight: 600;
	font-size: 18px;
	line-height: 1.3;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
#hk-app .book-meta {
	color: #999;
	font-size: 16px;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* ----------------------------------
   11) Partners (Logo bandı)
---------------------------------- */
#hk-app .partners {
	background-color: #fff;
	border-top: 1px solid #efefef;
}
#hk-app .partners-wrap {
	max-width: 1320px;
	margin: 0 auto;
	padding: 30px 0;
	overflow: hidden;
}
#hk-app .partners-section {
	width: 100%;
	overflow: hidden;
	position: relative;
}

#hk-app .partners-container {
	overflow: hidden;
	cursor: grab;
	user-select: none;
}
#hk-app .partners-container.dragging {
	cursor: grabbing;
}

#hk-app .partners-container .partners {
	display: flex;
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: transform;
}
#hk-app .partners-container .partners.no-transition {
	transition: none;
}

#hk-app .partner-item {
	flex: 0 0 calc(100% / 6);
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
}
#hk-app .partner {
	max-width: 100%;
	max-height: 40px;
	width: auto;
	height: auto;
	object-fit: contain;
	transition: all 0.3s ease;
	pointer-events: none;
	opacity: 0.9;
}
#hk-app .partners-container:not(.dragging) .partner-item:hover #hk-app .partner {
	opacity: 1;
	transform: scale(1.1);
}

/* ----------------------------------
   12) Footer
---------------------------------- */
#hk-app footer {
	border-top: 1px solid var(--line);
	background: #fff;
}
#hk-app .foot {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	max-width: 1320px;
	margin: 0 auto;
	padding: 40px 20px;
}
#hk-app .footer-logo {
	width: 180px;
	height: auto;
	display: block;
	margin-bottom: 40px;
}

#hk-app .social-text {
	position: relative;
	display: inline-block;
	font-size: 16px;
	color: #666;
}
#hk-app .social-text::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -8px;
	width: 50px;
	height: 2px;
	background-color: #666;
	border-radius: 2px;
}

#hk-app .social {
	display: flex;
	gap: 20px;
	margin-top: 30px;
}
#hk-app .social img {
	width: 30px;
	opacity: 0.6;
	transition: opacity 0.3s ease;
}
#hk-app .social img:hover {
	opacity: 1;
}

#hk-app .foot-right {
	justify-self: end;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	align-items: right;
}
#hk-app .foot-right div {
	padding: 0 40px 0 80px;
}
#hk-app .foot h5 {
	margin: 0 0 8px;
	font-size: 16px;
}
#hk-app .foot ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 10px;
}
#hk-app .foot ul li a {
	color: #333;
	font-size: 16px;
}
#hk-app .foot ul li a:hover {
	color: var(--brand);
}
#hk-app .foot ul.destek {
	gap: 12px;
}
#hk-app .foot ul.destek li a {
	font-weight: 600;
}

#hk-app .copyright {
	max-width: 1320px;
	border-top: 1px solid #efefef;
	padding-top: 24px;
	margin: 0 auto;
	color: #666;
	font-size: 14px;
	text-align: center;
	min-height: 100px;
}

/* ----------------------------------
   13) Intro (landing üstü)
---------------------------------- */
#hk-app .intro {
	position: relative;
	padding-top: max(16px, env(safe-area-inset-top));
	height: calc(100vh - var(--topbar-h));
	background: #fff;
	display: grid;
	align-content: center;
	justify-items: center;
	gap: 10px;
	transition: opacity 0.5s ease, transform 0.5s ease;
}
#hk-app .intro .topbar-logo {
	width: 220px;
}
#hk-app .intro .search {
	width: min(640px, 92vw);
}
#hk-app .intro h3.slogan {
	text-align: center;
	color: #676767;
	font-weight: 400;
	font-size: 20px;
	margin: 12px;
}
#hk-app .intro .intro-logo {
	width: 280px;
	height: auto;
	display: block;
}
#hk-app .intro .intro-actions {
	margin-top: 80px;
	color: #888;
	text-align: center;
	font-weight: 400;
	transition: all 0.2s ease;
	cursor: pointer;
}
#hk-app .intro .intro-actions p {
	font-size: 16px;
	margin: 16px 0;
}
#hk-app .intro .intro-actions .btn-kesfet {
	width: 32px;
	aspect-ratio: 1 / 1;
	border-radius: 9999px;
	border: 1px solid #888;
	display: inline-grid;
	place-items: center;
	transition: all 0.2s ease;
	justify-self: center;
}
#hk-app .intro .intro-actions:hover .btn-kesfet {
	transform: translateY(4px);
	background-color: #f9f9f9;
}
body.intro-dismissed #hk-app #intro {
	display: none !important;
}

/* ----------------------------------
   14) Responsive
---------------------------------- */

/* <= 1200px */
@media (max-width: 1200px) {
	#hk-app .partner-item {
		flex: 0 0 calc(100% / 5);
	}
}

/* <= 1024px (tablet yatay/dikey) */
@media (max-width: 1024px) {
	#hk-app .bullets {
		grid-template-columns: 1fr;
	}

	#hk-app .banner {
		aspect-ratio: 16/7;
	}

	#hk-app .cat-track {
		gap: 30px;
	}
	#hk-app .cat-item {
		min-width: 96px;
	}
	#hk-app .cat-icon {
		width: 64px;
		height: 64px;
	}
	#hk-app .cat-icon img {
		width: 32px;
		height: 32px;
	}
	#hk-app .cat-name {
		width: 64px;
		font-size: 0.85em;
	}
}

@media (max-width: 992px) {
	#hk-app .partner-item {
		flex: 0 0 calc(100% / 4);
	}
}

@media (max-width: 768px) {
	#hk-app .topbar {
		padding: 12px 20px;
		gap: 12px;
	}

	#hk-app .desktop-logo,
	#hk-app .desktop-actions {
		display: none;
	}

	#hk-app .mobile-avatar {
		display: block;
	}
	#hk-app .mobile-menu-btn {
		display: flex;
	}

	#hk-app .mobile-menu-btn {
		display: flex; /* ikon görünür olsun */
		margin-left: auto; /* sağa yapışsın */
		align-items: center;
		justify-content: center;
		position: relative;
		z-index: 3; /* olası üst katmanlar butonu örtmesin */
	}

	/* Mobile search */
	#hk-app .search-wrap {
		justify-content: stretch;
	}
	#hk-app .search {
		max-width: none;
	}
	#hk-app .search input {
		height: 40px;
		font-size: 1em;
		padding: 0 40px;
	}
	#hk-app .search .icon {
		left: 12px;
		width: 24px;
		height: 24px;
	}
	#hk-app .search .clear-btn {
		right: 12px;
		width: 18px;
		height: 18px;
	}
	#hk-app .search .clear-btn svg {
		width: 14px;
		height: 14px;
	}

	#hk-app .hero {
		margin: 20px auto 0;
		padding: 40px 20px;
	}
	#hk-app .banner {
		aspect-ratio: 16/9;
	}

	#hk-app .nav button {
		width: 36px;
		height: 36px;
	}
	#hk-app .nav svg {
		width: 24px;
		height: 24px;
	}
	#hk-app .dots {
		bottom: 8px;
	}

	#hk-app .bullets {
		grid-template-columns: 1fr;
	}
	#hk-app .section {
		margin: 30px auto;
	}
	#hk-app .section-head {
		margin-bottom: 2px;
	}
	#hk-app .section-head h2 {
		font-size: 1.2em;
	}

	/* Mobil kategori düzenlemeleri */
	#hk-app .cat-track {
		gap: 16px;
		padding: 16px 0 0 0;
		touch-action: pan-x;
	}
	#hk-app .cat-item {
		min-width: 80px;
		flex-shrink: 0;
	}
	#hk-app .cat-icon {
		width: 60px;
		height: 60px;
	}
	#hk-app .cat-icon img {
		width: 30px;
		height: 30px;
	}
	#hk-app .cat-name {
		font-size: 0.8em;
		width: 60px;
	}

	#hk-app .book-card {
		min-width: 160px;
	}
	#hk-app .row-scroll {
		gap: 20px;
	}

	#hk-app .foot {
		grid-template-columns: 1fr;
	}
	#hk-app .foot-right {
		margin-top: 20px;
		justify-self: start;
		gap: 40px;
	}
	#hk-app .foot-right div {
		padding: 0;
	}

	#hk-app .partner-item {
		flex: 0 0 calc(100% / 3);
		padding: 15px;
	}
	#hk-app .partner {
		max-height: 60px;
	}
}

@media (max-width: 480px) {
	#hk-app .topbar {
		padding: 12px 15px;
		gap: 10px;
	}
	#hk-app .mobile-avatar {
		width: 36px;
		height: 36px;
		border-radius: 6px;
	}
	#hk-app .search input {
		padding: 0 44px;
	}
	#hk-app .search .icon {
		left: 12px;
		width: 24px;
		height: 24px;
	}
	#hk-app .search .clear-btn {
		right: 12px;
		width: 24px;
		height: 24px;
	}
	#hk-app .search .clear-btn svg {
		width: 12px;
		height: 12px;
	}

	#hk-app .mobile-menu-btn {
		width: 36px;
		height: 36px;
	}
	#hk-app .mobile-menu-btn span {
		width: 20px;
		height: 2px;
	}

	#hk-app .mobile-menu-content {
		width: 100%;
		max-width: 100%;
	}

	#hk-app .hero {
		margin: 15px 5px 0;
		padding: 15px;
	}
	#hk-app .banner {
		aspect-ratio: 16/10;
	}
	#hk-app .slide {
		font-size: 24px;
	}

	#hk-app .bullets {
		gap: 15px;
		margin: 30px 0 0 0;
	}
	#hk-app .bullet {
		padding: 10px;
	}
	#hk-app .bullet h4 {
		font-size: 1.1em;
	}
	#hk-app .bullet p {
		font-size: 1em;
	}

	#hk-app .section {
		margin: 30px auto;
		padding: 0 15px;
	}
	#hk-app .cat-strip {
		padding: 16px;
	}

	#hk-app .book-card {
		min-width: 140px;
	}
	#hk-app .book-title {
		font-size: 1em;
	}
	#hk-app .book-meta {
		font-size: 0.9em;
	}

	#hk-app .partner-item {
		flex: 0 0 calc(100% / 3);
		padding: 10px;
	}
	#hk-app .partner {
		max-height: 50px;
	}

	#hk-app .copyright {
		min-height: 80px;
		padding: 20px 15px;
		font-size: 0.8em;
	}
	#hk-app .foot {
		padding: 40px;
	}
	#hk-app .footer-logo {
		width: 170px;
		margin-bottom: 30px;
	}
	#hk-app .social {
		gap: 15px;
	}
	#hk-app .social img {
		width: 28px;
	}
}

.big-icon-btn {
	display: block;
	padding: 6px 10px;
	border-radius: 30px;
	cursor: pointer;
	color: #999;
	transition: all 0.3s ease;
}

.big-icon-btn.active {
	color: var(--brand);
}

.big-icon-btn:hover {
	color: #333;
	background-color: #f9f9f9;
}

.big-icon-btn svg {
	width: 24px;
	height: 24px;
	margin-top: 4px;
}
