/* =========================================================
   Gelsin Kitap — Header stilleri (v2, modern tasarım)

   Yapı: turuncu üst bar → beyaz ana satır (logo, arama, hesap/sepet)
         → turuncu menü çubuğu. Mobilde beyaz çekmece menü.

   Not: Woodmart'ın genel ul/li, input, button ve div stilleri bu
   header'a sızıyordu. Bu yüzden tüm seçiciler "html body .gk-header"
   ile başlar; temanın ezmeye çalıştığı özelliklerde !important var.
   ========================================================= */

:root{
	/* --- Renkler: değiştirmek için sadece burayı düzenleyin --- */
	--gk-primary: #F87A0F;          /* logo turuncusu: menü çubuğu, sepet, butonlar */
	--gk-primary-deep: #E0680A;     /* üst bar ve turuncu hover tonu */
	--gk-primary-text: #B85405;     /* beyaz zeminde turuncu yazı (okunaklı ton) */
	--gk-primary-soft: #FFF1E4;     /* açık turuncu zemin: hover vurguları */
	--gk-on-primary: #FFFFFF;       /* turuncu zemin üstündeki yazı ve ikonlar */

	--gk-ink: #1F1B16;              /* ana yazı rengi */
	--gk-muted: #756D63;            /* ikincil yazı */
	--gk-surface: #FFFFFF;
	--gk-surface-2: #F5F2EE;        /* arama kutusu, ikon daireleri, mobil alt menüler */
	--gk-line: #ECE6DF;

	--gk-radius: 12px;
	--gk-radius-lg: 18px;
	--gk-shadow: 0 24px 48px -16px rgba(31,27,22,.28), 0 2px 6px rgba(31,27,22,.06);

	/* Woodmart'ın "site genişliği" ayarını kullanır, böylece header
	   sayfa içeriğiyle aynı hizada durur. Hizalanmazsa buraya elle
	   bir değer yazın (ör. 1400px). */
	--gk-container-w: var(--wd-container-w, 1280px);

	/* Sitenin (Woodmart) yazı tipini kullanır */
	--gk-font: var(--wd-text-font, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif);

	--gk-topbar-h: 36px;
	--gk-mainrow-h: 84px;
	--gk-nav-h: 52px;
}

/* =========================================================
   TEMEL
   ========================================================= */
html body .gk-header,
html body .gk-header *,
html body .gk-header *::before,
html body .gk-header *::after{
	box-sizing: border-box;
}

html body .gk-header{
	position: relative;
	z-index: 999998;
	isolation: isolate;
	font-family: var(--gk-font);
	color: var(--gk-ink);
	background-color: var(--gk-surface) !important;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	transition: box-shadow .2s ease;
}

/* Yapışkan header: üst bar kayıp gider, ana satır + menü üstte kalır */
html body .gk-header.gk-header--sticky{
	position: sticky;
	top: calc(-1 * var(--gk-topbar-h));
}
@media (min-width: 783px){
	html body.admin-bar .gk-header.gk-header--sticky{ top: calc(32px - var(--gk-topbar-h)); }
}
@media (min-width: 601px) and (max-width: 782px){
	html body.admin-bar .gk-header.gk-header--sticky{ top: calc(46px - var(--gk-topbar-h)); }
}
html body .gk-header.gk-stuck{
	box-shadow: 0 10px 30px -18px rgba(31,27,22,.45);
}

html body .gk-header a{ text-decoration: none; color: inherit; }
html body .gk-header ul{ list-style: none; margin: 0; padding: 0; }
html body .gk-header button{
	font: inherit;
	letter-spacing: normal;
	text-transform: none;
	color: inherit;
	background: none;
	border: 0;
	box-shadow: none;
	margin: 0;
	padding: 0;
	min-height: 0;
	cursor: pointer;
}
html body .gk-header svg{ display: block; flex-shrink: 0; }

html body .gk-header .gk-container{
	width: 100%;
	max-width: var(--gk-container-w);
	margin: 0 auto;
	padding: 0 15px;
}

/* Klavye odağı */
html body .gk-header a:focus-visible,
html body .gk-header button:focus-visible{
	outline: 2px solid var(--gk-ink);
	outline-offset: 2px;
}
html body .gk-header .gk-topbar a:focus-visible,
html body .gk-header .gk-nav a:focus-visible,
html body .gk-header .gk-nav button:focus-visible{
	outline-color: var(--gk-on-primary);
}

