/* ============================================================
   SANT KUAFOR & GUZELLIK SALONU
   ------------------------------------------------------------
   TASARIM YONU: moda dergisi / editoryal.
   Bolumler ayni ritmi tekrarlamaz; her birinin kendi duzen
   ailesi var:
     mastbas   tam genislikte gorsel plakasi + dev baslik + kunye
     bildirim  tam genislikte ifade + sol kenardan tasan gorsel
     dizin     yapisan onizlemeli tipografik liste   <- IMZA
     bento     galeri
     panel     randevu sihirbazi (koyu zemin uzerinde)
     alinti    tek dev yorum + iki dipnot
     harita    tam genislikte harita + tasan kart

   Renkler logodan ve salon fotograflarindan olculdu:
     #E9E2D8 logo zemini, #4B3F37 / #362B23 logo kahvesi,
     #83867F salon duvarlarinin adaci yesili.
   Tek vurgu rengi: --rose (#9E4A57). Baska vurgu rengi yok.

   KOSE YARICAPI: gorsel 2px, kart 4px, form 6px, buton pill.
   Yumusak "kart" estetigi bilerek kullanilmiyor.
   ============================================================ */

/* ---------- 1. Tokenlar ---------- */
:root {
    --bone: #e9e2d8;
    --bone-hi: #f4f0e9;
    --sage-100: #dde2d7;
    --sage-200: #c9d0c4;
    --sage-500: #7e887b;   /* yalnizca dolgu/zemin: metin icin kontrasti yetmez */
    --sage-700: #5c6659;   /* metin icin: bone uzerinde 4.67:1, WCAG AA gecer */
    --forest-700: #37413a;
    --forest-900: #242c26;

    --espresso: #362b23;
    --brown: #4b3f37;
    --muted: #5c5349;

    --rose: #9e4a57;
    --rose-deep: #7c3945;
    --rose-tint: #f0e2e3;

    --ok: #4b6b4f;
    --stop: #a33a34;

    --font-display: 'Garamond Ed', Georgia, 'Times New Roman', serif;
    --font-body: 'Karla', 'Segoe UI', sans-serif;

    --r-media: 2px;
    --r-card: 4px;
    --r-field: 6px;
    --r-pill: 999px;

    --shadow-sm: 0 2px 10px rgba(54, 43, 35, .06);
    --shadow-md: 0 14px 40px rgba(54, 43, 35, .10);
    --shadow-lg: 0 30px 80px rgba(54, 43, 35, .18);

    --ease: cubic-bezier(.16, 1, .3, 1);
    --line: rgba(75, 63, 55, .18);
    --rule: rgba(75, 63, 55, .3);

    --pad-section: clamp(74px, 9vw, 130px);
    --gutter: clamp(20px, 4vw, 56px);
}

/* ---------- 2. Temel ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
    margin: 0;
    background: var(--bone);
    color: var(--espresso);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
/* <picture> satir-ici bir sarmalayici; izgara/flex hucrelerinde
   icindeki <img> gibi davranmasi icin blok yapiliyor. */
picture { display: block; }
.plate picture, .gallery-item picture { width: 100%; height: 100%; }
/* Hizmet onizlemesinde gorseller UST USTE durup capraz gecis yapar;
   konumlandirma <img> yerine artik sarmalayiciya uygulanmali. */
.svc-preview picture { position: absolute; inset: 0; }
a { color: inherit; }
/* width/height nitelikleri CSS en-boy oranini ezmesin */
.about-media img { height: auto; }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: -.012em;
    line-height: 1.06;
    margin: 0;
}

:focus-visible { outline: 2px solid var(--rose); outline-offset: 3px; }

.container { width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 var(--gutter); }

/* Editoryal bolum basligi: ortalanmis etiket yigini yerine
   ustte ince cizgi, solda kucuk etiket, sagda buyuk baslik. */
.masthead-row {
    display: grid;
    grid-template-columns: 168px minmax(0, 1fr);
    gap: clamp(16px, 3vw, 48px);
    align-items: start;
    padding-top: 22px;
    border-top: 1px solid var(--rule);
    margin-bottom: clamp(36px, 4.5vw, 60px);
}
.masthead-row .label {
    font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
    color: var(--muted); padding-top: 10px;
}
.masthead-row h2 { font-size: clamp(2.1rem, 4.4vw, 3.5rem); max-width: 20ch; }
.masthead-row h2 em { font-style: italic; color: var(--rose); }
.masthead-row .note { color: var(--muted); font-size: 15px; max-width: 46ch; margin: 16px 0 0; }
@media (max-width: 760px) {
    .masthead-row { grid-template-columns: 1fr; gap: 10px; }
    .masthead-row .label { padding-top: 0; }
}

