/*
 * Daily Water — Premium tema stilleri (v2).
 * Tasarım dili: geniş boşluklar, büyük tipografi, glassmorphism header,
 * yumuşak derin gölgeler, akıcı mikro animasyonlar.
 *
 * İçindekiler:
 *  1. Tokenler        7. Hero slider      13. Blog / kartlar
 *  2. Temel           8. İstatistikler    14. Tek yazı
 *  3. Tipografi       9. Split / süreç    15. Hakkımızda
 *  4. Butonlar       10. WooCommerce      16. İletişim
 *  5. Header         11. Sertifikalar     17. Footer
 *  6. Breadcrumb     12. CTA              18. Yardımcılar / animasyon / responsive
 */

/* ============ 1. TOKENLER ============ */
:root {
	--dw-navy: #0c3b5c;
	--dw-deep: #072a44;
	--dw-blue: #16729b;
	--dw-teal: #12b5bf;
	--dw-aqua: #e7f6f8;
	--dw-ice: #f4f9fb;
	--dw-ink: #0e2230;
	--dw-mist: #5f7688;
	--dw-line: #e3edf2;
	--dw-grad: linear-gradient(120deg, var(--dw-blue), var(--dw-teal));
	--dw-grad-dark: linear-gradient(150deg, var(--dw-deep), var(--dw-navy) 55%, #0d5b7a);

	--font-display: "Sora", "Inter", system-ui, sans-serif;
	--font-body: "Inter", system-ui, -apple-system, sans-serif;

	--radius-sm: 12px;
	--radius: 20px;
	--radius-lg: 28px;

	--shadow-sm: 0 2px 10px rgba(12, 59, 92, 0.06);
	--shadow: 0 18px 50px -12px rgba(12, 59, 92, 0.14);
	--shadow-lg: 0 36px 90px -20px rgba(12, 59, 92, 0.22);

	--ease: cubic-bezier(0.22, 1, 0.36, 1);
	--speed: 0.45s;

	--header-h: 88px;
	--topbar-h: 38px;
	--container: 1240px;
}

/* ============ 2. TEMEL ============ */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 1.0625rem;
	line-height: 1.75;
	color: var(--dw-ink);
	background: #fff;
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

a {
	color: var(--dw-blue);
	text-decoration: none;
	transition: color 0.25s var(--ease);
}

a:hover {
	color: var(--dw-teal);
}

.container {
	width: min(var(--container), 100% - 3rem);
	margin-inline: auto;
}

.container--narrow {
	--container: 820px;
}

:focus-visible {
	outline: 3px solid var(--dw-teal);
	outline-offset: 3px;
	border-radius: 6px;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

.skip-link {
	position: absolute;
	top: -60px;
	left: 1rem;
	z-index: 999;
	padding: 0.7rem 1.2rem;
	background: var(--dw-navy);
	color: #fff;
	border-radius: 0 0 var(--radius-sm) var(--radius-sm);
	transition: top 0.25s var(--ease);
}

.skip-link:focus {
	top: 0;
	color: #fff;
}

::selection {
	background: var(--dw-teal);
	color: #fff;
}

/* ============ 3. TİPOGRAFİ / BÖLÜMLER ============ */
h1, h2, h3, h4 {
	font-family: var(--font-display);
	font-weight: 600;
	line-height: 1.14;
	letter-spacing: -0.025em;
	color: var(--dw-navy);
	margin: 0 0 1rem;
	text-wrap: balance;
}

.section {
	padding-block: clamp(4.5rem, 9vw, 8.5rem);
}

.section--tint {
	background: linear-gradient(180deg, var(--dw-ice), #fff);
}

.section__head {
	max-width: 720px;
	margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section__head--row {
	max-width: none;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 2rem;
	flex-wrap: wrap;
}

.section__title {
	font-size: clamp(1.9rem, 3.6vw, 3rem);
	margin: 0.4rem 0 0;
}

.section__title--sm {
	font-size: clamp(1.5rem, 2.6vw, 2rem);
	margin-bottom: 2rem;
}

.section__lead {
	color: var(--dw-mist);
	font-size: clamp(1.05rem, 1.5vw, 1.2rem);
	max-width: 60ch;
	margin: 1.1rem 0 0;
}

.section__foot {
	text-align: center;
	margin-top: clamp(2.5rem, 5vw, 4rem);
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--dw-teal);
}

.eyebrow::before {
	content: "";
	width: 26px;
	height: 2px;
	background: var(--dw-grad);
	border-radius: 2px;
}

.text-gradient {
	background: var(--dw-grad);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

/* ============ 4. BUTONLAR ============ */
.btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.85rem 1.7rem;
	border: 1.5px solid transparent;
	border-radius: 999px;
	font-family: var(--font-body);
	font-size: 0.98rem;
	font-weight: 600;
	line-height: 1.2;
	cursor: pointer;
	overflow: hidden;
	transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
	will-change: transform;
}

.btn svg {
	transition: transform 0.3s var(--ease);
}

.btn:hover svg:last-child {
	transform: translateX(4px);
}

.btn--lg {
	padding: 1.05rem 2.2rem;
	font-size: 1.05rem;
}

.btn--sm {
	padding: 0.55rem 1.15rem;
	font-size: 0.88rem;
}

.btn--primary {
	background: var(--dw-grad);
	color: #fff;
	box-shadow: 0 10px 26px -8px rgba(18, 181, 191, 0.55);
}

.btn--primary:hover {
	color: #fff;
	transform: translateY(-3px);
	box-shadow: 0 18px 36px -10px rgba(18, 181, 191, 0.6);
}

.btn--ghost {
	border-color: var(--dw-line);
	color: var(--dw-navy);
	background: #fff;
}

.btn--ghost:hover {
	border-color: var(--dw-teal);
	color: var(--dw-blue);
	transform: translateY(-3px);
	box-shadow: var(--shadow-sm);
}

.btn--light {
	background: #fff;
	color: var(--dw-navy);
	box-shadow: 0 14px 34px -10px rgba(4, 24, 38, 0.5);
}

.btn--light:hover {
	color: var(--dw-blue);
	transform: translateY(-3px);
}

.btn--ghost-light {
	border-color: rgba(255, 255, 255, 0.55);
	color: #fff;
	backdrop-filter: blur(6px);
	background: rgba(255, 255, 255, 0.08);
}

.btn--ghost-light:hover {
	color: #fff;
	border-color: #fff;
	background: rgba(255, 255, 255, 0.16);
	transform: translateY(-3px);
}

.btn__ripple {
	position: absolute;
	border-radius: 50%;
	background: currentColor;
	opacity: 0.22;
	transform: scale(0);
	animation: dw-ripple 0.65s var(--ease) forwards;
	pointer-events: none;
}

@keyframes dw-ripple {
	to {
		transform: scale(1);
		opacity: 0;
	}
}

/* ============ 5. HEADER (glassmorphism) ============ */
.site-header {
	position: fixed;
	inset-inline: 0;
	top: 0;
	z-index: 100;
}

body {
	padding-top: calc(var(--header-h) + var(--topbar-h));
}

body.is-front {
	padding-top: 0;
}

.site-header__top {
	background: var(--dw-deep);
	color: #bfdce8;
	font-size: 0.82rem;
	height: var(--topbar-h);
	overflow: hidden;
	transition: height 0.35s var(--ease);
}

.site-header.is-scrolled .site-header__top {
	height: 0;
}

.site-header__top-inner {
	display: flex;
	align-items: center;
	gap: 1.6rem;
	height: var(--topbar-h);
}

.topbar-link {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	color: #dcedf4;
	font-weight: 500;
}

.topbar-link:hover {
	color: #fff;
}

.topbar-link--muted {
	color: #8fb6c8;
	margin-left: auto;
}

.site-header__bar {
	background: rgba(255, 255, 255, 0.72);
	-webkit-backdrop-filter: blur(20px) saturate(1.6);
	backdrop-filter: blur(20px) saturate(1.6);
	border-bottom: 1px solid rgba(12, 59, 92, 0.08);
	transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.site-header.is-scrolled .site-header__bar {
	background: rgba(255, 255, 255, 0.86);
	box-shadow: 0 10px 40px -18px rgba(12, 59, 92, 0.25);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	height: var(--header-h);
	transition: height 0.35s var(--ease);
}

.site-header.is-scrolled .site-header__inner {
	height: 70px;
}

.custom-logo-link {
	display: inline-flex;
}

.site-header .custom-logo,
.site-header .site-header__brand img,
.woocommerce .site-header .custom-logo,
.woocommerce-page .site-header .custom-logo {
	width: auto !important;
	height: 58px !important;
	max-height: 58px;
	transition: height 0.35s var(--ease);
}

.site-header.is-scrolled .custom-logo,
.site-header.is-scrolled .site-header__brand img {
	height: 44px !important;
	max-height: 44px;
}

/* Navigasyon */
.site-nav {
	display: flex;
	align-items: center;
	gap: 1.6rem;
}

.site-nav__list {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-nav__list > li {
	position: relative;
}

.site-nav__list > li > a {
	position: relative;
	display: inline-block;
	padding: 0.55rem 0.95rem;
	font-family: var(--font-display);
	font-size: 0.98rem;
	font-weight: 500;
	letter-spacing: 0.01em;
	color: var(--dw-ink);
	border-radius: 999px;
}

/* Hover: altta büyüyen gradient çizgi */
.site-nav__list > li > a::after {
	content: "";
	position: absolute;
	left: 0.95rem;
	right: 0.95rem;
	bottom: 0.2rem;
	height: 2px;
	border-radius: 2px;
	background: var(--dw-grad);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.35s var(--ease);
}

.site-nav__list > li > a:hover {
	color: var(--dw-navy);
}

.site-nav__list > li > a:hover::after {
	transform: scaleX(1);
}

/* Aktif sayfa: yumuşak pill */
.site-nav__list > li.current-menu-item > a,
.site-nav__list > li.current-menu-ancestor > a,
.site-nav__list > li.current_page_parent > a {
	background: var(--dw-aqua);
	color: var(--dw-navy);
	font-weight: 600;
}

.site-nav__list > li.current-menu-item > a::after {
	transform: scaleX(1);
}

/* Alt menü */
.site-nav__list .sub-menu {
	position: absolute;
	top: calc(100% + 0.7rem);
	left: 0;
	min-width: 230px;
	list-style: none;
	margin: 0;
	padding: 0.6rem;
	background: rgba(255, 255, 255, 0.92);
	-webkit-backdrop-filter: blur(18px);
	backdrop-filter: blur(18px);
	border: 1px solid var(--dw-line);
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
}

.site-nav__list li:hover > .sub-menu,
.site-nav__list li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.site-nav__list .sub-menu a {
	display: block;
	padding: 0.6rem 0.9rem;
	border-radius: 9px;
	color: var(--dw-ink);
	font-size: 0.94rem;
}

.site-nav__list .sub-menu a:hover {
	background: var(--dw-aqua);
	color: var(--dw-navy);
}

.nav-toggle {
	display: none;
	background: none;
	border: 0;
	padding: 0.4rem;
	color: var(--dw-navy);
	cursor: pointer;
}

.nav-toggle__close {
	display: none;
}

/* Sayfa başlığı bandı */
.page-header {
	background:
		radial-gradient(60% 120% at 85% -20%, rgba(18, 181, 191, 0.14), transparent),
		linear-gradient(180deg, var(--dw-ice), #fff);
	border-bottom: 1px solid var(--dw-line);
	padding: clamp(2rem, 4.5vw, 3.6rem) 0;
}

.page-header__title {
	font-size: clamp(1.9rem, 4vw, 2.9rem);
	margin: 0.7rem 0 0;
}

.page-header__lead {
	color: var(--dw-mist);
	max-width: 62ch;
	margin: 0.7rem 0 0;
	font-size: 1.08rem;
}

/* ============ 6. BREADCRUMB ============ */
.breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	align-items: center;
	font-size: 0.86rem;
	color: var(--dw-mist);
}

.breadcrumbs a {
	color: var(--dw-mist);
}

.breadcrumbs a:hover {
	color: var(--dw-blue);
}

.breadcrumbs .sep {
	opacity: 0.5;
}

/* ============ 7. HERO SLIDER ============ */
.hero-slider {
	position: relative;
	height: 100svh;
	min-height: 640px;
	overflow: hidden;
	background: var(--dw-deep);
}

.hero-slide {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 1.1s var(--ease), visibility 1.1s;
}

.hero-slide.is-active {
	opacity: 1;
	visibility: visible;
	z-index: 1;
}

.hero-slide__bg {
	position: absolute;
	inset: -4%;
	background-size: cover;
	background-position: center;
	transform: scale(1);
}

.hero-slide.is-active .hero-slide__bg {
	animation: dw-kenburns 9s var(--ease) forwards;
}

@keyframes dw-kenburns {
	from { transform: scale(1); }
	to { transform: scale(1.09); }
}

.hero-slide__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(100deg, rgba(5, 28, 45, 0.82) 12%, rgba(5, 28, 45, 0.45) 52%, rgba(5, 28, 45, 0.15)),
		linear-gradient(0deg, rgba(5, 28, 45, 0.55), transparent 42%);
}

.hero-slide__content {
	position: relative;
	z-index: 2;
	max-width: 720px;
	margin-inline: auto;
	width: min(var(--container), 100% - 3rem);
	padding-top: var(--topbar-h);
}

.hero-slide__content > * {
	opacity: 0;
	transform: translateY(28px);
}

.hero-slide.is-active .hero-slide__content > * {
	animation: dw-fade-up 0.9s var(--ease) forwards;
}

.hero-slide.is-active .hero-slide__content > *:nth-child(1) { animation-delay: 0.25s; }
.hero-slide.is-active .hero-slide__content > *:nth-child(2) { animation-delay: 0.4s; }
.hero-slide.is-active .hero-slide__content > *:nth-child(3) { animation-delay: 0.55s; }
.hero-slide.is-active .hero-slide__content > *:nth-child(4) { animation-delay: 0.7s; }

@keyframes dw-fade-up {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-slide__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	margin: 0 0 1.3rem;
	padding: 0.5rem 1.1rem;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.1);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	color: #dff5f7;
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.hero-slide__title {
	color: #fff;
	font-size: clamp(2.4rem, 6vw, 4.4rem);
	font-weight: 600;
	letter-spacing: -0.03em;
	margin: 0 0 1.2rem;
}

.hero-slide__text {
	color: rgba(233, 246, 250, 0.92);
	font-size: clamp(1.05rem, 1.7vw, 1.25rem);
	line-height: 1.7;
	max-width: 54ch;
	margin: 0 0 2.2rem;
}

.hero-slide__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

/* Slider noktaları + ilerleme */
.hero-slider__nav {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 3.2rem;
	z-index: 3;
	display: flex;
	gap: 0.7rem;
}

.hero-dot {
	position: relative;
	width: 46px;
	height: 5px;
	padding: 0;
	border: 0;
	border-radius: 3px;
	background: rgba(255, 255, 255, 0.3);
	cursor: pointer;
	overflow: hidden;
	transition: background 0.3s;
}

.hero-dot__progress {
	position: absolute;
	inset: 0;
	background: #fff;
	border-radius: 3px;
	transform: scaleX(0);
	transform-origin: left;
}

.hero-dot.is-active .hero-dot__progress {
	animation: dw-progress 6.5s linear forwards;
}

@keyframes dw-progress {
	to { transform: scaleX(1); }
}

/* Scroll göstergesi */
.hero-scroll {
	position: absolute;
	right: 2.4rem;
	bottom: 2.6rem;
	z-index: 3;
	color: rgba(255, 255, 255, 0.85);
}

.hero-scroll__mouse {
	display: block;
	width: 26px;
	height: 42px;
	border: 2px solid currentColor;
	border-radius: 14px;
	position: relative;
}

.hero-scroll__mouse::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 8px;
	width: 4px;
	height: 8px;
	margin-left: -2px;
	border-radius: 2px;
	background: currentColor;
	animation: dw-scroll-hint 1.8s var(--ease) infinite;
}

@keyframes dw-scroll-hint {
	0% { opacity: 1; transform: translateY(0); }
	70% { opacity: 0; transform: translateY(12px); }
	100% { opacity: 0; }
}

/* Ana sayfada header hero üstünde şeffaf başlar */
body.is-front .site-header:not(.is-scrolled) .site-header__bar {
	background: transparent;
	border-bottom-color: transparent;
	-webkit-backdrop-filter: none;
	backdrop-filter: none;
}

body.is-front .site-header:not(.is-scrolled) .site-nav__list > li > a {
	color: rgba(255, 255, 255, 0.92);
}

body.is-front .site-header:not(.is-scrolled) .site-nav__list > li > a:hover {
	color: #fff;
}

body.is-front .site-header:not(.is-scrolled) .site-nav__list > li.current-menu-item > a {
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
}

body.is-front .site-header:not(.is-scrolled) .nav-toggle {
	color: #fff;
}

body.is-front .site-header:not(.is-scrolled) .custom-logo {
	filter: brightness(0) invert(1);
}

/* ============ 8. İSTATİSTİKLER ============ */
.stats {
	background: var(--dw-grad-dark);
	padding-block: clamp(3rem, 6vw, 4.6rem);
	position: relative;
	overflow: hidden;
}

.stats::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(50% 90% at 80% 10%, rgba(18, 181, 191, 0.25), transparent);
	pointer-events: none;
}

.stats__grid {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}

.stat {
	text-align: center;
}

.stat__number {
	display: block;
	font-family: var(--font-display);
	font-size: clamp(2.1rem, 4vw, 3.2rem);
	font-weight: 600;
	letter-spacing: -0.02em;
	color: #fff;
}

.stat__label {
	display: block;
	margin-top: 0.35rem;
	color: rgba(212, 236, 243, 0.85);
	font-size: 0.95rem;
	letter-spacing: 0.02em;
}

/* ============ 9. SPLIT / FEATURE / SÜREÇ ============ */
.split__grid {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: clamp(2.5rem, 6vw, 5.5rem);
	align-items: center;
}

.split__media {
	position: relative;
}

.split__media img {
	width: 100%;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
}

.split__badge {
	position: absolute;
	left: -1.2rem;
	bottom: 2rem;
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	padding: 0.95rem 1.4rem;
	background: rgba(255, 255, 255, 0.85);
	-webkit-backdrop-filter: blur(14px);
	backdrop-filter: blur(14px);
	border: 1px solid rgba(255, 255, 255, 0.7);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	color: var(--dw-navy);
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 0.95rem;
}

.split__badge svg {
	color: var(--dw-teal);
}

.check-list {
	list-style: none;
	margin: 1.8rem 0 2.2rem;
	padding: 0;
	display: grid;
	gap: 0.9rem;
}

.check-list li {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	font-weight: 500;
	color: var(--dw-ink);
}

.check-list svg {
	flex: none;
	color: var(--dw-teal);
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.6rem;
}

.feature-card {
	background: #fff;
	border: 1px solid var(--dw-line);
	border-radius: var(--radius);
	padding: 2.2rem 1.8rem;
	transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease), border-color var(--speed) var(--ease);
}

.feature-card:hover {
	transform: translateY(-8px);
	border-color: transparent;
	box-shadow: var(--shadow);
}

.feature-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border-radius: 18px;
	background: var(--dw-aqua);
	color: var(--dw-blue);
	margin-bottom: 1.3rem;
	transition: transform var(--speed) var(--ease), background var(--speed) var(--ease), color var(--speed) var(--ease);
}

