/* =====================================================================
   KORUMETAL.COM — Vitrin Tasarım Sistemi
   Renkler yönetim panelinden gelir (bkz. partials/theme.php).
   ===================================================================== */

/* ---------------------------------------------------------------
   1. Tasarım Belirteçleri (Design Tokens)
   --------------------------------------------------------------- */
:root {
    /* ---------------------------------------------------------------
       Marka renkleri — Koru Metal kurumsal kimliği
       Turuncu #F89721 · Antrasit #393939   (panelden değiştirilebilir)
       --------------------------------------------------------------- */
    --brand:            #393939;   /* Yapısal: butonlar, bağlantılar, koyu alanlar */
    --brand-rgb:        57, 57, 57;
    --brand-dark:       #232323;
    --brand-light:      #F1F1F1;

    --accent:           #F89721;   /* Marka turuncusu: vurgular, CTA, rozetler */
    --accent-rgb:       248, 151, 33;
    --accent-soft:      #FEF2E3;
    --accent-ink:       #AE6917;   /* Turuncu metin/ikon (kontrast uyumlu) */
    --accent-dark:      #D5811C;

    --ink:              #262626;
    --ink-2:            #464646;
    --ink-3:            #6E6E6E;
    --ink-4:            #9B9B9B;

    --surface:          #FFFFFF;
    --surface-2:        #F7F7F6;
    --surface-3:        #EDEDEC;
    --line:             #E4E4E2;
    --line-strong:      #CFCFCC;

    --success:          #1E8E5A;
    --warning:          #C77E12;
    --danger:           #C2381F;
    --info:             #22607E;

    /* Ölçek */
    --radius:           4px;
    --radius-lg:        8px;
    --radius-pill:      999px;

    --shadow-sm:        0 1px 2px rgba(20, 24, 28, .06);
    --shadow:           0 4px 16px rgba(20, 24, 28, .08);
    --shadow-lg:        0 18px 48px rgba(20, 24, 28, .14);

    --container:        1280px;
    --container-narrow: 940px;
    --gutter:           clamp(16px, 4vw, 40px);

    --header-h:         94px;
    --header-h-sm:      68px;

    --font:             'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-display:     var(--font);
    --font-mono:        ui-monospace, SFMono-Regular, 'SF Mono', Menlo, monospace;

    --ease:             cubic-bezier(.22, .61, .36, 1);
    --dur:              .32s;
}

/* ---------------------------------------------------------------
   2. Sıfırlama
   --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; }

/* display kuralları hidden özniteliğini ezmesin */
[hidden] { display: none !important; }

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 20px);
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink-2);
    background: var(--surface);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }

input, button, textarea, select { font: inherit; color: inherit; }

button { cursor: pointer; background: none; border: 0; }

a { color: inherit; text-decoration: none; }

ul, ol { list-style: none; padding: 0; }

table { border-collapse: collapse; width: 100%; }

h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    color: var(--ink);
    line-height: 1.18;
    font-weight: 650;
    letter-spacing: -.02em;
    text-wrap: balance;
}

h1 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
h2 { font-size: clamp(1.65rem, 3.2vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { text-wrap: pretty; }

::selection { background: var(--brand); color: #fff; }

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 2px;
}

/* ---------------------------------------------------------------
   3. Yerleşim
   --------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: clamp(56px, 8vw, 110px); }
.section--tight { padding-block: clamp(40px, 5vw, 68px); }
.section--muted { background: var(--surface-2); }
.section--dark { background: var(--ink); color: rgba(255, 255, 255, .82); }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--brand { background: var(--brand); color: rgba(255, 255, 255, .86); }
.section--brand h2, .section--brand h3 { color: #fff; }

.grid { display: grid; gap: clamp(16px, 2.2vw, 28px); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--auto { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.grid--auto-sm { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }

/* İçerik + yan sütun düzenleri (980px altında tek sütuna iner) */
.grid--split     { grid-template-columns: 1.15fr .85fr; align-items: start; }
.grid--split-alt { grid-template-columns: .85fr 1.15fr; align-items: start; }
.grid--even      { grid-template-columns: 1fr 1fr; align-items: start; }
.grid--aside     { grid-template-columns: minmax(0, 1.55fr) minmax(260px, .45fr); align-items: start; }
.grid--form      { grid-template-columns: 1.2fr .8fr; align-items: start; }
.grid--wide-gap  { gap: clamp(28px, 4vw, 60px); }

/* Giriş ekranı: tanıtım + form */
.auth-split {
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    align-items: stretch;
}

.stack > * + * { margin-top: 1rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-xs { gap: .3rem; }
.gap-sm { gap: .5rem; }
.gap { gap: 1rem; }
.gap-lg { gap: 2rem; }
.wrap { flex-wrap: wrap; }
.grow { flex: 1; min-width: 0; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.text-center { text-align: center; }
.text-right { text-align: right; }
.mono { font-family: var(--font-mono); font-size: .9em; }
.muted { color: var(--ink-3); }
.small { font-size: .875rem; }
.tiny { font-size: .78rem; }
.nowrap { white-space: nowrap; }

.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;
}

/* ---------------------------------------------------------------
   4. Bölüm Başlıkları
   --------------------------------------------------------------- */
.section-head { margin-bottom: clamp(28px, 4vw, 52px); }
.section-head--center { text-align: center; max-width: 720px; margin-inline: auto; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-size: .74rem;
    font-weight: 620;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--accent-ink);
    margin-bottom: .9rem;
}

.eyebrow::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--accent);
}

.section-head--center .eyebrow::before { display: none; }

.section-head p {
    margin-top: .9rem;
    font-size: 1.03rem;
    color: var(--ink-3);
    max-width: 62ch;
}

.section-head--center p { margin-inline: auto; }

/* ---------------------------------------------------------------
   5. Butonlar
   --------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    padding: .85rem 1.7rem;
    font-size: .92rem;
    font-weight: 600;
    letter-spacing: .01em;
    border-radius: var(--radius);
    border: 1px solid transparent;
    transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
                border-color var(--dur) var(--ease), transform .15s var(--ease), box-shadow var(--dur) var(--ease);
    white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--brand); color: #fff; }
.btn--primary:hover { background: var(--brand-dark); box-shadow: var(--shadow); }

.btn--accent { background: var(--accent); color: #1a1405; }
.btn--accent:hover { filter: brightness(1.06); box-shadow: var(--shadow); }

.btn--ghost { border-color: var(--line-strong); color: var(--ink); background: transparent; }
.btn--ghost:hover { border-color: var(--ink); color: var(--ink); background: var(--surface-2); }

.btn--soft { background: var(--surface-2); color: var(--ink-2); border-color: var(--line); }
.btn--soft:hover { background: var(--line); color: var(--ink); }

.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--surface-2); }

.btn--outline-light { border-color: rgba(255, 255, 255, .4); color: #fff; }
.btn--outline-light:hover { background: rgba(255, 255, 255, .12); border-color: #fff; }

.btn--block { width: 100%; }
.btn--sm { padding: .58rem 1.1rem; font-size: .84rem; }
.btn--lg { padding: 1.05rem 2.2rem; font-size: 1rem; }

.btn[disabled], .btn.is-disabled { opacity: .5; pointer-events: none; }

.btn svg { width: 18px; height: 18px; flex: none; }

/* Metin bağlantısı */
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-weight: 600;
    font-size: .9rem;
    color: var(--accent-ink);
}

.link-arrow::after {
    content: '→';
    transition: transform var(--dur) var(--ease);
}

.link-arrow:hover::after { transform: translateX(4px); }

/* ---------------------------------------------------------------
   6. Üst Bar & Başlık
   --------------------------------------------------------------- */
.topbar {
    background: var(--ink);
    color: rgba(255, 255, 255, .72);
    font-size: .8rem;
    padding-block: .5rem;
}

.topbar a:hover { color: #fff; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.topbar__list { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: .4rem; }
.topbar__item svg { width: 14px; height: 14px; opacity: .7; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    transition: box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
}

.site-header.is-stuck { box-shadow: var(--shadow); }

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    height: var(--header-h);
}

.logo { display: flex; align-items: center; gap: .7rem; flex: none; }

/* Yüklenen logo.
   "max-height" yerine "height": logo dosyası küçük gelse bile alanı doldurur.
   Yeni logo 3:1'e yakın yatay bir oranda; yalnızca yükseklik sınırlanınca
   başlıkta minik kalıyordu. Genişlik üst sınırı menüyle çakışmasını önler. */
.logo img {
    height: 70px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
}

/* Satır içi SVG logo */
.logo__svg { display: block; width: 190px; max-width: 46vw; }
.logo__svg svg { width: 100%; height: auto; display: block; }
/* Yalnızca logoyu saran span'in içindeki SVG tam genişlik olsun.
   Doğrudan alt seçici kullanılmazsa kapatma (X) ikonu da yakalanır ve devleşir. */
.footer__brand > span > svg,
.mobile-nav__head > span > svg { width: 100%; height: auto; display: block; }

/* Menü içindeki simgeler her zaman sabit boyutlu kalsın */
.mobile-nav svg { width: 20px; height: 20px; flex: none; }
.mobile-nav__head > span > svg { width: 100%; height: auto; }
.mobile-nav .btn svg { width: 18px; height: 18px; }
.mobile-nav__link svg { width: 16px; height: 16px; opacity: .55; transition: transform var(--dur) var(--ease); }

@media (max-width: 980px) { .logo__svg { width: 150px; } }

.logo__text { display: flex; flex-direction: column; line-height: 1.1; }
.logo__name {
    font-size: 1.35rem;
    font-weight: 750;
    letter-spacing: -.03em;
    color: var(--ink);
}
.logo__name span { color: var(--accent); }
.logo__tag {
    font-size: .62rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--ink-4);
    font-weight: 600;
}

/* Ana gezinme */
.nav { display: flex; align-items: center; gap: .35rem; }

.nav__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .65rem .95rem;
    font-size: .92rem;
    font-weight: 550;
    color: var(--ink-2);
    border-radius: var(--radius);
    transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}

.nav__link:hover, .nav__link.is-active { color: var(--ink); background: var(--surface-2); }

