/* Evde Doktorum — section-specific styles */

/* ===== Header ===== */
.ed-header {
	position: sticky;
	top: 0;
	z-index: var(--ed-z-nav);
	background: color-mix(in srgb, var(--ed-bg) 82%, transparent);
	-webkit-backdrop-filter: saturate(180%) blur(12px);
	backdrop-filter: saturate(180%) blur(12px);
	border-bottom: 1px solid var(--ed-line-soft);
}

.ed-topbar {
	background: var(--ed-primary);
	color: rgba(255, 255, 255, 0.9);
	font-size: var(--ed-fs-sm);
	padding: 8px 0;
}
.ed-topbar__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: var(--ed-s3);
}
.ed-topbar__left, .ed-topbar__right {
	display: flex;
	align-items: center;
	gap: var(--ed-s5);
	flex-wrap: wrap;
}
.ed-topbar a { color: rgba(255, 255, 255, 0.9); display: inline-flex; align-items: center; gap: 6px; }
.ed-topbar a:hover { color: var(--ed-accent); }
.ed-topbar svg { width: 14px; height: 14px; }

.ed-topbar__social { display: flex; align-items: center; gap: var(--ed-s3); }
.ed-topbar__social a {
	width: 28px;
	height: 28px;
	border-radius: var(--ed-r-full);
	background: rgba(255, 255, 255, 0.1);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.ed-topbar__social a:hover { background: var(--ed-accent); color: var(--ed-primary); }

@media (max-width: 767px) {
	.ed-topbar { display: none; }
}

.ed-nav {
	padding: var(--ed-s3) 0;
}
.ed-nav__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--ed-s5);
}

.ed-brand {
	display: inline-flex;
	align-items: center;
	gap: var(--ed-s3);
	text-decoration: none;
}
.ed-brand img { max-height: 52px; width: auto; }
.ed-brand__text {
	font-family: var(--ed-font-display);
	font-weight: 800;
	font-size: var(--ed-fs-lg);
	color: var(--ed-primary);
	letter-spacing: -0.02em;
	line-height: 1;
}
.ed-brand__text small {
	display: block;
	font-weight: 500;
	font-size: var(--ed-fs-xs);
	color: var(--ed-muted);
	letter-spacing: 0;
}

.ed-menu {
	display: flex;
	align-items: center;
	gap: var(--ed-s2);
	list-style: none;
	padding: 0;
	margin: 0;
}

.ed-menu > li { position: relative; }
.ed-menu > li > a {
	display: inline-flex;
	align-items: center;
	padding: 10px 14px;
	color: var(--ed-ink-soft);
	font-weight: 600;
	font-size: var(--ed-fs-sm);
	border-radius: var(--ed-r-sm);
}
.ed-menu > li > a:hover,
.ed-menu > li.current-menu-item > a { color: var(--ed-primary); background: var(--ed-primary-100); }

.ed-menu .sub-menu {
	position: absolute;
	top: 100%;
	inset-inline-start: 0;
	min-width: 220px;
	background: var(--ed-surface);
	border: 1px solid var(--ed-line);
	border-radius: var(--ed-r-md);
	box-shadow: var(--ed-sh-3);
	padding: 8px;
	list-style: none;
	margin: 6px 0 0;
	opacity: 0;
	pointer-events: none;
	transform: translateY(6px);
	transition: opacity var(--ed-dur) var(--ed-ease), transform var(--ed-dur) var(--ed-ease);
}
.ed-menu > li:hover .sub-menu,
.ed-menu > li:focus-within .sub-menu {
	opacity: 1;
	pointer-events: auto;
	transform: none;
}
.ed-menu .sub-menu a {
	display: block;
	padding: 8px 12px;
	border-radius: var(--ed-r-xs);
	color: var(--ed-body);
	font-size: var(--ed-fs-sm);
}
.ed-menu .sub-menu a:hover { background: var(--ed-primary-100); color: var(--ed-primary); }

.ed-nav__cta { display: flex; gap: var(--ed-s2); align-items: center; }

