/* Hyundai Su Arıtma — Mobile-first premium UI */
:root {
  --c-primary: #0b4f8a;
  --c-primary-d: #073a66;
  --c-accent: #00a3c4;
  --c-accent-2: #00c2a8;
  --c-water: #e6f7fb;
  --c-bg: #ffffff;
  --c-bg-soft: #f4f8fb;
  --c-text: #0f172a;
  --c-muted: #64748b;
  --c-border: #e2e8f0;
  --c-success: #059669;
  --c-danger: #dc2626;
  --c-warning: #d97706;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 8px 30px rgba(11, 79, 138, 0.1);
  --shadow-lg: 0 20px 50px rgba(11, 79, 138, 0.16);
  --header-h: 72px;
  --font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --touch: 44px;
  --max: 1180px;
  --transition: 0.25s ease;
}

[data-theme="dark"] {
  --c-bg: #0b1220;
  --c-bg-soft: #111827;
  --c-text: #e5eef7;
  --c-muted: #94a3b8;
  --c-border: #1f2a3d;
  --c-water: #0f2740;
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: clip;
  max-width: 100%;
}

/* Kopyalama / sürükleme caydırma (form ve admin hariç) */
body:not(.admin-body):not(.login-page) {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
body:not(.admin-body):not(.login-page) input,
body:not(.admin-body):not(.login-page) textarea,
body:not(.admin-body):not(.login-page) select,
body:not(.admin-body):not(.login-page) [contenteditable="true"],
body:not(.admin-body):not(.login-page) .allow-select {
  -webkit-user-select: text;
  -moz-user-select: text;
  user-select: text;
}
body:not(.admin-body) img {
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-touch-callout: none;
}
@media print {
  body::before {
    content: "© Telif korumalı içerik — Tasarım Mirack. İzinsiz çoğaltılamaz.";
    display: block;
    text-align: center;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #64748b;
  }
}

body {
  font-family: var(--font);
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: clip;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
button, input, select, textarea { font: inherit; max-width: 100%; }
.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-left: max(1rem, env(safe-area-inset-left, 0px));
  padding-right: max(1rem, env(safe-area-inset-right, 0px));
  box-sizing: border-box;
}
@media (min-width: 640px) {
  .container {
    padding-left: max(1.25rem, env(safe-area-inset-left, 0px));
    padding-right: max(1.25rem, env(safe-area-inset-right, 0px));
  }
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* Top bar */
.topbar {
  background: var(--c-primary-d);
  color: rgba(255,255,255,.9);
  font-size: .8rem;
  display: none;
}
@media (min-width: 900px) {
  .topbar { display: block; }
}
.topbar-inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; padding: .45rem 0; flex-wrap: wrap;
}
.topbar a { color: rgba(255,255,255,.9); }
.topbar a:hover { color: #7dd3fc; }
.topbar-left, .topbar-right { display: flex; gap: .85rem; align-items: center; flex-wrap: wrap; }
.topbar-link {
  display: inline-flex; align-items: center; gap: .4rem; white-space: nowrap;
}
.topbar-link .brand-icon { width: 14px; height: 14px; flex-shrink: 0; }
.topbar-wa:hover { color: #86efac !important; }
.topbar-hours { opacity: .85; }

/* Brand SVG icons */
.brand-icon {
  width: 1em; height: 1em; display: block; flex-shrink: 0;
}
.btn-cta-ico .brand-icon { width: 16px; height: 16px; }
.btn-cta-lg .btn-cta-ico .brand-icon { width: 18px; height: 18px; }
.btn-cta-sm .btn-cta-ico .brand-icon { width: 14px; height: 14px; }

/* Social media real logos */
.social-links {
  display: flex; align-items: center; gap: .45rem; flex-wrap: wrap;
}
.social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  color: #fff; transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.social-btn .brand-icon { width: 18px; height: 18px; }
.social-btn:hover { transform: translateY(-2px) scale(1.06); filter: brightness(1.08); }
.social-btn:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }

/* Brand colors */
.social-ig {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.social-fb { background: #1877F2; }
.social-yt { background: #FF0000; }
.social-in { background: #0A66C2; }
.social-wa { background: #25D366; }

/* Üst bar: sadece ikon, arka plan yok */
.social-links-topbar .social-btn {
  width: auto; height: auto; min-width: 0; min-height: 0;
  padding: 2px; border-radius: 0;
  background: none !important; box-shadow: none !important;
  filter: none !important;
  color: rgba(255,255,255,.92);
}
.social-links-topbar .social-btn .brand-icon {
  width: 16px; height: 16px; color: inherit;
}
.social-links-topbar .social-btn:hover {
  transform: none; filter: none !important;
  color: #fff; opacity: 1;
}
.social-links-topbar .social-ig:hover { color: #f9a8d4; }
.social-links-topbar .social-fb:hover { color: #93c5fd; }
.social-links-topbar .social-yt:hover { color: #fca5a5; }
.social-links-topbar .social-in:hover { color: #7dd3fc; }
.social-links-topbar .social-wa:hover { color: #86efac; }

.social-links-footer .social-btn {
  width: 40px; height: 40px;
}
.social-links-footer .social-btn .brand-icon { width: 20px; height: 20px; }

.social-links-mobile {
  justify-content: center; margin-top: .5rem; padding-top: .75rem;
  border-top: 1px solid var(--c-border);
}
.social-links-mobile .social-btn { width: 44px; height: 44px; }
.social-links-mobile .social-btn .brand-icon { width: 22px; height: 22px; }
.mobile-social-wrap { margin-top: .5rem; }

.footer-contact-link {
  display: inline-flex; align-items: center; gap: .5rem;
}
.footer-contact-link .brand-icon { width: 16px; height: 16px; color: #25D366; }
.footer-contact-link .brand-icon-phone { color: #7dd3fc; }
.footer-contact-link .brand-icon-email { color: #94a3b8; }
.footer-wa .brand-icon { color: #25D366; }
.footer-brand { min-width: 0; }
.footer-about {
  color: rgba(255,255,255,.72);
  font-size: .9rem;
  line-height: 1.65;
  max-width: 300px;
  margin: 0 0 1rem;
}
.footer-social { margin-top: .25rem; }

.ico-wa-brand {
  background: #25D366 !important; color: #fff;
}
.ico-wa-brand .brand-icon { width: 22px; height: 22px; color: #fff; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: color-mix(in srgb, var(--c-bg) 94%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--c-border);
  box-shadow: 0 1px 0 rgba(11,79,138,.04);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 72px; gap: .75rem;
}
.header-inner > .site-logo {
  margin-right: auto;
}
/* Site logosu — görsel odaklı, taşmaz; alt yazı ortalı */
.site-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-shrink: 1;
  min-width: 0;
  max-width: min(220px, 46vw);
  text-decoration: none;
  line-height: 1.15;
  text-align: center;
}
.site-logo-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  max-height: 52px;
  overflow: hidden;
}
.site-logo-img {
  display: block;
  max-width: 100%;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  margin-inline: auto;
  background: transparent;
}
.site-logo-tagline {
  display: block;
  width: 100%;
  font-size: .82rem;
  font-weight: 700;
  color: var(--c-muted);
  letter-spacing: .03em;
  line-height: 1.25;
  text-align: center;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.site-logo-fallback {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  min-width: 0;
  max-width: 100%;
  text-align: center;
}
.site-logo-fallback-mark {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--c-primary), var(--c-accent));
  display: grid; place-items: center; color: #fff; font-size: 1.05rem;
  box-shadow: 0 4px 12px rgba(0,163,196,.3);
}
.site-logo-fallback-text {
  display: flex; flex-direction: column; align-items: center;
  min-width: 0; gap: 2px; text-align: center;
}
.site-logo-fallback-name {
  font-weight: 800; font-size: .95rem; color: var(--c-primary);
  letter-spacing: -.01em;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

/* Footer logo — yüklendiği gibi (şeffaf PNG korunur, arka plan yok) */
.site-logo-footer {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  max-width: 220px;
  width: auto;
  margin: 0 0 1rem;
  text-align: left;
  gap: 0;
}
.site-logo-footer .site-logo-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: 200px;
  max-height: none;
  height: auto;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}
.site-logo-footer .site-logo-img {
  max-height: 52px;
  max-width: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  margin: 0;
  display: block;
  background: transparent;
}
/* Footer'da alt yazı hiç gösterilmez */
.site-logo-footer .site-logo-tagline { display: none !important; }
.site-logo-footer .site-logo-fallback {
  flex-direction: row;
  align-items: center;
  gap: .6rem;
  text-align: left;
}
.site-logo-footer .site-logo-fallback-text { align-items: flex-start; text-align: left; }
.site-logo-footer .site-logo-fallback-name { color: #fff; font-size: 1rem; }
.site-logo-footer .site-logo-fallback-mark {
  background: linear-gradient(135deg, #0ea5e9, #00c2a8);
}
.site-footer .site-logo-footer + p {
  margin-top: 0;
  font-size: .9rem;
  line-height: 1.6;
  max-width: 300px;
}

/* Eski .logo sınıfları (admin vb.) */
.logo {
  display: inline-flex; align-items: center; gap: .7rem;
  font-weight: 800; color: var(--c-primary); min-height: var(--touch);
  flex-shrink: 0; white-space: nowrap;
}
.logo-mark {
  width: 40px; height: 40px; border-radius: 11px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--c-primary), var(--c-accent));
  display: grid; place-items: center; color: #fff; font-size: 1.15rem;
}
.logo-text { font-size: 1.05rem; letter-spacing: -.01em; line-height: 1; }

@media (max-width: 640px) {
  .site-logo { max-width: min(170px, 48vw); }
  .site-logo-img-wrap { max-height: 44px; }
  .site-logo-img { max-height: 44px; }
  .site-logo-tagline { font-size: .75rem; }
}
@media (max-width: 400px) {
  .site-logo { max-width: min(140px, 46vw); }
  .site-logo-img-wrap { max-height: 38px; }
  .site-logo-img { max-height: 38px; }
  .site-logo-tagline { font-size: .7rem; }
}

/* Menü — yatay */
.nav-desktop {
  display: none; align-items: center; gap: .1rem;
  flex-wrap: nowrap; white-space: nowrap;
}
.nav-desktop a {
  padding: .5rem .65rem; border-radius: 999px; font-size: .88rem;
  font-weight: 600; color: var(--c-muted); min-height: 40px;
  display: inline-flex; align-items: center; white-space: nowrap;
}
.nav-desktop a:hover, .nav-desktop a.active {
  color: var(--c-primary); background: var(--c-water);
}
.header-actions {
  display: flex; align-items: center; gap: .35rem; flex-shrink: 0;
  max-width: 55%;
  justify-content: flex-end;
}
.header-actions .btn-cta {
  flex-shrink: 1;
  min-width: 0;
}

/* Şık CTA butonları */
.btn-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  min-height: 42px; padding: .55rem 1rem; border-radius: 999px;
  font-weight: 700; font-size: .86rem; border: none; cursor: pointer;
  transition: var(--transition); text-align: center; white-space: nowrap;
  line-height: 1.15; text-decoration: none; box-shadow: 0 4px 14px rgba(0,0,0,.08);
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.btn-cta-label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.btn-cta:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--c-accent) 45%, transparent);
  outline-offset: 2px;
}
.btn-cta-ico {
  width: 18px; height: 18px; display: grid; place-items: center; flex-shrink: 0;
}
.btn-cta-ico svg { width: 16px; height: 16px; display: block; }
.btn-cta-call {
  background: linear-gradient(135deg, #0b4f8a, #1565a8);
  color: #fff; box-shadow: 0 6px 18px rgba(11,79,138,.28);
}
.btn-cta-call:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(11,79,138,.35); }
.btn-cta-wa {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff; box-shadow: 0 6px 18px rgba(34,197,94,.3);
}
.btn-cta-wa:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(34,197,94,.4); }
.btn-cta-offer {
  background: linear-gradient(135deg, #00b4d8, #00c2a8);
  color: #fff; box-shadow: 0 6px 18px rgba(0,180,216,.35);
}
.btn-cta-offer:hover { transform: translateY(-2px); filter: brightness(1.05); box-shadow: 0 10px 26px rgba(0,180,216,.4); }
.btn-cta-lg { min-height: 50px; padding: .8rem 1.35rem; font-size: .95rem; }
.btn-cta-sm { min-height: 36px; padding: .4rem .85rem; font-size: .8rem; box-shadow: none; }
.btn-cta.btn-block { width: 100%; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  min-height: var(--touch); padding: .7rem 1.15rem; border-radius: 12px;
  font-weight: 700; font-size: .92rem; border: none; cursor: pointer;
  transition: var(--transition); text-align: center;
}
.btn:focus-visible { outline: 3px solid color-mix(in srgb, var(--c-accent) 50%, transparent); outline-offset: 2px; }
.btn-primary {
  background: linear-gradient(135deg, var(--c-accent), var(--c-accent-2));
  color: #fff; box-shadow: 0 8px 20px rgba(0,163,196,.35);
}
.btn-primary:hover { transform: translateY(-1px); filter: brightness(1.05); }
.btn-secondary { background: var(--c-primary); color: #fff; }
.btn-secondary:hover { background: var(--c-primary-d); }
.btn-outline {
  background: transparent; color: var(--c-primary);
  border: 2px solid color-mix(in srgb, var(--c-primary) 35%, transparent);
}
.btn-outline:hover { background: var(--c-water); }
.btn-wa { background: #25d366; color: #fff; }
.btn-wa:hover { filter: brightness(1.05); }
.btn-ghost { background: transparent; color: var(--c-muted); padding: .5rem; min-width: var(--touch); border-radius: 10px; }
.theme-btn { font-size: 1.1rem; }
.btn-sm { min-height: 40px; padding: .5rem .9rem; font-size: .85rem; }
.btn-block { width: 100%; }
.menu-toggle {
  display: grid; place-items: center; width: var(--touch); height: var(--touch);
  border: none; background: var(--c-bg-soft); border-radius: 10px; cursor: pointer;
}
.menu-toggle span {
  display: block; width: 20px; height: 2px; background: var(--c-primary);
  margin: 3px 0; border-radius: 2px;
}
@media (min-width: 1100px) {
  .nav-desktop { display: flex; }
  .menu-toggle { display: none; }
  .header-actions .btn-hide-mobile { display: inline-flex; }
}
@media (max-width: 1099px) {
  .header-actions .btn-hide-mobile { display: none; }
}
.ico-sm { width: 14px; height: 14px; vertical-align: -2px; margin-right: 2px; }

/* Mobile nav drawer */
.nav-mobile {
  display: none; position: fixed; inset: var(--header-h) 0 0 0; z-index: 999;
  background: var(--c-bg); padding: 1rem; overflow-y: auto;
  border-top: 1px solid var(--c-border);
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: flex; align-items: center; min-height: var(--touch);
  padding: .85rem 1rem; border-radius: 10px; font-weight: 600;
  color: var(--c-text); border-bottom: 1px solid var(--c-border);
}
.nav-mobile a.active { color: var(--c-primary); background: var(--c-water); }
.nav-mobile-cta { display: grid; gap: .6rem; margin-top: 1rem; }
.nav-mobile-cta .btn-cta { width: 100%; }

/* Quick category strip */
.quick-cats {
  margin-top: -2rem; position: relative; z-index: 5; padding-bottom: 0;
  max-width: 100%;
  overflow: hidden;
}
.quick-cats .container { max-width: 100%; }
.quick-cats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
  background: var(--c-bg);
  border-radius: 18px;
  padding: .85rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--c-border);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .quick-cats-grid { grid-template-columns: repeat(4, 1fr); padding: 1.15rem; gap: 1rem; }
}
.quick-cat {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .7rem .65rem;
  border-radius: 14px;
  background: var(--c-bg-soft);
  border: 1px solid transparent;
  transition: var(--transition);
  min-height: 58px;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}
.quick-cat:hover {
  border-color: var(--c-accent); background: var(--c-water);
  transform: translateY(-2px); box-shadow: var(--shadow);
}
.qc-ico {
  width: 38px; height: 38px; border-radius: 11px; flex-shrink: 0;
  background: #fff; display: grid; place-items: center; font-size: 1.15rem;
  box-shadow: var(--shadow);
}
[data-theme="dark"] .qc-ico { background: #1e293b; }
.qc-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
  flex: 1;
  overflow: hidden;
}
.qc-text strong {
  font-size: .82rem;
  color: var(--c-text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.qc-text small {
  font-size: .7rem;
  color: var(--c-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .qc-ico { width: 44px; height: 44px; font-size: 1.35rem; }
  .qc-text strong { font-size: .95rem; }
  .qc-text small { font-size: .78rem; }
  .quick-cat { padding: .85rem 1rem; gap: .75rem; }
}

/* Product tabs — mobilde sarılır, masaüstünde kaydırılabilir */
.product-tabs,
.parts-tabs {
  margin-top: .5rem;
  max-width: 100%;
  min-width: 0;
}
.tab-list, .filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: .45rem;
  margin-bottom: 1.25rem;
  background: var(--c-bg-soft);
  border-radius: 16px;
  border: 1px solid var(--c-border);
  overflow: hidden;
}
.tab-list::-webkit-scrollbar, .filter-tabs::-webkit-scrollbar { display: none; }
.tab-btn {
  flex: 1 1 calc(50% - .4rem);
  min-width: 0;
  max-width: 100%;
  min-height: 42px;
  height: auto;
  padding: .55rem .45rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
  font-size: .75rem;
  line-height: 1.2;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
  background: transparent;
  color: var(--c-muted);
  transition: var(--transition);
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
@media (min-width: 640px) {
  .tab-list, .filter-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 999px;
    scrollbar-width: none;
    overflow-y: hidden;
  }
  .tab-btn {
    flex: 1 0 auto;
    white-space: nowrap;
    word-break: normal;
    overflow-wrap: normal;
    font-size: .86rem;
    padding: .65rem 1.1rem;
    border-radius: 999px;
    min-height: 44px;
  }
}
.tab-btn:hover { color: var(--c-primary); background: rgba(255,255,255,.7); }
.tab-btn.active {
  background: linear-gradient(135deg, var(--c-primary), #1280c4);
  color: #fff; box-shadow: 0 6px 16px rgba(11,79,138,.28);
}
.tab-panel { display: none; animation: tabIn .3s ease; }
.tab-panel.active { display: block; }
.tab-panel-desc { text-align: center; margin-bottom: 1.25rem; font-size: .95rem; }
@keyframes tabIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.product-card-v2 .card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
  margin-top: .9rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.product-card-v2 .card-actions .btn-cta {
  width: 100%;
  max-width: 100%;
  min-width: 0 !important;
  flex: none !important;
  white-space: normal;
  justify-content: center;
  text-align: center;
  padding: .55rem .4rem;
  box-sizing: border-box;
  overflow: hidden;
}
.product-card-v2 .card-actions .btn-cta .btn-cta-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}
.product-card-v2 .card-meta-prices {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
@media (max-width: 480px) {
  .product-card-v2 .card-actions {
    grid-template-columns: 1fr;
  }
}

/* Çift fiyat: Nakit + Kredi Kartı Taksitli */
.price-box {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  width: 100%;
  margin: .35rem 0 .65rem;
}
.price-box-compact { margin: .25rem 0 .5rem; gap: .35rem; }
.price-row {
  display: flex;
  flex-direction: column;
  gap: .1rem;
  padding: .55rem .7rem;
  border-radius: 10px;
  background: var(--c-bg-soft);
  border: 1px solid var(--c-border);
}
.price-row-cash {
  background: linear-gradient(135deg, #ecfdf5, #f0fdf4);
  border-color: #bbf7d0;
}
.price-row-card {
  background: linear-gradient(135deg, #eff6ff, #f0f9ff);
  border-color: #bfdbfe;
}
.price-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--c-muted);
}
.price-row-cash .price-label { color: #047857; }
.price-row-card .price-label { color: #1d4ed8; }
.price-value {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--c-primary);
  line-height: 1.2;
}
.price-box-compact .price-value { font-size: .95rem; }
.price-box-compact .price-row { padding: .4rem .55rem; }
.sticky-cta .price-box { margin: .5rem 0 1rem; }
.sticky-cta .price-value { font-size: 1.2rem; }
.card-meta-prices {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: .5rem;
}
.card-meta-prices .link-arrow { align-self: flex-end; }

/* Ürün pompa / tank seçenekleri */
.product-options {
  margin: .75rem 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.product-options-title {
  font-size: .85rem;
  font-weight: 800;
  margin: 0 0 .35rem;
  color: var(--c-primary);
  letter-spacing: .01em;
}
.product-options-hint {
  font-size: .78rem;
  color: var(--c-muted);
  margin: 0 0 .55rem;
  line-height: 1.4;
}
.product-option-list {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.product-option-card {
  display: block;
  cursor: pointer;
  margin: 0;
}
.product-option-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.product-option-card-inner {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  padding: .65rem .75rem;
  border-radius: 12px;
  border: 1.5px solid var(--c-border);
  background: #fff;
  transition: border-color .15s, box-shadow .15s, background .15s;
}
.product-option-card input:checked + .product-option-card-inner,
.product-option-card:hover .product-option-card-inner {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(11, 79, 138, .12);
}
.product-option-card input:checked + .product-option-card-inner {
  background: linear-gradient(135deg, #f0f9ff, #ecfeff);
}
.product-option-name {
  font-weight: 800;
  font-size: .95rem;
  color: #0f172a;
}
.product-option-prices {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem .65rem;
}
.pop-price {
  display: inline-flex;
  flex-direction: column;
  gap: .05rem;
  font-size: .9rem;
  min-width: 5.5rem;
}
.pop-price .pop-lbl {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.pop-cash .pop-lbl { color: #047857; }
.pop-card .pop-lbl { color: #1d4ed8; }
.pop-price strong {
  font-size: .95rem;
  font-weight: 800;
  color: var(--c-primary);
}
.sticky-cta .product-options { margin-top: .25rem; }

/* Tank — fiyata ek, seçimsiz bilgi kartı */
.product-tanks-addon .product-options-hint {
  margin-bottom: .55rem;
}
.product-tank-list {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.product-tank-card {
  padding: .65rem .75rem;
  border-radius: 12px;
  border: 1.5px dashed #94a3b8;
  background: linear-gradient(135deg, #fffbeb, #fefce8);
  border-color: #fcd34d;
}
.product-tank-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  margin-bottom: .35rem;
  flex-wrap: wrap;
}
.product-tank-badge {
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #b45309;
  background: #fef3c7;
  border: 1px solid #fcd34d;
  border-radius: 999px;
  padding: .2rem .55rem;
  white-space: nowrap;
}

.product-options-main {
  padding: 1rem 1.1rem;
  border-radius: 14px;
  border: 1px solid var(--c-border);
  background: #f8fafc;
  margin: 1.25rem 0;
}
.product-options-main .product-options { margin: 0; }
@media (min-width: 900px) {
  /* Masaüstünde yan panelde seçenek var; solda tekrarı gizle */
  .product-options-main { display: none; }
}
@media (max-width: 899px) {
  /* Mobilde yan paneldeki seçenek tekrarı gizle (soldaki yeter) */
  .product-options-side { display: none; }
}
.link-arrow {
  font-weight: 700; color: var(--c-accent); font-size: .9rem;
}
.link-arrow::after { content: " →"; }
.link-arrow:hover { color: var(--c-primary); }
.meta-line { font-size: .78rem; color: var(--c-muted); margin-bottom: .35rem; }
.h3-like { font-size: 1.05rem; margin-bottom: .4rem; }
.section-title-left {
  font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800;
  margin: .4rem 0 1rem; letter-spacing: -.02em;
}
/* Neden su arıtma tercih etmelisiniz */
.prefer-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .prefer-grid { grid-template-columns: 1fr 1fr; gap: 1.15rem; }
}
@media (min-width: 960px) {
  .prefer-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}
.prefer-card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 1.35rem 1.2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  overflow: hidden;
}
.prefer-ico {
  width: 64px;
  height: 64px;
  margin: 0 auto .85rem;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.prefer-ico img {
  width: 56px;
  height: 56px;
  max-width: 100%;
  object-fit: contain;
  display: block;
}
.prefer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: color-mix(in srgb, var(--c-accent) 35%, var(--c-border));
}
.prefer-ico {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--c-water), #dbeafe);
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  overflow: hidden;
}
.prefer-ico img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.prefer-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--c-primary);
  margin-bottom: .45rem;
}
.prefer-card p {
  color: var(--c-muted);
  font-size: .9rem;
  line-height: 1.5;
}

/* Doktor tavsiyeleri */
.doctor-section { background: var(--c-bg-soft); }
.doctor-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .doctor-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}
.doctor-card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.doctor-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.1rem;
}
.doctor-photo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid var(--c-water);
  box-shadow: 0 6px 18px rgba(11, 79, 138, 0.15);
  flex-shrink: 0;
  background: var(--c-water);
}
.doctor-top h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--c-primary);
  margin-bottom: .25rem;
}
.doctor-role {
  font-size: .82rem;
  color: var(--c-muted);
  font-weight: 600;
  line-height: 1.35;
}
.doctor-quote {
  margin: 0;
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--c-accent);
  background: linear-gradient(135deg, var(--c-water), #f0f9ff);
  border-radius: 0 12px 12px 0;
  font-size: .95rem;
  line-height: 1.65;
  color: var(--c-text);
  font-style: italic;
  flex: 1;
}
.doctor-quote strong { font-style: normal; color: var(--c-primary); }
.doctor-note {
  margin-top: .85rem;
  font-size: .75rem;
}
@media (max-width: 640px) {
  .doctor-top { flex-direction: column; text-align: center; }
  .doctor-photo { width: 100px; height: 100px; }
}

/* Neden biz — site uyumlu görsel bloğu */
.why-media { position: relative; }
.why-media-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(145deg, #0b4f8a, #0878a8);
  aspect-ratio: 4 / 3;
  min-height: 220px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.why-media-main {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.why-media-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(4, 30, 58, 0.15) 0%, transparent 45%),
    linear-gradient(to top, rgba(4, 30, 58, 0.75) 0%, rgba(4, 30, 58, 0.1) 50%, transparent 70%);
  pointer-events: none;
}
.why-media-caption {
  position: absolute;
  left: 1.15rem;
  bottom: 1.15rem;
  z-index: 2;
  color: #fff;
  max-width: 70%;
}
.why-media-caption strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: .2rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.why-media-caption span {
  font-size: .88rem;
  opacity: .92;
  font-weight: 500;
}
.why-media-badge {
  position: absolute;
  z-index: 3;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(11, 79, 138, 0.22);
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .55rem .7rem;
  animation: float 4s ease-in-out infinite;
}
.why-media-badge-water {
  top: 1rem;
  right: 1rem;
  max-width: 150px;
  flex-direction: column;
  align-items: stretch;
  padding: .45rem;
  animation-delay: .4s;
}
.why-media-badge-water img {
  width: 100%;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
.why-media-badge-water span {
  font-size: .72rem;
  font-weight: 800;
  color: var(--c-primary);
  text-align: center;
  padding: .35rem .25rem .15rem;
}
.why-media-badge-trust {
  left: 1rem;
  top: 42%;
  animation-delay: 1.2s;
  padding: .65rem .85rem;
}
.why-badge-ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  flex-shrink: 0;
}
.why-media-badge-trust span {
  font-size: .82rem;
  font-weight: 800;
  color: var(--c-text);
  line-height: 1.25;
}
.why-media-badge-trust small {
  font-weight: 600;
  color: var(--c-muted);
  font-size: .72rem;
}
@media (max-width: 640px) {
  .why-media-frame {
    min-height: 200px;
    border-radius: 16px;
  }
  /* Rozetler mobilde tasmasin */
  .why-media-badge-water {
    max-width: min(96px, 28vw);
    top: .5rem;
    right: .5rem;
    padding: .3rem;
  }
  .why-media-badge-water img { height: 44px; }
  .why-media-badge-water span { font-size: .62rem; }
  .why-media-badge-trust {
    top: auto;
    bottom: 3.75rem;
    left: .5rem;
    right: auto;
    max-width: min(160px, 55vw);
    padding: .4rem .55rem;
    gap: .35rem;
  }
  .why-badge-ico { width: 28px; height: 28px; font-size: .85rem; }
  .why-media-badge-trust span { font-size: .72rem; }
  .why-media-caption {
    left: .65rem;
    right: .65rem;
    bottom: .65rem;
    max-width: none;
    font-size: .85rem;
  }
  .why-media-caption strong { font-size: .95rem; }
  .why-item {
    padding: .75rem;
    gap: .6rem;
  }
  .why-item .num {
    width: 36px;
    height: 36px;
    font-size: .78rem;
  }
  .why-item h3 { font-size: .92rem; }
  .why-item p { font-size: .82rem; }
  .section-title-left {
    font-size: clamp(1.2rem, 5.5vw, 1.6rem);
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}
.faq-wrap { max-width: 760px; margin: 0 auto; }
.card-pad { padding: 1.25rem; }
.small { font-size: .82rem; }
.hero-cta-center { justify-content: center; }
.float-chip .chip-emoji { font-size: 1.2rem; }
.float-chip span:last-child, .float-chip div span {
  display: block; font-size: .75rem; color: var(--c-muted);
}
.hero-card-cap strong { display: block; font-size: 1rem; }
.hero-card-cap span { font-size: .85rem; opacity: .85; font-weight: 500; }
.hero-shapes {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 50% 40% at 85% 20%, rgba(0,194,203,.22), transparent 60%),
    radial-gradient(ellipse 40% 35% at 10% 90%, rgba(0,168,232,.15), transparent 50%);
}

/* Hero */
.hero {
  position: relative; padding: 2.5rem 0 3rem;
  background: linear-gradient(165deg, #041e3a 0%, #0b4f8a 48%, #0878a8 100%);
  color: #fff; overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 20% 80%, rgba(0,194,168,.2), transparent 40%);
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; gap: 2rem; align-items: center;
}
@media (min-width: 900px) {
  .hero { padding: 4rem 0 5rem; min-height: calc(100vh - 100px); display: flex; align-items: center; }
  .hero-grid { grid-template-columns: 1.1fr .9fr; gap: 3rem; }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  padding: .45rem .9rem; border-radius: 999px; font-size: .82rem; font-weight: 600;
  margin-bottom: 1rem; color: #b8ecff;
}
.hero-badge::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: #34d399; box-shadow: 0 0 10px #34d399;
}
.hero h1 {
  font-size: clamp(1.85rem, 5vw, 3.1rem); line-height: 1.15;
  font-weight: 800; letter-spacing: -.02em; margin-bottom: 1rem;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #7dd3fc, #5eead4);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.15rem); color: rgba(255,255,255,.88);
  max-width: 34rem; margin-bottom: 1.5rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: .7rem; margin-bottom: 1.75rem; }
.hero-cta .btn { min-width: 150px; }
.trust-row { display: flex; flex-wrap: wrap; gap: .6rem; }
.trust-pill {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  padding: .4rem .75rem; border-radius: 999px; font-size: .78rem; font-weight: 600;
}
.hero-visual { position: relative; }
.hero-card {
  border-radius: 20px; overflow: hidden; aspect-ratio: 4/3;
  box-shadow: 0 25px 50px rgba(0,0,0,.35); position: relative;
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-card-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.25rem; background: linear-gradient(transparent, rgba(0,0,0,.75));
  color: #fff; font-weight: 600;
}
.float-chip {
  position: absolute; background: var(--c-bg); color: var(--c-text);
  border-radius: 12px; padding: .7rem .9rem; box-shadow: var(--shadow-lg);
  display: flex; gap: .6rem; align-items: center; font-size: .82rem;
  animation: float 4s ease-in-out infinite;
}
.float-chip strong { display: block; font-size: .88rem; }
.float-chip.a { top: 8%; right: -4%; }
.float-chip.b { bottom: 12%; left: -4%; animation-delay: 1.2s; }
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@media (max-width: 899px) {
  .float-chip { display: none; }
}

/* Sections */
.section { padding: 3.5rem 0; }
@media (min-width: 900px) { .section { padding: 5rem 0; } }
.section-soft { background: var(--c-bg-soft); }
.section-head { text-align: center; max-width: 36rem; margin: 0 auto 2.25rem; }
.section-label {
  display: inline-block; color: var(--c-accent); font-weight: 800;
  font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: .5rem;
}
.section-head h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.15rem); font-weight: 800;
  letter-spacing: -.02em; margin-bottom: .6rem;
}
.section-head p { color: var(--c-muted); }

/* Cards grid */
.grid-2, .grid-3, .grid-4, .product-grid {
  display: grid;
  gap: 1rem;
  width: 100%;
  min-width: 0;
}
.grid-2 > *, .grid-3 > *, .grid-4 > *, .product-grid > * {
  min-width: 0;
  max-width: 100%;
}
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
  .grid-4 { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
}

.card {
  background: var(--c-bg); border: 1px solid var(--c-border);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  transition: var(--transition); height: 100%; display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-img { aspect-ratio: 16/10; overflow: hidden; background: var(--c-water); position: relative; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: .5s; }
.card:hover .card-img img { transform: scale(1.05); }

/* Ürün fotoğrafları — tamamı görünsün, kırpılmasın */
.product-card-v2 .card-img,
.product-grid .card-img {
  aspect-ratio: 1 / 1;
  background: #fff;
  border-bottom: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.product-card-v2 .card-img img,
.product-grid .card-img img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}
.product-card-v2:hover .card-img img,
.product-grid .card:hover .card-img img {
  transform: scale(1.03);
}

.product-detail-img {
  width: 100%;
  max-height: min(480px, 70vw);
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 16px;
  margin-bottom: 1.25rem;
  padding: 1rem;
  display: block;
}
.product-detail-img-wrap {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--c-border);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  max-height: 520px;
}
.product-detail-img-wrap img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 480px;
  object-fit: contain;
  object-position: center;
}
.card-tag {
  position: absolute; top: .75rem; left: .75rem;
  background: rgba(11,79,138,.92); color: #fff; font-size: .72rem;
  font-weight: 700; padding: .3rem .65rem; border-radius: 999px;
}
.card-body { padding: 1.15rem; display: flex; flex-direction: column; flex: 1; min-width: 0; }
.card-body h3 {
  font-size: 1.05rem;
  margin-bottom: .4rem;
  line-height: 1.3;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.card-body p {
  color: var(--c-muted);
  font-size: .9rem;
  flex: 1;
  margin-bottom: .9rem;
  overflow-wrap: anywhere;
}
.card-meta { display: flex; justify-content: space-between; align-items: center; gap: .5rem; }
.price { font-weight: 800; color: var(--c-primary); }
.icon-card {
  text-align: center; padding: 1.5rem 1.1rem;
}
.icon-card .ico {
  width: 56px; height: 56px; margin: 0 auto .85rem; border-radius: 14px;
  background: linear-gradient(135deg, var(--c-water), #dbeafe);
  display: grid; place-items: center; font-size: 1.5rem;
}
[data-theme="dark"] .icon-card .ico { background: #1e3a5f; }
.icon-card h3 { font-size: 1rem; margin-bottom: .35rem; }
.icon-card p { color: var(--c-muted); font-size: .86rem; }

/* Why */
.why-grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
@media (min-width: 900px) { .why-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
.why-grid > * { min-width: 0; max-width: 100%; }
.why-media {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}
.why-list {
  display: grid;
  gap: .75rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.why-item {
  display: flex;
  gap: .75rem;
  padding: .9rem;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  align-items: flex-start;
  overflow: hidden;
}
.why-item .num {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--c-primary), var(--c-accent));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: .85rem;
}
.why-item > div:last-child {
  min-width: 0;
  flex: 1;
  overflow: hidden;
}
.why-item h3 {
  font-size: .98rem;
  margin-bottom: .15rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.why-item p {
  color: var(--c-muted);
  font-size: .86rem;
  overflow-wrap: anywhere;
  word-break: break-word;
  margin: 0;
}

/* Steps */
.steps { display: grid; gap: 1rem; counter-reset: step; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(5, 1fr); } }
.step {
  background: var(--c-bg); border: 1px solid var(--c-border);
  border-radius: var(--radius); padding: 1.25rem 1rem; text-align: center;
}
.step::before {
  counter-increment: step; content: "0" counter(step);
  display: block; font-size: 1.6rem; font-weight: 800;
  background: linear-gradient(135deg, var(--c-accent), var(--c-primary));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: .4rem;
}
.step h3 { font-size: .95rem; margin-bottom: .3rem; }
.step p { font-size: .82rem; color: var(--c-muted); }

/* Forms */
.form-card {
  background: var(--c-bg); border: 1px solid var(--c-border);
  border-radius: var(--radius); padding: 1.35rem; box-shadow: var(--shadow);
}
@media (min-width: 640px) { .form-card { padding: 1.75rem; } }
.form-row { display: grid; gap: .85rem; }
@media (min-width: 640px) { .form-row.two { grid-template-columns: 1fr 1fr; } }
.form-group { margin-bottom: .9rem; }
.form-group label {
  display: block; font-size: .85rem; font-weight: 700; margin-bottom: .35rem;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; min-height: var(--touch); padding: .7rem .9rem;
  border: 1.5px solid var(--c-border); border-radius: 10px;
  background: var(--c-bg-soft); color: var(--c-text);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(0,163,196,.18); background: var(--c-bg);
}
.form-check {
  display: flex; gap: .6rem; align-items: flex-start; font-size: .85rem;
  color: var(--c-muted); margin: 1rem 0;
}
.form-check input { width: 20px; height: 20px; margin-top: 2px; flex-shrink: 0; accent-color: var(--c-accent); }
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-msg { padding: .85rem 1rem; border-radius: 10px; margin-bottom: 1rem; font-weight: 600; font-size: .9rem; }
.form-msg.ok { background: #d1fae5; color: #065f46; }
.form-msg.err { background: #fee2e2; color: #991b1b; }

/* Contact grid */
.contact-grid { display: grid; gap: 1.5rem; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: .9fr 1.1fr; gap: 2rem; } }
.contact-info-card {
  display: flex; gap: .85rem; padding: 1rem;
  background: var(--c-bg); border: 1px solid var(--c-border); border-radius: var(--radius-sm);
  margin-bottom: .75rem;
}
.contact-info-card .ico {
  width: 44px; height: 44px; border-radius: 12px; background: var(--c-water);
  display: grid; place-items: center; flex-shrink: 0;
}
.map-wrap {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--c-border);
  aspect-ratio: 16/9; margin-top: 1.5rem;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* FAQ */
.faq-item {
  border: 1px solid var(--c-border); border-radius: var(--radius-sm);
  background: var(--c-bg); margin-bottom: .65rem; overflow: hidden;
}
.faq-item summary {
  cursor: pointer; padding: 1rem 1.15rem; font-weight: 700;
  list-style: none; min-height: var(--touch); display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--c-accent); font-size: 1.25rem; }
.faq-item[open] summary::after { content: "−"; }
.faq-item .faq-a { padding: 0 1.15rem 1.1rem; color: var(--c-muted); font-size: .92rem; }

/* Breadcrumb */
.breadcrumb {
  padding: .85rem 0; font-size: .85rem; color: var(--c-muted);
  display: flex; flex-wrap: wrap; gap: .35rem; align-items: center;
}
.breadcrumb a:hover { color: var(--c-primary); }
.breadcrumb span[aria-current] { color: var(--c-text); font-weight: 600; }

/* Page hero */
.page-hero {
  background: linear-gradient(135deg, var(--c-primary-d), var(--c-primary) 55%, #0a7aa8);
  color: #fff; padding: 2.5rem 0 2rem; text-align: center;
}
.page-hero h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; margin-bottom: .5rem; }
.page-hero p { opacity: .9; max-width: 34rem; margin: 0 auto; }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--c-primary-d), var(--c-primary), #0878a8);
  color: #fff; text-align: center; padding: 3.5rem 0;
}
.cta-band h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: .6rem; }
.cta-band p { opacity: .9; margin-bottom: 1.25rem; max-width: 32rem; margin-inline: auto; }
.cta-band .hero-cta { justify-content: center; }

/* Testimonials */
.stars { color: #fbbf24; letter-spacing: 1px; margin-bottom: .5rem; }
.quote { font-style: italic; color: var(--c-muted); margin-bottom: 1rem; font-size: .92rem; }
.author { display: flex; align-items: center; gap: .65rem; }
.avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--c-primary), var(--c-accent));
  color: #fff; display: grid; place-items: center; font-weight: 800; font-size: .8rem;
}

/* Footer */
.site-footer {
  background: #0b1220; color: rgba(255,255,255,.72); padding: 3rem 0 0;
}
.footer-grid {
  display: grid; gap: 1.75rem; padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.site-footer .logo { color: #fff; margin-bottom: .85rem; }
.site-footer h3 { color: #fff; font-size: .95rem; margin-bottom: .85rem; }
.site-footer ul li { margin-bottom: .45rem; }
.site-footer a:hover { color: #7dd3fc; }
.footer-bottom {
  padding: 1rem 0; display: flex; flex-wrap: wrap; gap: .75rem;
  justify-content: space-between; font-size: .82rem;
}
.footer-credit-link {
  color: #7dd3fc;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-credit-link:hover { color: #fff; }
.footer-legal { display: flex; flex-wrap: wrap; gap: .75rem; }

/* Floating WhatsApp — gerçek logo */
.float-wa {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 1100;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, .5);
  transition: transform .2s ease, box-shadow .2s ease;
}
.float-wa .brand-icon { width: 32px; height: 32px; color: #fff; }
.float-wa:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(37, 211, 102, .55);
  background: #20bd5a;
}
.float-wa:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
/* nabız animasyonu */
.float-wa::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, .45);
  animation: wa-pulse 2s ease-out infinite;
  pointer-events: none;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: .8; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* Cookie banner */
.cookie-banner {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 1200;
  background: var(--c-bg); border: 1px solid var(--c-border);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 1.1rem; display: none; max-width: 520px;
}
.cookie-banner.show { display: block; }
.cookie-banner p { font-size: .88rem; color: var(--c-muted); margin-bottom: .85rem; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.cookie-settings { margin-top: .75rem; font-size: .85rem; display: none; }
.cookie-settings.open { display: block; }
.cookie-settings label { display: flex; gap: .5rem; margin: .4rem 0; align-items: center; }

/* Prose */
.prose { max-width: 720px; }
.prose h2 { margin: 1.5rem 0 .75rem; font-size: 1.25rem; }
.prose p, .prose ul { margin-bottom: 1rem; color: var(--c-muted); }
.prose ul { padding-left: 1.2rem; list-style: disc; }
.prose img { border-radius: var(--radius); margin: 1rem 0; }

/* Gallery */
.gallery-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: .65rem;
}
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; } }
.gallery-item {
  border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 1;
  border: 1px solid var(--c-border);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }

/* Blog kartları — müşteri odaklı, site uyumlu */
.blog-grid { align-items: stretch; }
.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--c-border);
  transition: transform .25s ease, box-shadow .25s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.blog-card-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(145deg, #0b4f8a, #0878a8);
}
.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  padding: 0;
  transition: transform .5s ease;
}
.blog-card:hover .blog-card-img { transform: scale(1.06); }
.blog-card-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(4, 30, 58, 0.55) 0%, rgba(4, 30, 58, 0.08) 50%, transparent 70%);
}
.blog-card-cat {
  position: absolute;
  top: .75rem;
  left: .75rem;
  z-index: 1;
  background: linear-gradient(135deg, var(--c-primary), #1280c4);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: .3rem .7rem;
  border-radius: 999px;
  letter-spacing: .02em;
  box-shadow: 0 4px 12px rgba(11, 79, 138, .25);
}
.blog-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.1rem 1.15rem 1.2rem;
}
.blog-card-meta {
  font-size: .78rem;
  color: var(--c-muted);
  font-weight: 600;
  margin-bottom: .45rem;
}
.blog-card-meta .dot { margin: 0 .25rem; opacity: .6; }
.blog-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: .5rem;
  letter-spacing: -.01em;
}
.blog-card-title a:hover { color: var(--c-primary); }
.blog-card-excerpt {
  color: var(--c-muted);
  font-size: .9rem;
  line-height: 1.55;
  flex: 1;
  margin-bottom: .9rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: .35rem;
  border-top: 1px solid var(--c-border);
}
.blog-card-cta {
  font-size: .8rem;
  font-weight: 700;
  color: var(--c-accent);
  padding: .35rem .65rem;
  border-radius: 999px;
  background: var(--c-water);
}
.blog-card-cta:hover { background: #d0eef8; color: var(--c-primary); }
.blog-bottom-cta {
  margin-top: 3rem;
  text-align: center;
  padding: 2rem 1.25rem;
  border-radius: 18px;
  background: linear-gradient(135deg, #041e3a, #0b4f8a 55%, #0878a8);
  color: #fff;
}
.blog-bottom-cta h2 {
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  font-weight: 800;
  margin-bottom: .5rem;
}
.blog-bottom-cta p {
  opacity: .9;
  margin-bottom: 1.15rem;
  max-width: 32rem;
  margin-inline: auto;
}

/* Blog detail */
.blog-detail-layout {
  display: grid; gap: 1.75rem;
}
@media (min-width: 960px) {
  .blog-detail-layout { grid-template-columns: 1fr 280px; align-items: start; }
}
.blog-detail-media {
  width: 100%;
  margin-bottom: 1.5rem;
  border-radius: 16px;
  overflow: hidden;
  background: #0b4f8a;
  border: 1px solid var(--c-border);
  position: relative;
  aspect-ratio: 21 / 9;
  max-height: 380px;
  padding: 0;
}
.blog-hero-img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  margin: 0;
  display: block;
}
.blog-detail-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(4, 30, 58, 0.35), transparent 55%);
}
@media (max-width: 640px) {
  .blog-detail-media { aspect-ratio: 16 / 10; max-height: 260px; }
  .blog-card-foot { flex-direction: column; align-items: flex-start; }
}
.blog-cta-box {
  margin-top: 2rem; padding: 1.35rem; border-radius: 16px;
  background: var(--c-water); border: 1px solid var(--c-border);
}
.blog-cta-box h2 { font-size: 1.15rem; margin-bottom: .4rem; }
.blog-cta-box p { color: var(--c-muted); margin-bottom: .9rem; font-size: .92rem; }
.tag-pill {
  display: inline-block; background: var(--c-bg-soft); border: 1px solid var(--c-border);
  border-radius: 999px; padding: .2rem .65rem; font-size: .78rem; margin: .15rem;
}
.aside-hr { border: none; border-top: 1px solid var(--c-border); margin: 1rem 0; }
.aside-links li { margin-bottom: .45rem; }
.aside-links a { font-size: .9rem; color: var(--c-primary); font-weight: 600; }
.aside-links a:hover { text-decoration: underline; }
.related-title { font-size: 1.35rem; font-weight: 800; margin-bottom: 1rem; }

/* Utilities */
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.muted { color: var(--c-muted); }
.detail-layout {
  display: grid; gap: 1.5rem;
}
@media (min-width: 900px) {
  .detail-layout { grid-template-columns: 1.2fr .8fr; gap: 2rem; align-items: start; }
}
.sticky-cta {
  position: sticky; top: calc(var(--header-h) + 1rem);
  background: var(--c-bg); border: 1px solid var(--c-border);
  border-radius: var(--radius); padding: 1.25rem; box-shadow: var(--shadow);
}
.feature-list li {
  padding: .45rem 0 .45rem 1.5rem; position: relative; color: var(--c-muted); font-size: .92rem;
}
.feature-list li::before {
  content: "✓"; position: absolute; left: 0; color: var(--c-success); font-weight: 800;
}
.alert {
  padding: .9rem 1rem; border-radius: 10px; margin: 1rem 0; font-weight: 600;
}
.alert-success { background: #d1fae5; color: #065f46; }
.alert-error { background: #fee2e2; color: #991b1b; }

/* Admin */
.admin-body { background: #f1f5f9; }
.admin-shell { display: grid; min-height: 100vh; }
@media (min-width: 900px) { .admin-shell { grid-template-columns: 240px 1fr; } }
.admin-side {
  background: #0b1220; color: #cbd5e1; padding: 1.25rem 1rem;
}
.admin-side a {
  display: block; padding: .65rem .8rem; border-radius: 8px;
  color: #94a3b8; font-size: .9rem; margin-bottom: .2rem;
}
.admin-side a:hover, .admin-side a.active { background: #1e293b; color: #fff; }
.admin-side h2 { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.admin-main { padding: 1.25rem; }
.admin-top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.25rem; flex-wrap: wrap; gap: .75rem;
}
.stat-grid { display: grid; gap: .75rem; grid-template-columns: 1fr 1fr; }
@media (min-width: 768px) { .stat-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-card {
  background: #fff; border-radius: 12px; padding: 1rem; border: 1px solid #e2e8f0;
}
.stat-card strong { display: block; font-size: 1.5rem; color: var(--c-primary); }
.stat-card span { font-size: .8rem; color: #64748b; }
.table-wrap { overflow-x: auto; background: #fff; border-radius: 12px; border: 1px solid #e2e8f0; }
table.data { width: 100%; border-collapse: collapse; font-size: .88rem; }
table.data th, table.data td { padding: .7rem .85rem; border-bottom: 1px solid #e2e8f0; text-align: left; }
table.data th { background: #f8fafc; font-weight: 700; }
.badge {
  display: inline-block; padding: .2rem .5rem; border-radius: 999px;
  font-size: .72rem; font-weight: 700; background: #e2e8f0;
}
.badge-yeni { background: #dbeafe; color: #1e40af; }
.badge-arandi { background: #fef3c7; color: #92400e; }
.badge-teklif_verildi { background: #e0e7ff; color: #3730a3; }
.badge-satis_oldu { background: #d1fae5; color: #065f46; }
.badge-iptal { background: #fee2e2; color: #991b1b; }
.admin-form { background: #fff; border-radius: 12px; padding: 1.25rem; border: 1px solid #e2e8f0; max-width: 800px; }
.login-page {
  min-height: 100vh; display: grid; place-items: center;
  background: linear-gradient(160deg, #041e3a, #0b4f8a);
  padding: 1rem;
}
.login-card {
  background: #fff; border-radius: 16px; padding: 2rem; width: min(400px, 100%);
  box-shadow: var(--shadow-lg);
}
.login-card h1 { font-size: 1.35rem; margin-bottom: .35rem; }
.login-card .sub { color: #64748b; margin-bottom: 1.25rem; font-size: .9rem; }

/* ========== Google Ads landing ========== */
.ads-landing .ads-hero {
  background: linear-gradient(145deg, #0b4f8a 0%, #0a6b8f 45%, #0d9488 100%);
  color: #fff;
  padding: 2.5rem 0 3rem;
}
.ads-hero-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 900px) {
  .ads-hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
  }
}
.ads-hero-copy .section-label {
  background: rgba(255,255,255,.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
}
.ads-hero-copy h1 {
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 800;
  line-height: 1.2;
  margin: .65rem 0 .85rem;
  letter-spacing: -.02em;
  color: #fff;
}
.ads-lead {
  font-size: 1.05rem;
  line-height: 1.55;
  opacity: .92;
  margin-bottom: 1.15rem;
  max-width: 36rem;
}
.ads-benefits {
  list-style: none;
  display: grid;
  gap: .45rem;
  margin: 0 0 1.35rem;
  padding: 0;
}
.ads-benefits li {
  position: relative;
  padding-left: 1.5rem;
  font-weight: 600;
  font-size: .95rem;
}
.ads-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #6ee7b7;
  font-weight: 800;
}
.ads-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}
.ads-form-wrap {
  background: #fff;
  color: var(--c-text);
  border-radius: 16px;
  padding: 1.35rem 1.25rem 1.5rem;
  box-shadow: 0 20px 50px rgba(0,0,0,.22);
}
.ads-form-title {
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 0 .35rem;
  color: var(--c-primary);
}
.ads-form-note {
  font-size: .8rem;
  margin-top: .85rem;
  line-height: 1.45;
}
.page-ads .float-wa { bottom: 1.25rem; }

/* ========== BIRLESIK MOBIL / TABLET (tek kaynak) ========== */
@media (hover: none) {
  .btn-cta:hover,
  .btn:hover,
  .card:hover,
  .product-card-v2:hover,
  .prefer-card:hover,
  .quick-cat:hover,
  .blog-card:hover {
    transform: none !important;
  }
}

@media (max-width: 899px) {
  html, body {
    overflow-x: clip;
    max-width: 100%;
  }
  main, section, .card, .site-header, .site-footer, .hero, .ads-landing {
    max-width: 100%;
    min-width: 0;
  }
  .container {
    width: 100%;
    max-width: 100%;
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
    box-sizing: border-box;
  }

  /* --- Header --- */
  .header-inner { min-height: 60px; gap: .4rem; }
  :root { --header-h: 60px; }
  .header-actions { max-width: none; gap: .3rem; }
  .header-actions .theme-btn { display: none; }
  .header-actions .btn-cta-offer { padding: .45rem .7rem; min-height: 40px; }
  .header-actions .btn-cta-offer .btn-cta-label { font-size: .78rem; }

  /* --- Kategori sekmeleri (Evsel / Endustriyel vb.) --- */
  .tab-list,
  .filter-tabs {
    display: flex !important;
    flex-wrap: wrap !important;
    overflow: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    gap: .4rem !important;
    padding: .5rem !important;
    border-radius: 14px !important;
    box-sizing: border-box !important;
  }
  .tab-btn {
    flex: 1 1 calc(50% - .4rem) !important;
    min-width: 0 !important;
    max-width: 100% !important;
    white-space: normal !important;
    word-break: break-word !important;
    overflow-wrap: anywhere !important;
    font-size: .72rem !important;
    line-height: 1.15 !important;
    padding: .5rem .35rem !important;
    min-height: 42px !important;
    height: auto !important;
    border-radius: 10px !important;
    box-sizing: border-box !important;
  }

  /* --- Hizli kategori kutulari --- */
  .quick-cats {
    margin-top: -1.25rem;
    max-width: 100%;
    overflow: hidden;
  }
  .quick-cats-grid {
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
    padding: .7rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .quick-cat {
    min-width: 0;
    max-width: 100%;
    padding: .55rem .5rem;
    gap: .4rem;
    min-height: 52px;
    overflow: hidden;
    box-sizing: border-box;
  }
  .qc-ico { width: 34px; height: 34px; font-size: 1rem; flex-shrink: 0; }
  .qc-text { min-width: 0; overflow: hidden; }
  .qc-text strong {
    font-size: .78rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .qc-text small {
    font-size: .65rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* --- Urun karti: Teklif + WhatsApp --- */
  .product-card-v2,
  .product-grid .card {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .product-card-v2 .card-body {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    padding: 1rem;
  }
  .product-card-v2 .card-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: .5rem !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: .9rem 0 0 !important;
  }
  .product-card-v2 .card-actions .btn-cta,
  .product-card-v2 .card-actions a.btn-cta {
    display: flex !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    position: static !important;
    transform: none !important;
    white-space: normal !important;
    box-sizing: border-box !important;
  }
  .card-meta,
  .card-meta-prices {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  /* --- Hero butonlari --- */
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .hero-cta .btn-cta {
    width: 100%;
    white-space: normal;
  }
  .hero-cta-center,
  .cta-band .hero-cta,
  .ads-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-cta-center .btn-cta,
  .cta-band .hero-cta .btn-cta,
  .ads-hero-actions .btn,
  .ads-hero-actions .btn-cta {
    width: 100%;
    white-space: normal;
  }

  /* --- Neden biz gorsel + numaralar --- */
  .why-grid,
  .why-media,
  .why-media-frame,
  .why-list {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .why-media { overflow: hidden; }
  .why-media-frame {
    overflow: hidden;
    min-height: 200px;
    border-radius: 16px;
  }
  .why-media-main {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .why-media-badge-water {
    max-width: min(96px, 28vw);
    top: .5rem;
    right: .5rem;
    padding: .3rem;
  }
  .why-media-badge-water img { height: 44px; }
  .why-media-badge-water span { font-size: .62rem; }
  .why-media-badge-trust {
    top: auto;
    bottom: 3.5rem;
    left: .5rem;
    max-width: min(150px, 52vw);
    padding: .4rem .5rem;
  }
  .why-media-caption {
    left: .65rem;
    right: .65rem;
    bottom: .65rem;
    max-width: none;
  }
  .why-item {
    display: flex;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    gap: .6rem;
    padding: .75rem;
    overflow: hidden;
  }
  .why-item .num { flex-shrink: 0; width: 36px; height: 36px; font-size: .78rem; }
  .why-item > div:last-child {
    min-width: 0;
    flex: 1;
    overflow-wrap: anywhere;
  }
  .section-title-left {
    font-size: clamp(1.15rem, 5vw, 1.55rem);
    overflow-wrap: anywhere;
  }

  /* --- Diger bolumler --- */
  .grid-3, .grid-2, .product-grid {
    grid-template-columns: 1fr !important;
  }
  .prefer-grid { grid-template-columns: 1fr 1fr; gap: .65rem; }
  .prefer-card { padding: .85rem .65rem; max-width: 100%; overflow: hidden; }
  .prefer-ico { width: 48px; height: 48px; margin: 0 auto .5rem; }
  .prefer-ico img { width: 40px; height: 40px; object-fit: contain; }
  .prefer-card h3 { font-size: .88rem; }
  .prefer-card p { font-size: .75rem; }
  .doctor-grid { grid-template-columns: 1fr; }
  .doctor-photo { width: 72px; height: 72px; object-fit: cover; border-radius: 50%; }
  .steps { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr !important; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: .75rem;
  }
  .sticky-cta { position: static; width: 100%; }
  .section { padding: 2.5rem 0; overflow-x: clip; }
  .page-hero { padding: 2rem 0 1.5rem; }
  .float-wa {
    width: 54px;
    height: 54px;
    right: max(.75rem, env(safe-area-inset-right));
    bottom: max(.75rem, env(safe-area-inset-bottom));
  }
  .cookie-banner {
    left: .75rem;
    right: .75rem;
    bottom: 4.5rem;
    max-width: calc(100vw - 1.5rem);
  }
  .btn, .btn-cta { max-width: 100%; box-sizing: border-box; }
  .btn { white-space: normal; height: auto; min-height: var(--touch); }
  .text-center .btn,
  .text-center .btn-cta {
    max-width: 100%;
  }
  .card-body h3,
  .card-body p,
  .section-head p,
  .hero-sub {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .trust-pill { white-space: normal; font-size: .72rem; }
  .ads-form-wrap { padding: 1.1rem .95rem; }
  .ads-hero { padding: 1.75rem 0 2rem; }
  .ads-hero-copy h1 { font-size: 1.5rem; }
  input, select, textarea { font-size: 16px !important; }
  .table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  table.data { min-width: 520px; }
}

@media (min-width: 641px) and (max-width: 899px) {
  .product-grid.grid-3,
  .grid-3 {
    grid-template-columns: 1fr 1fr !important;
  }
  .product-card-v2 .card-actions {
    grid-template-columns: 1fr 1fr !important;
  }
  .tab-btn {
    flex: 1 1 auto !important;
    font-size: .8rem !important;
    white-space: nowrap !important;
  }
  .tab-list, .filter-tabs {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    border-radius: 999px !important;
  }
}

@media (max-width: 400px) {
  .site-logo { max-width: min(120px, 42vw); }
  .hero h1 { font-size: 1.5rem; }
  .tab-btn {
    flex: 1 1 100% !important;
    font-size: .78rem !important;
  }
  .prefer-grid { grid-template-columns: 1fr !important; }
  .steps { grid-template-columns: 1fr !important; }
  .why-media-badge-water { display: none !important; }
  .header-actions .btn-cta-offer .btn-cta-label { font-size: .72rem; }
}