.nav__link svg { width: 14px; height: 14px; opacity: .6; transition: transform var(--dur) var(--ease); }
.nav__item:hover .nav__link svg { transform: rotate(180deg); }

.nav__item { position: relative; }

/* Açılır menü */
.dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 250px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: .5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
}

.nav__item:hover > .dropdown,
.nav__item:focus-within > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .8rem;
    padding: .6rem .8rem;
    border-radius: var(--radius);
    font-size: .89rem;
    color: var(--ink-2);
    transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}

.dropdown a:hover { background: var(--surface-2); color: var(--brand); }
.dropdown a small { color: var(--ink-4); font-size: .74rem; }

.dropdown__group + .dropdown__group { border-top: 1px solid var(--line); margin-top: .4rem; padding-top: .4rem; }

/* Mega menü */
/* Mega menü, nav öğesine değil başlığa göre ortalanır; dar ekranlarda taşmaz.
   .site-header sticky olduğu için konumlandırma bağlamını o üstlenir. */
.nav__item--mega { position: static; }

.megamenu {
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    width: min(1240px, 96vw);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 1.2rem 1.4rem 1.4rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity .24s var(--ease), transform .24s var(--ease), visibility .24s;
}

.nav__item:hover > .megamenu,
.nav__item:focus-within > .megamenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.megamenu__col h5 {
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ink-4);
    margin-bottom: .7rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid var(--line);
}

.megamenu__col a {
    display: block;
    padding: .38rem 0;
    font-size: .88rem;
    color: var(--ink-2);
    transition: color var(--dur) var(--ease), padding-left var(--dur) var(--ease);
}

.megamenu__col a:hover { color: var(--brand); padding-left: 5px; }

.megamenu__promo {
    background: var(--surface-2);
    border-radius: var(--radius);
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 190px;
    background-size: cover;
    background-position: center;
}

/* Başlık aksiyonları */
.header__actions { display: flex; align-items: center; gap: .5rem; flex: none; }
.header__cta { margin-left: .35rem; flex: none; white-space: nowrap; }

.icon-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius);
    color: var(--ink-2);
    transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}

.icon-btn:hover { background: var(--surface-2); color: var(--brand); }
.icon-btn svg { width: 20px; height: 20px; }

.icon-btn__badge {
    position: absolute;
    top: 5px;
    right: 5px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    display: grid;
    place-items: center;
    background: var(--accent);
    color: #1a1405;
    font-size: .68rem;
    font-weight: 700;
    border-radius: var(--radius-pill);
}

.burger { display: none; }

/* ---------------------------------------------------------------
   7. Mobil Menü
   --------------------------------------------------------------- */
.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: var(--surface);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform .34s var(--ease);
    overflow-y: auto;
}

.mobile-nav.is-open { transform: translateX(0); }

.mobile-nav__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem var(--gutter);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    background: var(--surface);
}

.mobile-nav__body { padding: 1rem var(--gutter) 3rem; }

.mobile-nav__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .95rem 0;
    font-size: 1.02rem;
    font-weight: 550;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
}

.mobile-nav__sub { padding-left: 1rem; display: none; }
.mobile-nav__sub.is-open { display: block; }
.mobile-nav__sub a { display: block; padding: .6rem 0; font-size: .92rem; color: var(--ink-3); }

.mobile-nav__foot { margin-top: 1.6rem; display: grid; gap: .6rem; }

/* ---------------------------------------------------------------
   8. Kahraman Alanı (Hero / Slider)
   --------------------------------------------------------------- */
.hero { position: relative; background: var(--ink); overflow: hidden; }

.hero__slide {
    position: relative;
    min-height: clamp(460px, 74vh, 760px);
    display: none;
    align-items: center;
}

.hero__slide.is-active { display: flex; animation: heroIn .8s var(--ease); }

@keyframes heroIn { from { opacity: 0; } to { opacity: 1; } }

.hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    animation: heroZoom 14s var(--ease) forwards;
}

@keyframes heroZoom { from { transform: scale(1.06); } to { transform: scale(1); } }

/* Slayt arka plan videosu — görselle aynı alanı kaplar */
.hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #0E1113;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(10, 14, 12, .86) 0%, rgba(10, 14, 12, .58) 46%, rgba(10, 14, 12, .18) 100%);
}

.hero__content { position: relative; max-width: 660px; padding-block: 3rem; color: #fff; }
.hero__content--center { margin-inline: auto; text-align: center; }
.hero__content--right { margin-left: auto; text-align: right; }

.hero__eyebrow {
    display: inline-block;
    font-size: .74rem;
    font-weight: 650;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.1rem;
    animation: fadeUp .7s var(--ease) both;
}

.hero__title {
    color: #fff;
    font-size: clamp(2.1rem, 5.2vw, 4rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -.035em;
    animation: fadeUp .7s .08s var(--ease) both;
}

.hero__text {
    margin-top: 1.3rem;
    font-size: clamp(1rem, 1.4vw, 1.12rem);
    color: rgba(255, 255, 255, .82);
    max-width: 54ch;
    animation: fadeUp .7s .16s var(--ease) both;
}

.hero__content--center .hero__text { margin-inline: auto; }

.hero__actions {
    margin-top: 2.2rem;
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    animation: fadeUp .7s .24s var(--ease) both;
}

.hero__content--center .hero__actions { justify-content: center; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

/* Slider kontrolleri */
.hero__nav {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: .5rem;
    z-index: 3;
}

.hero__dot {
    width: 34px;
    height: 3px;
    background: rgba(255, 255, 255, .3);
    border-radius: 2px;
    transition: background var(--dur) var(--ease), width var(--dur) var(--ease);
}

.hero__dot.is-active { background: var(--accent); width: 52px; }

.hero__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 50%;
    backdrop-filter: blur(6px);
    transition: background var(--dur) var(--ease);
}

.hero__arrow:hover { background: rgba(255, 255, 255, .24); }
.hero__arrow--prev { left: clamp(12px, 3vw, 32px); }
.hero__arrow--next { right: clamp(12px, 3vw, 32px); }

/* Sayfa başlığı (iç sayfalar) — sade, sayfa akışına gömülü */
.page-hero {
    position: relative;
    background: none;
    color: inherit;
    padding-block: clamp(26px, 3.4vw, 44px) 0;
}

.page-hero::before { content: none; }

.page-hero h1 {
    font-size: clamp(1.7rem, 3.4vw, 2.6rem);
    line-height: 1.15;
}

.page-hero p { margin-top: .7rem; color: var(--ink-3); max-width: 62ch; }

/* Başlıktan hemen sonra gelen bölümün üst boşluğunu daralt */
.page-hero + .section { padding-top: clamp(26px, 3.4vw, 44px); }

/* Kırıntı navigasyon */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .45rem;
    font-size: .8rem;
    color: var(--ink-4);
    margin-bottom: 1rem;
}

.page-hero .breadcrumb { color: var(--ink-4); margin-bottom: .7rem; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb li:not(:last-child)::after { content: '/'; margin-left: .45rem; opacity: .5; }
.breadcrumb li { display: inline-flex; align-items: center; }

/* ---------------------------------------------------------------
   9. Kategori Kartları
   --------------------------------------------------------------- */
.cat-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--surface-3);
    aspect-ratio: 4 / 5;
}

.cat-card--wide { aspect-ratio: 16 / 10; }

.cat-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s var(--ease);
}

.cat-card:hover .cat-card__img { transform: scale(1.05); }

/* Kategori görsellerinin oranı yüklenen dosyaya göre değişebilir. Bu
   varyant, ana görselin tamamını gösterirken boş kalan alanı aynı
   görselin yumuşatılmış bir kopyasıyla doldurur. Galeri kartlarının
   bilinçli "cover" davranışı bu kuraldan etkilenmez. */
.cat-card--fit::before {
    content: '';
    position: absolute;
    inset: -16px;
    background: var(--surface-3) var(--cat-image) center / cover no-repeat;
    filter: blur(14px) saturate(.82);
    opacity: .48;
    transform: scale(1.06);
}

.cat-card--fit .cat-card__img {
    inset: clamp(6px, 1vw, 10px);
    width: calc(100% - clamp(12px, 2vw, 20px));
    height: calc(100% - clamp(12px, 2vw, 20px));
    object-fit: contain;
    object-position: center;
    z-index: 1;
}

.cat-card--fit:hover .cat-card__img {
    transform: none;
    filter: saturate(1.04) contrast(1.01);
}

.cat-card__veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 14, 12, .84) 0%, rgba(10, 14, 12, .25) 45%, rgba(10, 14, 12, 0) 72%);
    z-index: 2;
}

.cat-card__body {
    position: absolute;
    inset: auto 0 0 0;
    padding: clamp(16px, 2.4vw, 26px);
    color: #fff;
    z-index: 3;
}

.cat-card__title {
    font-size: clamp(1.05rem, 1.6vw, 1.32rem);
    font-weight: 650;
    color: #fff;
    letter-spacing: -.015em;
}

.cat-card__meta {
    font-size: .78rem;
    color: rgba(255, 255, 255, .68);
    margin-top: .25rem;
}

