/* ============================================================================
   user-home-page — BAĞIMSIZ stil dosyası.
   Bu sayfa hiçbir global stili (bootstrap / main.css / main2.css) miras ALMAZ.
   Burada tanımlı olmayan hiçbir şey sayfaya uygulanmaz. Mobil-öncelikli.
   Accent değişkenleri (--uhp-accent*) sayfa tarafından (theme preset) basılır.
   ========================================================================== */

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
    -webkit-text-size-adjust: 100%;   /* iOS'ta metni kendiliğinden büyütmesin */
    text-size-adjust: 100%;
    font-size: 16px;
}
body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd, ul, ol { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
table { border-collapse: collapse; }

/* ---------- tokens ---------- */
:root {
    --uhp-page-bg: #f3f5f8;
    --uhp-surface: #ffffff;
    --uhp-surface-2: #f6f8fb;
    --uhp-ink: #141a22;
    --uhp-muted: #5b6573;
    --uhp-faint: #8b93a1;
    --uhp-line: #e7eaf0;
    --uhp-shadow: 0 1px 2px rgba(16, 24, 40, .04), 0 8px 24px rgba(16, 24, 40, .06);
    --uhp-radius: 16px;
}
@media (prefers-color-scheme: dark) {
    :root {
        --uhp-page-bg: #0b0f15;
        --uhp-surface: #141b25;
        --uhp-surface-2: #0f151d;
        --uhp-ink: #eef1f6;
        --uhp-muted: #9aa3b2;
        --uhp-faint: #6b7482;
        --uhp-line: #232b37;
        --uhp-shadow: 0 1px 2px rgba(0, 0, 0, .3), 0 10px 28px rgba(0, 0, 0, .35);
    }
}
:root[data-uhp-theme="dark"] {
    --uhp-page-bg: #0b0f15;
    --uhp-surface: #141b25;
    --uhp-surface-2: #0f151d;
    --uhp-ink: #eef1f6;
    --uhp-muted: #9aa3b2;
    --uhp-faint: #6b7482;
    --uhp-line: #232b37;
    --uhp-shadow: 0 1px 2px rgba(0, 0, 0, .3), 0 10px 28px rgba(0, 0, 0, .35);
}
:root[data-uhp-theme="light"] {
    --uhp-page-bg: #f3f5f8;
    --uhp-surface: #ffffff;
    --uhp-surface-2: #f6f8fb;
    --uhp-ink: #141a22;
    --uhp-muted: #5b6573;
    --uhp-faint: #8b93a1;
    --uhp-line: #e7eaf0;
    --uhp-shadow: 0 1px 2px rgba(16, 24, 40, .04), 0 8px 24px rgba(16, 24, 40, .06);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: var(--uhp-ink);
    background: var(--uhp-page-bg);
    -webkit-font-smoothing: antialiased;
    padding-bottom: 64px;   /* sabit alt navigasyon payı */
}

/* ============================== HEADER ============================== */
.uhp-head {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    height: 52px;
    padding: 0 10px;
    background: var(--uhp-accent);
    color: var(--uhp-on-accent);
}
.uhp-head__in {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
}
.uhp-head__home,
.uhp-hbtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    height: 34px;
    min-width: 34px;
    padding: 0 8px;
    border-radius: 10px;
    color: var(--uhp-on-accent);
    font-size: 15px;
    line-height: 1;
}
.uhp-hbtn { font-size: 13px; font-weight: 700; }
.uhp-head__home:hover,
.uhp-hbtn:hover { background: color-mix(in srgb, var(--uhp-on-accent) 16%, transparent); }
.uhp-brand {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .01em;
    white-space: nowrap;
    pointer-events: none;
}
.uhp-head__acts { display: flex; align-items: center; gap: 2px; }
.uhp-chev { font-size: 10px; opacity: .8; }
/* Dar ekran: marka absolute-merkez yerine akışa girer → home ile aksiyonlar
   arasında ortalanır, sığmazsa "..." ile kısalır, asla çakışmaz (owner'da çok öğe olsa da). */
@media (max-width: 480px) {
    .uhp-head { padding: 0 8px; gap: 4px; }
    .uhp-brand {
        position: static;
        transform: none;
        flex: 1 1 auto;
        min-width: 0;
        padding: 0 4px;
        font-size: 13px;
        text-align: center;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        pointer-events: auto;
    }
    .uhp-head__home, .uhp-hbtn { padding: 0 6px; min-width: 30px; }
}
@media (max-width: 340px) {
    .uhp-brand { font-size: 12px; }
    .uhp-head__acts { gap: 0; }
}