/* ---------- 3. Butonlar ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    white-space: nowrap;
    padding: 15px 30px;
    border-radius: var(--r-pill);
    border: 1px solid transparent;
    font-family: var(--font-body);
    font-size: 14px; font-weight: 700; letter-spacing: .04em; line-height: 1;
    text-decoration: none; cursor: pointer;
    transition: background .25s var(--ease), color .25s var(--ease),
                border-color .25s var(--ease), transform .12s var(--ease);
}
.btn i { font-size: .95em; }
.btn-primary { background: var(--espresso); color: var(--bone-hi); }
.btn-primary:hover { background: var(--rose); }
.btn-ghost { background: transparent; color: var(--brown); border-color: var(--rule); }
.btn-ghost:hover { border-color: var(--espresso); background: rgba(75, 63, 55, .05); }
.btn-dark { background: var(--forest-900); color: var(--bone); }
.btn-dark:hover { background: var(--forest-700); }
.btn:active { transform: translateY(1px); }
.btn:disabled, .btn[disabled] { opacity: .34; cursor: not-allowed; }
.btn:disabled:active { transform: none; }

/* Koyu zeminde ikincil buton */
.on-dark .btn-ghost { color: var(--bone); border-color: rgba(233, 226, 216, .34); }
.on-dark .btn-ghost:hover { border-color: var(--bone); background: rgba(233, 226, 216, .1); }

/* ---------- 4. Ust bar ---------- */
.site-header {
    position: sticky; top: 0; z-index: 200;
    background: rgba(233, 226, 216, .9);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    border-bottom: 1px solid transparent;
    transition: border-color .3s var(--ease);
}
.site-header.is-stuck { border-bottom-color: var(--line); }
.header-inner { height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; flex-shrink: 0; }
.brand img { width: 36px; height: 36px; border-radius: var(--r-pill); }
.brand-name {
    font-family: var(--font-display);
    font-size: 21px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
    color: var(--espresso); line-height: 1;
}
.brand-sub {
    display: block; font-family: var(--font-body);
    font-size: 8.5px; font-weight: 700; letter-spacing: .24em; color: var(--muted); margin-top: 4px;
}

.nav ul { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav a {
    position: relative; display: block; padding: 8px 13px;
    font-size: 13px; font-weight: 500; letter-spacing: .04em;
    color: var(--brown); text-decoration: none;
    transition: color .2s var(--ease);
}
.nav a::after {
    content: ""; position: absolute; left: 13px; right: 13px; bottom: 2px; height: 1px;
    background: var(--rose); transform: scaleX(0); transform-origin: left;
    transition: transform .3s var(--ease);
}
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }
.nav a.is-active { color: var(--rose); }

.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.header-actions .btn { padding: 11px 22px; font-size: 13px; }

.nav-toggle {
    display: none; width: 42px; height: 42px;
    align-items: center; justify-content: center; flex-direction: column; gap: 5px;
    background: none; border: 1px solid var(--rule); border-radius: var(--r-pill); cursor: pointer;
}
.nav-toggle span { width: 16px; height: 1.5px; background: var(--espresso); transition: transform .3s var(--ease), opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 1120px) {
    .nav {
        position: fixed; inset: 68px 0 auto;
        background: var(--bone); border-bottom: 1px solid var(--line);
        padding: 8px var(--gutter) 22px;
        transform: translateY(-10px); opacity: 0; visibility: hidden;
        transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
        max-height: calc(100dvh - 68px); overflow-y: auto;
    }
    .nav.is-open { opacity: 1; transform: none; visibility: visible; }
    .nav ul { flex-direction: column; align-items: stretch; gap: 0; }
    .nav a { padding: 15px 2px; border-bottom: 1px solid var(--line); font-size: 16px; }
    .nav a::after { display: none; }
    .nav li:last-child a { border-bottom: none; }
    .nav-toggle { display: flex; }
    .header-actions .btn-cta { display: none; }
}

/* ============================================================
   5. MASTBAS
   ============================================================ */
.masthead { padding-bottom: clamp(52px, 6vw, 84px); }

.plate {
    position: relative; width: 100%;
    height: clamp(200px, 34vh, 360px);
    overflow: hidden;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px;
    background: var(--sage-100);
}
.plate img { width: 100%; height: 100%; object-fit: cover; }
/* NOT: gorseller <picture> ile sarildigi icin dogrudan .plate img:nth-child()
   calismiyordu -- <img> her picture icinde hep 2. eleman (1.si <source>),
   bu yuzden ucu de ayni object-position'i aliyordu. Sarmalayici uzerinden
   hedefliyoruz. */
.plate picture:nth-child(1) img { object-position: center 46%; }
.plate picture:nth-child(2) img { object-position: center 30%; }
.plate picture:nth-child(3) img { object-position: center 40%; }
@media (max-width: 700px) {
    .plate { grid-template-columns: repeat(2, 1fr); }
    .plate picture:nth-child(3) { display: none; }
}
/* Gorsel zemine cozunur, alt kenarda kesik bir cizgi olusmaz */
.plate::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(233, 226, 216, 0) 40%, var(--bone) 99%);
}

.masthead-body { padding-top: clamp(20px, 3vw, 38px); }
.kicker {
    font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
    color: var(--muted); margin: 0 0 clamp(14px, 2.2vw, 24px);
}
.kicker b { color: var(--rose); }

.masthead-title {
    font-size: clamp(2.8rem, 7.4vw, 6.2rem);
    line-height: .97; letter-spacing: -.02em; max-width: 15ch;
}
.masthead-title em { font-style: italic; color: var(--rose); }

