﻿/*
Theme Developer: Enzo Dijital
Website: https://www.enzodijital.com
*/

/* =============================================================
   Dr. Hüsniye Kalın — Main Stylesheet
   v2.0 | Mobile-first | Premium Medical Aesthetic
   ============================================================= */


/* ─── 1. CSS Variables ──────────────────────────────────────── */
:root {
  /* ── Theme-injected (overridden by helpers.php via wp_head) ── */
  --primary-color:   #98665f;
  --secondary-color: #e8d8d4;
  --button-color:    #98665f;
  --body-font:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* ── Marka renk paleti — Dr. Hüsniye Kalın ─────────────────── */
  /* Fallback değerleri var() içinde; inline CSS (priority 99) bunları override eder */
  --clr-primary:   var(--primary-color,   #98665f);
  --clr-primary-d: #7f514b;
  --clr-primary-l: #f3e9e6;
  --clr-secondary: var(--secondary-color, #e8d8d4);
  --clr-accent:    #c9a39c;
  --clr-btn:       var(--button-color,    #98665f);

  /* ── Zemin renkleri ─────────────────────────────────────────── */
  --clr-bg:      #ffffff;
  --clr-soft:    #faf6f4;
  --clr-section: #ffffff;
  --clr-light:   #f5f0ee;
  --clr-white:   #ffffff;

  /* ── Metin & kenarlık ───────────────────────────────────────── */
  --clr-text:   #1f1a18;
  --clr-muted:  #6f625f;
  --clr-dark:   #1f1a18;
  --clr-border: #eadfdb;

  /* ── Header / Footer renk değişkenleri (husniye-css-vars tarafından doldurulur) */
  --header-bg:        #ffffff;
  --header-text:      #1f1a18;
  --footer-bg:        #2a2423;
  --footer-text:      #f7f1ef;
  --footer-bottom-bg: #211c1b;

  /* ── Typography — canonical tokens ─────────────────────────── */
  --ff-body:    var(--body-font);
  --ff-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;

  --fs-xs:   .75rem;    /*  12px */
  --fs-sm:   .875rem;   /*  14px */
  --fs-base: 1rem;      /*  16px */
  --fs-lg:   1.125rem;  /*  18px */
  --fs-xl:   1.25rem;   /*  20px */
  --fs-2xl:  1.5rem;    /*  24px */
  --fs-3xl:  1.875rem;  /*  30px */
  --fs-4xl:  2.25rem;   /*  36px */
  --fs-5xl:  3rem;      /*  48px */

  --lh-tight:   1.25;
  --lh-snug:    1.375;
  --lh-normal:  1.5;
  --lh-relaxed: 1.7;

  /* ── Typography — design-token aliases ─────────────────────── */
  --font-body:    var(--ff-body);
  --font-heading: var(--ff-heading);
  --fs-md:        var(--fs-base);  /* 16px — alias for --fs-base */

  /* ── Spacing — canonical tokens (8px grid) ──────────────────── */
  --sp-1:  .5rem;   /*  8px */
  --sp-2:  1rem;    /* 16px */
  --sp-3:  1.5rem;  /* 24px */
  --sp-4:  2rem;    /* 32px */
  --sp-5:  2.5rem;  /* 40px */
  --sp-6:  3rem;    /* 48px */
  --sp-8:  4rem;    /* 64px */
  --sp-10: 5rem;    /* 80px */
  --sp-12: 6rem;    /* 96px */
  --sp-16: 8rem;    /* 128px */

  /* ── Spacing — design-token aliases ────────────────────────── */
  --space-1:  var(--sp-1);
  --space-2:  var(--sp-2);
  --space-3:  var(--sp-3);
  --space-4:  var(--sp-4);
  --space-5:  var(--sp-5);
  --space-6:  var(--sp-6);
  --space-8:  var(--sp-8);
  --space-10: var(--sp-10);
  --space-12: var(--sp-12);

  /* ── Radius — canonical tokens ──────────────────────────────── */
  --r-sm:   8px;
  --r-md:   12px;
  --r-lg:   16px;
  --r-xl:   20px;
  --r-2xl:  28px;
  --r-full: 9999px;

  /* ── Radius — design-token aliases ──────────────────────────── */
  --radius-sm:   var(--r-sm);
  --radius-md:   var(--r-md);
  --radius-lg:   var(--r-lg);
  --radius-xl:   var(--r-xl);
  --radius-full: var(--r-full);

  /* ── Shadows (names are already design-token style) ─────────── */
  --shadow-sm: 0 1px 4px rgba(32,32,32,.06);
  --shadow-md: 0 4px 18px rgba(32,32,32,.08);
  --shadow-lg: 0 10px 40px rgba(32,32,32,.10);
  --shadow-xl: 0 20px 60px rgba(32,32,32,.13);

  /* ── Motion ─────────────────────────────────────────────────── */
  --ease:     cubic-bezier(.16,1,.3,1);
  --dur:      200ms;
  --dur-slow: 350ms;

  /* ── Layout — canonical tokens ──────────────────────────────── */
  --container-max: 1300px;
  --header-h:      104px;
  --section-py-desktop: 75px;
  --section-py-tablet: 60px;
  --section-py-mobile: 45px;
  --section-py:    var(--section-py-desktop);

  /* ── Layout — design-token aliases ──────────────────────────── */
  --container:        var(--container-max);
  --container-narrow: 720px;
  --header-height:    var(--header-h);

  /* ── Button tokens ───────────────────────────────────────────── */
  --button-radius:  var(--r-full);
  --button-padding: .75rem 1.625rem;
  --button-padding-sm: .5rem 1.25rem;
  --button-padding-lg: 1rem 2.25rem;
}


/* ─── 2. Reset ──────────────────────────────────────────────── */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  color: var(--clr-text);
  background: var(--clr-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Content alanları — varsayılan beyaz zemin */
.site-main,
.page-content,
.entry-content,
.page-wrap,
.single-wrap,
.archive-wrap { background: var(--clr-white); }

/* Sayfa içerik edge spacing — anasayfa hariç.
   Akış: Header → Page Hero → content spacing → içerik → footer spacing → Footer */
:root {
  --hk-content-edge-space: 50px;
}

body:not(.hk-front-page) .site-main {
  padding-bottom: 0;
}

body:not(.hk-front-page) .site-main > *:last-child {
  margin-bottom: var(--hk-content-edge-space);
}

body:not(.hk-front-page) .site-main section:last-child,
body:not(.hk-front-page) .site-main .ct-map-section:last-child,
body:not(.hk-front-page) .site-main .page-wrap:last-child,
body:not(.hk-front-page) .site-main .single-wrap:last-child,
body:not(.hk-front-page) .site-main .archive-wrap:last-child {
  margin-bottom: var(--hk-content-edge-space);
}

/* Hero'dan sonra gelen ilk içerik wrapper'ı. */
body:not(.hk-front-page) .page-hero + :where(
  .page-wrap,
  .single-wrap,
  .ct-page,
  .ab-about-section,
  .st-meta-band,
  .st-wrap,
  .bl-featured,
  .tl-cats,
  .tl-treatments,
  .archive-filter-wrap,
  .ba-filter,
  .ba-archive-grid-wrap,
  .tst-stats-bar,
  .tst-archive-wrap,
  .tst-single-content-wrap
) {
  padding-top: var(--hk-content-edge-space);
}

/* Görselli tekil hero'lar ve hero kullanmayan klasik akışlar. */
body:not(.hk-front-page) :where(.single-hero, .st-hero) + :where(.single-wrap, .single-tedavi-wrap, .st-meta-band, .st-wrap) {
  padding-top: var(--hk-content-edge-space);
}

body:not(.hk-front-page) :where(
  .page-wrap,
  .single-wrap,
  .archive-wrap,
  .blog-archive-section,
  .blog-index-section,
  .ba-archive-grid-wrap,
  .tst-archive-wrap,
  .tst-single-content-wrap,
  .ba-single-wrap,
  .st-wrap,
  .ct-page,
  .error-404-section
) {
  padding-bottom: 0;
}

body:not(.hk-front-page) :where(
  .page-wrap,
  .single-wrap,
  .archive-wrap,
  .blog-archive-section,
  .blog-index-section,
  .ba-archive-grid-wrap,
  .tst-archive-wrap,
  .tst-single-content-wrap,
  .ba-single-wrap,
  .st-wrap,
  .ct-page,
  .error-404-section
):last-child {
  margin-bottom: var(--hk-content-edge-space);
}

/* İletişim sayfasında harita kendi boşluğunu verdiği için dış wrapper boşluğu ekleme. */
body:not(.hk-front-page) .site-main > .ct-page:last-child {
  margin-bottom: 0;
}

/* Hero bulunmayan klasik sayfalarda header altı nefes alanı. */
body:not(.hk-front-page) .site-main > :where(
  .blog-archive-section,
  .blog-index-section,
  .error-404-section
):first-child {
  padding-top: var(--hk-content-edge-space);
}

@media (max-width: 1024px) {
  :root { --hk-content-edge-space: 40px; }
}

@media (max-width: 480px) {
  :root { --hk-content-edge-space: 32px; }
}

img, video, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
button { cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }
address { font-style: normal; }
h1,h2,h3,h4,h5,h6 { font-family: var(--ff-heading); line-height: var(--lh-tight); color: var(--clr-dark); }


/* ─── 3. Skip Link ──────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100px;
  left: var(--sp-2);
  background: var(--clr-primary);
  color: var(--clr-white);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: var(--fs-sm);
  z-index: 9999;
  transition: top var(--dur) var(--ease);
}
.skip-link:focus { top: var(--sp-2); }


/* ─── 4. Container ──────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
.container--narrow {
  max-width: var(--container-narrow);
}

@media (max-width: 1024px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}


/* ─── 5. Section ────────────────────────────────────────────── */
.section {
  padding-block: var(--section-py);
}

@media (max-width: 1199px) {
  :root { --section-py: var(--section-py-tablet); }

  .home-specialties__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  :root { --section-py: var(--section-py-mobile); }
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--clr-primary);
  background: var(--clr-primary-l);
  padding: 5px var(--sp-2);
  border-radius: var(--r-full);
  margin-bottom: var(--sp-2);
}

.section-title {
  font-size: clamp(var(--fs-2xl), 3.5vw, var(--fs-4xl));
  font-weight: 700;
  color: var(--clr-dark);
  margin-bottom: var(--sp-2);
  max-width: 640px;
}

.section-description {
  font-size: var(--fs-lg);
  color: var(--clr-muted);
  line-height: var(--lh-relaxed);
  max-width: 560px;
}

.section-header { margin-bottom: var(--sp-8); }
.section-header--center {
  text-align: center;
}
.section-header--center .section-title,
.section-header--center .section-description {
  margin-inline: auto;
}

.section-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: var(--sp-8);
}


/* ─── 6. Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--button-radius);
  padding: var(--button-padding);
  transition: background var(--dur) var(--ease),
              color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              transform var(--dur) var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn:focus-visible {
  outline: 3px solid var(--clr-primary);
  outline-offset: 3px;
}
.btn:active { transform: scale(.97); }

/* Primary */
.btn--primary {
  background: var(--clr-btn);
  color: var(--clr-white);
  box-shadow: 0 4px 16px rgba(152,102,95,.25);
}
.btn--primary:hover {
  background: var(--clr-primary-d);
  box-shadow: 0 6px 24px rgba(152,102,95,.35);
}

/* Outline */
.btn--outline {
  background: transparent;
  color: var(--clr-primary);
  border-color: var(--clr-primary);
}
.btn--outline:hover {
  background: var(--clr-primary);
  color: var(--clr-white);
}

/* Ghost (transparent, dark text) */
.btn--ghost {
  background: rgba(255,255,255,.12);
  color: var(--clr-white);
  border-color: rgba(255,255,255,.35);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.6);
}

/* White (on dark bg) */
.btn--white {
  background: var(--clr-white);
  color: var(--clr-primary);
  box-shadow: var(--shadow-md);
}
.btn--white:hover { box-shadow: var(--shadow-lg); }

/* Ghost-white (on dark bg, outlined) */
.btn--ghost-white {
  background: transparent;
  color: var(--clr-white);
  border-color: rgba(255,255,255,.5);
}
.btn--ghost-white:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--clr-white);
}

/* Sizes */
.btn--lg { padding: var(--button-padding-lg); font-size: var(--fs-md); }
.btn--sm { padding: var(--button-padding-sm); font-size: var(--fs-xs); }
.btn--block { width: 100%; }


/* ─── 7. Breadcrumb ─────────────────────────────────────────── */
.breadcrumb { margin-bottom: var(--sp-3); }
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  font-size: var(--fs-xs);
}
.breadcrumb__item { color: rgba(255,255,255,.7); }
.breadcrumb__item a { color: rgba(255,255,255,.85); text-decoration: none; }
.breadcrumb__item a:hover { color: var(--clr-white); text-decoration: underline; }
.breadcrumb__item--sep { color: rgba(255,255,255,.4); }
.breadcrumb__item--active { color: var(--clr-white); font-weight: 600; }

/* Breadcrumb on light background */
.page-wrap .breadcrumb .breadcrumb__item,
.single-wrap .breadcrumb .breadcrumb__item { color: var(--clr-muted); }
.page-wrap .breadcrumb .breadcrumb__item a,
.single-wrap .breadcrumb .breadcrumb__item a { color: var(--clr-primary); }
.page-wrap .breadcrumb .breadcrumb__item--sep,
.single-wrap .breadcrumb .breadcrumb__item--sep { color: var(--clr-border); }
.page-wrap .breadcrumb .breadcrumb__item--active,
.single-wrap .breadcrumb .breadcrumb__item--active { color: var(--clr-text); }


/* ─── 8. Top Bar ────────────────────────────────────────────── */
#top-bar {
  background: var(--clr-primary);
  color: rgba(255,255,255,.9);
  font-size: var(--fs-xs);
  line-height: 1;
  z-index: 101;
  position: relative;
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  padding-block: .45rem;
  min-height: 36px;
}

.top-bar__left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .1rem var(--sp-3);
}

/* Ortak öğe */
.top-bar__item {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity var(--dur) var(--ease);
}
a.top-bar__item:hover,
a.top-bar__item:focus-visible { opacity: .75; }

.top-bar__icon {
  flex-shrink: 0;
  opacity: .85;
}

/* Sosyal medya sağ blok */
.top-bar__right { flex-shrink: 0; }
.top-bar__social {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  list-style: none;
  margin: 0;
  padding: 0;
}
.top-bar__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: var(--r-full);
  color: rgba(255,255,255,.85);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.top-bar__social-link:hover,
.top-bar__social-link:focus-visible {
  background: rgba(255,255,255,.15);
  color: var(--clr-white);
}

/* Mobil: sade görünüm — sadece gerekli öğeleri göster */
@media (max-width: 767px) {
  .top-bar__inner {
    padding-block: .35rem;
    min-height: 30px;
  }
  /* Sosyal ikonlar + çalışma saatleri mobilden gizle */
  .top-bar__right,
  .top-bar__hours { display: none; }
  /* Telefon & WhatsApp yan yana küçük */
  .top-bar__left { gap: .1rem var(--sp-2); }
  .top-bar__item span { font-size: .7rem; }
}

/* ─── 8b. Header ─────────────────────────────────────────────── */
#site-header {
  position: relative;
  z-index: 1000;
  background: var(--header-bg, var(--clr-white));
  color: var(--header-text, var(--clr-text));
  border-bottom: 1px solid var(--clr-border);
  height: var(--header-h);
}

/* Sticky */
#site-header.is-sticky {
  position: sticky;
  top: 0;
}
#site-header.is-scrolled {
  box-shadow: 0 2px 20px rgba(32,32,32,.08);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}

/* ── Logo ── */
.site-logo { flex-shrink: 0; }
.site-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.site-logo--wp { height: 44px; width: auto; }

.site-title-link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.site-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--clr-dark);
  line-height: 1.2;
}
.site-tagline {
  font-size: var(--fs-xs);
  color: var(--clr-muted);
  letter-spacing: .03em;
}

/* ── Navigation ── */
.primary-nav { flex: 1; display: flex; justify-content: center; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}

.nav-menu > .menu-item > a {
  display: block;
  padding: .5rem var(--sp-2);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--clr-text);
  text-decoration: none;
  border-radius: var(--r-full);
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nav-menu > .menu-item > a:hover,
.nav-menu > .menu-item.current-menu-item > a,
.nav-menu > .menu-item.current-menu-ancestor > a {
  color: var(--clr-primary);
  background: var(--clr-primary-l);
}

.mobile-submenu-toggle {
  display: none;
}

/* Dropdown */
@media (min-width: 1025px) {
  .nav-menu .menu-item-has-children {
    position: relative;
  }

  .nav-menu .menu-item-has-children::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 14px;
  }

  .nav-menu .sub-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    min-width: 240px;
    padding: 10px;
    border: 1px solid var(--clr-border);
    border-radius: 18px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 18px 45px rgba(31,26,24,.12);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(10px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
    z-index: 1001;
  }

  .nav-menu .menu-item-has-children:hover > .sub-menu,
  .nav-menu .menu-item-has-children:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }

  .nav-menu .sub-menu a {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    color: var(--clr-text);
    font-size: 14px;
    text-decoration: none;
    transition: background .2s ease, color .2s ease;
  }

  .nav-menu .sub-menu a:hover,
  .nav-menu .sub-menu a:focus-visible,
  .nav-menu .sub-menu .current-menu-item > a,
  .nav-menu .sub-menu .current-menu-ancestor > a {
    background: var(--clr-primary-l);
    color: var(--clr-primary);
  }
}

/* ── Header Actions ── */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-shrink: 0;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-text);
  text-decoration: none;
  padding: .45rem var(--sp-2);
  border-radius: var(--r-full);
  border: 1.5px solid var(--clr-border);
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.header-phone:hover {
  border-color: var(--clr-primary);
  color: var(--clr-primary);
}

.header-appt-btn {
  /* uses .btn .btn--primary */
}

/* ── Mobile Toggle ── */
.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--r-md);
  background: transparent;
  color: var(--clr-text);
  flex-shrink: 0;
  transition: border-color var(--dur) var(--ease);
}
.mobile-menu-toggle:hover { border-color: var(--clr-primary); color: var(--clr-primary); }

.hamburger-icon {
  width: 22px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  pointer-events: none;
}
.hamburger-icon span {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease), width var(--dur) var(--ease);
}
.hamburger-icon span:last-child { width: 75%; }

/* Hamburger open state */
.is-menu-open .hamburger-icon span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.is-menu-open .hamburger-icon span:nth-child(2) { opacity: 0; }
.is-menu-open .hamburger-icon span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 100%; }