.ed-nav__toggle {
	display: none;
	width: 44px;
	height: 44px;
	border-radius: var(--ed-r-sm);
	background: var(--ed-primary-100);
	color: var(--ed-primary);
	align-items: center;
	justify-content: center;
}
.ed-nav__toggle svg { width: 22px; height: 22px; }

@media (max-width: 899px) {
	.ed-menu { display: none; }
	.ed-nav__cta .ed-btn--appointment { display: none; }
	.ed-nav__toggle { display: inline-flex; }
}

/* Mobile nav drawer */
.ed-mobile-nav {
	position: fixed;
	inset: 0;
	z-index: var(--ed-z-modal);
	display: none;
}
.ed-mobile-nav.is-open { display: block; }
.ed-mobile-nav__backdrop { position: absolute; inset: 0; background: rgba(11, 17, 32, 0.55); }
.ed-mobile-nav__panel {
	position: absolute;
	inset-block: 0;
	inset-inline-end: 0;
	width: min(360px, 90vw);
	background: var(--ed-surface);
	padding: var(--ed-s5);
	overflow-y: auto;
	animation: ed-slide-in-end var(--ed-dur) var(--ed-ease) both;
}
@keyframes ed-slide-in-end {
	from { transform: translateX(100%); }
	to { transform: none; }
}
.ed-mobile-nav__close {
	position: absolute;
	top: 12px;
	inset-inline-end: 12px;
	width: 40px; height: 40px;
	border-radius: var(--ed-r-full);
	background: var(--ed-surface-2);
}
.ed-mobile-nav__close svg { width: 18px; height: 18px; margin: auto; }

.ed-mobile-nav .menu {
	list-style: none;
	padding: 0;
	margin: var(--ed-s6) 0 var(--ed-s5);
}
.ed-mobile-nav .menu a {
	display: block;
	padding: 12px 14px;
	border-radius: var(--ed-r-sm);
	color: var(--ed-ink);
	font-weight: 600;
}
.ed-mobile-nav .menu a:hover, .ed-mobile-nav .menu .current-menu-item > a { background: var(--ed-primary-100); }
.ed-mobile-nav .sub-menu { padding-inline-start: var(--ed-s4); }

/* ===== Hero ===== */
.ed-hero {
	position: relative;
	background: var(--ed-gr-hero);
	padding: clamp(48px, 8vw, 96px) 0 clamp(64px, 10vw, 120px);
	overflow: hidden;
}

.ed-hero__layout {
	display: grid;
	gap: var(--ed-s7);
	align-items: center;
	grid-template-columns: 1fr;
}

@media (min-width: 960px) {
	.ed-hero__layout {
		grid-template-columns: 1.05fr 1fr;
	}
}

.ed-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: var(--ed-s2);
	color: var(--ed-primary);
	background: var(--ed-accent-100);
	padding: 8px 16px;
	border-radius: var(--ed-r-full);
	font-size: var(--ed-fs-sm);
	font-weight: 700;
	letter-spacing: 0.04em;
	margin-bottom: var(--ed-s4);
}
.ed-hero__eyebrow svg { width: 16px; height: 16px; color: var(--ed-accent-600); }