.feature-card:hover .feature-card__icon {
	background: var(--dw-grad);
	color: #fff;
	transform: scale(1.08) rotate(-4deg);
}

.feature-card__title {
	font-size: 1.15rem;
	margin-bottom: 0.5rem;
}

.feature-card__text {
	color: var(--dw-mist);
	font-size: 0.96rem;
	margin: 0;
}

.process-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.6rem;
	counter-reset: step;
}

.process-card {
	position: relative;
	padding: 2.4rem 2rem;
	border-radius: var(--radius);
	background: linear-gradient(180deg, var(--dw-ice), #fff);
	border: 1px solid var(--dw-line);
	overflow: hidden;
	transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}

.process-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow);
}

.process-card__no {
	font-family: var(--font-display);
	font-size: 3.4rem;
	font-weight: 700;
	line-height: 1;
	background: var(--dw-grad);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	opacity: 0.9;
}

.process-card__title {
	font-size: 1.2rem;
	margin: 1rem 0 0.5rem;
}

.process-card__text {
	color: var(--dw-mist);
	font-size: 0.97rem;
	margin: 0;
}

/* Yaşam galerisi bandı (tam genişlik 3 fotoğraf) */
.photo-band {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.6rem;
	padding: 0 0.6rem;
}

.photo-band__item {
	position: relative;
	margin: 0;
	overflow: hidden;
	border-radius: var(--radius);
	aspect-ratio: 4 / 3;
}

