/* ============================================================
   Doredent — Global CSS
   ============================================================ */

/* ----- Brand variables ----- */
:root {
    /* Renkler */
    --c-primary:        #2D2545;
    --c-primary-dark:   #1F1933;
    --c-accent:         #9C6BFF;
    --c-accent-soft:    #E8E2F5;

    --c-text:           #2D2545;
    --c-text-muted:     #5A5470;
    --c-text-soft:      #8A8499;

    --c-bg:             #FFFFFF;
    --c-bg-alt:         #FAFAFC;
    --c-border:         #E8E4F0;
    --c-border-soft:    #F0EEF5;

    /* Tipografi */
    --font-sans:        'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Layout */
    --radius:           8px;
    --radius-sm:        4px;
    --container:        1200px;
    --container-sm:     800px;
    --header-h:         72px;
}

/* ----- Roboto via Google Fonts ----- */
/* index.php başında <link> ile yüklenir, burada @import yok (performans) */

/* ----- Reset / normalize ----- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
    color: var(--c-text);
    background: var(--c-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--c-accent); text-decoration: none; }
a:hover { text-decoration: underline; }

button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-sans);
    color: var(--c-text);
    margin: 0 0 0.6em;
    line-height: 1.3;
    font-weight: 700;
}
h1 { font-size: 30px; line-height: 1.2; }
h2 { font-size: 24px; }
h3 { font-size: 18px; }
h4 { font-size: 16px; font-weight: 500; }

p  { margin: 0 0 1em; }

/* Bölüm etiketi (uppercase küçük başlık) — her sayfada kullanılan stil */
.dore-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--c-accent);
    margin-bottom: 14px;
    display: block;
}

/* ----- Container ----- */
.dore-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 22px;
}
.dore-container--sm {
    max-width: var(--container-sm);
}

/* ----- Bölüm ----- */
.dore-section {
    padding: 56px 0;
}
.dore-section--alt {
    background: var(--c-bg-alt);
}
.dore-section--dark {
    background: var(--c-primary);
    color: #FFF;
}
.dore-section--dark h1,
.dore-section--dark h2,
.dore-section--dark h3 {
    color: #FFF;
}
.dore-section--dark p {
    color: rgba(255, 255, 255, 0.75);
}

/* ----- Buton ----- */
.dore-btn {
    display: inline-block;
    padding: 14px 22px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    border-radius: var(--radius);
    border: 1.5px solid transparent;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s;
    cursor: pointer;
    text-decoration: none;
    line-height: 1.2;
}
.dore-btn--primary {
    background: var(--c-primary);
    color: #FFF;
}
.dore-btn--primary:hover {
    background: var(--c-primary-dark);
    color: #FFF;
    text-decoration: none;
}
.dore-btn--accent {
    background: var(--c-accent);
    color: #FFF;
}
.dore-btn--accent:hover {
    background: #8557E8;
    color: #FFF;
    text-decoration: none;
}
.dore-btn--outline {
    background: transparent;
    color: var(--c-primary);
    border-color: var(--c-primary);
}
.dore-btn--outline:hover {
    background: var(--c-primary);
    color: #FFF;
    text-decoration: none;
}
.dore-btn--full {
    display: block;
    width: 100%;
}

/* ----- Görünmez (sr-only) ----- */
.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================================
   HEADER — sticky, dropdown menülü, mobil drawer
   ============================================================ */
.dore-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    height: 72px;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.dore-header.is-scrolled,
html.hdr-scrolled .dore-header {
    border-bottom-color: var(--c-border-soft);
    box-shadow: 0 2px 16px rgba(45, 37, 69, 0.06);
}
.dore-header__inner {
    height: 100%;
    max-width: 100%;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.dore-header__logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    line-height: 0;
    flex-shrink: 0;
}
.dore-header__logo img {
    height: 34px;
    width: auto;
    display: block;
}
.dore-header__logo:hover { text-decoration: none; }

/* === DESKTOP NAV === */
.dore-header__nav { display: none; }
.dore-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}
.dore-nav__item { position: relative; }
.dore-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 300;
    color: var(--c-text);
    background: none;
    border: 0;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
    line-height: 1;
}
.dore-nav__link:hover {
    background: rgba(156, 107, 255, 0.06);
    color: var(--c-accent);
    text-decoration: none;
}
.dore-nav__item--active > .dore-nav__link {
    color: var(--c-accent);
    font-weight: 400;
}
.dore-nav__caret {
    transition: transform 0.2s ease;
    opacity: 0.6;
}
.dore-nav__item--has-dropdown:hover .dore-nav__caret,
.dore-nav__item.is-open .dore-nav__caret {
    transform: rotate(180deg);
    opacity: 1;
}
.dore-nav__badge {
    display: inline-flex;
    align-items: center;
    background: rgba(46, 160, 67, 0.12);
    color: #2da44e;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 8px;
    letter-spacing: 0.3px;
    line-height: 1.4;
}

/* Dropdown */
.dore-nav__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 280px;
    max-width: min(420px, calc(100vw - 40px));
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(45, 37, 69, 0.14), 0 0 0 1px rgba(45, 37, 69, 0.04);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
    z-index: 110;
}
/* Megamenu — geniş dropdown, nav item'ın sol kenarından başlar */
.dore-nav__item--megamenu .dore-nav__dropdown {
    left: 0;
    right: auto;
    min-width: 760px;
    max-width: calc(100vw - 64px);
    transform: translateY(-6px);
}
.dore-nav__item--megamenu:hover .dore-nav__dropdown,
.dore-nav__item--megamenu.is-open .dore-nav__dropdown {
    transform: translateY(0);
}
.dore-nav__item--has-dropdown:hover .dore-nav__dropdown,
.dore-nav__item.is-open .dore-nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s;
}
/* Hover köprüsü - dropdown ile link arasındaki boşlukta hover kaybolmasın */
.dore-nav__item--has-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 8px;
}
.dore-nav__dropdown ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.dore-nav__dropdown a {
    display: block;
    padding: 10px 14px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--c-text);
    transition: background 0.15s ease;
}
.dore-nav__dropdown a:hover {
    background: rgba(156, 107, 255, 0.06);
    text-decoration: none;
}
.dore-nav__dropdown-label {
    display: block;
    font-size: 14px;
    font-weight: 300;
    color: var(--c-primary);
    margin-bottom: 2px;
}
.dore-nav__dropdown-desc {
    display: block;
    font-size: 12px;
    font-weight: 300;
    color: var(--c-text-muted);
    line-height: 1.4;
}
.dore-nav__dropdown a:hover .dore-nav__dropdown-label {
    color: var(--c-accent);
}

/* === MEGAMENU — Tedaviler dropdown === */
.dore-megamenu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    transform: translateY(-6px);
    width: 720px;
    max-width: calc(100vw - 40px);
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(45, 37, 69, 0.14), 0 0 0 1px rgba(45, 37, 69, 0.04);
    padding: 24px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
    z-index: 110;
}
.dore-nav__item--megamenu:hover .dore-megamenu,
.dore-nav__item--megamenu.is-open .dore-megamenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s;
}
.dore-megamenu__eyebrow {
    font-size: 10px;
    font-weight: 500;
    color: var(--c-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.dore-megamenu__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}
.dore-megamenu__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--c-primary);
    transition: background 0.15s ease;
}
.dore-megamenu__item:hover {
    background: rgba(156, 107, 255, 0.06);
    text-decoration: none;
}
.dore-megamenu__num {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: #F4F0FF;
    color: var(--c-accent);
    display: grid;
    place-items: center;
    font-size: 10px;
    font-weight: 700;
    flex-shrink: 0;
}
.dore-megamenu__name {
    font-size: 13.5px;
    font-weight: 400;
    color: var(--c-primary);
}
.dore-megamenu__viewall {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
    padding: 10px 14px;
    border: 1px dashed #E5DBFF;
    border-radius: 8px;
    font-size: 12.5px;
    color: var(--c-accent);
    font-weight: 500;
    text-decoration: none;
    transition: background 0.15s ease;
}
.dore-megamenu__viewall:hover {
    background: rgba(156, 107, 255, 0.06);
    text-decoration: none;
}
.dore-megamenu__featured {
    background: linear-gradient(160deg, #2D2545 0%, #4A3B6E 100%);
    border-radius: 10px;
    padding: 20px;
    color: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: transform 0.2s ease;
}
.dore-megamenu__featured:hover {
    transform: translateY(-2px);
    text-decoration: none;
    color: #fff;
}
.dore-megamenu__featured::after {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 130px;
    height: 130px;
    background: radial-gradient(circle, rgba(156, 107, 255, 0.3) 0%, transparent 70%);
    pointer-events: none;
}
.dore-megamenu__featured-eyebrow {
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #C8B8F0;
    margin-bottom: 8px;
    position: relative;
}
.dore-megamenu__featured-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 6px;
    position: relative;
    color: #fff;
}
.dore-megamenu__featured-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 14px;
    position: relative;
    flex: 1;
}
.dore-megamenu__featured-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #fff;
    font-weight: 500;
    position: relative;
}

/* Dar ekranda mega menü tek kolona düşsün */
@media (max-width: 1100px) {
    .dore-megamenu {
        width: 560px;
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .dore-megamenu__list {
        grid-template-columns: 1fr 1fr;
    }
}

/* === HEADER CTA BUTTONS — 2 bölmeli, ikon kutusu + ayraç + yazı === */
.dore-header__cta-group {
    display: none;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.dore-header__btn {
    display: inline-flex;
    align-items: stretch;
    padding: 0;
    font-size: 16px;
    font-weight: 300;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    line-height: 1;
    border: 0;
    cursor: pointer;
    font-family: inherit;
    overflow: hidden;
}
.dore-header__btn svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    padding: 11px 14px;
    box-sizing: content-box;
    align-self: stretch;
}
.dore-header__btn-label {
    display: inline-flex;
    align-items: center;
    padding: 0 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
}

/* Randevu — ana koyu mor; ikon bölmesi daha da koyu */
.dore-header__btn--outline {
    background: var(--c-primary);
    color: #fff;
}
.dore-header__btn--outline svg {
    background: rgba(0, 0, 0, 0.18);
    color: #fff;
}
.dore-header__btn--outline:hover {
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(45, 37, 69, 0.3);
}

/* İletişim — accent mor; ikon bölmesi daha açık (lavanta) */
.dore-header__btn--solid {
    background: var(--c-accent);
    color: #fff;
}
.dore-header__btn--solid svg {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}
.dore-header__btn--solid:hover {
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(156, 107, 255, 0.4);
}

/* === HAMBURGER === */
.dore-header__menu-btn {
    background: transparent;
    border: 0;
    padding: 10px 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    margin-left: auto;
}
.dore-header__menu-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--c-primary);
    letter-spacing: 0.2px;
}
.dore-header__menu-bars {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.dore-header__menu-bars span {
    width: 22px;
    height: 2px;
    background: var(--c-primary);
    border-radius: 1px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.dore-header__menu-btn.is-active .dore-header__menu-bars span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.dore-header__menu-btn.is-active .dore-header__menu-bars span:nth-child(2) {
    opacity: 0;
}
.dore-header__menu-btn.is-active .dore-header__menu-bars span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* === MOBILE DRAWER === */
.dore-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 10, 30, 0.5);
    backdrop-filter: blur(4px);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}
.dore-mobile-overlay.is-open {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease;
}
.dore-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(360px, 88vw);
    background: #fff;
    z-index: 201;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.32, 0.72, 0.32, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 32px rgba(45, 37, 69, 0.15);
}
.dore-mobile-menu.is-open { transform: translateX(0); }
.dore-mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--c-border-soft);
    flex-shrink: 0;
}
.dore-mobile-menu__logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}
.dore-mobile-menu__logo img {
    height: 32px;
    width: auto;
    display: block;
}
.dore-mobile-menu__close {
    background: none;
    border: 0;
    padding: 8px;
    cursor: pointer;
    color: var(--c-text);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background 0.15s ease;
}
.dore-mobile-menu__close:hover {
    background: rgba(156, 107, 255, 0.06);
    color: var(--c-accent);
}
.dore-mobile-menu__nav {
    flex: 1;
    overflow-y: auto;
    padding: 8px 0;
}
.dore-mobile-menu__nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.dore-mobile-menu__nav > ul > li > a,
.dore-mobile-menu__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 20px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 300;
    color: var(--c-text);
    text-decoration: none;
    background: none;
    border: 0;
    cursor: pointer;
    text-align: left;
    transition: background 0.15s ease;
}
.dore-mobile-menu__nav > ul > li > a:hover,
.dore-mobile-menu__toggle:hover {
    background: rgba(156, 107, 255, 0.04);
    color: var(--c-accent);
    text-decoration: none;
}
.dore-mobile-menu__toggle svg {
    transition: transform 0.2s ease;
    opacity: 0.5;
}
.dore-mobile-menu__item--accordion.is-open .dore-mobile-menu__toggle svg {
    transform: rotate(180deg);
}
.dore-mobile-menu__sub {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    background: rgba(156, 107, 255, 0.03);
}
.dore-mobile-menu__item--accordion.is-open .dore-mobile-menu__sub {
    max-height: 500px;
}
.dore-mobile-menu__sub a {
    display: block;
    padding: 11px 20px 11px 40px;
    font-size: 14px;
    font-weight: 300;
    color: var(--c-text-muted);
    text-decoration: none;
}
.dore-mobile-menu__sub a:hover {
    color: var(--c-accent);
    text-decoration: none;
}
.dore-mobile-menu__footer {
    padding: 20px 24px calc(20px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--c-border-soft);
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
    background: var(--c-bg);
}
.dore-mobile-menu__footer .dore-header__btn {
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 15px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
}
.dore-mobile-menu__footer .dore-header__btn svg {
    background: transparent !important;
    padding: 0;
    width: 18px;
    height: 18px;
}
.dore-mobile-menu__footer .dore-header__btn-label {
    padding: 0;
    border: 0;
    flex: 0 !important;
    justify-content: flex-start !important;
}

/* DESKTOP THRESHOLD */
@media (min-width: 980px) {
    .dore-header__nav { display: block; }
    .dore-header__cta-group { display: flex; }
    .dore-header__menu-btn { display: none; }
}
@media (max-width: 979px) {
    .dore-header__inner { gap: 12px; }
}

/* ============================================================
   ANASAYFA — bölüm stilleri
   ============================================================ */
/* Hero — full-width split (sol mor-gri panel + büyük foto sağda + alıntı bandı) */
.dore-home-hero {
    display: grid;
    grid-template-columns: 1fr;
    background: #F7F5FB;
    overflow: hidden;
}
.dore-home-hero__left {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 56px 22px;
    background: #F7F5FB;
}
.dore-home-hero__left-inner {
    width: 100%;
    max-width: 540px;
}
.dore-home-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: var(--c-text-muted);
    margin-bottom: 26px;
}
.dore-home-hero__eyebrow strong {
    background: var(--c-primary);
    color: #FFF;
    padding: 5px 11px;
    border-radius: 4px;
    font-weight: 500;
    letter-spacing: 1.2px;
    font-size: 11px;
}
.dore-home-hero__title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--c-primary);
    letter-spacing: -1px;
    margin: 0 0 28px;
}
.dore-home-hero__title u {
    text-decoration: none;
}
.dore-home-hero__lede {
    font-size: 17px;
    line-height: 1.55;
    color: var(--c-text-muted);
    margin: 0 0 36px;
    max-width: 520px;
    font-weight: 300;
}
.dore-home-hero__lede strong {
    font-weight: 500;
    color: var(--c-primary);
}
.dore-home-hero__cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
}
.dore-home-hero__cta .dore-btn--accent {
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 6px;
}
.dore-home-hero__phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--c-text-muted);
}
.dore-home-hero__phone:hover {
    text-decoration: none;
}
.dore-home-hero__phone-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid var(--c-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--c-primary);
    flex-shrink: 0;
}
.dore-home-hero__phone-icon svg {
    width: 16px;
    height: 16px;
}
.dore-home-hero__phone-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.2;
}
.dore-home-hero__phone-label {
    font-size: 13px;
    color: var(--c-text);
    font-weight: 400;
}
.dore-home-hero__phone strong {
    color: var(--c-accent);
    font-weight: 500;
    font-size: 14px;
}
.dore-home-hero__right {
    position: relative;
    display: flex;
    align-items: stretch;
    min-height: 360px;
    background: #F7F5FB;
}
.dore-home-hero__img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    object-position: center;
    display: block;
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
}
/* Alıntı kutusu — sağ tarafın alt bandı (canlıdaki gibi tam genişlik) */
.dore-home-hero__quote {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: var(--c-primary);
    color: #FFF;
    padding: 22px 32px;
    font-size: 15px;
    line-height: 1.55;
    font-weight: 300;
}

@media (min-width: 800px) {
    .dore-home-hero {
        grid-template-columns: 1fr 1fr;
        min-height: calc(100vh - var(--header-h));
    }
    .dore-home-hero__left {
        padding: 80px 60px;
    }
    .dore-home-hero__title {
        font-size: 56px;
        line-height: 1.05;
        margin-bottom: 32px;
    }
    .dore-home-hero__lede {
        font-size: 19px;
        margin-bottom: 40px;
    }
    .dore-home-hero__right {
        min-height: calc(100vh - var(--header-h));
    }
    .dore-home-hero__quote {
        padding: 28px 40px;
        font-size: 16px;
    }
}

@media (min-width: 1200px) {
    .dore-home-hero__title {
        font-size: 60px;
    }
}

/* Stat satırı */
.dore-stats {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
    margin: 24px 0 28px;
}
.dore-stats__item {
    flex: 0 0 auto;
}
.dore-stats__num {
    font-size: 28px;
    font-weight: 700;
    color: var(--c-primary);
    line-height: 1;
}
.dore-stats__label {
    font-size: 12px;
    color: var(--c-text-soft);
    margin-top: 6px;
}