.masthead-foot {
    display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
    gap: clamp(22px, 4vw, 56px);
    margin-top: clamp(26px, 3.6vw, 46px);
}
.masthead-ctas { display: flex; flex-wrap: wrap; gap: 10px; }

/* Kunye satiri: adres / saat / telefon, dergi jeneriği gibi */
.spec { display: grid; grid-template-columns: repeat(3, auto); gap: clamp(18px, 3vw, 44px); margin: 0; }
.spec dt { font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--sage-700); margin-bottom: 5px; }
.spec dd { margin: 0; font-size: 13px; line-height: 1.5; max-width: 24ch; }
/* Parmakla dokunulabilir olsun: WCAG 2.2 en az 24x24 px istiyor */
.spec a { text-decoration: none; display: inline-block; min-height: 24px; padding: 4px 0; }
.spec a:hover { color: var(--rose); }
@media (max-width: 900px) { .spec { grid-template-columns: 1fr 1fr; gap: 18px 28px; } }
@media (max-width: 460px) { .spec { grid-template-columns: 1fr; } }

/* ============================================================
   6. BILDIRIM (hakkimizda)
   ============================================================ */
.about { padding: var(--pad-section) 0; }

.statement {
    font-size: clamp(1.7rem, 3.7vw, 3.05rem);
    line-height: 1.16; max-width: 24ch;
    margin: 0 0 clamp(38px, 5vw, 66px);
}
.statement em { font-style: italic; color: var(--rose); }

.about-grid {
    display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(28px, 5vw, 76px); align-items: end;
}
/* Gorsel sol kenardan tasar: simetrik iki sutun hissini kirar */
.about-media { position: relative; margin-left: calc(var(--gutter) * -1); }
.about-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 0 var(--r-media) var(--r-media) 0; }
.about-cap {
    display: flex; align-items: baseline; gap: 10px;
    margin-top: 12px; padding-left: var(--gutter);
    font-size: 12px; color: var(--muted);
}
.about-cap b { font-family: var(--font-display); font-size: 21px; color: var(--rose); font-weight: 500; }

.about-body p { color: var(--muted); margin: 0 0 18px; max-width: 52ch; }
.about-points { list-style: none; margin: 28px 0 0; padding: 0; }
.about-points li {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 0; border-top: 1px solid var(--line);
    font-size: 14.5px; font-weight: 500;
}
.about-points li:last-child { border-bottom: 1px solid var(--line); }
.about-points i { color: var(--rose); flex-shrink: 0; font-size: 13px; }

@media (max-width: 880px) {
    .about-grid { grid-template-columns: 1fr; gap: 32px; }
    .about-media { margin-left: calc(var(--gutter) * -1); margin-right: calc(var(--gutter) * -1); }
    .about-media img { border-radius: 0; aspect-ratio: 4 / 3; }
    .about-cap { padding-left: 0; }
}

/* ============================================================
   7. DIZIN (hizmetler) - IMZA BOLUM
   Sadece liste; yapisan onizleme gorseli kaldirildi (kucuk
   ekranlarda listenin uzerine binip karisiyordu).
   ============================================================ */
.services { padding: 0 0 var(--pad-section); }
.index-grid {
    display: grid; grid-template-columns: 1fr;
    gap: clamp(28px, 5vw, 72px); align-items: start;
}

.svc-preview { display: none; }

.svc-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--rule); }
.svc-row {
    display: grid; grid-template-columns: 34px minmax(0, 1fr) auto;
    align-items: baseline; gap: 14px;
    width: 100%;
    padding: clamp(17px, 2.1vw, 25px) 0;
    border: 0; border-bottom: 1px solid var(--line);
    background: none; text-align: left;
    font-family: inherit; color: inherit; cursor: pointer;
}
/* Kayma efekti transform ile: padding animasyonu her karede yeniden yerlesim
   (reflow) tetikliyordu. Sadece sol grup kayar, fiyat sagda sabit hizada kalir. */
.svc-num, .svc-thumb, .svc-text { transition: transform .35s var(--ease); }
.svc-row:hover .svc-num, .svc-row.is-active .svc-num,
.svc-row:hover .svc-thumb, .svc-row.is-active .svc-thumb,
.svc-row:hover .svc-text, .svc-row.is-active .svc-text { transform: translateX(14px); }
.svc-num { font-size: 11px; font-weight: 700; letter-spacing: .1em; color: var(--sage-700); font-variant-numeric: tabular-nums; }
.svc-text { display: block; min-width: 0; }
.svc-name {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.5vw, 1.95rem); line-height: 1.12;
    transition: color .3s var(--ease);
}
.svc-row:hover .svc-name, .svc-row.is-active .svc-name { color: var(--rose); }
.svc-desc { display: block; font-size: 13.5px; line-height: 1.55; color: var(--muted); margin: 5px 0 0; max-width: 48ch; }
.svc-side { text-align: right; }
.svc-price { font-family: var(--font-display); font-size: 1.3rem; white-space: nowrap; }
.svc-dur { display: block; font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: 4px; white-space: nowrap; }
.svc-thumb { display: none; }