.photo-band__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.9s var(--ease);
}

.photo-band__item:hover img {
	transform: scale(1.06);
}

.photo-band__item figcaption {
	position: absolute;
	left: 1.1rem;
	bottom: 1rem;
	padding: 0.45rem 1rem;
	border-radius: 999px;
	background: rgba(7, 42, 68, 0.55);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	color: #fff;
	font-size: 0.85rem;
	font-weight: 500;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.photo-band__item:hover figcaption {
	opacity: 1;
	transform: translateY(0);
}

/* ============ 10. WOOCOMMERCE ============ */
.section--shop {
	padding-top: clamp(2.5rem, 5vw, 4rem);
}

/* Kategori pilleri */
.cat-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin: 0 0 2.6rem;
}

.cat-pill {
	padding: 0.6rem 1.3rem;
	border: 1.5px solid var(--dw-line);
	border-radius: 999px;
	background: #fff;
	color: var(--dw-mist);
	font-weight: 600;
	font-size: 0.92rem;
	transition: all 0.3s var(--ease);
}

.cat-pill:hover {
	border-color: var(--dw-teal);
	color: var(--dw-blue);
	transform: translateY(-2px);
}

.cat-pill.is-active {
	background: var(--dw-grad);
	border-color: transparent;
	color: #fff;
	box-shadow: 0 8px 20px -6px rgba(18, 181, 191, 0.5);
}