.cat-card__go {
    margin-top: .9rem;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .82rem;
    font-weight: 600;
    color: var(--accent);
    opacity: 0;
    transform: translateY(6px);
    transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.cat-card:hover .cat-card__go { opacity: 1; transform: none; }

/* ---------------------------------------------------------------
   10. Ürün Kartı
   --------------------------------------------------------------- */
.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.product-card:hover {
    border-color: var(--line-strong);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.product-card__media {
    position: relative;
    aspect-ratio: 1;
    background: var(--surface-2);
    overflow: hidden;
}

.product-card__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8%;
    transition: transform .6s var(--ease), opacity .3s var(--ease);
}

.product-card:hover .product-card__img { transform: scale(1.06); }

.product-card__img--alt {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.product-card:hover .product-card__img--alt { opacity: 1; }

.product-card__badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: .35rem;
    z-index: 2;
}

.tag {
    display: inline-flex;
    align-items: center;
    padding: .22rem .6rem;
    font-size: .68rem;
    font-weight: 650;
    letter-spacing: .06em;
    text-transform: uppercase;
    border-radius: 2px;
}

.tag--new { background: var(--brand); color: #fff; }
.tag--best { background: var(--accent); color: #1a1405; }
.tag--sale { background: var(--danger); color: #fff; }
.tag--soft { background: var(--surface-3); color: var(--ink-3); }

.product-card__quick {
    position: absolute;
    inset: auto 10px 10px 10px;
    display: flex;
    gap: .4rem;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
    z-index: 2;
}

.product-card:hover .product-card__quick { opacity: 1; transform: none; }

.product-card__body { padding: 1rem 1.05rem 1.15rem; display: flex; flex-direction: column; flex: 1; }

.product-card__code {
    font-family: var(--font-mono);
    font-size: .72rem;
    color: var(--ink-4);
    letter-spacing: .04em;
}

.product-card__title {
    margin-top: .3rem;
    font-size: .98rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8em;
}

.product-card:hover .product-card__title { color: var(--accent-ink); }

.product-card__foot {
    margin-top: auto;
    padding-top: .8rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: .6rem;
}

.price { display: flex; flex-direction: column; line-height: 1.25; }
.price__label { font-size: .68rem; color: var(--ink-4); text-transform: uppercase; letter-spacing: .07em; }
.price__value { font-size: 1.1rem; font-weight: 700; color: var(--ink); letter-spacing: -.02em; }
.price__old { font-size: .82rem; color: var(--ink-4); text-decoration: line-through; }
.price__vat { font-size: .7rem; color: var(--ink-4); }

.price--hidden {
    font-size: .84rem;
    font-weight: 600;
    color: var(--brand);
}

/* Stok göstergesi */
.stock-dot { display: inline-flex; align-items: center; gap: .35rem; font-size: .76rem; }
.stock-dot::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.stock-dot--success { color: var(--success); }
.stock-dot--warning { color: var(--warning); }
.stock-dot--danger { color: var(--danger); }

/* ---------------------------------------------------------------
   11. Ürün Detay
   --------------------------------------------------------------- */
.product-detail { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(24px, 4vw, 60px); align-items: start; }

.gallery__main {
    position: relative;
    background: var(--surface-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    aspect-ratio: 1;
    overflow: hidden;
}

.gallery__main img { width: 100%; height: 100%; object-fit: contain; padding: 6%; }

.gallery__zoom {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .9);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink-2);
}

.gallery__thumbs {
    margin-top: .8rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(78px, 1fr));
    gap: .55rem;
}

.gallery__thumb {
    aspect-ratio: 1;
    background: var(--surface-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    padding: 0;
    transition: border-color var(--dur) var(--ease);
}

.gallery__thumb img { width: 100%; height: 100%; object-fit: contain; padding: 10%; }
.gallery__thumb.is-active { border-color: var(--brand); }

.product-info__code {
    font-family: var(--font-mono);
    font-size: .8rem;
    color: var(--ink-4);
    letter-spacing: .05em;
}

.product-info h1 { margin-top: .5rem; font-size: clamp(1.6rem, 2.8vw, 2.3rem); }

.product-info__lead { margin-top: 1rem; color: var(--ink-3); font-size: 1.02rem; }

.price-box {
    margin-top: 1.6rem;
    padding: 1.3rem 1.4rem;
    background: var(--surface-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.price-box__main {
    display: flex;
    align-items: baseline;
    gap: .8rem;
    flex-wrap: wrap;
}

.price-box__value { font-size: 2rem; font-weight: 720; color: var(--ink); letter-spacing: -.03em; }
.price-box__note { margin-top: .4rem; font-size: .84rem; color: var(--ink-3); }

.price-locked {
    display: flex;
    align-items: center;
    gap: .9rem;
    padding: 1.15rem 1.3rem;
    background: var(--accent-soft);
    border: 1px solid rgba(var(--accent-rgb), .28);
    border-radius: var(--radius);
    margin-top: 1.6rem;
}

.price-locked svg { width: 22px; height: 22px; color: var(--accent-ink); flex: none; }

/* Varyant seçici */
.variant-group { margin-top: 1.5rem; }
.variant-group__label { font-size: .8rem; font-weight: 620; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-4); margin-bottom: .6rem; }
.variant-options { display: flex; flex-wrap: wrap; gap: .5rem; }

.variant-chip {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .5rem .9rem;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    font-size: .85rem;
    background: var(--surface);
    transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}

.variant-chip:hover { border-color: var(--brand); }
.variant-chip.is-active { border-color: var(--accent); background: var(--accent-soft); color: var(--accent-ink); font-weight: 600; }
.variant-chip__swatch { width: 16px; height: 16px; border-radius: 50%; border: 1px solid rgba(0, 0, 0, .12); }

/* Adet + sepet */
.buy-row { margin-top: 1.8rem; display: flex; flex-wrap: wrap; gap: .7rem; align-items: stretch; }

.qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    overflow: hidden;
}

.qty button { width: 42px; height: 100%; min-height: 48px; color: var(--ink-2); font-size: 1.1rem; transition: background var(--dur) var(--ease); }
.qty button:hover { background: var(--surface-2); }
.qty input { width: 62px; text-align: center; border: 0; border-inline: 1px solid var(--line); height: 48px; font-weight: 600; }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* Özellik listesi */
.spec-list { margin-top: 1.6rem; border-top: 1px solid var(--line); }
.spec-list__row { display: grid; grid-template-columns: 190px 1fr; gap: 1rem; padding: .75rem 0; border-bottom: 1px solid var(--line); font-size: .9rem; }
.spec-list__key { color: var(--ink-4); }
.spec-list__val { color: var(--ink); font-weight: 550; }

/* Sekmeler */
.tabs { margin-top: clamp(40px, 5vw, 72px); }
.tabs__nav {
    display: flex;
    gap: .3rem;
    border-bottom: 1px solid var(--line);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.tabs__nav::-webkit-scrollbar { display: none; }

.tabs__btn {
    padding: .9rem 1.3rem;
    font-size: .92rem;
    font-weight: 600;
    color: var(--ink-3);
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.tabs__btn:hover { color: var(--ink); }
.tabs__btn.is-active { color: var(--ink); border-color: var(--accent); }
.tabs__panel { display: none; padding-top: 2rem; }
.tabs__panel.is-active { display: block; animation: fadeUp .4s var(--ease); }

/* ---------------------------------------------------------------
   12. Katalog Yerleşimi (filtre + liste)
   --------------------------------------------------------------- */
.catalog { display: grid; grid-template-columns: 268px 1fr; gap: clamp(20px, 3vw, 44px); align-items: start; }

.filters {
    position: sticky;
    top: calc(var(--header-h) + 20px);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}

.filters__block { padding: 1.1rem 1.2rem; border-bottom: 1px solid var(--line); }
.filters__block:last-child { border-bottom: 0; }

.filters__title {
    font-size: .78rem;
    font-weight: 650;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ink-4);
    margin-bottom: .8rem;
}

.filters__list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .6rem;
    padding: .4rem 0;
    font-size: .9rem;
    color: var(--ink-2);
    transition: color var(--dur) var(--ease), padding-left var(--dur) var(--ease);
}

.filters__list a:hover { color: var(--brand); padding-left: 4px; }
.filters__list a.is-active { color: var(--accent-ink); font-weight: 620; }
.filters__list a span { font-size: .76rem; color: var(--ink-4); }
.filters__list .sub { padding-left: .9rem; font-size: .85rem; }

.catalog__toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 1.1rem;
    margin-bottom: 1.6rem;
    border-bottom: 1px solid var(--line);
}

.catalog__count { font-size: .88rem; color: var(--ink-3); }

.select-lite {
    padding: .55rem 2rem .55rem .8rem;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    background: var(--surface) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B757E' stroke-width='2.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right .7rem center;
    appearance: none;
    font-size: .87rem;
    cursor: pointer;
}

.filters-toggle { display: none; }

/* ---------------------------------------------------------------
   13. Formlar
   --------------------------------------------------------------- */
.form-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.1rem; }
.col-12 { grid-column: span 12; }
.col-8 { grid-column: span 8; }
.col-6 { grid-column: span 6; }
.col-4 { grid-column: span 4; }
.col-3 { grid-column: span 3; }

.field { display: flex; flex-direction: column; gap: .4rem; }

.field__label { font-size: .85rem; font-weight: 600; color: var(--ink); }
.field__label .req { color: var(--danger); }
.field__hint { font-size: .78rem; color: var(--ink-4); }

.input, .textarea, .select {
    width: 100%;
    padding: .78rem .95rem;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    background: var(--surface);
    font-size: .92rem;
    color: var(--ink);
    transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.input:hover, .textarea:hover, .select:hover { border-color: var(--ink-4); }

.input:focus, .textarea:focus, .select:focus {
    outline: 0;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(var(--brand-rgb), .12);
}

.input::placeholder, .textarea::placeholder { color: var(--ink-4); }
.textarea { resize: vertical; min-height: 120px; }

.select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B757E' stroke-width='2.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right .9rem center;
    padding-right: 2.4rem;
}

.field.has-error .input, .field.has-error .textarea, .field.has-error .select { border-color: var(--danger); }
.form-error { font-size: .78rem; color: var(--danger); }

.check { display: flex; align-items: flex-start; gap: .6rem; font-size: .87rem; cursor: pointer; }
.check input { margin-top: .2rem; width: 17px; height: 17px; accent-color: var(--brand); flex: none; }

/* ---------------------------------------------------------------
   14. Uyarı Kutuları & Rozetler
   --------------------------------------------------------------- */
.alert {
    display: flex;
    align-items: flex-start;
    gap: .8rem;
    padding: .95rem 1.15rem;
    border-radius: var(--radius);
    border: 1px solid;
    font-size: .9rem;
    margin-bottom: 1rem;
}

.alert svg { width: 20px; height: 20px; flex: none; margin-top: 1px; }
.alert--success { background: #EDF7F1; border-color: #BEE3CD; color: #14624A; }
.alert--error   { background: #FCEFEC; border-color: #F3C7BC; color: #9B2C16; }
.alert--warning { background: #FDF5E7; border-color: #F2DDB0; color: #8A5A0B; }
.alert--info    { background: #EDF4F8; border-color: #C2DAE7; color: #1A4C64; }

.badge {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    padding: .25rem .65rem;
    font-size: .74rem;
    font-weight: 620;
    border-radius: var(--radius-pill);
    white-space: nowrap;
}

.badge--success { background: #E4F4EB; color: #14624A; }
.badge--warning { background: #FBF1DE; color: #8A5A0B; }
.badge--danger  { background: #FBE8E3; color: #9B2C16; }
.badge--info    { background: #E6F0F6; color: #1A4C64; }
.badge--primary { background: var(--accent-soft); color: var(--accent-ink); }
.badge--purple  { background: #F0EAF9; color: #58399B; }
.badge--teal    { background: #E2F4F3; color: #16635E; }
.badge--muted   { background: var(--surface-3); color: var(--ink-3); }

/* ---------------------------------------------------------------
   15. İstatistik Şeridi
   --------------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255, 255, 255, .14); }

.stat { background: var(--brand); padding: clamp(24px, 3.5vw, 42px) clamp(16px, 2vw, 28px); text-align: center; }
.stat__value { font-size: clamp(2rem, 3.6vw, 3rem); font-weight: 730; color: #fff; letter-spacing: -.04em; line-height: 1; }
.stat__value sup { font-size: .5em; color: var(--accent); }
.stat__label { margin-top: .55rem; font-size: .84rem; color: rgba(255, 255, 255, .72); }

/* ---------------------------------------------------------------
   16. Süreç / Özellik Kartları
   --------------------------------------------------------------- */
.feature {
    position: relative;
    overflow: hidden;
    padding: clamp(22px, 2.8vw, 34px);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

/* Üstte hover'da beliren vurgu şeridi */
.feature::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s var(--ease);
}

.feature:hover::before { transform: scaleX(1); }

.feature:hover {
    border-color: var(--line-strong);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg, var(--shadow));
}

.feature__icon {
    position: relative;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    background: var(--brand);
    border: 1px solid var(--brand);
    color: var(--accent);
    border-radius: 14px;
    margin-bottom: 1.15rem;
    transition: background var(--dur) var(--ease), color var(--dur) var(--ease), transform var(--dur) var(--ease);
}

/* Simgenin arkasındaki yumuşak hâle */
.feature__icon::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 18px;
    background: var(--accent-soft);
    z-index: -1;
    opacity: 0;
    transition: opacity var(--dur) var(--ease);
}

.feature:hover .feature__icon {
    background: var(--accent);
    border-color: var(--accent);
    color: #1a1405;
    transform: rotate(-4deg) scale(1.04);
}

.feature:hover .feature__icon::after { opacity: 1; }

.feature__icon svg { width: 25px; height: 25px; }

.feature h3 {
    font-size: 1.08rem;
    margin-bottom: .55rem;
    letter-spacing: -.01em;
    padding-bottom: .55rem;
    border-bottom: 1px solid var(--line);
}

.feature p { font-size: .92rem; color: var(--ink-3); line-height: 1.7; }

/* Koyu zeminde kullanılan varyant (ör. Hakkımızda sayfasındaki randevu kartı) */
.feature--invert .feature__icon {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .18);
    color: #fff;
}

.feature--invert::before { display: none; }

.process {
    counter-reset: step;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(12px, 1.4vw, 20px);
    position: relative;
}

/* Adımları birbirine bağlayan ray — rozet merkezlerinden geçer */
.process::before {
    content: '';
    position: absolute;
    top: calc(clamp(20px, 2.2vw, 28px) + 23px);
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-soft), var(--accent) 18%, var(--accent) 82%, var(--accent-soft));
    opacity: .5;
    z-index: 0;
}

.process__item {
    counter-increment: step;
    position: relative;
    z-index: 1;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(20px, 2.2vw, 28px) clamp(16px, 1.8vw, 24px) clamp(22px, 2.4vw, 30px);
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.process__item:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: var(--shadow);
}

/* Numara rozeti */
.process__num {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 1rem;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    font-family: var(--font-mono);
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: .02em;
    box-shadow: 0 0 0 6px var(--surface);
    transition: background var(--dur) var(--ease);
}

.process__item:hover .process__num { background: var(--accent); color: #1a1405; }

.process__icon {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    margin-bottom: .7rem;
    border-radius: var(--radius-sm, 8px);
    background: var(--accent-soft);
    color: var(--accent-ink);
}

.process__icon svg { width: 18px; height: 18px; }

.process__item h4 { font-size: 1.02rem; letter-spacing: -.01em; }
.process__item p { margin-top: .45rem; font-size: .86rem; color: var(--ink-3); line-height: 1.65; }

/* ---------------------------------------------------------------
   17. Referanslar
   --------------------------------------------------------------- */
.references-strip { padding-block: clamp(34px, 4vw, 54px); }
.references-strip__head { margin-bottom: clamp(18px, 2.4vw, 28px); }
.references-strip__head .eyebrow { margin-bottom: .65rem; }
.references-strip__head h2 { font-size: clamp(1.55rem, 2.5vw, 2.15rem); }
.references-strip__action { margin-top: clamp(20px, 2.4vw, 30px); }

.logo-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1px;
}

.logo-grid__item {
    background: var(--surface);
    min-height: 94px;
    display: grid;
    place-items: center;
    padding: .85rem 1rem;
    border: 1px solid var(--line);
    transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.logo-grid__item:hover { background: var(--surface-2); border-color: var(--line-strong); }

.logo-grid__item img {
    display: block;
    width: min(100%, 138px);
    max-height: 48px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: .64;
    transition: filter var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

.logo-grid__item:hover img { filter: none; opacity: 1; }

.logo-grid__name {
    color: var(--ink-3);
    font-size: .76rem;
    font-weight: 600;
    line-height: 1.45;
    text-align: center;
    text-wrap: balance;
}

/* Referans liste sayfası */
.references-hero .eyebrow { margin: .45rem 0 .55rem; }

.reference-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-top: clamp(20px, 3vw, 32px);
}

.reference-summary > div {
    display: flex;
    align-items: baseline;
    gap: .45rem;
    padding-right: clamp(18px, 3vw, 34px);
    margin-right: clamp(18px, 3vw, 34px);
    border-right: 1px solid var(--line);
}

.reference-summary > div:last-child { padding-right: 0; margin-right: 0; border-right: 0; }
.reference-summary dt { color: var(--brand); font-size: 1.35rem; font-weight: 740; letter-spacing: -.03em; }
.reference-summary dd { color: var(--ink-3); font-size: .82rem; }

.reference-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 2.2vw, 28px);
}

.reference-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.reference-card:hover {
    border-color: var(--line-strong);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.reference-card__visual {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 118px;
    padding: 1.4rem;
    overflow: hidden;
    background: var(--surface-2);
    border-bottom: 1px solid var(--line);
}

.reference-card__visual > img {
    display: block;
    width: min(78%, 190px);
    height: 70px;
    object-fit: contain;
}

.reference-card__visual--photo { aspect-ratio: 16 / 8; padding: 0; }
.reference-card__visual--photo > img { width: 100%; height: 100%; object-fit: cover; }

.reference-card__placeholder { color: var(--brand); opacity: .16; }
.reference-card__placeholder svg { width: 58px; height: 58px; }
.reference-card__initial {
    position: absolute;
    color: var(--brand);
    font-size: 1.55rem;
    font-weight: 760;
}

.reference-card__body { display: flex; flex: 1; flex-direction: column; padding: 1.25rem 1.3rem 1.4rem; }
.reference-card__body h2 { font-size: 1.02rem; line-height: 1.4; }
.reference-card__body > p { margin-top: .8rem; color: var(--ink-3); font-size: .86rem; line-height: 1.7; }

.reference-card__meta { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: .65rem; }
.reference-card__meta li {
    padding: .2rem .52rem;
    border-radius: 999px;
    background: var(--surface-2);
    color: var(--ink-3);
    font-size: .7rem;
    line-height: 1.4;
}

@media (max-width: 980px) {
    .logo-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .reference-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
    .logo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .logo-grid__item { min-height: 82px; padding: .7rem; }
    .references-strip__action .btn { width: auto; }
    .reference-list { grid-template-columns: minmax(0, 1fr); }
    .reference-summary { row-gap: .65rem; }
    .reference-summary > div { flex: 1 1 auto; }
    .reference-summary dd { max-width: 10ch; }
}

/* ---------------------------------------------------------------
   18. CTA Şeridi
   --------------------------------------------------------------- */
.cta {
    position: relative;
    background: var(--ink);
    color: #fff;
    padding-block: clamp(48px, 6vw, 84px);
    overflow: hidden;
}

.cta::after {
    content: '';
    position: absolute;
    right: -10%;
    top: -40%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(var(--accent-rgb), .18), transparent 68%);
}

.cta__inner { position: relative; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 2rem; }
.cta h2 { color: #fff; max-width: 22ch; }
.cta p { color: rgba(255, 255, 255, .7); margin-top: .7rem; max-width: 52ch; }

/* ---------------------------------------------------------------
   19. Sayfalama
   --------------------------------------------------------------- */
.pagination { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .35rem; margin-top: 3rem; }

.page-link {
    min-width: 42px;
    height: 42px;
    padding: 0 .7rem;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-size: .88rem;
    font-weight: 550;
    color: var(--ink-2);
    transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
}

.page-link:hover { border-color: var(--brand); color: var(--brand); }
.page-link.is-active { background: var(--brand); border-color: var(--brand); color: #fff; }
.page-link.is-disabled { opacity: .35; pointer-events: none; }
.page-dots { padding: 0 .4rem; color: var(--ink-4); }

/* ---------------------------------------------------------------
   20. Tablolar
   --------------------------------------------------------------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); -webkit-overflow-scrolling: touch; }
.table-wrap--plain { border: 0; border-radius: 0; }

.table { font-size: .9rem; min-width: 620px; }
.table--auto { min-width: 0; }
.table th, .table td { padding: .8rem 1rem; text-align: left; border-bottom: 1px solid var(--line); }
.table th { background: var(--surface-2); font-weight: 620; font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-4); }
.table tbody tr:last-child td { border-bottom: 0; }
.table tbody tr:hover { background: var(--surface-2); }
.table .right { text-align: right; }
.table .center { text-align: center; }

/* ---------------------------------------------------------------
   21. Akordiyon (SSS)
   --------------------------------------------------------------- */
.accordion { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.accordion__item + .accordion__item { border-top: 1px solid var(--line); }

.accordion__head {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.3rem;
    text-align: left;
    font-size: .98rem;
    font-weight: 600;
    color: var(--ink);
    background: var(--surface);
    transition: background var(--dur) var(--ease);
}

.accordion__head:hover { background: var(--surface-2); }
.accordion__head svg { width: 18px; height: 18px; flex: none; color: var(--ink-4); transition: transform var(--dur) var(--ease); }
.accordion__item.is-open .accordion__head svg { transform: rotate(45deg); color: var(--brand); }

.accordion__body { display: none; padding: 0 1.3rem 1.3rem; color: var(--ink-3); font-size: .93rem; line-height: 1.75; }
.accordion__item.is-open .accordion__body { display: block; animation: fadeUp .3s var(--ease); }

/* Açık soruyu sol kenardan vurgula */
.accordion__item.is-open { box-shadow: inset 3px 0 0 var(--accent); }
.accordion__item.is-open .accordion__head { background: var(--accent-soft); color: var(--accent-ink); }
.accordion__item.is-open .accordion__head svg { color: var(--accent-ink); }

/* ---- S.S.S. sayfası ---- */
.faq-group + .faq-group { margin-top: clamp(28px, 3.4vw, 44px); }

.faq-group__title {
    display: flex;
    align-items: center;
    gap: .7rem;
    font-size: 1.15rem;
    margin-bottom: 1rem;
    scroll-margin-top: calc(var(--header-h) + 20px);
}

.faq-group__icon {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    flex: none;
    border-radius: 10px;
    background: var(--brand);
    color: var(--accent);
}

.faq-group__icon svg { width: 18px; height: 18px; }

.faq-group__count {
    font-size: .74rem;
    font-weight: 650;
    color: var(--ink-4);
    background: var(--surface-2);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: .1rem .5rem;
}

.faq-aside { position: sticky; top: calc(var(--header-h) + 20px); }

.faq-nav li + li { margin-top: .1rem; }

.faq-nav a {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .55rem .1rem;
    font-size: .89rem;
    color: var(--ink-2);
    border-bottom: 1px solid var(--line);
    transition: color var(--dur) var(--ease);
}

.faq-nav li:last-child a { border-bottom: 0; }
.faq-nav a:hover { color: var(--accent-ink); }
.faq-nav a svg { width: 16px; height: 16px; flex: none; color: var(--ink-4); }
.faq-nav a:hover svg { color: var(--accent-ink); }
.faq-nav a > span:first-of-type { flex: 1; min-width: 0; }
.faq-nav__count { font-size: .76rem; color: var(--ink-4); }

/* ---------------------------------------------------------------
   22. Sipariş Takip Zaman Çizelgesi
   --------------------------------------------------------------- */
.timeline { position: relative; padding-left: 2.2rem; }

.timeline::before {
    content: '';
    position: absolute;
    left: 9px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: var(--line);
}

.timeline__item { position: relative; padding-bottom: 1.6rem; }

.timeline__item::before {
    content: '';
    position: absolute;
    left: -2.2rem;
    top: 4px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--surface);
    border: 2px solid var(--line-strong);
}

.timeline__item.is-done::before { background: var(--brand); border-color: var(--brand); }
.timeline__item.is-current::before { border-color: var(--accent); background: var(--accent); box-shadow: 0 0 0 4px rgba(201, 162, 39, .2); }

.timeline__title { font-weight: 620; color: var(--ink); font-size: .96rem; }
.timeline__meta { font-size: .8rem; color: var(--ink-4); margin-top: .15rem; }
.timeline__note { font-size: .87rem; color: var(--ink-3); margin-top: .35rem; }

/* Takip adımları (yatay) */
.track-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: .5rem; margin-block: 2rem; }

.track-step { text-align: center; position: relative; }

.track-step::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: var(--line);
    z-index: 0;
}

.track-step:last-child::before { display: none; }

.track-step__dot {
    position: relative;
    z-index: 1;
    width: 38px;
    height: 38px;
    margin-inline: auto;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--surface);
    border: 2px solid var(--line-strong);
    color: var(--ink-4);
}

.track-step.is-done .track-step__dot { background: var(--brand); border-color: var(--brand); color: #fff; }
.track-step.is-done::before { background: var(--brand); }
.track-step__label { margin-top: .55rem; font-size: .78rem; color: var(--ink-3); }
.track-step.is-done .track-step__label { color: var(--ink); font-weight: 600; }

/* ---------------------------------------------------------------
   23. Alt Bilgi (Footer)
   --------------------------------------------------------------- */
.footer { background: var(--ink); color: rgba(255, 255, 255, .62); font-size: .9rem; }

.footer__top { padding-block: clamp(44px, 5.5vw, 76px); }

.footer__grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
    gap: clamp(24px, 3vw, 48px);
}

.footer h4 {
    color: #fff;
    font-size: .82rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}

.footer__links li + li { margin-top: .55rem; }
.footer__links a { transition: color var(--dur) var(--ease), padding-left var(--dur) var(--ease); }
.footer__links a:hover { color: var(--accent); padding-left: 4px; }

.footer__brand { max-width: 34ch; }
.footer__brand .logo__name { color: #fff; }

/* Altbilgi logosu */
.footer__logo { display: inline-block; }
.footer__logo img { display: block; height: 54px; width: auto; max-width: 240px; object-fit: contain; }

/* Koyu zemin logosu yoksa açık levha: logo her koşulda net okunur */
.footer__logo--plate {
    background: #fff;
    padding: 10px 14px;
    border-radius: 8px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, .08);
}
.footer__brand p { margin-top: 1rem; }

.footer__contact li { display: flex; gap: .7rem; margin-bottom: .85rem; }
.footer__contact svg { width: 17px; height: 17px; color: var(--accent); flex: none; margin-top: 3px; }
.footer__contact a:hover { color: #fff; }

.social { display: flex; gap: .5rem; margin-top: 1.4rem; }

.social a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: var(--radius);
    transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}

.social a:hover { background: var(--accent); border-color: var(--accent); color: #1a1405; }
.social svg { width: 17px; height: 17px; }

.newsletter { display: flex; gap: .5rem; margin-top: 1rem; }

.newsletter input {
    flex: 1;
    padding: .72rem .9rem;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: var(--radius);
    color: #fff;
    font-size: .87rem;
}

.newsletter input::placeholder { color: rgba(255, 255, 255, .42); }
.newsletter input:focus { outline: 0; border-color: var(--accent); }

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-block: 1.3rem;
    font-size: .82rem;
}

.footer__bottom .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
.footer__legal { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.footer__legal a:hover { color: #fff; }

/* Ziyaretçi sayacı */
.footer__counter {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .28rem .7rem;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
    color: rgba(255, 255, 255, .55);
    font-size: .78rem;
    white-space: nowrap;
}

.footer__counter b { color: rgba(255, 255, 255, .88); font-weight: 700; }
.footer__counter svg { width: 14px; height: 14px; opacity: .7; }
.footer__counter-sep { opacity: .4; }

.footer__credit { color: rgba(255, 255, 255, .45); }
.footer__credit a { color: rgba(255, 255, 255, .7); font-weight: 600; letter-spacing: .02em; }
.footer__credit a:hover { color: var(--accent); }

/* ---------------------------------------------------------------
   24. Yüzen Aksiyonlar
   --------------------------------------------------------------- */
.floating { position: fixed; right: 20px; bottom: 20px; z-index: 90; display: flex; flex-direction: column; gap: .6rem; }

.floating__btn {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    box-shadow: var(--shadow-lg);
    transition: transform var(--dur) var(--ease), background var(--dur) var(--ease);
}

.floating__btn:hover { transform: scale(1.06); }
.floating__btn--wa { background: #25D366; }
.floating__btn--top { background: var(--ink); opacity: 0; pointer-events: none; }
.floating__btn--top.is-visible { opacity: 1; pointer-events: auto; }
.floating__btn svg { width: 24px; height: 24px; }

/* Çerez bildirimi */
.cookie {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 95;
    max-width: 400px;
    padding: 1.2rem 1.35rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    font-size: .86rem;
}

.cookie__actions { display: flex; gap: .5rem; margin-top: .9rem; }

/* ---------------------------------------------------------------
   25. Boş Durum
   --------------------------------------------------------------- */
.empty { text-align: center; padding: clamp(40px, 7vw, 90px) 1rem; }
.empty svg { width: 56px; height: 56px; color: var(--ink-4); margin-inline: auto; margin-bottom: 1.2rem; }
.empty h3 { margin-bottom: .5rem; }
.empty p { color: var(--ink-3); max-width: 46ch; margin-inline: auto; }
.empty .btn { margin-top: 1.6rem; }

/* ---------------------------------------------------------------
   26. Zengin Metin
   --------------------------------------------------------------- */
.prose { font-size: 1rem; color: var(--ink-2); line-height: 1.8; }
.prose > * + * { margin-top: 1.15rem; }
.prose h2 { margin-top: 2.4rem; font-size: 1.6rem; }
.prose h3 { margin-top: 2rem; font-size: 1.25rem; }
.prose ul, .prose ol { padding-left: 1.4rem; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li + li { margin-top: .4rem; }
.prose a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }
.prose img { border-radius: var(--radius); margin-block: 1.6rem; }
.prose blockquote {
    border-left: 3px solid var(--accent);
    padding-left: 1.3rem;
    font-size: 1.08rem;
    color: var(--ink);
    font-style: italic;
}
.prose table { margin-block: 1.6rem; font-size: .92rem; }
.prose th, .prose td { padding: .7rem .9rem; border: 1px solid var(--line); }
.prose th { background: var(--surface-2); }

/* Uzun tablolar dar ekranda yatay kaysın */
.prose table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ---------------------------------------------------------------
   26b. İletişim Sayfası
   --------------------------------------------------------------- */
.contact-bar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    overflow: hidden;
}

.contact-bar__item {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    padding: 1.15rem 1.25rem;
    border-right: 1px solid var(--line);
    min-width: 0;
    transition: background var(--dur) var(--ease);
}

.contact-bar__item:last-child { border-right: 0; }
a.contact-bar__item:hover { background: var(--surface-2); }

.contact-bar__icon {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    flex: none;
    border-radius: var(--radius-sm, 8px);
    background: var(--accent-soft);
    color: var(--accent-ink);
}

.contact-bar__icon svg { width: 17px; height: 17px; }

.contact-bar__label {
    display: block;
    font-size: .7rem;
    font-weight: 650;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ink-4);
}

.contact-bar__value {
    display: block;
    margin-top: .18rem;
    font-size: .9rem;
    font-weight: 550;
    color: var(--ink);
    line-height: 1.45;
}

.contact-bar__sub { display: block; font-size: .85rem; color: var(--ink-3); }

.contact-main { padding-top: clamp(24px, 3vw, 40px); }

.contact-form {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(20px, 2.6vw, 32px);
}

.contact-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.25rem 1.35rem;
}

.contact-card--muted { background: var(--surface-2); }

.contact-card__title {
    display: flex;
    align-items: center;
    gap: .55rem;
    font-size: .95rem;
    font-weight: 650;
    color: var(--ink);
    margin-bottom: .9rem;
}

.contact-card__title svg { width: 17px; height: 17px; color: var(--accent-ink); }

.dept__row {
    display: flex;
    flex-direction: column;
    gap: .15rem;
    padding: .7rem 0;
    border-bottom: 1px solid var(--line);
}

.dept__row:last-child { border-bottom: 0; padding-bottom: 0; }
.dept__row:first-child { padding-top: 0; }

.dept__name { font-size: .85rem; font-weight: 600; color: var(--ink); }

.dept__links {
    display: flex;
    flex-wrap: wrap;
    gap: .2rem .9rem;
    font-size: .84rem;
    color: var(--ink-3);
}

.dept__links a { color: var(--ink-3); }
.dept__links a:hover { color: var(--accent-ink); text-decoration: underline; }

.bank-row {
    padding: .6rem 0;
    border-bottom: 1px solid var(--line);
}

.bank-row:last-of-type { border-bottom: 0; }
.bank-row__name { display: block; font-size: .84rem; font-weight: 600; color: var(--ink); }
.bank-row__iban { display: block; font-size: .82rem; color: var(--ink-3); word-break: break-all; }

.legal-list { display: grid; grid-template-columns: auto; gap: .1rem; }
.legal-list dt { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-4); font-weight: 650; }
.legal-list dt + dd { margin-bottom: .75rem; }
.legal-list dd { font-size: .87rem; color: var(--ink); }
.legal-list dd:last-child { margin-bottom: 0; }

/* ---------------------------------------------------------------
   26c. Hizmet Bölgeleri
   --------------------------------------------------------------- */
.region-featured { gap: clamp(12px, 1.4vw, 18px); }

.region-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.2rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.region-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* Plaka rozeti */
.region-card__plate {
    display: grid;
    place-items: center;
    width: 52px;
    height: 40px;
    flex: none;
    border-radius: 6px;
    background: var(--brand);
    color: #fff;
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .02em;
    box-shadow: inset 4px 0 0 var(--accent);
}

.region-card__body { flex: 1; min-width: 0; }
.region-card__name { display: block; font-size: 1.02rem; font-weight: 620; color: var(--ink); }
.region-card__meta { display: block; margin-top: .1rem; font-size: .8rem; color: var(--ink-4); }

.region-card__go {
    flex: none;
    color: var(--ink-4);
    transition: color var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.region-card__go svg { width: 18px; height: 18px; }
.region-card:hover .region-card__go { color: var(--accent-ink); transform: translateX(3px); }

/* Arama kutusu */
.region-search { position: relative; display: block; width: min(280px, 100%); }

.region-search svg {
    position: absolute;
    left: .8rem;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: var(--ink-4);
    pointer-events: none;
}

.region-search input {
    width: 100%;
    padding: .65rem .9rem .65rem 2.4rem;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    background: var(--surface);
    font-size: .89rem;
}

.region-search input:focus {
    outline: 0;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(var(--brand-rgb), .12);
}

/* Bölge grupları */
.region-group + .region-group { margin-top: clamp(24px, 2.8vw, 36px); }

.region-group__title {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .82rem;
    font-weight: 650;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ink-4);
    padding-bottom: .6rem;
    margin-bottom: .9rem;
    border-bottom: 1px solid var(--line);
}

.region-group__count {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    color: var(--accent-ink);
    background: var(--accent-soft);
    border-radius: 999px;
    padding: .1rem .55rem;
}

.region-chips { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: .5rem; }
.region-chips--wide { grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); }

.region-chip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    padding: .6rem .5rem .6rem .85rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-size: .88rem;
    color: var(--ink-2);
    transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
}

.region-chip--surface { background: var(--surface); }

.region-chip:hover {
    border-color: var(--accent);
    background: var(--accent-soft);
    color: var(--accent-ink);
}

.region-chip__name { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.region-chip__code {
    flex: none;
    font-family: var(--font-mono);
    font-size: .72rem;
    color: var(--ink-4);
    background: var(--surface-2);
    border-radius: 4px;
    padding: .1rem .35rem;
}

.region-chip:hover .region-chip__code { background: #fff; color: var(--accent-ink); }

.region-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    padding: 2.5rem 1rem;
    color: var(--ink-4);
    font-size: .92rem;
}

.region-empty svg { width: 18px; height: 18px; }

.contact-map { line-height: 0; filter: grayscale(.35); }
.contact-map iframe { width: 100%; height: clamp(260px, 38vw, 420px); border: 0; display: block; }

/* ---------------------------------------------------------------
   27. Yardımcılar & Animasyon
   --------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

.divider { height: 1px; background: var(--line); border: 0; margin-block: 2rem; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
    .reveal { opacity: 1; transform: none; }
}

/* ---------------------------------------------------------------
   28. Duyarlı Tasarım
   --------------------------------------------------------------- */
@media (max-width: 1100px) {
    .megamenu { grid-template-columns: repeat(3, 1fr); }
    .footer__grid { grid-template-columns: 1.4fr 1fr 1.2fr; }
    .footer__grid > :nth-child(3) { display: none; }
    .process { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .process::before { display: none; }

    /* Başlık satırı 980–1100px arasında sıkışıyor: boşlukları daralt */
    .header__inner { gap: 1rem; }
    .nav { gap: .1rem; }
    .nav__link { padding-inline: .6rem; font-size: .88rem; }
    .logo__svg { width: 160px; }
    .logo img { height: 58px; max-width: 230px; }
}

@media (max-width: 980px) {
    :root { --header-h: var(--header-h-sm); }
    /* Başlık alçalır; logo da orantılı küçülür */
    .logo img { height: 48px; max-width: 200px; }

    .topbar { display: none; }
    .nav { display: none; }
    .burger { display: inline-flex; }

    .catalog { grid-template-columns: minmax(0, 1fr); }
    .catalog__toolbar > *, .catalog__toolbar .flex > * { min-width: 0; }
    .catalog__toolbar .flex { flex-wrap: wrap; }
    .catalog__toolbar form { flex: 1 1 180px; }
    .select-lite { max-width: 100%; width: 100%; }
    .filters { position: static; display: none; }
    .filters.is-open { display: block; }
    .filters-toggle { display: inline-flex; }

    .product-detail { grid-template-columns: 1fr; }
    .grid--4 { grid-template-columns: repeat(2, 1fr); }
    .grid--3 { grid-template-columns: repeat(2, 1fr); }
    .stats { grid-template-columns: repeat(2, 1fr); }
    .spec-list__row { grid-template-columns: 140px 1fr; }

    /* İçerik + yan sütun düzenleri tek sütuna iner */
    .grid--split,
    .grid--split-alt,
    .grid--even,
    .grid--aside,
    .grid--form { grid-template-columns: minmax(0, 1fr); }

    .contact-bar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .contact-bar__item:nth-child(2n) { border-right: 0; }
    .contact-bar__item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }

    /* Yan sütun tek sütuna inince yapışkanlık anlamsızlaşır */
    .faq-aside { position: static; }
}

@media (max-width: 860px) {
    /* Başlıktaki "Teklif Al" mobil menüde zaten var */
    .header__cta { display: none; }
    .header__inner { gap: .75rem; }
}

@media (max-width: 720px) {
    body { font-size: 15px; }

    .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
    /* Ürün kartları telefonda da iki sütun kalır */
    .grid--cards { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
    .grid--cards .product-card__body { padding: .75rem .8rem .85rem; }
    .grid--cards .product-card__title { font-size: .88rem; }
    .grid--cards .product-card__foot { flex-direction: column; align-items: stretch; gap: .5rem; }
    .grid--cards .product-card__foot .btn { width: 100%; justify-content: center; }
    .grid--cards .product-card__quick { display: none; }

    /* Kategori kartları da iki sütun; ilk kart tam genişlik */
    .grid--cats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
    .grid--cats .cat-card { aspect-ratio: 3 / 4; }
    .grid--cats .cat-card--wide { grid-column: 1 / -1; aspect-ratio: 16 / 10; }
    .grid--auto { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
    .process { grid-template-columns: minmax(0, 1fr); gap: 10px; }
    .process::before { display: none; }
    .process__item { display: grid; grid-template-columns: 46px 1fr; column-gap: 1rem; align-items: start; }
    .process__num { margin-bottom: 0; grid-row: 1 / span 3; }
    .process__icon { display: none; }
    .footer__grid { grid-template-columns: 1fr; }
    .footer__grid > :nth-child(3) { display: block; }
    .track-steps { grid-template-columns: 1fr; gap: 1rem; }
    .track-step::before { display: none; }
    .track-step { display: flex; align-items: center; gap: .9rem; text-align: left; }
    .track-step__dot { margin: 0; }
    .track-step__label { margin-top: 0; }
    .spec-list__row { grid-template-columns: 1fr; gap: .2rem; }

    .contact-bar { grid-template-columns: minmax(0, 1fr); }
    .contact-bar__item { border-right: 0; border-bottom: 1px solid var(--line); }
    .contact-bar__item:last-child { border-bottom: 0; }

    /* Tablolar yatay kaysın */
    .table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; white-space: nowrap; min-width: 0; }
    .hero__arrow { display: none; }
    .cookie { left: 12px; right: 12px; max-width: none; bottom: 12px; }
    .form-grid { grid-template-columns: minmax(0, 1fr); }
    .col-12, .col-8, .col-6, .col-4, .col-3 { grid-column: span 1; min-width: 0; }
    .field { min-width: 0; }
    /* Formlardaki düğmeler tam genişlik; satır içi düğmeler kendi boyunda kalır */
    .btn { width: 100%; }
    .flex > .btn,
    .flex-center > .btn,
    .flex-between > .btn,
    .header__actions .btn,
    .product-card__foot .btn,
    .pagination .btn,
    td .btn, th .btn { width: auto; }
    .hero__actions .btn { width: auto; flex: 1 1 auto; }
}

@media (max-width: 460px) {
    .grid--auto { grid-template-columns: 1fr; }
    .stats { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------
   29. Yazdırma
   --------------------------------------------------------------- */
@media print {
    .site-header, .topbar, .footer, .floating, .cookie, .btn, .breadcrumb { display: none !important; }
    body { background: #fff; color: #000; font-size: 12pt; }
    .container { max-width: none; padding: 0; }
    .section { padding-block: 0; }
    a[href]::after { content: ''; }
}

/* ====================================================================
   Galeri videoları
   ==================================================================== */
.gallery-video {
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
    background: #0E1113;
    border: 1px solid var(--line);
}

.gallery-video video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #0E1113;
}

.gallery-video figcaption {
    padding: .55rem .75rem;
    font-size: .82rem;
    color: var(--ink-2);
    background: var(--surface);
}

/* ====================================================================
   Hakkımızda — görsel kahraman ve mozaik şerit
   ==================================================================== */
.about-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #0E1113;
}

.about-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroZoom 16s var(--ease) forwards;
}

/* Alt tarafa doğru koyulaşan perde: başlık her görselde okunur kalır */
.about-hero__veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(14,17,19,.25) 0%, rgba(14,17,19,.55) 45%, rgba(14,17,19,.88) 100%);
}

.about-hero__inner { position: relative; padding-block: 3.2rem 2.6rem; color: #fff; }

.about-hero__title {
    font-size: clamp(2rem, 4.6vw, 3.4rem);
    line-height: 1.08;
    letter-spacing: -.03em;
    margin: .4rem 0 0;
    color: #fff;
}

.about-hero__sub {
    max-width: 62ch;
    margin-top: .7rem;
    font-size: 1.05rem;
    color: rgba(255,255,255,.82);
}

.about-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem .9rem;
    margin-top: 1.4rem;
}

.about-hero__meta span {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .35rem .8rem;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    font-size: .8rem;
    color: rgba(255,255,255,.9);
    backdrop-filter: blur(4px);
}

.about-hero__meta svg { width: 15px; height: 15px; color: var(--accent); }

.breadcrumb--light a,
.breadcrumb--light li { color: rgba(255,255,255,.72); }
.breadcrumb--light a:hover { color: #fff; }

/* ---- Mozaik ---- */
.mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 165px;
    gap: .7rem;
}

.mosaic__item {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--surface-2);
}

