/**
 * components.css — butonlar, kartlar, yer tutucu, bolumler, formlar.
 */

/* =============================================================================
   BUTONLAR
   ========================================================================== */

.wd-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	/* min 48px dokunma hedefi */
	min-height: 48px;
	padding: 0.8rem 1.5rem;
	border: 1px solid transparent;
	border-radius: var(--wd-r-pill);
	font-family: var(--wd-font-body);
	font-size: var(--wd-t-sm);
	font-weight: 500;
	letter-spacing: 0.01em;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
	transition: background-color var(--wd-dur) var(--wd-ease),
		border-color var(--wd-dur) var(--wd-ease),
		color var(--wd-dur) var(--wd-ease),
		box-shadow var(--wd-dur) var(--wd-ease),
		transform var(--wd-dur-fast) var(--wd-ease);
}

.wd-btn:active {
	transform: translateY(1px);
}

.wd-btn--primary {
	background-color: var(--wd-wood-dark);
	border-color: var(--wd-wood-dark);
	color: var(--wd-text-on-wood);
}

.wd-btn--primary:hover {
	background-color: color-mix(in srgb, var(--wd-wood-dark) 88%, #000);
	color: var(--wd-text-on-wood);
	box-shadow: var(--wd-shadow-md);
}

[data-light="on"] .wd-btn--primary:hover {
	background-color: color-mix(in srgb, var(--wd-wood-dark) 88%, #fff);
}

.wd-btn--ghost {
	background-color: transparent;
	border-color: var(--wd-line-strong);
	color: var(--wd-text);
}

.wd-btn--ghost:hover {
	border-color: var(--wd-wood-dark);
	background-color: color-mix(in srgb, var(--wd-wood) 10%, transparent);
	color: var(--wd-text);
}

.wd-btn--quiet {
	min-height: auto;
	padding: 0.35rem 0;
	border-radius: 0;
	border-bottom: 1px solid var(--wd-line-strong);
	color: var(--wd-text);
}

.wd-btn--quiet:hover {
	border-color: var(--wd-wood-dark);
	color: var(--wd-wood-dark);
}

.wd-btn--quiet .wd-icon {
	transition: transform var(--wd-dur) var(--wd-ease-out);
}

.wd-btn--quiet:hover .wd-icon {
	transform: translateX(4px);
}

.wd-btn--whatsapp .wd-icon {
	color: #25d366;
}

.wd-btn--full {
	width: 100%;
}

.wd-btn[disabled],
.wd-btn.is-busy {
	opacity: 0.6;
	pointer-events: none;
}

/* =============================================================================
   AHSAP PANEL YER TUTUCUSU
   Gercek fotograf yoksa gosterilir. Ayni en/boy oranini kullandigi icin
   fotograflar yuklendiginde layout kaymaz.
   ========================================================================== */

.wd-ph {
	position: relative;
	display: grid;
	place-items: center;
	aspect-ratio: var(--wd-ph-ratio, 4 / 5);
	width: 100%;
	overflow: hidden;
	border-radius: var(--wd-r-md);
	background-image: linear-gradient(
		158deg,
		var(--wd-ph-a) 0%,
		var(--wd-ph-b) 52%,
		var(--wd-ph-a) 100%
	);
	isolation: isolate;
}

/* Ton varyasyonlari — bir grid icinde kartlar birbirinin kopyasi olmasin */
.wd-ph--tone1 { --wd-ph-a: #e2cdb6; --wd-ph-b: #d3b697; }
.wd-ph--tone2 { --wd-ph-a: #dfc9b4; --wd-ph-b: #c9a684; }
.wd-ph--tone3 { --wd-ph-a: #e5d4c0; --wd-ph-b: #cfb494; }
.wd-ph--tone4 { --wd-ph-a: #d9c3ad; --wd-ph-b: #c39f7d; }

[data-light="on"] .wd-ph--tone1 { --wd-ph-a: #4a3a2d; --wd-ph-b: #3a2d23; }
[data-light="on"] .wd-ph--tone2 { --wd-ph-a: #45362a; --wd-ph-b: #352a20; }
[data-light="on"] .wd-ph--tone3 { --wd-ph-a: #4f3e30; --wd-ph-b: #3d3025; }
[data-light="on"] .wd-ph--tone4 { --wd-ph-a: #423428; --wd-ph-b: #32271e; }

/* Ahsap damari */
.wd-ph__grain {
	position: absolute;
	inset: 0;
	background-image: var(--wd-grain);
	background-size: 320px 320px;
	opacity: 0.4;
	mix-blend-mode: soft-light;
	z-index: 1;
}

/* Kenar pahi — panelin fiziksel bir parca gibi durmasi icin */
.wd-ph__bevel {
	position: absolute;
	inset: 0;
	border-radius: inherit;
	z-index: 3;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.32),
		inset 0 0 0 1px rgba(60, 40, 25, 0.08),
		inset 0 -30px 48px -30px rgba(60, 40, 25, 0.28);
}

[data-light="on"] .wd-ph__bevel {
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.07),
		inset 0 0 0 1px rgba(0, 0, 0, 0.35),
		inset 0 -30px 48px -30px rgba(0, 0, 0, 0.45);
}

.wd-ph__mark {
	position: relative;
	z-index: 2;
	color: color-mix(in srgb, var(--wd-wood-dark) 42%, transparent);
}

[data-light="on"] .wd-ph__mark {
	color: color-mix(in srgb, var(--wd-light) 30%, transparent);
}

.wd-ph__mark svg {
	width: clamp(28px, 12%, 46px);
	height: auto;
}

/* Oyulmus etiket */
.wd-ph__label {
	position: absolute;
	bottom: 0.9rem;
	left: 50%;
	z-index: 4;
	transform: translateX(-50%);
	padding-inline: 0.5rem;
	font-size: 0.6875rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-align: center;
	white-space: nowrap;
	color: color-mix(in srgb, var(--wd-wood-dark) 62%, transparent);
	/* Kazinmis his: ustte koyu, altta acik */
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.42);
}

[data-light="on"] .wd-ph__label {
	color: color-mix(in srgb, var(--wd-light) 40%, transparent);
	text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
}

/* Kucuk yuzeylerde etiket ve isaret gizlenir (okunmaz olurdu) */
.wd-ph--bare .wd-ph__label,
.wd-ph--bare .wd-ph__mark {
	display: none;
}

/* Gercek gorseller: yer tutucuyla AYNI oran ve yaricap */
.wd-img {
	width: 100%;
	aspect-ratio: var(--wd-ph-ratio, 4 / 5);
	object-fit: cover;
	border-radius: var(--wd-r-md);
	background-color: var(--wd-surface-2);
}

/* =============================================================================
   ETIKETLER (badge)
   ========================================================================== */

.wd-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
}

.wd-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	padding: 0.25rem 0.6rem;
	border: 1px solid var(--wd-line-strong);
	border-radius: var(--wd-r-pill);
	background-color: color-mix(in srgb, var(--wd-surface) 70%, transparent);
	font-size: 0.6875rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	color: var(--wd-text);
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
}

.wd-badge--is-lit::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: var(--wd-light);
	box-shadow: 0 0 8px color-mix(in srgb, var(--wd-light) 80%, transparent);
}

/* =============================================================================
   URUN KARTI
   ========================================================================== */

.wd-card {
	position: relative;
	display: flex;
	flex-direction: column;
}

.wd-card__media {
	position: relative;
	overflow: hidden;
	border-radius: var(--wd-r-md);
	background-color: var(--wd-surface-2);
}

.wd-card__media .wd-ph,
.wd-card__media .wd-img {
	border-radius: 0;
}

/* Hover yakinlastirmasi — 1.03, agresif degil */
.wd-card__media .wd-img,
.wd-card__media .wd-ph {
	transition: transform var(--wd-dur-slow) var(--wd-ease-out);
	will-change: transform;
}

.wd-card:hover .wd-card__media .wd-img,
.wd-card:hover .wd-card__media .wd-ph {
	transform: scale(1.03);
}

/* Ikinci gorsel — hover'da yumusak gecis */
.wd-card__media-alt {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity var(--wd-dur-slow) var(--wd-ease);
}

.wd-card__media-alt .wd-img {
	height: 100%;
	border-radius: 0;
}

.wd-card:hover .wd-card__media-alt,
.wd-card:focus-within .wd-card__media-alt {
	opacity: 1;
}

.wd-card__badges {
	position: absolute;
	top: 0.7rem;
	left: 0.7rem;
	z-index: 4;
}

.wd-card__body {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	padding-top: var(--wd-s-4);
}

.wd-card__collection {
	font-size: var(--wd-t-xs);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--wd-muted);
}

.wd-card__title {
	font-size: var(--wd-t-md);
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: -0.015em;
}

.wd-card__title a {
	text-decoration: none;
	color: var(--wd-text);
}

/* Kartin tamami tiklanabilir olsun ama metin secilebilir kalsin */
.wd-card__title a::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 5;
}

.wd-card__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--wd-s-3);
	margin-top: 0.4rem;
}