@media (max-width: 1024px) {
  .header-inner {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    align-items: center;
    gap: 0;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(152,102,95,.18);
    border-radius: 14px;
    background: rgba(255,255,255,.86);
    color: var(--clr-dark);
    box-shadow: 0 8px 22px rgba(31,26,24,.06);
    backdrop-filter: blur(12px);
    transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease), background var(--dur) var(--ease), box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
  }

  .mobile-menu-toggle:hover,
  .mobile-menu-toggle:focus-visible {
    border-color: rgba(152,102,95,.38);
    background: var(--clr-white);
    color: var(--clr-primary);
    box-shadow: 0 12px 28px rgba(31,26,24,.1);
  }

  .mobile-menu-toggle:active {
    transform: scale(.96);
  }

  .site-branding {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    min-width: 0;
  }

  .site-logo-link,
  .site-title-link {
    align-items: center;
    text-align: center;
  }

  .header-actions {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    min-width: 44px;
  }

  .header-phone,
  .header-appt-btn {
    display: none;
  }

  .primary-nav {
    display: none;
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: var(--clr-white);
    overflow-y: auto;
    padding: var(--sp-4);
    z-index: 99;
    flex-direction: column;
    align-items: flex-start;
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav .nav-menu {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 6px;
  }

  .primary-nav .nav-menu > .menu-item {
    position: relative;
    width: 100%;
  }

  .primary-nav .nav-menu > .menu-item > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 48px;
    padding: 14px 52px 14px 16px;
    border-radius: 14px;
    color: var(--clr-text);
    font-size: var(--fs-base);
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
  }

  .primary-nav .nav-menu > .menu-item > a:hover,
  .primary-nav .nav-menu > .menu-item > a:focus-visible,
  .primary-nav .nav-menu > .menu-item.current-menu-item > a,
  .primary-nav .nav-menu > .menu-item.current-menu-ancestor > a,
  .primary-nav .nav-menu > .menu-item.is-open > a {
    background: var(--clr-primary-l);
    color: var(--clr-primary);
  }

  .mobile-submenu-toggle {
    position: absolute;
    top: 6px;
    right: 6px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 0;
    border-radius: 12px;
    background: rgba(152,102,95,.08);
    color: var(--clr-primary);
    cursor: pointer;
    transition: background var(--dur) var(--ease), color var(--dur) var(--ease), transform var(--dur) var(--ease);
  }

  .mobile-submenu-toggle:hover,
  .mobile-submenu-toggle:focus-visible {
    background: rgba(152,102,95,.14);
    color: var(--clr-primary-d);
    outline: none;
  }

  .mobile-submenu-toggle svg {
    transition: transform .24s ease;
  }

  .menu-item-has-children.is-open > .mobile-submenu-toggle svg {
    transform: rotate(180deg);
  }

  .primary-nav .nav-menu .sub-menu {
    position: static;
    display: block;
    max-height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
    transition: max-height .28s ease, opacity .2s ease, visibility .2s ease, margin .2s ease;
  }

  .primary-nav .nav-menu .menu-item-has-children.is-open > .sub-menu {
    max-height: 300px;
    margin-top: 6px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .primary-nav .nav-menu .sub-menu a {
    display: block;
    margin: 0 0 4px;
    padding: 11px 16px 11px 28px;
    border-radius: 12px;
    color: var(--clr-muted);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
    text-decoration: none;
    transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
  }

  .primary-nav .nav-menu .sub-menu a:hover,
  .primary-nav .nav-menu .sub-menu a:focus-visible,
  .primary-nav .nav-menu .sub-menu .current-menu-item > a,
  .primary-nav .nav-menu .sub-menu .current-menu-ancestor > a {
    background: rgba(152,102,95,.08);
    color: var(--clr-primary);
    text-decoration: none;
  }

  .hamburger-icon {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
  }

  .hamburger-icon__svg {
    display: block;
  }

  .hamburger-icon__line {
    transform-box: fill-box;
    transform-origin: center;
    transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
  }

  .is-menu-open .hamburger-icon__line--top {
    transform: translateY(5px) rotate(45deg);
  }

  .is-menu-open .hamburger-icon__line--middle {
    opacity: 0;
  }

  .is-menu-open .hamburger-icon__line--bottom {
    transform: translateY(-5px) rotate(-45deg);
  }
}

/* ── Mobil CTA — yalnızca mobil menü açıkken görünür ── */
.mobile-cta {
  display: none;    /* masaüstünde gizle */
}
.mobile-cta__btn {
  width: 100%;
  justify-content: center;
  gap: .5rem;
}


/* ─── 9. Page Banner (archive, single hero) ─────────────────── */
.page-banner {
  position: relative;
  background: linear-gradient(135deg, var(--clr-primary-d) 0%, var(--clr-primary) 100%);
  padding-block: var(--sp-12) var(--sp-10);
  color: var(--clr-white);
  overflow: hidden;
}
.page-banner__bg {
  position: absolute;
  inset: 0;
}
.page-banner__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .18;
}
.page-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(111,74,104,.5), rgba(111,74,104,.88));
}
.page-banner__inner { position: relative; z-index: 1; }
.page-banner__title {
  font-size: clamp(var(--fs-2xl), 4vw, var(--fs-4xl));
  color: var(--clr-white);
  margin-top: var(--sp-3);
  font-weight: 700;
}
.page-banner__desc {
  color: rgba(255,255,255,.8);
  font-size: var(--fs-lg);
  margin-top: var(--sp-2);
  max-width: 540px;
}

.mobile-floating-actions {
  display: none;
}

.back-to-top,
.scroll-to-top,
.scroll-top,
#back-to-top {
  display: none !important;
}

@media (max-width: 1024px) {
  .whatsapp-float,
  .back-to-top,
  .scroll-to-top,
  .scroll-top,
  #back-to-top {
    display: none !important;
  }

  .mobile-floating-actions {
    position: fixed;
    right: 18px;
    bottom: calc(22px + env(safe-area-inset-bottom));
    z-index: 160;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    pointer-events: none;
  }

  .mobile-floating-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(152,102,95,.35);
    border-radius: 999px;
    background: var(--clr-primary, #98665f);
    color: #fff;
    box-shadow: 0 14px 35px rgba(31,26,24,.18);
    text-decoration: none;
    pointer-events: auto;
    transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
  }

  .mobile-floating-action--whatsapp {
    border-color: rgba(37,211,102,.35);
    background: #25D366;
    color: #fff;
    box-shadow: 0 14px 35px rgba(37,211,102,.28);
  }

  .mobile-floating-action:hover,
  .mobile-floating-action:focus-visible {
    border-color: rgba(152,102,95,.45);
    background: #734335;
    color: #fff;
    box-shadow: 0 16px 38px rgba(31,26,24,.2);
    outline: none;
  }

  .mobile-floating-action--whatsapp:hover,
  .mobile-floating-action--whatsapp:focus-visible {
    border-color: rgba(37,211,102,.45);
    background: #1ebe5d;
    color: #fff;
    box-shadow: 0 16px 38px rgba(37,211,102,.34);
  }

  .mobile-floating-action:active {
    transform: scale(.95);
  }

  .mobile-floating-action svg {
    width: 22px;
    height: 22px;
  }
}


/* ─── 10. Hero Section ──────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: min(74vh, 620px);
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--clr-primary-d) 0%, var(--clr-primary) 60%, #B08FAE 100%);
  overflow: hidden;
}
.hero-section--has-image {
  background-size: cover;
  background-position: center;
}

.hero-visible-mobile {
  display: none !important;
}

.hero-slider__track {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: inherit;
}

.hero-slide {
  width: 100%;
  min-height: inherit;
  display: flex;
  align-items: center;
  background: var(--hero-slide-bg, transparent);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  transform: translateX(24px);
  transition: opacity .55s var(--ease), transform .55s var(--ease), visibility .55s var(--ease);
  will-change: opacity, transform;
  pointer-events: none;
}

.hero-slide[style]::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.hero-slide:not(.is-active) {
  position: absolute;
  inset: 0;
}

.hero-slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
}

.hero-slide .hero-container {
  position: relative;
  z-index: 1;
}

.hero-slider__dots {
  position: absolute;
  left: 50%;
  bottom: calc(var(--sp-6) + 20px);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
}

.hero-slider__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: var(--r-full);
  background: rgba(255,255,255,.28);
  cursor: pointer;
  transition: width var(--dur) var(--ease), background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.hero-slider__dot.is-active,
.hero-slider__dot[aria-selected="true"] {
  width: 28px;
  background: var(--clr-white);
  border-color: var(--clr-white);
}

.hero-slider__dot:focus-visible {
  outline: 3px solid rgba(255,255,255,.6);
  outline-offset: 3px;
}

.hero-slider__arrows {
  position: absolute;
  inset: 0;
  z-index: 30;
  pointer-events: none;
}

.hero-slider__arrow {
  position: absolute;
  top: 50%;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  color: #fff;
  backdrop-filter: blur(16px);
  cursor: pointer;
  pointer-events: auto;
  transform: translateY(-50%);
  transition: background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease);
}

.hero-slider__arrow--prev {
  left: 32px;
}

.hero-slider__arrow--next {
  right: 32px;
}

.hero-slider__arrow:hover {
  background: rgba(255,255,255,.24);
  border-color: rgba(255,255,255,.45);
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
  transform: translateY(-50%) scale(1.06);
}

.hero-slider__arrow:focus-visible {
  outline: 3px solid rgba(255,255,255,.6);
  outline-offset: 3px;
}

.hero-slider__arrow svg {
  width: 22px;
  height: 22px;
}

.hero-mobile-nav {
  display: none;
}

.hero-mobile-prev,
.hero-mobile-next {
  position: absolute;
  top: 50%;
  z-index: 32;
  width: 40px;
  height: 40px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background .24s var(--ease), border-color .24s var(--ease), box-shadow .24s var(--ease), transform .24s var(--ease);
}

.hero-mobile-prev { left: 16px; }
.hero-mobile-next { right: 16px; }

.hero-mobile-prev:hover,
.hero-mobile-next:hover,
.hero-mobile-prev:focus-visible,
.hero-mobile-next:focus-visible {
  background: rgba(255,255,255,.26);
  border-color: rgba(255,255,255,.42);
  box-shadow: 0 10px 28px rgba(0,0,0,.16);
  transform: translateY(-50%) scale(1.05);
}

.hero-mobile-prev:active,
.hero-mobile-next:active {
  transform: translateY(-50%) scale(.95);
}

.hero-mobile-prev:focus-visible,
.hero-mobile-next:focus-visible {
  outline: 3px solid rgba(255,255,255,.45);
  outline-offset: 3px;
}

.hero-mobile-prev svg,
.hero-mobile-next svg {
  width: 18px;
  height: 18px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(111,74,104,.92) 45%, rgba(111,74,104,.5) 100%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-10);
  align-items: stretch;
  padding-top: var(--sp-12);
  padding-bottom: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--clr-white);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 6px var(--sp-2);
  border-radius: var(--r-full);
  margin-bottom: var(--sp-3);
}
.hero-badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #A8E6CF;
  flex-shrink: 0;
}

.hero-title {
  font-size: clamp(var(--fs-3xl), 5vw, var(--fs-5xl));
  font-weight: 800;
  color: var(--clr-white);
  line-height: var(--lh-tight);
  margin-bottom: var(--sp-3);
}

.hero-content__mobile,
.hero-action__mobile,
.hero-card__photo--mobile {
  display: none;
}

.hero-description {
  font-size: var(--fs-lg);
  color: rgba(255,255,255,.85);
  line-height: var(--lh-relaxed);
  max-width: 480px;
  margin-bottom: var(--sp-5);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: var(--sp-5);
}

.hero-phone {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.8);
  margin-bottom: var(--sp-4);
}
.hero-phone__number {
  font-weight: 700;
  color: var(--clr-white);
  text-decoration: none;
}
.hero-phone__number:hover { text-decoration: underline; }

.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: rgba(255,255,255,.85);
}

/* ── Hero Visual Card ── */
.hero-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  justify-self: end;
  align-self: end;
  width: 100%;
  max-width: 500px;
  min-height: 100%;
  margin-left: auto;
}

.hero-card {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: visible;
  box-shadow: var(--shadow-xl);
  background: rgba(255,255,255,.94);
  width: min(100%, 450px);
  max-width: 450px;
  margin-left: auto;
  margin-right: 0;
  transform: none;
}

.hero-card__photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: contain;
  object-position: bottom right;
  display: block;
  transition: transform .4s ease;
  will-change: transform;
}

.hero-card:hover .hero-card__photo {
  transform: scale(1.03);
}
.hero-card__photo--placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #E8D5E6 0%, #C8A8C0 100%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.hero-card__badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--clr-white);
  border-radius: var(--r-full);
  padding: 8px 14px;
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--clr-dark);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}
.hero-card__badge--top  { top: var(--sp-3); right: -var(--sp-2); }
.hero-card__badge--bottom { bottom: var(--sp-8); right: -var(--sp-2); }
.hero-card__badge svg { color: var(--clr-primary); flex-shrink: 0; }

.hero-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--sp-3);
  background: linear-gradient(to top, rgba(32,32,32,.9) 0%, transparent 100%);
}
.hero-card__name {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 2px;
}
.hero-card__title {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,.75);
}

body.hk-front-page .hero-slide > .hero-container,
body.home .hero-slide > .hero-container {
  min-height: inherit;
}

body.hk-front-page .hero-visual,
body.home .hero-visual {
  display: flex;
  align-items: flex-end;
  align-self: stretch;
  justify-content: flex-end;
  min-height: 100%;
}

body.hk-front-page .hero-card,
body.home .hero-card {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  width: auto;
  height: 100%;
  max-width: none;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

body.hk-front-page .hero-card__photo,
body.home .hero-card__photo {
  width: auto;
  height: min(620px, 88vh);
  max-height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: bottom right;
}

body.hk-front-page .hero-card__badge,
body.hk-front-page .hero-card__info,
body.home .hero-card__badge,
body.home .hero-card__info {
  display: none;
}

@media (min-width: 1025px) {
  .hero-section,
  .hero-slider,
  .hero-slider__track,
  .hero-slide {
    height: 620px;
    min-height: 620px;
  }

  .hero-container {
    height: 620px;
    min-height: 620px;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero-visual {
    height: 100%;
    align-self: stretch;
    align-items: flex-end;
  }

  body.hk-front-page .hero-card__photo,
  body.home .hero-card__photo {
    height: 100%;
    max-height: 620px;
  }
}

/* Decorations */
.hero-decoration {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-decoration--circle-1 {
  width: 180px;
  height: 180px;
  border: 2px solid rgba(255,255,255,.1);
  top: -40px;
  right: -40px;
}
.hero-decoration--circle-2 {
  width: 100px;
  height: 100px;
  border: 2px solid rgba(255,255,255,.06);
  bottom: 40px;
  left: -30px;
}
.hero-decoration--dots {
  width: 120px;
  height: 120px;
  background-image: radial-gradient(rgba(255,255,255,.2) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  border-radius: 0;
  top: 20px;
  left: -10px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: var(--sp-3);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero-scroll-hint__line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.6), transparent);
  margin-inline: auto;
}


/* ─── 11. Treatments Grid & Card ────────────────────────────── */
.treatments-section { background: var(--clr-bg); }

.home-specialties__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}

.home-specialty-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--clr-border);
  border-radius: 28px;
  background: var(--clr-white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-slow) var(--ease), box-shadow var(--dur-slow) var(--ease), border-color var(--dur-slow) var(--ease);
}

.home-specialty-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(152,102,95,.35);
}

.home-specialty-card--internal {
  background: linear-gradient(135deg, #f7ebdf 0%, #fff 60%);
}

.home-specialty-card--aesthetic {
  background: linear-gradient(135deg, #ead3c1 0%, #fff 62%);
}

.home-specialty-card--all {
  background: linear-gradient(135deg, #98665f 0%, #734335 100%);
  color: var(--clr-white);
  border-color: rgba(255,255,255,.18);
}

.home-specialty-card__decor {
  position: absolute;
  right: -72px;
  bottom: -72px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(152,102,95,.08);
  pointer-events: none;
}

.home-specialty-card--all .home-specialty-card__decor {
  background: rgba(255,255,255,.1);
}

.home-specialty-card__image {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(135deg, rgba(247,235,223,.95) 0%, rgba(255,255,255,.8) 100%);
  text-decoration: none;
}

.home-specialty-card__image img,
.home-specialty-card__placeholder {
  width: 100%;
  height: 100%;
  display: block;
}

.home-specialty-card__image img {
  object-fit: cover;
  transition: transform .4s ease;
}

.home-specialty-card:hover .home-specialty-card__image img {
  transform: scale(1.05);
}

.home-specialty-card__placeholder {
  background:
    radial-gradient(circle at 22% 25%, rgba(152,102,95,.18) 0 16%, transparent 17%),
    linear-gradient(135deg, #f7ebdf 0%, #fff 70%);
}

.home-specialty-card--aesthetic .home-specialty-card__placeholder {
  background:
    radial-gradient(circle at 78% 24%, rgba(152,102,95,.18) 0 15%, transparent 16%),
    linear-gradient(135deg, #ead3c1 0%, #fff 72%);
}

.home-specialty-card--all .home-specialty-card__placeholder {
  background:
    radial-gradient(circle at 75% 22%, rgba(255,255,255,.18) 0 16%, transparent 17%),
    linear-gradient(135deg, #98665f 0%, #734335 100%);
}

.home-specialty-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: var(--sp-3);
}

.home-specialty-card__icon {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-2);
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.78);
  color: var(--clr-primary);
  box-shadow: var(--shadow-sm);
}

.home-specialty-card--all .home-specialty-card__icon {
  background: rgba(255,255,255,.16);
  color: var(--clr-white);
}

.home-specialty-card__label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: var(--sp-1);
  color: var(--clr-primary);
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: .12em;
}

.home-specialty-card--all .home-specialty-card__label {
  color: rgba(255,255,255,.78);
}

.home-specialty-card__title {
  position: relative;
  z-index: 1;
  max-width: 320px;
  margin-bottom: var(--sp-1);
  color: var(--clr-dark);
  font-size: clamp(var(--fs-xl), 2vw, var(--fs-2xl));
}

.home-specialty-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}

.home-specialty-card__title a:hover,
.home-specialty-card__title a:focus-visible {
  color: var(--clr-primary);
}

.home-specialty-card--all .home-specialty-card__title {
  color: var(--clr-white);
}

.home-specialty-card--all .home-specialty-card__title a:hover,
.home-specialty-card--all .home-specialty-card__title a:focus-visible {
  color: rgba(255,255,255,.78);
}

.home-specialty-card__desc {
  position: relative;
  z-index: 1;
  max-width: 340px;
  color: var(--clr-muted);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-2);
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.home-specialty-card--all .home-specialty-card__desc {
  color: rgba(255,255,255,.82);
}

.home-specialty-card__button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 0;
  padding: .65rem 1.2rem;
  border: 1px solid rgba(152,102,95,.35);
  border-radius: var(--r-full);
  color: var(--clr-primary);
  font-weight: 800;
  text-decoration: none;
  transition: gap var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.home-specialty-card__button:hover {
  gap: 12px;
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  color: var(--clr-white);
}

.home-specialty-card--all .home-specialty-card__button {
  border-color: rgba(255,255,255,.55);
  color: var(--clr-white);
}

.home-specialty-card--all .home-specialty-card__button:hover {
  background: var(--clr-white);
  border-color: var(--clr-white);
  color: var(--clr-primary);
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}

/* Treatment Card */
.treatment-card {
  background: var(--clr-white);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--dur-slow) var(--ease), box-shadow var(--dur-slow) var(--ease);
}
.treatment-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.treatment-card__visual {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--clr-light);
}

.treatment-card__thumb {
  display: block;
  width: 100%;
  height: 100%;
}
.treatment-card__thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--dur-slow) var(--ease);
}
.treatment-card:hover .treatment-card__thumb-img { transform: scale(1.05); }

/* Gradient placeholder */
.treatment-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--clr-primary-l) 0%, #eadfdb 60%, #f8f0fb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--dur) var(--ease);
}
.treatment-card:hover .treatment-card__placeholder { opacity: .8; }

.treatment-card__placeholder-icon {
  width: 48px;
  height: 48px;
  color: rgba(152,102,95,.22);
  transition: color var(--dur) var(--ease);
}
.treatment-card:hover .treatment-card__placeholder-icon { color: rgba(152,102,95,.4); }

.treatment-card__cat-badge {
  position: absolute;
  top: var(--sp-2);
  left: var(--sp-2);
  font-size: var(--fs-xs);
  font-weight: 700;
  background: rgba(152,102,95,.85);
  color: var(--clr-white);
  padding: 3px 10px;
  border-radius: var(--r-full);
  text-decoration: none;
  backdrop-filter: blur(4px);
  transition: background var(--dur) var(--ease);
}
.treatment-card__cat-badge:hover { background: var(--clr-primary); }

.treatment-card__body {
  padding: var(--sp-4) var(--sp-4) var(--sp-5);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.treatment-card__title {
  font-size: var(--fs-lg);
  font-weight: 700;
  margin-bottom: var(--sp-2);
  line-height: var(--lh-snug);
}
.treatment-card__title a {
  color: var(--clr-dark);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}
.treatment-card__title a:hover { color: var(--clr-primary); }

.treatment-card__excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 48px;
  font-size: var(--fs-sm);
  color: var(--clr-muted);
  line-height: var(--lh-relaxed);
  flex: 1;
  margin-bottom: var(--sp-3);
}

