/*
Theme Name: Levissi Mutfak
Theme URI: https://levissimutfak.com
Author: Levissi Mutfak
Description: Levissi Mutfak icin sifirdan gelistirilen custom WordPress temasi.
Version: 0.2.0
Requires at least: 6.4
Requires PHP: 8.0
Text Domain: levissi
*/

/* ---------- Tokens ---------- */
:root {
	--bg: #F8F4EC;
	--bg-alt: #EFE7D8;
	--surface: #FFFFFF;
	--ink: #221E1A;
	--ink-soft: #635C52;
	--ink-faint: #948C7E;
	--accent: #414042;
	--accent-soft: #5B5A5C;
	--gold: #FBB040;
	--gold-soft: #E89F30;
	--line: #E3D9C6;
	--radius: 2px;
	--container: 1240px;
	--font-display: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
	--font-body: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
	--font-hero: "Playfair Display", Georgia, serif;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: hidden; }
body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--ink);
	background: var(--bg);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 {
	font-family: var(--font-display);
	font-weight: 700;
	line-height: 1.15;
	margin: 0 0 0.5em;
	letter-spacing: -0.01em;
}
h1 { font-weight: 800; }
p { margin: 0 0 1em; }
.container {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 32px;
	min-width: 0;
	width: 100%;
}
.eyebrow {
	font-size: 13px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ink-faint);
	font-weight: 600;
	margin-bottom: 12px;
	display: block;
}
.btn {
	display: inline-block;
	padding: 14px 30px;
	border: 1px solid var(--accent);
	color: var(--accent);
	font-size: 14px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	font-weight: 600;
	border-radius: var(--radius);
	transition: background 0.2s ease, color 0.2s ease;
}
.btn:hover { background: var(--accent); color: #fff; }
.btn-fill {
	background: var(--gold);
	color: var(--accent);
	border-color: var(--gold);
}
.btn-fill:hover { background: var(--gold-soft); border-color: var(--gold-soft); }

/* ---------- Header ---------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(248, 244, 236, 0.92);
	backdrop-filter: blur(6px);
	border-bottom: 1px solid var(--line);
}
.site-header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 84px;
}
.site-logo { display: inline-block; line-height: 0; }
.site-logo-img { height: 54px; width: auto; display: block; }
.site-logo-img.logo-light { display: none; }
.nav-menu { display: flex; gap: 36px; }
.nav-menu li { position: relative; }
.nav-menu a {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.02em;
	position: relative;
	padding: 4px 0;
}
.nav-menu a:hover { color: var(--accent-soft); }
.nav-menu .menu-item-has-children > a { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; }
.nav-menu .menu-item-has-children > a::after {
	content: "";
	width: 6px;
	height: 6px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(45deg);
	transition: transform 0.15s ease;
	opacity: 0.7;
}
.nav-menu .menu-item-has-children.is-open > a::after { transform: rotate(225deg); }
.header-cta { display: flex; align-items: center; gap: 24px; }
.nav-toggle { display: none; }
.cta-icon-btn { display: inline-flex; align-items: center; gap: 8px; }
.cta-icon { width: 18px; height: 18px; flex: 0 0 auto; }

@media (min-width: 861px) {
	.nav-menu .sub-menu {
		position: absolute;
		top: 100%;
		left: 50%;
		list-style: none;
		min-width: 220px;
		margin-top: 14px;
		background: var(--surface);
		border: 1px solid var(--line);
		border-radius: var(--radius);
		padding: 8px 0;
		box-shadow: 0 12px 28px rgba(34,30,26,0.14);
		opacity: 0;
		visibility: hidden;
		transform: translateX(-50%) translateY(6px);
		transition: opacity 0.15s ease, transform 0.15s ease;
		z-index: 60;
	}
	.nav-menu li.is-open > .sub-menu {
		opacity: 1;
		visibility: visible;
		transform: translateX(-50%) translateY(0);
	}
	.nav-menu .sub-menu a,
	.is-anasayfa .site-header .nav-menu .sub-menu a,
	.is-anasayfa .site-header.is-scrolled .nav-menu .sub-menu a {
		display: block;
		padding: 10px 20px;
		color: var(--ink);
		white-space: nowrap;
		font-size: 14px;
	}
	.nav-menu .sub-menu a:hover,
	.is-anasayfa .site-header .nav-menu .sub-menu a:hover {
		color: var(--accent-soft);
		background: var(--bg-alt);
	}
}

@media (max-width: 860px) {
	.site-logo { order: 1; }
	.header-cta { order: 2; margin-left: auto; }
	.nav-toggle { order: 3; margin-left: 10px; display: block; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--ink); }
	.site-header.cta-open .site-logo { display: none; }

	.cta-icon-btn { display: inline-flex; align-items: center; justify-content: center; gap: 0; width: 40px; height: 40px; padding: 0; border-radius: 999px; overflow: hidden; white-space: nowrap; transition: width 0.25s ease, padding 0.25s ease; }
	.cta-icon-btn .cta-icon { flex: 0 0 auto; }
	.cta-icon-btn .cta-text { display: inline-block; max-width: 0; opacity: 0; transition: max-width 0.25s ease, opacity 0.2s ease; }
	.cta-icon-btn.is-revealed { width: auto; padding: 0 18px; gap: 8px; }
	.cta-icon-btn.is-revealed .cta-text { max-width: 220px; opacity: 1; }

	.nav-menu { position: fixed; top: 84px; left: 0; right: 0; bottom: 0; width: 100%; height: calc(100vh - 84px); margin: 0; background: var(--bg); flex-direction: column; padding: 32px; gap: 20px; transform: translateY(-10px); opacity: 0; pointer-events: none; transition: 0.2s ease; z-index: 40; overflow-y: auto; }
	.nav-menu.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
	.nav-menu .sub-menu { list-style: none; margin: 0; max-height: 0; overflow: hidden; display: flex; flex-direction: column; gap: 14px; transition: max-height 0.2s ease, margin 0.2s ease; }
	.nav-menu li.is-open > .sub-menu { margin: 14px 0 0 18px; max-height: 200px; }
	.nav-menu .sub-menu a { font-size: 15px; color: var(--ink-soft); padding: 0; }
}

/* Anasayfa: tam ekran hero uzerinde seffaf, kaydirilinca dolan header */
.is-anasayfa .site-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	background: transparent;
	backdrop-filter: none;
	border-bottom: 1px solid transparent;
	transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
}
.is-anasayfa .site-header .logo-dark { display: none; }
.is-anasayfa .site-header .logo-light { display: block; }
.is-anasayfa .site-header .nav-menu a { color: #fff; }
.is-anasayfa .site-header .nav-toggle { color: #fff; }
.is-anasayfa .site-header .nav-menu.is-open a { color: var(--ink); }
.is-anasayfa .site-main { padding-top: 0; }

.is-anasayfa .site-header.is-scrolled {
	background: rgba(248, 244, 236, 0.92);
	backdrop-filter: blur(6px);
	border-bottom: 1px solid var(--line);
}
.is-anasayfa .site-header.is-scrolled .logo-dark { display: block; }
.is-anasayfa .site-header.is-scrolled .logo-light { display: none; }
.is-anasayfa .site-header.is-scrolled .nav-menu a { color: var(--ink); }
.is-anasayfa .site-header.is-scrolled .nav-toggle { color: var(--ink); }

/* ---------- Hero (tam ekran, kirpilmadan) ---------- */
.hero {
	position: relative;
	height: 100vh;
	height: 100svh;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
}
.hero-photo {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 50%;
	z-index: 0;
}
.hero::before {
	content: "";
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 220px;
	z-index: 1;
	background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 100%);
}
.hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: radial-gradient(ellipse 720px 460px at 0% 100%, rgba(10,8,6,0.88) 0%, rgba(10,8,6,0.55) 38%, rgba(10,8,6,0.18) 62%, rgba(10,8,6,0) 82%);
}
.hero-content {
	position: relative;
	z-index: 2;
	color: #fff;
	padding-bottom: 72px;
	max-width: 640px;
}
.hero-content .eyebrow { color: rgba(255,255,255,0.75); }
.hero-content h1 { font-family: var(--font-hero); font-weight: 500; font-size: clamp(36px, 5vw, 58px); color: #fff; }
.hero-content p { color: rgba(255,255,255,0.85); font-size: 18px; max-width: 480px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 24px; }
.hero .btn { border-color: #fff; color: #fff; }
.hero .btn:hover { background: #fff; color: var(--ink); }
.hero .btn-fill { background: #fff; color: var(--ink); }
.hero .btn-fill:hover { background: var(--bg-alt); }

@media (max-width: 520px) {
	.hero-actions { flex-direction: column; align-items: stretch; }
	.hero-actions .btn { text-align: center; }
}

/* ---------- Section basics ---------- */
section { padding: 96px 0; }
.section-head {
	max-width: 640px;
	margin: 0 0 56px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 40px); }
.section-head p { color: var(--ink-soft); font-size: 17px; }

/* ---------- Koleksiyon grid ---------- */
.koleksiyon-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}
.koleksiyon-card {
	position: relative;
	display: block;
	border-radius: var(--radius);
	overflow: hidden;
	aspect-ratio: 4 / 5;
	background: var(--bg-alt);
}
.koleksiyon-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
	position: relative;
	z-index: 0;
}
.koleksiyon-card:hover img { transform: scale(1.05); }
.koleksiyon-card::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(0deg, rgba(15,13,11,0.85) 0%, rgba(15,13,11,0) 50%);
}
.koleksiyon-card-body {
	position: absolute;
	left: 0; right: 0; bottom: 0;
	padding: 24px;
	color: #fff;
	z-index: 2;
}
.koleksiyon-card-body .num { font-size: 12px; letter-spacing: 0.15em; color: rgba(255,255,255,0.7); }
.koleksiyon-card-body h3 { color: #fff; font-size: 26px; margin-bottom: 4px; }
.koleksiyon-card-body p { color: rgba(255,255,255,0.82); font-size: 14px; margin: 0; }

/* 3B rozeti — gezilebilir sahnesi olan koleksiyonun kartinda.
   Kartin ustunde (z-index 2) cunku ::after gradyani 1'de ve rozet
   fotografin acik kalan ust yarisinda duruyor. Altin renk bilerek:
   3B sahnenin kendi arayuz rengi de bu, iki yuzey ayni aileden okunuyor.

   Rozet ILK HALINDEN BUYUK. Kucuk ve sessiz bir pil, alti kartlik bir
   izgarada goze hic carpmiyordu — oysa isi tam olarak goze carpmak. Uc
   kanal birlikte calisiyor: boyut, nabiz ve kartin kendi altin cercevesi.
   Uc ayri kanal, cunku birini kacirsa digeri yakaliyor. */
.koleksiyon-card-rozet {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px 10px 13px;
	border-radius: 999px;
	background: var(--gold);
	color: var(--accent);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	box-shadow: 0 4px 16px rgba(15, 13, 11, 0.45);
	transition: transform 0.3s ease;
	animation: levissi-rozet-nabiz 2.4s ease-in-out infinite;
}
.koleksiyon-card-rozet svg { width: 17px; height: 17px; }

/* Nabiz: rozetin cevresine yayilip sonen bir halka. Rengi degistirmiyor,
   yalnizca cevresini genisletiyor — okunabilirlik bozulmadan hareket
   veriyor ve hareket, duran bir izgarada dikkatin gittigi tek sey. */
@keyframes levissi-rozet-nabiz {
	0%, 100% { box-shadow: 0 4px 16px rgba(15,13,11,0.45), 0 0 0 0 rgba(251,176,64,0.55); }
	50%      { box-shadow: 0 4px 16px rgba(15,13,11,0.45), 0 0 0 12px rgba(251,176,64,0); }
}

/* Sahnesi olan kart izgarada da farkli okunsun: ince altin cerceve.
   Rozet fotografin acik bir yerine denk gelirse tek basina kaybolabiliyor;
   cerceve kartin tamamini isaretliyor.

   Sinif PHP'den geliyor, :has() ile secilmiyor: :has() eski tarayicilarda
   dusuyor ve cerceve sessizce kayboluyor. Sinif her yerde calisiyor. */
.koleksiyon-card-demolu {
	box-shadow: 0 0 0 2px var(--gold);
}

.koleksiyon-card:hover .koleksiyon-card-rozet { transform: scale(1.06); }

/* Hareket hassasiyeti olan kullanicida nabiz duruyor; boyut ve cerceve
   kaliyor, yani rozet yine belirgin. */
@media (prefers-reduced-motion: reduce) {
	.koleksiyon-card-rozet { animation: none; }
}

@media (max-width: 960px) {
	.koleksiyon-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
	.koleksiyon-grid { grid-template-columns: 1fr; }
}

/* ---------- USP list (Neden Levissi) ---------- */
.usp-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
}
.usp-item {
	position: relative;
}
.usp-grid:not(.usp-grid--3col) > .usp-item:not(.usp-item--foto):not(:first-child)::before {
	content: "";
	position: absolute;
	top: 4px;
	bottom: 4px;
	left: -20px;
	width: 1px;
	background: var(--line);
}
.usp-item .usp-icon {
	width: 40px;
	height: 40px;
	color: var(--gold);
	margin-bottom: 16px;
}
.usp-item .usp-icon svg {
	width: 100%;
	height: 100%;
}
.usp-item h3 { font-size: 18px; line-height: 1.3; min-height: 2.6em; margin-bottom: 8px; }
.usp-item p { color: var(--ink-soft); font-size: 15px; margin: 0; }
.usp-item--foto .usp-photo {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: var(--radius);
	margin-bottom: 16px;
}
.usp-item--foto h3 { min-height: auto; }
.usp-item--foto .kapak-teknik-photo {
	aspect-ratio: 2 / 3;
	object-fit: contain;
	background: var(--bg);
}