.wd-price {
	font-size: var(--wd-t-sm);
	font-weight: 500;
	color: var(--wd-text);
}

.wd-price--quote {
	color: var(--wd-muted);
	font-style: normal;
}

.wd-price del {
	opacity: 0.55;
	margin-right: 0.4rem;
}

/* Kart icindeki CTA, kartin genel baglantisinin uzerinde kalmali */
.wd-card__foot .wd-cta-group {
	position: relative;
	z-index: 6;
}

/* =============================================================================
   HERO
   ========================================================================== */

.wd-hero {
	position: relative;
	overflow: hidden;
	padding-top: calc(var(--wd-header-h) + clamp(2rem, 1rem + 4vw, 5rem));
	padding-bottom: clamp(3rem, 2rem + 4vw, 6rem);
}

.wd-hero__inner {
	position: relative;
	z-index: 2;
}

/*
 * Baslik tam genislikte. Onceki surumde baslik iki kolonlu izgaranin
 * icindeydi ve `max-width: 21ch` ile sinirlandirilmisti; `ch` birimi
 * kapsayicinin GOVDE punto'suna gore cozuldugu icin (~8px) 92 piksellik
 * display tipografi 170 piksellik bir kutuya sikisiyor, kelimeler
 * kirilip harfler kesiliyordu. Artik baslik kendi satirinda duruyor.
 */