.treatment-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--clr-primary);
  text-decoration: none;
  margin-top: auto;
  transition: gap var(--dur) var(--ease);
}
.treatment-card__link:hover { gap: var(--sp-2); }


/* ─── 12. Stats Strip ───────────────────────────────────────── */
.stats-strip {
  background: var(--clr-primary);
  padding-block: var(--sp-8);
  color: var(--clr-white);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}
.stat-item {
  text-align: center;
  padding: var(--sp-2);
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,.2);
}
.stat-number {
  display: block;
  font-family: var(--ff-heading);
  font-size: clamp(var(--fs-3xl), 4vw, var(--fs-5xl));
  font-weight: 800;
  color: var(--clr-white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.75);
  font-weight: 500;
}


/* ─── 13. About Section ─────────────────────────────────────── */
.about-section { background: var(--clr-white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-10);
  align-items: center;
}

.about-image-col { position: relative; }
.about-image-wrap { border-radius: var(--r-2xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-photo { width: 100%; height: auto; display: block; aspect-ratio: 3/4; object-fit: cover; }

@media (min-width: 1025px) {
  body.hk-front-page #hakkimda.about-section .about-image-col .about-image-wrap,
  body.home #hakkimda.about-section .about-image-col .about-image-wrap {
    height: 640px;
  }

  body.hk-front-page #hakkimda.about-section .about-image-col .about-image-wrap .about-photo,
  body.home #hakkimda.about-section .about-image-col .about-image-wrap .about-photo {
    height: 100%;
    aspect-ratio: auto;
  }
}

.about-photo-placeholder {
  background: linear-gradient(160deg, var(--clr-primary-l) 0%, #eadfdb 100%);
  border-radius: var(--r-2xl);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-photo-placeholder svg { width: 120px; height: auto; color: var(--clr-primary); opacity: .3; }

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-block: var(--sp-4) var(--sp-5);
}
.about-highlight-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  color: var(--clr-text);
  font-weight: 500;
}
.about-highlight-item .icon-check { color: var(--clr-primary); flex-shrink: 0; }


/* ─── 14. Why Us / Features Grid ────────────────────────────── */
.why-us-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(247,235,223,.85) 0%, transparent 34%),
    linear-gradient(135deg, #fff 0%, #f7ebdf 42%, #ead3c1 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}

.feature-card {
  height: 100%;
  min-height: 260px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  border-radius: var(--r-xl);
  padding: 28px;
  border: 1px solid rgba(152,102,95,.16);
  box-shadow: 0 18px 50px rgba(115,67,53,.08);
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.feature-card:hover {
  box-shadow: 0 24px 65px rgba(115,67,53,.12);
  transform: translateY(-5px);
}
.feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-lg);
  background: var(--clr-primary-l);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-3);
  color: var(--clr-primary);
}
.feature-card__icon svg { width: 26px; height: 26px; }
.feature-card__title {
  font-size: var(--fs-lg);
  font-weight: 700;
  margin-bottom: var(--sp-2);
  color: var(--clr-dark);
}
.feature-card__desc {
  font-size: var(--fs-sm);
  color: var(--clr-muted);
  line-height: var(--lh-relaxed);
}


/* ─── 15. Approach Section ──────────────────────────────────── */
.approach-section { background: var(--clr-white); }

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
}

.approach-card {
  background: var(--clr-bg);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  border: 1px solid var(--clr-border);
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.approach-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.approach-card--aesthetic { background: var(--clr-primary-l); border-color: rgba(152,102,95,.15); }

.approach-card__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--r-xl);
  background: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-4);
  box-shadow: var(--shadow-sm);
  color: var(--clr-primary);
}
.approach-card__icon svg { width: 32px; height: 32px; }

.approach-card__title {
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--clr-dark);
  margin-bottom: var(--sp-2);
}
.approach-card__desc {
  font-size: var(--fs-sm);
  color: var(--clr-muted);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-4);
}
.approach-card__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}
.approach-card__list li {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  color: var(--clr-text);
  font-weight: 500;
}
.approach-card__list li svg { color: var(--clr-primary); flex-shrink: 0; }
.approach-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--clr-primary);
  text-decoration: none;
  transition: gap var(--dur) var(--ease);
}
.approach-card__link:hover { gap: var(--sp-2); }


/* ─── 16. FAQ Section ───────────────────────────────────────── */
.faq-section { background: var(--clr-bg); }

.faq-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: var(--sp-10);
  align-items: start;
}

.faq-header-col {
  position: sticky;
  top: calc(var(--header-h) + var(--sp-4));
}
.faq-header-col .section-title { max-width: none; }
.faq-header-col .section-description { max-width: none; margin-bottom: var(--sp-4); }
.faq-header-col .btn { margin-top: var(--sp-2); }

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.faq-item {
  background: var(--clr-white);
  border-radius: var(--r-lg);
  border: 1px solid var(--clr-border);
  overflow: hidden;
  transition: box-shadow var(--dur) var(--ease);
}
.faq-item:has(.faq-item__panel--open) { box-shadow: var(--shadow-md); }

.faq-item__heading { margin: 0; }
.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  padding: var(--sp-4);
  background: transparent;
  border: none;
  text-align: left;
  font-family: var(--ff-body);
  cursor: pointer;
  transition: background var(--dur) var(--ease);
}
.faq-item__trigger:hover { background: var(--clr-bg); }
.faq-item__trigger[aria-expanded="true"] { background: var(--clr-bg); }

.faq-item__question {
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--clr-dark);
  line-height: var(--lh-snug);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: var(--r-full);
  background: var(--clr-primary-l);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-primary);
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.faq-item__trigger[aria-expanded="true"] .faq-item__icon {
  background: var(--clr-primary);
  color: var(--clr-white);
  transform: rotate(180deg);
}

.faq-item__panel {
  overflow: hidden;
}
.faq-item__panel[hidden] { display: none; }

.faq-item__answer {
  padding: 0 var(--sp-4) var(--sp-4);
  font-size: var(--fs-sm);
  color: var(--clr-muted);
  line-height: var(--lh-relaxed);
  border-top: 1px solid var(--clr-border);
  padding-top: var(--sp-3);
}
.faq-item__answer p { margin-bottom: var(--sp-2); }
.faq-item__answer p:last-child { margin-bottom: 0; }


/* ─── 17. CTA Section ───────────────────────────────────────── */
.cta-section {
  position: relative;
  background: linear-gradient(135deg, var(--clr-primary-d) 0%, var(--clr-primary) 100%);
  padding-block: var(--section-py);
  overflow: hidden;
}
.cta-section__bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.cta-section__shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
}
.cta-section__shape--1 { width: 400px; height: 400px; top: -180px; right: -100px; }
.cta-section__shape--2 { width: 250px; height: 250px; bottom: -100px; left: 5%; }

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  flex-wrap: wrap;
}
.cta-icon-wrap { flex-shrink: 0; }
.cta-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--r-2xl);
  background: rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
}
.cta-content { flex: 1; min-width: 240px; }
.cta-title {
  font-family: var(--ff-heading);
  font-size: clamp(var(--fs-2xl), 3vw, var(--fs-4xl));
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: var(--sp-2);
}
.cta-subtitle {
  font-size: var(--fs-base);
  color: rgba(255,255,255,.8);
  line-height: var(--lh-relaxed);
  margin: 0;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  flex-shrink: 0;
}

/* CTA sidebar widget */
.cta-widget {
  background: var(--clr-white);
  border-radius: var(--r-xl);
  border: 1px solid var(--clr-border);
  overflow: hidden;
}
.cta-widget__inner {
  padding: var(--sp-5);
  text-align: center;
  background: linear-gradient(160deg, var(--clr-primary-l) 0%, var(--clr-white) 60%);
}
.cta-widget__icon {
  display: block;
  width: 48px;
  height: 48px;
  margin: 0 auto var(--sp-3);
  color: var(--clr-primary);
}
.cta-widget__title {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--clr-dark);
  margin-bottom: var(--sp-1);
}
.cta-widget__text {
  font-size: var(--fs-sm);
  color: var(--clr-muted);
  margin-bottom: var(--sp-3);
}
.cta-widget__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-1);
  margin-top: var(--sp-2);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-primary);
  text-decoration: none;
}
.cta-widget__phone:hover { text-decoration: underline; }


/* ─── 17b. SVG İkon Sistemi (.hk-icon) ──────────────────────── */
.hk-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  vertical-align: middle;
  overflow: visible;
}

/* Footer iletişim satırındaki ikonlar */
.footer-contact-icon.hk-icon,
.footer-contact-item .hk-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--clr-secondary);
}

/* Footer sosyal ikon butonlarındaki ikonlar */
.social-link .hk-icon,
.social-links__item .hk-icon {
  width: 18px;
  height: 18px;
  display: block;
}

/* Boyut yardımcıları */
.hk-icon--sm  { width: 16px !important; height: 16px !important; }
.hk-icon--md  { width: 20px !important; height: 20px !important; }
.hk-icon--lg  { width: 24px !important; height: 24px !important; }
.hk-icon--xl  { width: 32px !important; height: 32px !important; }


/* ─── 18. Footer ────────────────────────────────────────────── */
.site-footer {
  background: var(--footer-bg, #2a2423);
  color: var(--footer-text, #f7f1ef);
  font-size: var(--fs-sm);
  margin-top: 0;
}

.footer-top { padding-block: var(--sp-12); }

@media (min-width: 1025px) {
  .footer-top { padding-block: 55px; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .footer-top { padding-block: 45px; }
}

/* 4 kolonu widget tabanlı footer grid */
.footer-grid,
.footer-grid--4 {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: var(--sp-8);
  align-items: start;
}

/* Brand */
.footer-logo-link { display: inline-block; margin-bottom: var(--sp-3); }
.footer-logo-img { height: 40px; width: auto; }
.footer-site-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  color: var(--clr-white);
  font-weight: 700;
  margin-bottom: var(--sp-3);
}
.footer-site-name { font-size: var(--fs-lg); font-weight: 700; color: var(--clr-white); }
.footer-description {
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  color: rgba(255,255,255,.6);
  margin-bottom: var(--sp-4);
  max-width: 300px;
}

/* Sosyal medya ikon butonları — hem klasik (.social-links__item) hem widget (.social-link) */
.social-links { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-top: var(--sp-3); }
.social-links__item,
.social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.social-links__item:hover,
.social-link:hover {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  color: var(--clr-white);
}
.social-links__item svg,
.social-link svg { width: 18px; height: 18px; display: block; }

/* Widget alanı — footer kolona özel widget başlığı */
.footer-widget-title,
.footer-nav-title,
.footer-contact-title,
.footer-heading {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--clr-white);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: var(--sp-4);
}

/* Widget içindeki genel text */
.footer-widget { color: rgba(255,255,255,.65); font-size: var(--fs-sm); }
.footer-widget p { color: rgba(255,255,255,.6); line-height: var(--lh-relaxed); margin-bottom: var(--sp-3); }
.footer-widget a { color: rgba(255,255,255,.6); text-decoration: none; transition: color var(--dur) var(--ease); }
.footer-widget a:hover { color: var(--clr-white); }

/* Widget nav_menu — Görünüm > Bileşenler Menü bileşeni çıktısı */
.footer-col .widget_nav_menu ul,
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-col .widget_nav_menu li,
.footer-menu li { margin: 0; }
.footer-col .widget_nav_menu a,
.footer-menu a,
.footer-nav-list a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-size: var(--fs-sm);
  line-height: 1.5;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  transition: color var(--dur) var(--ease);
}
.footer-col .widget_nav_menu a:hover,
.footer-menu a:hover,
.footer-nav-list a:hover { color: var(--clr-white); }

/* Footer sütun genel liste (fallback) */
.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  list-style: none;
  margin: 0;
  padding: 0;
}

/* İletişim ikonlu liste */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-contact-item,
.hk-contact-list .footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.65);
  line-height: var(--lh-relaxed);
}
.footer-contact-icon,
.hk-contact-list .footer-contact-icon,
.footer-contact-item svg { flex-shrink: 0; color: var(--clr-secondary); margin-top: 3px; }
.footer-contact-item a,
.footer-contact-item span { line-height: 1.6; }
.footer-contact-item a { color: rgba(255,255,255,.65); text-decoration: none; transition: color var(--dur) var(--ease); }
.footer-contact-item a:hover { color: var(--clr-white); }
.footer-contact-item__label { font-weight: 600; color: rgba(255,255,255,.5); font-size: var(--fs-xs); letter-spacing: .05em; text-transform: uppercase; display: block; margin-bottom: 2px; }

/* Footer bottom */
.footer-bottom {
  background: var(--footer-bottom-bg);
  color: rgba(255,255,255,.65);
  padding: 18px 0;
}

.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-bottom__left,
.footer-bottom__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-bottom__right {
  justify-content: flex-end;
  text-align: right;
}

.footer-bottom-widget,
.footer-bottom-widget p {
  margin: 0;
}

.footer-bottom a {
  color: inherit;
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}

.footer-bottom a:hover {
  color: #fff;
}

.footer-bottom .widgettitle,
.footer-bottom .widget-title,
.footer-bottom .footer-widget-title {
  display: none;
}

.footer-copyright {
  font-size: var(--fs-xs);
  color: inherit;
  margin: 0;
}

.legal-nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.legal-nav-list a {
  font-size: var(--fs-xs);
  color: inherit;
}


/* ─── 19. WhatsApp Floating Button ──────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: var(--sp-5);
  right: var(--sp-5);
  z-index: 200;
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  background: #25D366;
  color: var(--clr-white);
  text-decoration: none;
  padding: .75rem 1.25rem .75rem var(--sp-2);
  border-radius: var(--r-full);
  box-shadow: 0 4px 24px rgba(37,211,102,.35);
  font-size: var(--fs-sm);
  font-weight: 700;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.whatsapp-float:hover {
  box-shadow: 0 6px 32px rgba(37,211,102,.5);
  transform: translateY(-2px);
}
.whatsapp-float__icon { width: 32px; height: 32px; flex-shrink: 0; }
.whatsapp-float__label { white-space: nowrap; }


/* ─── 19b. Floating CTA ─────────────────────────────────────── */

/*
 * Grup: sağ altta dikey dizilmiş butonlar.
 * Mobil  → yalnızca simge (label gizli), daire şekil.
 * Tablet+ → simge + kısa etiket, hap şekli.
 */
.floating-cta {
  position: fixed;
  bottom: var(--sp-5, 2rem);
  right: var(--sp-5, 1.5rem);
  z-index: 145;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--sp-2, .5rem);
}