.mosaic__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s var(--ease);
}

.mosaic__item:hover img { transform: scale(1.06); }

.mosaic__item figcaption {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: .9rem .8rem .6rem;
    font-size: .78rem;
    color: #fff;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.72) 100%);
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .3s var(--ease), transform .3s var(--ease);
}

.mosaic__item:hover figcaption { opacity: 1; transform: none; }

/* İlk kare büyük, kalanlar çevresine dizilir */
.mosaic__item--1 { grid-column: span 2; grid-row: span 2; }
.mosaic__item--6 { grid-column: span 2; }

@media (max-width: 900px) {
    .mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
    .mosaic__item--1 { grid-column: span 2; grid-row: span 2; }
    .mosaic__item--6 { grid-column: span 2; }
    .about-hero { min-height: 340px; }
}

@media (max-width: 520px) {
    .mosaic { grid-template-columns: 1fr 1fr; grid-auto-rows: 120px; }
    .mosaic__item figcaption { opacity: 1; transform: none; font-size: .72rem; }
}

/* ====================================================================
   Bayi paneli giriş ekranı
   ==================================================================== */
.auth { padding-block: clamp(2rem, 5vw, 4.5rem); background: var(--surface-2); }

.auth__card {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    max-width: 1000px;
    margin-inline: auto;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: calc(var(--radius) * 1.5);
    overflow: hidden;
    box-shadow: 0 24px 60px -28px rgba(14, 17, 19, .35);
}