.wd-hero__head {
	margin-bottom: clamp(2rem, 1.2rem + 2.4vw, 3.5rem);
}

/*
 * UST hizalama (center degil): metin blogu gorselden cok daha kisa
 * oldugu icin ortalamak arada ~190 piksellik olu bosluk uretiyordu.
 * Ust hizalama, solda metin / sagda uzun gorsel seklinde bilincli bir
 * asimetrik kompozisyon kuruyor; alttaki tam genislikteki bilgi seridi
 * kompozisyonu kapatiyor.
 */
.wd-hero__body {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	align-items: start;
	gap: clamp(2rem, 1rem + 4vw, 5rem);
}

.wd-hero__text {
	position: relative;
}

.wd-hero__title {
	margin: 0;
	max-width: 20ch;
	/* ch burada dogru cozulur: yazi boyutu bu elemanin kendisinde tanimli */
	font-size: var(--wd-t-hero);
	font-weight: 500;
	line-height: 0.96;
	letter-spacing: -0.042em;
}

/*
 * Iki satir bilerek kaydirilir: elle dizilmis, editorial bir ritim verir
 * ve tek blok halinde duran jenerik hero basligindan ayirir.
 */
.wd-hero__line {
	display: block;
}

.wd-hero__line--2 {
	margin-left: clamp(0.75rem, 3vw, 3.25rem);
	color: var(--wd-wood-dark);
}

.wd-hero__lede {
	max-width: 44ch;
	margin: 0;
	font-size: var(--wd-t-md);
	color: var(--wd-muted);
}

.wd-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--wd-s-3);
	margin-top: clamp(1.75rem, 1rem + 2vw, 2.75rem);
}

/* --- Hero gorsel yigini --- */

/*
 * Gorsel kolonu sinirlandirilir. Sinirsiz birakildiginda 4:5 portre
 * gorsel ~825 piksele ulasip solundaki kisa metin blogunu dikeyde
 * ortalarken 200 piksellik olu bosluk uretiyordu.
 */
.wd-hero__media {
	position: relative;
	width: 100%;
	max-width: 470px;
	margin-inline-start: auto;
}

.wd-hero__frame {
	position: relative;
	z-index: 2;
	border-radius: var(--wd-r-lg);
	overflow: hidden;
	box-shadow: var(--wd-shadow-lg);
}

.wd-hero__frame .wd-ph,
.wd-hero__frame .wd-img {
	border-radius: 0;
}

/* Kucuk ikincil kare — kompozisyona derinlik katar */
.wd-hero__inset {
	position: absolute;
	right: clamp(-1rem, -2vw, 0rem);
	bottom: clamp(-1.5rem, -3vw, -0.5rem);
	z-index: 3;
	width: clamp(110px, 30%, 190px);
	border-radius: var(--wd-r-md);
	overflow: hidden;
	box-shadow: var(--wd-shadow-md);
	border: 4px solid var(--wd-bg);
}

.wd-hero__inset .wd-ph,
.wd-hero__inset .wd-img {
	border-radius: 0;
}

/*
 * SICAK LED PARLAMASI
 * Gunduz durumunda tamamen gorunmez (--wd-glow: 0). "Isigi Ac" ile
 * yumusakca belirir. Neon degil: genis yaricap, dusuk opaklik, dogal dusus.
 */
.wd-hero__glow {
	position: absolute;
	z-index: 1;
	top: 50%;
	right: 6%;
	width: min(760px, 82vw);
	aspect-ratio: 1;
	transform: translateY(-50%);
	pointer-events: none;
	background: radial-gradient(
		circle at center,
		color-mix(in srgb, var(--wd-light) 34%, transparent) 0%,
		color-mix(in srgb, var(--wd-light) 14%, transparent) 32%,
		transparent 66%
	);
	opacity: calc(var(--wd-glow) * 1);
	transition: opacity var(--wd-dur-slow) var(--wd-ease-out);
	will-change: opacity;
}

/* Hero'da cok hafif parallax — JS bu degiskeni gunceller */
.wd-hero__media {
	transform: translate3d(0, calc(var(--wd-parallax, 0) * 1px), 0);
}

/* --- Hero alt seridi: kisa guven isaretleri --- */

.wd-hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: clamp(1rem, 0.5rem + 1.6vw, 3rem);
	margin-top: clamp(2rem, 1.2rem + 2.4vw, 3.5rem);
	padding-top: var(--wd-s-5);
	border-top: 1px solid var(--wd-line);
}

.wd-hero__meta li {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: var(--wd-t-sm);
	color: var(--wd-muted);
}

.wd-hero__meta .wd-icon {
	color: var(--wd-wood);
}

/* =============================================================================
   BENTO IZGARASI
   Esit 6 kutu DEGIL: farkli boyutlarda, editorial ritimli kompozisyon.
   ========================================================================== */