.floating-cta__btn {
  display: flex;
  align-items: center;
  gap: var(--sp-2, .5rem);
  padding: .65rem;              /* mobil: simge kutusu */
  border-radius: var(--r-full, 9999px);
  color: var(--clr-white, #fff);
  text-decoration: none;
  font-size: var(--fs-sm, .875rem);
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(0,0,0,.18);
  transition: transform var(--dur, .2s) var(--ease, ease),
              box-shadow var(--dur, .2s) var(--ease, ease);
}
.floating-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(0,0,0,.26);
}
.floating-cta__btn:focus-visible {
  outline: 3px solid var(--clr-secondary, #e8d8d4);
  outline-offset: 3px;
}

/* Renk varyantları */
.floating-cta__btn--phone       { background: var(--clr-primary, #98665f); }
.floating-cta__btn--whatsapp    { background: #25D366; }
.floating-cta__btn--appointment { background: var(--clr-button, #98665f); }

/* Simge */
.floating-cta__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Etiket — mobilde gizle, tablet'te göster */
.floating-cta__label { display: none; }

@media (min-width: 768px) {
  .floating-cta__btn { padding: .6rem 1.1rem .6rem .85rem; }
  .floating-cta__label { display: inline; }
}


/* ─── 19c. Scroll CTA ───────────────────────────────────────── */

/*
 * Sayfanın alt kenarına sabitlenir.
 * JS, .is-visible ekleyince yukarı kayarak görünür.
 */
.scroll-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--clr-primary, #98665f);
  color: var(--clr-white, #fff);
  padding: var(--sp-3, .75rem) 0;
  transform: translateY(100%);
  transition: transform .3s var(--ease, ease);
  /* Görünmezken etkileşimi engelle */
  pointer-events: none;
}
.scroll-cta.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4, 1rem);
  flex-wrap: wrap;
}

.scroll-cta__title {
  margin: 0;
  font-size: var(--fs-base, 1rem);
  font-weight: 600;
}

.scroll-cta__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3, .75rem);
  flex-shrink: 0;
}

.scroll-cta__btn {
  background: var(--clr-white, #fff);
  color: var(--clr-primary, #98665f);
  border-color: var(--clr-white, #fff);
}
.scroll-cta__btn:hover {
  background: rgba(255,255,255,.88);
}

.scroll-cta__close {
  background: transparent;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,.8);
  padding: .25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm, .25rem);
  transition: color var(--dur, .2s);
}
.scroll-cta__close:hover { color: var(--clr-white, #fff); }
.scroll-cta__close:focus-visible {
  outline: 2px solid rgba(255,255,255,.7);
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .scroll-cta__inner { flex-direction: column; align-items: stretch; text-align: center; }
  .scroll-cta__actions { justify-content: center; }
}


/* ─── 19d. Popup CTA ────────────────────────────────────────── */

/*
 * Tam ekran overlay + ortada kart.
 * .is-visible eklenince opacity/visibility aktif olur.
 */
.popup-cta {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-4, 1rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease, ease), visibility .3s var(--ease, ease);
}
.popup-cta.is-visible {
  opacity: 1;
  visibility: visible;
}

/* Koyu overlay */
.popup-cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,10,20,.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* Kart */
.popup-cta__box {
  position: relative;
  background: var(--clr-white, #fff);
  border-radius: var(--r-xl, 1.5rem);
  padding: var(--sp-8, 2.5rem) var(--sp-7, 2rem);
  max-width: 460px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,.18);
  /* Overlay'in üstünde olsun */
  z-index: 1;
  transform: scale(.94) translateY(12px);
  transition: transform .35s var(--ease, ease);
}
.popup-cta.is-visible .popup-cta__box {
  transform: scale(1) translateY(0);
}

/* Kapat butonu */
.popup-cta__close {
  position: absolute;
  top: var(--sp-3, .75rem);
  right: var(--sp-3, .75rem);
  background: var(--clr-surface, #F5F5F5);
  border: none;
  border-radius: var(--r-full, 9999px);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--clr-text-muted, #666);
  transition: background var(--dur, .2s), color var(--dur, .2s);
}
.popup-cta__close:hover {
  background: var(--clr-primary, #98665f);
  color: var(--clr-white, #fff);
}
.popup-cta__close:focus-visible {
  outline: 3px solid var(--clr-secondary, #e8d8d4);
  outline-offset: 2px;
}

/* Rozet */
.popup-cta__badge {
  display: inline-block;
  background: var(--clr-secondary, #e8d8d4);
  color: var(--clr-primary, #98665f);
  font-size: var(--fs-xs, .75rem);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .25rem .75rem;
  border-radius: var(--r-full, 9999px);
  margin-bottom: var(--sp-3, .75rem);
}

/* Başlık */
.popup-cta__title {
  font-size: var(--fs-xl, 1.25rem);
  font-weight: 700;
  color: var(--clr-heading, #2a2423);
  line-height: 1.3;
  margin: 0 0 var(--sp-3, .75rem);
}

/* Açıklama */
.popup-cta__desc {
  font-size: var(--fs-sm, .875rem);
  color: var(--clr-text-muted, #666);
  line-height: 1.6;
  margin: 0 0 var(--sp-5, 1.5rem);
}

/* Buton */
.popup-cta__btn {
  width: 100%;
  justify-content: center;
}

/* Kaydırma kilidi (body) */
body.popup-open { overflow: hidden; }

@media (max-width: 480px) {
  .popup-cta__box { padding: var(--sp-6, 1.75rem) var(--sp-5, 1.5rem); }
  .popup-cta__title { font-size: var(--fs-lg, 1.125rem); }
}


/* ─── 20. Blog Cards ────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.article-card,
.post-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--dur-slow) var(--ease), box-shadow var(--dur-slow) var(--ease), border-color var(--dur-slow) var(--ease);
}
.article-card:hover,
.post-card:hover {
  transform: translateY(-8px);
  border-color: var(--clr-primary);
  box-shadow: var(--shadow-xl);
}

.article-card__media,
.post-card__thumb {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--clr-primary-l);
  border-radius: 24px 24px 0 0;
}
.article-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31,26,24,0), rgba(31,26,24,.45));
  opacity: 0;
  transition: opacity var(--dur-slow) var(--ease);
  pointer-events: none;
}
.article-card:hover .article-card__media::after {
  opacity: .15;
}
.article-card__image,
.post-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}
.article-card:hover .article-card__image,
.post-card:hover .post-card__thumb img { transform: scale(1.05); }

.article-card__placeholder,
.post-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--clr-primary-l), var(--clr-soft));
  color: rgba(152,102,95,.35);
}
.article-card__placeholder-icon,
.post-card__placeholder svg { width: 44px; height: 44px; }

.article-card__body,
.post-card__body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-card__cat {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 2;
  display: inline-flex;
  align-self: flex-start;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(10px);
  color: var(--clr-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.3;
  text-transform: uppercase;
  pointer-events: none;
}

.article-card__meta,
.post-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--clr-muted);
  margin: 0 0 18px;
}
.article-card__meta time,
.article-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.article-card__meta-icon {
  width: 14px;
  height: 14px;
}
.post-card__meta a { color: var(--clr-primary); text-decoration: none; }
.post-card__meta a:hover { text-decoration: underline; }

.article-card__title,
.post-card__title {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-card__title a,
.post-card__title a { color: var(--clr-text); text-decoration: none; }
.article-card__title a:hover,
.post-card__title a:hover { color: var(--clr-primary); }

.article-card__excerpt,
.post-card__excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 16px;
  color: var(--clr-muted);
  line-height: 1.75;
  flex: 1;
  margin: 0 0 20px;
}
.article-card__link,
.post-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--clr-primary);
  border-radius: 999px;
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--clr-primary);
  text-decoration: none;
  align-self: flex-start;
  margin-top: auto;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.article-card__link-icon {
  transition: transform var(--dur) var(--ease);
}
.article-card__link:hover,
.post-card__link:hover {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  color: var(--clr-white);
}
.article-card__link:hover .article-card__link-icon {
  transform: translateX(4px);
}

.home-blog-carousel {
  background: var(--clr-bg);
}

.home-blog-carousel__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
}

.home-blog-carousel__header .section-header {
  margin-bottom: 0;
}

.home-blog-carousel__arrows {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.home-blog-carousel__arrow {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(152,102,95,.22);
  border-radius: var(--r-full);
  background: var(--clr-white);
  color: var(--clr-primary);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.home-blog-carousel__arrow:hover,
.home-blog-carousel__arrow:focus-visible {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  color: var(--clr-white);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.home-blog-carousel__arrow:focus-visible {
  outline: 3px solid rgba(152,102,95,.24);
  outline-offset: 3px;
}

.home-blog-carousel__arrow[disabled] {
  opacity: .45;
  cursor: default;
  transform: none;
}

.home-blog-carousel__arrow[hidden],
.home-blog-carousel__arrows[hidden] {
  display: none;
}

.home-blog-carousel__viewport {
  --home-blog-visible: 3;
  --home-blog-gap: 32px;
  overflow: hidden;
}

.home-blog-carousel__track {
  display: flex;
  gap: var(--home-blog-gap);
  transition: transform var(--dur-slow) var(--ease);
  will-change: transform;
}

.home-blog-carousel__item {
  flex: 0 0 calc((100% - (var(--home-blog-gap) * (var(--home-blog-visible) - 1))) / var(--home-blog-visible));
  min-width: 0;
}

.home-blog-carousel .article-card {
  height: 100%;
}

.home-blog-carousel .article-card__title {
  font-size: 22px;
}

body:not(.hk-front-page) .site-main > :where(.bl-posts, .blog-archive-section, .blog-index-section):first-child {
  padding-top: var(--hk-content-edge-space);
}

body:not(.hk-front-page) :where(.bl-posts, .blog-archive-section, .blog-index-section):last-child {
  padding-bottom: var(--hk-content-edge-space);
  margin-bottom: 0;
}


/* ─── 21. Page Layout (page.php) ────────────────────────────── */
.page-wrap {
  padding-block: var(--sp-12) var(--sp-16);
  background: var(--clr-bg);
}
.page-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--sp-8);
  align-items: start;
}
.page-content {
  background: var(--clr-white);
  border-radius: var(--r-xl);
  padding: var(--sp-8) var(--sp-10);
  box-shadow: var(--shadow-sm);
}
body.page-template-default .page-content {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.page-featured-image {
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: var(--sp-6);
}
.page-featured-image__img { width: 100%; height: auto; display: block; }
.page-featured-image__caption {
  font-size: var(--fs-xs);
  color: var(--clr-muted);
  text-align: center;
  padding: var(--sp-2) var(--sp-3);
  background: var(--clr-light);
}
.page-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  position: sticky;
  top: calc(var(--header-h) + var(--sp-4));
}

/* Sidebar widgets */
.sidebar-widget {
  background: var(--clr-white);
  border-radius: var(--r-xl);
  padding: var(--sp-4);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--clr-border);
}
.sidebar-widget__title {
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--clr-dark);
  padding-bottom: var(--sp-2);
  border-bottom: 2px solid var(--clr-light);
  margin-bottom: var(--sp-3);
}
.sidebar-contact-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.sidebar-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  color: var(--clr-text);
  line-height: var(--lh-relaxed);
}
.sidebar-contact-list li svg { flex-shrink: 0; margin-top: 2px; color: var(--clr-primary); }
.sidebar-contact-list a { color: var(--clr-primary); text-decoration: none; }
.sidebar-contact-list a:hover { text-decoration: underline; }

/* Sidebar categories */
.sidebar-cats__list { display: flex; flex-direction: column; gap: 2px; }
.sidebar-cats__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-1) var(--sp-2);
  border-radius: var(--r-md);
  text-decoration: none;
  font-size: var(--fs-sm);
  color: var(--clr-text);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.sidebar-cats__link:hover { background: var(--clr-primary-l); color: var(--clr-primary); }
.sidebar-cats__count {
  font-size: var(--fs-xs);
  background: var(--clr-light);
  color: var(--clr-muted);
  border-radius: var(--r-full);
  padding: 1px 7px;
}

/* Recent posts */
.recent-posts-list { display: flex; flex-direction: column; gap: var(--sp-3); }
.recent-post-item {
  display: flex;
  gap: var(--sp-2);
  align-items: flex-start;
}
.recent-post-thumb { flex-shrink: 0; width: 60px; height: 60px; border-radius: var(--r-md); overflow: hidden; }
.recent-post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.recent-post-title {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-dark);
  text-decoration: none;
  line-height: var(--lh-snug);
  margin-bottom: 3px;
}
.recent-post-title:hover { color: var(--clr-primary); }
.recent-post-date { font-size: var(--fs-xs); color: var(--clr-muted); }


/* ─── 22. Entry Content ─────────────────────────────────────── */
.entry-content {
  font-size: var(--fs-lg);
  line-height: var(--lh-relaxed);
  color: var(--clr-text);
}
.entry-content h2, .entry-content h3, .entry-content h4 {
  font-family: var(--ff-heading);
  color: var(--clr-dark);
  margin-top: var(--sp-6);
  margin-bottom: var(--sp-3);
}
.entry-content h2 { font-size: var(--fs-2xl); }
.entry-content h3 { font-size: var(--fs-xl); }
.entry-content h4 { font-size: var(--fs-lg); }
.entry-content p  { margin-bottom: var(--sp-3); }
.entry-content ul, .entry-content ol {
  padding-left: var(--sp-4);
  margin-bottom: var(--sp-3);
}
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content li { margin-bottom: var(--sp-1); }
.entry-content a { color: var(--clr-primary); text-decoration: underline; }
.entry-content a:hover { color: var(--clr-primary-d); }
.entry-content img { border-radius: var(--r-lg); margin-block: var(--sp-3); }
.entry-content blockquote {
  border-left: 4px solid var(--clr-secondary);
  background: var(--clr-primary-l);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: var(--sp-3) var(--sp-4);
  margin-block: var(--sp-5);
  font-size: var(--fs-lg);
  font-style: italic;
  color: var(--clr-primary-d);
}
.entry-content table { width: 100%; border-collapse: collapse; margin-block: var(--sp-4); }
.entry-content th, .entry-content td {
  padding: var(--sp-2) var(--sp-3);
  border: 1px solid var(--clr-border);
  text-align: left;
  font-size: var(--fs-sm);
}
.entry-content th { background: var(--clr-primary-l); font-weight: 700; color: var(--clr-primary-d); }

/* Post tags */
.post-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-1);
  margin-top: var(--sp-6);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--clr-border);
}
.post-tags__label { font-size: var(--fs-sm); font-weight: 700; color: var(--clr-muted); margin-right: var(--sp-1); }
.tag-badge {
  font-size: var(--fs-xs);
  background: var(--clr-primary-l);
  color: var(--clr-primary);
  padding: 3px 10px;
  border-radius: var(--r-full);
  text-decoration: none;
  font-weight: 500;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.tag-badge:hover { background: var(--clr-primary); color: var(--clr-white); }

/* Page links */
.page-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-1);
  font-size: var(--fs-sm);
  font-weight: 600;
  margin-top: var(--sp-4);
}
.page-links span, .page-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  border-radius: var(--r-md);
  padding-inline: var(--sp-2);
  background: var(--clr-light);
  color: var(--clr-text);
  text-decoration: none;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.page-links a:hover { background: var(--clr-primary); color: var(--clr-white); }


/* ─── 23. Single Blog ───────────────────────────────────────── */
.single-wrap {
  padding-block: var(--sp-12) var(--sp-16);
  background: var(--clr-bg);
}

.single-hero {
  position: relative;
  background: linear-gradient(135deg, var(--clr-primary-d) 0%, var(--clr-primary) 100%);
  padding: var(--sp-16) 0 var(--sp-12);
  color: var(--clr-white);
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
}
.single-hero__bg { position: absolute; inset: 0; }
.single-hero__bg-img { width: 100%; height: 100%; object-fit: cover; }
.single-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(111,74,104,.45) 0%, rgba(111,74,104,.88) 100%);
}
.single-hero__inner { position: relative; z-index: 1; width: 100%; }

.single-hero__cats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-1);
  margin-bottom: var(--sp-3);
}
.single-hero__cat-badge {
  font-size: var(--fs-xs);
  font-weight: 700;
  background: rgba(216,191,216,.7);
  color: var(--clr-white);
  padding: 3px 10px;
  border-radius: var(--r-full);
  text-decoration: none;
  backdrop-filter: blur(4px);
  transition: background var(--dur) var(--ease);
}
.single-hero__cat-badge:hover { background: var(--clr-secondary); }

.single-hero__title {
  font-size: clamp(var(--fs-2xl), 4.5vw, var(--fs-4xl));
  font-weight: 800;
  color: var(--clr-white);
  line-height: var(--lh-tight);
  max-width: 800px;
  margin-bottom: var(--sp-4);
}
.single-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3) var(--sp-5);
}
.single-hero__meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.8);
}
.single-hero__meta-item--updated {
  color: rgba(216,191,216,.9);
  font-style: italic;
}

/* Single layout */
.single-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--sp-8);
  align-items: start;
}
.single-content {
  background: var(--clr-white);
  border-radius: var(--r-xl);
  padding: var(--sp-8) var(--sp-10);
  box-shadow: var(--shadow-sm);
}
.single-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  position: sticky;
  top: calc(var(--header-h) + var(--sp-4));
}

.single-featured-image {
  margin: 0 0 24px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.single-featured-image img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  display: block;
}
.single-featured-image figcaption {
  font-size: var(--fs-xs);
  color: var(--clr-muted);
  text-align: center;
  padding: var(--sp-2);
  background: var(--clr-light);
}

.single-meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  padding: 14px 0;
  margin-bottom: 28px;
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  color: var(--clr-muted);
  font-size: 14px;
}

.single-meta-bar__item strong {
  color: var(--clr-text);
  font-weight: 600;
}

.single-post .single-content,
.single-post .single-entry,
.single-post .entry-content {
  width: 100%;
  max-width: none;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.single-post .entry-content > * {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.single-post .entry-content,
.single-post .single-content,
.single-post .single-content p,
.single-post .single-content li {
  font-size: 1rem;
  line-height: 1.9;
}

/* Post navigation */
.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
  margin-top: var(--sp-8);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--clr-border);
}
.post-nav__item {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  padding: var(--sp-4) var(--sp-4);
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  text-decoration: none;
  transition: box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.post-nav__item:hover { box-shadow: var(--shadow-md); border-color: rgba(152,102,95,.25); }
.post-nav__item--next { text-align: right; }
.post-nav__direction {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--clr-primary);
}
.post-nav__item--next .post-nav__direction { justify-content: flex-end; }
.post-nav__title {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-dark);
  line-height: var(--lh-snug);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Author box */
.author-box {
  display: flex;
  gap: var(--sp-4);
  margin-top: var(--sp-8);
  padding: var(--sp-5) var(--sp-6);
  background: var(--clr-primary-l);
  border-radius: var(--r-xl);
  border: 1px solid rgba(152,102,95,.15);
}
.author-box__avatar { flex-shrink: 0; }
.author-box__avatar-img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--clr-white);
  box-shadow: var(--shadow-sm);
}
.author-box__name {
  font-size: calc(var(--fs-lg) + 3px);
  font-weight: 700;
  margin: 0;
  color: var(--clr-dark);
}
.author-box__specialty {
  font-size: 14px;
  color: var(--clr-primary);
  font-weight: 600;
  margin-top: 4px;
  margin-bottom: 10px;
}
.author-box__bio { font-size: var(--fs-sm); color: var(--clr-muted); line-height: var(--lh-relaxed); margin: 0; }
.author-box__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: var(--sp-3);
}
.author-box__social-link {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-full);
  background: #fff;
  border: 1px solid var(--clr-border);
  color: var(--clr-primary);
  text-decoration: none;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.author-box__social-link:hover {
  transform: translateY(-2px);
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  color: #fff;
}

/* Comments */
.comments-section { margin-top: var(--sp-8); padding-top: var(--sp-8); border-top: 1px solid var(--clr-border); }


/* ─── 23a. TOC Widget ───────────────────────────────────────── */
.toc-widget {
  background: var(--clr-white);
  border-radius: var(--r-xl);
  padding: var(--sp-4) var(--sp-5);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--clr-border);
  border-left: 3px solid var(--clr-primary);
}
.toc-widget__title {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--clr-dark);
  margin-bottom: var(--sp-3);
  padding-bottom: var(--sp-2);
  border-bottom: 1px solid var(--clr-light);
}
.toc-widget__title svg { color: var(--clr-primary); flex-shrink: 0; }

.toc-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: toc-counter;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.toc-nav__item { counter-increment: toc-counter; }
.toc-nav__link {
  display: flex;
  align-items: baseline;
  gap: var(--sp-2);
  padding: 5px var(--sp-2);
  border-radius: var(--r-md);
  font-size: var(--fs-sm);
  color: var(--clr-muted);
  text-decoration: none;
  line-height: var(--lh-snug);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
  position: relative;
}
.toc-nav__link::before {
  content: counter(toc-counter);
  flex-shrink: 0;
  font-size: .68rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: var(--r-full);
  background: var(--clr-light);
  color: var(--clr-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.toc-nav__link:hover {
  background: var(--clr-primary-l);
  color: var(--clr-primary);
}
.toc-nav__link:hover::before {
  background: rgba(152,102,95,.15);
  color: var(--clr-primary);
}
.toc-nav__link.is-active {
  background: var(--clr-primary-l);
  color: var(--clr-primary);
  font-weight: 600;
}
.toc-nav__link.is-active::before {
  background: var(--clr-primary);
  color: var(--clr-white);
}


/* ─── 23b. Sosyal Paylaşım ──────────────────────────────────── */
.social-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-6);
  padding: var(--sp-4) var(--sp-5);
  background: var(--clr-light);
  border-radius: var(--r-xl);
}
.social-share__label {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--clr-muted);
  margin-right: var(--sp-1);
}
.social-share__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--r-full);
  border: none;
  background: var(--clr-white);
  color: var(--share-clr, #64748b);
  box-shadow: 0 1px 4px rgba(0,0,0,.12);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.social-share__btn svg { width: 16px; height: 16px; }
.social-share__btn:hover {
  background: var(--share-clr, #64748b);
  color: var(--clr-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,.18);
}
.social-share__copy.is-copied {
  background: #10b981;
  color: var(--clr-white);
}


/* ─── 23c. İlgili Yazılar ───────────────────────────────────── */
.related-posts {
  margin-top: var(--sp-10);
  padding-top: var(--sp-8);
  border-top: 1px solid var(--clr-border);
}
.related-posts__title {
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--clr-dark);
  margin-bottom: var(--sp-5);
}
.related-posts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}

.related-post-card {
  background: var(--clr-bg);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  transition: box-shadow var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
}
.related-post-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.related-post-card__visual {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--clr-primary-l), #f0e8f8);
}
.related-post-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}
.related-post-card:hover .related-post-card__img { transform: scale(1.04); }

.related-post-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--clr-primary-l), #f0e8f8);
}
.related-post-card__min {
  position: absolute;
  bottom: var(--sp-2);
  right: var(--sp-2);
  font-size: .65rem;
  font-weight: 600;
  background: rgba(0,0,0,.55);
  color: var(--clr-white);
  padding: 2px 7px;
  border-radius: var(--r-full);
  line-height: 1.5;
  backdrop-filter: blur(4px);
}
.related-post-card__body {
  padding: var(--sp-3) var(--sp-4) var(--sp-4);
}
.related-post-card__cat {
  display: inline-block;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--clr-primary);
  margin-bottom: var(--sp-1);
}
.related-post-card__title {
  font-size: var(--fs-sm);
  font-weight: 700;
  line-height: var(--lh-snug);
  margin-bottom: var(--sp-1);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.related-post-card__title a { color: var(--clr-dark); text-decoration: none; }
.related-post-card__title a:hover { color: var(--clr-primary); }
.related-post-card__date { font-size: var(--fs-xs); color: var(--clr-muted); }


/* ─── 23d. Blog Sayfalama ───────────────────────────────────── */
.pagination-wrap,
.blog-pagination {
  margin-top: var(--sp-10);
  display: flex;
  justify-content: center;
}
.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--sp-1);
  margin: 0;
  padding: 0;
  list-style: none;
}
/* nav.navigation içindeki .nav-links */
.blog-pagination .nav-links,
.archive-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--sp-1);
}
.pagination__link,
.blog-pagination .page-numbers,
.archive-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-width: 40px;
  height: 40px;
  padding-inline: var(--sp-2);
  border-radius: 999px;
  background: var(--clr-white);
  border: 1.5px solid var(--clr-border);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-text);
  text-decoration: none;
  justify-content: center;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.pagination__link:hover,
.blog-pagination .page-numbers:hover,
.archive-pagination .page-numbers:hover {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  color: var(--clr-white);
}
.pagination__link--current,
.blog-pagination .page-numbers.current,
.archive-pagination .page-numbers.current {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  color: var(--clr-white);
  box-shadow: 0 3px 10px rgba(152,102,95,.35);
}
.blog-pagination .page-numbers.dots,
.archive-pagination .page-numbers.dots {
  background: transparent;
  border-color: transparent;
  pointer-events: none;
}
/* Önceki / Sonraki — genişçe buton */
.blog-pagination .page-numbers.prev,
.blog-pagination .page-numbers.next,
.archive-pagination .page-numbers.prev,
.archive-pagination .page-numbers.next {
  min-width: auto;
  padding-inline: var(--sp-3);
  gap: var(--sp-1);
}