@media (max-width: 900px) {
    .index-grid { grid-template-columns: 1fr; gap: 20px; }
    .svc-row { grid-template-columns: 28px minmax(0, 1fr) auto; }
    .svc-num, .svc-desc { display: block; }
    .svc-thumb { display: none; }
}

/* ============================================================
   8. GALERI (tam genislikte bento)
   ============================================================ */
.gallery { padding: var(--pad-section) 0; background: var(--bone-hi); }
.gallery-full { padding: 0 var(--gutter); }
.gallery-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: clamp(148px, 14.5vw, 218px);
    grid-auto-flow: dense; gap: 12px;
}
.gallery-item:nth-child(9n+1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(9n+4) { grid-column: span 2; }
.gallery-item:nth-child(9n+5) { grid-row: span 2; }
.gallery-item:nth-child(9n+7) { grid-column: span 2; }
.gallery-item:nth-child(9n)   { grid-column: span 2; }
@media (max-width: 900px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .gallery-item:nth-child(9n+5), .gallery-item:nth-child(9n+7), .gallery-item:nth-child(9n) { grid-column: span 1; grid-row: span 1; }
    .gallery-item:nth-child(9n+4) { grid-column: span 2; grid-row: span 1; }
}

.gallery-item {
    display: block; width: 100%; height: 100%;
    padding: 0; border: none; margin: 0;
    background: var(--sage-100);
    position: relative; overflow: hidden;
    border-radius: var(--r-media); cursor: zoom-in;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.gallery-item:hover img, .gallery-item:focus-visible img { transform: scale(1.05); }
.gallery-item::after {
    content: ""; position: absolute; inset: 0;
    background: rgba(36, 44, 38, .22);
    opacity: 0; transition: opacity .3s var(--ease);
}
.gallery-item:hover::after, .gallery-item:focus-visible::after { opacity: 1; }

/* Lightbox */
.lightbox {
    position: fixed; inset: 0; z-index: 900;
    display: none; align-items: center; justify-content: center; padding: 24px;
    background: rgba(36, 44, 38, .94);
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: min(94vw, 940px); max-height: 88dvh; border-radius: var(--r-media); }
.lightbox-close, .lightbox-nav {
    position: absolute; width: 46px; height: 46px;
    display: grid; place-content: center;
    background: rgba(244, 240, 233, .1);
    border: 1px solid rgba(244, 240, 233, .28);
    border-radius: var(--r-pill); color: var(--bone-hi); cursor: pointer;
}
.lightbox-close { top: 20px; right: 22px; font-size: 18px; }
.lightbox-nav { top: 50%; transform: translateY(-50%); }
.lightbox-nav.prev { left: 20px; }
.lightbox-nav.next { right: 20px; }

/* ============================================================
   9. RANDEVU PANELI (koyu zemin)
   ============================================================ */
.booking { padding: var(--pad-section) 0; background: var(--forest-900); color: var(--bone); }
.booking .masthead-row { border-top-color: rgba(233, 226, 216, .26); }
.booking .masthead-row .label { color: rgba(233, 226, 216, .55); }
.booking .masthead-row .note { color: rgba(233, 226, 216, .68); }
.booking .masthead-row h2 em { color: #d3a3ab; }

.wizard { background: var(--bone-hi); color: var(--espresso); border-radius: var(--r-card); padding: clamp(22px, 3.6vw, 48px); }

.wizard-steps { display: flex; align-items: center; gap: 8px; margin-bottom: 34px; }
.wstep { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.wstep-num {
    width: 30px; height: 30px; display: grid; place-content: center;
    border-radius: var(--r-pill); border: 1px solid var(--line);
    font-family: var(--font-display); font-size: 14px; color: var(--muted);
    transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.wstep-label { font-size: 12px; font-weight: 700; letter-spacing: .06em; color: var(--muted); }
.wstep.is-active .wstep-num { background: var(--rose); border-color: var(--rose); color: var(--bone-hi); }
.wstep.is-active .wstep-label { color: var(--espresso); }
.wstep.is-done .wstep-num { background: var(--espresso); border-color: var(--espresso); color: var(--bone); }
.wstep-line { flex: 1; height: 1px; background: var(--line); }
@media (max-width: 760px) { .wstep-label { display: none; } }

.step-panel { display: none; }
.step-panel.is-active { display: block; animation: stepIn .4s var(--ease); }
@keyframes stepIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.step-title { font-size: clamp(1.4rem, 2.4vw, 1.85rem); }
.step-desc { color: var(--muted); font-size: 14px; margin: 8px 0 24px; }

.pick-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(232px, 1fr)); gap: 10px; }
.pick {
    display: flex; align-items: center; justify-content: space-between; gap: 14px;
    text-align: left; padding: 15px 17px;
    background: var(--bone); border: 1px solid transparent; border-radius: var(--r-field);
    font-family: var(--font-body); font-size: 15px; color: var(--espresso); cursor: pointer;
    transition: border-color .2s var(--ease), background .2s var(--ease), transform .12s var(--ease);
}
.pick:hover { border-color: var(--sage-500); }
.pick:active { transform: translateY(1px); }
.pick.is-selected { border-color: var(--rose); background: var(--rose-tint); }
.pick-name { font-weight: 700; display: block; }
.pick-sub { display: block; font-size: 12px; color: var(--muted); margin-top: 3px; }
.pick-price { font-family: var(--font-display); font-size: 18px; color: var(--rose); white-space: nowrap; }

.sub-title {
    display: flex; align-items: center; gap: 9px;
    font-family: var(--font-body);
    font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
    color: var(--muted); margin: 0 0 14px;
}
.sub-title i { color: var(--rose); }

.date-grid {
    display: flex; gap: 8px; overflow-x: auto;
    padding-bottom: 10px; margin-bottom: 28px;
    scrollbar-width: thin; scrollbar-color: var(--sage-200) transparent;
}
.date-grid::-webkit-scrollbar { height: 4px; }
.date-grid::-webkit-scrollbar-thumb { background: var(--sage-200); border-radius: var(--r-pill); }
.date-chip {
    flex-shrink: 0; min-width: 72px; padding: 11px 6px; text-align: center;
    background: var(--bone); border: 1px solid transparent; border-radius: var(--r-field);
    font-family: var(--font-body); cursor: pointer;
    transition: border-color .2s var(--ease), background .2s var(--ease);
}
.date-chip:hover { border-color: var(--sage-500); }
.date-chip .dow { display: block; font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.date-chip .dnum { display: block; font-family: var(--font-display); font-size: 23px; color: var(--espresso); margin: 3px 0 1px; }
.date-chip .dmon { display: block; font-size: 10.5px; color: var(--muted); }
.date-chip.is-selected { background: var(--rose); border-color: var(--rose); }
.date-chip.is-selected .dow, .date-chip.is-selected .dnum, .date-chip.is-selected .dmon { color: var(--bone-hi); }
.date-chip.is-closed { opacity: .34; cursor: not-allowed; }

.time-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(82px, 1fr)); gap: 8px; }
.time-slot {
    padding: 11px 4px; text-align: center;
    background: var(--bone); border: 1px solid transparent; border-radius: var(--r-field);
    font-family: var(--font-body); font-size: 14px; font-weight: 500; color: var(--espresso);
    cursor: pointer; transition: border-color .2s var(--ease), background .2s var(--ease);
}
.time-slot:hover:not(:disabled) { border-color: var(--sage-500); }
.time-slot.is-selected { background: var(--rose); border-color: var(--rose); color: var(--bone-hi); }
.time-slot:disabled { color: var(--muted); opacity: .42; cursor: not-allowed; text-decoration: line-through; }

.legend { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; color: var(--muted); }
.legend .dot { width: 8px; height: 8px; border-radius: var(--r-pill); background: var(--muted); opacity: .5; }

.field-grid { display: grid; gap: 16px; }
.field { display: grid; gap: 6px; }
.field label { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--brown); }
.field input, .field textarea, .field select {
    width: 100%; padding: 13px 15px;
    background: var(--bone); border: 1px solid var(--line); border-radius: var(--r-field);
    font-family: var(--font-body); font-size: 15px; color: var(--espresso);
    transition: border-color .2s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: #7d7367; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--rose); }
.field textarea { resize: vertical; min-height: 86px; }
.field-error { font-size: 12.5px; color: var(--stop); font-weight: 700; }

.consent { display: flex; align-items: flex-start; gap: 11px; margin-top: 20px; }
.consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--rose); flex-shrink: 0; cursor: pointer; }
.consent label { font-size: 13px; color: var(--muted); line-height: 1.55; cursor: pointer; }
.consent a { color: var(--rose); }