/* ---- Sol tanıtım şeridi ---- */
.auth__aside {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
    padding: clamp(1.8rem, 3.4vw, 3rem);
    background: linear-gradient(160deg, #14181B 0%, #1F262B 100%);
    color: rgba(255, 255, 255, .74);
}

/* Köşeye yerleşen ince marka izi */
.auth__aside::after {
    content: '';
    position: absolute;
    right: -70px; bottom: -70px;
    width: 240px; height: 240px;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 50%;
    pointer-events: none;
}

.auth__eyebrow {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--accent);
}

.auth__lead {
    margin: .7rem 0 0;
    font-size: clamp(1.3rem, 2.3vw, 1.75rem);
    line-height: 1.25;
    letter-spacing: -.02em;
    color: #fff;
}

.auth__desc { margin-top: .9rem; font-size: .92rem; line-height: 1.7; color: rgba(255, 255, 255, .62); }

.auth__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; position: relative; }

.auth__item { display: flex; align-items: flex-start; gap: .75rem; font-size: .88rem; }
.auth__item strong { display: block; color: #fff; font-weight: 600; }
.auth__item em { font-style: normal; font-size: .8rem; color: rgba(255, 255, 255, .5); }

.auth__icon {
    flex: none;
    width: 34px; height: 34px;
    display: grid; place-items: center;
    border-radius: 9px;
    background: rgba(232, 135, 30, .12);
    border: 1px solid rgba(232, 135, 30, .25);
    color: var(--accent);
}

.auth__icon svg { width: 16px; height: 16px; }

.auth__aside-foot {
    position: relative;
    padding-top: 1.3rem;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: .85rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .5rem;
}

.auth__aside-foot a {
    display: inline-flex; align-items: center; gap: .35rem;
    color: var(--accent); font-weight: 600;
}
.auth__aside-foot a svg { width: 14px; height: 14px; }
.auth__aside-foot a:hover { text-decoration: underline; }

/* ---- Sağ form ---- */
.auth__form { padding: clamp(1.8rem, 3.4vw, 3rem); display: flex; flex-direction: column; }

/* Logo ortada ve okunur boyutta dursun; 46px'de kurumsal durmuyordu. */
.auth__brand { margin-bottom: 1.6rem; text-align: center; }
.auth__brand img { height: 69px; width: auto; max-width: 285px; object-fit: contain; margin: 0 auto; }
.auth__brand .logo__name { display: inline-block; }

.auth__title { font-size: 1.45rem; letter-spacing: -.02em; margin: 0; }
.auth__sub { margin: .35rem 0 1.7rem; font-size: .88rem; color: var(--ink-3); }

.auth__fields { display: grid; gap: 1rem; }

/* Simgeli giriş kutusu */
.auth__input { position: relative; display: flex; align-items: center; }

.auth__input > svg {
    position: absolute;
    left: .8rem;
    width: 16px; height: 16px;
    color: var(--ink-4);
    pointer-events: none;
}

.auth__input .input { padding-left: 2.4rem; width: 100%; }
.auth__input:focus-within > svg { color: var(--accent); }

.auth__reveal {
    position: absolute;
    right: .45rem;
    width: 30px; height: 30px;
    display: grid; place-items: center;
    border: 0; background: transparent;
    color: var(--ink-4);
    border-radius: 6px;
    cursor: pointer;
}

.auth__reveal:hover { background: var(--surface-2); color: var(--ink-2); }
.auth__reveal.is-on { color: var(--accent); }
.auth__reveal svg { width: 16px; height: 16px; }

.auth__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: .85rem;
}