/* ─── 23e. Responsive — Blog Sistemi ───────────────────────── */
@media (max-width: 1024px) {
  .related-posts__grid { grid-template-columns: repeat(2, 1fr); }
}


/* ─── 24. Archive Pages ─────────────────────────────────────── */
.archive-hero {
  position: relative;
  background: linear-gradient(135deg, var(--clr-primary-d) 0%, var(--clr-primary) 100%);
  padding: var(--sp-16) 0 var(--sp-12);
  color: var(--clr-white);
  overflow: hidden;
}
.archive-hero__bg { position: absolute; inset: 0; overflow: hidden; }
.archive-hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .2; }
.archive-hero__inner { position: relative; z-index: 1; }
.archive-hero__content { max-width: 640px; }
.archive-hero__title {
  font-size: clamp(var(--fs-2xl), 5vw, var(--fs-5xl));
  font-weight: 800;
  color: var(--clr-white);
  margin-bottom: var(--sp-3);
}
.archive-hero__desc { font-size: var(--fs-lg); color: rgba(255,255,255,.8); max-width: 520px; }

/* Filter */
.archive-filter-wrap {
  background: var(--clr-white);
  border-bottom: 1px solid var(--clr-border);
  position: sticky;
  top: 0;
  z-index: 30;
  box-shadow: var(--shadow-sm);
}
.archive-filter {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--sp-2);
  padding-block: var(--sp-2);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.archive-filter::-webkit-scrollbar { display: none; }
.archive-filter__btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: .45rem var(--sp-3);
  border-radius: var(--r-full);
  font-size: var(--fs-sm);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  background: var(--clr-light);
  color: var(--clr-text);
  border: 1.5px solid transparent;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.archive-filter__btn:hover { background: var(--clr-primary-l); color: var(--clr-primary); border-color: rgba(152,102,95,.2); }
.archive-filter__btn.is-active { background: var(--clr-primary); color: var(--clr-white); border-color: var(--clr-primary); }
.archive-filter__count {
  font-size: var(--fs-xs);
  background: rgba(255,255,255,.25);
  border-radius: var(--r-full);
  padding: 0 7px;
  line-height: 1.6;
}

.archive-section { padding-top: var(--sp-12); }
.bl-posts,
.blog-archive-section,
.blog-index-section { padding-block: var(--hk-content-edge-space); }

/* No results */
.no-results {
  text-align: center;
  padding: var(--sp-16) var(--sp-4);
  color: var(--clr-muted);
}
.no-results svg { display: block; margin: 0 auto var(--sp-4); color: var(--clr-border); }
.no-results__title { font-size: var(--fs-2xl); color: var(--clr-dark); margin-bottom: var(--sp-2); }
.no-results__desc { font-size: var(--fs-lg); margin-bottom: var(--sp-6); }

/* Search results */
.search-page {
  padding-block: var(--hk-content-edge-space);
}
.search-page .search-page__head {
  max-width: 780px;
  margin: 0 auto var(--sp-8);
  padding: var(--sp-5);
  text-align: center;
  background: linear-gradient(135deg, rgba(152,102,95,.08), rgba(232,216,212,.35));
  border: 1px solid rgba(152,102,95,.14);
  border-radius: var(--r-2xl);
}
.search-page .search-page__badge {
  display: inline-flex;
  margin-bottom: var(--sp-2);
  padding: .3rem .85rem;
  border-radius: var(--r-full);
  background: var(--clr-white);
  color: var(--clr-primary);
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}
.search-page .search-page__title {
  font-family: var(--ff-heading);
  font-size: clamp(var(--fs-2xl), 3vw, var(--fs-4xl));
  color: var(--clr-dark);
  margin-bottom: var(--sp-2);
}
.search-page .search-page__summary {
  color: var(--clr-muted);
  font-size: var(--fs-lg);
}
.search-page .search-results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--sp-4);
}
.search-page .search-result-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.search-page .search-result-card:hover {
  transform: translateY(-3px);
  border-color: rgba(152,102,95,.28);
  box-shadow: var(--shadow-md);
}
.search-page .search-result-card__media {
  display: block;
  height: 190px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--clr-primary-l), var(--clr-soft));
  text-decoration: none;
}
.search-page .search-result-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}
.search-page .search-result-card:hover .search-result-card__image {
  transform: scale(1.035);
}
.search-page .search-result-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: rgba(152,102,95,.42);
}
.search-page .search-result-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: var(--sp-4);
}
.search-page .search-result-card__type {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: var(--sp-2);
  padding: .25rem .7rem;
  border-radius: var(--r-full);
  background: var(--clr-primary-l);
  color: var(--clr-primary);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.search-page .search-result-card__title {
  font-size: var(--fs-xl);
  line-height: var(--lh-snug);
  margin-bottom: var(--sp-2);
}
.search-page .search-result-card__title a {
  color: var(--clr-dark);
  text-decoration: none;
}
.search-page .search-result-card__title a:hover {
  color: var(--clr-primary);
}
.search-page .search-result-card__excerpt {
  color: var(--clr-muted);
  margin-bottom: var(--sp-3);
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.search-page .search-result-card__link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: auto;
  color: var(--clr-primary);
  font-weight: 700;
  text-decoration: none;
}
.search-page .search-result-card__link:hover {
  color: var(--clr-primary-d);
}
.search-page .search-empty {
  max-width: 680px;
  margin: 0 auto;
  padding: var(--sp-12) var(--sp-4);
  text-align: center;
  color: var(--clr-muted);
}
.search-page .search-empty__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  margin-bottom: var(--sp-4);
  border-radius: 50%;
  background: var(--clr-primary-l);
  color: var(--clr-primary);
}
.search-page .search-empty__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-3xl);
  color: var(--clr-dark);
  margin-bottom: var(--sp-2);
}
.search-page .search-empty__desc {
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-5);
}
.search-page .search-empty__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-2);
}
@media (max-width: 1024px) {
  .search-page .search-results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .search-page .search-result-card__media {
    height: 170px;
  }
}
@media (max-width: 640px) {
  .search-page .search-results-grid {
    grid-template-columns: 1fr;
  }
  .search-page .search-page__head {
    text-align: left;
  }
  .search-page .search-result-card__media {
    height: 160px;
  }
  .search-page .search-empty__actions {
    align-items: stretch;
    flex-direction: column;
  }
}

/* Pagination */
.archive-pagination,
.navigation.pagination { margin-top: var(--sp-12); }
.nav-links { display: flex; flex-wrap: wrap; gap: var(--sp-1); justify-content: center; align-items: center; }
.nav-links a, .nav-links span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-width: 40px;
  height: 40px;
  padding-inline: var(--sp-3);
  border-radius: var(--r-md);
  font-size: var(--fs-sm);
  font-weight: 600;
  text-decoration: none;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.nav-links a { background: var(--clr-white); color: var(--clr-text); border: 1px solid var(--clr-border); }
.nav-links a:hover { background: var(--clr-primary); color: var(--clr-white); border-color: var(--clr-primary); }
.nav-links .current { background: var(--clr-primary); color: var(--clr-white); border: 1px solid var(--clr-primary); }
.nav-links .dots { background: transparent; border: none; color: var(--clr-muted); }


/* ─── 25. Single Tedavi (st-* bileşenleri) ──────────────────── */

/* ── HERO ──────────────────────────────────────────────────── */
.st-hero {
  position: relative;
  background: linear-gradient(135deg, var(--clr-primary-d) 0%, var(--clr-primary) 100%);
  padding: var(--sp-16) 0 var(--sp-14);
  color: var(--clr-white);
  overflow: hidden;
}
.st-hero--has-image { min-height: 420px; display: flex; align-items: flex-end; }
.st-hero__bg { position: absolute; inset: 0; }
.st-hero__bg-img { width: 100%; height: 100%; object-fit: cover; }
.st-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(80,40,75,.45) 0%, rgba(80,40,75,.88) 100%);
}
.st-hero__inner { position: relative; z-index: 1; width: 100%; }
.st-hero__cats { display: flex; flex-wrap: wrap; gap: var(--sp-1); margin-bottom: var(--sp-3); }
.st-cat-badge {
  display: inline-block;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(4px);
  color: var(--clr-white);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .2rem .75rem;
  border-radius: var(--r-full);
  text-decoration: none;
  transition: background var(--dur);
}
.st-cat-badge:hover { background: rgba(255,255,255,.3); }
.st-hero__title {
  font-size: clamp(var(--fs-2xl), 5vw, var(--fs-5xl));
  font-weight: 800;
  color: var(--clr-white);
  line-height: var(--lh-tight);
  max-width: 800px;
  margin-bottom: var(--sp-4);
}
.st-hero__excerpt {
  font-size: var(--fs-lg);
  color: rgba(255,255,255,.8);
  max-width: 640px;
  line-height: var(--lh-relaxed);
  margin: 0;
}

.st-featured-image {
  margin: 0 0 24px;
  width: 100%;
  max-width: none;
  align-self: stretch;
  box-sizing: border-box;
}

.st-featured-image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
}


/* ── BİLGİ KARTLARI (meta band) ────────────────────────────── */
.st-meta-band {
  background: transparent;
  border-bottom: 0;
  padding: 0;
  margin-top: var(--sp-8);
  position: relative;
  z-index: 2;
  box-shadow: none;
}
.st-meta-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--sp-3);
  list-style: none;
  padding: 0;
  margin: 0;
}
.st-meta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-1);
  padding: var(--sp-4) var(--sp-3);
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  text-align: center;
  transition: box-shadow var(--dur), transform var(--dur), border-color var(--dur);
}
.st-meta-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: rgba(152,102,95,.25);
}
.st-meta-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-full);
  background: var(--clr-primary-l, #f3e8f5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-primary);
  margin-bottom: var(--sp-1);
  flex-shrink: 0;
}
.st-meta-card__icon svg { width: 22px; height: 22px; }
.st-meta-card__label {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--clr-muted);
}
.st-meta-card__value {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--clr-heading);
  line-height: var(--lh-snug);
}


/* ── ANA LAYOUT ─────────────────────────────────────────────── */
.st-wrap {
  background: var(--clr-bg);
  padding-block: var(--sp-12) var(--sp-16);
}
.st-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--sp-8);
  align-items: start;
}
.st-main {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}
.st-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  position: sticky;
  top: calc(var(--header-h, 72px) + var(--sp-4));
}


/* -- EDITOR ICERIGI -------------------------------------------------- */
.st-content-title {
  margin: 0 0 14px;
  width: 100%;
  max-width: none;
  align-self: stretch;
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--clr-text);
}

.st-editor {
  width: 100%;
  max-width: none;
  align-self: stretch;
  box-sizing: border-box;
  background: var(--clr-white);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.st-content {
  margin-left: 0;
  margin-right: 0;
  transform: none;
  justify-self: stretch;
  margin-bottom: var(--sp-8);
}

.st-meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  padding: 14px 0;
  margin: 0 0 28px;
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  color: var(--clr-muted);
  font-size: 14px;
}

.st-meta-bar__item strong {
  color: var(--clr-text);
  font-weight: 600;
}

.st-main > .st-audience,
.st-main > .st-pros-cons,
.st-main > .st-timeline-section,
.st-main > .st-video-section {
  margin-top: var(--sp-8);
}


/* -- BOLUM BASLIGI (section header) -------------------------------- */
.st-section-header {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}
.st-section-badge {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: var(--r-full);
  background: var(--clr-primary-l, #f3e8f5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-primary);
}
.st-section-badge svg { width: 20px; height: 20px; }
.st-section-title {
  font-size: clamp(var(--fs-xl), 2.5vw, var(--fs-2xl));
  font-weight: 700;
  margin: 0;
  color: var(--clr-heading);
}


/* ── İKİ KOLON GRID (audience / pros-cons) ──────────────────── */
.st-audience__grid,
.st-pros-cons__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
}


/* ── BİLGİ KART (info card) ─────────────────────────────────── */
.st-info-card {
  background: var(--clr-white);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-sm);
}
.st-info-card__header {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--clr-border);
}
.st-info-card__icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
}
.st-info-card__icon svg { width: 22px; height: 22px; }
.st-info-card__title { font-size: var(--fs-lg); font-weight: 700; margin: 0; }

/* Renk varyantları */
.st-info-card--suitable .st-info-card__icon  { background: #e8f5e9; color: #2e7d32; }
.st-info-card--suitable .st-info-card__title { color: #2e7d32; }
.st-info-card--not-suitable .st-info-card__icon  { background: #fff3e0; color: #e65100; }
.st-info-card--not-suitable .st-info-card__title { color: #bf360c; }
.st-info-card--pros .st-info-card__icon  { background: #e8f5e9; color: #2e7d32; }
.st-info-card--pros .st-info-card__title { color: #2e7d32; }
.st-info-card--risks .st-info-card__icon  { background: #fff8e1; color: #f57f17; }
.st-info-card--risks .st-info-card__title { color: #e65100; }


/* ── KONTROL LİSTESİ (check list) ───────────────────────────── */
.st-check-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  list-style: none;
  padding: 0;
  margin: 0;
}
.st-check-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  color: var(--clr-text);
}
.st-check-list__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.st-check-list__icon svg { width: 12px; height: 12px; }

/* Onay (yeşil) */
.st-check-list .st-check-list__icon     { background: #e8f5e9; color: #2e7d32; }
/* Çarpı (turuncu) */
.st-check-list--cross .st-check-list__icon  { background: #fff3e0; color: #e65100; }
/* Avantaj (yeşil) */
.st-check-list--pros .st-check-list__icon   { background: #e8f5e9; color: #2e7d32; }
/* Risk (amber) */
.st-check-list--risks .st-check-list__icon  { background: #fff8e1; color: #f57f17; }


/* ── TİMELINE (işlem süreci) ────────────────────────────────── */
.st-timeline-section {
  background: var(--clr-white);
  border-radius: var(--r-xl);
  padding: var(--sp-8) var(--sp-8);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--clr-border);
}
.st-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.st-timeline__item {
  display: flex;
  gap: var(--sp-5);
  position: relative;
}
.st-timeline__marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.st-timeline__num {
  width: 44px;
  height: 44px;
  border-radius: var(--r-full);
  background: var(--clr-primary);
  color: var(--clr-white);
  font-size: var(--fs-sm);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(152,102,95,.35);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.st-timeline__line {
  flex: 1;
  width: 2px;
  background: linear-gradient(to bottom, var(--clr-primary) 0%, rgba(152,102,95,.15) 100%);
  margin: 4px 0;
  min-height: var(--sp-6);
}
.st-timeline__body {
  padding-bottom: var(--sp-6);
  padding-top: 10px;        /* vertikal hizalama — num ile */
  flex: 1;
  min-width: 0;
}
.st-timeline__text {
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  color: var(--clr-text);
  margin: 0;
}

/* Son öğede body padding azalt */
.st-timeline__item:last-child .st-timeline__body { padding-bottom: 0; }


/* ── VİDEO ──────────────────────────────────────────────────── */
.st-video-section {
  background: var(--clr-white);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--clr-border);
}
.st-video-wrap {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--clr-dark);
}
.st-video-wrap iframe,
.st-video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--r-lg);
}
.st-video-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-3);
}


/* ── Audience + Pros-Cons bölüm wrapper ─────────────────────── */
.st-audience,
.st-pros-cons {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}


/* ── İLGİLİ TEDAVİLER ───────────────────────────────────────── */
.related-section { background: var(--clr-bg); }


/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .st-layout { grid-template-columns: 1fr 260px; }
  .st-meta-cards { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  /* Layout: tek sütun */
  .st-layout { grid-template-columns: 1fr; }
  .st-sidebar { position: static; }

  /* Hero */
  .st-hero { padding-block: var(--sp-12) var(--sp-10); }
  .st-hero--has-image { min-height: 280px; }
  .st-featured-image img { max-height: 260px; }
  .st-content-title { font-size: 24px; }
  .st-meta-bar {
    gap: 8px;
    font-size: 13px;
  }

  /* Meta kartlar: 2 sütun */
  .st-meta-cards { grid-template-columns: repeat(2, 1fr); }

  /* Editör */
  .st-editor { padding: 24px; }

  /* İki kolon gridler: tek sütun */
  .st-audience__grid,
  .st-pros-cons__grid { grid-template-columns: 1fr; }

  /* Timeline */
  .st-timeline-section { padding: var(--sp-6); }

  /* Video */
  .st-video-section { padding: var(--sp-6); }
}

@media (max-width: 480px) {
  /* Meta kartlar: tek sütun */
  .st-meta-cards { grid-template-columns: 1fr 1fr; gap: var(--sp-2); }
  .st-meta-card { padding: var(--sp-3); }
  .st-meta-card__icon { width: 36px; height: 36px; }
  .st-meta-card__icon svg { width: 18px; height: 18px; }
}


/* ─── 26. 404 Page ──────────────────────────────────────────── */
.error-404-section {
  background: var(--clr-bg);
  min-height: calc(100vh - var(--header-h) - 240px);
  display: flex;
  align-items: center;
  padding-block: var(--sp-16);
}
.error-404-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--sp-12);
  align-items: center;
}
.error-404__graphic { text-align: center; position: relative; }
.error-404__number {
  display: block;
  font-family: var(--ff-heading);
  font-size: clamp(5rem, 14vw, 10rem);
  font-weight: 800;
  color: var(--clr-primary);
  opacity: .12;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
}
.error-404__illustration {
  width: min(280px, 100%);
  height: auto;
  margin: 0 auto;
  display: block;
  color: var(--clr-primary);
  position: relative;
  z-index: 1;
}
.error-404__title {
  font-size: clamp(var(--fs-2xl), 4vw, var(--fs-4xl));
  color: var(--clr-dark);
  margin-bottom: var(--sp-3);
}
.error-404__message {
  font-size: var(--fs-lg);
  color: var(--clr-muted);
  max-width: 500px;
  margin-bottom: var(--sp-6);
  line-height: var(--lh-relaxed);
}
.error-404__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}
.error-404__popular-title {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--clr-muted);
  margin-bottom: var(--sp-3);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.error-404__popular-list { display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.error-404__popular-list a {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-primary);
  text-decoration: none;
  padding: 6px var(--sp-3);
  background: var(--clr-white);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--r-full);
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.error-404__popular-list a:hover { background: var(--clr-primary-l); border-color: rgba(152,102,95,.25); }
.error-404__popular-list a svg { flex-shrink: 0; }


/* ─── 27. Before / After Sistemi ───────────────────────────── */

/* ── SLIDER (interaktif karşılaştırma) ──────────────────────── */
.ba-slider {
  --ba-pos: 50%;

  position: relative;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  border-radius: var(--r-xl);
  aspect-ratio: 16/9;
  cursor: ew-resize;
  user-select: none;
  touch-action: pan-y;
  background: var(--clr-surface);
  box-shadow: var(--shadow-lg);
}

/* Her iki görsel tam kaplar */
.ba-slider__after,
.ba-slider__before {
  position: absolute;
  inset: 0;
}
.ba-slider__after img,
.ba-slider__before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  border-radius: var(--r-xl);
}

/* Öncesi görsel — clip ile sağından kırpılır */
.ba-slider__before {
  clip-path: inset(0 calc(100% - var(--ba-pos)) 0 0);
  transition: clip-path 0s; /* Sürükleme sırasında anlık */
}

/* Etiketler */
.ba-slider__label {
  position: absolute;
  bottom: var(--sp-4);
  padding: .3rem .85rem;
  border-radius: var(--r-full);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  pointer-events: none;
}
.ba-slider__label--before {
  left: var(--sp-4);
  background: rgba(0,0,0,.45);
  color: var(--clr-white);
}
.ba-slider__label--after {
  right: var(--sp-4);
  background: rgba(255,255,255,.75);
  color: var(--clr-heading);
}

/* Kol — dikey çizgi + merkez buton */
.ba-slider__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--ba-pos);
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: ew-resize;
  outline: none;
}
.ba-slider__handle:focus-visible .ba-slider__handle-btn {
  outline: 3px solid var(--clr-secondary);
  outline-offset: 2px;
}