/* Sıralama + sonuç sayısı */
.woocommerce-result-count {
	color: var(--dw-mist);
	font-size: 0.92rem;
}

.woocommerce-ordering select {
	padding: 0.6rem 1rem;
	border: 1.5px solid var(--dw-line);
	border-radius: 999px;
	background: #fff;
	color: var(--dw-ink);
	font-family: var(--font-body);
}

/* Ürün ızgarası — premium kartlar */
ul.products.product-grid {
	display: grid !important;
	grid-template-columns: repeat(3, 1fr);
	gap: 2.2rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.woocommerce ul.products.product-grid li.product,
.woocommerce-page ul.products.product-grid li.product,
ul.products.product-grid li.product {
	width: 100% !important;
	float: none !important;
	clear: none !important;
	position: relative;
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--dw-line);
	border-radius: var(--radius-lg);
	padding: 1.4rem 1.4rem 1.8rem;
	text-align: center;
	transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease), border-color var(--speed) var(--ease);
}

ul.products.product-grid li.product:hover {
	transform: translateY(-10px);
	border-color: transparent;
	box-shadow: var(--shadow-lg);
}

.woocommerce ul.products li.product .product-card__media,
.product-card__media {
	display: block;
	width: 100%;
	min-height: 300px;
	border-radius: var(--radius);
	overflow: hidden;
	background:
		radial-gradient(80% 80% at 50% 20%, #fff, var(--dw-aqua));
	margin-bottom: 1.4rem;
	aspect-ratio: 1;
}

.woocommerce ul.products li.product .product-card__media img,
.woocommerce-page ul.products li.product .product-card__media img,
.product-card__media img {
	width: 100% !important;
	height: 100% !important;
	max-height: 420px;
	object-fit: contain;
	padding: 1.6rem;
	margin: 0 !important;
	transition: transform 0.7s var(--ease);
}

li.product:hover .product-card__media img {
	transform: scale(1.07);
}

ul.products li.product .woocommerce-loop-product__title {
	font-family: var(--font-display);
	font-size: 1.15rem;
	font-weight: 600;
	letter-spacing: -0.015em;
	color: var(--dw-navy);
	margin: 0 0 0.4rem;
	transition: color 0.3s;
}

li.product:hover .woocommerce-loop-product__title {
	color: var(--dw-blue);
}

ul.products li.product .price {
	display: block;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 1.08rem;
	color: var(--dw-teal);
	margin-bottom: 1.2rem;
}

ul.products li.product .price del {
	color: var(--dw-mist);
	font-weight: 400;
	opacity: 0.7;
	margin-right: 0.4rem;
}

.product-card__btn {
	margin-top: auto;
	align-self: center;
	pointer-events: none; /* Kart bağlantısı tıklamayı taşır */
}

li.product:hover .product-card__btn {
	border-color: var(--dw-teal);
	color: var(--dw-blue);
	box-shadow: var(--shadow-sm);
}

/* Kart tamamı tıklanabilir */
ul.products li.product a.woocommerce-LoopProduct-link {
	display: flex;
	flex-direction: column;
	flex: 1;
	color: inherit;
}

ul.products li.product a.woocommerce-LoopProduct-link::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
}

/* İndirim rozeti */
ul.products li.product .onsale,
span.onsale {
	position: absolute;
	top: 1.2rem;
	left: 1.2rem;
	z-index: 2;
	min-width: 0;
	min-height: 0;
	padding: 0.4rem 0.95rem;
	border-radius: 999px;
	background: var(--dw-grad);
	color: #fff;
	font-weight: 600;
	font-size: 0.8rem;
	line-height: 1.4;
	box-shadow: 0 8px 18px -6px rgba(18, 181, 191, 0.6);
}

/* Tek ürün */
.single-product div.product {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
	gap: clamp(2.5rem, 5vw, 4.5rem);
	align-items: start;
}

.single-product div.product .woocommerce-product-gallery {
	position: sticky;
	top: calc(var(--header-h) + 1.5rem);
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: radial-gradient(80% 80% at 50% 20%, #fff, var(--dw-aqua));
	border: 1px solid var(--dw-line);
	padding: 1.6rem;
}

.woocommerce-product-gallery__wrapper {
	border-radius: var(--radius);
	overflow: hidden;
}

.single-product div.product .flex-control-thumbs {
	display: flex;
	gap: 0.7rem;
	list-style: none;
	margin: 1rem 0 0;
	padding: 0;
}

.single-product div.product .flex-control-thumbs img {
	width: 76px;
	height: 76px;
	object-fit: cover;
	border-radius: var(--radius-sm);
	border: 2px solid transparent;
	cursor: pointer;
	opacity: 0.7;
	transition: all 0.3s var(--ease);
}

.single-product div.product .flex-control-thumbs img:hover,
.single-product div.product .flex-control-thumbs img.flex-active {
	opacity: 1;
	border-color: var(--dw-teal);
}

.single-product .product_title {
	font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.single-product div.product p.price {
	font-family: var(--font-display);
	font-size: 1.7rem;
	font-weight: 600;
	color: var(--dw-teal);
	margin: 0.8rem 0 1.4rem;
}

.single-product div.product .woocommerce-product-details__short-description {
	color: var(--dw-mist);
	font-size: 1.05rem;
}

.single-product div.product form.cart {
	display: flex;
	gap: 1rem;
	align-items: stretch;
	margin: 1.8rem 0;
}

.single-product div.product form.cart .qty {
	width: 90px;
	padding: 0.9rem;
	border: 1.5px solid var(--dw-line);
	border-radius: 999px;
	text-align: center;
	font-size: 1rem;
	font-family: var(--font-body);
}

.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.9rem 2rem !important;
	border: 0;
	border-radius: 999px !important;
	background: var(--dw-grad) !important;
	color: #fff !important;
	font-family: var(--font-body) !important;
	font-weight: 600 !important;
	font-size: 1rem !important;
	cursor: pointer;
	box-shadow: 0 10px 26px -8px rgba(18, 181, 191, 0.55);
	transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.woocommerce button.button:hover,
.woocommerce a.button:hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 36px -10px rgba(18, 181, 191, 0.6);
}

.product_meta {
	color: var(--dw-mist);
	font-size: 0.92rem;
	border-top: 1px solid var(--dw-line);
	padding-top: 1.4rem;
}

.product_meta > span {
	display: block;
	margin-bottom: 0.3rem;
}

/* Güven kartları */
.product-trust {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.4rem;
	margin-top: clamp(2.5rem, 5vw, 4rem);
}

.trust-card {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	padding: 1.7rem 1.5rem;
	background: linear-gradient(180deg, var(--dw-ice), #fff);
	border: 1px solid var(--dw-line);
	border-radius: var(--radius);
	transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}

.trust-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow);
}