.usp-grid--3col { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 860px) {
	.usp-grid { grid-template-columns: repeat(2, 1fr); }
	.usp-grid:not(.usp-grid--3col) > .usp-item:nth-child(odd)::before { display: none; }
}

/* ---------- Katalog PDF indirme ---------- */
.katalog-indir {
	display: flex;
	align-items: center;
	gap: 32px;
	background: var(--bg-alt);
	border-radius: var(--radius);
	padding: 40px 48px;
}
.katalog-indir-icon {
	flex: none;
	width: 56px;
	height: 56px;
	color: var(--gold);
}
.katalog-indir-icon svg { width: 100%; height: 100%; }
.katalog-indir-metin { flex: 1; }
.katalog-indir-metin h2 { font-size: clamp(22px, 2.4vw, 28px); margin-bottom: 8px; }
.katalog-indir-metin p { color: var(--ink-soft); margin: 0; }
.katalog-indir .btn { flex: none; white-space: nowrap; }

@media (max-width: 780px) {
	.katalog-indir { flex-direction: column; text-align: center; padding: 36px 28px; }
}

/* ---------- CTA banner ---------- */
.cta-banner {
	background: var(--bg-alt);
	text-align: center;
	padding: 88px 0;
}
.cta-banner h2 { font-size: clamp(26px, 3vw, 36px); }
.cta-banner p { color: var(--ink-soft); max-width: 520px; margin: 0 auto 28px; }

