/* Desen Ahşap — natural wood palette */
:root {
	--desen-wood: #6b4423;
	--desen-wood-dark: #4a2f18;
	--desen-wood-light: #8b5e3c;
	--desen-cream: #f7f1e8;
	--desen-sage: #5c6b4a;
	--desen-ink: #2c241c;
	--desen-muted: #6a5f54;
	--desen-whatsapp: #25d366;
}

body {
	color: var(--desen-ink);
}

/* Full-bleed hero */
.desen-hero {
	position: relative;
	min-height: min(92vh, 820px);
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	color: #fff;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	width: 100vw;
}

.desen-hero__media {
	position: absolute;
	inset: 0;
	background-image: var(--desen-hero-img);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	background-color: #2c241c;
	transform: scale(1.06);
	animation: desen-hero-zoom 18s ease-out forwards;
}

/* Hero slider — crossfade + Ken Burns */
.desen-hero--slider .desen-hero__track {
	position: absolute;
	inset: 0;
	background-color: #3a342e;
}

.desen-hero__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	z-index: 0;
	transition: opacity 1.35s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: opacity;
}

.desen-hero__slide.is-active {
	opacity: 1;
	z-index: 1;
}

.desen-hero__slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	transform: scale(1.06);
	filter: brightness(1.07) saturate(1.06) contrast(1.02);
}

.desen-hero__slide.is-active img {
	animation: desen-hero-kenburns 6.5s ease-out forwards;
}

.desen-hero__dots {
	position: absolute;
	bottom: 1.25rem;
	left: 50%;
	z-index: 3;
	display: flex;
	gap: 0.45rem;
	transform: translateX(-50%);
}

.desen-hero__dot {
	position: relative;
	width: 44px;
	height: 44px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
	transition: transform 0.3s ease;
}

.desen-hero__dot::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 9px;
	height: 9px;
	border: 1.5px solid rgba(255, 255, 255, 0.72);
	border-radius: 50%;
	background: transparent;
	transform: translate(-50%, -50%);
	transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.desen-hero__dot:hover::before,
.desen-hero__dot:focus-visible::before {
	border-color: #fff;
	outline: none;
}

.desen-hero__dot.is-active::before {
	background: #fff;
	border-color: #fff;
	transform: translate(-50%, -50%) scale(1.2);
}

.desen-hero__veil {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		180deg,
		rgba(44, 36, 28, 0.25) 0%,
		rgba(44, 36, 28, 0.45) 40%,
		rgba(44, 36, 28, 0.82) 100%
	);
}

.desen-hero--slider .desen-hero__veil {
	background:
		linear-gradient(
			118deg,
			rgba(24, 22, 20, 0.34) 0%,
			rgba(24, 22, 20, 0.14) 40%,
			rgba(24, 22, 20, 0.04) 72%,
			rgba(24, 22, 20, 0) 100%
		),
		linear-gradient(
			180deg,
			rgba(0, 0, 0, 0.06) 0%,
			rgba(0, 0, 0, 0.18) 52%,
			rgba(0, 0, 0, 0.48) 100%
		);
}

.desen-hero__content {
	position: relative;
	z-index: 2;
	width: min(920px, calc(100% - 2.5rem));
	margin: 0 auto 4.5rem;
	padding: clamp(1.15rem, 3vw, 1.85rem) clamp(1.15rem, 3.5vw, 2rem);
	border-radius: 18px;
	background: rgba(22, 16, 12, 0.46);
	border: 1px solid rgba(255, 255, 255, 0.14);
	box-shadow:
		0 20px 50px rgba(0, 0, 0, 0.28),
		inset 0 1px 0 rgba(255, 255, 255, 0.08);
	-webkit-backdrop-filter: blur(16px) saturate(120%);
	backdrop-filter: blur(16px) saturate(120%);
	animation: desen-hero-rise 1s ease-out both;
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
	.desen-hero__content {
		background: rgba(22, 16, 12, 0.82);
	}
}

.desen-hero__brand {
	margin: 0 0 0.75rem;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	font-weight: 600;
	letter-spacing: -0.02em;
	line-height: 1.15;
	color: #fff;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45), 0 6px 22px rgba(0, 0, 0, 0.35);
}

.desen-hero__title {
	margin: 0 0 0.85rem;
	font-size: clamp(1.15rem, 2.4vw, 1.55rem);
	font-weight: 500;
	line-height: 1.35;
	max-width: 28ch;
	color: #f8f2ea;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.desen-hero__lead {
	margin: 0 0 1.5rem;
	font-size: clamp(1rem, 1.6vw, 1.125rem);
	line-height: 1.55;
	max-width: 42ch;
	color: rgba(255, 255, 255, 0.94);
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.desen-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	align-items: center;
}