/* header açılır menüleri (dil + tema seçici) */
.uhp-dd { position: relative; display: flex; align-items: center; }
.uhp-dd__menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 60;
    min-width: 128px;
    padding: 6px;
    border-radius: 14px;
    background: var(--uhp-surface);
    border: 1px solid var(--uhp-line);
    box-shadow: 0 16px 38px rgba(0, 0, 0, .24);
    color: var(--uhp-ink);
    display: none;
}
.uhp-dd.is-open .uhp-dd__menu { display: block; }
.uhp-dd__item {
    display: flex;
    align-items: center;
    gap: 9px;
    width: 100%;
    padding: 8px 10px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 600;
    text-align: left;
}
.uhp-dd__item:hover { background: var(--uhp-surface-2); }
.uhp-dd__item.is-active { background: var(--uhp-accent-050); color: var(--uhp-accent); }
.uhp-dd__item[disabled] { opacity: .5; cursor: progress; }
.uhp-dd__t {
    padding: 4px 10px 8px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--uhp-faint);
}
.uhp-dd__note {
    margin-top: 6px;
    padding: 8px 10px 2px;
    border-top: 1px solid var(--uhp-line);
    font-size: 10px;
    line-height: 1.5;
    color: var(--uhp-faint);
}
.uhp-dot {
    width: 16px;
    height: 16px;
    flex: none;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--uhp-ink) 22%, transparent);
}
.uhp-dd__item .uhp-nm { flex: 1 1 auto; }
.uhp-dd__item .uhp-chk { opacity: 0; font-size: 14px; }
.uhp-dd__item.is-active .uhp-chk { opacity: 1; }

/* ============================== SAYFA ============================== */
.uhp-wrap { max-width: 1080px; margin: 0 auto; padding: 0 12px 28px; }

.uhp-crumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
    padding: 10px 2px;
    font-size: 11.5px;
    color: var(--uhp-muted);
}
.uhp-crumbs a { color: var(--uhp-accent); font-weight: 600; }
.uhp-crumbs .sep { color: var(--uhp-faint); }
.uhp-crumbs .cur { color: var(--uhp-ink); font-weight: 700; }

/* ------------------------------ HERO ------------------------------ */
.uhp-hero {
    background: var(--uhp-surface);
    border: 1px solid var(--uhp-line);
    border-radius: var(--uhp-radius);
    box-shadow: var(--uhp-shadow);
    padding: 16px 14px 14px;
    text-align: center;
}
.uhp-logo {
    width: 62px;
    height: 62px;
    margin: 0 auto;
    padding: 5px;
    border-radius: 15px;
    object-fit: contain;
    background: #fff;
    border: 2px solid var(--uhp-accent);
}
.uhp-h1 {
    margin-top: 9px;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -.01em;
}
.uhp-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    margin-top: 8px;
}
.uhp-badge {
    padding: 4px 9px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    color: var(--uhp-muted);
    background: var(--uhp-surface-2);
    border: 1px solid var(--uhp-line);
}
.uhp-badge.key {
    color: var(--uhp-accent);
    background: var(--uhp-accent-050);
    border-color: var(--uhp-accent-line);
}
a.uhp-badge {
    text-decoration: none;
    cursor: pointer;
    transition: border-color .15s ease, color .15s ease;
}
a.uhp-badge:hover {
    color: var(--uhp-accent);
    border-color: var(--uhp-accent-line);
}
.uhp-premium {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: #6d4f18;
    background: linear-gradient(135deg, #f9edc9 0%, #eccf85 48%, #f7e6ba 100%);
    border: 1px solid #d9b45f;
    box-shadow: 0 1px 8px rgba(217, 180, 95, .35);
}
.uhp-premium i {
    font-size: 13px;
    color: #8a6a2f;
    line-height: 1;
}
.uhp-contact { margin-top: 10px; font-size: 12.5px; color: var(--uhp-muted); line-height: 1.5; }
.uhp-contact p { display: flex; align-items: flex-start; justify-content: center; gap: 6px; }
.uhp-contact p + p { margin-top: 4px; }
.uhp-contact i { color: var(--uhp-accent); font-size: 13px; line-height: 1.45; flex: none; }
.uhp-contact a { color: var(--uhp-ink); font-weight: 700; }
.uhp-socials { display: flex; justify-content: center; gap: 6px; margin-top: 10px; }
.uhp-socials a {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: var(--uhp-accent-050);
    color: var(--uhp-accent);
    font-size: 15px;
}
.uhp-cta { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 12px; }
.uhp-cta:only-child, .uhp-cta.one { grid-template-columns: 1fr; }
.uhp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 40px;
    border-radius: 11px;
    font-size: 13px;
    font-weight: 700;
    background: var(--uhp-surface);
    color: var(--uhp-accent);
    border: 1.5px solid var(--uhp-accent);
}
.uhp-btn:hover { background: var(--uhp-accent-050); }
.uhp-intro {
    margin: 10px auto 0;
    max-width: 420px;
    font-size: 11.5px;
    line-height: 1.55;
    color: var(--uhp-faint);
}