/* =========================================================
   ÜST BAR
   ========================================================= */
html body .gk-header .gk-topbar{
	background-color: var(--gk-primary-deep) !important;
	background-image: none !important;
	color: var(--gk-on-primary) !important;
	font-size: 12.5px;
	line-height: 1;
}
html body .gk-header .gk-topbar__inner{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	height: var(--gk-topbar-h);
}
html body .gk-header .gk-topbar__links{
	display: flex;
	align-items: center;
	gap: 2px;
	margin-left: -10px;
}
html body .gk-header .gk-topbar__links--end{
	margin-left: 0;
	margin-right: -10px;
}
html body .gk-header .gk-topbar__links li{ margin: 0; padding: 0; }
html body .gk-header .gk-topbar__links a{
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 10px;
	border-radius: 999px;
	color: var(--gk-on-primary) !important;
	font-weight: 500;
	letter-spacing: .01em;
	opacity: 1 !important;
	transition: background-color .15s ease;
}
html body .gk-header .gk-topbar__links a:hover{
	background-color: rgba(255,255,255,.16);
}

/* =========================================================
   ANA SATIR
   ========================================================= */
html body .gk-header .gk-mainrow{
	background-color: var(--gk-surface) !important;
	background-image: none !important;
	border-bottom: 1px solid var(--gk-line);
}
html body .gk-header .gk-mainrow__inner{
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	column-gap: 40px;
	height: var(--gk-mainrow-h);
}

html body .gk-header .gk-burger{ display: none; }

html body .gk-header .gk-logo{
	display: flex;
	align-items: center;
}
html body .gk-header .gk-logo img{
	display: block;
	width: auto;
	height: 46px;
	max-width: 100%;
}

/* --- Arama --- */
html body .gk-header .gk-search-wrap{
	position: relative;
	width: 100%;
	max-width: 700px;
	min-width: 0;
	margin: 0 auto;
}
html body .gk-header .gk-search{
	all: unset;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	height: 50px;
	padding: 0 5px 0 18px;
	background-color: var(--gk-surface-2);
	border: 1.5px solid transparent;
	border-radius: 999px;
	color: var(--gk-muted);
	transition: background-color .15s ease, border-color .15s ease, box-shadow .15s ease;
}
html body .gk-header .gk-search:hover{
	border-color: var(--gk-line);
}
html body .gk-header .gk-search:focus-within{
	background-color: var(--gk-surface);
	border-color: var(--gk-primary);
	box-shadow: 0 0 0 4px rgba(248,122,15,.16);
}
html body .gk-header .gk-search__icon{ color: var(--gk-muted); }
html body .gk-header .gk-search input[type="search"],
html body .gk-header .gk-search input.gk-search__input{
	all: unset;
	box-sizing: border-box;
	flex: 1 1 auto;
	min-width: 0;
	height: 100%;
	font-family: var(--gk-font);
	font-size: 15px;
	line-height: normal;
	color: var(--gk-ink);
}
html body .gk-header .gk-search input[type="search"]::placeholder{ color: var(--gk-muted); opacity: 1; }
html body .gk-header .gk-search input[type="search"]::-webkit-search-cancel-button{ -webkit-appearance: none; }
html body .gk-header .gk-search button.gk-search__btn{
	all: unset;
	box-sizing: border-box;
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	padding: 0 22px;
	border-radius: 999px;
	background-color: var(--gk-primary);
	color: var(--gk-on-primary);
	font-family: var(--gk-font);
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	transition: background-color .15s ease;
}
html body .gk-header .gk-search button.gk-search__btn:hover{ background-color: var(--gk-primary-deep); }
html body .gk-header .gk-search button.gk-search__btn:focus-visible{ outline: 2px solid var(--gk-ink); outline-offset: 2px; }