.auth__row a { color: var(--accent-ink); font-weight: 500; }
.auth__row a:hover { text-decoration: underline; }

.auth__help {
    display: flex;
    gap: .6rem;
    margin-top: 1.5rem;
    padding: .8rem .9rem;
    border-radius: var(--radius);
    background: var(--surface-2);
    border: 1px solid var(--line);
    font-size: .82rem;
    line-height: 1.6;
    color: var(--ink-3);
}

.auth__help svg { flex: none; width: 16px; height: 16px; margin-top: .15rem; color: var(--ink-4); }
.auth__help a { color: var(--accent-ink); font-weight: 600; }

.auth__secure {
    margin-top: auto;
    padding-top: 1.4rem;
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .75rem;
    color: var(--ink-4);
}

.auth__secure svg { width: 14px; height: 14px; }

@media (max-width: 860px) {
    .auth__card { grid-template-columns: 1fr; }
    /* Telefonda önce form gelsin; tanıtım şeridi altta kalsın */
    .auth__aside { order: 2; }
    .auth__form { order: 1; }
    .auth__aside::after { display: none; }
}

/* ---------------------------------------------------------------
   Ürünler mega menüsü — görselli kategori kartları
   Kategori adını okumak yerine ürünü görerek seçmek daha hızlı.
   --------------------------------------------------------------- */