/* Liste (Hakkımızda 4 madde) */
.dore-list--inline {
    list-style: none;
    margin: 0; padding: 0;
}
.dore-list--inline li {
    padding: 16px 0;
    border-bottom: 1px solid var(--c-border);
}
.dore-list--inline li:last-child { border-bottom: 0; }
.dore-list--inline h3 {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 6px;
}
.dore-list--inline p {
    font-size: 13px;
    color: var(--c-text-muted);
    margin: 0;
    line-height: 1.6;
}

/* Tedavi kartları (anasayfa) */
.dore-treatment-card {
    margin-bottom: 28px;
}
.dore-treatment-card__visual {
    height: 200px;
    background: var(--c-accent-soft);
    background-size: cover;
    background-position: center;
    border-radius: var(--radius);
    margin-bottom: 14px;
}
.dore-treatment-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}
.dore-treatment-card p {
    font-size: 13px;
    color: var(--c-text-muted);
    margin-bottom: 12px;
}
.dore-treatment-card__more {
    font-size: 13px;
    color: var(--c-accent);
    font-weight: 500;
}

@media (min-width: 800px) {
    .dore-treatments-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    .dore-treatment-card { margin-bottom: 0; }
}

/* Karanlık liste (Şeffaf fiyatlandırma bölümü) */
.dore-list--dark {
    list-style: none;
    margin: 0; padding: 0;
}
.dore-list--dark li {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.dore-list--dark li:last-child { border-bottom: 0; }
.dore-list--dark h3 {
    color: #FFF;
    font-size: 15px;
    font-weight: 500;
    margin: 0 0 6px;
}
.dore-list--dark p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin: 0;
    line-height: 1.6;
}

/* Blog kart (anasayfa) */
.dore-post-card {
    margin-bottom: 24px;
}
.dore-post-card__visual {
    height: 160px;
    background: var(--c-accent-soft);
    border-radius: var(--radius);
    margin-bottom: 12px;
}
.dore-post-card__meta {
    font-size: 11px;
    color: var(--c-text-soft);
    margin-bottom: 6px;
}
.dore-post-card h3 {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
}
.dore-post-card h3 a {
    color: var(--c-text);
    text-decoration: none;
}
.dore-post-card h3 a:hover { color: var(--c-accent); }

@media (min-width: 800px) {
    .dore-posts-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
    .dore-post-card { margin-bottom: 0; }
}

/* ============================================================
   ORTAK BİLEŞENLER
   Birden fazla sayfada paylaşılan UI parçaları.
   Eklenen her yeni sayfada burayı önce kontrol et — varsa kullan.
   ============================================================ */

/* ----- Renk genişletmeleri (status, ikon arka planları) ----- */
:root {
    --c-success:        #2DA44E;
    --c-success-bg:     rgba(52, 199, 89, 0.10);
    --c-success-dot:    #34C759;
    --c-danger:         #E53935;
    --c-danger-bg:      rgba(229, 57, 53, 0.08);
    --c-whatsapp:       #128C7E;
    --c-whatsapp-bg:    rgba(37, 211, 102, 0.12);
    --c-accent-glow:    rgba(156, 107, 255, 0.25);
    --c-accent-shadow:  rgba(156, 107, 255, 0.30);
    --shadow-card:      0 4px 20px rgba(45, 37, 69, 0.06);
    --shadow-card-sm:   0 2px 12px rgba(45, 37, 69, 0.06);
}

/* ----- Beyaz kart — birden fazla yerde kullanılan kapsayıcı ----- */
.dore-card {
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: 14px;
    padding: 24px;
    box-shadow: var(--shadow-card);
}
.dore-card--lg { padding: 28px 24px; border-radius: 20px; }
.dore-card--sm { padding: 18px 20px; border-radius: 12px; box-shadow: var(--shadow-card-sm); }

/* ----- Pill / rozet (durum, kategori, "diamond provider" vb.) ----- */
.dore-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
}
.dore-pill__dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    animation: dore-pulse 2s ease-in-out infinite;
}
.dore-pill--success {
    background: var(--c-success-bg);
    color: var(--c-success);
}
.dore-pill--success .dore-pill__dot { background: var(--c-success-dot); }
.dore-pill--danger {
    background: var(--c-danger-bg);
    color: var(--c-danger);
}
.dore-pill--danger .dore-pill__dot { background: var(--c-danger); }
.dore-pill--accent {
    background: var(--c-accent-soft);
    color: var(--c-accent);
}
@keyframes dore-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.5; transform: scale(0.8); }
}

/* ----- Status banner (üst durum şeridi) ----- */
.dore-status-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 24px;
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: 14px;
    box-shadow: var(--shadow-card-sm);
}
.dore-status-banner__left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.dore-status-banner__hint {
    font-size: 14px;
    color: var(--c-text-muted);
    font-weight: 400;
}
.dore-status-banner__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

/* ----- Mini buton (banner içi, kompakt) ----- */
.dore-btn--mini {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    user-select: none;
    border: none;
    text-decoration: none;
    line-height: 1.4;
    transition: opacity 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}
.dore-btn--mini:hover { opacity: 0.85; transform: translateY(-1px); text-decoration: none; }
.dore-btn--mini:focus { outline: 2px solid var(--c-accent); outline-offset: 2px; }

.dore-btn--mini.dore-btn--accent-soft {
    background: var(--c-accent-soft);
    color: var(--c-accent);
}
.dore-btn--mini.dore-btn--success-soft {
    background: var(--c-success-bg);
    color: var(--c-success);
}
.dore-btn--mini.dore-btn--whatsapp-soft {
    background: var(--c-whatsapp-bg);
    color: var(--c-whatsapp);
}

/* ----- Açılır menü (konum gönder, dil seçici, vb.) ----- */
.dore-dropdown {
    position: relative;
}
.dore-dropdown__menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(45, 37, 69, 0.15);
    padding: 6px;
    z-index: 100;
    min-width: 180px;
    animation: dore-dropdown-in 0.2s ease;
}
.dore-dropdown__menu.is-open { display: block; }
@keyframes dore-dropdown-in {
    from { opacity: 0; transform: translateX(-50%) translateY(4px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.dore-dropdown__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 400;
    color: var(--c-text);
    cursor: pointer;
    transition: background 0.15s ease;
    white-space: nowrap;
    text-decoration: none;
}
.dore-dropdown__item:hover { background: var(--c-bg-alt); text-decoration: none; }
.dore-dropdown__item-icon {
    width: 22px; height: 22px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; line-height: 1;
}
.dore-dropdown__item-icon img,
.dore-dropdown__item-icon svg { display: block; }

/* ----- Bilgi satırı (icon + label + value) ----- */
.dore-info-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    text-decoration: none;
    color: var(--c-text);
    transition: opacity 0.2s ease;
}
.dore-info-row + .dore-info-row {
    border-top: 1px solid var(--c-border-soft);
}
.dore-info-row[role="link"]:hover,
a.dore-info-row:hover {
    opacity: 0.75;
    cursor: pointer;
    text-decoration: none;
}
.dore-info-row__info {
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.dore-info-row__label {
    font-size: 12px;
    color: var(--c-text-muted);
    font-weight: 400;
}
.dore-info-row__value {
    font-size: 15px;
    font-weight: 500;
    color: var(--c-primary);
}

/* ----- Icon tile (renkli kare ikon kutusu) ----- */
.dore-icon-tile {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 17px;
}
.dore-icon-tile--sm {
    width: 28px; height: 28px;
    border-radius: 8px;
    font-size: 13px;
}
.dore-icon-tile--phone    { background: var(--c-success-bg); }
.dore-icon-tile--whatsapp { background: var(--c-whatsapp-bg); }
.dore-icon-tile--email    { background: var(--c-accent-soft); }
.dore-icon-tile--accent   { background: var(--c-accent-soft); }

/* ----- Section heading (kart içi mor uppercase başlık) ----- */
.dore-section-heading {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--c-accent);
    margin-bottom: 18px;
}

/* ----- Liste tablosu (saat tablosu, basit key-value listesi) ----- */
.dore-table-list {
    display: flex;
    flex-direction: column;
}
.dore-table-list__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}
.dore-table-list__row + .dore-table-list__row {
    border-top: 1px solid var(--c-border-soft);
}
.dore-table-list__key {
    font-size: 14px;
    font-weight: 400;
    color: var(--c-text);
}
.dore-table-list__val {
    font-size: 14px;
    font-weight: 500;
    color: var(--c-primary);
}
.dore-table-list__val--muted { color: var(--c-danger); }

/* ----- Harita kartı ----- */
.dore-map-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--c-border);
    box-shadow: var(--shadow-card);
    background: var(--c-bg);
    min-height: 420px;
    display: flex;
    flex-direction: column;
}
.dore-map-card__frame {
    width: 100%;
    flex: 1;
    min-height: 380px;
    border: none;
    display: block;
}
.dore-map-card__footer {
    padding: 14px 20px;
    background: var(--c-bg);
    border-top: 1px solid var(--c-border-soft);
    display: flex;
    align-items: center;
    gap: 8px;
}
.dore-map-card__address {
    font-size: 13px;
    color: var(--c-text-muted);
    font-weight: 400;
    line-height: 1.5;
}

/* ----- CTA banner (koyu mor, sayfa alt blok) ----- */
.dore-cta-banner {
    background: linear-gradient(160deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
    border-radius: 24px;
    padding: 48px 36px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.dore-cta-banner::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    width: 300px; height: 300px;
    background: radial-gradient(circle, var(--c-accent-soft) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.4;
}
.dore-cta-banner__title {
    font-size: clamp(20px, 3.5vw, 28px);
    font-weight: 700;
    color: #FFF;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}
.dore-cta-banner__desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 400;
    margin-bottom: 28px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}
.dore-cta-banner__actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* CTA içindeki büyük butonlar — primary/outline-on-dark */
.dore-btn--lg {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    font-size: 15px;
    font-weight: 500;
    border-radius: var(--radius);
    line-height: 1.4;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
    cursor: pointer;
    user-select: none;
    border: none;
}
.dore-btn--lg.dore-btn--accent {
    background: var(--c-accent);
    color: #FFF;
    box-shadow: 0 4px 16px var(--c-accent-shadow);
}
.dore-btn--lg.dore-btn--accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--c-accent-glow);
    text-decoration: none;
}
.dore-btn--lg.dore-btn--outline-light {
    background: rgba(255, 255, 255, 0.08);
    color: #FFF;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.dore-btn--lg.dore-btn--outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    text-decoration: none;
}
.dore-btn--lg svg {
    width: 18px; height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

/* ----- 2 kolon ana layout (harita + detay paneli) ----- */
.dore-split-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 800px) {
    .dore-split-2 {
        grid-template-columns: 1fr 1fr;
    }
}

/* ----- Detay paneli (kart yığını) ----- */
.dore-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ----- Breadcrumb ----- */
.dore-breadcrumb {
    padding: 14px 0 0;
    font-size: 13px;
    line-height: 1.5;
    color: var(--c-text-soft);
}
.dore-breadcrumb__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
}
.dore-breadcrumb__item {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}
.dore-breadcrumb__link {
    color: var(--c-text-soft);
    text-decoration: none;
    transition: color 0.15s ease;
}
.dore-breadcrumb__link:hover {
    color: var(--c-accent);
    text-decoration: none;
}
.dore-breadcrumb__sep {
    margin: 0 8px;
    color: var(--c-text-soft);
    opacity: 0.6;
    user-select: none;
}
.dore-breadcrumb__current {
    color: var(--c-accent);
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

/* Hero içinde (koyu mor zemin) görünüm */
.dore-breadcrumb--on-dark {
    padding: 0;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.55);
}
.dore-breadcrumb--on-dark .dore-breadcrumb__link {
    color: rgba(255, 255, 255, 0.55);
}
.dore-breadcrumb--on-dark .dore-breadcrumb__link:hover {
    color: #fff;
}
.dore-breadcrumb--on-dark .dore-breadcrumb__sep {
    color: rgba(255, 255, 255, 0.4);
}
.dore-breadcrumb--on-dark .dore-breadcrumb__current {
    color: var(--c-accent);
}

@media (max-width: 600px) {
    .dore-breadcrumb {
        font-size: 12px;
        padding-top: 12px;
    }
    .dore-breadcrumb__sep {
        margin: 0 6px;
    }
    /* Mobilde "Anasayfa"yı gizle, sadece kategori + sayfa kalsın */
    .dore-breadcrumb__list .dore-breadcrumb__item:first-child {
        display: none;
    }
}

/* ----- Doctor / Staff kartı ----- */
/* Hekimler sayfası ve Tıbbi Yayın Kurulu sayfasında ortak kullanılır */
.dore-doctor-card {
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: 14px;
    padding: 28px 24px;
    box-shadow: var(--shadow-card);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.dore-doctor-card:hover {
    box-shadow: 0 8px 30px rgba(45, 37, 69, 0.10);
    transform: translateY(-2px);
}
.dore-doctor-card__photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
    display: block;
}
.dore-doctor-card__role {
    font-size: 11px;
    font-weight: 500;
    color: var(--c-text-soft);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}
.dore-doctor-card__name {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    margin: 0 0 4px;
}
.dore-doctor-card__name a {
    color: var(--c-text);
    text-decoration: none;
    border-bottom: 1px solid var(--c-border);
    padding-bottom: 1px;
    transition: border-color 0.2s ease, color 0.2s ease;
}
.dore-doctor-card__name a:hover {
    color: var(--c-accent);
    border-bottom-color: var(--c-accent);
    text-decoration: none;
}
.dore-doctor-card__title {
    font-size: 14px;
    font-weight: 300;
    color: var(--c-text-muted);
    margin: 0 0 12px;
}
.dore-doctor-card__bio {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--c-text);
    margin: 0 0 12px;
}
.dore-doctor-card__responsibility {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.5;
    color: var(--c-text-muted);
    margin: 12px 0 0;
    padding-top: 12px;
    border-top: 1px solid var(--c-border-soft);
}
.dore-doctor-card__responsibility strong {
    font-weight: 500;
    color: var(--c-text);
}

/* ----- Doktor kartları grid ----- */
.dore-doctors-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width: 700px) {
    .dore-doctors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}
@media (min-width: 1100px) {
    .dore-doctors-grid--3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ----- Süreç adımları (1-2-3 numaralı) ----- */
.dore-process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 20px 0 8px;
}
@media (min-width: 700px) {
    .dore-process-steps {
        grid-template-columns: repeat(3, 1fr);
    }
}
.dore-process-step {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.dore-process-step__num {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--c-accent-soft);
    color: var(--c-accent);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dore-process-step__title {
    font-size: 15px;
    font-weight: 500;
    color: var(--c-text);
    margin: 0 0 4px;
    display: block;
}
.dore-process-step__desc {
    font-size: 14px;
    font-weight: 300;
    color: var(--c-text-muted);
    line-height: 1.5;
    margin: 0;
}

/* ----- Disclaimer / not kutusu (sol mor borderli) ----- */
.dore-disclaimer {
    margin-top: 36px;
    padding: 16px 20px;
    border-left: 3px solid var(--c-accent-soft);
    background: var(--c-bg-alt);
    border-radius: 0 var(--radius) var(--radius) 0;
}
.dore-disclaimer p {
    font-size: 13px;
    font-weight: 300;
    color: var(--c-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ============================================================
   SITE-WIDE HERO
   Anasayfa hariç tüm sayfaların başında. render_hero() ile çağrılır.
   ============================================================ */
.dore-hero {
    background: var(--c-primary);
    color: #fff;
    padding: 32px 0 64px;
    position: relative;
    overflow: hidden;
}
.dore-hero__inner {
    position: relative;
    z-index: 1;
}
.dore-hero__breadcrumb {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.dore-hero--center .dore-hero__breadcrumb {
    /* Center align'lı hero'larda bile breadcrumb sola yaslı kalır */
    text-align: left;
}
.dore-hero__inner--with-right {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}
@media (min-width: 900px) {
    .dore-hero__inner--with-right {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 48px;
    }
}

.dore-hero--center .dore-hero__main {
    text-align: center;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.dore-hero__eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--c-accent);
    margin-bottom: 0;
}
.dore-hero--center .dore-hero__eyebrow {
    /* Görüntü 2'deki "— HASTA DENEYİMİ —" çizgili stili */
    position: relative;
    padding: 0 28px;
}
.dore-hero--center .dore-hero__eyebrow::before,
.dore-hero--center .dore-hero__eyebrow::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 18px;
    height: 1px;
    background: var(--c-accent);
    opacity: 0.5;
}
.dore-hero--center .dore-hero__eyebrow::before { left: 0; }
.dore-hero--center .dore-hero__eyebrow::after  { right: 0; }

.dore-hero__title {
    font-size: clamp(36px, 5.2vw, 60px);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.5px;
    color: #fff;
    margin: 0;
}
.dore-hero__accent {
    color: var(--c-accent);
}

.dore-hero__lede {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
    max-width: 720px;
}
.dore-hero--center .dore-hero__lede {
    margin-left: auto;
    margin-right: auto;
}

/* Tıbbi olarak incelenmiş rozeti — tıklanınca scroll */
.dore-hero__reviewed {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    margin-top: 0;
    transition: color 0.2s ease;
}
.dore-hero__reviewed:hover {
    color: #fff;
    text-decoration: none;
}
.dore-hero__reviewed-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #2da44e;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.dore-hero__reviewed-date {
    color: rgba(255, 255, 255, 0.5);
}

/* Trust badges — hero sağ kolonunda dikey stack */
.dore-hero__right-html { display: flex; flex-direction: column; }
.dore-hero__trust {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.dore-hero__trust-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 10px 14px;
    border-radius: 8px;
}
.dore-hero__trust-icon {
    font-size: 18px;
    flex-shrink: 0;
    line-height: 1;
}
.dore-hero__trust-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.dore-hero__trust-text strong {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}
.dore-hero__trust-text span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 10px;
    font-weight: 300;
    margin-top: 1px;
}
@media (max-width: 768px) {
    .dore-hero__trust { flex-direction: row; flex-wrap: wrap; }
}