.wizard-footer {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--line);
}
.wizard-footer .btn:only-child { margin-left: auto; }

.form-msg { display: none; margin-top: 16px; padding: 12px 15px; border-radius: var(--r-field); font-size: 14px; font-weight: 500; }
.form-msg.is-visible { display: block; }
.form-msg.is-error { background: rgba(163, 58, 52, .1); color: var(--stop); }
.grid-msg { grid-column: 1 / -1; color: var(--muted); font-size: 14px; margin: 0; padding: 16px 0; }

.skeleton {
    background: linear-gradient(90deg, var(--bone) 25%, var(--sage-100) 50%, var(--bone) 75%);
    background-size: 400% 100%; animation: shimmer 1.5s infinite linear;
    border-radius: var(--r-field); height: 58px;
}
@keyframes shimmer { from { background-position: 100% 0; } to { background-position: -100% 0; } }

.wizard-success { display: none; text-align: center; }
.wizard-success.is-active { display: block; }
.success-mark {
    width: 62px; height: 62px; margin: 0 auto 20px;
    display: grid; place-content: center;
    background: var(--rose-tint); border-radius: var(--r-pill);
    font-size: 28px; color: var(--rose);
}
.summary { text-align: left; background: var(--bone); border-radius: var(--r-field); padding: 22px 24px; margin: 26px 0; }
.summary h4 { font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin: 0 0 14px; }
.summary dl { display: grid; grid-template-columns: auto 1fr; gap: 11px 24px; margin: 0; font-size: 14.5px; }
.summary dt { color: var(--muted); }
.summary dd { margin: 0; text-align: right; font-weight: 700; }
.summary .total { color: var(--rose); font-family: var(--font-display); font-size: 19px; }
.success-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }

/* ============================================================
   10. HIJYEN + MARKA SERIDI
   ============================================================ */
.hygiene { padding: var(--pad-section) 0 clamp(44px, 5vw, 68px); }
.hygiene-grid {
    display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(26px, 5vw, 72px); align-items: start;
}
.hygiene-grid h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); max-width: 15ch; }
.hygiene-grid p { color: var(--muted); margin: 0 0 22px; }
.hygiene-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 9px 18px; border: 1px solid var(--rule); border-radius: var(--r-pill);
    font-size: 13px; font-weight: 700;
}
.tag i { color: var(--rose); }
@media (max-width: 820px) { .hygiene-grid { grid-template-columns: 1fr; gap: 20px; } }

.brands { padding-bottom: var(--pad-section); }
.brands-title {
    text-align: center; font-family: var(--font-body);
    font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
    color: var(--muted); margin-bottom: 22px;
}
.marquee {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee-track { display: flex; gap: 60px; width: max-content; animation: slide 36s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes slide { to { transform: translateX(-50%); } }
.marquee-item {
    font-family: var(--font-display);
    font-size: clamp(18px, 2.2vw, 27px); letter-spacing: .04em;
    color: var(--sage-700); white-space: nowrap;
}

/* ============================================================
   11. ALINTI (yorumlar)
   ============================================================ */
.reviews { padding: var(--pad-section) 0; background: var(--bone-hi); }
.stars { display: inline-flex; gap: 2px; color: #d9a441; font-size: 12px; }

/* Google ozet satiri: puan + yorum sayisi + "tumunu gor". Kart izgarasinin
   USTUNDE, kendi basligi gibi durur. */
.rating-line {
    display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
    padding-bottom: 24px; margin-bottom: clamp(28px, 4vw, 44px);
    border-bottom: 1px solid var(--rule);
}
.rating-line .g-logo { width: 26px; height: 26px; flex-shrink: 0; }
.rating-line .score { font-family: var(--font-display); font-size: 26px; line-height: 1; }
.rating-line .count { font-size: 13px; color: var(--muted); }
.rating-line .btn { margin-left: auto; padding: 10px 20px; font-size: 12.5px; }

/* Yorum kartlari: Cengiz Erkek Kuaforu sitesindeki gibi UCU DE AYNI
   BOYUTTA -- biri buyuk biri kucuk asimetrik alinti yerine, tek satirda
   3 esit kart. CSS grid tek sirada butun hucreleri en uzun icerigin
   yuksekligine esitler, o yuzden metin uzunlugu farkli olsa da kartlar
   otomatik hizalanir. */
.review-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: clamp(14px, 2vw, 20px);
}
.review-card {
    background: var(--bone); border-radius: var(--r-card);
    padding: clamp(22px, 2.6vw, 28px);
    display: flex; flex-direction: column;
}
.review-top { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.review-avatar {
    width: 38px; height: 38px; flex-shrink: 0; display: grid; place-content: center;
    border-radius: var(--r-pill); background: var(--sage-700); color: var(--bone-hi);
    font-family: var(--font-display); font-size: 17px;
}
.review-who { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.review-who b { font-size: 14.5px; line-height: 1.2; }
.review-top .g-logo { width: 18px; height: 18px; flex-shrink: 0; margin-left: auto; }
.review-card p { margin: 0; font-size: 14.5px; color: var(--muted); line-height: 1.6; flex: 1; }
.review-date { display: block; font-size: 12px; color: var(--muted); margin-top: 16px; }

@media (max-width: 900px) { .review-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .review-grid { grid-template-columns: 1fr; } }

/* ============================================================
   12. ILETISIM
   ============================================================ */
.contact { padding: var(--pad-section) 0 0; }
.map-wrap { position: relative; margin-top: clamp(26px, 4vw, 46px); }
.map-frame { height: clamp(400px, 54vh, 550px); overflow: hidden; background: var(--sage-100); }
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(.82) contrast(.96); }

.contact-card { background: var(--bone-hi); padding: clamp(24px, 3.2vw, 38px); border-radius: var(--r-card); box-shadow: var(--shadow-lg); }
@media (min-width: 900px) {
    .map-wrap { display: grid; }
    .map-wrap .map-frame { grid-area: 1 / 1; }
    .contact-card {
        grid-area: 1 / 1; justify-self: end; align-self: center;
        width: min(400px, 42%); margin-right: clamp(24px, 5vw, 80px);
    }
}
@media (max-width: 899px) {
    .contact-card { position: relative; z-index: 2; margin: -44px 16px 0; }
}

.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.contact-list li:first-child { padding-top: 0; }
.contact-list li:last-child { border-bottom: none; padding-bottom: 0; }
.contact-list .c-icon { color: var(--rose); font-size: 15px; margin-top: 4px; flex-shrink: 0; }
.contact-list h3 { font-family: var(--font-body); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin: 0 0 4px; }
.contact-list p { margin: 0; font-size: 14.5px; line-height: 1.5; }
.contact-list a { font-size: 14.5px; text-decoration: none; display: inline-block; min-height: 24px; padding: 4px 0; }
.contact-list a:hover { color: var(--rose); }

/* ============================================================
   13. ALT BILGI
   ============================================================ */
.site-footer {
    background: var(--forest-900); color: var(--bone);
    padding: clamp(56px, 7vw, 88px) 0 96px;
    margin-top: var(--pad-section);
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 44px; }
.site-footer .brand-name, .site-footer .brand-sub { color: var(--bone); }
.site-footer .brand-sub { opacity: .6; }
.footer-about { color: rgba(233, 226, 216, .7); font-size: 14px; max-width: 38ch; margin: 18px 0 0; }
.footer-col h4 { font-family: var(--font-body); font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: rgba(233, 226, 216, .62); margin: 0 0 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a { font-size: 14px; color: rgba(233, 226, 216, .8); text-decoration: none; transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--bone); }
.footer-bottom {
    display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center;
    margin-top: 50px; padding-top: 22px;
    border-top: 1px solid rgba(233, 226, 216, .14);
    font-size: 12.5px; color: rgba(233, 226, 216, .62);
}
.footer-bottom a { text-decoration: none; }
.admin-entry {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 16px;
    border: 1px solid rgba(233, 226, 216, .28); border-radius: var(--r-pill);
    color: rgba(233, 226, 216, .72);
    transition: color .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
}
.admin-entry:hover { color: var(--bone); border-color: rgba(233, 226, 216, .5); background: rgba(233, 226, 216, .07); }
.admin-entry i { font-size: 11px; }
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }

.wa-float {
    position: fixed; right: 20px; bottom: 20px; z-index: 300;
    width: 52px; height: 52px; display: grid; place-content: center;
    background: var(--rose); color: var(--bone-hi);
    border-radius: var(--r-pill); font-size: 23px;
    box-shadow: 0 10px 26px rgba(158, 74, 87, .3);
    text-decoration: none;
    transition: transform .2s var(--ease), background .2s var(--ease);
}
.wa-float:hover { background: var(--rose-deep); transform: translateY(-2px); }

/* ============================================================
   14. MODALLAR
   ============================================================ */
/* Z-INDEX OLCEGI (sayfanin tamaminda gecerli):
     200  ust bar
     300  sabit WhatsApp dugmesi
     900  galeri lightbox
    1000  yonetim paneli
    1100  modallar  <- panelin ustunde olmali, yoksa panelden acilan
          modallar panelin arkasinda kalir ve gorunmez */
.modal {
    position: fixed; inset: 0; z-index: 1100;
    display: none; align-items: center; justify-content: center; padding: 24px;
    background: rgba(36, 44, 38, .58);
    backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.modal.is-open { display: flex; }
.modal-card {
    width: 100%; max-width: 470px; max-height: 88dvh; overflow-y: auto;
    background: var(--bone-hi); border-radius: var(--r-card);
    padding: 30px; box-shadow: var(--shadow-lg);
}
.modal-card.is-wide { max-width: 640px; }
.modal-card h3 { font-size: 1.55rem; }
.modal-card > p { color: var(--muted); font-size: 14px; margin: 8px 0 22px; }
.modal-footer { display: flex; justify-content: flex-end; gap: 10px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); }

.result-list { display: grid; gap: 8px; max-height: 300px; overflow-y: auto; }
.result-row {
    display: flex; align-items: center; justify-content: space-between; gap: 14px;
    padding: 13px 15px; background: var(--bone); border-radius: var(--r-field); font-size: 14px;
}
.result-row b { display: block; }
.result-row small { color: var(--muted); }

.status {
    display: inline-flex; align-items: center; padding: 5px 12px; border-radius: var(--r-pill);
    font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap;
}
.status.pending { background: rgba(92, 83, 73, .14); color: var(--muted); }
.status.approved { background: rgba(75, 107, 79, .16); color: var(--ok); }
.status.rejected { background: rgba(163, 58, 52, .13); color: var(--stop); }
.empty-note { text-align: center; color: var(--muted); font-size: 14px; padding: 24px 0; margin: 0; }

/* ============================================================
   15. YONETIM PANELI
   ============================================================ */
.admin { display: none; position: fixed; inset: 0; z-index: 1000; background: var(--bone); overflow-y: auto; }
.admin.is-open { display: block; }

.login-wrap { min-height: 100dvh; display: grid; place-content: center; padding: 24px; }
.login-card { width: min(400px, 100%); background: var(--bone-hi); border-radius: var(--r-card); padding: 38px 32px; box-shadow: var(--shadow-md); text-align: center; }
.login-card h2 { font-size: 1.7rem; margin-bottom: 8px; }
.login-card p { color: var(--muted); font-size: 14px; margin: 0 0 24px; }
.login-card .field { margin-bottom: 13px; text-align: left; }

.admin-panel { display: none; padding: 30px 0 72px; }
.admin-panel.is-open { display: block; }
.admin-bar {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px;
    padding-bottom: 20px; border-bottom: 1px solid var(--line); margin-bottom: 30px;
}
.admin-bar h1 { font-size: 1.7rem; letter-spacing: .06em; text-transform: uppercase; }
.admin-bar .actions { display: flex; flex-wrap: wrap; gap: 8px; }
.admin-bar .btn { padding: 10px 17px; font-size: 12.5px; }

.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; margin-bottom: 30px; }
.stat { background: var(--bone-hi); border-radius: var(--r-card); padding: 20px 22px; }
.stat h3 { font-family: var(--font-body); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin: 0 0 9px; }
.stat b { font-family: var(--font-display); font-size: 31px; color: var(--rose); }

.admin-card { background: var(--bone-hi); border-radius: var(--r-card); padding: 26px; margin-bottom: 20px; }
.admin-card-head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 20px; }
.admin-card-head h2 { font-size: 1.35rem; }
.admin-card-head .actions { display: flex; flex-wrap: wrap; gap: 8px; }
.admin-card-head .btn { padding: 9px 15px; font-size: 12.5px; }