.megamenu__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: .7rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--line);
}

.megamenu__head > span {
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--brand);
}

.megamenu__head > a {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-size: .78rem;
    font-weight: 600;
    color: var(--ink-3);
    text-decoration: none;
}

.megamenu__head > a:hover { color: var(--brand); }
.megamenu__head svg { width: 13px; height: 13px; }

.megamenu__grid {
    display: grid;
    /* Sütun sayısı kategori adedince; hepsi tek sırada durur. */
    grid-template-columns: repeat(var(--mega-cols, 6), minmax(0, 1fr));
    gap: .5rem;
}

.mega-cat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: .5rem .4rem .7rem;
    border: 1px solid transparent;
    border-radius: var(--radius);
    text-align: center;
    text-decoration: none;
    transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}

.mega-cat:hover { border-color: var(--line); background: var(--surface-2); }

.mega-cat__img {
    position: relative;
    display: grid;
    place-items: center;
    width: 100%;
    /* Kart genişledikçe görsel alanı da orantılı büyür. Sabit yükseklik,
       kare ve dikey kaynakları gereğinden fazla küçültüyordu. */
    height: auto;
    aspect-ratio: 16 / 9;
    min-height: 78px;
    margin-bottom: .5rem;
    border-radius: var(--radius);
    background: var(--surface-2);
    overflow: hidden;
}