/* ---------- Koleksiyon detay ---------- */
.koleksiyon-hero {
	position: relative;
	min-height: 70vh;
	display: flex;
	align-items: flex-end;
}
.koleksiyon-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.koleksiyon-hero::after {
	content: "";
	position: absolute; inset: 0;
	z-index: 1;
	background: radial-gradient(ellipse 850px 560px at 0% 100%, rgba(10,8,6,0.85) 0%, rgba(10,8,6,0.48) 42%, rgba(10,8,6,0.12) 68%, rgba(10,8,6,0) 85%);
}
.koleksiyon-hero-content { position: relative; z-index: 2; color: #fff; padding-bottom: 56px; }
.koleksiyon-hero-content h1 { color: #fff; font-size: clamp(36px, 5vw, 56px); }
.koleksiyon-hero-content .slogan { color: rgba(255,255,255,0.85); font-size: 18px; }

/* 3B daveti — basligin hemen altinda. Bu koleksiyonun en guclu kozu
   fotograf degil, icinde yurunebilmesi; o yuzden sayfaya girer girmez
   goruluyor. */
.koleksiyon-hero-demo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 20px;
}
.koleksiyon-hero-demo svg { width: 18px; height: 18px; }
.koleksiyon-hero-demo-not {
	margin: 10px 0 0;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.72);
}