/* SAĞ TARAF — CTA grubu */
.dore-hero__right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
}
@media (min-width: 900px) {
    .dore-hero__right {
        align-items: flex-end;
    }
}

.dore-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}
@media (max-width: 600px) {
    .dore-hero__cta { flex-direction: column; align-items: stretch; }
}

.dore-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    line-height: 1.3;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
}
.dore-hero-btn:hover { text-decoration: none; transform: translateY(-2px); }
.dore-hero-btn__icon {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}
.dore-hero-btn__icon svg {
    width: 18px;
    height: 18px;
    display: block;
}
.dore-hero-btn__sub {
    font-size: 13px;
    font-weight: 400;
    opacity: 0.9;
    margin-left: 2px;
}

.dore-hero-btn--accent {
    background: var(--c-accent);
    color: #fff;
    box-shadow: 0 4px 16px rgba(156, 107, 255, 0.35);
}
.dore-hero-btn--accent:hover {
    color: #fff;
    box-shadow: 0 8px 24px rgba(156, 107, 255, 0.5);
}

.dore-hero-btn--outline-light {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
}
.dore-hero-btn--outline-light:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Mobil padding ayarı */
@media (max-width: 768px) {
    .dore-hero {
        padding: 36px 0 40px;
    }
    .dore-hero__title {
        font-size: clamp(24px, 7vw, 32px);
    }
    .dore-hero__lede { font-size: 15px; }
    .dore-hero-btn {
        justify-content: center;
        padding: 13px 18px;
    }
}

/* ============================================================
   TEDAVİ SAYFASI MODÜLLERİ
   Hekimler mini, İçerik Bilgileri, Fiyat
   ============================================================ */

/* ----- Tedavi içerik metni ----- */
/* Container 1200px geniş, içerik tam genişlikte yayılır. */
/* Her section'ın yatay hatları arasında nefes payı. */
.dore-treatment-content > section {
    padding: 30px 0;
}
.dore-treatment-content > section:first-child { padding-top: 0; }
.dore-treatment-content > section:last-child  { padding-bottom: 0; }

/* Section başlıkları — disease ile tutarlı tipografi. */
.dore-treatment-content h2 {
    font-size: 26px;
    font-weight: 500;
    color: var(--c-primary);
    margin: 40px 0 16px;
    line-height: 1.3;
    scroll-margin-top: 90px;
}
.dore-treatment-content > section > h2:first-child,
.dore-treatment-content > h2:first-child {
    margin-top: 0;
}
.dore-treatment-content h3 {
    font-size: 19px;
    font-weight: 500;
    color: var(--c-primary);
    margin: 28px 0 12px;
    line-height: 1.35;
}

/* ============================================================
   SECTION GÖRSELİ — h2 + metin + yan görsel grid
   Treatment ve disease sayfalarında <section data-img="..."> olan
   bölümlere otomatik uygulanır (inject_section_images() üretir).
   ============================================================ */
.dore-section-imaged {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 400px;
    column-gap: 40px;
    align-items: start;
}
.dore-section-imaged--left {
    grid-template-columns: 400px minmax(0, 1fr);
}
.dore-section-imaged > h2 {
    grid-column: 1 / -1;
}
.dore-section-imaged__text {
    grid-column: 1 / 2;
    min-width: 0;
}
.dore-section-imaged__text > *:first-child { margin-top: 0; }
.dore-section-imaged__text > *:last-child  { margin-bottom: 0; }

.dore-section-imaged__figure {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    margin: 0;
    align-self: start;
}
.dore-section-imaged--left .dore-section-imaged__text   { grid-column: 2 / 3; }
.dore-section-imaged--left .dore-section-imaged__figure { grid-column: 1 / 2; grid-row: 2 / 3; }

.dore-section-imaged__media {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--c-bg-alt);
}
.dore-section-imaged__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.dore-section-imaged__cap {
    font-size: 13px;
    line-height: 1.5;
    color: var(--c-text-soft);
    margin-top: 10px;
}

/* Mobil: tek kolon, h2 → görsel → metin sırası */
@media (max-width: 900px) {
    .dore-section-imaged,
    .dore-section-imaged--left {
        grid-template-columns: 1fr;
        column-gap: 0;
    }
    .dore-section-imaged > h2 {
        grid-column: 1 / -1;
        grid-row: 1;
    }
    .dore-section-imaged__figure,
    .dore-section-imaged--left .dore-section-imaged__figure {
        grid-column: 1 / -1;
        grid-row: 2;
        margin: 12px 0 20px;
    }
    .dore-section-imaged__text,
    .dore-section-imaged--left .dore-section-imaged__text {
        grid-column: 1 / -1;
        grid-row: 3;
    }
    .dore-section-imaged__media {
        aspect-ratio: 1 / 1;
    }
}

/* ----- Hekimler mini (tedavi sayfası altında 3 yatay kart) ----- */
.dore-hekimler-minik {
    padding: 32px 0 24px;
}
.dore-hekimler-minik__title {
    font-size: 22px;
    font-weight: 700;
    color: var(--c-primary);
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin: 0 0 2px;
}
.dore-hekimler-minik__subtitle {
    font-size: 14px;
    font-weight: 300;
    color: var(--c-text-muted);
    line-height: 1.4;
    margin: 0 0 18px;
}
.dore-hekimler-minik__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.dore-hekimler-minik__card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    text-decoration: none;
    color: inherit;
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: 8px;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.dore-hekimler-minik__card:hover {
    border-color: var(--c-accent);
    background: var(--c-accent-soft);
    text-decoration: none;
}
.dore-hekimler-minik__photo {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
}
.dore-hekimler-minik__info {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
}
.dore-hekimler-minik__name {
    font-size: 14px;
    font-weight: 500;
    color: var(--c-primary);
    line-height: 1.3;
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.dore-hekimler-minik__role {
    font-size: 12px;
    font-weight: 300;
    color: var(--c-text-muted);
    line-height: 1.3;
}
@media (max-width: 768px) {
    .dore-hekimler-minik__title { font-size: 20px; }
    .dore-hekimler-minik__subtitle { font-size: 13px; margin-bottom: 14px; }
    .dore-hekimler-minik__grid { grid-template-columns: 1fr; gap: 10px; }
}

/* ----- İçerik Bilgileri ("Tıbbi Olarak İncelenmiş" kutusu) ----- */
.dore-icerik-bilgileri {
    padding: 28px 0 20px;
    border-top: 1px solid var(--c-border-soft);
}
.dore-ib__title {
    font-size: 13px;
    font-weight: 400;
    color: var(--c-text-muted);
    letter-spacing: 0.3px;
    margin: 0 0 14px;
    padding: 0;
}
.dore-ib__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}
.dore-ib__tarihler {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.dore-ib__metin {
    font-size: 15px;
    font-weight: 300;
    color: var(--c-text);
    line-height: 1.7;
    margin: 0 0 14px;
}
.dore-ib__inceleyen {
    color: var(--c-text);
    text-decoration: none;
    border-bottom: 1px solid var(--c-accent-soft);
    padding-bottom: 1px;
    transition: border-color 0.2s ease;
}
.dore-ib__inceleyen:hover {
    border-bottom-color: var(--c-accent);
    text-decoration: none;
}
.dore-ib__linkler {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.dore-ib__link {
    font-size: 14px;
    font-weight: 400;
    color: var(--c-text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}
.dore-ib__link:hover {
    color: var(--c-text);
    text-decoration: none;
}
.dore-ib__ayrac {
    font-size: 14px;
    color: var(--c-text-soft);
    line-height: 1;
}
.dore-ib__tarih {
    text-align: left;
}
.dore-ib__tarih-etiket {
    display: block;
    font-size: 12px;
    font-weight: 300;
    color: var(--c-text-soft);
    letter-spacing: 0.2px;
    margin-bottom: 3px;
}
.dore-ib__tarih-deger {
    display: block;
    font-size: 15px;
    font-weight: 300;
    color: var(--c-text);
}
@media (max-width: 768px) {
    .dore-ib__grid { grid-template-columns: 1fr; gap: 16px; }
    .dore-ib__tarihler { gap: 12px; }
    .dore-ib__metin { font-size: 14px; line-height: 1.6; margin-bottom: 10px; }
    .dore-ib__tarih-etiket { font-size: 11px; }
    .dore-ib__tarih-deger { font-size: 14px; }
    .dore-ib__link { font-size: 13px; }
    .dore-ib__ayrac { font-size: 13px; }
}


/* ============================================================
   CASE STUDY — Hasta Deneyimi sayfası
   /bilgenin-seffaf-plak-yolculugu/
   Tüm class'lar dore-cs-* prefix'li, sayfa-spesifik.
   ============================================================ */

/* ----- Profil kartı (hero altında, hafif yukarı çıkar) ----- */
.dore-cs-profile-section {
    margin-top: -32px;
    position: relative;
    z-index: 2;
    padding-bottom: 8px;
}
.dore-cs-profile-card {
    background: var(--c-bg);
    border-radius: 18px;
    box-shadow: 0 4px 40px rgba(45, 37, 69, 0.08), 0 1px 3px rgba(45, 37, 69, 0.04);
    border: 1px solid rgba(156, 107, 255, 0.06);
    overflow: hidden;
}
.dore-cs-profile-top {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px 28px;
}
.dore-cs-profile-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    display: block;
}
.dore-cs-profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
}
.dore-cs-profile-info { flex: 1; min-width: 0; }
.dore-cs-profile-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--c-primary);
    margin-bottom: 2px;
}
.dore-cs-profile-name a {
    color: var(--c-accent);
    text-decoration: none;
    transition: color 0.2s;
}
.dore-cs-profile-name a:hover { color: var(--c-primary); text-decoration: none; }
.dore-cs-profile-sub {
    font-size: 13px;
    font-weight: 400;
    color: var(--c-text-muted);
}
.dore-cs-profile-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: var(--c-accent);
    padding: 6px 14px;
    border-radius: 100px;
    background: var(--c-accent-soft);
    border: 1px solid rgba(156, 107, 255, 0.12);
    white-space: nowrap;
    flex-shrink: 0;
}
.dore-cs-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--c-accent);
    animation: dore-cs-pulse 2s ease infinite;
}
@keyframes dore-cs-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.4; transform: scale(0.8); }
}
.dore-cs-profile-details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 28px 18px;
}
.dore-cs-detail-pill {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    border-radius: 50px;
    background: rgba(156, 107, 255, 0.05);
    border: 1px solid rgba(156, 107, 255, 0.1);
    font-size: 13px;
    font-weight: 400;
    color: var(--c-text);
    white-space: nowrap;
}
.dore-cs-detail-pill strong {
    font-weight: 700;
    color: var(--c-accent);
    margin-right: 4px;
}
.dore-cs-profile-progress {
    padding: 0 28px 18px;
}
.dore-cs-progress-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--c-text-soft);
    margin-bottom: 8px;
}
.dore-cs-progress-bar-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}
.dore-cs-progress-bar {
    flex: 1;
    height: 6px;
    background: rgba(156, 107, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}
.dore-cs-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--c-accent), #B98FFF);
    border-radius: 3px;
    transition: width 1s ease;
}
.dore-cs-progress-text {
    font-size: 13px;
    color: var(--c-text-muted);
    white-space: nowrap;
}
.dore-cs-progress-text strong {
    font-weight: 700;
    color: var(--c-accent);
}
.dore-cs-profile-quote {
    margin: 0 28px 24px;
    padding: 16px 20px;
    background: rgba(156, 107, 255, 0.04);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 300;
    color: var(--c-text);
    line-height: 1.7;
    font-style: italic;
    border-left: 3px solid var(--c-accent);
}
.dore-cs-quote-title {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--c-accent);
    margin-bottom: 8px;
    font-style: normal;
}
.dore-cs-quote-full { display: none; }
.dore-cs-quote-full.is-expanded { display: inline; }
.dore-cs-quote-toggle {
    background: none;
    border: none;
    color: var(--c-accent);
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    margin-left: 4px;
    line-height: inherit;
    font-style: normal;
}
.dore-cs-quote-toggle:hover { opacity: 0.7; }

@media (max-width: 700px) {
    .dore-cs-profile-section { margin-top: -16px; }
    .dore-cs-profile-top { padding: 20px; flex-wrap: wrap; gap: 14px; }
    .dore-cs-profile-badge { order: 3; margin-left: auto; }
    .dore-cs-profile-details { padding: 0 20px 14px; }
    .dore-cs-profile-progress { padding: 0 20px 14px; }
    .dore-cs-profile-quote { margin: 0 20px 20px; }
    .dore-cs-detail-pill { font-size: 12px; padding: 6px 12px; }
}

/* ----- Video Galerisi ----- */
.dore-cs-videos-section {
    padding: 32px 0;
}
.dore-cs-section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}
.dore-cs-section-title {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--c-text-soft);
    white-space: nowrap;
}
.dore-cs-section-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(156, 107, 255, 0.15), transparent);
}
.dore-cs-video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
@media (min-width: 700px) {
    .dore-cs-video-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
@media (min-width: 1100px) {
    .dore-cs-video-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
}
.dore-cs-video-card {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 2px 20px rgba(45, 37, 69, 0.06);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
}
.dore-cs-video-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 16px 48px rgba(45, 37, 69, 0.14);
}
.dore-cs-video-thumb {
    position: relative;
    width: 100%;
    padding-top: 177.78%;
    background: linear-gradient(165deg, #1E1835 0%, var(--c-primary) 60%, rgba(156, 107, 255, 0.15) 100%);
    overflow: hidden;
}
.dore-cs-video-thumb video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.dore-cs-video-thumb::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 80%, rgba(156, 107, 255, 0.12), transparent 60%),
        radial-gradient(ellipse at 70% 20%, rgba(185, 143, 255, 0.08), transparent 50%);
    z-index: 1;
    transition: opacity 0.4s;
    pointer-events: none;
}
.dore-cs-video-card:hover .dore-cs-video-thumb::before { opacity: 0; }
.dore-cs-video-thumb-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 2;
    transition: opacity 0.3s;
}
.dore-cs-play-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.dore-cs-video-card:hover .dore-cs-play-btn {
    background: rgba(156, 107, 255, 0.4);
    border-color: rgba(156, 107, 255, 0.5);
    transform: scale(1.1);
}
.dore-cs-play-btn svg {
    width: 18px;
    height: 18px;
    margin-left: 2px;
}
.dore-cs-video-thumb-label {
    font-size: 10px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.dore-cs-video-day-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 4;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 24px;
}
.dore-cs-video-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 40px 14px 14px;
    background: linear-gradient(to top, rgba(30, 24, 53, 0.85) 0%, rgba(30, 24, 53, 0.4) 60%, transparent 100%);
}
.dore-cs-video-title {
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 3px;
    line-height: 1.35;
}
.dore-cs-video-desc {
    font-size: 11px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

/* Devamı yolda kart */
.dore-cs-video-coming {
    border-radius: 18px;
    border: 2px dashed rgba(156, 107, 255, 0.2);
    background: rgba(156, 107, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 9/16;
    color: var(--c-accent);
}
.dore-cs-coming-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 14px;
    text-align: center;
    position: relative;
}
.dore-cs-coming-pulse {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(156, 107, 255, 0.08);
    animation: dore-cs-coming-pulse 3s ease infinite;
}
@keyframes dore-cs-coming-pulse {
    0%, 100% { transform: translateX(-50%) scale(1);   opacity: 0.4; }
    50%      { transform: translateX(-50%) scale(1.8); opacity: 0; }
}
.dore-cs-coming-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--c-text);
    margin-top: 4px;
}
.dore-cs-coming-desc {
    font-size: 12px;
    font-weight: 300;
    color: var(--c-text-muted);
    line-height: 1.6;
}
.dore-cs-coming-plak {
    font-size: 11px;
    color: var(--c-text-soft);
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(156, 107, 255, 0.06);
    border: 1px solid rgba(156, 107, 255, 0.1);
}
.dore-cs-coming-plak strong { color: var(--c-accent); font-weight: 600; }

/* ----- Modal ----- */
.dore-cs-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.dore-cs-modal.is-open { display: flex; }
.dore-cs-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 10, 30, 0.85);
    backdrop-filter: blur(20px);
    cursor: pointer;
}
.dore-cs-modal-content {
    position: relative;
    z-index: 1;
    display: flex;
    width: min(900px, 92vw);
    max-height: 85vh;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
    background: var(--c-bg);
}
.dore-cs-modal-video-side {
    flex: 0 0 auto;
    width: min(380px, 45vw);
    background: #1E1835;
}
.dore-cs-modal-video-side video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.dore-cs-modal-info-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.dore-cs-modal-info-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(156, 107, 255, 0.06);
}
.dore-cs-modal-info-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}
.dore-cs-modal-info-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}
.dore-cs-modal-info-user { flex: 1; min-width: 0; }
.dore-cs-modal-info-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--c-primary);
}
.dore-cs-modal-info-name a {
    color: var(--c-accent);
    text-decoration: none;
}
.dore-cs-modal-info-sub {
    font-size: 11px;
    color: var(--c-text-muted);
}
.dore-cs-modal-info-body {
    flex: 1;
    padding: 20px 24px;
    overflow-y: auto;
}
.dore-cs-modal-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(156, 107, 255, 0.08);
}
.dore-cs-modal-tab {
    flex: 1;
    background: none;
    border: none;
    text-align: center;
    padding: 10px 0;
    font-size: 12px;
    font-weight: 500;
    color: var(--c-text-soft);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
    font-family: inherit;
}
.dore-cs-modal-tab.is-active {
    color: var(--c-primary);
    border-bottom-color: var(--c-accent);
}
.dore-cs-modal-tab-content { display: none; }
.dore-cs-modal-tab-content.is-active { display: block; }
.dore-cs-modal-info-date {
    font-size: 11px;
    font-weight: 500;
    color: var(--c-accent);
    letter-spacing: 1px;
    margin-bottom: 6px;
}
.dore-cs-modal-info-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--c-primary);
    margin: 0 0 8px;
    line-height: 1.4;
}
.dore-cs-modal-info-desc {
    font-size: 13px;
    font-weight: 300;
    color: var(--c-text-muted);
    line-height: 1.7;
    margin: 0;
}
.dore-cs-doctor-note {
    background: rgba(156, 107, 255, 0.04);
    border-radius: 12px;
    padding: 16px;
    border-left: 3px solid var(--c-accent);
}
.dore-cs-doctor-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.dore-cs-doctor-avatar-img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 20%;
    flex-shrink: 0;
}
.dore-cs-doctor-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--c-primary);
}
.dore-cs-doctor-title {
    font-size: 11px;
    color: var(--c-text-soft);
}
.dore-cs-doctor-text {
    font-size: 13px;
    font-weight: 400;
    color: var(--c-text-muted);
    line-height: 1.7;
    margin: 0;
}
.dore-cs-modal-info-footer {
    padding: 14px 24px;
    border-top: 1px solid rgba(156, 107, 255, 0.06);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.dore-cs-modal-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}