/* Hero quality pillars — animated badges */
.desen-hero__pillars {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.desen-hero__pillar {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	padding: 0.72rem 1rem;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.18);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	opacity: 0;
	transform: translateY(12px);
	animation: desen-pillar-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.desen-hero__pillar--1 { animation-delay: 0.15s; }
.desen-hero__pillar--2 { animation-delay: 0.35s; }
.desen-hero__pillar--3 { animation-delay: 0.55s; }

.desen-hero__pillar-icon {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.5rem;
	height: 1.5rem;
	font-size: 0.75rem;
	color: #e8c84a;
	animation: desen-pillar-icon-pulse 2.4s ease-in-out infinite;
}

.desen-hero__pillar-text {
	font-size: clamp(0.92rem, 2.2vw, 1.05rem);
	font-weight: 600;
	line-height: 1.35;
	color: #fff;
	background: linear-gradient(
		100deg,
		#fff 0%,
		#fff 38%,
		#e8c84a 48%,
		#f3ebe1 52%,
		#fff 62%,
		#fff 100%
	);
	background-size: 220% auto;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: desen-pillar-text-shine 4s ease-in-out infinite;
}

@keyframes desen-pillar-in {
	from {
		opacity: 0;
		transform: translateY(12px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes desen-pillar-text-shine {
	0%, 100% { background-position: 100% center; }
	50% { background-position: 0% center; }
}

@keyframes desen-pillar-icon-pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.75; transform: scale(1.12); }
}

@keyframes desen-header-cta-mobile {
	0%, 100% {
		box-shadow:
			0 2px 10px rgba(201, 162, 39, 0.4),
			inset 0 1px 0 rgba(255, 255, 255, 0.28);
	}
	50% {
		box-shadow:
			0 4px 18px rgba(201, 162, 39, 0.55),
			0 0 0 2px rgba(232, 200, 74, 0.25),
			inset 0 1px 0 rgba(255, 255, 255, 0.35);
	}
}

.desen-hero__actions .desen-cta {
	min-height: 54px;
	padding: 1rem 2.1rem;
	font-size: clamp(1rem, 1.8vw, 1.08rem);
}

.desen-hero__actions .desen-cta--ghost {
	min-height: 54px;
	padding: 1rem 1.75rem;
}

.desen-cta--ghost {
	background: transparent;
	color: #fff !important;
	border: 2px solid rgba(255, 255, 255, 0.82);
	box-shadow: none;
	animation: none;
}

.desen-cta--ghost::after {
	display: none;
}

.desen-cta--ghost:hover {
	background: rgba(255, 255, 255, 0.14);
	color: #fff !important;
	border-color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

@keyframes desen-hero-zoom {
	from { transform: scale(1.08); }
	to { transform: scale(1); }
}

@keyframes desen-hero-kenburns {
	from { transform: scale(1.08); }
	to { transform: scale(1); }
}

@keyframes desen-hero-rise {
	from { opacity: 0; transform: translateY(18px); }
	to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
	.desen-hero__media,
	.desen-hero__slide,
	.desen-hero__slide img,
	.desen-hero__content,
	.desen-reveal,
	.desen-service,
	.desen-cta,
	.desen-cta::after,
	.header-button-wrap .button,
	.header-button-wrap .button::after,
	.mobile-header-button-wrap .button,
	.mobile-header-button-wrap .button::after,
	.desen-form-card input[type="submit"],
	.desen-form-card input[type="submit"]::after,
	.desen-form-card .wpcf7-submit,
	.desen-form-card .wpcf7-submit::after {
		animation: none !important;
		transition: none !important;
		transform: none !important;
	}

	.desen-hero__pillar,
	.desen-hero__pillar-text,
	.desen-hero__pillar-icon {
		animation: none !important;
		opacity: 1 !important;
		transform: none !important;
	}

	.desen-hero__pillar-text {
		-webkit-text-fill-color: #fff;
		background: none;
		color: #fff;
	}

	.mobile-toggle-open-container .menu-toggle-label,
	.mobile-toggle-open-container .menu-toggle-icon {
		animation: none !important;
		-webkit-text-fill-color: #f3ebe1;
		background: none;
	}

	.desen-hero__slide:not(.is-active) {
		display: none;
	}
}

@media (max-width: 767px) {
	.desen-hero {
		min-height: min(88vh, 720px);
	}

	.desen-hero__content {
		width: calc(100% - 1.5rem);
		margin-bottom: 3.75rem;
		padding: 1.1rem 1.15rem 1.2rem;
		border-radius: 14px;
		background: rgba(22, 16, 12, 0.58);
		-webkit-backdrop-filter: blur(18px) saturate(125%);
		backdrop-filter: blur(18px) saturate(125%);
	}

	.desen-hero--slider .desen-hero__veil {
		background:
			linear-gradient(
				180deg,
				rgba(0, 0, 0, 0.08) 0%,
				rgba(0, 0, 0, 0.2) 46%,
				rgba(0, 0, 0, 0.5) 100%
			);
	}

	.desen-hero__lead {
		margin-bottom: 1rem;
	}

	.desen-hero__pillars {
		gap: 0.45rem;
	}

	.desen-hero__dots {
		bottom: 0.85rem;
	}
}

/* Service image grid */
.desen-services {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.25rem;
	margin: 2rem 0 3rem;
}

.desen-service {
	display: block;
	text-decoration: none !important;
	color: inherit !important;
	overflow: hidden;
	background: #fff;
	border: 1px solid #e8dfd3;
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.desen-service:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 32px rgba(74, 47, 24, 0.12);
}

.desen-service img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 11;
	object-fit: cover;
}

.desen-service__body {
	padding: 1rem 1.1rem 1.25rem;
}

.desen-service__body h3 {
	margin: 0 0 0.4rem;
	font-size: 1.2rem;
	color: var(--desen-wood-dark);
}

.desen-service__body p {
	margin: 0;
	color: var(--desen-muted);
	font-size: 0.95rem;
	line-height: 1.5;
}

.desen-reveal {
	animation: desen-hero-rise 0.9s ease-out 0.15s both;
}

@media (max-width: 780px) {
	.desen-services {
		grid-template-columns: 1fr;
	}
	.desen-hero {
		min-height: 78vh;
	}
	.desen-hero__content {
		margin-bottom: 3rem;
	}
}

/* Floating contact dock — Ücretsiz Ara + WhatsApp */
.desen-float {
	position: fixed;
	right: 18px;
	bottom: 22px;
	z-index: 9999;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 0.65rem;
	pointer-events: none;
}

.desen-float__btn {
	position: relative;
	pointer-events: auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
	min-height: 50px;
	padding: 0.72rem 1.25rem 0.72rem 1.05rem;
	border-radius: 999px;
	color: #fff !important;
	text-decoration: none !important;
	font-weight: 700;
	font-size: 0.92rem;
	letter-spacing: 0.01em;
	white-space: nowrap;
	overflow: hidden;
	isolation: isolate;
	border: 1px solid rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	transition:
		transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.32s ease,
		filter 0.28s ease;
	animation: desen-float-enter 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.desen-float__btn--call {
	background: linear-gradient(135deg, #c9a227 0%, #a67c1a 38%, #8b5e3c 72%, #6b4423 100%);
	box-shadow:
		0 8px 26px rgba(107, 68, 35, 0.42),
		0 0 0 0 rgba(201, 162, 39, 0);
	animation:
		desen-float-enter 0.7s cubic-bezier(0.22, 1, 0.36, 1) both,
		desen-float-gold-pulse 3.2s ease-in-out 0.8s infinite;
}

.desen-float__btn--wa {
	background: linear-gradient(135deg, #3ecf6e 0%, #25d366 45%, #1da851 100%);
	box-shadow:
		0 8px 26px rgba(37, 211, 102, 0.38),
		0 0 0 0 rgba(37, 211, 102, 0);
	animation:
		desen-float-enter 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both,
		desen-float-wa-pulse 3.2s ease-in-out 1.1s infinite;
}

.desen-float__btn::after {
	content: "";
	position: absolute;
	top: 0;
	left: -130%;
	width: 58%;
	height: 100%;
	background: linear-gradient(
		105deg,
		transparent 0%,
		rgba(255, 255, 255, 0.1) 35%,
		rgba(255, 255, 255, 0.38) 50%,
		rgba(255, 255, 255, 0.1) 65%,
		transparent 100%
	);
	transform: skewX(-18deg);
	pointer-events: none;
	animation: desen-cta-shine 4.8s ease-in-out infinite;
}

.desen-float__btn--call::after {
	animation-delay: 0.4s;
}

.desen-float__btn--wa::after {
	animation-delay: 1.6s;
}

.desen-float__ring {
	position: absolute;
	inset: -3px;
	border-radius: inherit;
	border: 2px solid currentColor;
	opacity: 0;
	pointer-events: none;
	animation: desen-float-ring 2.8s ease-out infinite;
}

.desen-float__btn--call .desen-float__ring {
	color: rgba(201, 162, 39, 0.65);
}

.desen-float__btn--wa .desen-float__ring {
	color: rgba(37, 211, 102, 0.55);
	animation-delay: 1.4s;
}

.desen-float__icon {
	position: relative;
	z-index: 1;
	display: flex;
	flex-shrink: 0;
	line-height: 0;
	filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.desen-float__label {
	position: relative;
	z-index: 1;
}

.desen-float__btn:hover,
.desen-float__btn:focus-visible {
	color: #fff !important;
	transform: translateY(-3px) scale(1.03);
	filter: brightness(1.06);
}

.desen-float__btn--call:hover,
.desen-float__btn--call:focus-visible {
	box-shadow:
		0 14px 36px rgba(107, 68, 35, 0.52),
		0 0 0 4px rgba(201, 162, 39, 0.22);
}

.desen-float__btn--wa:hover,
.desen-float__btn--wa:focus-visible {
	box-shadow:
		0 14px 36px rgba(37, 211, 102, 0.48),
		0 0 0 4px rgba(37, 211, 102, 0.2);
}

.desen-float__btn:active {
	transform: translateY(-1px) scale(1.01);
	transition-duration: 0.1s;
}

@keyframes desen-float-enter {
	from {
		opacity: 0;
		transform: translateY(18px) scale(0.92);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@keyframes desen-float-gold-pulse {
	0%, 100% {
		box-shadow:
			0 8px 26px rgba(107, 68, 35, 0.42),
			0 0 0 0 rgba(201, 162, 39, 0);
	}
	50% {
		box-shadow:
			0 10px 32px rgba(107, 68, 35, 0.5),
			0 0 0 5px rgba(201, 162, 39, 0.16);
	}
}

@keyframes desen-float-wa-pulse {
	0%, 100% {
		box-shadow:
			0 8px 26px rgba(37, 211, 102, 0.38),
			0 0 0 0 rgba(37, 211, 102, 0);
	}
	50% {
		box-shadow:
			0 10px 32px rgba(37, 211, 102, 0.46),
			0 0 0 5px rgba(37, 211, 102, 0.14);
	}
}

@keyframes desen-float-ring {
	0% {
		opacity: 0.55;
		transform: scale(1);
	}
	70%, 100% {
		opacity: 0;
		transform: scale(1.35);
	}
}

@media (max-width: 600px) {
	.desen-float {
		right: 12px;
		bottom: 16px;
		left: 12px;
		align-items: stretch;
	}

	.desen-float__btn {
		justify-content: center;
		min-height: 48px;
		padding: 0.68rem 1rem;
		font-size: 0.88rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.desen-float__btn,
	.desen-float__btn--call,
	.desen-float__btn--wa {
		animation: none;
	}

	.desen-float__btn::after,
	.desen-float__ring {
		animation: none;
		display: none;
	}
}

@keyframes desen-cta-shine {
	0%, 72%, 100% {
		left: -120%;
		opacity: 0;
	}
	78% {
		opacity: 1;
	}
	88% {
		left: 140%;
		opacity: 0;
	}
}

@keyframes desen-cta-glow {
	0%, 100% {
		box-shadow:
			0 6px 20px rgba(107, 68, 35, 0.38),
			0 0 0 0 rgba(201, 162, 39, 0);
	}
	50% {
		box-shadow:
			0 8px 28px rgba(107, 68, 35, 0.48),
			0 0 0 4px rgba(201, 162, 39, 0.18);
	}
}

@keyframes desen-cta-gold-glow {
	0%, 100% {
		box-shadow:
			0 4px 16px rgba(201, 162, 39, 0.35),
			0 0 0 0 rgba(201, 162, 39, 0);
	}
	50% {
		box-shadow:
			0 6px 22px rgba(201, 162, 39, 0.5),
			0 0 0 3px rgba(201, 162, 39, 0.2);
	}
}

/* CTA buttons — premium size + shine */
.desen-cta {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	overflow: hidden;
	padding: 0.95rem 2rem;
	min-height: 50px;
	background: linear-gradient(135deg, #8b5e3c 0%, #6b4423 48%, #5a381c 100%);
	color: #fff !important;
	border: none;
	border-radius: 10px;
	font-size: clamp(0.98rem, 1.6vw, 1.05rem);
	font-weight: 700;
	letter-spacing: 0.01em;
	text-decoration: none !important;
	cursor: pointer;
	isolation: isolate;
	box-shadow: 0 6px 20px rgba(107, 68, 35, 0.38);
	animation: desen-cta-glow 3.5s ease-in-out infinite;
	transition:
		transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.28s ease,
		filter 0.28s ease,
		background 0.28s ease;
}

.desen-cta::after {
	content: "";
	position: absolute;
	top: 0;
	left: -120%;
	width: 55%;
	height: 100%;
	background: linear-gradient(
		105deg,
		transparent 0%,
		rgba(255, 255, 255, 0.08) 35%,
		rgba(255, 255, 255, 0.32) 50%,
		rgba(255, 255, 255, 0.08) 65%,
		transparent 100%
	);
	transform: skewX(-18deg);
	pointer-events: none;
	animation: desen-cta-shine 4.5s ease-in-out infinite;
}

.desen-cta:hover {
	background: linear-gradient(135deg, #9a6a45 0%, #7a4f2a 48%, #6b4423 100%);
	color: #fff !important;
	transform: translateY(-3px) scale(1.02);
	box-shadow:
		0 12px 32px rgba(107, 68, 35, 0.48),
		0 0 0 4px rgba(201, 162, 39, 0.22);
	filter: brightness(1.04);
}

.desen-cta:active {
	transform: translateY(-1px) scale(1);
	transition-duration: 0.1s;
}

.desen-cta--outline {
	background: transparent;
	color: var(--desen-wood) !important;
	border: 2px solid var(--desen-wood);
	box-shadow: none;
	animation: none;
}

.desen-cta--outline::after {
	display: none;
}

.desen-cta--outline:hover {
	background: var(--desen-wood);
	color: #fff !important;
	transform: translateY(-2px);
	box-shadow: 0 8px 22px rgba(107, 68, 35, 0.35);
}

/* Trust strip */
.desen-trust {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 1.5rem;
	padding: 2rem 0;
	text-align: center;
}

.desen-trust__num {
	display: block;
	font-size: 2rem;
	font-weight: 700;
	color: var(--desen-wood);
	line-height: 1.1;
}

.desen-trust__label {
	color: var(--desen-muted);
	font-size: 0.95rem;
}

/* Footer contact strip */
.site-footer {
	background: #12100e !important;
	color: #e8dfd3 !important;
}

.site-footer a {
	color: #c9a227 !important;
}

.site-footer a:hover {
	color: #f3ebe1 !important;
}

.footer-html-inner {
	font-size: 14px;
	opacity: 0.92;
}

/* —— Page content polish —— */
.entry-content > h2,
.entry-content > h3 {
	color: var(--desen-wood-dark);
	margin-top: 2.25rem;
	margin-bottom: 0.85rem;
	position: relative;
	padding-bottom: 0.5rem;
}

.entry-content > h2::after {
	content: "";
	display: block;
	width: 48px;
	height: 3px;
	background: linear-gradient(90deg, var(--desen-wood), var(--desen-cream));
	border-radius: 2px;
	margin-top: 0.45rem;
}

.entry-content > p {
	line-height: 1.75;
	color: var(--desen-muted);
}

.entry-content .wp-block-list {
	padding-left: 1.25rem;
}

.entry-content .wp-block-list li {
	margin-bottom: 0.45rem;
	line-height: 1.65;
}

.entry-content .wp-block-list a {
	color: var(--desen-wood);
	font-weight: 600;
	text-decoration: none;
	border-bottom: 1px solid rgba(107, 68, 35, 0.25);
	transition: color 0.2s ease, border-color 0.2s ease;
}

.entry-content .wp-block-list a:hover {
	color: var(--desen-wood-dark);
	border-color: var(--desen-wood);
}

/* FAQ accordion — modern */
.desen-faq {
	background: #fff;
	border: 1px solid #e8dfd3;
	border-radius: 12px;
	padding: 0.25rem 1rem;
	margin: 1.5rem 0 2rem;
	box-shadow: 0 4px 24px rgba(44, 36, 28, 0.06);
}

.desen-faq details {
	border-bottom: 1px solid #ebe3d8;
	padding: 0.85rem 0;
}

.desen-faq details:last-child {
	border-bottom: 0;
}

.desen-faq summary {
	cursor: pointer;
	font-weight: 600;
	font-size: 1rem;
	color: var(--desen-ink);
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	transition: color 0.2s ease;
}

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

.desen-faq summary::after {
	content: "+";
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--desen-cream);
	color: var(--desen-wood);
	font-size: 1.1rem;
	font-weight: 700;
	transition: transform 0.25s ease, background 0.2s ease;
}

.desen-faq details[open] summary::after {
	content: "−";
	background: var(--desen-wood);
	color: #fff;
}

.desen-faq summary:hover {
	color: var(--desen-wood);
}

.desen-faq details p {
	margin: 0.75rem 0 0;
	color: var(--desen-muted);
	line-height: 1.65;
	padding-right: 2rem;
}

/* —— Modern CF7 form card —— */
.desen-form-card {
	background: linear-gradient(145deg, #fff 0%, #faf6f0 100%);
	border: 1px solid #e8dfd3;
	border-radius: 16px;
	padding: 2rem 2rem 1.75rem;
	margin: 2rem 0 2.5rem;
	box-shadow:
		0 4px 6px rgba(44, 36, 28, 0.04),
		0 16px 40px rgba(44, 36, 28, 0.08);
	position: relative;
	overflow: hidden;
}

.desen-form-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--desen-wood), #c9a227, var(--desen-sage));
}

.desen-form-card .wpcf7-form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.1rem 1.25rem;
}

.desen-form-card .wpcf7-form > p {
	margin: 0;
}

.desen-form-card label {
	display: block;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--desen-ink);
	margin-bottom: 0.4rem;
}

.desen-form-card input[type="text"],
.desen-form-card input[type="tel"],
.desen-form-card input[type="email"],
.desen-form-card select,
.desen-form-card textarea {
	width: 100%;
	padding: 0.8rem 1rem;
	border: 1.5px solid #ddd5c8;
	border-radius: 10px;
	background: #fff;
	font-size: 1rem;
	color: var(--desen-ink);
	transition:
		border-color 0.25s ease,
		box-shadow 0.25s ease,
		transform 0.15s ease;
	box-sizing: border-box;
}

.desen-form-card textarea {
	min-height: 120px;
	resize: vertical;
	grid-column: 1 / -1;
}

.desen-form-card select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b4423' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	padding-right: 2.5rem;
	cursor: pointer;
}

.desen-form-card input:focus,
.desen-form-card select:focus,
.desen-form-card textarea:focus {
	outline: none;
	border-color: var(--desen-wood);
	box-shadow: 0 0 0 4px rgba(107, 68, 35, 0.12);
	transform: translateY(-1px);
}

.desen-form-card input[type="submit"],
.desen-form-card .wpcf7-submit {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	grid-column: 1 / -1;
	justify-self: start;
	min-height: 54px;
	padding: 1rem 2.35rem !important;
	background: linear-gradient(135deg, #8b5e3c 0%, #6b4423 48%, #5a381c 100%) !important;
	color: #fff !important;
	border: none !important;
	border-radius: 10px !important;
	font-size: 1.05rem !important;
	font-weight: 700 !important;
	cursor: pointer;
	animation: desen-cta-glow 3.5s ease-in-out infinite;
	transition:
		transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.28s ease,
		filter 0.28s ease;
	box-shadow: 0 6px 20px rgba(107, 68, 35, 0.38);
}

.desen-form-card input[type="submit"]::after,
.desen-form-card .wpcf7-submit::after {
	content: "";
	position: absolute;
	top: 0;
	left: -120%;
	width: 55%;
	height: 100%;
	background: linear-gradient(
		105deg,
		transparent 0%,
		rgba(255, 255, 255, 0.1) 35%,
		rgba(255, 255, 255, 0.3) 50%,
		rgba(255, 255, 255, 0.1) 65%,
		transparent 100%
	);
	transform: skewX(-18deg);
	pointer-events: none;
	animation: desen-cta-shine 4.5s ease-in-out infinite;
}

.desen-form-card input[type="submit"]:hover,
.desen-form-card .wpcf7-submit:hover {
	transform: translateY(-3px) scale(1.02);
	box-shadow:
		0 12px 32px rgba(107, 68, 35, 0.48),
		0 0 0 4px rgba(201, 162, 39, 0.22);
	filter: brightness(1.04);
}

.desen-form-card input[type="submit"]:active,
.desen-form-card .wpcf7-submit:active {
	transform: translateY(0);
}

.desen-form-card .wpcf7-not-valid-tip {
	font-size: 0.82rem;
	color: #b42318;
	margin-top: 0.35rem;
}

.desen-form-card .wpcf7-response-output {
	grid-column: 1 / -1;
	margin: 0.5rem 0 0 !important;
	padding: 0.85rem 1rem !important;
	border-radius: 10px !important;
	border: none !important;
	font-size: 0.95rem;
}

.desen-form-card .wpcf7 form.sent .wpcf7-response-output {
	background: #ecfdf3;
	color: #067647;
}

.desen-form-card .wpcf7 form.invalid .wpcf7-response-output,
.desen-form-card .wpcf7 form.failed .wpcf7-response-output {
	background: #fef3f2;
	color: #b42318;
}

/* Form heading above card */
.entry-content h2 + .desen-form-card,
.entry-content h2:has(+ p + .desen-form-card) {
	margin-top: 1rem;
}

@media (max-width: 700px) {
	.desen-form-card {
		padding: 1.5rem 1.25rem;
		border-radius: 14px;
	}

	.desen-form-card .wpcf7-form {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.desen-form-card input[type="submit"],
	.desen-form-card .wpcf7-submit {
		width: 100%;
		justify-self: stretch;
		text-align: center;
	}
}

/* Header / logo polish */
.site-header-row-container-inner,
#masthead {
	background: #12100e !important;
}

/* —— Desktop navigation —— */
.header-navigation .header-menu-container > ul.menu {
	gap: 0.15rem !important;
	align-items: center;
}

.header-navigation .header-menu-container > ul > li.menu-item {
	position: relative;
}

.header-navigation .header-menu-container > ul > li > a {
	color: #f3ebe1 !important;
	font-size: 15px !important;
	font-weight: 600 !important;
	letter-spacing: 0.02em;
	line-height: 1.35 !important;
	padding: 0.55rem 0.95rem !important;
	border-radius: 6px;
	transition: color 0.2s ease, background 0.2s ease;
}

.header-navigation .header-menu-container > ul > li.menu-item:not(:last-child)::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 18px;
	background: rgba(243, 235, 225, 0.28);
}

.header-navigation .header-menu-container > ul > li > a:hover,
.header-navigation .header-menu-container > ul > li.current-menu-item > a,
.header-navigation .header-menu-container > ul > li.current-menu-ancestor > a {
	color: #c9a227 !important;
	background: rgba(201, 162, 39, 0.08);
}

/* Submenu (Çocuk Oyun Evi) */
.header-navigation .header-menu-container .sub-menu {
	background: #1a1714 !important;
	border: 1px solid rgba(243, 235, 225, 0.12) !important;
	border-radius: 8px;
	padding: 0.35rem 0 !important;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
	min-width: 220px;
}

.header-navigation .header-menu-container .sub-menu li a {
	color: #f3ebe1 !important;
	font-size: 14px !important;
	font-weight: 500 !important;
	padding: 0.6rem 1rem !important;
}

.header-navigation .header-menu-container .sub-menu li a:hover {
	color: #c9a227 !important;
	background: rgba(201, 162, 39, 0.1);
}

.site-branding a.brand img,
.site-branding .custom-logo {
	max-height: 58px;
	width: auto !important;
	height: auto !important;
	object-fit: contain;
}

#masthead .site-header-main-section-right {
	gap: 0.75rem;
	align-items: center;
}

/* —— Mobile header bar —— */
.mobile-toggle-open-container .menu-toggle-open,
.menu-toggle-open {
	display: inline-flex !important;
	align-items: center;
	flex-direction: row;
	gap: 0.4rem;
	color: #f3ebe1 !important;
	padding: 0.5rem 0.65rem !important;
	border-radius: 10px;
	transition:
		background 0.25s ease,
		transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-toggle-open-container .menu-toggle-label {
	display: inline-block;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.03em;
	text-transform: none;
	background: linear-gradient(
		100deg,
		#f3ebe1 0%,
		#f3ebe1 35%,
		#e8c84a 48%,
		#c9a227 52%,
		#f3ebe1 65%,
		#f3ebe1 100%
	);
	background-size: 220% auto;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: desen-menu-label-shine 3.2s ease-in-out infinite;
}

.mobile-toggle-open-container .menu-toggle-open:hover .menu-toggle-label,
.mobile-toggle-open-container .menu-toggle-open:focus-visible .menu-toggle-label {
	animation-duration: 2s;
}

.mobile-toggle-open-container .menu-toggle-open:hover,
.mobile-toggle-open-container .menu-toggle-open:focus-visible {
	background: rgba(201, 162, 39, 0.12);
	transform: translateY(-1px);
}

.mobile-toggle-open-container .menu-toggle-open.active .menu-toggle-label {
	background: linear-gradient(100deg, #fff 0%, #e8c84a 50%, #fff 100%);
	background-size: 200% auto;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.mobile-toggle-open-container .menu-toggle-icon {
	display: inline-flex;
	align-items: center;
	animation: desen-menu-icon-pulse 2.8s ease-in-out infinite;
}

@keyframes desen-menu-label-shine {
	0%, 100% {
		background-position: 100% center;
	}
	50% {
		background-position: 0% center;
	}
}

@keyframes desen-menu-icon-pulse {
	0%, 100% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: 0.88;
		transform: scale(1.06);
	}
}

.mobile-header-button-wrap .button {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	font-size: 15px !important;
	font-weight: 700 !important;
	padding: 0.72rem 1.35rem !important;
	min-height: 46px;
	border-radius: 10px !important;
	white-space: nowrap;
	animation: desen-cta-gold-glow 3.5s ease-in-out infinite;
	transition:
		transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.28s ease,
		background 0.28s ease,
		color 0.28s ease,
		border-color 0.28s ease;
}

.mobile-header-button-wrap .button::after {
	content: "";
	position: absolute;
	top: 0;
	left: -120%;
	width: 55%;
	height: 100%;
	background: linear-gradient(
		105deg,
		transparent 0%,
		rgba(255, 255, 255, 0.15) 50%,
		transparent 100%
	);
	transform: skewX(-18deg);
	pointer-events: none;
	animation: desen-cta-shine 4.5s ease-in-out infinite;
}

/* —— Mobile drawer menu —— */
#mobile-drawer .drawer-inner,
.mobile-drawer-content .drawer-inner {
	background: #12100e !important;
}

#mobile-drawer .mobile-navigation ul li a,
.mobile-navigation ul li a {
	color: #f3ebe1 !important;
	font-size: 17px !important;
	font-weight: 600 !important;
	line-height: 1.4 !important;
	padding: 0.85rem 1.25rem !important;
	border-bottom: 1px solid rgba(243, 235, 225, 0.1);
}

#mobile-drawer .mobile-navigation ul.sub-menu li a,
.mobile-navigation ul.sub-menu li a {
	font-size: 15px !important;
	font-weight: 500 !important;
	padding-left: 2rem !important;
	color: rgba(243, 235, 225, 0.88) !important;
}

#mobile-drawer .mobile-navigation ul li a:hover,
#mobile-drawer .mobile-navigation ul li.current-menu-item > a {
	color: #c9a227 !important;
	background: rgba(201, 162, 39, 0.08);
}

#mobile-drawer .drawer-header .drawer-toggle {
	color: #f3ebe1 !important;
}

@media (max-width: 767px) {
	.site-branding a.brand img,
	.site-branding .custom-logo {
		max-height: 50px;
		max-width: 150px;
	}

	.mobile-header-button-wrap .button {
		font-size: 11px !important;
		padding: 0.48rem 0.72rem !important;
		min-height: 40px;
		min-width: 44px;
		max-width: 118px;
		line-height: 1.15 !important;
		letter-spacing: 0.01em;
		border-radius: 999px !important;
		background: linear-gradient(135deg, #e8c84a 0%, #c9a227 48%, #a88618 100%) !important;
		box-shadow:
			0 2px 10px rgba(201, 162, 39, 0.42),
			inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
		animation: desen-header-cta-mobile 2.8s ease-in-out infinite !important;
		white-space: normal;
		text-align: center;
	}

	.desen-hero__pillars {
		gap: 0.5rem;
	}

	.desen-hero__pillar {
		padding: 0.62rem 0.85rem;
	}
}

@media (min-width: 1025px) {
	.header-navigation .header-menu-container > ul > li > a {
		font-size: 15.5px !important;
		padding: 0.6rem 1rem !important;
	}
}

.header-button-wrap .button,
.mobile-header-button-wrap .button {
	background: linear-gradient(135deg, #d4af37 0%, #c9a227 45%, #b8921f 100%) !important;
	color: #12100e !important;
	border: none !important;
	font-weight: 700 !important;
	font-size: 16px !important;
	white-space: nowrap;
	border-radius: 10px !important;
	padding: 0.72rem 1.55rem !important;
	min-height: 48px;
	line-height: 1.2;
}

.header-button-wrap .button {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	animation: desen-cta-gold-glow 3.5s ease-in-out infinite;
	transition:
		transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.28s ease,
		background 0.28s ease,
		color 0.28s ease;
}

.header-button-wrap .button::after {
	content: "";
	position: absolute;
	top: 0;
	left: -120%;
	width: 55%;
	height: 100%;
	background: linear-gradient(
		105deg,
		transparent 0%,
		rgba(255, 255, 255, 0.22) 50%,
		transparent 100%
	);
	transform: skewX(-18deg);
	pointer-events: none;
	animation: desen-cta-shine 4.5s ease-in-out infinite;
}

.header-button-wrap .button:hover,
.mobile-header-button-wrap .button:hover {
	background: linear-gradient(135deg, #9a6a45 0%, #7a4f2a 48%, #6b4423 100%) !important;
	border-color: transparent !important;
	color: #fff !important;
	transform: translateY(-2px) scale(1.03);
	box-shadow:
		0 10px 28px rgba(107, 68, 35, 0.45),
		0 0 0 3px rgba(201, 162, 39, 0.2);
}

.header-button-wrap .button:active,
.mobile-header-button-wrap .button:active {
	transform: translateY(0) scale(1);
}

/* Hide leftover empty title area on front if any */
.home .entry-hero.page-hero-section,
.home .entry-header.page-header {
	display: none !important;
}

/* Inner page hero — Modeller ve benzeri sayfalar */
.desen-page-hero {
	position: relative;
	min-height: min(52vh, 480px);
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	color: #fff;
	margin: 0 calc(50% - 50vw) 2rem;
	width: 100vw;
}

.desen-page-hero__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	transform: scale(1.04);
	animation: desen-hero-zoom 16s ease-out forwards;
}

.desen-page-hero__veil {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(20, 16, 12, 0.15) 0%,
		rgba(20, 16, 12, 0.45) 45%,
		rgba(20, 16, 12, 0.82) 100%
	);
}

.desen-page-hero__content {
	position: relative;
	z-index: 2;
	width: min(100% - 2.5rem, 760px);
	margin: 0 auto 2.5rem;
	padding: 1.35rem 1.5rem 1.5rem;
	background: rgba(20, 16, 12, 0.42);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 14px;
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.desen-page-hero__eyebrow {
	margin: 0 0 0.45rem;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #c9a227;
}

.desen-page-hero__title {
	margin: 0 0 0.65rem;
	font-size: clamp(1.75rem, 4.5vw, 2.5rem);
	font-weight: 800;
	line-height: 1.15;
	color: #fff;
}

.desen-page-hero__lead {
	margin: 0 0 1.15rem;
	font-size: clamp(0.98rem, 2vw, 1.08rem);
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.9);
}

.desen-page-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.desen-page-hero__actions .desen-cta {
	min-height: 46px;
	padding: 0.8rem 1.45rem;
	font-size: 0.95rem;
}

.desen-cta--ghost {
	background: rgba(255, 255, 255, 0.1) !important;
	border: 1px solid rgba(255, 255, 255, 0.45) !important;
	box-shadow: none !important;
	animation: none !important;
}

.desen-cta--ghost::after {
	display: none;
}

.desen-cta--ghost:hover {
	background: rgba(255, 255, 255, 0.18) !important;
	color: #fff !important;
	border-color: rgba(255, 255, 255, 0.7) !important;
}

/* Modeller sayfası — öne çıkanlar */
.desen-models-highlights {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	margin: 0 0 2.5rem;
}

.desen-models-highlight {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
	padding: 1.1rem 1.15rem;
	background: var(--desen-cream);
	border: 1px solid #e8dfd3;
	border-radius: 10px;
}

.desen-models-highlight__icon {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	background: var(--desen-wood);
	color: #fff;
	font-size: 0.85rem;
	font-weight: 700;
}

.desen-models-highlight strong {
	display: block;
	margin-bottom: 0.2rem;
	color: var(--desen-wood-dark);
	font-size: 1rem;
}

.desen-models-highlight p {
	margin: 0;
	color: var(--desen-muted);
	font-size: 0.92rem;
	line-height: 1.45;
}

.desen-models-cats-lead {
	max-width: 42rem;
	margin: -0.5rem auto 1.75rem !important;
	color: var(--desen-muted);
}

.desen-models-cats {
	margin-top: 0;
}

.desen-models-gallery-head {
	text-align: center;
	max-width: 40rem;
	margin: 2.5rem auto 1.25rem;
}

.desen-models-gallery-head__eyebrow {
	margin: 0 0 0.35rem;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--desen-wood-light);
}

.desen-models-gallery-head__title {
	margin: 0 0 0.65rem;
	font-size: clamp(1.5rem, 3.5vw, 2rem);
	color: var(--desen-wood-dark);
}

.desen-models-gallery-head__lead {
	margin: 0;
	color: var(--desen-muted);
	line-height: 1.6;
}

.desen-models-gallery figure {
	position: relative;
}

.desen-models-gallery figcaption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 0.55rem 0.75rem;
	background: linear-gradient(transparent, rgba(20, 16, 12, 0.75));
	color: #fff;
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-align: center;
	opacity: 0;
	transform: translateY(6px);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.desen-models-gallery figure:hover figcaption,
.desen-models-gallery figure:focus-within figcaption {
	opacity: 1;
	transform: translateY(0);
}

.desen-models-cta {
	margin: 3rem calc(50% - 50vw) 2.5rem;
	width: 100vw;
	background: linear-gradient(135deg, #4a2f18 0%, #6b4423 55%, #5c6b4a 100%);
	color: #fff;
	opacity: 1;
	transform: none;
}

.desen-models-cta.desen-reveal {
	animation: none;
}

.desen-models-cta__inner {
	max-width: 640px;
	margin: 0 auto;
	padding: 2.5rem 1.5rem;
	text-align: center;
}

.desen-models-cta__title {
	margin: 0 0 0.65rem;
	font-size: clamp(1.35rem, 3vw, 1.75rem);
	color: #fff;
}

.desen-models-cta__lead {
	margin: 0 0 1.25rem;
	color: rgba(255, 255, 255, 0.88);
	line-height: 1.55;
}

/* CTA band — WhatsApp yeşil buton (animasyonlu) */
.desen-models-cta .desen-cta--whatsapp,
.desen-models-cta a.desen-cta[href*="wa.me"] {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
	min-width: min(100%, 280px);
	overflow: hidden;
	background: linear-gradient(135deg, #3ecf6e 0%, #25d366 48%, #1da851 100%) !important;
	border: 1px solid rgba(255, 255, 255, 0.28) !important;
	box-shadow:
		0 8px 28px rgba(37, 211, 102, 0.42),
		0 0 0 0 rgba(37, 211, 102, 0);
	/* Sadece glow pulse — shine yalnızca ::after üzerinde */
	animation: desen-float-wa-pulse 3.2s ease-in-out infinite !important;
}

.desen-models-cta .desen-cta--whatsapp::after,
.desen-models-cta a.desen-cta[href*="wa.me"]::after {
	content: "";
	position: absolute;
	top: 0;
	left: -120%;
	width: 55%;
	height: 100%;
	background: linear-gradient(
		105deg,
		transparent 0%,
		rgba(255, 255, 255, 0.1) 35%,
		rgba(255, 255, 255, 0.35) 50%,
		rgba(255, 255, 255, 0.1) 65%,
		transparent 100%
	);
	transform: skewX(-18deg);
	pointer-events: none;
	animation: desen-cta-shine 4.2s ease-in-out 1.2s infinite;
}

.desen-models-cta .desen-cta--whatsapp:hover,
.desen-models-cta a.desen-cta[href*="wa.me"]:hover {
	background: linear-gradient(135deg, #4ade80 0%, #2ee072 48%, #22c55e 100%) !important;
	color: #fff !important;
	transform: translateY(-3px) scale(1.04);
	box-shadow:
		0 14px 38px rgba(37, 211, 102, 0.52),
		0 0 0 4px rgba(37, 211, 102, 0.22) !important;
	filter: brightness(1.05);
}

.desen-models-cta .desen-cta--whatsapp__icon,
.desen-cta--whatsapp__icon {
	display: inline-flex;
	flex-shrink: 0;
	line-height: 0;
	width: 20px;
	height: 20px;
	background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='white'%3E%3Cpath d='M16.04 3C9.37 3 3.96 8.41 3.96 15.08c0 2.12.55 4.18 1.6 6.01L3 29l8.12-2.13a12.05 12.05 0 0 0 4.92 1.05h.01c6.67 0 12.08-5.41 12.08-12.08C28.13 8.41 22.71 3 16.04 3zm7.02 17.12c-.3.84-1.74 1.54-2.43 1.64-.62.09-1.4.13-2.26-.14-.52-.16-1.19-.39-2.05-.76-3.61-1.56-5.96-5.2-6.14-5.44-.18-.24-1.47-1.95-1.47-3.72s.93-2.64 1.26-3c.33-.36.72-.45.96-.45h.69c.22 0 .52-.08.81.62.3.72 1.02 2.49 1.11 2.67.09.18.15.39.03.63-.12.24-.18.39-.36.6-.18.21-.38.47-.54.63-.18.18-.36.37-.15.72.21.36.93 1.53 2 2.48 1.37 1.22 2.53 1.6 2.89 1.78.36.18.57.15.78-.09.21-.24.9-1.05 1.14-1.41.24-.36.48-.3.81-.18.33.12 2.1.99 2.46 1.17.36.18.6.27.69.42.09.15.09.87-.21 1.71z'/%3E%3C/svg%3E");
	filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
}

.desen-models-cta .desen-cta--whatsapp:not(:has(.desen-cta--whatsapp__icon))::before,
.desen-cta--whatsapp:not(:has(.desen-cta--whatsapp__icon))::before {
	content: "";
	display: inline-block;
	width: 20px;
	height: 20px;
	margin-right: 0.15rem;
	background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='white'%3E%3Cpath d='M16.04 3C9.37 3 3.96 8.41 3.96 15.08c0 2.12.55 4.18 1.6 6.01L3 29l8.12-2.13a12.05 12.05 0 0 0 4.92 1.05h.01c6.67 0 12.08-5.41 12.08-12.08C28.13 8.41 22.71 3 16.04 3zm7.02 17.12c-.3.84-1.74 1.54-2.43 1.64-.62.09-1.4.13-2.26-.14-.52-.16-1.19-.39-2.05-.76-3.61-1.56-5.96-5.2-6.14-5.44-.18-.24-1.47-1.95-1.47-3.72s.93-2.64 1.26-3c.33-.36.72-.45.96-.45h.69c.22 0 .52-.08.81.62.3.72 1.02 2.49 1.11 2.67.09.18.15.39.03.63-.12.24-.18.39-.36.6-.18.21-.38.47-.54.63-.18.18-.36.37-.15.72.21.36.93 1.53 2 2.48 1.37 1.22 2.53 1.6 2.89 1.78.36.18.57.15.78-.09.21-.24.9-1.05 1.14-1.41.24-.36.48-.3.81-.18.33.12 2.1.99 2.46 1.17.36.18.6.27.69.42.09.15.09.87-.21 1.71z'/%3E%3C/svg%3E");
}

/* Genel WhatsApp CTA — hero dışı kullanımlar */
.desen-cta--whatsapp:not(.desen-cta--ghost) {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	overflow: hidden;
	background: linear-gradient(135deg, #3ecf6e 0%, #25d366 48%, #1da851 100%) !important;
	border: 1px solid rgba(255, 255, 255, 0.2) !important;
	box-shadow: 0 8px 26px rgba(37, 211, 102, 0.38);
	animation: desen-float-wa-pulse 3.2s ease-in-out infinite !important;
}

.desen-cta--whatsapp:not(.desen-cta--ghost):hover {
	background: linear-gradient(135deg, #4ade80 0%, #2ee072 48%, #22c55e 100%) !important;
	box-shadow:
		0 12px 34px rgba(37, 211, 102, 0.48),
		0 0 0 4px rgba(37, 211, 102, 0.18) !important;
}

/* Modeller sayfası — Kadence başlık bandını gizle */
/* Çocuk Oyun Evi sayfası — süreç, fiyat faktörleri, ilçeler */
.desen-process {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	margin: 0 0 2.5rem;
	padding: 0;
	list-style: none;
	counter-reset: none;
}

.desen-process li {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.15rem 1.2rem;
	background: #fff;
	border: 1px solid #e8dfd3;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(44, 36, 28, 0.05);
}

.desen-process__num {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.35rem;
	height: 2.35rem;
	border-radius: 50%;
	background: linear-gradient(135deg, #c9a227 0%, #6b4423 100%);
	color: #fff;
	font-weight: 800;
	font-size: 1rem;
}

.desen-process li strong {
	display: block;
	margin-bottom: 0.25rem;
	color: var(--desen-wood-dark);
	font-size: 1rem;
}

.desen-process li p {
	margin: 0;
	color: var(--desen-muted);
	font-size: 0.92rem;
	line-height: 1.5;
}

.desen-factors {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	margin: 0 0 2.5rem;
}

.desen-factors__item {
	padding: 1.15rem 1.2rem;
	background: var(--desen-cream);
	border: 1px solid #e8dfd3;
	border-radius: 10px;
}

.desen-factors__item strong {
	display: block;
	margin-bottom: 0.35rem;
	color: var(--desen-wood-dark);
}

.desen-factors__item p {
	margin: 0;
	color: var(--desen-muted);
	font-size: 0.92rem;
	line-height: 1.5;
}

.desen-districts {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	justify-content: center;
	margin: 0 0 2.5rem;
}

.desen-districts span {
	display: inline-block;
	padding: 0.4rem 0.85rem;
	background: #fff;
	border: 1px solid #e8dfd3;
	border-radius: 999px;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--desen-wood);
}

.page-id-8 .entry-hero.page-hero-section,
.page-id-8 .entry-header.page-header,
.page-id-10 .entry-hero.page-hero-section,
.page-id-10 .entry-header.page-header {
	display: none !important;
}

@media (max-width: 780px) {
	.desen-process,
	.desen-factors {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 780px) {
	.desen-page-hero {
		min-height: min(58vh, 420px);
		margin-bottom: 1.5rem;
	}

	.desen-page-hero__content {
		margin-bottom: 1.5rem;
		padding: 1.1rem 1.15rem 1.2rem;
	}

	.desen-models-highlights {
		grid-template-columns: 1fr;
	}

	.desen-page-hero__actions {
		flex-direction: column;
	}

	.desen-page-hero__actions .desen-cta {
		width: 100%;
		justify-content: center;
	}
}

/* Gallery grid */
.desen-gallery {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	margin: 1.5rem 0 2.5rem;
}

.desen-gallery figure {
	margin: 0;
	overflow: hidden;
	border: 1px solid #e8dfd3;
	background: #f7f1e8;
}

.desen-gallery img {
	display: block;
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	object-position: center;
	transition: transform 0.45s ease;
}

.desen-service img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	object-position: center;
}

.wp-block-image img {
	height: auto;
	max-width: 100%;
	border-radius: 2px;
}

@media (max-width: 900px) {
	.desen-gallery {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 560px) {
	.desen-gallery {
		grid-template-columns: 1fr;
	}
	.desen-gallery img {
		aspect-ratio: 4 / 5;
	}
}

/* Map embed */
.desen-map {
	margin: 1.25rem 0 2rem;
	border: 1px solid #e8dfd3;
	overflow: hidden;
	min-height: 320px;
}

.desen-map iframe {
	display: block;
	width: 100%;
	height: 360px;
	border: 0;
}