.trust-card__icon {
	color: var(--dw-teal);
}

.trust-card__title {
	font-size: 1.02rem;
	margin: 0;
}

.trust-card__text {
	color: var(--dw-mist);
	font-size: 0.9rem;
	margin: 0;
}

/* Sekmeler */
.woocommerce-tabs {
	grid-column: 1 / -1;
	margin-top: clamp(2rem, 4vw, 3rem);
}

.woocommerce-tabs ul.tabs {
	display: flex;
	gap: 0.5rem;
	list-style: none;
	margin: 0 0 0;
	padding: 0.45rem;
	background: var(--dw-ice);
	border-radius: 999px;
	width: fit-content;
}

.woocommerce-tabs ul.tabs li {
	margin: 0;
	padding: 0;
	background: none;
	border: 0;
}

.woocommerce-tabs ul.tabs li a {
	display: inline-block;
	padding: 0.7rem 1.5rem;
	border-radius: 999px;
	color: var(--dw-mist);
	font-weight: 600;
	font-size: 0.95rem;
	transition: all 0.3s var(--ease);
}

.woocommerce-tabs ul.tabs li.active a {
	background: #fff;
	color: var(--dw-navy);
	box-shadow: var(--shadow-sm);
}

.woocommerce-tabs .panel {
	padding: 2rem 0 0;
	color: var(--dw-ink);
}

.woocommerce-tabs .panel h2:first-child {
	display: none;
}

/* Teknik özellik tablosu */
table.woocommerce-product-attributes {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	border: 1px solid var(--dw-line);
	border-radius: var(--radius-sm);
	overflow: hidden;
}

table.woocommerce-product-attributes th,
table.woocommerce-product-attributes td {
	padding: 0.95rem 1.3rem;
	text-align: left;
	font-size: 0.97rem;
	border-bottom: 1px solid var(--dw-line);
}

table.woocommerce-product-attributes tr:last-child th,
table.woocommerce-product-attributes tr:last-child td {
	border-bottom: 0;
}

table.woocommerce-product-attributes th {
	background: var(--dw-ice);
	color: var(--dw-navy);
	font-weight: 600;
	width: 34%;
}

/* İlgili ürünler */
.related.products,
.upsells.products {
	grid-column: 1 / -1;
	margin-top: clamp(3rem, 6vw, 5rem);
}

.related.products > h2,
.upsells.products > h2 {
	font-size: clamp(1.5rem, 2.6vw, 2rem);
	margin-bottom: 2rem;
}

/* Bildirimler */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	border-radius: var(--radius-sm);
	border: 1px solid var(--dw-line);
	background: var(--dw-ice);
	padding: 1rem 1.4rem;
	margin-bottom: 1.6rem;
}

/* ============ 11. SERTİFİKALAR ============ */
.cert-grid {
	display: grid;
	gap: 1.6rem;
}

.cert-grid--home {
	grid-template-columns: repeat(6, 1fr);
}

.cert-grid--page {
	grid-template-columns: repeat(3, 1fr);
	gap: 2.2rem;
}

.cert-card {
	position: relative;
	display: block;
	background: #fff;
	border: 1px solid var(--dw-line);
	border-radius: var(--radius);
	overflow: hidden;
	transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease), border-color var(--speed) var(--ease);
}

.cert-card:hover {
	transform: translateY(-8px);
	border-color: transparent;
	box-shadow: var(--shadow-lg);
}

.cert-card__media {
	position: relative;
	background: var(--dw-ice);
	aspect-ratio: 3 / 4;
	overflow: hidden;
}

.cert-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s var(--ease);
}

.cert-card:hover .cert-card__media img {
	transform: scale(1.06);
}

.cert-card__zoom {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(7, 42, 68, 0.45);
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
	color: #fff;
	opacity: 0;
	transition: opacity 0.4s var(--ease);
}

.cert-card:hover .cert-card__zoom {
	opacity: 1;
}

.cert-card__zoom span {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.65rem 1.3rem;
	border: 1.5px solid rgba(255, 255, 255, 0.7);
	border-radius: 999px;
	font-weight: 600;
	font-size: 0.9rem;
	transform: translateY(8px);
	transition: transform 0.4s var(--ease);
}

.cert-card:hover .cert-card__zoom span {
	transform: translateY(0);
}

.cert-card__body {
	padding: 1.3rem 1.4rem 1.5rem;
}

.cert-card__title {
	font-size: 1rem;
	margin: 0 0 0.3rem;
}

.cert-card__desc {
	color: var(--dw-mist);
	font-size: 0.9rem;
	margin: 0;
}

.cert-grid--home .cert-card__desc {
	display: none;
}

.cert-grid--home .cert-card__title {
	font-size: 0.86rem;
}

/* ============ 12. CTA BANDI ============ */
.cta-band {
	background: var(--dw-grad-dark);
	position: relative;
	overflow: hidden;
}

.cta-band::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(45% 80% at 85% 20%, rgba(18, 181, 191, 0.3), transparent),
		radial-gradient(35% 70% at 10% 90%, rgba(22, 114, 155, 0.35), transparent);
}

.cta-band__inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2.5rem;
	flex-wrap: wrap;
}

.cta-band__title {
	color: #fff;
	font-size: clamp(1.7rem, 3.2vw, 2.5rem);
	margin: 0 0 0.6rem;
}

.cta-band__text {
	color: rgba(214, 238, 245, 0.9);
	font-size: 1.1rem;
	margin: 0;
	max-width: 54ch;
}

.cta-band__actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

/* ============ 13. BLOG ============ */
.post-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2.2rem;
}

.post-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--dw-line);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease), border-color var(--speed) var(--ease);
}

.post-card:hover {
	transform: translateY(-10px);
	border-color: transparent;
	box-shadow: var(--shadow-lg);
}

.post-card__media {
	position: relative;
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--dw-aqua);
}

.post-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s var(--ease);
}

.post-card:hover .post-card__media img {
	transform: scale(1.08);
}

.post-card__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	color: var(--dw-teal);
	opacity: 0.55;
}

.post-card__chip {
	position: absolute;
	top: 1.1rem;
	left: 1.1rem;
	padding: 0.4rem 0.95rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.88);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	color: var(--dw-navy);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	box-shadow: var(--shadow-sm);
}

.post-card__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 1.7rem 1.8rem 1.9rem;
}

.post-card__meta {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	color: var(--dw-mist);
	font-size: 0.84rem;
	margin-bottom: 0.7rem;
}

.post-card__dot {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--dw-teal);
}

.post-card__title {
	font-size: 1.22rem;
	margin: 0 0 0.6rem;
	line-height: 1.35;
}

.post-card__title a {
	color: var(--dw-navy);
}

.post-card__title a:hover {
	color: var(--dw-blue);
}