/* Koleksiyon sayfasinda .btn-fill serinin kendi rengine donuyor
   (bkz. .koleksiyon-intro .btn-fill). Hero'daki demo butonu bunun
   DISINDA tutuluyor: koyu fotograf uzerinde koyu accent okunmuyor,
   altin zeminli buton her seride ayni netlikte duruyor. */
.koleksiyon-page .koleksiyon-hero-demo {
	background: var(--gold);
	border-color: var(--gold);
	color: var(--accent);
}
.koleksiyon-page .koleksiyon-hero-demo:hover {
	background: var(--gold-soft);
	border-color: var(--gold-soft);
	color: var(--accent);
}

@media (max-width: 640px) {
	/* Telefonda hero zaten dar; buton tam genisligi alsin ki basparmakla
	   isabet etmek kolay olsun. */
	.koleksiyon-hero-demo {
		width: 100%;
		justify-content: center;
	}
}

.koleksiyon-intro {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	padding: 88px 0 48px;
}
.koleksiyon-intro .aciklama p { color: var(--ink-soft); font-size: 16px; }
.koleksiyon-intro .ozellikler li {
	padding: 14px 0;
	border-top: 1px solid var(--line);
	font-size: 15px;
	color: var(--ink-soft);
}
.koleksiyon-intro .ozellikler li:before { content: "— "; color: var(--ink-faint); }
.renk-list { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.renk-chip {
	border: 1px solid var(--line);
	padding: 8px 16px;
	font-size: 13px;
	border-radius: 999px;
	color: var(--ink-soft);
}

@media (max-width: 860px) {
	.koleksiyon-intro { grid-template-columns: 1fr; gap: 32px; padding-top: 56px; }
}

.kapak-yapisi { padding: 0 0 48px; }
.kapak-yapisi-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(160px, 260px));
	gap: 20px;
	margin-top: 16px;
}
.kapak-yapisi-item {
	margin: 0;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: 0 16px 28px -16px rgba(0,0,0,0.35);
}
.kapak-yapisi-item img {
	width: 100%;
	height: auto;
	object-fit: contain;
}