.dore-cs-modal-btn--accent {
    background: linear-gradient(135deg, var(--c-accent), #B98FFF);
    color: #fff;
}
.dore-cs-modal-btn--accent:hover {
    color: #fff;
    text-decoration: none;
    opacity: 0.9;
}
.dore-cs-modal-btn--ghost {
    background: rgba(156, 107, 255, 0.06);
    border: 1px solid rgba(156, 107, 255, 0.12);
    color: var(--c-accent);
}
.dore-cs-modal-btn--ghost:hover {
    background: rgba(156, 107, 255, 0.15);
    text-decoration: none;
}
.dore-cs-modal-disclaimer {
    font-size: 11px;
    color: var(--c-text-soft);
    margin-left: auto;
}
.dore-cs-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.06);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-text);
    transition: background 0.2s;
}
.dore-cs-modal-close:hover { background: rgba(0, 0, 0, 0.12); }
.dore-cs-modal-close svg { width: 16px; height: 16px; }
.dore-cs-modal-counter {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    font-size: 12px;
    font-weight: 500;
    color: var(--c-text-muted);
}
.dore-cs-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: all 0.2s;
}
.dore-cs-modal-nav:hover { opacity: 1; background: rgba(0, 0, 0, 0.5); }
.dore-cs-modal-prev { left: 18px; }
.dore-cs-modal-next { right: 18px; }

@media (max-width: 700px) {
    .dore-cs-modal-content {
        flex-direction: column;
        width: 92vw;
        max-width: 380px;
        max-height: 80vh;
        border-radius: 14px;
        background: #1E1835;
    }
    .dore-cs-modal-video-side {
        width: 100%;
        flex: 0 1 auto;
        max-height: 50vh;
    }
    .dore-cs-modal-video-side video { object-fit: contain; background: #000; max-height: 50vh; }
    .dore-cs-modal-info-header { display: none; }
    .dore-cs-modal-info-body { padding: 12px 16px 6px; }
    .dore-cs-modal-info-title { color: #fff; font-size: 14px; }
    .dore-cs-modal-info-date { font-size: 10px; }
    .dore-cs-modal-info-desc { color: rgba(255, 255, 255, 0.5); font-size: 12px; }
    .dore-cs-modal-tabs { border-bottom-color: rgba(255, 255, 255, 0.08); }
    .dore-cs-modal-tab { color: rgba(255, 255, 255, 0.4); }
    .dore-cs-modal-tab.is-active { color: #fff; }
    .dore-cs-doctor-note { background: rgba(255, 255, 255, 0.05); }
    .dore-cs-doctor-name { color: rgba(255, 255, 255, 0.85); }
    .dore-cs-doctor-title { color: rgba(255, 255, 255, 0.4); }
    .dore-cs-doctor-text { color: rgba(255, 255, 255, 0.55); }
    .dore-cs-modal-info-footer { padding: 8px 16px 12px; border-top: none; }
    .dore-cs-modal-btn { font-size: 11px; padding: 7px 14px; }
    .dore-cs-modal-disclaimer { color: rgba(255, 255, 255, 0.3); font-size: 10px; }
    .dore-cs-modal-close { background: rgba(0, 0, 0, 0.5); color: #fff; top: 8px; right: 8px; width: 30px; height: 30px; }
    .dore-cs-modal-counter { color: rgba(255, 255, 255, 0.5); top: 10px; left: 10px; }
    .dore-cs-modal-nav { width: 34px; height: 34px; background: rgba(0, 0, 0, 0.4); }
    .dore-cs-modal-prev { left: 8px; }
    .dore-cs-modal-next { right: 8px; }
}

/* ----- Hekim Notu Bölümü ----- */
.dore-cs-hekim-section {
    padding: 48px 0;
}
.dore-cs-hekim-card {
    display: flex;
    gap: 36px;
    background: var(--c-bg);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 40px rgba(45, 37, 69, 0.08), 0 1px 3px rgba(45, 37, 69, 0.04);
    border: 1px solid rgba(156, 107, 255, 0.06);
}
.dore-cs-hekim-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    width: 200px;
}
.dore-cs-hekim-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 20%;
    border: 3px solid rgba(156, 107, 255, 0.15);
}
.dore-cs-hekim-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}
.dore-cs-hekim-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 50px;
    background: rgba(156, 107, 255, 0.05);
    border: 1px solid rgba(156, 107, 255, 0.1);
    font-size: 12px;
    font-weight: 400;
    color: var(--c-text);
    text-align: center;
}
.dore-cs-hekim-right { flex: 1; min-width: 0; }
.dore-cs-hekim-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--c-text-soft);
    margin-bottom: 12px;
}
.dore-cs-hekim-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--c-primary);
    margin: 0 0 4px;
}
.dore-cs-hekim-title {
    font-size: 13px;
    font-weight: 400;
    color: var(--c-accent);
    margin-bottom: 24px;
}
.dore-cs-hekim-text {
    font-size: 15px;
    font-weight: 300;
    color: var(--c-text-muted);
    line-height: 1.85;
}
.dore-cs-hekim-text p { margin: 0 0 16px; }
.dore-cs-hekim-text p:last-child { margin-bottom: 0; color: var(--c-text); font-weight: 400; }
.dore-cs-hekim-update {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(156, 107, 255, 0.08);
}
.dore-cs-hekim-update-date {
    font-size: 12px;
    font-weight: 500;
    color: var(--c-accent);
    letter-spacing: 1px;
    margin-bottom: 6px;
}
.dore-cs-hekim-update-text {
    font-size: 14px;
    font-weight: 300;
    color: var(--c-text-muted);
    line-height: 1.75;
}
.dore-cs-hekim-cta {
    display: flex;
    gap: 12px;
    margin-top: 28px;
    flex-wrap: wrap;
}
.dore-cs-hekim-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}
.dore-cs-hekim-btn--accent {
    background: linear-gradient(135deg, var(--c-accent), #B98FFF);
    color: #fff;
    box-shadow: 0 4px 20px rgba(156, 107, 255, 0.3);
}
.dore-cs-hekim-btn--accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(156, 107, 255, 0.45);
    color: #fff;
    text-decoration: none;
}
.dore-cs-hekim-btn--ghost {
    background: transparent;
    color: var(--c-accent);
    border: 1px solid rgba(156, 107, 255, 0.2);
}
.dore-cs-hekim-btn--ghost:hover {
    background: rgba(156, 107, 255, 0.06);
    transform: translateY(-2px);
    text-decoration: none;
}
@media (max-width: 768px) {
    .dore-cs-hekim-card { flex-direction: column; padding: 24px 20px; gap: 20px; }
    .dore-cs-hekim-left {
        flex-direction: row;
        width: 100%;
        gap: 14px;
        align-items: center;
    }
    .dore-cs-hekim-photo { width: 80px; height: 80px; }
    .dore-cs-hekim-badges { flex-direction: column; align-items: flex-start; }
    .dore-cs-hekim-name { font-size: 17px; }
    .dore-cs-hekim-text { font-size: 14px; line-height: 1.75; }
}

/* ----- CTA Bölümü ----- */
.dore-cs-cta-section {
    padding: 32px 0;
}
.dore-cs-cta-card {
    background: var(--c-primary);
    border-radius: 24px;
    padding: 56px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.dore-cs-cta-card::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    width: 250px;
    height: 250px;
    background: url('../img/doredent-cicegi.png') no-repeat center / contain;
    pointer-events: none;
    z-index: 0;
}
@media (max-width: 768px) {
    .dore-cs-cta-card::after { display: none; }
}
.dore-cs-cta-title {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 300;
    color: #fff;
    margin: 0 0 12px;
    letter-spacing: -0.5px;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}
.dore-cs-cta-desc {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.55);
    margin: 0 0 28px;
    position: relative;
    z-index: 1;
}
.dore-cs-cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.dore-cs-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}
.dore-cs-cta-btn--accent {
    background: linear-gradient(135deg, var(--c-accent), #B98FFF);
    color: #fff;
    box-shadow: 0 4px 20px rgba(156, 107, 255, 0.3);
}
.dore-cs-cta-btn--accent:hover {
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(156, 107, 255, 0.45);
}
.dore-cs-cta-btn--glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
}
.dore-cs-cta-btn--glass:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(156, 107, 255, 0.3);
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

/* ----- Yasal Uyarı ----- */
.dore-cs-disclaimer-section {
    padding: 24px 0 56px;
}
.dore-cs-disclaimer-card {
    background: var(--c-bg);
    border-radius: 14px;
    border: 1px solid rgba(156, 107, 255, 0.06);
    padding: 28px 32px;
}
.dore-cs-disclaimer-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.dore-cs-disclaimer-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(156, 107, 255, 0.06);
    color: var(--c-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.dore-cs-disclaimer-icon svg { width: 16px; height: 16px; }
.dore-cs-disclaimer-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--c-text-soft);
}
.dore-cs-disclaimer-items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.dore-cs-disclaimer-items li {
    position: relative;
    padding-left: 18px;
    font-size: 13px;
    font-weight: 300;
    color: var(--c-text-muted);
    line-height: 1.7;
}
.dore-cs-disclaimer-items li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(156, 107, 255, 0.25);
}
.dore-cs-disclaimer-notice {
    margin-top: 18px;
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 300;
    color: var(--c-text-muted);
    line-height: 1.7;
    text-align: center;
}

/* ============================================================
   TEDAVİLER HUB SAYFASI — /tedaviler/
   ============================================================ */

/* Kategori navigasyon barı (sticky değil, sayfa başında anchor linkler) */
.dore-treatments-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.dore-treatments-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--c-text);
    text-decoration: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.dore-treatments-nav__link:hover {
    border-color: var(--c-accent);
    background: var(--c-accent-soft);
    color: var(--c-primary);
    text-decoration: none;
}
.dore-treatments-nav__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: var(--c-accent-soft);
    color: var(--c-accent);
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
}

/* Kategori bloğu */
.dore-treatment-category {
    margin-bottom: 48px;
    scroll-margin-top: 80px; /* anchor scroll için breadcrumb/header kompansasyonu */
}
.dore-treatment-category:last-child {
    margin-bottom: 0;
}
.dore-treatment-category__header {
    margin-bottom: 20px;
}
.dore-treatment-category__title {
    font-size: 24px;
    font-weight: 500;
    color: var(--c-primary);
    letter-spacing: -0.01em;
    margin: 0 0 6px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--c-accent-soft);
}
.dore-treatment-category__desc {
    font-size: 14px;
    font-weight: 300;
    color: var(--c-text-muted);
    line-height: 1.6;
    margin: 8px 0 0;
    max-width: 720px;
}