.post-card__excerpt {
	color: var(--dw-mist);
	font-size: 0.96rem;
	margin: 0 0 1.3rem;
}

.post-card__more {
	margin-top: auto;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	color: var(--dw-teal);
	font-weight: 600;
	font-size: 0.93rem;
}

.post-card__more svg {
	transition: transform 0.3s var(--ease);
}

.post-card:hover .post-card__more svg {
	transform: translateX(5px);
}

/* Sayfalama */
.pagination {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin-top: clamp(3rem, 5vw, 4.5rem);
}

.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 46px;
	height: 46px;
	padding: 0 0.9rem;
	border: 1.5px solid var(--dw-line);
	border-radius: 999px;
	color: var(--dw-ink);
	font-weight: 600;
	transition: all 0.3s var(--ease);
}

.pagination .page-numbers:hover {
	border-color: var(--dw-teal);
	color: var(--dw-blue);
	transform: translateY(-2px);
}

.pagination .page-numbers.current {
	background: var(--dw-grad);
	border-color: transparent;
	color: #fff;
	box-shadow: 0 8px 20px -6px rgba(18, 181, 191, 0.5);
}

.empty-state {
	text-align: center;
	max-width: 480px;
	margin-inline: auto;
	padding: 3rem 0;
}

.empty-state__icon {
	display: inline-flex;
	color: var(--dw-teal);
	opacity: 0.7;
	margin-bottom: 1rem;
}

/* ============ 14. TEK YAZI ============ */
.single-post__meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.6rem;
	color: var(--dw-mist);
	font-size: 0.92rem;
	margin-bottom: 1.8rem;
}

.single-post__meta a {
	color: var(--dw-blue);
	font-weight: 500;
}

.single-post__thumb {
	margin: 0 0 2.5rem;
}

.single-post__thumb img {
	width: 100%;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
}

.entry-content {
	font-size: 1.08rem;
	line-height: 1.85;
}

.entry-content h2 {
	font-size: 1.7rem;
	margin: 2.6rem 0 1rem;
}

.entry-content h3 {
	font-size: 1.35rem;
	margin: 2.2rem 0 0.8rem;
}

.entry-content img {
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
}

.entry-content blockquote {
	margin: 2rem 0;
	padding: 1.4rem 1.8rem;
	border-left: 4px solid var(--dw-teal);
	background: var(--dw-ice);
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
	color: var(--dw-navy);
	font-style: italic;
}

.entry-content a {
	text-decoration: underline;
	text-decoration-color: rgba(18, 181, 191, 0.5);
	text-underline-offset: 3px;
}

.tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 2.5rem;
}

.tag-list a {
	padding: 0.45rem 1rem;
	border: 1.5px solid var(--dw-line);
	border-radius: 999px;
	color: var(--dw-mist);
	font-size: 0.86rem;
	font-weight: 500;
	transition: all 0.3s var(--ease);
}

.tag-list a:hover {
	border-color: var(--dw-teal);
	color: var(--dw-blue);
}

.related-posts {
	margin-top: clamp(3rem, 6vw, 5rem);
}

.page-links {
	margin-top: 2rem;
	display: flex;
	gap: 0.5rem;
	align-items: center;
}

/* ============ 15. HAKKIMIZDA ============ */
.about-banner {
	position: relative;
	min-height: 62vh;
	display: flex;
	align-items: center;
	background-size: cover;
	background-position: center;
	overflow: hidden;
}

.about-banner__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(100deg, rgba(5, 28, 45, 0.85) 15%, rgba(5, 28, 45, 0.45) 60%, rgba(5, 28, 45, 0.2)),
		linear-gradient(0deg, rgba(5, 28, 45, 0.5), transparent 40%);
}

.about-banner__inner {
	position: relative;
	max-width: 760px;
	margin-inline: auto;
	width: min(var(--container), 100% - 3rem);
	padding-block: clamp(6rem, 12vw, 9rem);
}

.about-banner__title {
	color: #fff;
	font-size: clamp(2.1rem, 5vw, 3.6rem);
	margin: 1.2rem 0;
}

.about-banner__lead {
	color: rgba(226, 243, 248, 0.92);
	font-size: clamp(1.05rem, 1.6vw, 1.22rem);
	max-width: 56ch;
	margin: 0;
}

.about-story p {
	color: var(--dw-mist);
	font-size: 1.05rem;
}

.stats--about {
	background: var(--dw-grad-dark);
}

.timeline {
	list-style: none;
	margin: 0;
	padding: 0 0 0 2rem;
	position: relative;
}

.timeline::before {
	content: "";
	position: absolute;
	left: 7px;
	top: 8px;
	bottom: 8px;
	width: 2px;
	background: linear-gradient(180deg, var(--dw-teal), var(--dw-blue));
	border-radius: 2px;
}

.timeline__item {
	position: relative;
	padding: 0 0 2.4rem 1.4rem;
}

.timeline__item:last-child {
	padding-bottom: 0;
}

.timeline__dot {
	position: absolute;
	left: -2rem;
	top: 6px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #fff;
	border: 3px solid var(--dw-teal);
	box-shadow: 0 0 0 5px rgba(18, 181, 191, 0.15);
}

.timeline__title {
	font-size: 1.2rem;
	margin: 0 0 0.4rem;
}

.timeline__text {
	color: var(--dw-mist);
	margin: 0;
	max-width: 62ch;
}

/* ============ 16. İLETİŞİM ============ */
.contact-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.4rem;
	margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.contact-card {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	padding: 1.7rem 1.6rem;
	background: #fff;
	border: 1px solid var(--dw-line);
	border-radius: var(--radius);
	transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease), border-color var(--speed) var(--ease);
}

.contact-card:hover {
	transform: translateY(-6px);
	border-color: transparent;
	box-shadow: var(--shadow);
}

.contact-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 15px;
	background: var(--dw-aqua);
	color: var(--dw-blue);
	margin-bottom: 0.6rem;
	transition: all var(--speed) var(--ease);
}

.contact-card:hover .contact-card__icon {
	background: var(--dw-grad);
	color: #fff;
	transform: scale(1.06) rotate(-4deg);
}

.contact-card__label {
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--dw-mist);
}

.contact-card__value {
	color: var(--dw-navy);
	font-weight: 600;
	font-size: 1.02rem;
	overflow-wrap: anywhere;
}

a.contact-card__value:hover {
	color: var(--dw-blue);
}

.contact-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
	gap: 2.2rem;
	align-items: stretch;
}

/* Form kartı */
.contact-form-card {
	background: #fff;
	border: 1px solid var(--dw-line);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
	padding: clamp(2rem, 4vw, 3rem);
}

.contact-form-card__title {
	font-size: clamp(1.5rem, 2.6vw, 2rem);
	margin-bottom: 0.4rem;
}

.contact-form-card__lead {
	color: var(--dw-mist);
	margin: 0 0 2rem;
}

.ff-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.2rem;
}

/* Floating label alanları */
.ff {
	position: relative;
	margin-bottom: 1.2rem;
}

.ff input,
.ff textarea {
	width: 100%;
	padding: 1.35rem 1.3rem 0.65rem;
	border: 1.5px solid var(--dw-line);
	border-radius: var(--radius-sm);
	background: var(--dw-ice);
	font-family: var(--font-body);
	font-size: 1rem;
	color: var(--dw-ink);
	transition: border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
	resize: vertical;
}