.wd-bento {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	grid-template-areas:
		"a a b c"
		"a a b d"
		"e f f d";
	/*
	 * Satir yuksekligi ACIKCA tanimlanmali. Tanimlanmadiginda 2 satir
	 * kaplayan hucrelerin min-height'i satirlarin TOPLAMI ile karsilandigi
	 * icin tarayici ortadaki satiri neredeyse sifira indiriyordu; sonucta
	 * "buyuk" hucre komsulariyla ayni yukseklikte gorunuyor ve
	 * kompozisyonun hiyerarsisi kayboluyordu.
	 */
	grid-template-rows: repeat(3, clamp(112px, 11.5vw, 168px));
	gap: clamp(0.75rem, 0.4rem + 1.2vw, 1.25rem);
}

.wd-bento__cell:nth-child(1) { grid-area: a; }
.wd-bento__cell:nth-child(2) { grid-area: b; }
.wd-bento__cell:nth-child(3) { grid-area: c; }
.wd-bento__cell:nth-child(4) { grid-area: d; }
.wd-bento__cell:nth-child(5) { grid-area: e; }
.wd-bento__cell:nth-child(6) { grid-area: f; }

.wd-bento__cell {
	position: relative;
	display: block;
	/* Yukseklik grid satirlarindan gelir; min-height yalnizca guvenlik agi. */
	min-height: 108px;
	height: 100%;
	overflow: hidden;
	border-radius: var(--wd-r-md);
	text-decoration: none;
	color: var(--wd-text-on-wood);
	isolation: isolate;
}

.wd-bento__cell .wd-ph,
.wd-bento__cell .wd-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	aspect-ratio: auto;
	border-radius: 0;
	/*
	 * Kirpma odagi ortada degil YUKARIDA.
	 * Oda fotograflarinda urun neredeyse her zaman duvarin ust yarisinda;
	 * bento hucreleri ise cok farkli oranlarda (2x2, 1x2, 2x1). Kare bir
	 * fotografi 3.4:1 genis hucreye ortalayarak kirptigimizda urun tamamen
	 * kadraj disinda kaliyor ve etiketle icerik uyusmuyordu.
	 */
	object-position: center 32%;
	transition: transform var(--wd-dur-slow) var(--wd-ease-out);
}

.wd-bento__cell:hover .wd-ph,
.wd-bento__cell:hover .wd-img,
.wd-bento__cell:focus-visible .wd-ph,
.wd-bento__cell:focus-visible .wd-img {
	transform: scale(1.04);
}

/* Okunabilirlik icin alttan yukselen ince perde */
.wd-bento__veil {
	position: absolute;
	inset: 0;
	z-index: 2;
	background: linear-gradient(
		to top,
		rgba(30, 22, 16, 0.72) 0%,
		rgba(30, 22, 16, 0.28) 42%,
		rgba(30, 22, 16, 0.04) 100%
	);
	transition: opacity var(--wd-dur) var(--wd-ease);
}

.wd-bento__cell:hover .wd-bento__veil {
	opacity: 0.86;
}

.wd-bento__content {
	position: absolute;
	inset: auto 0 0 0;
	z-index: 3;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: var(--wd-s-3);
	padding: clamp(0.9rem, 0.5rem + 1vw, 1.5rem);
}

.wd-bento__title {
	font-family: var(--wd-font-display);
	font-size: clamp(1.0625rem, 0.95rem + 0.5vw, 1.5rem);
	font-weight: 500;
	line-height: 1.15;
	letter-spacing: -0.02em;
	color: #fffdf9;
}

.wd-bento__count {
	display: block;
	margin-top: 0.25rem;
	font-family: var(--wd-font-body);
	font-size: var(--wd-t-xs);
	font-weight: 400;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 253, 249, 0.72);
	opacity: 0;
	transform: translateY(4px);
	transition: opacity var(--wd-dur) var(--wd-ease),
		transform var(--wd-dur) var(--wd-ease-out);
}

.wd-bento__cell:hover .wd-bento__count,
.wd-bento__cell:focus-visible .wd-bento__count {
	opacity: 1;
	transform: translateY(0);
}

/* Kucuk ok — hover'da belirir */
.wd-bento__arrow {
	display: grid;
	place-items: center;
	flex: none;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background-color: rgba(255, 253, 249, 0.14);
	border: 1px solid rgba(255, 253, 249, 0.3);
	color: #fffdf9;
	opacity: 0;
	transform: translateX(-6px);
	transition: opacity var(--wd-dur) var(--wd-ease),
		transform var(--wd-dur) var(--wd-ease-out),
		background-color var(--wd-dur) var(--wd-ease);
}

.wd-bento__cell:hover .wd-bento__arrow,
.wd-bento__cell:focus-visible .wd-bento__arrow {
	opacity: 1;
	transform: translateX(0);
}

/* =============================================================================
   "ISIGI AC" GOSTERIMI
   ========================================================================== */

.wd-lightdemo {
	position: relative;
	overflow: hidden;
	background-color: var(--wd-bg-deep);
}

.wd-lightdemo__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	align-items: center;
	gap: clamp(2rem, 1rem + 4vw, 5rem);
}

.wd-lightdemo__stage {
	position: relative;
	border-radius: var(--wd-r-lg);
	overflow: hidden;
	box-shadow: var(--wd-shadow-lg);
	isolation: isolate;
}

.wd-lightdemo__layer {
	transition: opacity var(--wd-dur-slow) var(--wd-ease);
}

.wd-lightdemo__layer--on {
	position: absolute;
	inset: 0;
	opacity: 0;
}