/* Tedavi kart grid'i */
.dore-treatment-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}
@media (min-width: 700px) {
    .dore-treatment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1100px) {
    .dore-treatment-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.dore-treatment-card {
    display: flex;
    flex-direction: column;
    padding: 18px 20px;
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.dore-treatment-card:hover {
    border-color: var(--c-accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 37, 69, 0.08);
    text-decoration: none;
}
.dore-treatment-card__title {
    font-size: 16px;
    font-weight: 500;
    color: var(--c-primary);
    line-height: 1.3;
    margin: 0 0 8px;
}
.dore-treatment-card__desc {
    font-size: 13px;
    font-weight: 300;
    color: var(--c-text-muted);
    line-height: 1.55;
    margin: 0 0 12px;
    flex: 1;
}
.dore-treatment-card__more {
    font-size: 13px;
    font-weight: 500;
    color: var(--c-accent);
    margin-top: auto;
}

@media (max-width: 600px) {
    .dore-treatment-category__title { font-size: 20px; }
    .dore-treatment-category { margin-bottom: 36px; }
    .dore-treatments-nav__link { font-size: 12px; padding: 6px 12px; }
}

/* ============================================================
   İLETİŞİM SAYFASI — sayfa-spesifik küçük düzenlemeler
   (Çoğu CSS yukarıdaki ortak bileşenlerden geliyor.)
   ============================================================ */
@media (max-width: 768px) {
    .dore-status-banner {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 16px;
        text-align: center;
    }
    .dore-status-banner__left {
        justify-content: center;
        gap: 10px;
    }
    .dore-status-banner__actions {
        gap: 8px;
    }
    .dore-status-banner__actions .dore-btn--mini {
        flex: 1;
        justify-content: center;
        padding: 12px 14px;
        font-size: 13px;
    }
    .dore-map-card {
        min-height: 240px;
        order: 2;
        border-radius: 14px;
    }
    .dore-map-card__frame { min-height: 220px; }
    .dore-stack { order: 1; gap: 16px; }
    .dore-card--lg {
        padding: 20px 16px;
        border-radius: 14px;
    }
    .dore-section-heading {
        font-size: 12px;
        margin-bottom: 12px;
    }
    .dore-icon-tile {
        width: 36px; height: 36px;
        border-radius: 8px;
        font-size: 15px;
    }
    .dore-info-row__value { font-size: 14px; }
    .dore-table-list__key,
    .dore-table-list__val { font-size: 13px; }
    .dore-cta-banner {
        padding: 28px 16px;
        border-radius: 14px;
    }
    .dore-cta-banner__title { font-size: 19px; }
    .dore-cta-banner__desc {
        font-size: 14px;
        margin-bottom: 20px;
    }
    .dore-cta-banner__actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    .dore-btn--lg {
        justify-content: center;
        padding: 13px 20px;
        font-size: 14px;
    }
}

/* ============================================================
   SSS (FAQ) ACCORDION — render_faq() çıktısı
   ============================================================ */

/* Modern tarayıcılar için height animation altyapısı
   Chrome 129+, Safari 18.4+ destekler. Eski tarayıcılar
   anlık aç/kapa yapar (graceful degradation). */
@supports (interpolate-size: allow-keywords) {
    :root { interpolate-size: allow-keywords; }
}

.dore-faq {
    margin: 48px 0;
}
.dore-faq__title {
    font-size: 28px;
    font-weight: 500;
    color: var(--c-primary);
    margin: 0 0 24px;
    line-height: 1.25;
}
.dore-faq__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.dore-faq__item {
    background: #FAF8FF;
    border-radius: 8px;
    transition: background 0.25s ease;
}
.dore-faq__item[open] {
    background: transparent;
}
.dore-faq__q {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 24px;
    color: var(--c-primary);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    transition: background 0.25s ease, color 0.25s ease;
    user-select: none;
    border-radius: 8px;
}
.dore-faq__q::-webkit-details-marker { display: none; }
.dore-faq__q::marker { display: none; }
.dore-faq__item[open] .dore-faq__q {
    background: var(--c-primary);
    color: #fff;
    border-radius: 8px;
}
.dore-faq__item[open] .dore-faq__a {
    margin-top: 12px;
}
.dore-faq__q-text { flex: 1; }
.dore-faq__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    color: var(--c-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, color 0.25s ease;
}
.dore-faq__icon-v {
    transform-origin: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.dore-faq__item[open] .dore-faq__icon-v {
    transform: scaleY(0);
}

/* Cevap bölümü — modern tarayıcılarda height animasyonu için
   Hem [open] başına animasyon hem de display: block override */
.dore-faq__a {
    padding: 22px 24px;
    color: var(--c-text);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.65;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}
.dore-faq__a > *:first-child { margin-top: 0; }
.dore-faq__a > *:last-child  { margin-bottom: 0; }
.dore-faq__a p { margin: 0 0 12px; }
.dore-faq__a p:last-child { margin-bottom: 0; }
.dore-faq__a a {
    color: var(--c-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.dore-faq__a a:hover { text-decoration: none; }

/* Smooth aç/kapa: details içeriği height auto'dan 0'a interpolate edilir.
   Modern Chrome/Safari için ::details-content + interpolate-size ile çalışır. */
@supports (interpolate-size: allow-keywords) {
    .dore-faq__item::details-content {
        height: 0;
        overflow: hidden;
        opacity: 0;
        transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 0.25s ease,
                    content-visibility 0.35s allow-discrete;
    }
    .dore-faq__item[open]::details-content {
        height: auto;
        opacity: 1;
    }
}

@media (max-width: 600px) {
    .dore-faq__title { font-size: 22px; }
    .dore-faq__q {
        padding: 18px 18px;
        font-size: 15px;
        gap: 14px;
    }
    .dore-faq__icon { width: 38px; height: 38px; }
    .dore-faq__a { padding: 18px; font-size: 14px; }
}

/* ============================================================
   KAYNAKLAR BİLEŞENİ — tüm tedavi ve hastalık sayfalarında ortak
   Class prefix: dore-k-, dore-kaynaklar
   ============================================================ */
.dore-kaynaklar {
    font-family: 'Roboto', sans-serif;
    width: 100%;
    max-width: 100%;
    margin: 40px 0 0;
    padding: 40px 0;
    box-sizing: border-box;
}
.dore-kaynaklar *,
.dore-kaynaklar *::before,
.dore-kaynaklar *::after {
    box-sizing: border-box;
}
.dore-k-inner {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}
.dore-k-baslik {
    display: block;
    font-size: 26px;
    font-weight: 700;
    color: #3C2C5A;
    letter-spacing: -0.01em;
    margin: 0 0 12px;
    padding: 0;
    text-transform: none;
    line-height: 1.2;
}
.dore-k-aciklama {
    font-size: 15px;
    font-weight: 300;
    color: rgb(75, 85, 99);
    line-height: 1.7;
    margin: 0 0 24px;
    padding: 0;
    max-width: 720px;
}
.dore-k-details {
    margin: 0;
    padding: 0;
    border: 1px solid rgba(156, 107, 255, 0.18);
    border-radius: 4px;
    background: #ffffff;
    transition: border-color 0.2s;
}
.dore-k-details:hover {
    border-color: rgba(156, 107, 255, 0.4);
}
.dore-k-details[open] {
    border-color: rgba(156, 107, 255, 0.25);
}
.dore-k-details > summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: rgb(49, 63, 88);
    padding: 16px 20px;
    margin: 0;
    user-select: none;
    transition: color 0.2s;
}
.dore-k-details > summary::-webkit-details-marker {
    display: none;
}
.dore-k-details > summary::marker {
    display: none;
    content: '';
}
.dore-k-details > summary:hover {
    color: rgb(156, 107, 255);
}
.dore-k-toggle-icon-box {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    background: rgba(156, 107, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgb(156, 107, 255);
}
.dore-k-toggle-icon-box svg {
    width: 16px;
    height: 16px;
}
.dore-k-toggle-metin {
    flex: 1;
    border-bottom: none;
    padding-bottom: 0;
}
.dore-k-toggle-sayi {
    font-weight: 300;
    color: rgb(107, 114, 128);
    margin-left: 4px;
}
.dore-k-toggle-ok {
    width: 18px;
    height: 18px;
    transition: transform 0.25s ease;
    flex-shrink: 0;
    color: rgb(156, 107, 255);
}
.dore-k-details[open] .dore-k-toggle-ok {
    transform: rotate(180deg);
}
.dore-k-icerik {
    margin: 0;
    padding: 4px 20px 20px;
    border-top: 1px solid rgba(156, 107, 255, 0.12);
}
.dore-k-grup {
    margin: 0 0 24px;
    padding: 0;
}
.dore-k-grup:last-child {
    margin-bottom: 0;
}
.dore-k-grup-baslik {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgb(156, 107, 255);
    margin: 0 0 12px;
    padding: 0;
}
.dore-k-liste {
    list-style: none;
    margin: 0;
    padding: 0;
}
.dore-k-item {
    position: relative;
    padding: 0 0 0 18px;
    margin: 0 0 14px;
    font-size: 14px;
    font-weight: 300;
    color: rgb(75, 85, 99);
    line-height: 1.65;
}
.dore-k-item:last-child {
    margin-bottom: 0;
}
.dore-k-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(156, 107, 255, 0.5);
}
.dore-k-yayinci {
    font-weight: 500;
    color: rgb(49, 63, 88);
}
.dore-k-link {
    color: rgb(49, 63, 88);
    text-decoration: none;
    border-bottom: 1px solid rgba(156, 107, 255, 0.3);
    padding-bottom: 1px;
    transition: border-color 0.2s;
    font-style: italic;
}
.dore-k-link:hover {
    border-bottom-color: rgba(156, 107, 255, 0.8);
}
.dore-k-baslik-metin {
    font-style: italic;
    color: rgb(75, 85, 99);
}
.dore-k-tarih {
    display: block;
    margin-top: 3px;
    font-size: 12px;
    color: rgb(107, 114, 128);
}
@media (max-width: 768px) {
    .dore-kaynaklar {
        padding: 28px 0;
    }
    .dore-k-baslik {
        font-size: 22px;
    }
    .dore-k-aciklama {
        font-size: 14px;
        line-height: 1.6;
    }
    .dore-k-details > summary {
        font-size: 13px;
        padding: 14px 16px;
        gap: 10px;
    }
    .dore-k-toggle-icon-box {
        width: 28px;
        height: 28px;
    }
    .dore-k-toggle-icon-box svg {
        width: 14px;
        height: 14px;
    }
    .dore-k-icerik {
        padding: 4px 16px 16px;
    }
    .dore-k-grup {
        margin-bottom: 20px;
    }
    .dore-k-grup-baslik {
        font-size: 10px;
        letter-spacing: 1.5px;
    }
    .dore-k-item {
        font-size: 13px;
        padding-left: 16px;
    }
    .dore-k-item::before {
        top: 9px;
        width: 4px;
        height: 4px;
    }
    .dore-k-tarih {
        font-size: 11px;
    }
}

/* ============================================================
   FİYAT MODÜLÜ — treatment ve disease sayfalarında ortak
   Class prefix: ddseffaf-
   Full-width breakout: 100vw ekran sonuna kadar.
   ============================================================ */
.ddseffaf-wrapper {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 56px;
    padding: 0;
    color: #2D2545;
    font-weight: 300;
    box-sizing: border-box;
}
.ddseffaf-wrapper *,
.ddseffaf-wrapper *::before,
.ddseffaf-wrapper *::after {
    box-sizing: border-box;
}
.ddseffaf-card {
    border-radius: 0;
    padding: 56px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #FAF7FF 0%, #F4EEFF 100%);
    border-top: 1px solid #ECE8F5;
}
.ddseffaf-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 22px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: center;
}
.ddseffaf-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #9C6BFF;
    padding: 6px 14px;
    border: 1px solid #9C6BFF;
    border-radius: 100px;
    margin-bottom: 18px;
}
.ddseffaf-title {
    font-size: clamp(20px, 2.4vw, 26px);
    font-weight: 700;
    color: #2D2545;
    margin: 0 0 18px 0;
    line-height: 1.25;
    letter-spacing: -0.5px;
    border-bottom: none;
    padding-bottom: 0;
}
.ddseffaf-text {
    font-size: 15px;
    font-weight: 300;
    color: #4a4458;
    line-height: 1.7;
    margin: 0 0 14px 0;
}
.ddseffaf-text:last-of-type {
    margin-bottom: 0;
}
.ddseffaf-text strong {
    font-weight: 500;
    color: #2D2545;
}
.ddseffaf-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.ddseffaf-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 24px;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    font-family: inherit;
}
.ddseffaf-btn-primary {
    background: linear-gradient(135deg, #2D2545 0%, #3d3458 100%);
    color: #ffffff;
    border: 1px solid #2D2545;
}
.ddseffaf-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(45, 37, 69, 0.25);
    color: #ffffff;
    text-decoration: none;
}
.ddseffaf-btn-secondary {
    background: #ffffff;
    color: #2D2545;
    border: 1px solid #ece8f5;
}
.ddseffaf-btn-secondary:hover {
    transform: translateY(-2px);
    border-color: #9C6BFF;
    box-shadow: 0 12px 28px rgba(156, 107, 255, 0.12);
    color: #2D2545;
    text-decoration: none;
}
.ddseffaf-btn-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: left;
}
.ddseffaf-btn-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.7;
}
.ddseffaf-btn-primary .ddseffaf-btn-label {
    color: #c8b8f0;
    opacity: 1;
}
.ddseffaf-btn-secondary .ddseffaf-btn-label {
    color: #9C6BFF;
    opacity: 1;
}
.ddseffaf-btn-title {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.2px;
}
.ddseffaf-btn-arrow {
    font-size: 20px;
    font-weight: 300;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}
.ddseffaf-btn:hover .ddseffaf-btn-arrow {
    transform: translateX(4px);
}
@media (max-width: 900px) {
    .ddseffaf-wrapper {
        margin-top: 40px;
    }
    .ddseffaf-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .ddseffaf-card {
        padding: 40px 0;
    }
}

/* ============================================================
   TEDAVİ SÜRECİ TIMELINE BİLEŞENİ — tüm tedavi sayfalarındaki #surec section'ında
   Class prefix: dore-tl-
   ============================================================ */