.ff input:focus,
.ff textarea:focus {
	outline: none;
	border-color: var(--dw-teal);
	background: #fff;
	box-shadow: 0 0 0 4px rgba(18, 181, 191, 0.14);
}

.ff label {
	position: absolute;
	left: 1.3rem;
	top: 1rem;
	color: var(--dw-mist);
	font-size: 1rem;
	pointer-events: none;
	transition: all 0.25s var(--ease);
	transform-origin: left top;
}

.ff input:focus + label,
.ff input:not(:placeholder-shown) + label,
.ff textarea:focus + label,
.ff textarea:not(:placeholder-shown) + label {
	transform: translateY(-0.55rem) scale(0.76);
	color: var(--dw-blue);
	font-weight: 600;
}

.contact-form__consent {
	font-size: 0.86rem;
	color: var(--dw-mist);
	margin: 0 0 1.6rem;
}

.contact-form__submit {
	width: 100%;
	justify-content: center;
}

.dw-hp {
	position: absolute !important;
	left: -9999px !important;
}

.form-notice {
	padding: 1rem 1.3rem;
	border-radius: var(--radius-sm);
	font-weight: 500;
	margin-bottom: 1.6rem;
}

.form-notice--success {
	background: #e5f8ef;
	color: #0c6b43;
	border: 1px solid #b5e8d0;
}

.form-notice--error {
	background: #fdeeee;
	color: #a12626;
	border: 1px solid #f3c4c4;
}

/* Harita + saatler */
.contact-side {
	display: flex;
	flex-direction: column;
	gap: 1.4rem;
}

.contact-map {
	flex: 1;
	min-height: 380px;
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid var(--dw-line);
	box-shadow: var(--shadow-sm);
}

.contact-map iframe {
	width: 100%;
	height: 100%;
	min-height: 380px;
	border: 0;
	display: block;
}

.contact-map--empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	padding: 2rem;
	text-align: center;
	color: var(--dw-mist);
	background: var(--dw-ice);
}

.hours-card {
	display: flex;
	align-items: center;
	gap: 1.1rem;
	padding: 1.5rem 1.7rem;
	background: var(--dw-grad-dark);
	border-radius: var(--radius);
	color: #fff;
}

.hours-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	flex: none;
	border-radius: 15px;
	background: rgba(255, 255, 255, 0.12);
	color: #9be4ea;
}

.hours-card__title {
	color: #fff;
	font-size: 1rem;
	margin: 0 0 0.15rem;
}

.hours-card__value {
	margin: 0;
	color: rgba(214, 238, 245, 0.9);
	font-size: 0.98rem;
}

.contact-page__content {
	margin-top: clamp(2.5rem, 5vw, 4rem);
}

/* Sayfa içi başlık (Sertifikalar, düz sayfalar) */
.archive-head {
	max-width: 760px;
	margin-bottom: clamp(2.2rem, 4.5vw, 3.6rem);
}

.archive-head--center {
	margin-inline: auto;
	text-align: center;
}

.archive-head--center .eyebrow {
	justify-content: center;
}

.archive-head--center .eyebrow::before {
	display: none;
}

.archive-head__title {
	font-size: clamp(1.9rem, 3.6vw, 2.9rem);
	margin: 0.5rem 0 0;
}

.archive-head__lead {
	color: var(--dw-mist);
	font-size: 1.06rem;
	margin: 0.9rem 0 0;
}

/* Arama formu */
.search-form {
	display: flex;
	gap: 0.6rem;
	max-width: 460px;
}

.search-form input[type="search"] {
	flex: 1;
	padding: 0.95rem 1.4rem;
	border: 1.5px solid var(--dw-line);
	border-radius: 999px;
	background: #fff;
	font-family: var(--font-body);
	font-size: 1rem;
}

.search-form input[type="search"]:focus {
	outline: none;
	border-color: var(--dw-teal);
	box-shadow: 0 0 0 4px rgba(18, 181, 191, 0.14);
}

.search-form button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	flex: none;
	border: 0;
	border-radius: 50%;
	background: var(--dw-grad);
	color: #fff;
	cursor: pointer;
	transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.search-form button:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 24px -8px rgba(18, 181, 191, 0.55);
}

/* 404 */
.error-404 {
	text-align: center;
	padding-block: clamp(4rem, 10vw, 8rem);
}

.error-404__drop {
	color: var(--dw-teal);
	opacity: 0.55;
	margin-bottom: 1rem;
}

.error-404__title {
	font-size: clamp(2rem, 4.5vw, 3.2rem);
}

.error-404__lead {
	color: var(--dw-mist);
	max-width: 54ch;
	margin: 0 auto 1rem;
}

.error-404__search .search-form {
	margin: 2rem auto;
}

.error-404 .search-form {
	margin-inline: auto;
	margin-block: 2rem;
}

/* Yorumlar */
.comments-area {
	margin-top: clamp(3rem, 5vw, 4.5rem);
	padding-top: 2.5rem;
	border-top: 1px solid var(--dw-line);
}

.comment-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.comment-list .comment-body {
	padding: 1.4rem;
	border: 1px solid var(--dw-line);
	border-radius: var(--radius-sm);
	margin-bottom: 1.2rem;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%;
	padding: 0.9rem 1.2rem;
	border: 1.5px solid var(--dw-line);
	border-radius: var(--radius-sm);
	background: var(--dw-ice);
	font-family: var(--font-body);
	margin-bottom: 1rem;
}

.comment-form .submit {
	padding: 0.85rem 1.9rem;
	border: 0;
	border-radius: 999px;
	background: var(--dw-grad);
	color: #fff;
	font-weight: 600;
	cursor: pointer;
}

/* ============ 17. FOOTER ============ */
.site-footer {
	position: relative;
	background: var(--dw-grad-dark);
	color: #c3dbe6;
	margin-top: clamp(4rem, 8vw, 7rem);
}

.site-footer__wave {
	position: absolute;
	bottom: 100%;
	left: 0;
	right: 0;
	color: var(--dw-deep);
	line-height: 0;
}

.site-footer__wave svg {
	width: 100%;
	height: 56px;
	display: block;
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1.2fr 1.1fr;
	gap: clamp(2rem, 4vw, 3.5rem);
	padding-block: clamp(3.5rem, 6vw, 5.5rem) clamp(2.5rem, 4vw, 3.5rem);
}

.site-footer__col--brand img {
	max-width: 210px;
	margin-bottom: 1.2rem;
}

.site-footer__about {
	font-size: 0.95rem;
	line-height: 1.75;
	color: rgba(195, 219, 230, 0.85);
	margin: 0 0 1.4rem;
}

.site-footer__title {
	color: #fff;
	font-size: 0.92rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin: 0 0 1.4rem;
}

.site-footer__links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.75rem;
}

.site-footer__links a,
.site-footer__links span {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	color: rgba(206, 228, 238, 0.9);
	font-size: 0.97rem;
	transition: color 0.25s, transform 0.25s var(--ease);
}

.site-footer__links a:hover {
	color: #fff;
	transform: translateX(4px);
}