.wd-lightdemo__layer--on .wd-img,
.wd-lightdemo__layer--on .wd-ph {
	height: 100%;
	border-radius: 0;
}

.wd-lightdemo__layer .wd-ph,
.wd-lightdemo__layer .wd-img {
	border-radius: 0;
}

[data-light="on"] .wd-lightdemo__layer--on {
	opacity: 1;
}

[data-light="on"] .wd-lightdemo__layer--off {
	opacity: 0;
}

/* Sahnenin icine sizan sicak isik */
.wd-lightdemo__bloom {
	position: absolute;
	inset: 0;
	z-index: 3;
	pointer-events: none;
	background: radial-gradient(
		ellipse at 50% 62%,
		color-mix(in srgb, var(--wd-light) 30%, transparent) 0%,
		transparent 60%
	);
	opacity: calc(var(--wd-glow) * 1);
	transition: opacity var(--wd-dur-slow) var(--wd-ease-out);
	mix-blend-mode: screen;
}

.wd-lightdemo__note {
	margin-top: var(--wd-s-5);
	font-size: var(--wd-t-xs);
	color: var(--wd-muted);
}

/* =============================================================================
   SUREC — gercek bir sira oldugu icin numaralandirma anlamli
   ========================================================================== */

.wd-process {
	display: grid;
	gap: 0;
	counter-reset: wd-step;
}

.wd-process__step {
	display: grid;
	grid-template-columns: 4.5rem minmax(0, 1fr);
	gap: clamp(1rem, 0.5rem + 1.5vw, 2.5rem);
	padding-block: clamp(1.5rem, 1rem + 1.5vw, 2.5rem);
	border-top: 1px solid var(--wd-line);
}

.wd-process__step:last-child {
	border-bottom: 1px solid var(--wd-line);
}

.wd-process__num {
	font-family: var(--wd-font-display);
	font-size: var(--wd-t-lg);
	font-weight: 400;
	line-height: 1;
	color: var(--wd-wood);
	font-variant-numeric: tabular-nums;
	letter-spacing: 0.02em;
}

.wd-process__title {
	margin: 0 0 0.5rem;
	font-size: var(--wd-t-md);
	font-weight: 500;
}

.wd-process__text {
	max-width: 62ch;
	margin: 0;
	color: var(--wd-muted);
	font-size: var(--wd-t-sm);
}

/* =============================================================================
   KOLEKSIYON / ODA SERITLERI
   ========================================================================== */

.wd-chipnav {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.wd-chip {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	min-height: 40px;
	padding: 0.45rem 1rem;
	border: 1px solid var(--wd-line-strong);
	border-radius: var(--wd-r-pill);
	font-size: var(--wd-t-sm);
	text-decoration: none;
	color: var(--wd-text);
	background-color: transparent;
	cursor: pointer;
	transition: background-color var(--wd-dur-fast) var(--wd-ease),
		border-color var(--wd-dur-fast) var(--wd-ease),
		color var(--wd-dur-fast) var(--wd-ease);
}

.wd-chip:hover {
	border-color: var(--wd-wood);
	background-color: color-mix(in srgb, var(--wd-wood) 10%, transparent);
}

.wd-chip.is-active,
.wd-chip[aria-pressed="true"] {
	background-color: var(--wd-wood-dark);
	border-color: var(--wd-wood-dark);
	color: var(--wd-text-on-wood);
}

.wd-chip__count {
	font-size: 0.6875rem;
	opacity: 0.7;
}

/* --- Oda kartlari --- */

.wd-roomcard {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: var(--wd-r-md);
	text-decoration: none;
	isolation: isolate;
}

.wd-roomcard .wd-ph,
.wd-roomcard .wd-img {
	border-radius: 0;
	object-position: center 32%;
	transition: transform var(--wd-dur-slow) var(--wd-ease-out);
}

.wd-roomcard:hover .wd-ph,
.wd-roomcard:hover .wd-img {
	transform: scale(1.03);
}

.wd-roomcard__label {
	position: absolute;
	inset: auto 0 0 0;
	z-index: 3;
	padding: clamp(0.75rem, 0.5rem + 0.8vw, 1.25rem);
	background: linear-gradient(to top, rgba(30, 22, 16, 0.7), transparent);
	color: #fffdf9;
	font-family: var(--wd-font-display);
	font-size: var(--wd-t-base);
	font-weight: 500;
}

/* =============================================================================
   OZELLIK / FARK LISTESI
   ========================================================================== */

.wd-features {
	display: grid;
	gap: clamp(1.5rem, 1rem + 2vw, 3rem);
	grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
}

.wd-feature__icon {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	margin-bottom: var(--wd-s-4);
	border: 1px solid var(--wd-line-strong);
	border-radius: 50%;
	color: var(--wd-wood-dark);
}

.wd-feature__title {
	margin: 0 0 0.5rem;
	font-size: var(--wd-t-base);
	font-weight: 600;
	font-family: var(--wd-font-body);
	letter-spacing: -0.005em;
}

.wd-feature__text {
	margin: 0;
	font-size: var(--wd-t-sm);
	color: var(--wd-muted);
}

/* =============================================================================
   ATOLYE / INSTAGRAM — editorial, 6 kare grid DEGIL
   ========================================================================== */

.wd-atelier {
	display: grid;
	grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
	gap: clamp(0.75rem, 0.4rem + 1.2vw, 1.5rem);
}

.wd-atelier__side {
	display: grid;
	gap: clamp(0.75rem, 0.4rem + 1.2vw, 1.5rem);
	grid-template-rows: 1fr 1fr;
}

.wd-atelier__item {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: var(--wd-r-md);
	text-decoration: none;
	isolation: isolate;
}

.wd-atelier__item .wd-ph,
.wd-atelier__item .wd-img {
	height: 100%;
	border-radius: 0;
	aspect-ratio: auto;
	min-height: clamp(140px, 18vw, 200px);
	/* Oda fotograflarinda urun ust yarida — kirpma odagi yukari. */
	object-position: center 32%;
}

.wd-atelier__main .wd-ph,
.wd-atelier__main .wd-img {
	min-height: clamp(300px, 40vw, 460px);
}

.wd-atelier__caption {
	position: absolute;
	inset: auto 0 0 0;
	z-index: 3;
	padding: clamp(0.75rem, 0.5rem + 0.8vw, 1.35rem);
	background: linear-gradient(to top, rgba(30, 22, 16, 0.68), transparent);
	color: #fffdf9;
	font-size: var(--wd-t-sm);
}

.wd-atelier__handle {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: var(--wd-s-5);
	font-size: var(--wd-t-sm);
	font-weight: 500;
	text-decoration: none;
	color: var(--wd-text);
}

.wd-atelier__handle:hover {
	color: var(--wd-wood-dark);
}

/* =============================================================================
   SSS — details/summary, JS gerektirmez
   ========================================================================== */

.wd-faq {
	max-width: 820px;
	border-top: 1px solid var(--wd-line);
}

.wd-faq__item {
	border-bottom: 1px solid var(--wd-line);
}

.wd-faq__q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--wd-s-4);
	padding-block: clamp(1rem, 0.8rem + 0.6vw, 1.4rem);
	font-family: var(--wd-font-display);
	font-size: var(--wd-t-md);
	font-weight: 500;
	cursor: pointer;
	list-style: none;
}