/* --- Hesap / Favoriler / Sepet --- */
html body .gk-header .gk-tools{
	display: flex;
	align-items: center;
	gap: 6px;
}
html body .gk-header .gk-tool{
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 4px;
	border-radius: 999px;
	color: var(--gk-ink) !important;
	opacity: 1 !important;
	transition: background-color .15s ease, color .15s ease;
}
html body .gk-header .gk-tool__icon{
	position: relative;
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background-color: var(--gk-surface-2);
	transition: background-color .15s ease, color .15s ease;
}
html body .gk-header .gk-tool:hover .gk-tool__icon{
	background-color: var(--gk-primary-soft);
	color: var(--gk-primary-text);
}
html body .gk-header .gk-tool__text{
	display: flex;
	flex-direction: column;
	line-height: 1.2;
	padding-right: 8px;
	white-space: nowrap;
}
html body .gk-header .gk-tool__text small{
	max-width: 130px;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 12px;
	font-weight: 400;
	color: var(--gk-muted);
}
html body .gk-header .gk-tool__text strong{
	font-size: 14px;
	font-weight: 700;
}
html body .gk-header .gk-tool__badge{
	position: absolute;
	top: -3px;
	right: -3px;
	min-width: 19px;
	height: 19px;
	padding: 0 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	border: 2px solid var(--gk-surface);
	background-color: var(--gk-primary);
	color: var(--gk-on-primary);
	font-size: 10.5px;
	font-weight: 700;
	line-height: 1;
}
html body .gk-header .gk-tool__badge.is-empty{ display: none; }

/* Sepet: turuncu hap buton */
html body .gk-header .gk-tool--cart{
	margin-left: 4px;
	padding: 4px 20px 4px 4px;
	background-color: var(--gk-primary);
	color: var(--gk-on-primary) !important;
}
html body .gk-header .gk-tool--cart:hover{
	background-color: var(--gk-primary-deep);
}
html body .gk-header .gk-tool--cart .gk-tool__icon,
html body .gk-header .gk-tool--cart:hover .gk-tool__icon{
	background-color: rgba(255,255,255,.2);
	color: var(--gk-on-primary);
}
html body .gk-header .gk-tool--cart .gk-tool__badge{
	border-color: var(--gk-primary);
	background-color: var(--gk-on-primary);
	color: var(--gk-primary-text);
}
html body .gk-header .gk-tool--cart .gk-tool__text{ padding-right: 0; }

/* =========================================================
   MENÜ ÇUBUĞU (masaüstü)
   ========================================================= */
html body .gk-header nav.gk-nav{
	position: relative;
	z-index: 2;
	background-color: var(--gk-primary) !important;
	background-image: none !important;
	opacity: 1 !important;
}
html body .gk-header .gk-nav__head,
html body .gk-header .gk-nav__footer,
html body .gk-header .gk-nav-backdrop{
	display: none;
}