.table-scroll { overflow-x: auto; }
table.admin-table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 720px; }
table.admin-table th {
    text-align: left; padding: 11px;
    font-family: var(--font-body); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
    color: var(--muted); border-bottom: 1px solid var(--line);
}
table.admin-table td { padding: 14px 11px; border-bottom: 1px solid rgba(75, 63, 55, .08); vertical-align: top; }
table.admin-table tr:last-child td { border-bottom: none; }
.row-actions { display: flex; gap: 6px; }
.icon-btn {
    width: 33px; height: 33px; display: grid; place-content: center;
    border: 1px solid var(--line); border-radius: var(--r-pill);
    background: transparent; color: var(--brown); cursor: pointer; font-size: 12.5px;
    transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.icon-btn:hover { background: var(--espresso); border-color: var(--espresso); color: var(--bone); }
.icon-btn.ok:hover { background: var(--ok); border-color: var(--ok); }
.icon-btn.no:hover { background: var(--stop); border-color: var(--stop); }

.admin-list { display: grid; gap: 8px; max-height: 340px; overflow-y: auto; }
.admin-row { display: flex; align-items: center; gap: 10px; background: var(--bone); border-radius: var(--r-field); padding: 11px 13px; }
.admin-row input { flex: 1; min-width: 0; padding: 9px 11px; background: var(--bone-hi); border: 1px solid var(--line); border-radius: var(--r-field); font-family: var(--font-body); font-size: 14px; color: var(--espresso); }
.admin-row input:focus { outline: none; border-color: var(--rose); }
.admin-row .label { flex: 1; font-size: 14px; font-weight: 500; }

/* Fiyat ve sure kutulari: rakamin ne oldugu kutunun icinde yazsin */
.unit-field { position: relative; display: block; width: 118px; flex-shrink: 0; }
.unit-field.is-narrow { width: 88px; }
.unit-field input { width: 100%; padding-right: 34px; }
.unit-field i {
    position: absolute; right: 11px; top: 50%; transform: translateY(-50%);
    font-style: normal; font-size: 11px; font-weight: 700; letter-spacing: .08em;
    text-transform: uppercase; color: var(--muted); pointer-events: none;
}

/* Manuel randevu: secilen hizmetlerin toplami */
.manual-total {
    display: flex; align-items: baseline; justify-content: space-between;
    margin-top: 24px; padding-top: 16px;
    border-top: 1px solid var(--line);
}
.manual-total span { font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.manual-total b { font-family: var(--font-display); font-size: 22px; color: var(--rose); }

.upload-drop {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 18px; border: 1px dashed var(--rose); border-radius: var(--r-field);
    color: var(--rose); font-weight: 700; font-size: 14px; cursor: pointer;
}
.admin-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(104px, 1fr)); gap: 8px; margin-top: 16px; max-height: 320px; overflow-y: auto; }
.admin-thumb { position: relative; border-radius: var(--r-field); overflow: hidden; aspect-ratio: 1; }
.admin-thumb img { width: 100%; height: 100%; object-fit: cover; }
.admin-thumb button {
    position: absolute; top: 5px; right: 5px; width: 25px; height: 25px;
    display: grid; place-content: center;
    background: rgba(36, 44, 38, .82); color: var(--bone);
    border: none; border-radius: var(--r-pill); cursor: pointer; font-size: 11px;
}

/* ============================================================
   16. GIRIS ANIMASYONLARI
   ============================================================ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

.hero-anim { opacity: 0; transform: translateY(16px); animation: heroIn .9s var(--ease) forwards; }
.hero-anim:nth-child(1) { animation-delay: .04s; }
.hero-anim:nth-child(2) { animation-delay: .13s; }
.hero-anim:nth-child(3) { animation-delay: .22s; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .hero-anim { opacity: 1; transform: none; animation: none; }
    .step-panel.is-active { animation: none; }
    .marquee-track { animation: none; }
    .marquee { overflow-x: auto; }
    .skeleton { animation: none; }
    *, *::before, *::after { transition-duration: .01ms !important; }
}
