/* ============================================================
   Akaryakıt İndirim — Ana Stil Dosyası
   ============================================================ */

:root {
        --ak-dark: #0b1626;
        --ak-dark-2: #12233b;
        --ak-dark-3: #1a3050;
        --ak-green: #0aa05a;
        --ak-green-2: #07834a;
        --ak-green-soft: #e6f6ee;
        --ak-amber: #f5a623;
        --ak-red: #e5484d;
        --ak-red-soft: #fdecec;
        --ak-bg: #f4f6f9;
        --ak-card: #ffffff;
        --ak-text: #17233a;
        --ak-muted: #5c6b82;
        --ak-line: #e4e9f1;
        --ak-radius: 14px;
        --ak-radius-sm: 10px;
        --ak-shadow: 0 1px 2px rgba(11, 22, 38, .05), 0 4px 16px rgba(11, 22, 38, .06);
        --ak-shadow-lg: 0 4px 10px rgba(11, 22, 38, .07), 0 14px 38px rgba(11, 22, 38, .12);
        --ak-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
        margin: 0;
        font-family: var(--ak-font);
        font-size: 16px;
        line-height: 1.6;
        color: var(--ak-text);
        background: var(--ak-bg);
        -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--ak-green-2); text-decoration: none; }
a:hover { color: var(--ak-green); }
button { font-family: inherit; }
:focus-visible { outline: 3px solid rgba(10, 160, 90, .45); outline-offset: 2px; }

/* ---------- Yapı (sticky footer) ---------- */
.ak-site { min-height: 100vh; display: flex; flex-direction: column; }
.ak-main { flex: 1 0 auto; width: 100%; }
.ak-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; width: 100%; }

.screen-reader-text {
        border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%);
        height: 1px; width: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute;
}
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--ak-green); color: #fff; padding: 10px 16px; z-index: 999; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }

/* ============================================================
   HEADER
   ============================================================ */