.ba-slider__handle-line {
  flex: 1;
  width: 3px;
  background: var(--clr-white);
  box-shadow: 0 0 8px rgba(0,0,0,.4);
  pointer-events: none;
}

.ba-slider__handle-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: var(--clr-white);
  border: none;
  border-radius: var(--r-full);
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-primary);
  cursor: ew-resize;
  pointer-events: none;
  transition: transform var(--dur), box-shadow var(--dur);
}
.ba-slider:active .ba-slider__handle-btn,
.ba-slider__handle:focus-visible .ba-slider__handle-btn {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 6px 24px rgba(0,0,0,.35);
}

/* Gizli range input */
.ba-slider__range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 5;
  margin: 0;
}

/* ── SLIDER BÖLÜMÜ ──────────────────────────────────────────── */
.ba-slider-section {
  background: var(--clr-dark, #2a2423);
  padding-block: var(--sp-10) var(--sp-6);
}

.ba-slider-hint {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  color: rgba(255,255,255,.55);
  font-size: var(--fs-xs);
  margin-top: var(--sp-3);
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}


/* ── SINGLE SAYFA ───────────────────────────────────────────── */
.ba-single-wrap {
  background: var(--clr-primary);
  padding-block: var(--sp-10) var(--sp-8);
  color: var(--clr-white);
}
.ba-single-breadcrumb .breadcrumb__item,
.ba-single-breadcrumb .breadcrumb__item a {
  color: rgba(255,255,255,.7);
}
.ba-single-breadcrumb .breadcrumb__item a:hover { color: var(--clr-white); }
.ba-single-breadcrumb .breadcrumb__item--active { color: var(--clr-white); }

.ba-single-title {
  font-size: clamp(var(--fs-2xl), 4vw, var(--fs-4xl));
  font-weight: 800;
  color: var(--clr-white);
  line-height: var(--lh-tight);
  margin-top: var(--sp-3);
  margin-bottom: 0;
}

.ba-single-content-wrap {
  background: var(--clr-bg);
  padding-block: var(--sp-12) var(--sp-16);
}

.ba-single-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--sp-8);
  align-items: start;
}

.ba-single-main {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
  min-width: 0;
}

.ba-single-editor {
  background: var(--clr-white);
  border-radius: var(--r-xl);
  padding: var(--sp-8) var(--sp-10);
  box-shadow: var(--shadow-sm);
}

/* Hasta Notu kutusu */
.ba-note-box {
  background: var(--clr-white);
  border-radius: var(--r-xl);
  padding: var(--sp-6) var(--sp-8);
  border-left: 4px solid var(--clr-secondary);
  box-shadow: var(--shadow-sm);
}
.ba-note-box__title {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-lg);
  font-weight: 700;
  margin-bottom: var(--sp-3);
  color: var(--clr-primary);
}
.ba-note-box p {
  font-size: var(--fs-sm);
  color: var(--clr-text);
  line-height: var(--lh-relaxed);
  margin: 0;
}

/* Sidebar */
.ba-single-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  position: sticky;
  top: calc(var(--header-h, 72px) + var(--sp-4));
}

.ba-info-widget {
  background: var(--clr-white);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  box-shadow: var(--shadow-sm);
}
.ba-info-widget__title {
  font-size: var(--fs-base);
  font-weight: 700;
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--clr-border);
}
.ba-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.ba-info-list__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ba-info-list__label {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--clr-muted);
}
.ba-info-list__value {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-heading);
}
.ba-info-list__value a {
  color: var(--clr-primary);
  text-decoration: none;
}
.ba-info-list__value a:hover { text-decoration: underline; }

.ba-sidebar-cta-btn {
  width: 100%;
  justify-content: center;
  gap: var(--sp-2);
}

/* İlgili vakalar */
.ba-related-section { background: var(--clr-bg); }


/* -- ARSIV SAYFASI -------------------------------------------------- */
.ba-archive-hero {
  background: linear-gradient(135deg, var(--clr-primary-d) 0%, var(--clr-primary) 100%);
  padding-block: var(--sp-16) var(--sp-12);
  color: var(--clr-white);
}
.ba-archive-hero__title {
  font-size: clamp(var(--fs-2xl), 5vw, var(--fs-5xl));
  font-weight: 800;
  color: var(--clr-white);
  margin: var(--sp-4) 0 var(--sp-3);
  line-height: var(--lh-tight);
}
.ba-archive-hero__desc {
  font-size: var(--fs-lg);
  color: rgba(255,255,255,.8);
  max-width: 640px;
  line-height: var(--lh-relaxed);
  margin: 0;
}

/* Kategori filtre çubuğu */
.ba-filter {
  background: var(--clr-white);
  border-bottom: 1px solid var(--clr-border);
  padding-block: var(--sp-4);
  position: sticky;
  top: var(--header-h, 72px);
  z-index: 90;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.ba-filter__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  list-style: none;
  padding: 0;
  margin: 0;
}
.ba-filter__btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  padding: .4rem 1rem;
  border-radius: var(--r-full);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-text);
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  text-decoration: none;
  transition: background var(--dur), color var(--dur), border-color var(--dur);
}
.ba-filter__btn:hover,
.ba-filter__btn.is-active {
  background: var(--clr-primary);
  color: var(--clr-white);
  border-color: var(--clr-primary);
}
.ba-filter__count {
  background: rgba(0,0,0,.08);
  color: inherit;
  border-radius: var(--r-full);
  font-size: var(--fs-xs);
  padding: .1rem .45rem;
  line-height: 1.6;
}
.ba-filter__btn.is-active .ba-filter__count { background: rgba(255,255,255,.2); }

/* Grid + karşılaştırma kartları */
.ba-archive-grid-wrap {
  background: var(--clr-bg);
  padding-block: var(--sp-12) var(--sp-16);
}
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  list-style: none;
  padding: 0;
  margin: 0;
}
.ba-grid--related { grid-template-columns: repeat(3, 1fr); }

/* ── KART ────────────────────────────────────────────────────── */
.ba-card {
  display: flex;
  flex-direction: column;
  background: var(--clr-white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--clr-border);
  transition: box-shadow var(--dur), transform var(--dur);
}
.ba-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

/* Görsel karşılaştırma (50/50 statik split) */
.ba-card__visual {
  position: relative;
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
  text-decoration: none;
}
.ba-card__after,
.ba-card__before {
  position: absolute;
  inset: 0;
}
.ba-card__after img,
.ba-card__before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s var(--ease);
}
.ba-card:hover .ba-card__after img,
.ba-card:hover .ba-card__before img { transform: scale(1.04); }

/* Öncesi görsel — sol %50 */
.ba-card__before {
  clip-path: inset(0 50% 0 0);
}

/* Merkez ayırıcı */
.ba-card__divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  background: var(--clr-white);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ba-card__divider-icon {
  width: 28px;
  height: 28px;
  background: var(--clr-white);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-primary);
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
  flex-shrink: 0;
}
.ba-card__divider-icon svg { width: 14px; height: 14px; }

/* Etiket rozeti */
.ba-card__badge {
  position: absolute;
  bottom: var(--sp-2);
  z-index: 4;
  padding: .2rem .6rem;
  border-radius: var(--r-full);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  pointer-events: none;
}
.ba-card__badge--before {
  left: var(--sp-2);
  background: rgba(0,0,0,.45);
  color: var(--clr-white);
}
.ba-card__badge--after {
  right: var(--sp-2);
  background: rgba(255,255,255,.8);
  color: var(--clr-heading);
}

/* Hover overlay */
.ba-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  background: rgba(152,102,95,.6);
  color: var(--clr-white);
  font-size: var(--fs-sm);
  font-weight: 700;
  opacity: 0;
  transition: opacity var(--dur);
}
.ba-card__visual:hover .ba-card__overlay,
.ba-card__visual:focus-visible .ba-card__overlay { opacity: 1; }

/* Metin kutusu */
.ba-card__body {
  padding: var(--sp-4) var(--sp-5) var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  flex: 1;
}
.ba-card__cat {
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--clr-primary);
}
.ba-card__title {
  font-size: var(--fs-base);
  font-weight: 700;
  margin: 0;
  line-height: var(--lh-snug);
}
.ba-card__title a {
  color: var(--clr-heading);
  text-decoration: none;
}
.ba-card__title a:hover { color: var(--clr-primary); }
.ba-card__treatment {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: var(--fs-xs);
  color: var(--clr-muted);
  margin: 0;
}
.ba-card__treatment a { color: inherit; text-decoration: none; }
.ba-card__treatment a:hover { color: var(--clr-primary); }
.ba-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
  padding-top: var(--sp-3);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-primary);
  text-decoration: none;
  border-top: 1px solid var(--clr-border);
  transition: gap var(--dur);
}
.ba-card__link:hover { gap: 8px; }

/* Boş durum */
.ba-empty {
  text-align: center;
  padding-block: var(--sp-16);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
}
.ba-empty__icon {
  width: 80px;
  height: 80px;
  color: var(--clr-secondary);
  opacity: .7;
}
.ba-empty__icon svg { width: 100%; height: 100%; }
.ba-empty__title { font-size: var(--fs-2xl); color: var(--clr-heading); margin: 0; }
.ba-empty__desc  { font-size: var(--fs-base); color: var(--clr-muted); max-width: 420px; margin: 0; }


/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .ba-grid             { grid-template-columns: repeat(2, 1fr); }
  .ba-grid--related    { grid-template-columns: repeat(2, 1fr); }
  .ba-single-layout    { grid-template-columns: 1fr 260px; }
}

@media (max-width: 768px) {
  /* Slider */
  .ba-slider { aspect-ratio: 4/3; border-radius: var(--r-lg); }
  .ba-slider__handle-btn { width: 40px; height: 40px; }

  /* Single sayfa */
  .ba-single-layout { grid-template-columns: 1fr; }
  .ba-single-sidebar { position: static; }
  .ba-single-editor  { padding: var(--sp-5); }

  /* Grid */
  .ba-grid          { grid-template-columns: 1fr; gap: var(--sp-5); }
  .ba-grid--related { grid-template-columns: 1fr; }

  /* Arşiv hero */
  .ba-archive-hero  { padding-block: var(--sp-12) var(--sp-8); }

  /* Filtre */
  .ba-filter { overflow-x: auto; }
  .ba-filter__list { flex-wrap: nowrap; padding-bottom: var(--sp-1); }
}

@media (max-width: 480px) {
  .ba-slider { aspect-ratio: 1/1; }
}


/* ─── 28. Testimonials (Hasta Yorumları) ────────────────────── */

/* ── YILDIZLAR ──────────────────────────────────────────────── */
.tst-star { color: var(--clr-border, #e0e0e0); font-size: inherit; }
.tst-star--filled { color: #f5a623; }


/* ── YORUM KARTI ────────────────────────────────────────────── */
.tst-card {
  position: relative;
  background: var(--clr-white);
  border-radius: var(--r-xl);
  padding: var(--sp-7) var(--sp-6) var(--sp-5);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  overflow: hidden;
  transition: box-shadow var(--dur), transform var(--dur);
}
.tst-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

/* Öne çıkan kart */
.tst-card--featured {
  border-color: rgba(152,102,95,.25);
  box-shadow: 0 4px 24px rgba(152,102,95,.1);
}
.tst-card--featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-primary) 0%, var(--clr-secondary) 100%);
}

/* Büyük alıntı ikonu (dekoratif) */
.tst-card__quote-icon {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  width: 36px;
  height: 28px;
  color: var(--clr-secondary, #e8d8d4);
  opacity: .35;
  pointer-events: none;
}

/* Yıldız satırı */
.tst-card__stars {
  display: flex;
  gap: 2px;
  font-size: var(--fs-lg);
  line-height: 1;
}

/* Yorum metni */
.tst-card__text {
  flex: 1;
  margin: 0;
}
.tst-card__text p {
  font-size: var(--fs-sm);
  color: var(--clr-text);
  line-height: var(--lh-relaxed);
  margin: 0;
  /* 4 satır sonra kırp */
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Alt bilgi satırı */
.tst-card__footer {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--clr-border);
  margin-top: auto;
}

/* Fotoğraf / placeholder avatar */
.tst-card__avatar,
.tst-card__avatar--placeholder {
  width: 48px;
  height: 48px;
  border-radius: var(--r-full);
  flex-shrink: 0;
  overflow: hidden;
}
.tst-card__avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tst-card__avatar--placeholder {
  background: linear-gradient(135deg, var(--clr-primary-l, #f3e8f5) 0%, var(--clr-secondary, #e8d8d4) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--clr-primary);
}

/* İsim + tedavi metni */
.tst-card__meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.tst-card__name {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--clr-heading);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tst-card__treatment {
  font-size: var(--fs-xs);
  color: var(--clr-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tst-card__treatment a { color: inherit; text-decoration: none; }
.tst-card__treatment a:hover { text-decoration: underline; }

/* Google ikonu */
.tst-card__google-link {
  margin-left: auto;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--r-full);
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  transition: box-shadow var(--dur);
}
.tst-card__google-link:hover {
  box-shadow: 0 3px 12px rgba(66,133,244,.25);
}
.tst-card__google-icon { width: 18px; height: 18px; }


/* ── GRİD ───────────────────────────────────────────────────── */
.tst-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  list-style: none;
  padding: 0;
  margin: 0;
}


/* -- ARSIV SAYFASI -------------------------------------------------- */
.tst-archive-hero {
  background: linear-gradient(135deg, var(--clr-primary-d, #6a3d64) 0%, var(--clr-primary) 100%);
  padding-block: var(--sp-16) var(--sp-12);
  color: var(--clr-white);
}
.tst-archive-hero__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-8);
  align-items: end;
}
.tst-archive-hero__title {
  font-size: clamp(var(--fs-2xl), 5vw, var(--fs-5xl));
  font-weight: 800;
  color: var(--clr-white);
  margin: var(--sp-3) 0 var(--sp-3);
  line-height: var(--lh-tight);
}
.tst-archive-hero__desc {
  font-size: var(--fs-lg);
  color: rgba(255,255,255,.8);
  max-width: 580px;
  margin: 0;
  line-height: var(--lh-relaxed);
}
/* İstatistik bandı (hero dışına alındı) */
.tst-stats-bar {
  background: var(--clr-soft);
  border-bottom: 1px solid var(--clr-border);
  padding: var(--sp-4) 0;
}
.tst-stats-bar__inner {
  display: flex;
  justify-content: center;
  gap: var(--sp-8);
  flex-wrap: wrap;
}

/* Eski hero stats (geriye dönük uyum) */
.tst-archive-hero__stats {
  display: flex;
  gap: var(--sp-6);
  flex-shrink: 0;
  background: var(--clr-primary-l);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  padding: var(--sp-5) var(--sp-6);
}
.tst-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.tst-stat__value {
  font-size: var(--fs-4xl);
  font-weight: 800;
  color: var(--clr-white);
  line-height: 1;
}
.tst-stat__stars { display: flex; gap: 1px; font-size: var(--fs-base); }
.tst-stat__label {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
}

.tst-archive-wrap {
  background: var(--clr-bg);
  padding-block: var(--sp-12) var(--sp-16);
}
.tst-empty {
  text-align: center;
  font-size: var(--fs-lg);
  color: var(--clr-muted);
  padding-block: var(--sp-16);
}


/* ── TEKİL SAYFA ────────────────────────────────────────────── */
.tst-single-hero {
  background: linear-gradient(135deg, var(--clr-primary-d, #6a3d64) 0%, var(--clr-primary) 100%);
  padding-block: var(--sp-12) var(--sp-10);
  color: var(--clr-white);
}
.tst-single-hero__inner { }

.tst-single-hero__profile {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  margin-top: var(--sp-5);
  flex-wrap: wrap;
}

/* Avatar büyük (96px) */
.tst-single-hero__avatar {
  width: 96px;
  height: 96px;
  border-radius: var(--r-full);
  flex-shrink: 0;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,.4);
}
.tst-single-hero__avatar-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tst-single-hero__avatar--placeholder {
  background: rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-3xl);
  font-weight: 700;
  color: var(--clr-white);
}

.tst-single-hero__info { flex: 1; min-width: 200px; }
.tst-single-hero__name {
  font-size: clamp(var(--fs-xl), 3vw, var(--fs-3xl));
  font-weight: 800;
  color: var(--clr-white);
  margin-bottom: var(--sp-2);
}
.tst-single-hero__treatment {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.8);
  margin-bottom: var(--sp-3);
}
.tst-single-hero__treatment a { color: inherit; text-decoration: underline; }
.tst-single-hero__stars {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: var(--fs-xl);
}
.tst-single-hero__rating-num {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.7);
  margin-left: var(--sp-2);
}

/* Google butonu */
.tst-google-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: .6rem 1.2rem;
  background: var(--clr-white);
  color: var(--clr-heading);
  border-radius: var(--r-full);
  font-size: var(--fs-sm);
  font-weight: 600;
  text-decoration: none;
  transition: box-shadow var(--dur);
  margin-left: auto;
}
.tst-google-btn:hover { box-shadow: 0 4px 20px rgba(0,0,0,.15); }

/* İçerik */
.tst-single-content-wrap {
  background: var(--clr-bg);
  padding-block: var(--sp-12);
}
.tst-single-content {
  background: var(--clr-white);
  border-radius: var(--r-xl);
  padding: var(--sp-8) var(--sp-10);
  box-shadow: var(--shadow-sm);
  max-width: 720px;
  margin: 0 auto;
}

/* Video */
.tst-single-video-wrap {
  background: var(--clr-bg);
  padding-block: 0 var(--sp-12);
}
.tst-single-video-heading {
  font-size: var(--fs-xl);
  font-weight: 700;
  margin-bottom: var(--sp-5);
}
.tst-video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--r-xl);
  background: var(--clr-dark);
  max-width: 720px;
}
.tst-video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}


/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .tst-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .tst-grid { grid-template-columns: 1fr; gap: var(--sp-4); }
  .tst-archive-hero__inner { grid-template-columns: 1fr; }
  .tst-archive-hero__stats { width: 100%; justify-content: center; }
  .tst-single-hero__profile { flex-direction: column; align-items: flex-start; }
  .tst-google-btn { margin-left: 0; }
  .tst-single-content { padding: var(--sp-6); }
}


/* ─── 29. WordPress Core ────────────────────────────────────── */
/* Screen reader */
.screen-reader-text {
  clip: rect(1px,1px,1px,1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
}
.screen-reader-text:focus {
  clip: auto;
  clip-path: none;
  height: auto;
  width: auto;
  overflow: auto;
  position: static;
}

/* Alignment */
.alignleft  { float: left; margin-right: var(--sp-4); margin-bottom: var(--sp-2); }
.alignright { float: right; margin-left: var(--sp-4); margin-bottom: var(--sp-2); }
.aligncenter { margin-inline: auto; }
.alignwide  { width: calc(100% + var(--sp-8)); margin-inline: calc(-1 * var(--sp-4)); }

/* WP caption */
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: var(--fs-xs); color: var(--clr-muted); text-align: center; margin-top: 4px; }

/* Single meta (inline use) */
.single-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.7);
  margin-bottom: var(--sp-3);
}

/* Posted-on / posted-in helpers */
.posted-on, .posted-in { display: inline-flex; align-items: center; gap: 4px; }
.posted-on time { font-weight: 600; }


/* ─── 28. Responsive — 1024px ───────────────────────────────── */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-visual { display: none; }
  .hero-description, .hero-trust-badges { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-phone { justify-content: center; }

  .home-specialties__grid,
  .treatments-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid        { grid-template-columns: repeat(2, 1fr); }
  .features-grid    { grid-template-columns: repeat(2, 1fr); }
  .stats-grid       { grid-template-columns: repeat(2, 1fr); }

  .home-blog-carousel__viewport {
    --home-blog-visible: 2;
    --home-blog-gap: 24px;
  }

  .about-grid { grid-template-columns: 1fr; gap: var(--sp-8); }
  .about-image-col { max-width: 400px; margin-inline: auto; }

  .faq-layout { grid-template-columns: 1fr; }
  .faq-header-col { position: static; }

  .approach-grid { grid-template-columns: 1fr; }

  .single-layout { grid-template-columns: 1fr; }
  .single-sidebar { position: static; order: -1; }

  .page-layout { grid-template-columns: 1fr; }
  .page-sidebar { position: static; }

  .single-tedavi-layout { grid-template-columns: 1fr; }
  .single-tedavi-sidebar { position: static; order: -1; }

  .footer-grid,
  .footer-grid--4 { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }

  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
}