.site-footer__links svg {
	color: var(--dw-teal);
	flex: none;
}

.site-footer__social {
	display: flex;
	gap: 0.6rem;
}

.site-footer__social a {
	padding: 0.5rem 1.05rem;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 999px;
	color: #dceef5;
	font-size: 0.86rem;
	font-weight: 500;
	transition: all 0.3s var(--ease);
}

.site-footer__social a:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.5);
	color: #fff;
	transform: translateY(-2px);
}

.site-footer__map {
	margin-top: 1.4rem;
	border-radius: var(--radius-sm);
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.15);
}

.site-footer__map iframe {
	width: 100%;
	height: 150px;
	border: 0;
	display: block;
	filter: grayscale(0.2);
}

.site-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-block: 1.5rem;
	font-size: 0.88rem;
}

.site-footer__bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.site-footer__bottom p {
	margin: 0;
	color: rgba(178, 206, 219, 0.75);
}

.site-footer__legal {
	display: flex;
	gap: 1.4rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-footer__legal a {
	color: rgba(198, 223, 234, 0.85);
	font-size: 0.88rem;
}

.site-footer__legal a:hover {
	color: #fff;
}

/* Sabit butonlar (WhatsApp + Telefon) */
.float-btn {
	position: fixed;
	right: 1.4rem;
	z-index: 90;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	color: #fff;
	box-shadow: 0 14px 34px -8px rgba(4, 24, 38, 0.45);
	transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.float-btn:hover {
	color: #fff;
	transform: translateY(-4px) scale(1.05);
}

.float-btn--wa {
	bottom: 1.4rem;
	background: #25d366;
}

.float-btn--wa::after {
	content: "";
	position: absolute;
	inset: -5px;
	border-radius: 50%;
	border: 2px solid rgba(37, 211, 102, 0.55);
	animation: dw-pulse 2.2s var(--ease) infinite;
}

@keyframes dw-pulse {
	0% { transform: scale(0.9); opacity: 1; }
	70%, 100% { transform: scale(1.35); opacity: 0; }
}

.float-btn--tel {
	bottom: calc(1.4rem + 58px + 0.9rem);
	background: var(--dw-grad);
}

/* ============ 18. YARDIMCILAR / ANİMASYON / RESPONSIVE ============ */
.reveal {
	opacity: 0;
	transform: translateY(34px);
	transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.reveal[data-reveal-delay="1"] { transition-delay: 0.12s; }
.reveal[data-reveal-delay="2"] { transition-delay: 0.24s; }
.reveal[data-reveal-delay="3"] { transition-delay: 0.36s; }

html:not(.js) .reveal {
	opacity: 1;
	transform: none;
}

[data-parallax] {
	will-change: transform;
}

/* Lightbox */
.lightbox {
	position: fixed;
	inset: 0;
	z-index: 200;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2.5rem;
	background: rgba(5, 24, 38, 0.86);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	animation: dw-fade-in 0.3s var(--ease);
}

@keyframes dw-fade-in {
	from { opacity: 0; }
}

.lightbox[hidden] {
	display: none;
}

.lightbox img {
	max-width: min(920px, 100%);
	max-height: 88vh;
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
	animation: dw-zoom-in 0.4s var(--ease);
}

@keyframes dw-zoom-in {
	from { transform: scale(0.92); opacity: 0; }
}

.lightbox__close {
	position: absolute;
	top: 1.4rem;
	right: 1.6rem;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	width: 52px;
	height: 52px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	cursor: pointer;
	transition: background 0.3s, transform 0.3s var(--ease);
}

.lightbox__close:hover {
	background: rgba(255, 255, 255, 0.25);
	transform: rotate(90deg);
}

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
	.feature-grid,
	.product-trust,
	.contact-cards {
		grid-template-columns: repeat(2, 1fr);
	}

	ul.products.product-grid,
	.post-grid,
	.cert-grid--page {
		grid-template-columns: repeat(2, 1fr);
	}

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

@media (max-width: 980px) {
	:root {
		--header-h: 74px;
	}

	.site-nav {
		position: fixed;
		inset: 0;
		z-index: 99;
		flex-direction: column;
		justify-content: center;
		gap: 2rem;
		background: rgba(250, 253, 254, 0.94);
		-webkit-backdrop-filter: blur(24px);
		backdrop-filter: blur(24px);
		opacity: 0;
		visibility: hidden;
		transform: translateY(-2%);
		transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0.4s;
	}

	.site-nav.is-open {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.site-nav__list {
		flex-direction: column;
		gap: 0.4rem;
		text-align: center;
	}

	.site-nav__list > li > a {
		font-size: 1.4rem;
		padding: 0.7rem 1.4rem;
		color: var(--dw-navy) !important;
	}

	.site-nav__list .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		border: 0;
		background: none;
		text-align: center;
	}

	body.nav-open {
		overflow: hidden;
	}

	.nav-toggle {
		display: inline-flex;
		position: relative;
		z-index: 100;
	}

	.site-nav.is-open ~ .nav-toggle .nav-toggle__open,
	body.nav-open .nav-toggle__open {
		display: none;
	}

	body.nav-open .nav-toggle__close {
		display: inline-flex;
		color: var(--dw-navy);
	}

	.split__grid,
	.single-product div.product,
	.contact-layout {
		grid-template-columns: 1fr;
	}

	.single-product div.product .woocommerce-product-gallery {
		position: static;
	}

	.split__media {
		order: -1;
	}

	.stats__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.process-grid {
		grid-template-columns: 1fr;
	}

	.topbar-link--mail {
		display: none;
	}
}

@media (max-width: 640px) {
	body {
		font-size: 1rem;
	}

	.hero-slider {
		min-height: 560px;
	}

	.hero-slide__actions .btn {
		width: 100%;
		justify-content: center;
	}

	.hero-scroll {
		display: none;
	}

	ul.products.product-grid,
	.post-grid,
	.cert-grid--page,
	.feature-grid,
	.product-trust,
	.contact-cards,
	.ff-row {
		grid-template-columns: 1fr;
	}

	.cert-grid--home {
		grid-template-columns: repeat(2, 1fr);
	}

	.photo-band {
		grid-template-columns: 1fr;
	}

	.woocommerce ul.products li.product .product-card__media,
	.product-card__media {
		min-height: 240px;
	}

	.site-footer__grid {
		grid-template-columns: 1fr;
	}

	.site-footer__bottom-inner {
		justify-content: center;
		text-align: center;
	}

	.topbar-link--muted {
		display: none;
	}

	.topbar-link {
		margin-inline: auto;
	}

	.cta-band__inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.float-btn {
		width: 54px;
		height: 54px;
		right: 1rem;
	}

	.float-btn--tel {
		bottom: calc(1.4rem + 54px + 0.8rem);
	}
}

/* Hareket azaltma tercihi */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}

	html {
		scroll-behavior: auto;
	}

	.reveal {
		opacity: 1;
		transform: none;
	}

	.hero-slide__content > * {
		opacity: 1;
		transform: none;
	}
}

/* Yazdırma */
@media print {
	.site-header,
	.site-footer,
	.float-btn,
	.hero-slider__nav,
	.hero-scroll {
		display: none !important;
	}

	body {
		padding-top: 0;
	}
}