/* Varsayilan ucgen isareti kaldirilir */
.wd-faq__q::-webkit-details-marker {
	display: none;
}

.wd-faq__q::marker {
	content: "";
}

.wd-faq__icon {
	flex: none;
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	border: 1px solid var(--wd-line-strong);
	border-radius: 50%;
	color: var(--wd-wood-dark);
	transition: transform var(--wd-dur) var(--wd-ease),
		background-color var(--wd-dur) var(--wd-ease);
}

.wd-faq__item[open] .wd-faq__icon {
	transform: rotate(45deg);
	background-color: color-mix(in srgb, var(--wd-wood) 14%, transparent);
}

.wd-faq__a {
	max-width: 68ch;
	padding-bottom: var(--wd-s-5);
	color: var(--wd-muted);
	font-size: var(--wd-t-sm);
}

/* =============================================================================
   CTA SERIDI
   ========================================================================== */

.wd-ctaband {
	position: relative;
	overflow: hidden;
	padding-block: clamp(3rem, 2rem + 4vw, 6rem);
	background-color: var(--wd-wood-dark);
	color: var(--wd-text-on-wood);
	isolation: isolate;
}

.wd-ctaband__grain {
	position: absolute;
	inset: 0;
	z-index: 1;
	background-image: var(--wd-grain);
	background-size: 320px 320px;
	opacity: 0.14;
	mix-blend-mode: overlay;
	pointer-events: none;
}

.wd-ctaband__inner {
	position: relative;
	z-index: 2;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: var(--wd-s-6);
}

.wd-ctaband__title {
	max-width: 26ch;
	margin: 0;
	color: var(--wd-text-on-wood);
}

.wd-ctaband__text {
	max-width: 48ch;
	margin: var(--wd-s-4) 0 0;
	color: color-mix(in srgb, var(--wd-text-on-wood) 80%, transparent);
}

.wd-ctaband .wd-btn--primary {
	background-color: var(--wd-text-on-wood);
	border-color: var(--wd-text-on-wood);
	color: var(--wd-wood-dark);
}

.wd-ctaband .wd-btn--primary:hover {
	background-color: color-mix(in srgb, var(--wd-text-on-wood) 88%, var(--wd-wood));
	color: var(--wd-wood-dark);
}

.wd-ctaband .wd-btn--ghost {
	border-color: color-mix(in srgb, var(--wd-text-on-wood) 40%, transparent);
	color: var(--wd-text-on-wood);
}

.wd-ctaband .wd-btn--ghost:hover {
	border-color: var(--wd-text-on-wood);
	background-color: color-mix(in srgb, var(--wd-text-on-wood) 12%, transparent);
	color: var(--wd-text-on-wood);
}

/* =============================================================================
   BOS DURUM
   ========================================================================== */

.wd-empty {
	max-width: 46ch;
	margin-inline: auto;
	padding-block: clamp(3rem, 2rem + 3vw, 5rem);
	text-align: center;
}

.wd-empty__icon {
	display: grid;
	place-items: center;
	width: 62px;
	height: 62px;
	margin: 0 auto var(--wd-s-5);
	border: 1px solid var(--wd-line-strong);
	border-radius: 50%;
	color: var(--wd-wood);
}