@media (max-width: 480px) {
	.kapak-yapisi-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
	.aciklama-govde { flex-direction: column; }
	.kapak-yapisi-mini { flex-direction: row; width: 100%; }
	.kapak-yapisi-mini-item { flex: 1; }
}

.diger-koleksiyonlar {
	background: var(--bg-alt);
	padding: 80px 0;
}

.aksesuar-vitrin { padding: 80px 0; }
.aksesuar-vitrin-cta {
	display: flex;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
	margin-top: 48px;
}
.aksesuar-vitrin-link { font-size: 14px; font-weight: 600; color: var(--ink-soft); }
.aksesuar-vitrin-link:hover { color: var(--k-accent, var(--accent)); }

/* ---------- Katalog galeri (degisken boyutlu, katalog sayfasi ritmi) ---------- */
.katalog-galeri {
	display: flex;
	flex-direction: column;
	gap: 28px;
	padding: 12px 0 40px;
}
.kg-full {
	display: block;
	width: 100%;
	line-height: 0;
	cursor: zoom-in;
}
.kg-full img {
	width: 100%;
	height: clamp(360px, 62vw, 760px);
	object-fit: cover;
	display: block;
}
.kg-spread {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
	min-height: 420px;
}
.kg-inset {
	order: 1;
	display: block;
	line-height: 0;
	cursor: zoom-in;
	overflow: hidden;
	border-radius: var(--radius);
}
.kg-inset img {
	width: 100%;
	height: 100%;
	min-height: 340px;
	object-fit: cover;
	transition: transform 0.5s ease;
}
.kg-inset:hover img { transform: scale(1.04); }
.kg-caption {
	order: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 40px;
	border-radius: var(--radius);
}
.kg-caption p {
	font-family: var(--font-display);
	font-weight: 500;
	font-size: clamp(22px, 2.4vw, 30px);
	line-height: 1.35;
	color: #fff;
	margin: 0;
	max-width: 320px;
}
.kg-spread--ters .kg-inset { order: 2; }
.kg-spread--ters .kg-caption { order: 1; }