html body .gk-header .gk-nav__list{
	display: flex;
	align-items: center;
	gap: 2px;
	height: var(--gk-nav-h);
	margin-left: -14px;
}
html body .gk-header .gk-nav__list > li.gk-nav__item{
	position: relative;
	display: flex;
	align-items: center;
	height: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

html body .gk-header nav.gk-nav .gk-nav__link{
	display: inline-flex;
	align-items: center;
	gap: 6px;
	height: 38px;
	padding: 0 14px;
	border-radius: 999px;
	background: transparent !important;
	color: var(--gk-on-primary) !important;
	font-family: var(--gk-font);
	font-size: 14.5px;
	font-weight: 600;
	line-height: 1;
	white-space: nowrap;
	opacity: 1 !important;
	transition: background-color .15s ease;
}
html body .gk-header nav.gk-nav .gk-nav__link:hover,
html body .gk-header nav.gk-nav .gk-nav__item.gk-open > .gk-nav__link{
	background: rgba(255,255,255,.18) !important;
}
html body .gk-header .gk-caret{
	color: currentColor;
	transition: transform .2s ease;
}
html body .gk-header .gk-nav__item.gk-open > .gk-nav__link .gk-caret{
	transform: rotate(180deg);
}

/* Kampanyalar: yüzde rozeti */
html body .gk-header .gk-nav__pct{
	display: grid;
	place-items: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: var(--gk-on-primary);
	color: var(--gk-primary-text);
	font-size: 11px;
	font-weight: 800;
	line-height: 1;
}

/* Kargo Takip: beyaz hap buton, en sağda */
html body .gk-header .gk-nav__list > li.gk-nav__cta{
	margin-left: auto;
}
html body .gk-header .gk-nav__track-btn{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	height: 36px;
	padding: 0 16px;
	border-radius: 999px;
	background-color: var(--gk-on-primary) !important;
	color: var(--gk-primary-text) !important;
	font-size: 13.5px;
	font-weight: 700;
	white-space: nowrap;
	box-shadow: 0 1px 2px rgba(31,27,22,.12);
	transition: background-color .15s ease, color .15s ease;
}
html body .gk-header .gk-nav__track-btn:hover{
	background-color: var(--gk-ink) !important;
	color: #FFFFFF !important;
}

/* =========================================================
   AÇILIR PANELLER (dropdown + mega) — ortak
   Masaüstünde JS panelleri menünün 8px altına, sabit (fixed)
   konumda yerleştirir. Kapalı paneller fareyi yakalamaz.
   ========================================================= */
html body .gk-header li.gk-nav__item .gk-dropdown,
html body .gk-header li.gk-nav__item .gk-mega{
	opacity: 0 !important;
	visibility: hidden !important;
	transform: translateY(8px) !important;
	pointer-events: none !important;
	transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s !important;
	z-index: 50;
}
html body .gk-header li.gk-nav__item.gk-open > .gk-dropdown,
html body .gk-header li.gk-nav__item.gk-open > .gk-mega{
	opacity: 1 !important;
	visibility: visible !important;
	transform: none !important;
	pointer-events: auto !important;
	transition: opacity .18s ease, transform .18s ease !important;
}

/* Opak arka plan katmanı: panel içindeki boşluklardan sayfa görünmesin */
html body .gk-header .gk-dropdown::before,
html body .gk-header .gk-mega::before{
	content: "" !important;
	position: absolute !important;
	inset: 0 !important;
	z-index: 0 !important;
	border-radius: inherit !important;
	background-color: var(--gk-surface) !important;
	box-shadow: var(--gk-shadow) !important;
	pointer-events: none !important;
}
/* Menü ile panel arasındaki 8px boşlukta fare kapanmasın diye görünmez köprü */
html body .gk-header .gk-dropdown::after,
html body .gk-header .gk-mega::after{
	content: "" !important;
	position: absolute !important;
	left: 0 !important;
	right: 0 !important;
	top: -10px !important;
	height: 10px !important;
	background: transparent !important;
}

/* --- Basit dropdown --- */
html body .gk-header li.gk-nav__item .gk-dropdown{
	position: absolute !important;
	top: calc(100% + 8px) !important;
	left: 0 !important;
	display: block !important;
	min-width: 250px !important;
	margin: 0 !important;
	padding: 8px !important;
	border: 1px solid var(--gk-line) !important;
	border-radius: var(--gk-radius) !important;
	background-color: var(--gk-surface) !important;
	box-shadow: none !important;
	list-style: none !important;
	overflow: visible !important;
}
html body .gk-header .gk-dropdown > li{
	position: relative !important;
	z-index: 1 !important;
	display: block !important;
	float: none !important;
	width: auto !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	list-style: none !important;
	opacity: 1 !important;
	visibility: inherit !important;
	transform: none !important;
}
html body .gk-header .gk-dropdown > li > a{
	display: block !important;
	padding: 10px 12px !important;
	margin: 0 !important;
	border: 0 !important;
	border-radius: 8px !important;
	background: transparent !important;
	color: var(--gk-ink) !important;
	font-size: 14px !important;
	font-weight: 500 !important;
	line-height: 1.35 !important;
	white-space: nowrap;
	transition: background-color .12s ease, color .12s ease;
}
html body .gk-header .gk-dropdown > li > a:hover{
	background-color: var(--gk-primary-soft) !important;
	color: var(--gk-primary-text) !important;
}

/* --- Mega menü --- */
html body .gk-header .gk-mega{
	position: absolute !important;
	top: calc(100% + 8px);
	left: 0;
	right: 0;
	margin: 0 !important;
	border: 1px solid var(--gk-line) !important;
	border-radius: var(--gk-radius-lg) !important;
	background-color: var(--gk-surface) !important;
	background-image: none !important;
	box-shadow: none !important;
	backdrop-filter: none !important;
	-webkit-backdrop-filter: none !important;
	overflow: visible !important;
}
html body .gk-header .gk-mega .gk-mega__grid{
	position: relative !important;
	z-index: 1 !important;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(250px, 1.15fr);
	gap: 32px;
	max-width: none;
	margin: 0;
	padding: 28px 28px 28px 32px;
	background: transparent !important;
	box-shadow: none !important;
}

/* Kolonlara temanın "kart" görünümü sızmasın */
html body .gk-header .gk-mega .gk-mega__col{
	background: none !important;
	box-shadow: none !important;
	border: 0 !important;
	border-radius: 0 !important;
	padding: 0 !important;
	margin: 0 !important;
}
html body .gk-header .gk-mega .gk-mega__col h3{
	margin: 4px 0 10px !important;
	padding: 0 !important;
	font-family: var(--gk-font) !important;
	font-size: 15px !important;
	font-weight: 700 !important;
	letter-spacing: normal !important;
	text-transform: none !important;
	line-height: 1.3 !important;
	color: var(--gk-ink) !important;
}
html body .gk-header .gk-mega .gk-mega__col ul,
html body .gk-header .gk-mega .gk-mega__col li{
	position: static !important;
	display: block !important;
	float: none !important;
	width: auto !important;
	min-width: 0 !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	list-style: none !important;
	top: auto !important;
	left: auto !important;
	right: auto !important;
	transform: none !important;
	opacity: 1 !important;
	visibility: inherit !important;
}
html body .gk-header .gk-mega .gk-mega__col ul a{
	display: block !important;
	margin: 0 0 2px -10px !important;
	padding: 8px 10px !important;
	border: 0 !important;
	border-radius: 8px !important;
	background: transparent !important;
	color: var(--gk-ink) !important;
	font-size: 14.5px !important;
	font-weight: 500 !important;
	line-height: 1.35 !important;
	transition: background-color .12s ease, color .12s ease;
}
html body .gk-header .gk-mega .gk-mega__col ul a:hover{
	background-color: var(--gk-primary-soft) !important;
	color: var(--gk-primary-text) !important;
}

/* Öne çıkan kart (Çok Satanlar / Ayın Çocuk Kitabı): turuncu zemin, beyaz yazı */
html body .gk-header .gk-mega .gk-mega__col--feature{
	padding: 22px !important;
	border-radius: 14px !important;
	background: linear-gradient(150deg, var(--gk-primary) 0%, var(--gk-primary-deep) 100%) !important;
	color: var(--gk-on-primary) !important;
}
html body .gk-header .gk-feature__art{
	width: 100%;
	max-width: 180px;
	height: auto;
	margin: 0 0 14px;
}
html body .gk-header .gk-mega .gk-mega__col--feature h3{
	margin: 0 0 6px !important;
	font-size: 19px !important;
	color: var(--gk-on-primary) !important;
}
html body .gk-header .gk-feature p{
	margin: 0 0 16px;
	font-size: 13.5px;
	line-height: 1.45;
	color: var(--gk-on-primary);
	opacity: .92;
}
html body .gk-header .gk-feature__btn{
	display: inline-flex;
	align-items: center;
	height: 38px;
	padding: 0 18px;
	border-radius: 999px;
	background-color: var(--gk-on-primary) !important;
	color: var(--gk-primary-text) !important;
	font-size: 13.5px;
	font-weight: 700;
	transition: background-color .15s ease, color .15s ease;
}
html body .gk-header .gk-feature__btn:hover{
	background-color: var(--gk-ink) !important;
	color: #FFFFFF !important;
}

/* =========================================================
   CANLI ARAMA — ÖNERİ KUTUSU
   ========================================================= */
html body .gk-header .gk-search-results{
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	right: 0;
	z-index: 999999;
	display: none;
	max-height: 460px;
	overflow-y: auto;
	padding: 8px;
	background-color: var(--gk-surface);
	border: 1px solid var(--gk-line);
	border-radius: var(--gk-radius-lg);
	box-shadow: var(--gk-shadow);
}
html body .gk-header .gk-search-results.gk-open{ display: block; }
html body .gk-header .gk-search-result{
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 8px;
	border-radius: var(--gk-radius);
	color: var(--gk-ink);
}
html body .gk-header .gk-search-result:hover,
html body .gk-header .gk-search-result.gk-active{
	background-color: var(--gk-primary-soft);
}
html body .gk-header .gk-search-result img{
	width: 44px;
	height: 60px;
	flex-shrink: 0;
	object-fit: cover;
	border-radius: 6px;
	background-color: var(--gk-surface-2);
	box-shadow: 0 1px 3px rgba(31,27,22,.15);
}
html body .gk-header .gk-search-result__info{ display: flex; flex-direction: column; gap: 3px; min-width: 0; }
html body .gk-header .gk-search-result__title{
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.3;
}
html body .gk-header .gk-search-result__price{
	font-size: 13px;
	font-weight: 700;
	color: var(--gk-primary-text);
}
html body .gk-header .gk-search-result__price del{ margin-right: 4px; font-weight: 400; color: var(--gk-muted); }
html body .gk-header .gk-search-status{
	padding: 18px 10px;
	text-align: center;
	font-size: 13.5px;
	color: var(--gk-muted);
}
html body .gk-header .gk-search-viewall{
	display: block;
	margin-top: 6px;
	padding: 12px 10px;
	border-radius: var(--gk-radius);
	background-color: var(--gk-surface-2);
	text-align: center;
	font-size: 13.5px;
	font-weight: 700;
	color: var(--gk-primary-text);
}
html body .gk-header .gk-search-viewall:hover{
	background-color: var(--gk-primary-soft);
}

/* =========================================================
   ARA KIRILIMLAR
   ========================================================= */
@media (max-width: 1180px){
	html body .gk-header .gk-tool--account .gk-tool__text{ display: none; }
	html body .gk-header .gk-mainrow__inner{ column-gap: 28px; }
	html body .gk-header nav.gk-nav .gk-nav__link{ padding: 0 11px; font-size: 14px; }
}
@media (max-width: 1100px){
	html body .gk-header .gk-nav__list{ margin-left: -9px; }
	html body .gk-header nav.gk-nav .gk-nav__link{ gap: 4px; padding: 0 9px; font-size: 13.5px; }
	/* Kargo Takip: dar ekranda sadece ikon */
	html body .gk-header .gk-nav__track-btn{ width: 38px; height: 38px; padding: 0; justify-content: center; font-size: 0; gap: 0; }
	html body .gk-header .gk-nav__track-btn svg{ width: 19px; height: 19px; }
}
@media (max-width: 1024px){
	html body .gk-header .gk-mega .gk-mega__grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
	html body .gk-header .gk-mega .gk-mega__col--feature{ display: none !important; }
	html body .gk-header .gk-mainrow__inner{ column-gap: 20px; }
	html body .gk-header .gk-tool--cart .gk-tool__text{ display: none; }
	html body .gk-header .gk-tool--cart{
		margin-left: 0;
		padding: 0;
		background-color: transparent;
	}
	html body .gk-header .gk-tool--cart .gk-tool__icon,
	html body .gk-header .gk-tool--cart:hover .gk-tool__icon{
		background-color: var(--gk-primary);
		color: var(--gk-on-primary);
	}
}
@media (min-width: 861px) and (max-width: 960px){
	html body .gk-header .gk-nav__pct{ display: none; }
	html body .gk-header .gk-caret{ width: 12px; height: 12px; }
	html body .gk-header nav.gk-nav .gk-nav__link{ padding: 0 7px; font-size: 13px; }
	html body .gk-header .gk-nav__list{ margin-left: -7px; }
	html body .gk-header .gk-logo img{ height: 38px; }
}

/* =========================================================
   MOBİL (≤ 860px)
   ========================================================= */
@media (max-width: 860px){
	:root{ --gk-topbar-h: 0px; }

	html body .gk-header .gk-topbar{ display: none !important; }

	/* --- Ana satır: [☰] [logo] ........ [♡][🛒]  +  alt satırda arama --- */
	html body .gk-header .gk-mainrow__inner{
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		column-gap: 8px;
		row-gap: 10px;
		height: auto;
		padding-top: 10px;
		padding-bottom: 12px;
	}
	html body .gk-header .gk-burger{
		all: unset;
		box-sizing: border-box;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 4px;
		width: 42px;
		height: 42px;
		flex-shrink: 0;
		border-radius: 50%;
		background-color: var(--gk-surface-2);
		cursor: pointer;
	}
	html body .gk-header .gk-burger span{
		display: block;
		width: 18px;
		height: 2px;
		border-radius: 2px;
		background-color: var(--gk-ink);
	}
	html body .gk-header .gk-burger span:nth-child(2){ width: 12px; margin-right: 6px; }
	html body .gk-header .gk-burger:focus-visible{ outline: 2px solid var(--gk-ink); outline-offset: 2px; }

	html body .gk-header .gk-logo{
		flex: 1 1 0;
		min-width: 0;
		margin-left: 4px;
	}
	html body .gk-header .gk-logo img{
		height: auto;
		max-height: 36px;
	}

	html body .gk-header .gk-search-wrap{
		order: 4;
		flex-basis: 100%;
		max-width: none;
		margin: 0;
	}
	html body .gk-header .gk-search{ height: 46px; padding-left: 16px; }
	html body .gk-header .gk-search button.gk-search__btn{ height: 36px; padding: 0 16px; font-size: 13.5px; }
	html body .gk-header .gk-search-results{
		position: fixed;
		top: auto;
		left: 12px;
		right: 12px;
		max-height: 60vh;
	}

	html body .gk-header .gk-tools{ gap: 4px; }
	html body .gk-header .gk-tool{ padding: 0; }
	html body .gk-header .gk-tool--account{ display: none; }   /* hesap bağlantısı çekmecede */

	/* --- Çekmece --- */
	html body .gk-header nav.gk-nav{
		position: fixed !important;
		top: 0 !important;
		left: 0 !important;
		z-index: 4;
		display: flex;
		flex-direction: column;
		width: 340px;
		max-width: 88vw;
		height: 100vh;
		height: 100dvh;
		background-color: var(--gk-surface) !important;
		box-shadow: 24px 0 48px -12px rgba(31,27,22,.3);
		transform: translateX(-105%);
		visibility: hidden;
		transition: transform .28s cubic-bezier(.2,.7,.2,1), visibility 0s linear .28s;
	}
	html body .gk-header nav.gk-nav.gk-nav--open{
		transform: none;
		visibility: visible;
		transition: transform .28s cubic-bezier(.2,.7,.2,1);
	}

	html body .gk-header .gk-nav__head{
		display: flex;
		flex-shrink: 0;
		align-items: center;
		justify-content: space-between;
		padding: 14px 12px 14px 20px;
		background-color: var(--gk-primary);
		color: var(--gk-on-primary);
	}
	html body .gk-header .gk-nav__title{
		font-size: 18px;
		font-weight: 700;
		color: var(--gk-on-primary);
	}
	html body .gk-header .gk-nav__close{
		all: unset;
		box-sizing: border-box;
		display: grid;
		place-items: center;
		width: 40px;
		height: 40px;
		border-radius: 50%;
		background-color: rgba(255,255,255,.2);
		color: var(--gk-on-primary);
		cursor: pointer;
	}
	html body .gk-header .gk-nav__close:hover{ background-color: rgba(255,255,255,.32); }
	html body .gk-header .gk-nav__close:focus-visible{ outline: 2px solid var(--gk-on-primary); outline-offset: 2px; }

	html body .gk-header .gk-nav__body{
		flex: 1 1 auto;
		overflow-y: auto;
		overscroll-behavior: contain;
		max-width: none;
		padding: 0;
	}
	html body .gk-header .gk-nav__list{
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		height: auto;
		margin: 0;
		padding: 6px 0;
	}
	html body .gk-header .gk-nav__list > li.gk-nav__item{
		display: block;
		height: auto;
		border-bottom: 1px solid var(--gk-line);
	}
	html body .gk-header nav.gk-nav .gk-nav__link{
		width: 100%;
		height: auto;
		min-height: 54px;
		padding: 0 20px;
		justify-content: space-between;
		border-radius: 0;
		color: var(--gk-ink) !important;
		font-size: 15.5px;
	}
	html body .gk-header nav.gk-nav .gk-nav__link:hover,
	html body .gk-header nav.gk-nav .gk-nav__item.gk-open > .gk-nav__link{
		background: var(--gk-surface-2) !important;
		color: var(--gk-primary-text) !important;
	}
	html body .gk-header .gk-caret{ color: var(--gk-muted); }

	html body .gk-header nav.gk-nav .gk-nav__link--highlight{
		justify-content: flex-start;
		gap: 10px;
		color: var(--gk-primary-text) !important;
	}
	html body .gk-header .gk-nav__pct{
		background-color: var(--gk-primary);
		color: var(--gk-on-primary);
	}

	html body .gk-header .gk-nav__list > li.gk-nav__cta{
		margin: 0;
		padding: 16px 20px 6px;
		border-bottom: 0;
	}
	html body .gk-header .gk-nav__track-btn{
		justify-content: center;
		width: 100%;
		height: 48px;
		background-color: var(--gk-primary) !important;
		color: var(--gk-on-primary) !important;
		font-size: 15px;
		box-shadow: none;
	}
	html body .gk-header .gk-nav__track-btn:hover{
		background-color: var(--gk-primary-deep) !important;
		color: var(--gk-on-primary) !important;
	}

	/* Alt menüler: akordeon */
	html body .gk-header li.gk-nav__item .gk-dropdown,
	html body .gk-header li.gk-nav__item .gk-mega{
		position: relative !important;
		top: auto !important;
		left: auto !important;
		right: auto !important;
		display: none !important;
		min-width: 0 !important;
		border: 0 !important;
		border-radius: 0 !important;
		background-color: var(--gk-surface-2) !important;
		transform: none !important;
		transition: none !important;
	}
	html body .gk-header li.gk-nav__item.gk-open > .gk-dropdown,
	html body .gk-header li.gk-nav__item.gk-open > .gk-mega{
		display: block !important;
	}
	html body .gk-header .gk-dropdown::before,
	html body .gk-header .gk-mega::before{
		background-color: var(--gk-surface-2) !important;
		box-shadow: none !important;
	}
	html body .gk-header .gk-dropdown::after,
	html body .gk-header .gk-mega::after{
		display: none !important;
	}
	html body .gk-header li.gk-nav__item .gk-dropdown{ padding: 4px 12px 12px !important; }
	html body .gk-header .gk-dropdown > li > a{ white-space: normal; }
	html body .gk-header .gk-dropdown > li > a:hover,
	html body .gk-header .gk-mega .gk-mega__col ul a:hover{
		background-color: var(--gk-surface) !important;
	}

	html body .gk-header .gk-mega .gk-mega__grid{
		grid-template-columns: 1fr;
		gap: 16px;
		padding: 8px 20px 16px 30px;
	}
	html body .gk-header .gk-mega .gk-mega__col h3{ margin: 8px 0 6px !important; }
	html body .gk-header .gk-mega .gk-mega__col--feature{ display: none !important; }

	/* Çekmece altı: hızlı bağlantılar */
	html body .gk-header .gk-nav__footer{
		display: block;
		padding: 14px 20px 28px;
	}
	html body .gk-header .gk-nav__quick{
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 8px;
	}
	html body .gk-header .gk-nav__quick li{ margin: 0; padding: 0; }
	html body .gk-header .gk-nav__quick a{
		display: block;
		padding: 11px 12px;
		border-radius: var(--gk-radius);
		background-color: var(--gk-surface-2);
		color: var(--gk-ink) !important;
		font-size: 14px;
		font-weight: 600;
		text-align: center;
	}
	html body .gk-header .gk-nav__quick a:hover{
		background-color: var(--gk-primary-soft);
		color: var(--gk-primary-text) !important;
	}
	html body .gk-header .gk-nav a:focus-visible,
	html body .gk-header .gk-nav .gk-nav__list button:focus-visible{
		outline-color: var(--gk-ink);
		outline-offset: -2px;
	}

	/* Karartma + kaydırma kilidi */
	html body .gk-header .gk-nav-backdrop{
		display: block;
		position: fixed;
		inset: 0;
		z-index: 3;
		background-color: rgba(31,27,22,.5);
		opacity: 0;
		visibility: hidden;
		transition: opacity .28s ease, visibility 0s linear .28s;
	}
	html body.gk-nav-locked .gk-header .gk-nav-backdrop{
		opacity: 1;
		visibility: visible;
		transition: opacity .28s ease;
	}
	html body.gk-nav-locked{ overflow: hidden; }
}

@media (max-width: 380px){
	html body .gk-header .gk-tool__icon{ width: 38px; height: 38px; }
	html body .gk-header .gk-burger{ width: 38px; height: 38px; }
	html body .gk-header .gk-search button.gk-search__btn{ padding: 0 13px; }
}

@media (prefers-reduced-motion: reduce){
	html body .gk-header *,
	html body .gk-header *::before{ transition: none !important; }
}