.ak-header {
        position: sticky; top: 0; z-index: 100;
        background: rgba(11, 22, 38, .96);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.ak-header-inner {
        max-width: 1200px; margin: 0 auto; padding: 0 20px;
        display: flex; align-items: center; gap: 20px;
        min-height: 64px; position: relative;
}
.ak-brand { display: flex; align-items: center; gap: 12px; }
.ak-logo { display: inline-flex; align-items: center; gap: 10px; color: #fff; }
.ak-logo:hover { color: #fff; }
.ak-logo-mark {
        width: 38px; height: 38px; border-radius: 11px;
        background: linear-gradient(135deg, var(--ak-green) 0%, #067a45 100%);
        display: inline-flex; align-items: center; justify-content: center;
        color: #fff; flex: 0 0 auto;
        box-shadow: 0 4px 12px rgba(10, 160, 90, .35);
}
.ak-logo-mark svg { width: 22px; height: 22px; }
.ak-logo-text { font-size: 19px; font-weight: 800; letter-spacing: -.4px; line-height: 1; white-space: nowrap; }
.ak-logo-hl { color: #39d98a; }
.ak-logo-tld { color: rgba(255, 255, 255, .45); font-weight: 600; font-size: 15px; }

.ak-nav { margin-left: 8px; flex: 1 1 auto; }
.ak-menu, .ak-menu ul { list-style: none; margin: 0; padding: 0; }
.ak-menu { display: flex; gap: 2px; flex-wrap: wrap; }
.ak-menu > li { position: relative; }
.ak-menu a {
        display: block; padding: 8px 13px; border-radius: 8px;
        color: rgba(255, 255, 255, .82); font-weight: 600; font-size: 14.5px;
        transition: background .15s, color .15s;
}
.ak-menu a:hover { color: #fff; background: rgba(255, 255, 255, .09); }

.ak-header-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.ak-search-toggle {
        background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .14);
        color: #fff; width: 38px; height: 38px; border-radius: 10px; cursor: pointer;
        display: inline-flex; align-items: center; justify-content: center;
        transition: background .15s;
}
.ak-search-toggle:hover, .ak-search-toggle[aria-expanded="true"] { background: rgba(255, 255, 255, .16); }

.ak-btn {
        display: inline-flex; align-items: center; justify-content: center; gap: 8px;
        background: var(--ak-green); color: #fff; font-weight: 700; font-size: 14.5px;
        padding: 10px 18px; border-radius: 10px; border: 2px solid transparent;
        cursor: pointer; transition: background .15s, transform .15s, box-shadow .15s;
        text-decoration: none; line-height: 1.2;
}
.ak-btn:hover { background: var(--ak-green-2); color: #fff; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(10, 160, 90, .3); }
.ak-btn-cta { box-shadow: 0 4px 14px rgba(10, 160, 90, .35); }
.ak-btn-light { background: #fff; color: var(--ak-green-2); }
.ak-btn-light:hover { background: var(--ak-green-soft); color: var(--ak-green-2); box-shadow: 0 6px 18px rgba(6, 40, 25, .12); }
.ak-btn-ghost { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .25); color: #fff; }
.ak-btn-ghost:hover { background: rgba(255, 255, 255, .18); }
.ak-btn-outline { background: transparent; border-color: var(--ak-green); color: var(--ak-green-2); }
.ak-btn-outline:hover { background: var(--ak-green-soft); }
.ak-btn-outline-light { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .3); color: #fff; }
.ak-btn-outline-light:hover { background: rgba(255, 255, 255, .2); color: #fff; }

.ak-search-inline {
        position: absolute; top: 100%; right: 0; width: min(420px, calc(100vw - 40px));
        padding: 12px; background: var(--ak-dark-2);
        border: 1px solid rgba(255, 255, 255, .1); border-top: none;
        border-radius: 0 0 14px 14px; box-shadow: var(--ak-shadow-lg);
}
.ak-searchform { display: flex; gap: 8px; }
.ak-search-input {
        flex: 1; min-width: 0; padding: 10px 14px; border-radius: 10px;
        border: 1px solid var(--ak-line); font-size: 15px; font-family: inherit;
}
.ak-search-input:focus { outline: none; border-color: var(--ak-green); box-shadow: 0 0 0 3px rgba(10, 160, 90, .15); }
.ak-search-submit {
        background: var(--ak-green); color: #fff; border: none; border-radius: 10px;
        padding: 0 14px; cursor: pointer; display: inline-flex; align-items: center;
}
.ak-search-submit:hover { background: var(--ak-green-2); }

.ak-nav-toggle {
        display: none; flex-direction: column; justify-content: center; gap: 5px;
        width: 40px; height: 40px; background: rgba(255, 255, 255, .08);
        border: 1px solid rgba(255, 255, 255, .14); border-radius: 10px; cursor: pointer;
        padding: 0; align-items: center;
}
.ak-nav-toggle span { display: block; width: 18px; height: 2px; background: #fff; border-radius: 2px; transition: transform .2s, opacity .2s; }
body.ak-nav-open .ak-nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.ak-nav-open .ak-nav-toggle span:nth-child(2) { opacity: 0; }
body.ak-nav-open .ak-nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO (ana sayfa)
   ============================================================ */
.ak-hero {
        background:
                radial-gradient(1100px 500px at 85% -10%, rgba(10, 160, 90, .25), transparent 60%),
                radial-gradient(900px 420px at -10% 110%, rgba(245, 166, 35, .12), transparent 55%),
                linear-gradient(180deg, var(--ak-dark) 0%, var(--ak-dark-2) 100%);
        color: #fff;
        padding: 46px 0 40px;
}
.ak-hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 32px; align-items: center; }
.ak-hero-kicker {
        display: inline-flex; align-items: center; gap: 8px;
        background: rgba(10, 160, 90, .18); border: 1px solid rgba(10, 160, 90, .4);
        color: #4fde9b; font-size: 13px; font-weight: 700; letter-spacing: .4px;
        padding: 6px 12px; border-radius: 999px; margin: 0 0 16px;
}
.ak-live-dot { width: 8px; height: 8px; border-radius: 50%; background: #2fe08c; box-shadow: 0 0 0 0 rgba(47, 224, 140, .6); animation: ak-pulse 2s infinite; }
@keyframes ak-pulse {
        0% { box-shadow: 0 0 0 0 rgba(47, 224, 140, .55); }
        70% { box-shadow: 0 0 0 9px rgba(47, 224, 140, 0); }
        100% { box-shadow: 0 0 0 0 rgba(47, 224, 140, 0); }
}
.ak-hero-title { font-size: clamp(28px, 4vw, 44px); line-height: 1.12; font-weight: 800; letter-spacing: -.5px; margin: 0 0 14px; }
.ak-hero-title-hl { color: #39d98a; }
.ak-hero-sub { font-size: 17px; color: rgba(255, 255, 255, .72); margin: 0 0 22px; max-width: 560px; }
.ak-hero-city { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.ak-hero-city-label { font-size: 14px; color: rgba(255, 255, 255, .6); font-weight: 600; }
.ak-hero-city select {
        background: var(--ak-dark-3); color: #fff; border: 1px solid rgba(255, 255, 255, .18);
        padding: 10px 14px; border-radius: 10px; font-size: 15px; font-weight: 600; font-family: inherit;
        min-width: 180px; cursor: pointer;
}
.ak-hero-city select:focus { outline: none; border-color: var(--ak-green); }
.ak-hero-figure img { border-radius: var(--ak-radius); box-shadow: var(--ak-shadow-lg); width: 100%; }

/* Fiyat kartları */
.ak-price-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 34px; }
.ak-price-card {
        background: rgba(255, 255, 255, .055);
        border: 1px solid rgba(255, 255, 255, .12);
        border-radius: var(--ak-radius);
        padding: 18px 18px 16px;
        backdrop-filter: blur(6px);
        transition: transform .2s, background .2s, border-color .2s;
}
.ak-price-card:hover { transform: translateY(-3px); background: rgba(255, 255, 255, .085); border-color: rgba(255, 255, 255, .2); }
.ak-price-head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.ak-price-icon {
        width: 40px; height: 40px; border-radius: 11px; display: inline-flex;
        align-items: center; justify-content: center; flex: 0 0 auto; color: #fff;
}
.ak-price-icon svg { width: 22px; height: 22px; }
.ak-price-icon-benzin { background: linear-gradient(135deg, #f5a623, #e07b00); }
.ak-price-icon-motorin { background: linear-gradient(135deg, #3f8cff, #2357c9); }
.ak-price-icon-lpg { background: linear-gradient(135deg, #0aa05a, #067a45); }
.ak-price-icon-brent { background: linear-gradient(135deg, #64748b, #334155); }
.ak-price-name { font-weight: 700; font-size: 15.5px; line-height: 1.25; display: flex; flex-direction: column; }
.ak-price-name small { font-weight: 500; font-size: 12.5px; color: rgba(255, 255, 255, .55); }
.ak-price-value { display: flex; align-items: baseline; gap: 8px; }
.ak-price-num { font-size: 32px; font-weight: 800; letter-spacing: -.5px; font-variant-numeric: tabular-nums; line-height: 1.1; }
.ak-price-unit { font-size: 13px; color: rgba(255, 255, 255, .55); font-weight: 600; }
.ak-price-foot { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.ak-price-city { font-size: 12.5px; color: rgba(255, 255, 255, .55); font-weight: 600; }

.ak-badge {
        display: inline-flex; align-items: center; gap: 4px;
        font-size: 12.5px; font-weight: 700; padding: 3px 9px; border-radius: 999px;
        font-variant-numeric: tabular-nums; white-space: nowrap;
}
.ak-badge-down { background: rgba(10, 160, 90, .2); color: #4fde9b; border: 1px solid rgba(10, 160, 90, .35); }
.ak-badge-up { background: rgba(229, 72, 77, .18); color: #ff9d9f; border: 1px solid rgba(229, 72, 77, .35); }
.ak-badge-flat { background: rgba(255, 255, 255, .1); color: rgba(255, 255, 255, .6); }

/* Açık zeminde rozetler */
.ak-price-cards-page .ak-badge-down { background: var(--ak-green-soft); color: var(--ak-green-2); border-color: rgba(10, 160, 90, .3); }
.ak-price-cards-page .ak-badge-up { background: var(--ak-red-soft); color: #c02631; border-color: rgba(229, 72, 77, .3); }
.ak-price-cards-page .ak-badge-flat { background: #eef1f6; color: var(--ak-muted); }

.ak-hero-meta { display: flex; gap: 10px; flex-wrap: wrap; margin: 18px 0 0; }
.ak-meta-chip {
        background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .1);
        color: rgba(255, 255, 255, .65); font-size: 13px; padding: 6px 12px; border-radius: 999px;
}
.ak-meta-chip strong { color: #fff; font-weight: 700; }

/* ============================================================
   BÖLÜMLER
   ============================================================ */
.ak-section { padding: 44px 0; }
.ak-section-tight { padding: 20px 0; }
.ak-section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 22px; flex-wrap: wrap; }
.ak-section-title { font-size: clamp(21px, 2.6vw, 28px); font-weight: 800; letter-spacing: -.4px; margin: 0; }
.ak-section-sub { margin: 4px 0 0; color: var(--ak-muted); font-size: 15px; }
.ak-fire { margin-right: 4px; }

/* ---------- İndirim özel alanı ---------- */
.ak-section-indirim {
        background:
                radial-gradient(900px 300px at 100% 0%, rgba(10, 160, 90, .14), transparent 60%),
                linear-gradient(180deg, #eaf8f0 0%, var(--ak-bg) 100%);
        border-top: 1px solid rgba(10, 160, 90, .15);
        border-bottom: 1px solid rgba(10, 160, 90, .08);
}
.ak-indirim-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.ak-indirim-card {
        background: var(--ak-card); border: 1px solid var(--ak-line); border-radius: var(--ak-radius);
        padding: 16px; display: flex; gap: 14px; align-items: flex-start;
        box-shadow: var(--ak-shadow); transition: transform .2s, box-shadow .2s;
        border-left: 4px solid var(--ak-green);
}
.ak-indirim-card:hover { transform: translateY(-3px); box-shadow: var(--ak-shadow-lg); }
.ak-indirim-card.is-up { border-left-color: var(--ak-red); }
.ak-indirim-amount {
        background: var(--ak-green-soft); color: var(--ak-green-2);
        border-radius: 12px; padding: 10px 12px; text-align: center; min-width: 86px;
        display: flex; flex-direction: column; align-items: center; gap: 1px; flex: 0 0 auto;
}
.ak-indirim-card.is-up .ak-indirim-amount { background: var(--ak-red-soft); color: #c02631; }
.ak-indirim-amount strong { font-size: 22px; font-weight: 800; font-variant-numeric: tabular-nums; line-height: 1.1; }
.ak-indirim-dir { font-size: 12px; font-weight: 700; }
.ak-indirim-unit { font-size: 11px; opacity: .75; font-weight: 600; }
.ak-indirim-body { min-width: 0; }
.ak-indirim-title { margin: 0 0 8px; font-size: 15.5px; line-height: 1.35; }
.ak-indirim-title a { color: var(--ak-text); }
.ak-indirim-title a:hover { color: var(--ak-green-2); }
.ak-indirim-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 8px; }
.ak-indirim-card time { font-size: 12.5px; color: var(--ak-muted); }
.ak-chip {
        font-size: 12px; font-weight: 700; padding: 2px 10px; border-radius: 999px;
        background: #eef1f6; color: var(--ak-muted);
}
.ak-chip-benzin { background: #fdf1dc; color: #a36200; }
.ak-chip-motorin { background: #e3edff; color: #2357c9; }
.ak-chip-lpg { background: var(--ak-green-soft); color: var(--ak-green-2); }

/* ---------- İndirim kartı ekleri (durum, muhtemel fiyat) ---------- */
.ak-indirim-note {
        display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
        margin: -4px 0 16px; font-size: 13px; color: var(--ak-muted);
        background: rgba(10, 160, 90, .06); border: 1px dashed rgba(10, 160, 90, .35);
        border-radius: 10px; padding: 8px 14px;
}
.ak-indirim-note .ak-live-dot { flex: 0 0 auto; }
.ak-indirim-note strong { color: var(--ak-green-2); }
.ak-indirim-status {
        font-size: 11.5px; font-weight: 800; padding: 2px 10px; border-radius: 999px;
        letter-spacing: .2px; white-space: nowrap;
}
.ak-indirim-status.status-bekliyor { background: #fff4dd; color: #a36200; border: 1px solid #f3ddab; }
.ak-indirim-status.status-uygulandi { background: var(--ak-green-soft); color: var(--ak-green-2); border: 1px solid rgba(10, 160, 90, .3); }
.ak-indirim-src {
        margin: 0 0 8px; font-size: 12.5px; color: var(--ak-muted); display: flex; align-items: center; gap: 5px; flex-wrap: wrap;
}
.ak-indirim-src-k { font-weight: 700; }
.ak-indirim-src strong { color: var(--ak-text); font-weight: 700; }
.ak-indirim-src-dot { opacity: .5; }
.ak-indirim-expected {
        margin: 0; padding: 8px 10px; border-radius: 10px;
        background: #f5f8f6; border: 1px solid rgba(10, 160, 90, .18);
        display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap;
        font-size: 12.5px; color: var(--ak-muted);
}
.ak-indirim-card.is-up .ak-indirim-expected { background: #fdf5f5; border-color: rgba(198, 38, 47, .18); }
.ak-indirim-expected-lbl { font-weight: 600; }
.ak-indirim-expected-lbl small { font-weight: 500; opacity: .8; }
.ak-indirim-expected strong { font-size: 15px; font-weight: 800; color: var(--ak-green-2); font-variant-numeric: tabular-nums; }
.ak-indirim-card.is-up .ak-indirim-expected strong { color: #c02631; }
.ak-indirim-expected del { opacity: .55; font-size: 11.5px; }

/* ---------- Tek indirim: bilgi kutusu + muhtemel fiyat tablosu ---------- */
.ak-indirim-facts {
        display: flex; flex-wrap: wrap; gap: 10px; margin: 14px 0 0;
}
.ak-indirim-facts > div {
        background: var(--ak-card); border: 1px solid var(--ak-line); border-radius: 10px;
        padding: 8px 14px; display: flex; flex-direction: column; gap: 2px; min-width: 130px;
}
.ak-indirim-facts span { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .4px; color: var(--ak-muted); }
.ak-indirim-facts strong { font-size: 14.5px; }
.ak-expected-wrap {
        margin: 22px 0; border: 1px solid rgba(10, 160, 90, .25); border-radius: 14px;
        background: linear-gradient(180deg, rgba(10, 160, 90, .05), rgba(10, 160, 90, .015));
        padding: 18px 20px;
}
.ak-expected-title { margin: 0 0 12px; font-size: 18px; }
.ak-expected-table {
        width: 100%; border-collapse: collapse; background: var(--ak-card);
        border-radius: 10px; overflow: hidden; font-variant-numeric: tabular-nums;
}
.ak-expected-table th, .ak-expected-table td { padding: 10px 14px; text-align: left; font-size: 14px; border-bottom: 1px solid var(--ak-line); }
.ak-expected-table thead th { background: #f1f5f2; font-size: 12px; text-transform: uppercase; letter-spacing: .4px; color: var(--ak-muted); }
.ak-expected-table tbody tr:last-child th, .ak-expected-table tbody tr:last-child td { border-bottom: none; }
.ak-expected-table tbody th { font-weight: 600; }
.ak-expected-table td strong { font-size: 15px; font-weight: 800; }
.ak-expected-new.is-down, .ak-expected-diff.is-down { color: var(--ak-green-2); }
.ak-expected-new.is-up, .ak-expected-diff.is-up { color: #c02631; }
.ak-expected-note { margin: 12px 0 0; font-size: 12.5px; color: var(--ak-muted); line-height: 1.55; }
@media (max-width: 560px) {
        .ak-expected-table th, .ak-expected-table td { padding: 8px 8px; font-size: 13px; }
        .ak-indirim-facts > div { min-width: calc(50% - 10px); flex: 1; }
}

/* ---------- Carousel ---------- */
.ak-carousel { position: relative; }
.ak-carousel-viewport { overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none; }
.ak-carousel-viewport::-webkit-scrollbar { display: none; }
.ak-carousel-track { display: flex; gap: 16px; margin: 0; padding: 0; list-style: none; }
.ak-carousel-item { flex: 0 0 calc((100% - 64px) / 5); scroll-snap-align: start; }
.ak-carousel-prev, .ak-carousel-next {
        position: absolute; top: 38%; transform: translateY(-50%); z-index: 5;
        width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--ak-line);
        background: #fff; color: var(--ak-text); font-size: 22px; font-weight: 700; line-height: 1;
        cursor: pointer; box-shadow: var(--ak-shadow-lg); display: flex; align-items: center; justify-content: center;
        transition: background .15s, color .15s;
}
.ak-carousel-prev { left: -8px; }
.ak-carousel-next { right: -8px; }
.ak-carousel-prev:hover, .ak-carousel-next:hover { background: var(--ak-green); color: #fff; border-color: var(--ak-green); }
.ak-carousel-dots { display: flex; gap: 7px; justify-content: center; margin-top: 16px; }
.ak-carousel-dot {
        width: 8px; height: 8px; border-radius: 999px; border: none; padding: 0; cursor: pointer;
        background: #cfd8e4; transition: width .2s, background .2s;
}
.ak-carousel-dot.is-active { width: 24px; background: var(--ak-green); }

/* ---------- Kartlar (haber) ---------- */
.ak-card {
        background: var(--ak-card); border: 1px solid var(--ak-line); border-radius: var(--ak-radius);
        overflow: hidden; display: flex; flex-direction: column;
        box-shadow: var(--ak-shadow); transition: transform .2s, box-shadow .2s;
}
.ak-card:hover { transform: translateY(-3px); box-shadow: var(--ak-shadow-lg); }
.ak-card-img { display: block; aspect-ratio: 16 / 9; overflow: hidden; background: #e9edf3; }
.ak-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.ak-card:hover .ak-card-img img { transform: scale(1.045); }
.ak-card-body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.ak-card-title { margin: 0; font-size: 16px; line-height: 1.35; font-weight: 700; }
.ak-card-title a { color: var(--ak-text); }
.ak-card-title a:hover { color: var(--ak-green-2); }
.ak-card-excerpt { margin: 0; color: var(--ak-muted); font-size: 14px; }
.ak-card-meta { margin-top: auto; font-size: 12.5px; color: var(--ak-muted); display: flex; gap: 10px; }
.ak-news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

/* ---------- Tablo ---------- */
.ak-table-tools { display: flex; gap: 14px; align-items: center; justify-content: space-between; flex-wrap: wrap; margin-bottom: 16px; }
.ak-tabs { display: inline-flex; background: #e9edf3; border-radius: 12px; padding: 4px; gap: 2px; }
.ak-tab {
        border: none; background: transparent; padding: 8px 20px; border-radius: 9px;
        font-size: 14.5px; font-weight: 700; color: var(--ak-muted); cursor: pointer;
        transition: background .15s, color .15s, box-shadow .15s;
}
.ak-tab:hover { color: var(--ak-text); }
.ak-tab.is-active { background: #fff; color: var(--ak-green-2); box-shadow: 0 1px 4px rgba(11, 22, 38, .12); }
.ak-table-search { flex: 1; max-width: 320px; min-width: 200px; }
.ak-table-search input {
        width: 100%; padding: 10px 14px; border-radius: 10px; border: 1px solid var(--ak-line);
        font-size: 14.5px; font-family: inherit; background: #fff;
}
.ak-table-search input:focus { outline: none; border-color: var(--ak-green); box-shadow: 0 0 0 3px rgba(10, 160, 90, .14); }

.ak-table-wrap {
        background: #fff; border: 1px solid var(--ak-line); border-radius: var(--ak-radius);
        box-shadow: var(--ak-shadow); overflow: auto; max-height: 560px;
}
.ak-table { width: 100%; border-collapse: collapse; min-width: 560px; }
.ak-table thead th {
        position: sticky; top: 0; background: #f4f6fa; z-index: 2;
        text-align: left; font-size: 12.5px; letter-spacing: .5px; text-transform: uppercase;
        color: var(--ak-muted); padding: 12px 16px; border-bottom: 1px solid var(--ak-line);
        white-space: nowrap;
}
.ak-table tbody td { padding: 11px 16px; border-bottom: 1px solid #eef1f6; font-size: 15px; vertical-align: middle; }
.ak-table tbody tr:last-child td { border-bottom: none; }
.ak-table tbody tr { transition: background .12s; }
.ak-table tbody tr:hover { background: #f7fafc; }
.ak-cell-il a { color: var(--ak-text); }
.ak-cell-il a:hover { color: var(--ak-green-2); }
.ak-cell-price .ak-pval { font-weight: 800; font-variant-numeric: tabular-nums; font-size: 15.5px; }
.ak-pval.is-hidden, .ak-pchg.is-hidden { display: none; }
.ak-col-link { width: 44px; text-align: right; }
.ak-row-link {
        display: inline-flex; width: 30px; height: 30px; border-radius: 8px; background: #eef1f6;
        align-items: center; justify-content: center; color: var(--ak-muted); font-weight: 700;
}
tr:hover .ak-row-link { background: var(--ak-green-soft); color: var(--ak-green-2); }
.ak-table-note { color: var(--ak-muted); font-size: 13px; margin: 12px 2px 0; }

/* Açık zemin rozetleri (tablo/ilçe) */
.ak-table .ak-badge-down, .ak-price-cards-page .ak-badge-down { background: var(--ak-green-soft); color: var(--ak-green-2); border-color: rgba(10, 160, 90, .3); }
.ak-table .ak-badge-up, .ak-price-cards-page .ak-badge-up { background: var(--ak-red-soft); color: #c02631; border-color: rgba(229, 72, 77, .3); }
.ak-table .ak-badge-flat, .ak-price-cards-page .ak-badge-flat { background: #eef1f6; color: var(--ak-muted); }

/* ---------- Bilgi kartları ---------- */
.ak-info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.ak-info-card {
        background: var(--ak-card); border: 1px solid var(--ak-line); border-radius: var(--ak-radius);
        padding: 20px; box-shadow: var(--ak-shadow); display: flex; flex-direction: column; gap: 10px;
        transition: transform .2s, box-shadow .2s;
}
.ak-info-card:hover { transform: translateY(-3px); box-shadow: var(--ak-shadow-lg); }
.ak-info-card h3 { margin: 0; font-size: 17px; font-weight: 800; }
.ak-info-card p { margin: 0; color: var(--ak-muted); font-size: 14px; flex: 1; }
.ak-info-brent {
        background: linear-gradient(150deg, var(--ak-dark) 0%, var(--ak-dark-3) 100%);
        border-color: rgba(255, 255, 255, .1); color: #fff;
}
.ak-info-brent h3 { color: #fff; }
.ak-info-brent p { color: rgba(255, 255, 255, .66); }
.ak-info-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.ak-info-price { font-size: 34px; font-weight: 800; letter-spacing: -.5px; font-variant-numeric: tabular-nums; }
.ak-badge-updown { background: rgba(255, 255, 255, .12); color: #ffb3b5; border-radius: 999px; font-size: 12.5px; font-weight: 700; padding: 3px 10px; }

/* ============================================================
   İÇ SAYFALAR
   ============================================================ */
.ak-pagehero {
        background:
                radial-gradient(900px 380px at 92% -20%, rgba(10, 160, 90, .18), transparent 60%),
                linear-gradient(180deg, var(--ak-dark) 0%, var(--ak-dark-2) 100%);
        color: #fff; padding: 38px 0 34px;
}
.ak-pagehero-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 28px; align-items: center; }
.ak-pagehero-kicker {
        color: #4fde9b; font-weight: 700; font-size: 13.5px; letter-spacing: .6px;
        text-transform: uppercase; margin: 0 0 8px;
}
.ak-pagehero-title { font-size: clamp(24px, 3.4vw, 36px); font-weight: 800; letter-spacing: -.4px; line-height: 1.15; margin: 0 0 12px; }
.ak-pagehero-sub { color: rgba(255, 255, 255, .75); font-size: 16px; margin: 0 0 16px; }
.ak-pagehero-meta { display: flex; gap: 10px; flex-wrap: wrap; margin: 0; }
.ak-meta-link { color: #fff; }
.ak-meta-link:hover { color: #fff; background: rgba(255, 255, 255, .14); }
.ak-pagehero-prices { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
.ak-mini-price {
        background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .13);
        border-radius: 12px; padding: 12px 18px; min-width: 118px; text-align: center;
}
.ak-mini-price-label { display: block; font-size: 12.5px; color: rgba(255, 255, 255, .6); font-weight: 700; margin-bottom: 2px; }
.ak-mini-price-val { font-size: 24px; font-weight: 800; font-variant-numeric: tabular-nums; }
.ak-mini-price-val small { font-size: 12px; font-weight: 600; color: rgba(255, 255, 255, .55); }
.ak-pagehero-price {
        background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .14);
        border-radius: var(--ak-radius); padding: 20px 26px; text-align: center; min-width: 200px;
}
.ak-pagehero-price-label { display: block; font-weight: 700; font-size: 14px; color: rgba(255, 255, 255, .65); }
.ak-pagehero-price-num { display: block; font-size: 44px; font-weight: 800; letter-spacing: -1px; font-variant-numeric: tabular-nums; margin: 6px 0 4px; }
.ak-pagehero-price-num small { font-size: 15px; font-weight: 600; color: rgba(255, 255, 255, .55); }
.ak-pagehero-indirim .ak-fire { font-size: .8em; }
.ak-pagehero-brent .ak-pagehero-price-num { color: #ffd57e; }

/* Breadcrumb */
.ak-breadcrumb { margin-bottom: 14px; }
.ak-breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 4px; margin: 0; padding: 0; font-size: 13px; }
.ak-breadcrumb li { display: flex; align-items: center; gap: 4px; color: rgba(255, 255, 255, .55); }
.ak-breadcrumb li:not(:last-child)::after { content: "›"; opacity: .5; margin-left: 4px; }
.ak-breadcrumb a { color: rgba(255, 255, 255, .75); }
.ak-breadcrumb a:hover { color: #fff; }
.ak-pagehero-list .ak-pagehero-title { margin-bottom: 6px; }

/* Sayfa içi fiyat kartları (açık zemin) */
.ak-price-cards-page { margin-top: 0; }
.ak-price-cards-page .ak-price-card {
        background: var(--ak-card); border: 1px solid var(--ak-line); box-shadow: var(--ak-shadow);
        color: var(--ak-text);
}
.ak-price-cards-page .ak-price-card:hover { background: #fff; border-color: #d5dce8; }
.ak-price-cards-page .ak-price-name { color: var(--ak-text); }
.ak-price-cards-page .ak-price-name small { color: var(--ak-muted); }
.ak-price-cards-page .ak-price-unit { color: var(--ak-muted); }
.ak-price-cards-page .ak-price-city { color: var(--ak-muted); }
.ak-price-cards-page .ak-price-card-calc { background: linear-gradient(135deg, var(--ak-green) 0%, #067a45 100%); border-color: transparent; color: #fff; }
.ak-price-cards-page .ak-price-card-calc .ak-price-name, .ak-price-cards-page .ak-price-card-calc .ak-price-name small { color: #fff; }
.ak-price-cards-page .ak-price-card-calc .ak-price-unit, .ak-price-cards-page .ak-price-card-calc .ak-price-city { color: rgba(255, 255, 255, .75); }

/* İstanbul Avrupa/Anadolu */
.ak-ist-split { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ak-ist-card { background: #fff; border: 1px solid var(--ak-line); border-radius: var(--ak-radius); padding: 18px 20px; box-shadow: var(--ak-shadow); }
.ak-ist-card h3 { margin: 0 0 10px; font-size: 16px; }
.ak-ist-card ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 18px; flex-wrap: wrap; }
.ak-ist-card li { font-size: 14px; color: var(--ak-muted); }
.ak-ist-card strong { color: var(--ak-text); font-variant-numeric: tabular-nums; }

/* İlçe çipleri */
.ak-district-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 10px; }
.ak-district-chip {
        background: #fff; border: 1px solid var(--ak-line); border-radius: 12px; padding: 12px 14px;
        display: flex; flex-direction: column; gap: 3px; box-shadow: var(--ak-shadow);
        transition: transform .18s, box-shadow .18s, border-color .18s;
}
.ak-district-chip:hover { transform: translateY(-2px); border-color: var(--ak-green); box-shadow: var(--ak-shadow-lg); }
.ak-district-chip strong { color: var(--ak-text); font-size: 14.5px; }
.ak-district-chip span { font-size: 12.5px; color: var(--ak-muted); font-variant-numeric: tabular-nums; }

/* İller hub */
.ak-letter-group { margin-bottom: 26px; }
.ak-letter {
        font-size: 15px; font-weight: 800; color: var(--ak-green-2);
        background: var(--ak-green-soft); width: 38px; height: 38px; border-radius: 11px;
        display: inline-flex; align-items: center; justify-content: center; margin: 0 0 12px;
}
.ak-province-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 10px; }
.ak-province-card {
        background: #fff; border: 1px solid var(--ak-line); border-radius: 12px; padding: 13px 15px;
        box-shadow: var(--ak-shadow); display: flex; flex-direction: column; gap: 3px;
        transition: transform .18s, box-shadow .18s, border-color .18s;
}
.ak-province-card:hover { transform: translateY(-2px); border-color: var(--ak-green); box-shadow: var(--ak-shadow-lg); }
.ak-province-card strong { color: var(--ak-text); font-size: 15.5px; }
.ak-province-price { font-size: 13px; color: var(--ak-muted); font-variant-numeric: tabular-nums; }
.ak-province-count { font-size: 12px; color: var(--ak-green-2); font-weight: 700; }

/* Brent sayfası */
.ak-brent-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.ak-brent-card {
        background: #fff; border: 1px solid var(--ak-line); border-radius: var(--ak-radius);
        padding: 20px; box-shadow: var(--ak-shadow); text-align: center;
}
.ak-brent-card h3 { margin: 0 0 8px; font-size: 15px; color: var(--ak-muted); }
.ak-brent-val { font-size: 32px; font-weight: 800; letter-spacing: -.5px; font-variant-numeric: tabular-nums; color: var(--ak-text); }
.ak-brent-card p { margin: 6px 0 0; font-size: 13px; color: var(--ak-muted); }
.ak-brent-card:first-child { background: linear-gradient(150deg, var(--ak-dark), var(--ak-dark-3)); border-color: transparent; }
.ak-brent-card:first-child h3, .ak-brent-card:first-child p { color: rgba(255, 255, 255, .65); }
.ak-brent-card:first-child .ak-brent-val { color: #ffd57e; }

/* Sıralama listeleri */
.ak-sidecards { display: flex; flex-direction: column; gap: 14px; }
.ak-sidecard { background: #fff; border: 1px solid var(--ak-line); border-radius: var(--ak-radius); padding: 18px 20px; box-shadow: var(--ak-shadow); }
.ak-sidecard h3 { margin: 0 0 10px; font-size: 15.5px; }
.ak-ranking { margin: 0; padding-left: 22px; color: var(--ak-muted); font-size: 14px; }
.ak-ranking li { margin: 6px 0; display: flex; justify-content: space-between; gap: 10px; }
.ak-ranking strong { font-variant-numeric: tabular-nums; color: var(--ak-text); }
.ak-sidecard-links ul { list-style: none; margin: 0; padding: 0; }
.ak-sidecard-links li { padding: 5px 0; font-size: 14.5px; }
.ak-sidecard-links a { display: block; }

/* ---------- SEO + FAQ ---------- */
.ak-section-seo { background: #eef1f6; }
.ak-seo-cols { display: grid; grid-template-columns: 1.5fr 1fr; gap: 26px; align-items: start; }
.ak-seo-text h2, .ak-faq h2 { font-size: 22px; font-weight: 800; margin: 0 0 14px; letter-spacing: -.3px; }
.ak-seo-text p { color: #3d4a60; font-size: 15px; margin: 0 0 12px; }
.ak-faq { background: #fff; border: 1px solid var(--ak-line); border-radius: var(--ak-radius); padding: 20px 22px; box-shadow: var(--ak-shadow); }
.ak-faq-item { border-bottom: 1px solid #eef1f6; }
.ak-faq-item:last-child { border-bottom: none; }
.ak-faq-item summary {
        list-style: none; cursor: pointer; padding: 13px 34px 13px 2px; position: relative;
        font-weight: 700; font-size: 15px; line-height: 1.4;
}
.ak-faq-item summary::-webkit-details-marker { display: none; }
.ak-faq-item summary::after {
        content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
        width: 24px; height: 24px; border-radius: 8px; background: var(--ak-green-soft); color: var(--ak-green-2);
        display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 16px;
        transition: transform .2s;
}
.ak-faq-item[open] summary::after { content: "−"; }
.ak-faq-body p { margin: 0 0 14px; color: #3d4a60; font-size: 14.5px; }

/* ---------- Boş durum ---------- */
.ak-empty {
        background: #fff; border: 1px dashed #cfd8e4; border-radius: var(--ak-radius);
        padding: 34px 24px; text-align: center; color: var(--ak-muted); grid-column: 1 / -1;
}
.ak-empty p { margin: 0 0 14px; }

/* ============================================================
   YAZI SAYFASI
   ============================================================ */
.ak-article-head { padding-top: 26px; }
.ak-article-title { font-size: clamp(24px, 3.4vw, 38px); font-weight: 800; letter-spacing: -.4px; line-height: 1.18; margin: 0 0 10px; }
.ak-article-meta { color: var(--ak-muted); font-size: 14px; display: flex; gap: 12px; }
.ak-article-indirim {
        display: inline-flex; align-items: center; gap: 12px; margin-top: 14px;
        background: var(--ak-green-soft); border: 1px solid rgba(10, 160, 90, .3);
        border-radius: 12px; padding: 12px 18px; color: var(--ak-green-2);
}
.ak-article-indirim.is-up { background: var(--ak-red-soft); border-color: rgba(229, 72, 77, .3); color: #c02631; }
.ak-article-indirim-amount { font-size: 22px; font-weight: 800; font-variant-numeric: tabular-nums; }
.ak-article-figure { margin: 22px 0 0; }
.ak-article-figure img { border-radius: var(--ak-radius); box-shadow: var(--ak-shadow); width: 100%; }
.ak-article-body { padding: 26px 0 34px; max-width: 860px; }
.ak-prose { font-size: 17px; line-height: 1.75; color: #26334a; }
.ak-prose h2 { font-size: 24px; margin: 30px 0 12px; letter-spacing: -.3px; }
.ak-prose h3 { font-size: 19px; margin: 24px 0 10px; }
.ak-prose p { margin: 0 0 16px; }
.ak-prose ul, .ak-prose ol { margin: 0 0 16px; padding-left: 24px; }
.ak-prose img { border-radius: var(--ak-radius-sm); }
.ak-prose a { text-decoration: underline; }
.ak-article-links {
        margin-top: 28px; background: #fff; border: 1px solid var(--ak-line); border-radius: var(--ak-radius);
        padding: 18px 20px; box-shadow: var(--ak-shadow);
}
.ak-article-links h3 { margin: 0 0 8px; font-size: 15px; }
.ak-article-links ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Sayfalama ---------- */
.ak-pagination, .pagination { margin-top: 28px; }
.ak-pagination .nav-links, .pagination .nav-links { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.page-numbers {
        display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px;
        border-radius: 10px; border: 1px solid var(--ak-line); background: #fff; color: var(--ak-text);
        font-weight: 700; font-size: 14.5px; padding: 0 12px;
}
.page-numbers:hover { border-color: var(--ak-green); color: var(--ak-green-2); }
.page-numbers.current { background: var(--ak-green); border-color: var(--ak-green); color: #fff; }

/* ---------- 404 ---------- */
.ak-404 { text-align: center; padding: 80px 0; }
.ak-404 h1 { font-size: 84px; margin: 0; color: var(--ak-green); font-weight: 800; letter-spacing: -2px; }
.ak-404 p { color: var(--ak-muted); font-size: 17px; }
.ak-404-links { display: flex; gap: 12px; justify-content: center; margin-top: 22px; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.ak-footer { background: var(--ak-dark); color: rgba(255, 255, 255, .72); margin-top: auto; }
.ak-footer-inner { max-width: 1200px; margin: 0 auto; padding: 46px 20px 24px; }
.ak-footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 28px; }
.ak-footer-col h3 {
        color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: .8px;
        margin: 0 0 14px; font-weight: 800;
}
.ak-footer-col ul { list-style: none; margin: 0; padding: 0; }
.ak-footer-col li { margin: 7px 0; font-size: 14.5px; }
.ak-footer-col a { color: rgba(255, 255, 255, .72); }
.ak-footer-col a:hover { color: #39d98a; }
.ak-footer-about p { font-size: 14.5px; margin: 14px 0 0; max-width: 380px; }
.ak-logo-footer .ak-logo-text { color: #fff; }
.ak-footer-note { border-top: 1px solid rgba(255, 255, 255, .1); margin-top: 30px; padding-top: 18px; }
.ak-footer-note p { margin: 0; font-size: 13px; color: rgba(255, 255, 255, .5); }
.ak-footer-bottom { border-top: 1px solid rgba(255, 255, 255, .1); margin-top: 16px; padding-top: 18px; display: flex; justify-content: space-between; gap: 14px; align-items: center; flex-wrap: wrap; }
.ak-footer-bottom p { margin: 0; font-size: 13.5px; }
.ak-footer-menu { list-style: none; display: flex; gap: 18px; margin: 0; padding: 0; }
.ak-footer-menu a { font-size: 13.5px; color: rgba(255, 255, 255, .6); }
.ak-footer-menu a:hover { color: #39d98a; }

/* ---------- Widget ---------- */
.ak-widget { background: #fff; border: 1px solid var(--ak-line); border-radius: var(--ak-radius); padding: 18px 20px; box-shadow: var(--ak-shadow); margin-bottom: 16px; }
.ak-widget-title { margin: 0 0 10px; font-size: 16px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1180px) {
        .ak-carousel-item { flex-basis: calc((100% - 48px) / 4); }
        .ak-info-grid, .ak-brent-grid { grid-template-columns: repeat(2, 1fr); }
        .ak-price-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
        .ak-nav-toggle { display: inline-flex; }
        .ak-nav {
                position: fixed; top: 64px; left: 0; right: 0; z-index: 99;
                background: var(--ak-dark-2); border-bottom: 1px solid rgba(255, 255, 255, .1);
                max-height: 0; overflow: hidden; transition: max-height .25s ease;
                margin: 0; padding: 0 16px;
        }
        body.ak-nav-open .ak-nav { max-height: 480px; padding: 12px 16px 18px; box-shadow: var(--ak-shadow-lg); }
        .ak-menu { flex-direction: column; gap: 2px; }
        .ak-menu a { padding: 12px 14px; font-size: 15.5px; }
        .ak-hero-grid, .ak-pagehero-grid { grid-template-columns: 1fr; }
        .ak-hero-figure { display: none; }
        .ak-seo-cols { grid-template-columns: 1fr; }
        .ak-carousel-item { flex-basis: calc((100% - 32px) / 3); }
}

@media (max-width: 1080px) {
        .ak-indirim-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
        .ak-section { padding: 32px 0; }
        .ak-indirim-grid { grid-template-columns: 1fr; }
        .ak-news-grid { grid-template-columns: repeat(2, 1fr); }
        .ak-ist-split { grid-template-columns: 1fr; }
        .ak-pagehero-prices { justify-content: flex-start; }
        .ak-btn-cta { display: none; }
        .ak-footer-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}

@media (max-width: 620px) {
        .ak-carousel-item { flex-basis: calc((100% - 16px) / 2); }
        .ak-price-cards { grid-template-columns: 1fr; }
        .ak-info-grid, .ak-brent-grid { grid-template-columns: 1fr; }
        .ak-news-grid { grid-template-columns: 1fr; }
        .ak-hero { padding: 30px 0 26px; }
        .ak-hero-city select { min-width: 150px; }
        .ak-carousel-prev, .ak-carousel-next { display: none; }
        .ak-logo-tld { display: none; }
        .ak-footer-grid { grid-template-columns: 1fr; }
        .ak-footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 430px) {
        .ak-carousel-item { flex-basis: 100%; }
        .ak-logo-text { font-size: 16.5px; }
}

/* Motion preference */
@media (prefers-reduced-motion: reduce) {
        *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
        html { scroll-behavior: auto; }
}