.wd-empty__title {
	margin: 0 0 var(--wd-s-4);
	font-size: var(--wd-t-lg);
}

.wd-empty__text {
	margin: 0 0 var(--wd-s-6);
	color: var(--wd-muted);
}

/* =============================================================================
   FORMLAR
   ========================================================================== */

.wd-field {
	display: block;
	margin-bottom: var(--wd-s-4);
}

.wd-field__label {
	display: block;
	margin-bottom: 0.4rem;
	font-size: var(--wd-t-sm);
	font-weight: 500;
}

.wd-field__req {
	color: var(--wd-wood-dark);
}

.wd-field__hint {
	display: block;
	margin-top: 0.35rem;
	font-size: var(--wd-t-xs);
	color: var(--wd-muted);
}

.wd-input,
.wd-textarea,
.wd-select {
	width: 100%;
	padding: 0.8rem 1rem;
	background-color: var(--wd-surface);
	border: 1px solid var(--wd-line-strong);
	border-radius: var(--wd-r-sm);
	/* iOS'ta odaklanınca sayfayi yakinlastirmamasi icin en az 16px */
	font-size: 1rem;
	line-height: 1.5;
	color: var(--wd-text);
	transition: border-color var(--wd-dur-fast) var(--wd-ease),
		box-shadow var(--wd-dur-fast) var(--wd-ease);
	-webkit-appearance: none;
	appearance: none;
}

.wd-textarea {
	min-height: 120px;
	resize: vertical;
}

.wd-select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' fill='none' stroke='%23716b64' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	padding-right: 2.5rem;
}

.wd-input:focus,
.wd-textarea:focus,
.wd-select:focus {
	outline: none;
	border-color: var(--wd-wood);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--wd-wood) 22%, transparent);
}

.wd-input::placeholder,
.wd-textarea::placeholder {
	color: color-mix(in srgb, var(--wd-muted) 72%, transparent);
}

.wd-field.has-error .wd-input,
.wd-field.has-error .wd-textarea,
.wd-field.has-error .wd-select {
	border-color: #b3453f;
}

.wd-field__error {
	display: block;
	margin-top: 0.35rem;
	font-size: var(--wd-t-xs);
	color: #b3453f;
}