.dore-tl-wrap,.dore-tl-wrap *,.dore-tl-wrap *::before,.dore-tl-wrap *::after{margin:0;padding:0;box-sizing:border-box}
.dore-tl-wrap{--dore-brand-dark:#2D2545;--dore-brand:#9C6BFF;--dore-brand-mid:#7B52D9;--dore-brand-light:#F4F0FF;--dore-brand-border:#D4C4F7;--dore-brand-text:#4A3A6E;--dore-black:#1a1a1a;--dore-dark:#2d2d2d;--dore-text:#444;--dore-text-light:#6b6b6b;--dore-text-muted:#999;--dore-border:#e8e6ed;--dore-border-light:#f2f0f5;--dore-bg:#fff;--dore-bg-soft:#f9f8fb;font-family:'Roboto',sans-serif;font-weight:300;color:var(--dore-text);line-height:1.7;max-width:100%;margin:0 auto;padding:48px 0 48px;-webkit-font-smoothing:antialiased}
.dore-tl-topbar{display:flex;align-items:center;justify-content:space-between;gap:40px;margin-bottom:44px;opacity:0;animation:doreTlUp .65s ease-out forwards}
.dore-tl-heading{flex:1;min-width:0;display:flex;flex-direction:column;justify-content:center}
.dore-tl-heading h2{font-family:'Roboto',sans-serif;font-size:clamp(22px,3vw,30px);font-weight:300;color:var(--dore-brand-dark);line-height:1.25;margin:0 0 6px 0;padding:0;border:none;text-transform:none;letter-spacing:normal}
.dore-tl-heading h2 strong{font-weight:400}
.dore-tl-heading p{font-family:'Roboto',sans-serif;font-size:13.5px;color:var(--dore-text-light);font-weight:300;max-width:380px;margin:0;padding:0}
.dore-tl-stats{display:flex;gap:0;border:1px solid var(--dore-border);border-radius:12px;overflow:hidden;flex-shrink:0}
.dore-tl-stat{padding:18px 24px;text-align:center;position:relative}
.dore-tl-stat+.dore-tl-stat::before{content:'';position:absolute;left:0;top:20%;height:60%;width:1px;background:var(--dore-border)}
.dore-tl-stat-label{font-size:10px;font-weight:400;letter-spacing:.1em;text-transform:uppercase;color:var(--dore-text-muted);margin-bottom:3px}
.dore-tl-stat-value{font-size:19px;font-weight:300;color:var(--dore-brand-dark)}
.dore-tl-track{position:relative;display:flex;justify-content:space-between;margin-bottom:0}
.dore-tl-track::before{content:'';position:absolute;top:24px;left:40px;right:40px;height:2px;background:var(--dore-border);z-index:0}
.dore-tl-progress{position:absolute;top:24px;left:40px;height:2px;width:0;background:linear-gradient(90deg,var(--dore-brand-dark),var(--dore-brand));z-index:1;transition:width .6s cubic-bezier(.4,0,.2,1);border-radius:2px}
.dore-tl-node{flex:1;display:flex;flex-direction:column;align-items:center;position:relative;z-index:2;cursor:pointer;opacity:0;animation:doreTlUp .5s ease-out forwards}
.dore-tl-node:nth-child(2){animation-delay:.12s}.dore-tl-node:nth-child(3){animation-delay:.18s}.dore-tl-node:nth-child(4){animation-delay:.24s}.dore-tl-node:nth-child(5){animation-delay:.30s}.dore-tl-node:nth-child(6){animation-delay:.36s}.dore-tl-node:nth-child(7){animation-delay:.42s}.dore-tl-node:nth-child(8){animation-delay:.48s}
.dore-tl-circle{width:48px;height:48px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:400;font-size:15px;background:var(--dore-bg);color:var(--dore-brand);border:2px solid var(--dore-brand-border);transition:all .4s cubic-bezier(.25,1,.5,1);position:relative}
.dore-tl-circle::after{content:'';position:absolute;inset:-6px;border-radius:50%;border:2px solid transparent;transition:all .4s}
.dore-tl-node.is-active .dore-tl-circle{background:var(--dore-brand);color:#fff;border-color:var(--dore-brand);transform:scale(1.12);box-shadow:0 4px 16px rgba(156,107,255,.3)}
.dore-tl-node.is-active .dore-tl-circle::after{border-color:var(--dore-brand);opacity:.25}
.dore-tl-node:hover:not(.is-active) .dore-tl-circle{border-color:var(--dore-brand);background:var(--dore-brand-light);transform:scale(1.06)}
.dore-tl-node-label{margin-top:14px;font-size:12.5px;font-weight:400;color:var(--dore-text-light);text-align:center;line-height:1.35;max-width:130px;transition:color .3s}
.dore-tl-node.is-active .dore-tl-node-label{color:var(--dore-brand-dark)}
.dore-tl-node-time{margin-top:5px;font-size:11px;font-weight:300;color:var(--dore-text-muted);transition:color .3s}
.dore-tl-node.is-active .dore-tl-node-time{color:var(--dore-brand)}
.dore-tl-panel{margin-top:36px;background:var(--dore-bg);border:1px solid var(--dore-border);border-radius:14px;padding:32px 36px;min-height:160px;position:relative;overflow:hidden;transition:box-shadow .3s;opacity:0;animation:doreTlUp .5s ease-out .45s forwards}
.dore-tl-panel::before{content:'';position:absolute;top:0;left:0;width:100%;height:3px;background:linear-gradient(90deg,var(--dore-brand-dark),var(--dore-brand));opacity:0;transition:opacity .35s}
.dore-tl-panel.is-filled::before{opacity:1}.dore-tl-panel.is-filled{box-shadow:0 4px 24px rgba(156,107,255,.08)}
.dore-tl-panel-body{display:none}.dore-tl-panel-body.is-visible{display:block;animation:doreTlFade .35s ease-out forwards}
.dore-tl-panel-top{display:flex;align-items:flex-start;justify-content:space-between;gap:16px;margin-bottom:12px}
.dore-tl-panel-title{font-family:'Roboto',sans-serif;font-size:20px;font-weight:300;color:var(--dore-brand-dark);line-height:1.3;margin:0;padding:0;border:none;text-transform:none;letter-spacing:normal}
.dore-tl-panel-badge{font-size:12px;font-weight:400;padding:5px 14px;border-radius:100px;background:var(--dore-brand-light);color:var(--dore-brand-mid);white-space:nowrap;flex-shrink:0}
.dore-tl-panel-dur{font-size:13px;color:var(--dore-text-muted);font-weight:300;display:flex;align-items:center;gap:6px;margin-bottom:14px}
.dore-tl-panel-dur svg{width:14px;height:14px;opacity:.5}
.dore-tl-panel-desc{font-size:14px;color:var(--dore-text-light);line-height:1.8;font-weight:300;padding-top:14px;border-top:1px solid var(--dore-border-light);max-width:680px}
.dore-tl-panel-tip{display:inline-flex;align-items:flex-start;gap:8px;margin-top:14px;padding:10px 16px;background:var(--dore-brand-light);border-radius:8px;font-size:12.5px;color:var(--dore-brand-text);line-height:1.6;font-weight:300}
.dore-tl-panel-tip svg{width:14px;height:14px;flex-shrink:0;margin-top:2px;color:var(--dore-brand)}
.dore-tl-cta{margin-top:44px;background:var(--dore-brand-dark);border-radius:14px;padding:32px;display:flex;align-items:center;justify-content:space-between;gap:24px;position:relative;overflow:hidden;opacity:0;animation:doreTlUp .65s ease-out .55s forwards}
.dore-tl-cta::before{content:'';position:absolute;top:-60px;right:-40px;width:220px;height:220px;background:var(--dore-brand);opacity:.07;border-radius:50%;pointer-events:none}
.dore-tl-cta-text{position:relative;z-index:1}
.dore-tl-cta-text h3{font-family:'Roboto',sans-serif;font-size:18px;font-weight:300;color:#fff;margin:0 0 4px 0;padding:0;border:none;text-transform:none;letter-spacing:normal}
.dore-tl-cta-text p{font-size:13px;color:rgba(255,255,255,.6);font-weight:300;margin:0}
.dore-tl-cta-btns{display:flex;align-items:center;gap:10px;position:relative;z-index:1;flex-shrink:0}
.dore-tl-btn{display:inline-flex;align-items:center;gap:8px;font-family:'Roboto',sans-serif;font-size:13px!important;font-weight:400!important;padding:11px 22px;border-radius:8px;cursor:pointer;transition:all .25s;text-decoration:none;border:none;white-space:nowrap;line-height:1}
.dore-tl-btn svg{width:15px;height:15px}
.dore-tl-btn--primary{background:var(--dore-brand);color:#fff!important}
.dore-tl-btn--primary:hover{background:var(--dore-brand-mid);transform:translateY(-1px);box-shadow:0 4px 16px rgba(156,107,255,.35);color:#fff!important;text-decoration:none}
.dore-tl-btn--ghost{background:rgba(255,255,255,.08);color:rgba(255,255,255,.85)!important;border:1px solid rgba(255,255,255,.15)}
.dore-tl-btn--ghost:hover{background:rgba(255,255,255,.14);border-color:rgba(255,255,255,.25);color:#fff!important;text-decoration:none}
.dore-tl-mobile{display:none}
@media(max-width:767px){
.dore-tl-wrap{padding:36px 0 48px}.dore-tl-track,.dore-tl-panel{display:none!important}.dore-tl-mobile{display:block}
.dore-tl-topbar{flex-direction:column;gap:20px}.dore-tl-heading{text-align:center}.dore-tl-heading p{margin:0 auto}
.dore-tl-stats{flex-direction:row;width:100%}.dore-tl-stat{flex:1;padding:14px 8px}.dore-tl-stat+.dore-tl-stat::before{left:0;top:20%;width:1px;height:60%}
.dore-tl-stat-value{font-size:16px}
.dore-tl-mobile{position:relative}.dore-tl-mobile::before{content:'';position:absolute;left:23px;top:28px;bottom:28px;width:1.5px;background:var(--dore-border)}
.dore-tl-mstep{position:relative;display:flex;gap:14px;padding-bottom:8px;cursor:pointer;opacity:0;animation:doreTlUp .5s ease-out forwards}
.dore-tl-mstep:last-child{padding-bottom:0}.dore-tl-mstep:nth-child(1){animation-delay:.15s}.dore-tl-mstep:nth-child(2){animation-delay:.21s}.dore-tl-mstep:nth-child(3){animation-delay:.27s}.dore-tl-mstep:nth-child(4){animation-delay:.33s}.dore-tl-mstep:nth-child(5){animation-delay:.39s}.dore-tl-mstep:nth-child(6){animation-delay:.45s}.dore-tl-mstep:nth-child(7){animation-delay:.51s}
.dore-tl-mdot{flex-shrink:0;width:46px;display:flex;flex-direction:column;align-items:center;z-index:2}
.dore-tl-mnum{width:46px;height:46px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:400;font-size:15px;background:var(--dore-bg);color:var(--dore-brand);border:1.5px solid var(--dore-brand-border);transition:all .35s}
.dore-tl-mstep.is-active .dore-tl-mnum{background:var(--dore-brand);color:#fff;border-color:var(--dore-brand);transform:scale(1.08)}
.dore-tl-mcard{flex:1;border:1px solid var(--dore-border);border-radius:12px;padding:18px;transition:all .3s;position:relative;overflow:hidden}
.dore-tl-mcard::before{content:'';position:absolute;top:0;left:0;width:3px;height:100%;background:var(--dore-brand);opacity:0;transition:opacity .3s}
.dore-tl-mstep.is-active .dore-tl-mcard{box-shadow:0 3px 16px rgba(156,107,255,.10)}.dore-tl-mstep.is-active .dore-tl-mcard::before{opacity:1}
.dore-tl-mcard-top{display:flex;align-items:flex-start;justify-content:space-between;gap:8px;margin-bottom:3px}
.dore-tl-mcard-title{font-size:14px;font-weight:400;color:var(--dore-dark);line-height:1.35}
.dore-tl-mcard-badge{font-size:10px;font-weight:400;padding:2px 8px;border-radius:100px;background:var(--dore-brand-light);color:var(--dore-brand-mid);white-space:nowrap;flex-shrink:0}
.dore-tl-mcard-dur{font-size:12px;color:var(--dore-text-muted);font-weight:300;display:flex;align-items:center;gap:4px}
.dore-tl-mcard-dur svg{width:11px;height:11px;opacity:.5}
.dore-tl-mexpand{max-height:0;overflow:hidden;transition:max-height .4s cubic-bezier(.4,0,.2,1),opacity .3s;opacity:0}
.dore-tl-mstep.is-active .dore-tl-mexpand{max-height:300px;opacity:1}
.dore-tl-mexpand-desc{font-size:13px;color:var(--dore-text-light);line-height:1.7;font-weight:300;margin-top:12px;padding-top:12px;border-top:1px solid var(--dore-border-light)}
.dore-tl-mexpand-tip{display:flex;align-items:flex-start;gap:7px;margin-top:10px;padding:8px 12px;background:var(--dore-brand-light);border-radius:8px;font-size:11.5px;color:var(--dore-brand-text);line-height:1.55;font-weight:300}
.dore-tl-mexpand-tip svg{width:13px;height:13px;flex-shrink:0;margin-top:1px;color:var(--dore-brand)}
.dore-tl-cta{flex-direction:column;text-align:center;padding:28px 20px}.dore-tl-cta-btns{flex-direction:column;width:100%}.dore-tl-btn{width:100%;justify-content:center}
}
@keyframes doreTlUp{from{opacity:0;transform:translateY(14px)}to{opacity:1;transform:translateY(0)}}
@keyframes doreTlFade{from{opacity:0;transform:translateY(6px)}to{opacity:1;transform:translateY(0)}}

/* ============================================================
   QUICK STRIP — tedavi/hastalık sayfalarında hero altında üst şerit
   5 hücre yan yana: ikon + uppercase etiket + büyük değer
   ============================================================ */
.dore-quickstrip {
    width: 100%;
    background: #fff;
    border: 1px solid #ECE8F5;
    border-radius: 8px;
    padding: 4px;
    display: grid;
    grid-template-columns: repeat(var(--cells, 5), 1fr);
    gap: 0;
    position: relative;
    overflow: hidden;
}
.dore-quickstrip[data-cells="3"] { --cells: 3; }
.dore-quickstrip[data-cells="4"] { --cells: 4; }
.dore-quickstrip[data-cells="5"] { --cells: 5; }
.dore-quickstrip::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2D2545 0%, #9C6BFF 100%);
}
.dore-quickstrip__cell {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 16px;
    position: relative;
    transition: background 0.2s ease;
    min-width: 0;
}
.dore-quickstrip__cell:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0; top: 22%;
    bottom: 22%;
    width: 1px;
    background: #F0EBF5;
}
.dore-quickstrip__cell:hover { background: #FAF8FF; }
.dore-quickstrip__icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: linear-gradient(135deg, #F4F0FF 0%, #E8DFFF 100%);
    display: grid;
    place-items: center;
    color: #9C6BFF;
    flex-shrink: 0;
}
.dore-quickstrip__text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.dore-quickstrip__label {
    font-size: 10px;
    font-weight: 500;
    color: #7d7596;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 3px;
}
.dore-quickstrip__value {
    font-size: 14px;
    font-weight: 500;
    color: #2D2545;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 900px) {
    .dore-quickstrip {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .dore-quickstrip__cell::after { display: none; }
    .dore-quickstrip__cell { padding: 14px 14px; border-bottom: 1px solid #F0EBF5; }
    .dore-quickstrip__cell:nth-last-child(-n+2):nth-child(odd),
    .dore-quickstrip__cell:nth-last-child(1) {
        border-bottom: 0;
    }
}
@media (max-width: 480px) {
    .dore-quickstrip {
        grid-template-columns: 1fr !important;
    }
    .dore-quickstrip__cell { border-bottom: 1px solid #F0EBF5; }
    .dore-quickstrip__cell:last-child { border-bottom: 0; }
}

/* ============================================================
   EVAL CTA — tedavi/hastalık sayfalarında hero altında.
   "Bu tedavi/durum size uygun mu?" → Online Ön Değerlendirme.
   ============================================================ */
.dore-eval-cta {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center;
    width: 100%;
    background: linear-gradient(135deg, #F8F4FF 0%, #FFFFFF 50%, #F4EEFF 100%);
    border: 1px solid #E8DFFF;
    border-radius: 14px;
    padding: 22px 28px;
    text-decoration: none !important;
    color: inherit;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.dore-eval-cta:hover {
    transform: translateY(-2px);
    border-color: rgba(156, 107, 255, 0.4);
    box-shadow: 0 14px 36px rgba(45, 37, 69, 0.10);
    color: inherit;
    text-decoration: none !important;
}
.dore-eval-cta * { text-decoration: none !important; }
.dore-eval-cta__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #9C6BFF 0%, #B794FF 100%);
    color: #fff;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(156, 107, 255, 0.30);
}
.dore-eval-cta__icon svg {
    width: 28px;
    height: 28px;
}
.dore-eval-cta__text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}
.dore-eval-cta__eyebrow {
    font-size: 10px;
    font-weight: 500;
    color: #9C6BFF;
    text-transform: uppercase;
    letter-spacing: 1.8px;
}
.dore-eval-cta__headline {
    font-size: 18px;
    font-weight: 700;
    color: #2D2545;
    line-height: 1.3;
    letter-spacing: -0.2px;
}
.dore-eval-cta__sub {
    font-size: 13.5px;
    font-weight: 300;
    color: #6E6488;
    line-height: 1.55;
    margin-top: 2px;
}
.dore-eval-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 22px;
    background: #2D2545;
    color: #fff;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1;
    flex-shrink: 0;
    transition: background 0.25s ease, gap 0.25s ease;
}
.dore-eval-cta:hover .dore-eval-cta__btn {
    background: #9C6BFF;
    gap: 12px;
}
.dore-eval-cta__btn svg {
    width: 14px;
    height: 14px;
}

@media (max-width: 768px) {
    .dore-eval-cta {
        grid-template-columns: auto 1fr;
        gap: 16px;
        padding: 18px 20px;
    }
    .dore-eval-cta__icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }
    .dore-eval-cta__icon svg {
        width: 22px;
        height: 22px;
    }
    .dore-eval-cta__headline { font-size: 16px; }
    .dore-eval-cta__sub { font-size: 12.5px; }
    .dore-eval-cta__btn {
        grid-column: 1 / -1;
        justify-content: center;
        margin-top: 6px;
        padding: 12px 18px;
    }
}

/* ============================================================
   FOOTER — zenginleştirilmiş yapı (logo + 4 kolon + alt menü + ödeme)
   ============================================================ */
.dore-footer {
    background: var(--c-primary);
    color: rgba(255, 255, 255, 0.7);
    padding: 56px 0 24px;
    font-size: 14px;
    line-height: 1.6;
    position: relative;
    overflow: hidden;
}
.dore-footer::before {
    /* Sağ üstte hafif çiçek deseni - dekoratif */
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 360px; height: 360px;
    background-image: url('/assets/img/doredent-cicegi.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top right;
    opacity: 0.04;
    pointer-events: none;
}
.dore-footer__main {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
}
.dore-footer h4 {
    color: #FFF;
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 18px;
    letter-spacing: 0.3px;
}
.dore-footer ul { list-style: none; margin: 0; padding: 0; }
.dore-footer li { margin-bottom: 10px; }
.dore-footer a {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    text-decoration: none;
    transition: color 0.2s ease;
}
.dore-footer a:hover { color: #FFF; }

/* ----- Brand ----- */
.dore-footer__brand {
    max-width: 320px;
}
.dore-footer__logo {
    display: inline-block;
    margin-bottom: 20px;
}
.dore-footer__logo img {
    display: block;
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}
.dore-footer__tagline {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 300;
}

/* ----- Bize Ulaşın ----- */
.dore-footer__contact { display: flex; flex-direction: column; gap: 14px; }
.dore-footer__phone {
    display: inline-block;
    font-size: 22px;
    font-weight: 500;
    color: #FFF !important;
    letter-spacing: -0.3px;
    line-height: 1.2;
}
.dore-footer__phone:hover { color: var(--c-accent) !important; }

.dore-footer__hours {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.dore-footer__pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    width: fit-content;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.85);
}
.dore-footer__pill-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
}
.dore-footer__pill--open {
    background: rgba(46, 204, 113, 0.15);
    border-color: rgba(46, 204, 113, 0.35);
    color: #6FE49B;
}
.dore-footer__pill--open .dore-footer__pill-dot {
    background: #2ECC71;
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.25);
    animation: dore-footer-pulse 2s ease-in-out infinite;
}
.dore-footer__pill--closed {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.55);
}
.dore-footer__pill--closed .dore-footer__pill-dot {
    background: rgba(255, 255, 255, 0.4);
}
@keyframes dore-footer-pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.25); }
    50%      { box-shadow: 0 0 0 6px rgba(46, 204, 113, 0.08); }
}
.dore-footer__hours-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}

.dore-footer__job { margin-top: 4px; }
.dore-footer__job-label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 4px;
}
.dore-footer__job a {
    color: #FFF;
    font-weight: 400;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.3);
    padding-bottom: 1px;
}
.dore-footer__job a:hover { border-bottom-color: var(--c-accent); }

/* ----- Lower (alt menü + ödeme) ----- */
.dore-footer__lower {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 32px;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}
.dore-footer__disclaimer {
    margin: 0;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
    font-weight: 300;
}
.dore-footer__lower-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-end;
}
.dore-footer__sub-nav {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.dore-footer__sub-nav a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 400;
}
.dore-footer__sub-nav a:hover { color: var(--c-accent); }

.dore-footer__pay {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}
.dore-footer__pay-iyzico {
    background: #FFF;
    color: #1E064B;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3px;
    border-radius: 4px;
}
.dore-footer__pay-card {
    background: rgba(255, 255, 255, 0.95);
    color: #1A1A1A;
    padding: 6px 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 4px;
    text-transform: uppercase;
    line-height: 1.2;
    min-width: 36px;
    text-align: center;
}

/* ----- Credit ----- */
.dore-footer__credit {
    padding: 16px 0 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    line-height: 1.7;
}
.dore-footer__credit strong {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
}

/* ----- Mobil ----- */
@media (max-width: 1024px) {
    .dore-footer__main { grid-template-columns: 1fr 1fr; gap: 32px; }
    .dore-footer__brand { grid-column: 1 / -1; max-width: none; }
}
@media (max-width: 700px) {
    .dore-footer { padding: 40px 0 20px; }
    .dore-footer__main { grid-template-columns: 1fr; gap: 28px; margin-bottom: 28px; }
    .dore-footer__lower { grid-template-columns: 1fr; gap: 20px; }
    .dore-footer__lower-right { align-items: flex-start; }
    .dore-footer__sub-nav { justify-content: flex-start; }
    .dore-footer__phone { font-size: 20px; }
}

/* =========================================
   ANASAYFA — Yeni bölümler
   ========================================= */

/* Hekimler grid */
.dore-home-doctors {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 900px) {
    .dore-home-doctors { grid-template-columns: 1fr; gap: 20px; }
}

.dore-home-doctor {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: 14px;
    padding: 28px 24px;
    text-align: center;
    transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.dore-home-doctor:hover {
    border-color: var(--c-accent);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px -10px rgba(156, 107, 255, .2);
}
.dore-home-doctor img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 18px;
    display: block;
    background: #F2EBE0;
}
.dore-home-doctor__role {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--c-accent);
    margin-bottom: 8px;
}
.dore-home-doctor h3 {
    font-size: 17px;
    font-weight: 500;
    color: var(--c-primary);
    margin: 0 0 10px;
    line-height: 1.3;
}
.dore-home-doctor p {
    font-size: 14px;
    color: var(--c-text-muted);
    line-height: 1.6;
    margin: 0 0 16px;
}
.dore-home-doctor__link {
    font-size: 13px;
    font-weight: 500;
    color: var(--c-accent);
    text-decoration: none;
}
.dore-home-doctor__link:hover { text-decoration: underline; }

/* Önce-sonra vaka kartları */
.dore-home-cases {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
@media (max-width: 900px) {
    .dore-home-cases { grid-template-columns: 1fr; gap: 16px; }
}

.dore-home-case {
    background: #fff;
    border: 1px solid var(--c-border-soft);
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform .25s ease, box-shadow .25s ease;
    display: block;
}
.dore-home-case:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px -12px rgba(45, 37, 69, .15);
}
.dore-home-case__imgs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: #e8e0f0;
}
.dore-home-case__col { position: relative; overflow: hidden; }
.dore-home-case__col img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
}
.dore-home-case__lbl {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 2;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 12px;
    line-height: 1.5;
}
.dore-home-case__lbl--once { background: rgba(45, 37, 69, .8); color: #fff; }
.dore-home-case__lbl--sonra { background: rgba(156, 107, 255, .85); color: #fff; }
.dore-home-case__info { padding: 16px 18px; }
.dore-home-case__title {
    font-size: 15px;
    font-weight: 500;
    color: var(--c-primary);
    margin-bottom: 6px;
    line-height: 1.3;
}
.dore-home-case__tag {
    font-size: 12px;
    color: var(--c-text-soft);
}

/* Bilge banner */
.dore-home-bilge {
    background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
    overflow: hidden;
    color: #fff;
}
.dore-home-bilge::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 60%;
    height: 180%;
    background: radial-gradient(ellipse, rgba(156, 107, 255, .12) 0%, transparent 70%);
    pointer-events: none;
}
.dore-home-bilge__pulse {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(156, 107, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.dore-home-bilge__pulse::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid rgba(156, 107, 255, .3);
    animation: doreHomeBilgePulse 2s ease-in-out infinite;
}
@keyframes doreHomeBilgePulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: .4; }
}
.dore-home-bilge__pulse svg {
    width: 22px;
    height: 22px;
    color: var(--c-accent);
}
.dore-home-bilge__content { flex: 1; position: relative; z-index: 1; }
.dore-home-bilge__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(156, 107, 255, .15);
    border: 1px solid rgba(156, 107, 255, .25);
    color: #c4a0ff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 3px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
}
.dore-home-bilge__dot {
    width: 6px;
    height: 6px;
    background: #25D366;
    border-radius: 50%;
    animation: doreHomeBilgeDot 1.5s ease-in-out infinite;
}
@keyframes doreHomeBilgeDot {
    0%, 100% { opacity: 1; }
    50% { opacity: .3; }
}
.dore-home-bilge__content h3 {
    font-size: clamp(18px, 2.4vw, 22px);
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
    line-height: 1.3;
}
.dore-home-bilge__content h3 span {
    background: linear-gradient(135deg, var(--c-accent), #c4a0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.dore-home-bilge__content > p {
    font-size: 14px;
    color: rgba(255, 255, 255, .65);
    margin: 0 0 16px;
    line-height: 1.6;
}
.dore-home-bilge__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--c-accent);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    padding: 11px 22px;
    border-radius: 50px;
    text-decoration: none;
    transition: all .25s ease;
}
.dore-home-bilge__btn:hover {
    background: #8a55f0;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(156, 107, 255, .3);
}
.dore-home-bilge__btn svg { width: 14px; height: 14px; }
@media (max-width: 700px) {
    .dore-home-bilge {
        flex-direction: column;
        text-align: center;
        padding: 22px 18px;
        gap: 14px;
    }
}

/* Vaka tipleri (ol) */
.dore-home-cases-types {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.dore-home-cases-types li {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}
.dore-home-cases-types__num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--c-accent);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.dore-home-cases-types li h3 {
    font-size: 17px;
    font-weight: 500;
    color: var(--c-primary);
    margin: 6px 0 6px;
    line-height: 1.3;
}
.dore-home-cases-types li p {
    font-size: 15px;
    color: var(--c-text-muted);
    line-height: 1.7;
    margin: 0;
}