.mega-cat:hover .mega-cat__img { background: #fff; }

.mega-cat__img img {
    position: absolute;
    inset: 6px;
    display: block;
    width: calc(100% - 12px);
    height: calc(100% - 12px);
    object-fit: contain;
    object-position: center;
    transition: filter var(--dur) var(--ease);
}

.mega-cat:hover .mega-cat__img img { filter: saturate(1.06) contrast(1.02); }
.mega-cat__img svg { width: 28px; height: 28px; color: var(--ink-4); }

.mega-cat__name {
    font-size: .73rem;
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: uppercase;
    color: var(--ink);
    line-height: 1.35;
}

.mega-cat:hover .mega-cat__name { color: var(--brand); }

/* Menü zaten 980px altında gizleniyor; o eşiğe kadar kartlar tek sırada
   kalsın diye görsel ve yazı küçültülür, sıra bozulmaz. */
@media (max-width: 1200px) {
    .megamenu     { padding: 1rem 1.1rem 1.2rem; }
    .megamenu__grid { gap: .4rem; }
    .mega-cat     { padding: .45rem .3rem .6rem; }
    .mega-cat__name { font-size: .68rem; letter-spacing: 0; }
}

/* ---------------------------------------------------------------
   Misyon & Vizyon sayfası
   --------------------------------------------------------------- */
.mv-pair {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

.mv-card {
    position: relative;
    padding: 2rem 1.9rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--surface);
    overflow: hidden;
}

/* Üstteki ince şerit iki kartı birbirinden ayırır */
.mv-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
}

.mv-card--mission::before { background: var(--brand); }
.mv-card--vision::before  { background: var(--accent); }

.mv-card__icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 1rem;
    border-radius: var(--radius);
    background: var(--surface-2);
}

.mv-card__icon svg { width: 22px; height: 22px; }
.mv-card--mission .mv-card__icon svg { color: var(--brand); }
.mv-card--vision  .mv-card__icon svg { color: var(--accent-ink, var(--accent)); }

.mv-card h2 {
    font-size: 1.3rem;
    margin-bottom: .6rem;
}

.mv-card p {
    color: var(--ink-3);
    font-size: 1rem;
    line-height: 1.75;
    margin: 0;
}

/* Değerler şeridi */
.mv-values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.mv-value {
    padding: 1.6rem 1.4rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    text-align: center;
}

.mv-value__icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: var(--surface-2);
}

.mv-value__icon svg { width: 22px; height: 22px; color: var(--brand); }

.mv-value h3 {
    font-size: 1.02rem;
    margin-bottom: .45rem;
}

.mv-value p {
    font-size: .88rem;
    line-height: 1.65;
    color: var(--ink-3);
    margin: 0;
}

/* Üretimden kareler */
.mv-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.mv-strip__item {
    margin: 0;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--surface-2);
}

.mv-strip__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}

.mv-strip__item:hover img { transform: scale(1.04); }

@media (max-width: 980px) {
    .mv-pair   { grid-template-columns: 1fr; }
    .mv-values { grid-template-columns: repeat(2, 1fr); }
    .mv-strip  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
    .mv-values { grid-template-columns: 1fr; }
    .mv-strip  { grid-template-columns: 1fr; }
    .mv-card   { padding: 1.6rem 1.3rem; }
}

/* ---------------------------------------------------------------
   Arama katmanı — sayfanın üzerine açılan yarı saydam perde
   --------------------------------------------------------------- */
.ovs {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: clamp(1rem, 8vh, 6rem) 1rem 1rem;
}

.ovs[hidden] { display: none; }

/* Arka plan sayfayı gösterir; okunabilirlik için hafifçe buğulanır */
.ovs__veil {
    position: absolute;
    inset: 0;
    background: rgba(16, 20, 24, .55);
    backdrop-filter: blur(7px) saturate(120%);
    -webkit-backdrop-filter: blur(7px) saturate(120%);
    opacity: 0;
    transition: opacity .2s var(--ease);
}

.ovs.is-open .ovs__veil { opacity: 1; }

.ovs__inner {
    position: relative;
    width: min(680px, 100%);
    max-height: min(78vh, 720px);
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 80px rgba(10, 14, 18, .35);
    overflow: hidden;
    opacity: 0;
    transform: translateY(-14px) scale(.98);
    transition: opacity .2s var(--ease), transform .22s var(--ease);
}

.ovs.is-open .ovs__inner { opacity: 1; transform: none; }

/* --- Giriş satırı --- */
.ovs__form {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .7rem .8rem .7rem 1rem;
    border-bottom: 1px solid var(--line);
}

.ovs__icon { display: grid; place-items: center; flex: none; color: var(--ink-4); }
.ovs__icon svg { width: 20px; height: 20px; }

.ovs__input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    background: none;
    font: inherit;
    font-size: 1.06rem;
    color: var(--ink);
    padding: .4rem 0;
}

.ovs__input::placeholder { color: var(--ink-4); }
.ovs__input::-webkit-search-cancel-button { display: none; }

.ovs__clear {
    flex: none;
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 50%;
    background: var(--surface-2);
    color: var(--ink-3);
    cursor: pointer;
}

.ovs__clear svg { width: 15px; height: 15px; }
.ovs__clear:hover { background: var(--line); color: var(--ink); }

.ovs__go {
    flex: none;
    height: 38px;
    padding: 0 1.1rem;
    border: 0;
    border-radius: var(--radius);
    background: var(--brand);
    color: #fff;
    font: inherit;
    font-weight: 600;
    font-size: .88rem;
    cursor: pointer;
}

.ovs__go:hover { filter: brightness(1.08); }

/* --- Sonuç gövdesi --- */
.ovs__body { flex: 1; overflow-y: auto; padding: .5rem; scrollbar-width: thin; }
.ovs__body.is-busy { opacity: .55; }

.ovs__hint { padding: 2rem 1.2rem; text-align: center; color: var(--ink-3); }
.ovs__hint > svg { width: 30px; height: 30px; color: var(--ink-4); margin-bottom: .7rem; }
.ovs__hint p { margin: 0; font-size: .9rem; }
.ovs__note { font-size: .84rem !important; color: var(--ink-4); margin-top: .3rem !important; }

.ovs__chips { display: flex; flex-wrap: wrap; gap: .4rem; justify-content: center; margin-top: 1.1rem; }

.ovs__chips a {
    padding: .32rem .75rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: .8rem;
    color: var(--ink-2);
    text-decoration: none;
    transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}

.ovs__chips a:hover { background: var(--surface-2); border-color: var(--ink-4); color: var(--brand); }

.ovs__group { padding: .4rem 0 .2rem; }

.ovs__group-title {
    display: block;
    padding: .3rem .8rem .45rem;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ink-4);
}

/* --- Tek sonuç satırı --- */
.ovs-hit {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .5rem .8rem;
    border-radius: var(--radius);
    text-decoration: none;
    color: inherit;
}

.ovs-hit:hover,
.ovs-hit.is-active { background: var(--surface-2); }

.ovs-hit__img {
    flex: none;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    overflow: hidden;
}

.ovs-hit__img img { width: 100%; height: 100%; object-fit: contain; padding: 3px; }

.ovs-hit__ico {
    flex: none;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: var(--radius);
    background: var(--surface-2);
    color: var(--ink-4);
}

.ovs-hit__ico svg { width: 19px; height: 19px; }

.ovs-hit__body { min-width: 0; }
.ovs-hit__name { display: block; font-size: .92rem; font-weight: 600; color: var(--ink); line-height: 1.35; }
.ovs-hit__name mark { background: rgba(248, 151, 33, .28); color: inherit; border-radius: 2px; padding: 0 1px; }
.ovs-hit__meta { display: block; font-size: .76rem; color: var(--ink-4); margin-top: .1rem; }

.ovs__all {
    display: block;
    margin: .4rem .4rem .2rem;
    padding: .65rem;
    border-radius: var(--radius);
    background: var(--surface-2);
    text-align: center;
    font-size: .85rem;
    font-weight: 600;
    color: var(--brand);
    text-decoration: none;
}

.ovs__all:hover { background: var(--line); }

/* --- Alt bilgi --- */
.ovs__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .55rem .8rem;
    border-top: 1px solid var(--line);
    background: var(--surface-2);
    font-size: .74rem;
    color: var(--ink-4);
}

.ovs__foot kbd {
    display: inline-block;
    padding: 1px 5px;
    margin: 0 1px;
    border: 1px solid var(--line);
    border-bottom-width: 2px;
    border-radius: 4px;
    background: var(--surface);
    font-family: var(--mono, ui-monospace, monospace);
    font-size: .7rem;
    color: var(--ink-3);
}

.ovs__x {
    flex: none;
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border: 0;
    border-radius: 50%;
    background: none;
    color: var(--ink-3);
    cursor: pointer;
}

.ovs__x svg { width: 15px; height: 15px; }
.ovs__x:hover { background: var(--line); color: var(--ink); }

/* Katman açıkken arka plan kaymasın */
body.is-search-open { overflow: hidden; }

@media (max-width: 560px) {
    .ovs { padding: .8rem .7rem; align-items: stretch; }
    .ovs__inner { max-height: none; height: 100%; }
    .ovs__go { display: none; }
    .ovs__foot span { display: none; }
    .ovs__foot { justify-content: flex-end; }
}

@media (prefers-reduced-motion: reduce) {
    .ovs__veil, .ovs__inner { transition: none; }
}