@media (max-width: 760px) {
	.kg-spread { grid-template-columns: 1fr; min-height: 0; }
	.kg-spread--ters .kg-inset,
	.kg-spread--ters .kg-caption,
	.kg-inset,
	.kg-caption { order: 0; }
	.kg-caption { padding: 32px; }
	.kg-inset img { min-height: 280px; }
}

/* ---------- Koleksiyon sayfasi temasi ---------- */
/* Her koleksiyon kendi katalog rengini (--k-accent / --k-koyu-rgb) tasir. */
.koleksiyon-page .eyebrow:not(.eyebrow-light) { color: var(--k-accent); }
.koleksiyon-page .koleksiyon-hero-content .eyebrow-light { color: rgba(255,255,255,0.85); }

.koleksiyon-page .koleksiyon-hero::after {
	background: radial-gradient(ellipse 850px 560px at 0% 100%, rgba(var(--k-koyu-rgb), 0.88) 0%, rgba(var(--k-koyu-rgb), 0.5) 42%, rgba(var(--k-koyu-rgb), 0.15) 68%, rgba(var(--k-koyu-rgb), 0) 85%);
}

.koleksiyon-page .koleksiyon-intro .btn-fill {
	background: var(--k-accent);
	border-color: var(--k-accent);
	color: #fff;
}
.koleksiyon-page .koleksiyon-intro .btn-fill:hover {
	background: rgba(var(--k-koyu-rgb), 1);
	border-color: rgba(var(--k-koyu-rgb), 1);
	color: #fff;
}

.koleksiyon-page .ozellikler li:before { color: var(--k-accent); }

.koleksiyon-page .diger-koleksiyonlar {
	background: rgba(var(--k-accent-rgb), 0.08);
}

.renk-chip {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	border: 1px solid var(--k-accent, var(--line));
	color: var(--ink);
	padding: 6px 14px 6px 8px;
	font-size: 13px;
	border-radius: 999px;
}
.renk-nokta {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	display: inline-block;
	border: 1px solid rgba(0,0,0,0.15);
	flex-shrink: 0;
	background-size: cover;
	background-position: center;
}
.renk-chip em {
	font-style: normal;
	color: var(--ink-faint);
	font-size: 11px;
	margin-left: 2px;
}

/* ---------- Renk karti ---------- */
.renk-karti {
	background: var(--surface);
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	padding: 88px 0;
}
.renk-grup { margin-bottom: 44px; }
.renk-grup:last-child { margin-bottom: 0; }
.renk-grup h4 {
	font-family: var(--font-body);
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-weight: 600;
	color: var(--ink-soft);
	margin: 0 0 20px;
}
.renk-vurgu {
	text-transform: none;
	letter-spacing: 0;
	font-weight: 500;
	color: var(--k-accent);
}
.renk-swatch-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 22px;
}
.renk-swatch {
	display: flex;
	flex-direction: column;
	width: 100px;
}
.renk-swatch-kutu {
	width: 56px;
	height: 56px;
	border-radius: 3px;
	box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08);
	margin-bottom: 10px;
	background-size: cover;
	background-position: center;
}
.renk-swatch-cam {
	opacity: 0.82;
	position: relative;
	overflow: hidden;
	box-shadow: inset 0 0 0 1px rgba(255,255,255,0.5), inset 0 -14px 18px rgba(0,0,0,0.14);
}
.renk-swatch-cam::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(125deg, rgba(255,255,255,0.75) 0%, rgba(255,255,255,0.2) 20%, rgba(255,255,255,0) 42%, rgba(255,255,255,0) 66%, rgba(255,255,255,0.4) 100%);
	mix-blend-mode: screen;
}
.renk-swatch-cam::after {
	content: '';
	position: absolute;
	top: -15%;
	left: 20%;
	width: 20%;
	height: 130%;
	background: rgba(255,255,255,0.3);
	transform: rotate(-22deg);
}
.renk-swatch-ad {
	font-size: 13px;
	color: var(--ink);
	line-height: 1.3;
}
.renk-swatch-kod {
	font-size: 11px;
	color: var(--ink-faint);
	margin-top: 3px;
}
.renk-grup-satir {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	margin-top: 8px;
}