@media (max-width: 991px) {
  .hero-slider__arrow {
    width: 44px;
    height: 44px;
  }

  .hero-slider__arrow--prev {
    left: 12px;
  }

  .hero-slider__arrow--next {
    right: 12px;
  }

  .hero-slider__arrow svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 767px) {
  .home-specialties__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-3);
  }

  .home-specialty-card__image {
    aspect-ratio: 16 / 8.4;
  }
}


/* ─── 29. Responsive — 768px ────────────────────────────────── */
@media (max-width: 768px) {
  :root { --header-h: 88px; }

  /* Header: main mobile menu layout is defined at 1024px for tablet support. */
  .mobile-menu-toggle { display: flex; }
  .header-phone { display: none; }
  .header-appt-btn { padding: .55rem 1rem !important; font-size: var(--fs-xs) !important; }

  /* Mobil CTA: açık menü içinde göster */
  .primary-nav.is-open .mobile-cta { display: block; margin-top: var(--sp-4); width: 100%; }
  /* header-actions içindeki .mobile-cta masaüstünde de gizli kalır */
  .header-actions .mobile-cta { display: none !important; }

  /* Sections */
  .hero-slider__arrows { display: none; }
  .hero-mobile-nav {
    display: block;
  }
  .hero-mobile-prev,
  .hero-mobile-next {
    display: inline-flex;
  }
  .treatments-grid { grid-template-columns: 1fr; gap: var(--sp-3); }
  .blog-grid        { grid-template-columns: 1fr; }
  .single-sidebar   { order: 0; }
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .feature-card {
    min-width: 0;
    min-height: auto;
    padding: 22px 18px;
  }
  .feature-card__icon {
    width: 46px;
    height: 46px;
    margin-bottom: 16px;
    border-radius: 14px;
  }
  .feature-card__icon svg {
    width: 22px;
    height: 22px;
  }
  .feature-card__title {
    font-size: 16px;
    line-height: 1.25;
    margin-bottom: 8px;
  }
  .feature-card__desc {
    font-size: 13.5px;
    line-height: 1.5;
  }
  .approach-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .approach-card {
    min-width: 0;
    padding: 22px 18px;
  }
  .approach-card__icon {
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
    border-radius: 14px;
  }
  .approach-card__icon svg {
    width: 24px;
    height: 24px;
  }
  .approach-card__title {
    font-size: 17px;
    line-height: 1.25;
    margin-bottom: 10px;
  }
  .approach-card__desc,
  .approach-card__list li,
  .approach-card__link {
    font-size: 14px;
    line-height: 1.55;
  }
  .approach-card__desc,
  .approach-card__list {
    margin-bottom: 14px;
  }
  .approach-card__list {
    gap: 10px;
  }
  .stat-item + .stat-item::before { display: none; }

  .home-blog-carousel__header {
    align-items: flex-start;
    flex-direction: column;
    gap: var(--sp-3);
  }

  .home-blog-carousel__viewport {
    --home-blog-visible: 1;
    --home-blog-gap: 20px;
  }

  .single-content { padding: var(--sp-5) var(--sp-5); }
  .page-content   { padding: var(--sp-5) var(--sp-5); }
  .single-tedavi-content { padding: var(--sp-5) var(--sp-5); }
  .suitable-for-list { grid-template-columns: 1fr; }
  .suitable-for-section__inner { padding: var(--sp-5); }

  .hero-section { min-height: 80vh; }
  .hero-slide {
    background: var(--hero-mobile-bg, var(--hero-slide-bg, transparent));
  }
  .hero-slide .hero-container {
    min-height: min(80vh, 720px);
    padding-top: var(--sp-9);
    padding-bottom: var(--sp-9);
  }
  .hero-content {
    position: relative;
    z-index: 2;
  }
  .hero-visible-desktop {
    display: none !important;
  }
  .hero-visible-mobile {
    display: block !important;
  }
  .hero-badge.hero-visible-mobile {
    display: inline-flex !important;
  }
  .hero-badge {
    margin-top: 10px;
  }
  .hero-actions.hero-visible-mobile {
    display: flex !important;
  }
  .hero-actions {
    transform: translateY(-15px);
  }
  .hero-trust-badges.hero-visible-mobile,
  .hero-phone.hero-visible-mobile,
  .hero-visual.hero-visible-mobile {
    display: flex !important;
  }
  .hero-content__desktop,
  .hero-action__desktop,
  .hero-card__photo--desktop {
    display: none !important;
  }
  .hero-content__mobile {
    display: inline;
  }
  .hero-title .hero-content__mobile,
  .hero-description .hero-content__mobile {
    display: block;
  }
  .hero-action__mobile {
    display: inline-flex;
  }
  .hero-visual {
    display: none;
  }
  .hero-visual--has-mobile-image {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    width: min(58vw, 260px);
    max-width: 260px;
    min-height: 0;
    opacity: .45;
    pointer-events: none;
  }
  .hero-visual--has-mobile-image .hero-card {
    width: 100%;
    height: auto;
    background: transparent;
    box-shadow: none;
    border: 0;
    overflow: visible;
  }
  .hero-visual--has-mobile-image .hero-card__photo--mobile {
    display: block;
    width: 100%;
    height: auto;
    max-height: 260px;
    object-fit: contain;
    object-position: bottom right;
  }
  .hero-visual--has-mobile-image .hero-decoration {
    display: none;
  }
  .single-hero { padding: var(--sp-12) 0 var(--sp-8); min-height: 260px; }
  .single-tedavi-hero { padding: var(--sp-12) 0 var(--sp-8); }
  .archive-hero { padding: var(--sp-12) 0 var(--sp-10); }
  .archive-filter-wrap { position: static; }

  .footer-grid,
  .footer-grid--4 { grid-template-columns: 1fr; gap: var(--sp-6); }
  .footer-col--brand .footer-description { max-width: 100%; }
  .footer-bottom__inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .footer-bottom__left,
  .footer-bottom__right {
    justify-content: center;
    text-align: center;
  }

  .post-nav { grid-template-columns: 1fr; }
  .author-box { flex-direction: column; }

  /* Blog sistemi */
  .toc-widget { border-left-width: 2px; }
  .social-share { gap: var(--sp-1); }
  .related-posts__grid { grid-template-columns: 1fr; gap: var(--sp-3); }
  .related-post-card { display: flex; flex-direction: row; }
  .related-post-card__visual { width: 100px; flex-shrink: 0; aspect-ratio: auto; height: 100%; }
  .related-post-card__body { padding: var(--sp-2) var(--sp-3); }
  .blog-pagination .page-numbers { min-width: 36px; height: 36px; font-size: var(--fs-xs); }

  .error-404-inner { grid-template-columns: 1fr; text-align: center; }
  .error-404__graphic { display: none; }
  .error-404__actions, .error-404__popular-list { justify-content: center; }
  .error-404__message { max-width: 100%; }
}


/* ─── 30. Responsive — 480px ────────────────────────────────── */
@media (max-width: 480px) {
  .treatments-grid  { grid-template-columns: 1fr; }
  .stats-grid       { grid-template-columns: 1fr; }
  .hero-title { font-size: var(--fs-3xl); }
  .btn--lg { padding: .875rem 1.5rem; font-size: var(--fs-sm); }
  .whatsapp-float__label { display: none; }
  .whatsapp-float { padding: .75rem; border-radius: var(--r-full); }
  .cta-inner { gap: var(--sp-4); }
}

/* =================================================================== */

/* ═══════════════════════════════════════════════════════════════
   31. PAGE HERO — ortak kompakt page header bileşeni
   Tüm sayfalarda aynı başlık alanı görünümü sağlar.
   ═══════════════════════════════════════════════════════════════ */

/* ── Temel hero bloğu ─────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(180deg, var(--clr-soft), #fff);
  border-bottom: 1px solid var(--clr-border);
  padding: 22px 0;
  text-align: left;
  position: relative;
}

.page-hero__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.page-hero__content {
  min-width: 0;
}

/* Breadcrumb */
.page-hero__breadcrumb {
  font-size: 12px;
  font-weight: 500;
  color: var(--clr-muted);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
  margin-left: auto;
  text-align: right;
  white-space: nowrap;
  line-height: 1.4;
}
.page-hero__breadcrumb .breadcrumb__list { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; }
.page-hero__breadcrumb .breadcrumb__item { color: var(--clr-muted); }
.page-hero__breadcrumb .breadcrumb__item a { color: var(--clr-muted); text-decoration: none; }
.page-hero__breadcrumb .breadcrumb__item a:hover { color: var(--clr-primary); }
.page-hero__breadcrumb .breadcrumb__item--sep { display: none; }
.page-hero__breadcrumb .breadcrumb__item--active { color: var(--clr-text); }
.page-hero__breadcrumb .breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 6px;
}
.page-hero__breadcrumb .breadcrumbs a {
  color: var(--clr-muted);
  text-decoration: none;
}
.page-hero__breadcrumb .breadcrumbs a:hover { color: var(--clr-primary); }
.page-hero__breadcrumb .breadcrumb-current { color: var(--clr-text); }
.page-hero__breadcrumb .breadcrumb-separator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-muted);
  opacity: .5;
}
.page-hero__breadcrumb .breadcrumb-icon {
  width: 12px;
  height: 12px;
}
.page-hero__breadcrumb-separator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-muted);
  opacity: .5;
}
.page-hero__breadcrumb-separator-icon {
  width: 12px;
  height: 12px;
}

/* H1 */
.page-hero__title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--clr-text);
  margin: 0 0 4px;
}

/* Açıklama */
.page-hero__subtitle {
  font-size: 12px;
  color: var(--clr-muted);
  max-width: 700px;
  margin: 0;
  line-height: 1.5;
}

/* ── Alias: mevcut sayfa-spesifik hero sectionları için ── */
/* Bu class'lar .page-hero ile birlikte kullanıldığında    */
/* veya tek başına kullanıldığında aynı görünümü alır.     */
.page-banner,
.ab-hero,
.ct-hero,
.tl-hero,
.bl-hero,
.archive-hero,
.ba-archive-hero,
.tst-archive-hero {
  background: linear-gradient(180deg, var(--clr-soft), #fff);
  border-bottom: 1px solid var(--clr-border);
  padding: 22px 0;
  text-align: left;
  position: relative;
}

/* Title aliases — tüm hero başlıkları ortak görünüm */
.page-hero__title,
.page-banner__title,
.ab-hero__title,
.ct-hero__title,
.tl-hero__title,
.bl-hero__title,
.archive-hero__title,
.ba-archive-hero__title,
.tst-archive-hero__title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--clr-text);
  margin: 0 0 4px;
}

/* Subtitle aliases */
.page-hero__subtitle,
.ab-hero__subtitle,
.ct-hero__subtitle,
.tl-hero__desc,
.bl-hero__desc,
.bl-hero__title + p,
.archive-hero__desc,
.ba-archive-hero__desc,
.tst-archive-hero__desc {
  font-size: 12px;
  color: var(--clr-muted);
  max-width: 700px;
  margin: 0;
  line-height: 1.5;
}

/* Inner container aliases */
.page-hero__inner,
.page-banner__inner,
.ab-hero__inner,
.ct-hero__inner,
.tl-hero__inner,
.bl-hero__inner,
.archive-hero__inner,
.ba-archive-hero__inner,
.tst-archive-hero__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}

/* Breadcrumb aliases */
.ab-hero__breadcrumb,
.ct-hero__breadcrumb,
.tl-hero__breadcrumb,
.bl-hero__breadcrumb,
.archive-hero__breadcrumb {
  font-size: 12px;
  font-weight: 500;
  color: var(--clr-muted);
  margin-left: auto;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  line-height: 1.4;
}

.archive-hero__inner > .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-left: auto;
  font-size: 13px;
  font-weight: 500;
  color: var(--clr-muted);
  line-height: 1.4;
}

/* ── Archive hero'daki arka plan overlay (tedaviler arşivi) ── */
.archive-hero__bg,
.page-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .12;
  z-index: 0;
}
.archive-hero__bg + .container,
.page-banner__bg + .container { position: relative; z-index: 1; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .page-hero,
  .page-banner,
  .ab-hero, .ct-hero, .tl-hero, .bl-hero,
  .archive-hero, .ba-archive-hero, .tst-archive-hero {
    padding: 22px 0;
  }
}
@media (max-width: 768px) {
  .page-hero,
  .page-banner,
  .ab-hero, .ct-hero, .tl-hero, .bl-hero,
  .archive-hero, .ba-archive-hero, .tst-archive-hero {
    padding: 20px 0;
  }
  .page-hero__inner,
  .page-banner__inner,
  .ab-hero__inner,
  .ct-hero__inner,
  .tl-hero__inner,
  .bl-hero__inner,
  .archive-hero__inner,
  .ba-archive-hero__inner,
  .tst-archive-hero__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .page-hero__breadcrumb {
    justify-content: flex-start;
    margin-left: 0;
    text-align: left;
    white-space: normal;
  }
  .page-hero__breadcrumb .breadcrumbs {
    justify-content: flex-start;
  }
  .archive-hero__inner > .breadcrumb,
  .ab-hero__breadcrumb,
  .ct-hero__breadcrumb,
  .tl-hero__breadcrumb,
  .bl-hero__breadcrumb,
  .archive-hero__breadcrumb {
    justify-content: flex-start;
    margin-left: 0;
    text-align: left;
  }
  .page-hero__title,
  .page-banner__title,
  .ab-hero__title, .ct-hero__title, .tl-hero__title,
  .bl-hero__title, .archive-hero__title,
  .ba-archive-hero__title, .tst-archive-hero__title {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .page-hero,
  .page-banner,
  .ab-hero, .ct-hero, .tl-hero, .bl-hero,
  .archive-hero, .ba-archive-hero, .tst-archive-hero {
    padding: 20px 0;
  }
  .page-hero__title,
  .page-banner__title,
  .ab-hero__title, .ct-hero__title, .tl-hero__title,
  .bl-hero__title, .archive-hero__title,
  .ba-archive-hero__title, .tst-archive-hero__title {
    font-size: 22px;
  }
  .page-hero__subtitle,
  .ab-hero__subtitle, .ct-hero__subtitle,
  .tl-hero__desc, .bl-hero__desc,
  .archive-hero__desc, .ba-archive-hero__desc,
  .tst-archive-hero__desc {
    font-size: 12px;
  }
}

/* ── 31-A. HAKKIMIZDA şablonu ────────────────────────────────── */

/* Hero — compact */
.ab-hero {
  background: linear-gradient(180deg, var(--clr-soft), #fff);
  border-bottom: 1px solid var(--clr-border);
  padding: 22px 0;
  text-align: left;
}
.ab-hero__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.ab-hero__breadcrumb {
  font-size: 12px;
  font-weight: 500;
  color: var(--clr-muted);
  margin-left: auto;
  text-align: right;
  line-height: 1.4;
}
.ab-hero__title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--clr-text);
  margin: 0 0 4px;
  line-height: 1.2;
}
.ab-hero__subtitle {
  font-size: 12px;
  color: var(--clr-muted);
  margin: 0;
  max-width: 540px;
  line-height: 1.5;
}

/* Intro — 2 kolon */
.ab-intro__grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: var(--sp-10);
  align-items: start;
}
.ab-intro__left { display: flex; flex-direction: column; gap: var(--sp-4); }

/* Doktor fotoğraf kartı */
.ab-doctor-card {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  background: var(--clr-primary-l);
}
.ab-doctor-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ab-doctor-image--placeholder { display: flex; }
.ab-doctor-image--placeholder svg { width: 100%; height: auto; }

/* Bilgi kartı */
.ab-info-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  padding: var(--sp-4);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.ab-info-card__row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--fs-sm);
  color: var(--clr-text);
  line-height: 1.5;
}
.ab-info-card__icon { flex-shrink: 0; color: var(--clr-primary); margin-top: 2px; }
.ab-info-card__row a {
  color: var(--clr-primary);
  text-decoration: none;
  font-weight: 500;
}
.ab-info-card__row a:hover { text-decoration: underline; }

/* Sağ içerik */
.ab-content { display: flex; flex-direction: column; gap: var(--sp-4); }

.ab-badge {
  display: inline-block;
  background: var(--clr-primary-l);
  color: var(--clr-primary);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: var(--r-full);
  border: 1px solid var(--clr-secondary);
  width: fit-content;
}

.ab-content__name {
  font-family: var(--font-heading);
  font-size: var(--fs-3xl);
  font-weight: 700;
  color: var(--clr-text);
  margin: 0;
  line-height: 1.2;
}
.ab-content__title {
  font-size: var(--fs-md);
  color: var(--clr-primary);
  font-weight: 500;
  margin: 0;
}
.ab-bio {
  font-size: var(--fs-base);
  line-height: 1.8;
  color: var(--clr-muted);
}
.ab-bio p { margin-bottom: var(--sp-3); }
.ab-bio p:last-child { margin-bottom: 0; }
.ab-bio h2 { font-size: var(--fs-xl); color: var(--clr-text); margin: var(--sp-5) 0 var(--sp-2); }
.ab-content__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-2);
}

/* Değer kartları bölümü */
.ab-values { background: var(--clr-soft); }
.ab-value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}
.ab-value-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  padding: var(--sp-6) var(--sp-5);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
}
.ab-value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ab-value-card__icon {
  width: 54px;
  height: 54px;
  border-radius: var(--r-full);
  background: var(--clr-primary-l);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-primary);
  flex-shrink: 0;
}
.ab-value-card__title { font-size: var(--fs-md); font-weight: 600; color: var(--clr-text); margin: 0; }
.ab-value-card__desc { font-size: var(--fs-sm); color: var(--clr-muted); margin: 0; line-height: 1.65; }

/* Yaklaşım bölümü */
.ab-approach { background: var(--clr-primary-l); }
.ab-approach__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-10);
  align-items: center;
}
.ab-approach .section-label {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--clr-primary);
  margin-bottom: var(--sp-3);
}
.ab-approach__title {
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--clr-text);
  margin: 0 0 var(--sp-4);
  line-height: 1.3;
}
.ab-approach__text { font-size: var(--fs-base); color: var(--clr-muted); line-height: 1.8; margin: 0; }
.ab-approach__right { display: flex; flex-direction: column; gap: var(--sp-5); }
.ab-approach__item { display: flex; gap: var(--sp-3); align-items: flex-start; }
.ab-approach__bullet {
  width: 36px;
  height: 36px;
  border-radius: var(--r-full);
  background: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--clr-primary);
  box-shadow: var(--shadow-sm);
}
.ab-approach__item-title { font-size: var(--fs-md); font-weight: 600; color: var(--clr-text); margin: 0 0 4px; }
.ab-approach__item-desc { font-size: var(--fs-sm); color: var(--clr-muted); margin: 0; line-height: 1.6; }

/* Responsive: 1024px */
@media (max-width: 1024px) {
  .ab-intro__grid    { grid-template-columns: 1fr; }
  .ab-intro__left    { max-width: 420px; margin: 0 auto; }
  .ab-doctor-card    { aspect-ratio: 3/2; max-height: 420px; }
  .ab-value-grid     { grid-template-columns: repeat(2, 1fr); }
  .ab-approach__grid { grid-template-columns: 1fr; gap: var(--sp-8); }
}
/* Responsive: 768px */
@media (max-width: 768px) {
  .ab-hero { padding: 20px 0; }
  .ab-hero__title { font-size: 22px; }
  .ab-content__name { font-size: var(--fs-2xl); }
  .ab-intro__left { max-width: 100%; }
  .ab-doctor-card { aspect-ratio: 4/3; }
}
/* Responsive: 480px */
@media (max-width: 480px) {
  .ab-value-grid { grid-template-columns: 1fr; }
  .ab-content__actions .btn { width: 100%; justify-content: center; }
  .ab-content__actions { flex-direction: column; }
}