/* Kliniğimiz 3 değer */
.dore-home-clinic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
@media (max-width: 780px) {
    .dore-home-clinic { grid-template-columns: 1fr; gap: 16px; }
}
.dore-home-clinic__feat {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 26px 22px;
    transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.dore-home-clinic__feat:hover {
    border-color: var(--c-accent);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px -10px rgba(156, 107, 255, .18);
}
.dore-home-clinic__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(156, 107, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.dore-home-clinic__icon svg {
    width: 22px;
    height: 22px;
    color: var(--c-accent);
}
.dore-home-clinic__feat h3 {
    font-size: 16px;
    font-weight: 500;
    color: var(--c-primary);
    margin: 0 0 8px;
    line-height: 1.3;
}
.dore-home-clinic__feat p {
    font-size: 14px;
    color: var(--c-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ============================================================
   ANASAYFA — Kayan Foto Galerisi (Marquee)
   ============================================================ */
.dore-home-marquee {
    overflow: hidden;
    padding: 56px 0;
    background: var(--c-bg);
    position: relative;
    -webkit-mask-image: linear-gradient(90deg,
        transparent 0,
        #000 80px,
        #000 calc(100% - 80px),
        transparent 100%);
            mask-image: linear-gradient(90deg,
        transparent 0,
        #000 80px,
        #000 calc(100% - 80px),
        transparent 100%);
}
.dore-home-marquee__track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: dore-marquee-scroll 40s linear infinite;
}
.dore-home-marquee:hover .dore-home-marquee__track {
    animation-play-state: paused;
}
.dore-home-marquee__item {
    flex: 0 0 auto;
    width: 280px;
    height: 360px;
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    background: var(--c-accent-soft);
    box-shadow: 0 10px 30px rgba(45, 37, 69, 0.08);
    transition: transform .35s ease, box-shadow .35s ease;
}
.dore-home-marquee__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(45, 37, 69, 0.16);
}
.dore-home-marquee__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

@keyframes dore-marquee-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(calc(-50% - 8px)); }
}

@media (max-width: 800px) {
    .dore-home-marquee {
        padding: 40px 0;
    }
    .dore-home-marquee__item {
        width: 220px;
        height: 280px;
    }
    .dore-home-marquee__track {
        animation-duration: 30s;
    }
}

@media (prefers-reduced-motion: reduce) {
    .dore-home-marquee__track {
        animation: none;
    }
}

/* ============================================================
   ANASAYFA — Misyon / Hakkımızda görselli bölümü
   ============================================================ */
.dore-home-mission {
    padding: 80px 0;
    background: var(--c-bg);
    position: relative;
    overflow: hidden;
}
.dore-home-mission__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}
.dore-home-mission__media {
    position: relative;
    min-height: 420px;
    padding: 24px 0;
}
.dore-home-mission__img {
    position: absolute;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 24px 48px rgba(45, 37, 69, 0.18);
    z-index: 1;
}
.dore-home-mission__img--back {
    width: 56%;
    aspect-ratio: 4 / 5;
    top: 10%;
    left: 0;
    transform: rotate(-6deg);
}
.dore-home-mission__img--front {
    width: 60%;
    aspect-ratio: 3 / 4;
    top: 5%;
    right: 4%;
    transform: rotate(4deg);
    z-index: 2;
}

.dore-home-mission__content h2 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--c-primary);
    letter-spacing: -0.5px;
    margin: 0 0 20px;
}
.dore-home-mission__content > p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--c-text-muted);
    margin: 0 0 28px;
}
.dore-home-mission__features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}
.dore-home-mission__features li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
    font-size: 15px;
    color: var(--c-text);
    font-weight: 400;
}
.dore-home-mission__check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid var(--c-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--c-primary);
    flex-shrink: 0;
}
.dore-home-mission__check svg {
    width: 14px;
    height: 14px;
}
.dore-home-mission__cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    margin-top: 8px;
}
.dore-home-mission__cta .dore-btn--accent {
    padding: 16px 36px;
    font-size: 15px;
    border-radius: 6px;
}
.dore-home-mission__phone {
    font-size: 14px;
    color: var(--c-text-muted);
    text-decoration: none;
}
.dore-home-mission__phone strong {
    color: var(--c-accent);
    font-weight: 500;
}
.dore-home-mission__phone:hover {
    text-decoration: none;
}

@media (min-width: 800px) {
    .dore-home-mission {
        padding: 100px 0;
    }
    .dore-home-mission__grid {
        grid-template-columns: 1.05fr 1fr;
        gap: 72px;
    }
    .dore-home-mission__media {
        min-height: 560px;
    }    .dore-home-mission__content h2 {
        font-size: 36px;
    }
    .dore-home-mission__content > p {
        font-size: 16px;
    }
}

/* ============================================================
   ANASAYFA — Tedaviler (beyaz arka plan + koyu cam kartlar)
   ============================================================ */
.dore-home-treatments {
    position: relative;
    padding: 80px 0;
    background: var(--c-bg);
    overflow: hidden;
    isolation: isolate;
}

/* Glow'lar beyaz arka planda gerek yok */
.dore-home-treatments__glow {
    display: none;
}

.dore-home-treatments .dore-container {
    position: relative;
    z-index: 1;
}

.dore-home-treatments__head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}
.dore-home-treatments__eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: var(--c-accent);
    margin-bottom: 16px;
    padding: 6px 14px;
    border: 1px solid rgba(156, 107, 255, 0.35);
    border-radius: 100px;
    background: rgba(156, 107, 255, 0.06);
}
.dore-home-treatments__head h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--c-primary);
    line-height: 1.15;
    letter-spacing: -0.8px;
    margin: 0 0 16px;
}
.dore-home-treatments__head h2 em {
    font-style: normal;
    background: linear-gradient(120deg, #6B3FCC 0%, #9C6BFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.dore-home-treatments__head p {
    font-size: 16px;
    line-height: 1.65;
    color: var(--c-text-muted);
    margin: 0;
}

/* Grid */
.dore-home-treatments__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

/* Kart */
.dore-tcard {
    position: relative;
    display: block;
    height: 440px;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    background: rgba(45, 37, 69, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform .5s cubic-bezier(.4,0,.2,1),
                border-color .4s ease,
                box-shadow .4s ease;
    isolation: isolate;
}
.dore-tcard:hover {
    transform: translateY(-6px);
    border-color: rgba(156, 107, 255, 0.5);
    box-shadow:
        0 30px 60px rgba(45, 37, 69, 0.25),
        0 0 0 1px rgba(156, 107, 255, 0.3),
        0 0 50px rgba(156, 107, 255, 0.18);
    text-decoration: none;
}

.dore-tcard__img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .9s cubic-bezier(.4,0,.2,1), filter .5s ease;
    z-index: 0;
    filter: saturate(0.85) brightness(0.9);
}
.dore-tcard:hover .dore-tcard__img {
    transform: scale(1.08);
    filter: saturate(1) brightness(1);
}

.dore-tcard__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(45, 37, 69, 0) 0%,
            rgba(45, 37, 69, 0.3) 35%,
            rgba(31, 25, 51, 0.92) 75%,
            rgba(20, 14, 45, 0.98) 100%);
    z-index: 1;
}

.dore-tcard__body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 26px;
    z-index: 2;
    color: #FFF;
}

.dore-tcard__num {
    position: absolute;
    top: 22px;
    right: 24px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 1px;
    font-variant-numeric: tabular-nums;
}

.dore-tcard__tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--c-accent);
    padding: 5px 11px;
    background: rgba(156, 107, 255, 0.15);
    border: 1px solid rgba(156, 107, 255, 0.3);
    border-radius: 100px;
    margin-bottom: 14px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.dore-tcard__title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    color: #FFF;
    margin: 0 0 12px;
    letter-spacing: -0.3px;
}

.dore-tcard__desc {
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 18px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height .45s ease, opacity .35s ease, margin .45s ease;
}
.dore-tcard:hover .dore-tcard__desc {
    max-height: 80px;
    opacity: 1;
}

.dore-tcard__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #FFF;
    transition: all .3s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.dore-tcard__arrow svg {
    width: 18px;
    height: 18px;
    transition: transform .3s ease;
}
.dore-tcard:hover .dore-tcard__arrow {
    background: var(--c-accent);
    border-color: var(--c-accent);
    transform: rotate(-45deg);
    box-shadow: 0 8px 24px rgba(156, 107, 255, 0.5);
}

@media (min-width: 600px) {
    .dore-home-treatments__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1000px) {
    .dore-home-treatments {
        padding: 100px 0;
    }
    .dore-home-treatments__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
    }
    .dore-tcard {
        height: 480px;
    }
    .dore-home-treatments__head h2 {
        font-size: 44px;
    }
    .dore-tcard__title {
        font-size: 19px;
    }
}

/* ============================================================
   ANASAYFA — Süreç (yatay 4 adımlı timeline, beyaz)
   ============================================================ */
.dore-home-process {
    padding: 80px 0;
    background: var(--c-bg);
    position: relative;
}

.dore-home-process__head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 70px;
}
.dore-home-process__eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: var(--c-accent);
    margin-bottom: 16px;
    padding: 6px 14px;
    border: 1px solid rgba(156, 107, 255, 0.35);
    border-radius: 100px;
    background: rgba(156, 107, 255, 0.06);
}
.dore-home-process__head h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--c-primary);
    line-height: 1.15;
    letter-spacing: -0.6px;
    margin: 0 0 16px;
}
.dore-home-process__head h2 em {
    font-style: normal;
    background: linear-gradient(120deg, #6B3FCC 0%, #9C6BFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.dore-home-process__head p {
    font-size: 16px;
    line-height: 1.65;
    color: var(--c-text-muted);
    margin: 0;
}

/* Timeline */
.dore-home-process__timeline {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Yatay gradient çizgi (desktop) */
.dore-home-process__line {
    display: none;
}

.dore-home-process__step {
    text-align: center;
    position: relative;
    padding: 0 12px;
}

.dore-home-process__num {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: var(--c-bg);
    border: 1.5px solid var(--c-border);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
    color: var(--c-primary);
}
.dore-home-process__num span {
    position: absolute;
    top: -8px;
    right: -6px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--c-accent);
    color: #FFF;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(156, 107, 255, 0.4);
}
.dore-home-process__icon {
    width: 32px;
    height: 32px;
}
.dore-home-process__step:hover .dore-home-process__num {
    transform: translateY(-4px);
    border-color: var(--c-accent);
    box-shadow: 0 12px 30px rgba(156, 107, 255, 0.18);
}

.dore-home-process__step h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--c-primary);
    margin: 0 0 10px;
    line-height: 1.3;
}
.dore-home-process__step p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--c-text-muted);
    margin: 0;
}

/* CTA */
.dore-home-process__cta {
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.dore-home-process__cta .dore-btn--accent {
    padding: 16px 36px;
    font-size: 15px;
    border-radius: 6px;
}
.dore-home-process__phone {
    font-size: 14px;
    color: var(--c-text-muted);
}
.dore-home-process__phone a {
    color: var(--c-text-muted);
    text-decoration: none;
}
.dore-home-process__phone strong {
    color: var(--c-accent);
    font-weight: 500;
}

@media (min-width: 800px) {
    .dore-home-process__timeline {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
    /* Yatay gradient çizgi — daireleri birleştirir */
    .dore-home-process__line {
        display: block;
        position: absolute;
        top: 40px;
        left: 12.5%;
        right: 12.5%;
        height: 2px;
        background:
            linear-gradient(90deg,
                rgba(156, 107, 255, 0) 0%,
                rgba(156, 107, 255, 0.5) 15%,
                rgba(156, 107, 255, 0.5) 85%,
                rgba(156, 107, 255, 0) 100%);
        z-index: 0;
    }
    .dore-home-process__step {
        position: relative;
        z-index: 1;
    }
    .dore-home-process__num {
        background: var(--c-bg);
    }
    .dore-home-process__head h2 {
        font-size: 42px;
    }
}

/* ============================================================
   ANASAYFA — Hakkımızda + Ön Değerlendirme CTA (2 sütun)
   ============================================================ */
.dore-home-about {
    padding: 80px 0;
    background: var(--c-bg);
}
.dore-home-about__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: start;
}

/* SOL: Hakkımızda */
.dore-home-about__content {
    display: flex;
    flex-direction: column;
    padding: 8px 0;
}
.dore-home-about__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-top: 28px;
    border-top: 1px solid var(--c-border);
    margin-top: 36px;
}
.dore-home-about__eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: var(--c-accent);
    margin-bottom: 18px;
    padding: 6px 14px;
    border: 1px solid rgba(156, 107, 255, 0.35);
    border-radius: 100px;
    background: rgba(156, 107, 255, 0.06);
    align-self: flex-start;
}
.dore-home-about__content h2 {
    font-size: 34px;
    font-weight: 700;
    color: var(--c-primary);
    line-height: 1.2;
    letter-spacing: -0.6px;
    margin: 0 0 20px;
}
.dore-home-about__content h2 em {
    font-style: normal;
    background: linear-gradient(120deg, #6B3FCC 0%, #9C6BFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.dore-home-about__content > p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--c-text-muted);
    margin: 0 0 36px;
    max-width: 540px;
}

.dore-home-about__stat-num {
    font-size: 30px;
    font-weight: 700;
    color: var(--c-primary);
    line-height: 1;
    letter-spacing: -1px;
    margin-bottom: 8px;
}
.dore-home-about__stat-num span {
    color: var(--c-accent);
}
.dore-home-about__stat-label {
    font-size: 12px;
    color: var(--c-text-muted);
    line-height: 1.4;
    font-weight: 400;
}

/* SAĞ: Ön Değerlendirme CTA Kutusu */
.dore-home-about__cta {
    position: relative;
    background:
        radial-gradient(circle at 100% 0%, rgba(156, 107, 255, 0.25) 0%, transparent 50%),
        linear-gradient(160deg, #3D2E66 0%, #2D2545 60%, #1F1933 100%);
    color: #FFF;
    padding: 32px 28px;
    border-radius: 20px;
    overflow: hidden;
    isolation: isolate;
    box-shadow:
        0 30px 60px rgba(45, 37, 69, 0.3),
        0 0 0 1px rgba(156, 107, 255, 0.15);
    align-self: start;
}
.dore-home-about__cta-glow {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 280px;
    height: 280px;
    background: var(--c-accent);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}
.dore-home-about__cta > *:not(.dore-home-about__cta-glow) {
    position: relative;
    z-index: 1;
}

.dore-home-about__cta-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #FFF;
    padding: 6px 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    margin-bottom: 18px;
}
.dore-home-about__cta-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ADE80;
    box-shadow: 0 0 10px #4ADE80;
    animation: dore-cta-pulse 2s ease-in-out infinite;
}
@keyframes dore-cta-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.6; transform: scale(0.85); }
}

.dore-home-about__cta h3 {
    font-size: 30px;
    font-weight: 700;
    color: #FFF;
    line-height: 1.15;
    letter-spacing: -0.6px;
    margin: 0 0 14px;
}
.dore-home-about__cta h3 em {
    font-style: normal;
    background: linear-gradient(120deg, #C4A8FF 0%, #9C6BFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.dore-home-about__cta > p {
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 20px;
}

.dore-home-about__cta-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}
.dore-home-about__cta-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}
.dore-home-about__cta-list li svg {
    width: 18px;
    height: 18px;
    color: var(--c-accent);
    flex-shrink: 0;
}

.dore-home-about__cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px 24px;
    background: var(--c-accent);
    color: #FFF !important;
    font-size: 15px;
    font-weight: 500;
    border-radius: 12px;
    text-decoration: none !important;
    transition: all .25s ease;
    box-shadow: 0 8px 24px rgba(156, 107, 255, 0.4);
}
.dore-home-about__cta-btn svg {
    width: 18px;
    height: 18px;
    transition: transform .25s ease;
}
.dore-home-about__cta-btn:hover {
    background: #B894FF;
    box-shadow: 0 12px 32px rgba(156, 107, 255, 0.55);
    transform: translateY(-2px);
}
.dore-home-about__cta-btn:hover svg {
    transform: translateX(4px);
}

.dore-home-about__cta-foot {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
}
.dore-home-about__cta-foot strong {
    color: #FFF;
    font-weight: 500;
}
.dore-home-about__cta-avatars {
    display: flex;
    flex-shrink: 0;
}
.dore-home-about__cta-avatars span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #2D2545;
    margin-left: -8px;
    background: linear-gradient(135deg, #9C6BFF, #6B3FCC);
}
.dore-home-about__cta-avatars span:first-child {
    margin-left: 0;
    background: linear-gradient(135deg, #B894FF, #9C6BFF);
}
.dore-home-about__cta-avatars span:nth-child(2) {
    background: linear-gradient(135deg, #C4A8FF, #B894FF);
}

@media (min-width: 900px) {
    .dore-home-about {
        padding: 100px 0;
    }
    .dore-home-about__grid {
        grid-template-columns: 1.1fr 1fr;
        gap: 70px;
    }
    .dore-home-about__content h2 {
        font-size: 40px;
    }
    .dore-home-about__cta {
        padding: 40px 36px;
    }
    .dore-home-about__cta h3 {
        font-size: 32px;
    }
}

/* ============================================================
   ANASAYFA — Blog (modern overlay kartları)
   ============================================================ */
.dore-home-blog {
    padding: 80px 0;
    background: var(--c-bg-alt);
}

.dore-home-blog__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 50px;
}
.dore-home-blog__eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: var(--c-accent);
    margin-bottom: 14px;
    padding: 6px 14px;
    border: 1px solid rgba(156, 107, 255, 0.35);
    border-radius: 100px;
    background: rgba(156, 107, 255, 0.06);
}
.dore-home-blog__head h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--c-primary);
    line-height: 1.2;
    letter-spacing: -0.6px;
    margin: 0;
    max-width: 600px;
}
.dore-home-blog__head h2 em {
    font-style: normal;
    background: linear-gradient(120deg, #6B3FCC 0%, #9C6BFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.dore-home-blog__all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--c-primary);
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 2px solid var(--c-primary);
    transition: gap .25s ease, color .25s ease;
}
.dore-home-blog__all:hover {
    gap: 14px;
    color: var(--c-accent);
    border-color: var(--c-accent);
    text-decoration: none;
}
.dore-home-blog__all svg {
    width: 16px;
    height: 16px;
}

/* Grid */
.dore-home-blog__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

/* Kart */
.dore-home-blog__card {
    display: flex;
    flex-direction: column;
    background: var(--c-bg);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none !important;
    border: 1px solid var(--c-border-soft);
    transition: transform .35s cubic-bezier(.4,0,.2,1),
                border-color .35s ease,
                box-shadow .35s ease;
}
.dore-home-blog__card:hover {
    transform: translateY(-6px);
    border-color: rgba(156, 107, 255, 0.3);
    box-shadow:
        0 20px 50px rgba(45, 37, 69, 0.12),
        0 0 0 1px rgba(156, 107, 255, 0.15);
}

.dore-home-blog__media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--c-accent-soft);
}
.dore-home-blog__img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .8s cubic-bezier(.4,0,.2,1);
}
.dore-home-blog__card:hover .dore-home-blog__img {
    transform: scale(1.06);
}