@media (max-width: 760px) {
	.renk-grup-satir { grid-template-columns: 1fr; gap: 36px; }
}

/* ---------- Lightbox ---------- */
.lightbox {
	position: fixed;
	inset: 0;
	background: rgba(15,13,11,0.94);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 200;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease;
	padding: 40px;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 100%; max-height: 100%; object-fit: contain; }
.lightbox-close {
	position: absolute;
	top: 24px; right: 32px;
	color: #fff;
	font-size: 28px;
	background: none;
	border: none;
	cursor: pointer;
}

/* ---------- Hakkımızda ---------- */
.hakkimizda-hero {
	padding: 72px 0 40px;
	max-width: 720px;
}
.sayilar-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	padding: 48px 0 96px;
	border-top: 1px solid var(--line);
}
.sayilar-grid .sayi {
	font-family: var(--font-display);
	font-size: 44px;
	color: var(--accent);
}
.sayilar-grid .etiket {
	font-size: 14px;
	color: var(--ink-soft);
	margin-top: 4px;
}

@media (max-width: 760px) {
	.sayilar-grid { grid-template-columns: repeat(2, 1fr); }
}

.hakkimizda-story-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}
.hakkimizda-story-text .eyebrow { display: block; margin-bottom: 12px; }
.hakkimizda-story-text h2 { font-size: 30px; margin-bottom: 18px; }
.hakkimizda-story-img {
	margin: 0;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--bg-alt);
	overflow: hidden;
}
.hakkimizda-story-photo { display: block; width: 100%; height: auto; filter: grayscale(1); }
.hakkimizda-story-img figcaption {
	padding: 14px 20px;
	font-size: 13px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--ink-soft);
	border-top: 1px solid var(--line);
	background: var(--surface);
}

.felsefe-flow {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
}
.felsefe-item {
	position: relative;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--surface);
	overflow: hidden;
}
.felsefe-photo {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	filter: grayscale(1);
}
.felsefe-body { padding: 24px; }
.felsefe-num {
	display: block;
	font-family: var(--font-display);
	font-size: 13px;
	font-weight: 700;
	color: var(--gold-soft);
	letter-spacing: 0.06em;
	margin-bottom: 16px;
}
.felsefe-icon {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--bg-alt);
	color: var(--accent);
	margin-bottom: 18px;
}
.felsefe-icon svg { width: 22px; height: 22px; }
.felsefe-item h3 { font-size: 16px; margin-bottom: 8px; }
.felsefe-item p { font-size: 14px; color: var(--ink-soft); margin: 0; }

@media (max-width: 860px) {
	.hakkimizda-story-grid { grid-template-columns: 1fr; gap: 40px; }
	.felsefe-flow { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
	.felsefe-flow { grid-template-columns: 1fr; }
}

/* ---------- Tasarım Aracı tanıtımı ---------- */
.tsa-hero {
	padding: 72px 0 40px;
	max-width: 760px;
}
.tsa-hero h1 { font-size: clamp(32px, 4.2vw, 48px); }
.tsa-hero p { color: var(--ink-soft); font-size: 18px; }
.tsa-hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin: 28px 0 16px; }
.tsa-hero-not { font-size: 14px; color: var(--ink-faint); margin: 0; }

.tsa-video {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: #0d0f12;
	overflow: hidden;
	line-height: 0;
}
.tsa-video video { display: block; width: 100%; height: auto; }

/*
 * Adimlar bir ORDERED LIST: sira anlamli ve ekran okuyucuya da oyle
 * duyulmali. Gorunen numara ::before degil kendi elemani — 01/02 bicimi
 * PHP'de uretiliyor ve listenin CSS sayacindan bagimsiz.
 */
.tsa-adimlar {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 28px;
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: none;
}
.tsa-adim {
	border-top: 2px solid var(--gold);
	padding-top: 20px;
}
.tsa-adim-no {
	display: block;
	font-family: var(--font-display);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: var(--gold-soft);
	margin-bottom: 12px;
}
/* min-height: baslik 1 ya da 2 satir olsun, paragraflar ayni kotta bassin. */
.tsa-adim h3 { font-size: 17px; line-height: 1.3; min-height: 2.6em; margin-bottom: 8px; }
.tsa-adim p { font-size: 14px; color: var(--ink-soft); margin: 0; }