/* Modern About page redesign */
.ab-page {
  --ab-row-gap: 60px;
  background: var(--clr-white);
  padding-block: var(--ab-row-gap);
}

body:not(.hk-front-page) .site-main > .ab-page:last-child {
  margin-bottom: 0;
}

body:not(.hk-front-page) .page-hero + .ab-page {
  padding-top: var(--ab-row-gap);
}

.ab-page .section-pad {
  padding-block: 0;
}

.ab-page .section-pad + .section-pad {
  margin-top: var(--ab-row-gap);
}

.ab-page .ab-stats + .ab-approach {
  margin-top: 0;
}

.ab-about-section {
  background: var(--clr-white);
}

.ab-about-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: var(--ab-row-gap);
  align-items: center;
}

.ab-about-content {
  max-width: 680px;
}

.ab-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 5px 12px;
  border: 1px solid var(--clr-border);
  border-radius: 999px;
  background: var(--clr-primary-l);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--clr-primary);
}

.ab-title {
  margin: 0 0 var(--sp-2);
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--clr-text);
}

.ab-subtitle {
  margin: 0 0 22px;
  font-size: var(--fs-md);
  font-weight: 500;
  color: var(--clr-primary);
}

.ab-text {
  margin-top: 0;
  color: var(--clr-muted);
  font-size: var(--fs-base);
  line-height: 1.85;
}

.ab-text p {
  margin: 0 0 18px;
}

.ab-text p:last-child {
  margin-bottom: 0;
}

.ab-text strong,
.ab-text b {
  color: var(--clr-primary);
  font-weight: 700;
}

.ab-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-6);
}

.ab-visual {
  position: relative;
  isolation: isolate;
}

.ab-visual::before {
  content: "";
  position: absolute;
  inset: 24px -18px -18px 42px;
  z-index: -1;
  background: var(--clr-primary-l);
  border-radius: 40px;
  transform: rotate(3deg);
}

.ab-image-card {
  position: relative;
  overflow: hidden;
  max-width: 520px;
  margin-left: auto;
  aspect-ratio: 4 / 4.6;
  border-radius: 32px;
  background: var(--clr-primary-l);
  box-shadow: var(--shadow-lg);
}

.ab-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ab-image--placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  color: var(--clr-primary);
  font-weight: 600;
  text-align: center;
}

.ab-floating-badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: calc(100% - 44px);
  padding: .75rem 1rem;
  border: 1px solid var(--clr-border);
  border-radius: var(--r-full);
  background: var(--clr-white);
  color: var(--clr-primary);
  box-shadow: var(--shadow-md);
  font-size: var(--fs-sm);
  font-weight: 700;
}

.ab-stats {
  background: #fff;
  margin-top: 100px;
  margin-bottom: 70px;
}

.ab-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ab-stat-card {
  padding: 28px 24px;
  text-align: center;
  border: 1px solid var(--clr-border);
  border-radius: 22px;
  background: var(--clr-white);
  box-shadow: 0 4px 18px rgba(31,26,24,.05);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.ab-stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(152,102,95,.35);
  box-shadow: 0 8px 26px rgba(31,26,24,.08);
}

.ab-stat-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--sp-3);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-full);
  background: var(--clr-primary-l);
  color: var(--clr-primary);
}

.ab-stat-number {
  margin-top: 12px;
  margin-bottom: .35rem;
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  color: var(--clr-primary);
}

.ab-stat-label {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--clr-muted);
}

.ab-page .ab-approach {
  background: #fff;
}

.ab-page .ab-approach__grid {
  gap: var(--ab-row-gap);
}

.ab-page .ab-approach__title {
  margin-bottom: var(--sp-3);
}

.ab-page .ab-approach__text {
  max-width: 640px;
}

.ab-page .ab-approach__right {
  gap: var(--sp-2);
}

.ab-page .ab-approach__item {
  padding: 20px 22px;
  border: 1px solid var(--clr-border);
  border-radius: 18px;
  background: var(--clr-soft);
}

@media (max-width: 1024px) {
  .ab-page {
    --ab-row-gap: 45px;
  }

  .ab-page .ab-stats + .ab-approach {
    margin-top: 0;
  }

  .ab-stats {
    margin-top: 75px;
    margin-bottom: 55px;
  }

  .ab-about-grid {
    grid-template-columns: 1fr;
    gap: var(--ab-row-gap);
  }
  .ab-title {
    font-size: 32px;
  }
  .ab-image-card {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .ab-page {
    --ab-row-gap: 35px;
  }

  .ab-page .ab-stats + .ab-approach {
    margin-top: 0;
  }

  .ab-stats {
    margin-top: 55px;
    margin-bottom: 40px;
  }

  .ab-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ab-about-grid {
    grid-template-columns: 1fr;
  }
  .ab-about-content {
    max-width: none;
  }
  .ab-visual {
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
  }
  .ab-page .ab-approach__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  .features-grid,
  .approach-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .ab-actions {
    flex-direction: column;
  }
  .ab-title {
    font-size: 28px;
  }
  .ab-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .ab-stats-grid {
    grid-template-columns: 1fr;
  }
  .ab-stat-card {
    padding: 26px;
  }
  .ab-stat-number {
    font-size: 36px;
  }
  .ab-floating-badge {
    right: 14px;
    bottom: 14px;
    max-width: calc(100% - 28px);
  }
}

/* -- 31-B. ILETISIM sablonu ---------------------------------------- */

/* İletişim kartları grid */
.ct-cards__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}
.ct-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid #f0e8f5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-3);
  transition: transform .2s, box-shadow .2s;
}
.ct-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.ct-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #f9f3fb, #ede0f5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-primary, #98665f);
  flex-shrink: 0;
}
.ct-card--whatsapp .ct-card__icon { color: #25D366; }
.ct-card__body { flex: 1; }
.ct-card__label {
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--clr-text-muted, #888);
  margin: 0 0 var(--space-1);
}
.ct-card__value {
  font-size: var(--fs-md);
  font-weight: 500;
  color: var(--clr-heading);
  text-decoration: none;
  word-break: break-word;
}
.ct-card__value:hover { color: var(--clr-primary, #98665f); }
.ct-card__value--address { font-style: normal; }
.ct-card__value--address br { display: block; height: 2px; }

/* Randevu + Çalışma saatleri */
.ct-appt--alt { background: var(--clr-surface, #faf6f4); }
.ct-appt__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: start;
}
.ct-appt__title {
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  margin: 0 0 var(--space-3);
}
.ct-appt__desc {
  color: var(--clr-text-muted, #666);
  margin: 0 0 var(--space-5);
}
.ct-hours {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid #f0e8f5;
}
.ct-hours__icon {
  color: var(--clr-primary, #98665f);
  margin-bottom: var(--space-3);
}
.ct-hours__title {
  font-size: var(--fs-lg);
  font-weight: 600;
  margin: 0 0 var(--space-4);
  color: var(--clr-heading);
}
.ct-hours__list { display: flex; flex-direction: column; gap: var(--space-2); }
.ct-hours__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-2) 0;
  border-bottom: 1px solid #f5f5f5;
  font-size: var(--fs-sm);
}
.ct-hours__row:last-child { border-bottom: none; }
.ct-hours__day { font-weight: 500; color: var(--clr-heading); }
.ct-hours__time { color: var(--clr-text-muted, #666); }
.ct-hours__row--full { font-size: var(--fs-sm); color: var(--clr-text-muted, #666); }

/* Form alanı */
.ct-form__inner { max-width: 720px; margin: 0 auto; }
.ct-form__title {
  font-size: var(--fs-2xl);
  font-weight: 700;
  text-align: center;
  margin: 0 0 var(--space-8);
}

/* Harita */
.ct-map { line-height: 0; }
.ct-map__embed iframe { display: block; width: 100%; }
.ct-map__link-wrap {
  padding: var(--space-6);
  text-align: center;
  background: var(--clr-surface, #faf6f4);
}
.ct-map__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

/* Yeni iletişim sayfası düzeni */
.ct-page {
  background: var(--clr-white);
}

.ct-main {
  background: var(--clr-white);
}

.ct-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.ct-section-title {
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  font-weight: 700;
  line-height: 1.25;
  color: var(--clr-text);
  margin: 0 0 var(--sp-4);
}

.ct-info-list {
  display: grid;
  gap: var(--sp-3);
}

.ct-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  padding: 20px;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.ct-info-item:hover {
  border-color: var(--clr-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.ct-info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-full);
  background: var(--clr-primary-l);
  color: var(--clr-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ct-info-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ct-info-label {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--clr-muted);
}

.ct-info-value {
  font-size: var(--fs-md);
  font-weight: 500;
  color: var(--clr-text);
  line-height: 1.6;
  text-decoration: none;
  overflow-wrap: anywhere;
}

a.ct-info-value:hover {
  color: var(--clr-primary);
}

.ct-form-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  padding: 32px;
}

.ct-form-card p {
  color: var(--clr-muted);
  line-height: 1.7;
  margin: 0 0 var(--sp-3);
}

.ct-form-card p:last-child {
  margin-bottom: 0;
}

.ct-form-card input,
.ct-form-card textarea,
.ct-form-card select {
  width: 100%;
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  padding: .85rem 1rem;
  background: var(--clr-white);
  color: var(--clr-text);
}

.ct-form-card input:focus,
.ct-form-card textarea:focus,
.ct-form-card select:focus {
  outline: none;
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(152,102,95,.12);
}

.ct-map-section {
  margin-top: 56px;
  margin-bottom: var(--hk-content-edge-space);
}

.ct-map-frame {
  width: 100%;
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--clr-border);
  background: var(--clr-soft);
}

.ct-map-frame iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.ct-map-link {
  background: var(--clr-soft);
  border: 1px solid var(--clr-border);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  padding: var(--sp-6);
  text-align: center;
}

@media (max-width: 1024px) {
  .ct-grid {
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .ct-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .ct-info-item {
    padding: 16px;
    border-radius: 16px;
  }
  .ct-info-icon {
    width: 40px;
    height: 40px;
  }
  .ct-form-card {
    padding: 22px;
    border-radius: 20px;
  }
  .ct-map-section {
    margin-top: 40px;
  }
  .ct-map-frame,
  .ct-map-frame iframe {
    height: 340px;
  }
}

/* Randevu sayfası düzeni */
.appointment-page {
  background: var(--clr-white);
}

.appointment-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, .7fr);
  gap: 48px;
  align-items: start;
}

.appointment-main,
.appointment-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: 28px;
  box-shadow: var(--shadow-md);
}

.appointment-main {
  padding: 40px;
}

.appointment-sidebar {
  position: sticky;
  top: calc(var(--header-h, 88px) + 24px);
}

.appointment-card {
  padding: 32px;
}

.appointment-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--clr-primary-l);
  color: var(--clr-primary);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.appointment-title,
.appointment-card__title {
  margin: 0;
  color: var(--clr-text);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

.appointment-title {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.appointment-card__title {
  margin-bottom: 12px;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
}

.appointment-description,
.appointment-card__description {
  color: var(--clr-muted);
  line-height: 1.75;
}

.appointment-description {
  max-width: 720px;
  margin: 0 0 28px;
  font-size: var(--fs-lg);
}

.appointment-card__description {
  margin: 0 0 24px;
}

.appointment-form {
  margin-top: 28px;
}

.appointment-empty-state {
  padding: 18px 20px;
  border: 1px dashed rgba(152,102,95,.32);
  border-radius: 18px;
  background: var(--clr-soft);
  color: var(--clr-muted);
  line-height: 1.65;
}

.appointment-contact-list {
  display: grid;
  gap: 14px;
}

.appointment-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(152,102,95,.14);
  border-radius: 18px;
  background: linear-gradient(135deg, var(--clr-white), var(--clr-soft));
}

.appointment-contact-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--clr-primary-l);
  color: var(--clr-primary);
}

.appointment-contact-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.appointment-contact-label {
  color: var(--clr-muted);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.appointment-contact-value {
  color: var(--clr-text);
  font-size: var(--fs-sm);
  font-weight: 600;
  line-height: 1.6;
  text-decoration: none;
  overflow-wrap: anywhere;
}

a.appointment-contact-value:hover {
  color: var(--clr-primary);
}

/* Appointment CF7 Layout */
.appointment-page .cf7-row {
  display: flex;
  gap: 20px;
  margin-bottom: 18px;
}

.appointment-page .cf7-col {
  flex: 1;
}

.appointment-page .cf7-col-full {
  width: 100%;
}

.appointment-page .wpcf7 form {
  display: grid;
  gap: 18px;
}

.appointment-page .wpcf7 p {
  margin: 0;
}

.appointment-page .wpcf7 label {
  display: grid;
  gap: 8px;
  color: var(--clr-text);
  font-weight: 600;
}

.appointment-page .wpcf7 input,
.appointment-page .wpcf7 textarea,
.appointment-page .wpcf7 select {
  width: 100%;
  border: 1px solid var(--clr-border);
  border-radius: 14px;
  padding: 14px 16px;
  background: var(--clr-white);
  color: var(--clr-text);
  font: inherit;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.appointment-page .wpcf7 textarea {
  min-height: 150px;
  resize: vertical;
}

.appointment-page .wpcf7-acceptance {
  margin-top: 24px;
  margin-bottom: 18px;
}

.appointment-page .wpcf7-list-item {
  margin: 0;
}

.appointment-page .wpcf7-list-item label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 15px;
  line-height: 1.6;
  color: var(--clr-text);
}

.appointment-page .wpcf7-list-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  flex-shrink: 0;
  accent-color: var(--clr-primary);
}

.appointment-page .wpcf7-list-item a {
  color: var(--clr-primary);
  font-weight: 600;
  text-decoration: none;
}

.appointment-page .wpcf7-list-item a:hover,
.appointment-page .wpcf7-list-item a:focus-visible {
  text-decoration: underline;
}

.appointment-page .wpcf7 input:focus,
.appointment-page .wpcf7 textarea:focus,
.appointment-page .wpcf7 select:focus {
  outline: none;
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(152,102,95,.13);
}

.appointment-page .wpcf7-submit,
.appointment-page .wpcf7 input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-height: 52px;
  padding: 14px 28px;
  border: 0;
  border-radius: 999px;
  background: var(--clr-primary);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.appointment-page .wpcf7-submit:hover,
.appointment-page .wpcf7-submit:focus-visible,
.appointment-page .wpcf7 input[type="submit"]:hover,
.appointment-page .wpcf7 input[type="submit"]:focus-visible {
  background: var(--clr-primary-d);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.appointment-page .wpcf7-not-valid-tip,
.appointment-page .wpcf7-response-output {
  font-size: var(--fs-sm);
}

@media (max-width: 1024px) {
  .appointment-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .appointment-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .appointment-page .cf7-row {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 640px) {
  .appointment-main,
  .appointment-card {
    padding: 24px;
    border-radius: 22px;
  }
  .appointment-description {
    font-size: var(--fs-md);
  }
  .appointment-contact-item {
    padding: 14px;
  }
}

/* -- 31-C. TEDAVILER GIRIS sablonu --------------------------------- */

/* Kategori kartları */
.tl-cats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-4);
}
.tl-cat-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.tl-cat-card:hover {
  border-color: var(--clr-primary, #98665f);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.tl-cat-card--active {
  border-color: var(--clr-primary, #98665f);
  background: linear-gradient(135deg, #f9f3fb, #ede0f5);
}
.tl-cat-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #f9f3fb, #ede0f5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-primary, #98665f);
}
.tl-cat-card--active .tl-cat-card__icon {
  background: var(--clr-primary, #98665f);
  color: #fff;
}
.tl-cat-card__name {
  font-size: var(--fs-md);
  font-weight: 600;
  margin: 0;
  color: var(--clr-heading);
}
.tl-cat-card__desc {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted, #888);
  margin: 0;
}
.tl-cat-card__count {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--clr-primary, #98665f);
  background: #f9f3fb;
  border-radius: var(--radius-full);
  padding: 2px 10px;
}
.tl-cat-card--all .tl-cat-card__count { display: none; }

/* Boş sonuç */
.tl-no-results,
.bl-no-results {
  text-align: center;
  padding: var(--space-12) var(--space-4);
  color: var(--clr-text-muted, #888);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}
.tl-no-results svg,
.bl-no-results svg { opacity: .3; }

/* -- 31-D. BLOG GIRIS sablonu -------------------------------------- */

/* Öne çıkan yazı */
.bl-featured { background: var(--clr-surface, #faf6f4); }
.bl-featured__badge {
  display: inline-flex;
  align-items: center;
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--clr-primary, #98665f);
  background: #f9f3fb;
  border-radius: var(--radius-full);
  padding: 4px 14px;
  margin-bottom: var(--space-5);
}
.bl-featured__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: center;
}
.bl-featured__thumb {
  display: block;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16/10;
}
.bl-featured__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.bl-featured__thumb:hover .bl-featured__img { transform: scale(1.04); }
.bl-featured__content { display: flex; flex-direction: column; gap: var(--space-3); }
.bl-featured__title {
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}
.bl-featured__title a {
  color: var(--clr-heading);
  text-decoration: none;
}
.bl-featured__title a:hover { color: var(--clr-primary, #98665f); }
.bl-featured__meta { font-size: var(--fs-sm); }
.bl-featured__excerpt {
  color: var(--clr-text-muted, #666);
  line-height: 1.7;
  margin: 0;
}

/* =================================================================== */
   32. PAGE TEMPLATES — Responsive
   =================================================================== */

@media (max-width: 1024px) {
  .ab-profile__grid {
    grid-template-columns: 260px 1fr;
    gap: var(--space-8);
  }
  .ab-values__grid     { grid-template-columns: repeat(2, 1fr); }
  .ct-cards__grid      { grid-template-columns: repeat(2, 1fr); }
  .ct-appt__inner      { grid-template-columns: 1fr; gap: var(--space-6); }
  .bl-featured__grid   { grid-template-columns: 1fr; gap: var(--space-6); }
  .bl-featured__thumb  { max-width: 600px; }
}

@media (max-width: 768px) {
  .ab-hero__title,
  .ct-hero__title,
  .tl-hero__title,
  .bl-hero__title {
    font-size: 22px;
  }
  .ab-profile__grid {
    grid-template-columns: 1fr;
  }
  .ab-profile__photo-wrap {
    max-width: 280px;
    margin: 0 auto;
  }
  .ab-values__grid     { grid-template-columns: repeat(2, 1fr); gap: var(--space-4); }
  .ct-cards__grid      { grid-template-columns: 1fr 1fr; }
  .tl-cats__grid       { grid-template-columns: repeat(2, 1fr); }
  .bl-featured__grid   { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .ab-hero__title,
  .ct-hero__title,
  .tl-hero__title,
  .bl-hero__title {
    font-size: 22px;
  }
  .ab-values__grid     { grid-template-columns: 1fr; }
  .ct-cards__grid      { grid-template-columns: 1fr; }
  .ct-appt__inner      { gap: var(--space-5); }
  .tl-cats__grid       { grid-template-columns: 1fr 1fr; }
}

/* --------------------------------------------------
   SINGLE TEDAVI - CONTENT RESET
--------------------------------------------------- */

.single-tedavi .st-editor,
.single-tedavi .st-content,
.single-tedavi .entry-content{
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.single-tedavi .entry-content p{
    font-size: 1rem;
    line-height: 1.9;
    color: var(--clr-text);
    margin-bottom: 1.5rem;
}

.single-tedavi .entry-content li{
    font-size: 1rem;
    line-height: 1.9;
}

.single-tedavi .entry-content{
    font-size: 1rem;
}

.single-tedavi .entry-content h2{
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.single-tedavi .entry-content h3{
    margin-top: 2.5rem;
    margin-bottom: .875rem;
}