/* Honeypot — ekran okuyuculardan da gizli, botlar doldurur */
.wd-honeypot {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.wd-field-row {
	display: grid;
	gap: var(--wd-s-4);
	grid-template-columns: repeat(auto-fit, minmax(min(210px, 100%), 1fr));
}

/* Dosya secici */
.wd-file {
	display: flex;
	align-items: center;
	gap: var(--wd-s-3);
	padding: 0.8rem 1rem;
	border: 1px dashed var(--wd-line-strong);
	border-radius: var(--wd-r-sm);
	background-color: var(--wd-surface);
	cursor: pointer;
	font-size: var(--wd-t-sm);
	color: var(--wd-muted);
	transition: border-color var(--wd-dur-fast) var(--wd-ease);
}

.wd-file:hover {
	border-color: var(--wd-wood);
}

.wd-file input[type="file"] {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
}

/* Form geri bildirimi */
.wd-formmsg {
	margin-bottom: var(--wd-s-4);
	padding: 0.9rem 1.1rem;
	border-radius: var(--wd-r-sm);
	font-size: var(--wd-t-sm);
	border: 1px solid transparent;
}

.wd-formmsg--ok {
	background-color: color-mix(in srgb, var(--wd-sage) 26%, var(--wd-surface));
	border-color: color-mix(in srgb, var(--wd-sage) 55%, transparent);
	color: var(--wd-text);
}

.wd-formmsg--err {
	background-color: color-mix(in srgb, #b3453f 12%, var(--wd-surface));
	border-color: color-mix(in srgb, #b3453f 40%, transparent);
	color: var(--wd-text);
}

.wd-notice {
	margin-bottom: var(--wd-s-5);
	padding: 0.9rem 1.1rem;
	background-color: var(--wd-surface-2);
	border-left: 3px solid var(--wd-wood);
	border-radius: 0 var(--wd-r-sm) var(--wd-r-sm) 0;
	font-size: var(--wd-t-sm);
}

/* =============================================================================
   DRAWER / MODAL (teklif formu)
   ========================================================================== */

.wd-modal {
	position: fixed;
	inset: 0;
	z-index: var(--wd-z-modal);
	visibility: hidden;
	pointer-events: none;
}

.wd-modal.is-open {
	visibility: visible;
	pointer-events: auto;
}

.wd-modal__scrim {
	position: absolute;
	inset: 0;
	background-color: rgba(23, 18, 15, 0.55);
	opacity: 0;
	transition: opacity var(--wd-dur) var(--wd-ease);
	-webkit-backdrop-filter: blur(3px);
	backdrop-filter: blur(3px);
}

.wd-modal.is-open .wd-modal__scrim {
	opacity: 1;
}

.wd-modal__panel {
	position: absolute;
	inset-block: 0;
	right: 0;
	display: flex;
	flex-direction: column;
	width: min(560px, 100vw);
	background-color: var(--wd-bg);
	box-shadow: var(--wd-shadow-lg);
	transform: translateX(102%);
	transition: transform var(--wd-dur-slow) var(--wd-ease-out);
	overflow-y: auto;
	overscroll-behavior: contain;
}

.wd-modal.is-open .wd-modal__panel {
	transform: translateX(0);
}

.wd-modal__head {
	position: sticky;
	top: 0;
	z-index: 2;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: var(--wd-s-4);
	padding: var(--wd-s-5);
	background-color: var(--wd-bg);
	border-bottom: 1px solid var(--wd-line);
}

.wd-modal__title {
	margin: 0;
	font-size: var(--wd-t-lg);
}

.wd-modal__sub {
	margin: 0.35rem 0 0;
	font-size: var(--wd-t-sm);
	color: var(--wd-muted);
}

.wd-modal__body {
	padding: var(--wd-s-5);
}

/* =============================================================================
   SAYFALAMA
   ========================================================================== */

.wd-pagination {
	margin-top: clamp(2.5rem, 1.5rem + 2.5vw, 4rem);
}

.wd-pagination ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.4rem;
}

.wd-pagination a,
.wd-pagination span {
	display: grid;
	place-items: center;
	min-width: 44px;
	min-height: 44px;
	padding-inline: 0.5rem;
	border: 1px solid var(--wd-line);
	border-radius: var(--wd-r-sm);
	font-size: var(--wd-t-sm);
	text-decoration: none;
	color: var(--wd-text);
	transition: border-color var(--wd-dur-fast) var(--wd-ease),
		background-color var(--wd-dur-fast) var(--wd-ease);
}

.wd-pagination a:hover {
	border-color: var(--wd-wood);
	background-color: color-mix(in srgb, var(--wd-wood) 10%, transparent);
}

.wd-pagination .current {
	background-color: var(--wd-wood-dark);
	border-color: var(--wd-wood-dark);
	color: var(--wd-text-on-wood);
}

.wd-pagination .dots {
	border-color: transparent;
	min-width: auto;
}

/* =============================================================================
   METIN ICERIGI (blog, sayfa)
   ========================================================================== */

.wd-prose {
	max-width: 68ch;
	font-size: var(--wd-t-md);
}

.wd-prose > * + * {
	margin-top: var(--wd-s-5);
}

.wd-prose h2 {
	margin-top: var(--wd-s-8);
	font-size: var(--wd-t-xl);
}

.wd-prose h3 {
	margin-top: var(--wd-s-7);
	font-size: var(--wd-t-lg);
}

.wd-prose ul,
.wd-prose ol {
	padding-left: 1.3rem;
}

.wd-prose ul li {
	list-style: none;
	position: relative;
	padding-left: 0.35rem;
}

.wd-prose ul li::before {
	content: "";
	position: absolute;
	left: -0.85rem;
	top: 0.72em;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background-color: var(--wd-wood);
}

.wd-prose ol li {
	list-style: decimal;
}

.wd-prose li + li {
	margin-top: 0.5rem;
}

.wd-prose img {
	border-radius: var(--wd-r-md);
}

.wd-prose a {
	color: var(--wd-wood-dark);
	text-decoration-color: color-mix(in srgb, var(--wd-wood) 55%, transparent);
}

/* Taslak icerik uyarisi (yasal sayfalar) */
.wd-draft-notice {
	margin-bottom: var(--wd-s-6);
	padding: 1rem 1.25rem;
	background-color: color-mix(in srgb, var(--wd-light) 22%, var(--wd-surface));
	border: 1px solid color-mix(in srgb, var(--wd-light) 55%, transparent);
	border-radius: var(--wd-r-sm);
	font-size: var(--wd-t-sm);
	color: var(--wd-text);
}

/* =============================================================================
   BLOG KARTI
   ========================================================================== */

.wd-postcard {
	display: flex;
	flex-direction: column;
	position: relative;
}

.wd-postcard__media {
	overflow: hidden;
	border-radius: var(--wd-r-md);
}

.wd-postcard__media .wd-ph,
.wd-postcard__media .wd-img {
	border-radius: 0;
	transition: transform var(--wd-dur-slow) var(--wd-ease-out);
}

.wd-postcard:hover .wd-ph,
.wd-postcard:hover .wd-img {
	transform: scale(1.03);
}

.wd-postcard__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem;
	margin: var(--wd-s-4) 0 0.5rem;
	font-size: var(--wd-t-xs);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--wd-muted);
}

.wd-postcard__title {
	font-size: var(--wd-t-md);
	font-weight: 500;
	line-height: 1.28;
}

.wd-postcard__title a {
	text-decoration: none;
}

.wd-postcard__title a::after {
	content: "";
	position: absolute;
	inset: 0;
}

.wd-postcard__excerpt {
	margin: 0.6rem 0 0;
	font-size: var(--wd-t-sm);
	color: var(--wd-muted);
}

/* =============================================================================
   TERIM BAGLANTILARI
   ========================================================================== */

.wd-term-links {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	align-items: center;
	font-size: var(--wd-t-xs);
	color: var(--wd-muted);
}

.wd-term-links a {
	text-decoration: none;
	color: inherit;
}

.wd-term-links a:hover {
	color: var(--wd-wood-dark);
}