/* Kategori rozeti — kart üstüne */
.dore-home-blog__cat {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 1;
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--c-primary);
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 100px;
    box-shadow: 0 4px 12px rgba(45, 37, 69, 0.1);
}

.dore-home-blog__body {
    padding: 24px 24px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.dore-home-blog__date {
    font-size: 12px;
    color: var(--c-text-soft);
    letter-spacing: 0.3px;
    margin-bottom: 12px;
    font-weight: 400;
}

.dore-home-blog__title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--c-primary);
    margin: 0 0 20px;
    letter-spacing: -0.2px;
    transition: color .25s ease;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.dore-home-blog__card:hover .dore-home-blog__title {
    color: var(--c-accent);
}

.dore-home-blog__more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    font-size: 13px;
    font-weight: 500;
    color: var(--c-accent);
    transition: gap .25s ease;
}
.dore-home-blog__more svg {
    width: 14px;
    height: 14px;
    transition: transform .25s ease;
}
.dore-home-blog__card:hover .dore-home-blog__more {
    gap: 12px;
}
.dore-home-blog__card:hover .dore-home-blog__more svg {
    transform: translateX(2px);
}

@media (min-width: 700px) {
    .dore-home-blog__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1000px) {
    .dore-home-blog__head h2 {
        font-size: 42px;
    }
}

/* ============================================================
   ANASAYFA — Kliniğimiz (kayan klinik foto galerisi)
   ============================================================ */
.dore-home-clinic2 {
    padding: 100px 0 110px;
    background: var(--c-bg);
    overflow: hidden;
}

.dore-home-clinic2__head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}
.dore-home-clinic2__eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: var(--c-accent);
    margin-bottom: 16px;
    padding: 6px 14px;
    border: 1px solid rgba(156, 107, 255, 0.35);
    border-radius: 100px;
    background: rgba(156, 107, 255, 0.06);
}
.dore-home-clinic2__head h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--c-primary);
    line-height: 1.2;
    letter-spacing: -0.6px;
    margin: 0 0 18px;
}
.dore-home-clinic2__head h2 em {
    font-style: normal;
    background: linear-gradient(120deg, #6B3FCC 0%, #9C6BFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.dore-home-clinic2__head p {
    font-size: 16px;
    line-height: 1.65;
    color: var(--c-text-muted);
    margin: 0;
}

/* Marquee */
.dore-home-clinic2__marquee {
    margin: 0 0 56px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg,
        transparent 0,
        #000 100px,
        #000 calc(100% - 100px),
        transparent 100%);
            mask-image: linear-gradient(90deg,
        transparent 0,
        #000 100px,
        #000 calc(100% - 100px),
        transparent 100%);
}
.dore-home-clinic2__track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: dore-clinic2-scroll 50s linear infinite;
}
.dore-home-clinic2__marquee:hover .dore-home-clinic2__track {
    animation-play-state: paused;
}
.dore-home-clinic2__item {
    flex: 0 0 auto;
    width: 480px;
    aspect-ratio: 16 / 10;
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    background: var(--c-accent-soft);
    box-shadow: 0 14px 36px rgba(45, 37, 69, 0.1);
    transition: transform .35s ease, box-shadow .35s ease;
}
.dore-home-clinic2__item:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(45, 37, 69, 0.18);
}
.dore-home-clinic2__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

@keyframes dore-clinic2-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(calc(-50% - 10px)); }
}

.dore-home-clinic2__cta {
    text-align: center;
}
.dore-home-clinic2__cta .dore-btn--accent {
    padding: 16px 36px;
    font-size: 15px;
    border-radius: 6px;
}

@media (max-width: 800px) {
    .dore-home-clinic2 {
        padding: 70px 0;
    }
    .dore-home-clinic2__item {
        width: 320px;
    }
    .dore-home-clinic2__track {
        animation-duration: 40s;
        gap: 14px;
    }
    .dore-home-clinic2__head h2 {
        font-size: 28px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .dore-home-clinic2__track {
        animation: none;
    }
}

/* ============================================================
   ANASAYFA — Kliniğimiz (asimetrik mozaik)
   ============================================================ */
.dore-home-clinic3 {
    padding: 80px 0;
    background: var(--c-bg);
}

.dore-home-clinic3__head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}
.dore-home-clinic3__eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: var(--c-accent);
    margin-bottom: 16px;
    padding: 6px 14px;
    border: 1px solid rgba(156, 107, 255, 0.35);
    border-radius: 100px;
    background: rgba(156, 107, 255, 0.06);
}
.dore-home-clinic3__head h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--c-primary);
    line-height: 1.2;
    letter-spacing: -0.6px;
    margin: 0 0 18px;
}
.dore-home-clinic3__head h2 em {
    font-style: normal;
    background: linear-gradient(120deg, #6B3FCC 0%, #9C6BFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.dore-home-clinic3__head p {
    font-size: 16px;
    line-height: 1.65;
    color: var(--c-text-muted);
    margin: 0;
}

/* Mozaik grid */
.dore-home-clinic3__mosaic {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 50px;
}

.dore-home-clinic3__tile {
    position: relative;
    display: block;
    border-radius: 14px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-color: var(--c-accent-soft);
    aspect-ratio: 4 / 3;
    text-decoration: none !important;
    transition: transform .4s cubic-bezier(.4,0,.2,1),
                box-shadow .4s ease;
    box-shadow: 0 8px 24px rgba(45, 37, 69, 0.08);
}
.dore-home-clinic3__tile::before {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-image: inherit;
    transition: transform .8s cubic-bezier(.4,0,.2,1);
}
.dore-home-clinic3__tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(31, 25, 51, 0.85) 100%);
    opacity: 0;
    transition: opacity .35s ease;
    z-index: 1;
}
.dore-home-clinic3__tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px rgba(45, 37, 69, 0.18);
}
.dore-home-clinic3__tile:hover::after {
    opacity: 1;
}

.dore-home-clinic3__caption {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 2;
    color: #FFF;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.2px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .35s ease, transform .35s ease;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.dore-home-clinic3__tile:hover .dore-home-clinic3__caption {
    opacity: 1;
    transform: translateY(0);
}

/* Desktop mozaik düzeni — 12 sütunlu grid, asimetrik */
@media (min-width: 800px) {
    .dore-home-clinic3__mosaic {
        grid-template-columns: repeat(12, 1fr);
        grid-auto-rows: 180px;
        gap: 16px;
    }
    .dore-home-clinic3__tile {
        aspect-ratio: auto;
    }
    /* Yerleşim:
       Satır 1: lg(6) | md(3) | sm(3)
       Satır 2: sm(3) | md(4) | sm(2x dikey?) | md(3+...)
       Daha okunaklı versiyonu:
       Sırayla 7 görsel — 1.bekleme(lg), 2.banko(md), 3.kahve(sm), 4.koridor(sm), 5.dorekids(md), 6.kahve-yorum(sm), 7.klinik(md)
       Grid:
        - tile1 (lg): col 1-7,  row 1-2  (büyük, 6 col, 2 row)
        - tile2 (md): col 7-13, row 1    (sağ üst, 6 col, 1 row)
        - tile3 (sm): col 7-10, row 2    (3 col, 1 row)
        - tile4 (sm): col 10-13, row 2   (3 col, 1 row)
        - tile5 (md): col 1-5,   row 3   (4 col, 1 row)
        - tile6 (sm): col 5-9,   row 3   (4 col, 1 row)
        - tile7 (md): col 9-13,  row 3   (4 col, 1 row)
    */
    .dore-home-clinic3__tile:nth-child(1) {
        grid-column: 1 / 7;
        grid-row: 1 / 3;
    }
    .dore-home-clinic3__tile:nth-child(2) {
        grid-column: 7 / 13;
        grid-row: 1 / 2;
    }
    .dore-home-clinic3__tile:nth-child(3) {
        grid-column: 7 / 10;
        grid-row: 2 / 3;
    }
    .dore-home-clinic3__tile:nth-child(4) {
        grid-column: 10 / 13;
        grid-row: 2 / 3;
    }
    .dore-home-clinic3__tile:nth-child(5) {
        grid-column: 1 / 5;
        grid-row: 3 / 4;
    }
    .dore-home-clinic3__tile:nth-child(6) {
        grid-column: 5 / 9;
        grid-row: 3 / 4;
    }
    .dore-home-clinic3__tile:nth-child(7) {
        grid-column: 9 / 13;
        grid-row: 3 / 4;
    }

    .dore-home-clinic3__head h2 {
        font-size: 42px;
    }
}

/* Tablet — 2 sütunlu fallback */
@media (min-width: 600px) and (max-width: 799px) {
    .dore-home-clinic3__mosaic {
        grid-template-columns: 1fr 1fr;
    }
    .dore-home-clinic3__tile:nth-child(1) {
        grid-column: 1 / 3;
        aspect-ratio: 16 / 9;
    }
}

.dore-home-clinic3__cta {
    text-align: center;
}
.dore-home-clinic3__cta .dore-btn--accent {
    padding: 16px 36px;
    font-size: 15px;
    border-radius: 6px;
}

/* ============================================================
   ANASAYFA — Vaka Anlatımı (sol metin + sağ video kartı)
   ============================================================ */
.dore-home-vaka {
    padding: 80px 0;
    background: var(--c-bg-alt);
}
.dore-home-vaka__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

/* SOL: Metin */
.dore-home-vaka__eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: var(--c-accent);
    margin-bottom: 16px;
    padding: 6px 14px;
    border: 1px solid rgba(156, 107, 255, 0.35);
    border-radius: 100px;
    background: rgba(156, 107, 255, 0.06);
}
.dore-home-vaka__content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--c-primary);
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin: 0 0 16px;
}
.dore-home-vaka__content h2 em {
    font-style: normal;
    background: linear-gradient(120deg, #6B3FCC 0%, #9C6BFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.dore-home-vaka__icon {
    font-size: 0.85em;
    margin-right: 4px;
}
.dore-home-vaka__content > p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--c-text-muted);
    margin: 0 0 32px;
}

/* SAĞ: Video kartı — asimetrik eğik kartlar */
.dore-home-vaka__video {
    position: relative;
    aspect-ratio: 4 / 5;
    max-width: 460px;
    margin: 0 auto;
    width: 100%;
    padding: 20px 24px;
}
.dore-home-vaka__videolink {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 22px;
    box-shadow:
        0 30px 60px rgba(45, 37, 69, 0.25);
    transition: transform .4s cubic-bezier(.4,0,.2,1), box-shadow .4s ease;
    text-decoration: none !important;
    transform: rotate(4deg);
}
.dore-home-vaka__videolink::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1F1933 0%, #2D2545 100%);
    border-radius: 22px;
    z-index: -1;
    transform: rotate(-12deg) translate(-12px, 8px);
}
.dore-home-vaka__videolink:hover {
    transform: rotate(4deg) scale(1.02);
    box-shadow: 0 40px 70px rgba(45, 37, 69, 0.35);
}
.dore-home-vaka__videoimg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
    display: block;
}

/* Play butonu */
.dore-home-vaka__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.85);
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform .25s ease, background .25s ease;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}
.dore-home-vaka__play::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    animation: dore-cases-play-pulse 2.2s ease-in-out infinite;
}
.dore-home-vaka__play svg {
    width: 30px;
    height: 30px;
    margin-left: 4px;
}
.dore-home-vaka__videolink:hover .dore-home-vaka__play {
    transform: translate(-50%, -50%) scale(1.08);
    background: var(--c-accent);
}
@keyframes dore-cases-play-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.15);
        opacity: 0;
    }
}

/* "VAKA ANLATIMI" yazısı override (kart üstündeki başlık olsa eklenebilir) */

@media (min-width: 900px) {
    .dore-home-vaka__grid {
        grid-template-columns: 1.5fr 1fr;
        gap: 70px;
    }
    .dore-home-vaka__content h2 {
        font-size: 40px;
    }
    .dore-home-vaka__video {
        max-width: 380px;
        margin-left: auto;
    }
}

/* ============================================================
   ANASAYFA — Bilge'nin Şeffaf Plak Yolculuğu (sol metin + sağ video kartları)
   ============================================================ */
.dore-home-bilge2 {
    padding: 80px 0;
    background: var(--c-bg);
}
.dore-home-bilge2__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

/* SOL: Metin */
.dore-home-bilge2__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--c-primary);
    margin-bottom: 18px;
    padding: 6px 14px;
    border: 1px solid var(--c-border);
    border-radius: 100px;
    background: var(--c-bg-alt);
}
.dore-home-bilge2__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ADE80;
    box-shadow: 0 0 10px #4ADE80;
    animation: dore-bilge2-pulse 2s ease-in-out infinite;
}
@keyframes dore-bilge2-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.6; transform: scale(0.85); }
}

.dore-home-bilge2__content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--c-primary);
    line-height: 1.15;
    letter-spacing: -0.6px;
    margin: 0 0 18px;
}
.dore-home-bilge2__content h2 em {
    font-style: normal;
    background: linear-gradient(120deg, #6B3FCC 0%, #9C6BFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.dore-home-bilge2__content > p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--c-text-muted);
    margin: 0 0 28px;
}
.dore-home-bilge2__content > p strong {
    color: var(--c-primary);
    font-weight: 600;
}

.dore-home-bilge2__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--c-accent);
    color: #FFF !important;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    text-decoration: none !important;
    transition: all .25s ease;
    box-shadow: 0 8px 20px rgba(156, 107, 255, 0.3);
}
.dore-home-bilge2__btn svg {
    width: 16px;
    height: 16px;
    transition: transform .25s ease;
}
.dore-home-bilge2__btn:hover {
    background: var(--c-primary);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(45, 37, 69, 0.3);
}
.dore-home-bilge2__btn:hover svg {
    transform: translateX(4px);
}

/* SAĞ: Video kartları (3'lü dikey, asimetrik kayık) */
.dore-home-bilge2__videos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.dore-home-bilge2__card {
    position: relative;
    aspect-ratio: 9 / 16;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none !important;
    background: var(--c-primary);
    box-shadow: 0 10px 30px rgba(45, 37, 69, 0.15);
    transition: transform .4s cubic-bezier(.4,0,.2,1), box-shadow .4s ease;
    isolation: isolate;
}
/* Asimetrik kayma — orta kart yukarıda */
.dore-home-bilge2__card:nth-child(2) {
    margin-top: 24px;
}

.dore-home-bilge2__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(45, 37, 69, 0.25);
}

.dore-home-bilge2__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    background: var(--c-primary);
}

/* Alt gradient overlay */
.dore-home-bilge2__card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(20, 14, 45, 0.85) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Play butonu */
.dore-home-bilge2__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: var(--c-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all .25s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    opacity: 0;
}
.dore-home-bilge2__play svg {
    width: 22px;
    height: 22px;
    margin-left: 3px;
}
.dore-home-bilge2__card:hover .dore-home-bilge2__play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
.dore-home-bilge2__card:not(:hover) .dore-home-bilge2__play {
    transform: translate(-50%, -50%) scale(0.8);
}

/* Tarih + başlık */
.dore-home-bilge2__meta {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 14px 14px;
    z-index: 2;
    color: #FFF;
}
.dore-home-bilge2__date {
    display: block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    margin-bottom: 4px;
}
.dore-home-bilge2__meta h4 {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    color: #FFF;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (min-width: 900px) {
    .dore-home-bilge2__grid {
        grid-template-columns: 1fr 1.2fr;
        gap: 70px;
    }
    .dore-home-bilge2__content h2 {
        font-size: 42px;
    }
    .dore-home-bilge2__meta h4 {
        font-size: 14px;
    }
}

@media (max-width: 600px) {
    .dore-home-bilge2__videos {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .dore-home-bilge2__card:nth-child(2) {
        margin-top: 0;
    }
    .dore-home-bilge2__card {
        aspect-ratio: 4 / 5;
    }
}

/* Anasayfada section padding standardizasyonu */
.dore-home-section {
    padding: 80px 0;
}
@media (min-width: 800px) {
    .dore-home-section {
        padding: 100px 0;
    }
}

/* DoreKids label — Kids kelimesi için eğlenceli el yazısı stili */
.dore-nav__kids {
    font-family: 'Caveat', cursive;
    font-weight: 700;
    color: var(--c-accent);
    font-size: 1.35em;
    margin-left: 2px;
    line-height: 1;
    display: inline-block;
    transform: rotate(-4deg) translateY(-1px);
    transition: transform 0.25s ease;
}
.dore-nav__link:hover .dore-nav__kids {
    transform: rotate(-2deg) translateY(-2px) scale(1.05);
}

/* Mobil menüde de aynı stil */
.dore-mobile-menu__nav .dore-nav__kids {
    font-family: 'Caveat', cursive;
    font-weight: 700;
    color: var(--c-accent);
    font-size: 1.4em;
    margin-left: 3px;
    display: inline-block;
    transform: rotate(-4deg);
}

/* Bilge — header nav'da renkli accent vurgu */
.dore-nav__bilge {
    color: var(--c-accent);
    font-weight: 500;
}