.ed-hero__title {
	font-size: var(--ed-fs-hero);
	line-height: 1.05;
	margin-bottom: var(--ed-s4);
	color: var(--ed-ink);
}
.ed-hero__title em {
	font-style: normal;
	background: var(--ed-gr-accent);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.ed-hero__lede {
	font-size: var(--ed-fs-md);
	color: var(--ed-body);
	line-height: var(--ed-lh-relaxed);
	margin-bottom: var(--ed-s6);
	max-width: 520px;
}

.ed-hero__cta { display: flex; gap: var(--ed-s3); flex-wrap: wrap; margin-bottom: var(--ed-s7); }

.ed-hero__badges {
	display: grid;
	gap: var(--ed-s3);
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	max-width: 640px;
}

.ed-hero__badge {
	display: flex;
	align-items: center;
	gap: var(--ed-s3);
	padding: var(--ed-s3) var(--ed-s4);
	background: var(--ed-surface);
	border: 1px solid var(--ed-line);
	border-radius: var(--ed-r-md);
}
.ed-hero__badge-icon {
	width: 40px;
	height: 40px;
	flex: 0 0 40px;
	border-radius: var(--ed-r-sm);
	background: var(--ed-accent-100);
	color: var(--ed-accent-700);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.ed-hero__badge-icon svg { width: 20px; height: 20px; }
.ed-hero__badge-text {
	display: flex;
	flex-direction: column;
	line-height: 1.2;
}
.ed-hero__badge-text strong { color: var(--ed-ink); font-size: var(--ed-fs-sm); }
.ed-hero__badge-text span { color: var(--ed-muted); font-size: var(--ed-fs-xs); }

.ed-hero__media {
	position: relative;
	aspect-ratio: 4 / 5;
	border-radius: var(--ed-r-xl);
	overflow: hidden;
	background: var(--ed-surface-2);
	box-shadow: var(--ed-sh-3);
}
.ed-hero__media img { width: 100%; height: 100%; object-fit: cover; }

.ed-hero__float {
	position: absolute;
	background: var(--ed-surface);
	border-radius: var(--ed-r-md);
	padding: var(--ed-s4);
	box-shadow: var(--ed-sh-3);
	display: flex;
	align-items: center;
	gap: var(--ed-s3);
	max-width: 260px;
	border: 1px solid var(--ed-line);
}
.ed-hero__float--tl { top: var(--ed-s5); inset-inline-start: var(--ed-s5); }
.ed-hero__float--br { bottom: var(--ed-s5); inset-inline-end: var(--ed-s5); }
.ed-hero__float-icon {
	width: 44px;
	height: 44px;
	border-radius: var(--ed-r-full);
	background: var(--ed-gr-accent);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.ed-hero__float-icon svg { width: 22px; height: 22px; }
.ed-hero__float-text strong { display: block; color: var(--ed-ink); font-size: var(--ed-fs-sm); }
.ed-hero__float-text span { color: var(--ed-muted); font-size: var(--ed-fs-xs); }

.ed-hero__media-fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background: var(--ed-gr-primary);
	color: #fff;
}

@media (max-width: 767px) {
	.ed-hero__float--tl, .ed-hero__float--br { display: none; }
	.ed-hero__media { aspect-ratio: 4 / 3; }
}

/* ===== Page hero (iç sayfa) ===== */
.ed-page-hero {
	background: var(--ed-gr-soft);
	padding: clamp(60px, 8vw, 120px) 0 clamp(40px, 5vw, 64px);
	border-bottom: 1px solid var(--ed-line-soft);
}
.ed-page-hero__title {
	font-size: var(--ed-fs-h1);
	margin-bottom: var(--ed-s3);
	letter-spacing: -0.02em;
}
.ed-page-hero__lede {
	font-size: var(--ed-fs-md);
	color: var(--ed-muted);
	max-width: 720px;
}
.ed-page-hero--compact { padding: clamp(48px, 6vw, 80px) 0 var(--ed-s5); }

/* ===== Trust bar ===== */
.ed-trust {
	padding-block: var(--ed-s7);
	background: var(--ed-surface);
	border-bottom: 1px solid var(--ed-line-soft);
}
.ed-trust__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: var(--ed-s5);
	align-items: center;
}
.ed-trust__item {
	display: flex;
	align-items: center;
	gap: var(--ed-s3);
	justify-content: center;
	text-align: start;
}
.ed-trust__item svg {
	width: 28px;
	height: 28px;
	color: var(--ed-accent-600);
	flex: 0 0 28px;
}
.ed-trust__item span {
	font-weight: 600;
	color: var(--ed-ink-soft);
	font-size: var(--ed-fs-sm);
	line-height: 1.3;
}

/* ===== Stats strip ===== */
.ed-stats {
	padding-block: var(--ed-section-y);
	background: var(--ed-gr-primary);
	color: #fff;
	position: relative;
	overflow: hidden;
}
.ed-stats::before {
	content: "";
	position: absolute;
	inset: -40% -20% auto auto;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(26, 204, 191, 0.3), transparent 60%);
	pointer-events: none;
}
.ed-stats__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: var(--ed-s5);
	position: relative;
	z-index: 2;
}
.ed-stat { text-align: center; }
.ed-stat__value {
	font-family: var(--ed-font-display);
	font-size: clamp(2.5rem, 2rem + 2vw, 3.75rem);
	font-weight: 800;
	line-height: 1;
	display: inline-flex;
	align-items: baseline;
	color: #fff;
	font-variant-numeric: tabular-nums;
	letter-spacing: -0.03em;
}
.ed-stat__suffix {
	color: var(--ed-accent);
	margin-inline-start: 2px;
}
.ed-stat__label {
	display: block;
	margin-top: var(--ed-s2);
	color: rgba(255, 255, 255, 0.82);
	font-size: var(--ed-fs-sm);
	letter-spacing: 0.02em;
	font-weight: 500;
}