@media (max-width: 1040px) {
	.tsa-adimlar { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
	.tsa-adimlar { grid-template-columns: 1fr; gap: 24px; }
}

/* ---------- İletişim ---------- */
.talep-form-wrap {
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin: 8px 0 96px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--surface);
}
.talep-form-photo { width: 100%; height: 100%; min-height: 480px; object-fit: cover; }
.talep-form { padding: 48px; }
.talep-form h2 { font-size: 24px; margin-bottom: 24px; }
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 8px; }
.form-row input, .form-row textarea {
	width: 100%;
	border: 1px solid var(--line);
	background: var(--surface);
	padding: 14px 16px;
	font-family: var(--font-body);
	font-size: 15px;
	border-radius: var(--radius);
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
	outline: none;
	border-color: var(--accent-soft);
}
.form-row textarea { min-height: 120px; resize: vertical; }
.form-msg { padding: 14px 16px; margin-bottom: 18px; border-radius: var(--radius); font-size: 14px; }
.form-msg-success { background: #eef4ee; color: #2f5c33; border: 1px solid #b9d6bb; }
.form-msg-error { background: #f6eaea; color: #7a2c2c; border: 1px solid #e0b7b7; }

.select-wrap { position: relative; }
.select-wrap select {
	width: 100%;
	border: 1px solid var(--line);
	background: var(--surface);
	padding: 14px 40px 14px 16px;
	font-family: var(--font-body);
	font-size: 15px;
	border-radius: var(--radius);
	color: var(--ink);
	appearance: none;
	-webkit-appearance: none;
	cursor: pointer;
}
.select-wrap::after {
	content: "";
	position: absolute;
	right: 17px;
	top: 50%;
	width: 8px;
	height: 8px;
	margin-top: -6px;
	border-right: 1.5px solid var(--ink-soft);
	border-bottom: 1.5px solid var(--ink-soft);
	transform: rotate(45deg);
	pointer-events: none;
}

.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
@media (max-width: 560px) {
	.form-grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
	.talep-form-wrap { grid-template-columns: 1fr; }
	.talep-form-photo { min-height: 260px; }
}

/* ---------- Mağazalarımız ---------- */
.magaza-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	padding-bottom: 96px;
}
.magaza-item { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.magaza-harita { display: block; width: 100%; height: 180px; border: 0; pointer-events: none; }
.magaza-yol-tarifi {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	margin: 20px 28px 0;
	padding: 12px 20px;
	text-align: center;
}
.magaza-item h3 { font-size: 18px; margin: 20px 28px 12px; }
.magaza-item p { color: var(--ink-soft); font-size: 14px; margin: 0 28px 6px; }
.magaza-item p:last-child { margin-bottom: 28px; }
.magaza-item a:hover { color: var(--accent); }
.magaza-tel a {
	display: inline-block;
	font-size: 20px;
	font-weight: 700;
	color: var(--ink);
	letter-spacing: 0.01em;
}
.magaza-tel a:hover { color: var(--gold-soft); }

@media (max-width: 760px) {
	.magaza-grid { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.site-footer {
	background: var(--accent);
	color: rgba(255,255,255,0.75);
	padding: 72px 0 32px;
}
.footer-top {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 40px;
	padding-bottom: 48px;
	border-bottom: 1px solid rgba(255,255,255,0.14);
}
.footer-top h4 { color: var(--gold); font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 18px; font-family: var(--font-body); font-weight: 600; }
.footer-top .site-logo-img { height: 46px; margin-bottom: 4px; }
.footer-top p { font-size: 14px; margin-top: 16px; }
.footer-top ul li { margin-bottom: 10px; }
.footer-top ul a { font-size: 14px; }
.footer-top ul a:hover { color: #fff; }
.footer-bottom {
	display: flex;
	justify-content: space-between;
	padding-top: 28px;
	font-size: 13px;
}

@media (max-width: 860px) {
	.footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
	.footer-top { grid-template-columns: 1fr; }
	.footer-bottom { flex-direction: column; gap: 8px; }
}

/* ---------- Generic page fallback ---------- */
.page-basic { padding: 72px 0 96px; max-width: 760px; }