/* ---------------------------- BÖLÜMLER ---------------------------- */
.uhp-sec { margin-top: 18px; }
.uhp-eyebrow {
    margin-bottom: 7px;
    padding-left: 2px;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--uhp-faint);
}
.uhp-card {
    background: var(--uhp-surface);
    border: 1px solid var(--uhp-line);
    border-radius: var(--uhp-radius);
    box-shadow: var(--uhp-shadow);
    overflow: hidden;
}
.uhp-card__body { padding: 12px 14px; font-size: 13px; line-height: 1.6; color: var(--uhp-muted); }

/* işlem modülleri */
.uhp-mods { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.uhp-mods > .uhp-mod:last-child:nth-child(odd) { grid-column: 1 / -1; }   /* tek sayılı son öğe tam genişlik */
.uhp-mod {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 14px;
    min-height: 84px;
    padding: 11px 12px;
    border-radius: 14px;
    background: var(--uhp-accent);
    color: var(--uhp-on-accent);
}
.uhp-mod__i {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 9px;
    font-size: 14px;
    background: color-mix(in srgb, var(--uhp-on-accent) 18%, transparent);
}
.uhp-mod__t { font-size: 13px; font-weight: 700; line-height: 1.25; }
.uhp-mod__x { position: absolute; top: 10px; right: 10px; font-size: 11px; opacity: .75; }

/* çalışma saatleri */
.uhp-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 9px 14px;
    font-size: 12.5px;
}
.uhp-row + .uhp-row { border-top: 1px solid var(--uhp-line); }
.uhp-row .d { font-weight: 700; }
.uhp-row .t { color: var(--uhp-muted); font-variant-numeric: tabular-nums; }
.uhp-row.today { background: var(--uhp-accent-050); }

/* hizmetler */
.uhp-svc { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 10px 14px; }
.uhp-svc + .uhp-svc { border-top: 1px solid var(--uhp-line); }
.uhp-svc__n { font-size: 12.5px; font-weight: 700; line-height: 1.3; }
.uhp-svc__m { margin-left: 6px; font-size: 11px; font-weight: 600; color: var(--uhp-faint); font-variant-numeric: tabular-nums; }
.uhp-svc__go { flex: none; display: inline-flex; align-items: center; gap: 3px; font-size: 11.5px; font-weight: 700; color: var(--uhp-accent); }