/* ===== Services Grid / Areas Grid ===== */
.ed-services,
.ed-areas {
	padding-block: var(--ed-section-y);
}
.ed-areas { background: var(--ed-surface-2); }

.ed-services__grid,
.ed-areas__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: var(--ed-s5);
}
@media (min-width: 900px) {
	.ed-services__grid[data-cols="3"],
	.ed-areas__grid[data-cols="3"] { grid-template-columns: repeat(3, 1fr); }
	.ed-services__grid[data-cols="4"],
	.ed-areas__grid[data-cols="4"] { grid-template-columns: repeat(4, 1fr); }
	.ed-services__grid[data-cols="2"],
	.ed-areas__grid[data-cols="2"] { grid-template-columns: repeat(2, 1fr); }
}

.ed-services__footer,
.ed-areas__footer {
	display: flex;
	justify-content: center;
	margin-top: var(--ed-s7);
}

/* ===== Process Steps ===== */
.ed-process {
	padding-block: var(--ed-section-y);
	background: var(--ed-surface);
}
.ed-process__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: var(--ed-s5);
	counter-reset: stepCount;
}
.ed-step {
	position: relative;
	padding: var(--ed-s6);
	background: var(--ed-surface-2);
	border-radius: var(--ed-r-lg);
	border: 1px solid var(--ed-line);
}
.ed-step__num {
	width: 48px;
	height: 48px;
	border-radius: var(--ed-r-full);
	background: var(--ed-gr-primary);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: var(--ed-fs-lg);
	margin-bottom: var(--ed-s4);
}
.ed-step__title { font-size: var(--ed-fs-md); margin-bottom: var(--ed-s2); line-height: var(--ed-lh-snug); }
.ed-step__text { font-size: var(--ed-fs-sm); color: var(--ed-muted); line-height: var(--ed-lh-relaxed); }

/* ===== Why us ===== */
.ed-why { padding-block: var(--ed-section-y); }
.ed-why__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: var(--ed-s5);
}
.ed-why__item {
	padding: var(--ed-s6);
	background: var(--ed-surface);
	border: 1px solid var(--ed-line);
	border-radius: var(--ed-r-lg);
	transition: all var(--ed-dur) var(--ed-ease);
}
.ed-why__item:hover {
	border-color: var(--ed-accent);
	box-shadow: var(--ed-sh-2);
	transform: translateY(-4px);
}
.ed-why__icon {
	width: 56px;
	height: 56px;
	border-radius: var(--ed-r-md);
	background: var(--ed-gr-accent);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: var(--ed-s4);
}
.ed-why__icon svg { width: 28px; height: 28px; }

/* ===== Testimonials ===== */
.ed-testimonials {
	padding-block: var(--ed-section-y);
	background: var(--ed-surface-2);
}
.ed-testimonials__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: var(--ed-s5);
}
.ed-testimonial {
	padding: var(--ed-s6);
	background: var(--ed-surface);
	border-radius: var(--ed-r-lg);
	border: 1px solid var(--ed-line);
	display: flex;
	flex-direction: column;
	gap: var(--ed-s4);
}
.ed-testimonial__text {
	color: var(--ed-body);
	font-size: var(--ed-fs-md);
	line-height: var(--ed-lh-relaxed);
	font-style: italic;
	flex: 1;
}
.ed-testimonial__person { display: flex; align-items: center; gap: var(--ed-s3); }
.ed-testimonial__person strong { color: var(--ed-ink); display: block; }
.ed-testimonial__person span { color: var(--ed-muted); font-size: var(--ed-fs-sm); }

/* ===== FAQ ===== */
.ed-faq { padding-block: var(--ed-section-y); }
.ed-faq__wrap { max-width: 860px; margin-inline: auto; }

/* ===== Blog feed ===== */
.ed-blogfeed { padding-block: var(--ed-section-y); background: var(--ed-surface-2); }
.ed-blogfeed__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: var(--ed-s5);
}
@media (min-width: 900px) {
	.ed-blogfeed__grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== Newsletter ===== */
.ed-newsletter {
	padding-block: var(--ed-section-y);
	background: var(--ed-gr-primary);
	color: #fff;
	text-align: center;
}
.ed-newsletter__wrap { max-width: 720px; margin-inline: auto; }
.ed-newsletter__eyebrow { color: var(--ed-accent); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: var(--ed-fs-xs); }
.ed-newsletter__title { font-size: var(--ed-fs-h2); color: #fff; margin-block: var(--ed-s3); }
.ed-newsletter__discount {
	display: inline-block;
	background: var(--ed-accent);
	color: var(--ed-primary);
	font-weight: 800;
	padding: 8px 18px;
	border-radius: var(--ed-r-full);
	margin-bottom: var(--ed-s5);
	font-size: var(--ed-fs-sm);
}
.ed-newsletter__form {
	display: flex;
	gap: var(--ed-s2);
	margin-top: var(--ed-s4);
	flex-wrap: wrap;
	justify-content: center;
}
.ed-newsletter__form input {
	flex: 1 1 260px;
	padding: 14px 18px;
	border-radius: var(--ed-r-full);
	border: 0;
	background: rgba(255, 255, 255, 0.92);
	color: var(--ed-ink);
}

/* ===== Contact CTA ===== */
.ed-contact-cta { padding-block: var(--ed-section-y); }
.ed-contact-cta__wrap {
	background: var(--ed-surface);
	border-radius: var(--ed-r-xl);
	padding: clamp(32px, 6vw, 80px);
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--ed-s6);
	box-shadow: var(--ed-sh-2);
	border: 1px solid var(--ed-line);
}
@media (min-width: 900px) {
	.ed-contact-cta__wrap { grid-template-columns: 1.2fr 1fr; align-items: center; }
}
.ed-contact-cta__copy h2 { margin-bottom: var(--ed-s4); }
.ed-contact-cta__actions { display: flex; gap: var(--ed-s3); flex-wrap: wrap; }
.ed-contact-cta__side {
	display: flex;
	flex-direction: column;
	gap: var(--ed-s3);
	padding: var(--ed-s5);
	background: var(--ed-gr-primary);
	color: #fff;
	border-radius: var(--ed-r-lg);
}
.ed-contact-cta__side a { color: #fff; display: flex; align-items: center; gap: var(--ed-s2); }
.ed-contact-cta__side a:hover { color: var(--ed-accent); }

/* ===== Footer ===== */
.ed-footer {
	background: var(--ed-primary);
	color: rgba(255, 255, 255, 0.78);
	padding-block: var(--ed-s8) var(--ed-s5);
	margin-top: auto;
}
.ed-footer__cols {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: var(--ed-s6);
	padding-bottom: var(--ed-s7);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.ed-footer__col h4 {
	color: #fff;
	font-size: var(--ed-fs-base);
	margin-bottom: var(--ed-s4);
	letter-spacing: 0.02em;
}
.ed-footer__col ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.ed-footer__col a { color: rgba(255, 255, 255, 0.72); font-size: var(--ed-fs-sm); }
.ed-footer__col a:hover { color: var(--ed-accent); }
.ed-footer__col svg { width: 16px; height: 16px; }
.ed-footer__brand img { max-height: 48px; margin-bottom: var(--ed-s3); filter: brightness(0) invert(1); }
.ed-footer__tagline { font-size: var(--ed-fs-sm); color: rgba(255, 255, 255, 0.7); line-height: var(--ed-lh-relaxed); margin-bottom: var(--ed-s4); }
.ed-footer__social { display: flex; gap: var(--ed-s2); margin-top: var(--ed-s3); }
.ed-footer__social a {
	width: 36px;
	height: 36px;
	border-radius: var(--ed-r-full);
	background: rgba(255, 255, 255, 0.1);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.ed-footer__social a:hover { background: var(--ed-accent); color: var(--ed-primary); }

.ed-footer__bottom {
	padding-top: var(--ed-s5);
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: var(--ed-s3);
	font-size: var(--ed-fs-sm);
	color: rgba(255, 255, 255, 0.62);
}
.ed-footer__legal { display: flex; gap: var(--ed-s4); flex-wrap: wrap; }
.ed-footer__legal a { color: rgba(255, 255, 255, 0.72); }
.ed-footer__legal a:hover { color: var(--ed-accent); }
.ed-footer__credit {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: rgba(255, 255, 255, 0.62);
	font-size: var(--ed-fs-xs);
	letter-spacing: 0.04em;
}
.ed-footer__credit-label { text-transform: uppercase; }
.ed-footer__credit a { display: inline-flex; align-items: center; }
.ed-footer__credit-logo {
	height: 22px;
	width: auto;
	filter: brightness(0) invert(1);
	opacity: 0.85;
	transition: opacity var(--ed-dur) var(--ed-ease), transform var(--ed-dur) var(--ed-ease);
}
.ed-footer__credit a:hover .ed-footer__credit-logo {
	opacity: 1;
	transform: translateY(-1px);
}

/* ===== Sticky mobile CTA ===== */
.ed-sticky-cta {
	position: fixed;
	inset-inline: 0;
	bottom: 0;
	z-index: var(--ed-z-sticky);
	display: none;
	padding: 10px;
	gap: 10px;
	background: var(--ed-surface);
	border-top: 1px solid var(--ed-line);
	box-shadow: 0 -4px 16px rgba(25, 34, 115, 0.08);
}
@media (max-width: 767px) {
	.ed-sticky-cta { display: flex; }
	body { padding-bottom: 80px; }
}
.ed-sticky-cta .ed-btn { flex: 1; padding: 14px; }

/* ===== WhatsApp float ===== */
.ed-wa-float {
	position: fixed;
	inset-inline-end: 18px;
	bottom: 18px;
	z-index: var(--ed-z-fab);
	width: 56px;
	height: 56px;
	border-radius: var(--ed-r-full);
	background: #25d366;
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
	transition: transform var(--ed-dur) var(--ed-ease);
}
.ed-wa-float:hover { color: #fff; transform: scale(1.05); }
.ed-wa-float svg { width: 28px; height: 28px; }
@media (max-width: 767px) {
	.ed-wa-float { bottom: 96px; }
}

/* ===== Sort bar ===== */
.ed-sortbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: var(--ed-s3);
	margin-bottom: var(--ed-s5);
	padding: var(--ed-s3) var(--ed-s4);
	background: var(--ed-surface);
	border: 1px solid var(--ed-line);
	border-radius: var(--ed-r-md);
}
.ed-sortbar__count { font-size: var(--ed-fs-sm); color: var(--ed-muted); }
.ed-sortbar__controls { display: flex; gap: var(--ed-s3); align-items: center; flex-wrap: wrap; }
.ed-sortbar__controls label { font-size: var(--ed-fs-sm); color: var(--ed-ink-soft); font-weight: 600; }
.ed-sortbar__controls select {
	padding: 8px 36px 8px 14px;
	border-radius: var(--ed-r-sm);
	border: 1px solid var(--ed-line);
	background-color: var(--ed-surface);
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23192273' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
	background-repeat: no-repeat;
	background-position: right 10px center;
	font-size: var(--ed-fs-sm);
	color: var(--ed-ink);
	appearance: none;
}