/* galeri */
.uhp-gal { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.uhp-gal button {
    display: block;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    background: var(--uhp-surface-2);
    border: 1px solid var(--uhp-line);
}
.uhp-gal img { width: 100%; height: 100%; object-fit: cover; }

/* ekip */
.uhp-team { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 8px; }
.uhp-tm {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid var(--uhp-line);
    border-radius: 12px;
    background: var(--uhp-surface);
    color: var(--uhp-ink);
    text-decoration: none;
}
a.uhp-tm.is-link { transition: border-color .15s ease, transform .15s ease; }
a.uhp-tm.is-link:hover { border-color: var(--uhp-accent-line); transform: translateY(-1px); text-decoration: none; color: var(--uhp-ink); }
.uhp-tm__ava {
    flex: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--uhp-surface-2);
    border: 1px solid var(--uhp-line);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.uhp-tm__ava img { width: 100%; height: 100%; object-fit: cover; }
.uhp-tm__init { font-size: 16px; font-weight: 800; color: var(--uhp-muted); }
.uhp-tm__body { min-width: 0; display: flex; flex-direction: column; gap: 1px; }
.uhp-tm__n { font-size: 12.5px; font-weight: 700; line-height: 1.3; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.uhp-tm__t { font-size: 11px; font-weight: 600; color: var(--uhp-muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.uhp-tm__go { display: inline-flex; align-items: center; gap: 3px; margin-top: 2px; font-size: 11px; font-weight: 700; color: var(--uhp-accent); }

/* harita */
.uhp-map { position: relative; border-radius: var(--uhp-radius); overflow: hidden; border: 1px solid var(--uhp-line); }
.uhp-map iframe { display: block; width: 100%; height: 190px; border: 0; }
.uhp-map__a {
    position: absolute;
    top: 8px;
    left: 8px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 700;
    background: var(--uhp-surface);
    color: var(--uhp-accent);
    border: 1px solid var(--uhp-line);
}

/* benzer işletmeler */
.uhp-rel { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.uhp-rel a {
    display: block;
    padding: 11px;
    border-radius: 14px;
    background: var(--uhp-surface);
    border: 1px solid var(--uhp-line);
    box-shadow: var(--uhp-shadow);
}
.uhp-rel__i {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    margin-bottom: 7px;
    border-radius: 9px;
    font-size: 11px;
    font-weight: 800;
    color: var(--uhp-accent);
    background: var(--uhp-accent-050);
    border: 1px solid var(--uhp-accent-line);
}
.uhp-rel__n { font-size: 12.5px; font-weight: 700; line-height: 1.3; }
.uhp-rel__m { margin-top: 2px; font-size: 11px; color: var(--uhp-faint); }

/* ---------------------------- CLAIM ---------------------------- */
.uhp-claim {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
    padding: 12px 14px;
    border-radius: var(--uhp-radius);
    background: var(--uhp-surface);
    border: 1px solid var(--uhp-line);
}
.uhp-claim.is-owner-mode {
    padding: 16px;
    background: var(--uhp-accent-050);
    border-color: var(--uhp-accent-line);
}
.uhp-claim__copy { min-width: 0; }
.uhp-claim__t { font-size: 13px; font-weight: 800; }
.uhp-claim__d { margin-top: 3px; font-size: 12px; color: var(--uhp-muted); line-height: 1.5; }
.uhp-claim__source { margin-top: 8px; font-size: 11px; color: var(--uhp-faint); }
.uhp-claim__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 12px;
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
}
.uhp-claim__trust li {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--uhp-muted);
}
.uhp-claim__trust i { color: var(--uhp-accent); }
.uhp-claim__help {
    display: inline-block;
    margin-top: 9px;
    font-size: 11px;
    font-weight: 650;
    color: var(--uhp-muted);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.uhp-claim__help:hover { color: var(--uhp-ink); }
.uhp-claim__b {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 9px 16px;
    border-radius: 11px;
    font-size: 12.5px;
    font-weight: 700;
    background: var(--uhp-ink);
    color: var(--uhp-page-bg);
    text-decoration: none;
}
.uhp-claim__b:focus-visible,
.uhp-modal button:focus-visible,
.uhp-modal a:focus-visible,
.uhp-modal input:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--uhp-accent) 55%, transparent);
    outline-offset: 2px;
}

@media (min-width: 680px) {
    .uhp-claim {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    .uhp-claim__b { flex-shrink: 0; }
}

/* ---------------------------- MODAL ---------------------------- */
.uhp-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: rgba(4, 8, 14, .72);
}
.uhp-modal.is-open { display: flex; }
.uhp-modal__box {
    width: 100%;
    max-width: 440px;
    max-height: calc(100vh - 32px);
    overflow-y: auto;
    padding: 18px;
    border-radius: 18px;
    background: var(--uhp-surface);
    border: 1px solid var(--uhp-line);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .4);
}
.uhp-modal__h { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 10px; }
.uhp-modal__h h2 { font-size: 15px; font-weight: 800; }
.uhp-modal__x { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 11px; font-size: 22px; color: var(--uhp-muted); }
.uhp-modal__x:hover { background: var(--uhp-surface-2); }
.uhp-modal p { font-size: 12.5px; color: var(--uhp-muted); line-height: 1.55; }
.uhp-modal__trust {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 10px;
    padding: 10px 11px;
    border-radius: 11px;
    background: var(--uhp-accent-050);
    border: 1px solid var(--uhp-accent-line);
    font-size: 11.5px;
    line-height: 1.5;
    color: var(--uhp-muted);
}
.uhp-modal__trust i { margin-top: 2px; color: var(--uhp-accent); }
.uhp-field {
    width: 100%;
    height: 42px;
    margin-top: 4px;
    padding: 0 12px;
    border-radius: 11px;
    background: var(--uhp-surface-2);
    border: 1px solid var(--uhp-line);
    font-size: 15px;
    letter-spacing: .12em;
    text-align: center;
}
.uhp-label { display: block; margin-top: 12px; font-size: 11.5px; font-weight: 700; color: var(--uhp-muted); }
.uhp-field-help { margin-top: 6px; font-size: 10.5px; line-height: 1.45; color: var(--uhp-faint); }
.uhp-btn-solid {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 42px;
    margin-top: 12px;
    border-radius: 11px;
    font-size: 13px;
    font-weight: 700;
    background: var(--uhp-accent);
    color: var(--uhp-on-accent);
}
.uhp-btn-solid[disabled] { opacity: .6; cursor: progress; }
.uhp-link-button {
    display: block;
    min-height: 44px;
    margin: 6px auto 0;
    padding: 8px 12px;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--uhp-accent);
}
.uhp-link-button[disabled] { color: var(--uhp-faint); cursor: not-allowed; }
.uhp-modal__help {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--uhp-line);
    font-size: 11px;
    line-height: 1.55;
    color: var(--uhp-muted);
}
.uhp-modal__help strong { display: block; margin-bottom: 3px; color: var(--uhp-ink); }
.uhp-modal__help a { font-weight: 700; color: var(--uhp-accent); }
.uhp-claim-feedback {
    margin-top: 10px;
    font-size: 11px;
    color: var(--uhp-muted);
}
.uhp-claim-feedback summary {
    min-height: 36px;
    padding: 9px 0;
    font-weight: 700;
    cursor: pointer;
}
.uhp-claim-feedback__options {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding-top: 4px;
}
.uhp-claim-feedback__options button {
    min-height: 36px;
    padding: 7px 10px;
    border: 1px solid var(--uhp-line);
    border-radius: 999px;
    background: var(--uhp-surface-2);
    color: var(--uhp-muted);
    font-size: 10.5px;
    font-weight: 650;
}
.uhp-claim-feedback__options button:hover { color: var(--uhp-ink); border-color: var(--uhp-accent-line); }
.uhp-claim-feedback__options button[disabled] { opacity: .55; cursor: default; }
.uhp-claim-feedback__thanks {
    margin-top: 8px;
    padding: 8px 10px;
    border-radius: 9px;
    background: var(--uhp-accent-050);
    color: var(--uhp-muted);
}
.uhp-note { margin-top: 10px; padding: 9px 11px; border-radius: 11px; font-size: 12px; line-height: 1.5; display: none; }
.uhp-note.is-on { display: block; }
.uhp-note.ok { background: color-mix(in srgb, #16a34a 16%, var(--uhp-surface)); color: #16a34a; }
.uhp-note.err { background: color-mix(in srgb, #dc2626 16%, var(--uhp-surface)); color: #dc2626; }
.uhp-hidden { display: none !important; }

/* ---------------------------- LIGHTBOX ---------------------------- */
.uhp-lb {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(2, 5, 9, .94);
}
.uhp-lb.is-open { display: flex; }
.uhp-lb img { max-width: 92vw; max-height: 82vh; object-fit: contain; border-radius: 10px; }
.uhp-lb__n {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 20px;
    color: #fff;
    background: rgba(255, 255, 255, .14);
}
.uhp-lb__n.prev { left: 12px; }
.uhp-lb__n.next { right: 12px; }
.uhp-lb__x { position: absolute; top: 14px; right: 14px; width: 40px; height: 40px; border-radius: 50%; font-size: 22px; color: #fff; background: rgba(255, 255, 255, .14); }
.uhp-lb__c { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); font-size: 12px; color: rgba(255, 255, 255, .75); }

/* ---------------------------- ALT NAV ---------------------------- */
.uhp-tabs {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    display: flex;
    justify-content: center;
    background: var(--uhp-accent);
    color: var(--uhp-on-accent);
}
.uhp-tabs a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    flex: 1 1 0;
    max-width: 132px;
    padding: 8px 4px;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
}
.uhp-tabs a i { font-size: 16px; }
.uhp-tabs a.is-on { background: color-mix(in srgb, var(--uhp-on-accent) 20%, transparent); }

/* ---------------------------- FOOTER ---------------------------- */
.uhp-foot { margin-top: 22px; padding: 24px 14px 26px; background: #0d1117; color: #cbd5e1; }
.uhp-foot__in { max-width: 1080px; margin: 0 auto; }
.uhp-foot__b { display: flex; align-items: center; gap: 9px; }
.uhp-foot__b img { width: 26px; height: 26px; }
.uhp-foot__b h2 { font-size: 14px; font-weight: 800; color: #fff; line-height: 1.25; }
.uhp-foot__b span { font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #64748b; }
.uhp-foot p { margin-top: 10px; font-size: 12px; line-height: 1.6; color: #94a3b8; }
.uhp-foot__s { display: flex; gap: 7px; margin-top: 12px; }
.uhp-foot__s a { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 10px; font-size: 15px; background: rgba(255, 255, 255, .07); color: #e2e8f0; }
.uhp-foot__g { display: grid; gap: 18px; margin-top: 20px; }
.uhp-foot h3 { font-size: 12px; font-weight: 700; color: #fff; margin-bottom: 9px; }
.uhp-foot__auth { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.uhp-foot__auth a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 40px;
    border-radius: 11px;
    font-size: 12.5px;
    font-weight: 700;
}
.uhp-foot__auth .ghost { border: 1px solid rgba(255, 255, 255, .2); color: #e2e8f0; }
.uhp-foot__auth .solid { background: var(--uhp-accent); color: var(--uhp-on-accent); }
.uhp-foot__store { display: flex; flex-wrap: wrap; gap: 8px; }
.uhp-foot__store img { height: 38px; width: auto; }
.uhp-foot__trust { display: flex; align-items: center; gap: 10px; margin-top: 12px; opacity: .75; }
.uhp-foot__trust img { height: 28px; width: auto; }
.uhp-foot__c { margin-top: 20px; padding-top: 14px; border-top: 1px solid rgba(255, 255, 255, .09); font-size: 11px; color: #64748b; text-align: center; }

/* ============================== ≥600px ============================== */
@media (min-width: 600px) {
    body { font-size: 15px; padding-bottom: 72px; }
    .uhp-head { height: 58px; padding: 0 16px; }
    .uhp-brand { font-size: 16px; }
    .uhp-wrap { padding: 0 20px 34px; }
    .uhp-logo { width: 76px; height: 76px; border-radius: 18px; }
    .uhp-h1 { font-size: 20px; }
    .uhp-hero { padding: 20px 18px 18px; }
    .uhp-gal { grid-template-columns: repeat(4, 1fr); }
    .uhp-map iframe { height: 230px; }
    .uhp-rel { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .uhp-tabs a { font-size: 11.5px; flex-direction: row; gap: 7px; padding: 12px 6px; }
    .uhp-foot__g { grid-template-columns: 1fr 1fr; }
    .uhp-tabs a i { font-size: 15px; }
}

/* ============================== ≥900px ============================== */
@media (min-width: 900px) {
    .uhp-wrap { padding: 0 24px 44px; }
    .uhp-grid { display: grid; grid-template-columns: 336px minmax(0, 1fr); gap: 24px; align-items: start; }
    .uhp-aside { position: sticky; top: 18px; }
    .uhp-sec:first-child { margin-top: 0; }
    .uhp-mods { grid-template-columns: repeat(var(--uhp-cols, 2), minmax(0, 1fr)); }
    .uhp-mods > .uhp-mod:last-child:nth-child(odd) { grid-column: auto; }
    .uhp-mod { min-height: 100px; padding: 14px; }
    .uhp-gal { grid-template-columns: repeat(4, 1fr); }
    .uhp-map iframe { height: 260px; }
    .uhp-rel { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .uhp-foot__g { grid-template-columns: 1.2fr 1fr 1fr; }
    .uhp-foot { padding: 34px 24px 30px; }
    /* Alt navigasyon masaüstünde de kalır (ürünün her zamanki navigasyonu) */
    .uhp-tabs a { max-width: 190px; padding: 13px 10px; font-size: 12.5px; }
    .uhp-tabs a i { font-size: 16px; }
}
