﻿:root {
    --bg: #f6f7f9;
    --text: #0f172a;
    --muted: #64748b;
    --border: #e5e7eb;
    --green: #22c55e;
    --green-700: #16a34a;
    --green-soft: #e8f9ef;
    --card: #ffffff;
    --shadow: 0 18px 45px rgba(15, 23, 42, .08);
}

* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
}

/* layout */
.container {
    width: min(1160px, calc(100% - 48px));
    margin: 0 auto;
}

.page {
    padding: 28px 0 60px;
}

/* topbar */
.topbar {
    position: sticky;
    top: 0;
    z-index: 10;
    background: #fff;
    border-bottom: 1px solid var(--border);
}

.topbar-inner {
    height: 72px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    font-weight: 800;
}

.logo {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: var(--green);
    color: #fff;
    font-weight: 900;
}

.brand-text {
    font-size: 20px;
}

.top-search {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 10px 14px;
    max-width: 560px;
    margin: 0 10px;
}

.search-ic {
    opacity: .6;
}

.top-search-input {
    width: 100%;
    border: 0;
    outline: 0;
    font-size: 14px;
    background: transparent;
}

.top-nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

.navlink {
    text-decoration: none;
    color: #475569;
    font-weight: 600;
}

    .navlink:hover {
        color: #111827;
    }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: #fff;
    color: #111827;
    font-weight: 700;
    text-decoration: none;
}

.btn-primary {
    border-color: transparent;
    background: var(--green);
    color: #fff;
    box-shadow: 0 12px 30px rgba(34,197,94,.25);
}

    .btn-primary:hover {
        background: var(--green-700);
    }

/* HOW IT WORKS */
.section {
    padding: 56px 0;
}

.section-title {
    text-align: center;
    font-size: 40px;
    margin: 0;
    letter-spacing: -.02em;
}

.section-subtitle {
    text-align: center;
    margin: 10px 0 34px;
    color: var(--muted);
    font-size: 18px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card {
    position: relative;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 34px 28px 28px;
    box-shadow: var(--shadow);
    min-height: 260px;
}

.badge-num {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: var(--green);
    color: #fff;
    font-weight: 900;
    border: 6px solid var(--bg);
}

.iconbox {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: var(--green-soft);
    display: grid;
    place-items: center;
    margin: 8px auto 18px;
    border: 1px solid rgba(34,197,94,.15);
    font-size: 28px;
}

.card h3 {
    text-align: center;
    margin: 0 0 10px;
    font-size: 24px;
}

.card p {
    text-align: center;
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
}

/* responsive */
@media (max-width: 980px) {
    .cards {
        grid-template-columns: 1fr;
    }

    .top-search {
        display: none;
    }

    .section-title {
        font-size: 34px;
    }
}
/* HERO */
.hero {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    margin-top: 18px;
    padding: 80px 0 70px;
    background: #0b1220;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url(img/hero.jpg) center/cover no-repeat repeat;
    transform: scale(1.03);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(900px 500px at 30% 30%, rgba(255,255,255,.10), transparent 60%), linear-gradient(90deg, rgba(3,7,18,.78) 0%, rgba(3,7,18,.55) 55%, rgba(3,7,18,.35) 100%);
}

.hero-inner {
    position: relative;
    z-index: 1;
}

.hero-title {
    margin: 0;
    font-size: 62px;
    line-height: 1.02;
    letter-spacing: -.03em;
    color: #fff;
    max-width: 720px;
}

.hero-accent {
    color: var(--green);
}

.hero-sub {
    margin: 18px 0 26px;
    color: rgba(255,255,255,.75);
    font-size: 18px;
    max-width: 680px;
}

.hero-search {
    display: flex;
    gap: 14px;
    align-items: center;
    margin: 12px 0 18px;
    max-width: 740px;
}

.hero-search-input {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,.95);
    border-radius: 14px;
    padding: 14px 16px;
    box-shadow: 0 18px 45px rgba(0,0,0,.22);
}

    .hero-search-input input {
        width: 100%;
        border: 0;
        outline: 0;
        background: transparent;
        font-size: 15px;
    }

.hero-search-icon {
    opacity: .6;
}

.hero-search-btn {
    padding: 14px 22px;
    border-radius: 14px;
}

.hero-chips-title {
    color: rgba(255,255,255,.55);
    margin-top: 16px;
    font-size: 14px;
}

.hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.14);
    color: rgba(255,255,255,.85);
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
}

    .chip:hover {
        background: rgba(255,255,255,.18);
    }

@media (max-width: 980px) {
    .hero {
        padding: 54px 0 48px;
    }

    .hero-title {
        font-size: 44px;
    }

    .hero-search {
        flex-direction: column;
        align-items: stretch;
    }
}
/* STATS BAR */
.stats {
    background: #fff;
    border-bottom: 1px solid #eef2f6;
}

.stats-inner {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 10px;
    padding: 26px 0;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 44px;
    font-weight: 800;
    color: #16a34a; /* yeşil */
    line-height: 1;
}

.stat-label {
    margin-top: 8px;
    color: #6b7280;
    font-size: 14px;
}

.star {
    color: #f59e0b;
    font-size: .9em;
}

/* CATEGORIES SECTION */
.cats {
    background: #fff;
    padding: 44px 0 34px;
}

.cats-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.cats h2 {
    margin: 0;
    font-size: 40px;
}

.cats p {
    margin: 8px 0 0;
    color: #6b7280;
}

.cats-all {
    color: #16a34a;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .cats-all span {
        font-size: 18px;
    }

/* Chips */
.cats-chips {
    margin-top: 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #e6eaf0;
    color: #111827;
    text-decoration: none;
    font-weight: 600;
}

    .chip:hover {
        border-color: #cfe8d8;
        box-shadow: 0 8px 20px rgba(0,0,0,.05);
    }

.chip-active {
    background: #22c55e;
    border-color: #22c55e;
    color: #fff;
}

/* FEATURED (şimdilik başlık alanı) */
.featured {
    background: #fff;
    padding: 40px 0 70px;
}

.featured-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.featured h2 {
    margin: 0;
    font-size: 40px;
}

.featured p {
    margin: 8px 0 0;
    color: #6b7280;
}

@media (max-width: 960px) {
    .stats-inner {
        grid-template-columns: repeat(2,1fr);
    }

    .cats-head, .featured-head {
        align-items: flex-start;
        flex-direction: column;
    }
}
/* GÜVENLİ ÖDEME SİSTEMİ */
.pay {
    padding: 90px 0;
    background: #0b1220;
}

.pay-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.pay-title {
    margin: 0 0 14px;
    font-size: 48px;
    color: #fff;
    letter-spacing: -.02em;
}

.pay-sub {
    margin: 0 0 26px;
    color: rgba(255,255,255,.75);
    font-size: 18px;
    line-height: 1.6;
}

.pay-list {
    list-style: none;
    padding: 0;
    margin: 0 0 34px;
    display: grid;
    gap: 14px;
}

    .pay-list li {
        display: flex;
        gap: 12px;
        align-items: flex-start;
        color: rgba(255,255,255,.85);
        font-size: 16px;
    }

    .pay-list .check {
        width: 22px;
        height: 22px;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(25,184,106,.12);
        color: #19b86a;
        font-weight: 800;
        line-height: 1;
        margin-top: 1px;
    }

.pay-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* butonlar */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 14px;
    font-weight: 700;
}

.btn-success {
    background: #19b86a;
    color: #fff;
    box-shadow: 0 14px 30px rgba(25,184,106,.25);
}

    .btn-success:hover {
        filter: brightness(1.03);
    }

.btn-ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,.18);
}

    .btn-ghost:hover {
        background: rgba(255,255,255,.06);
    }

/* sağ kart */
.pay-cardwrap {
    background: radial-gradient(900px 520px at 30% 30%, rgba(25,184,106,.22), transparent 55%);
    border-radius: 26px;
    padding: 34px;
}

.pay-card {
    background: #fff;
    border-radius: 18px;
    padding: 28px 28px 22px;
    box-shadow: 0 30px 90px rgba(0,0,0,.35);
}

.pay-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

.pay-card-title {
    color: #6b7280;
    font-weight: 700;
}

.pay-pill {
    background: #fff7e6;
    color: #f59e0b;
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 12px;
}

.pay-amount {
    font-size: 42px;
    font-weight: 900;
    letter-spacing: -.02em;
    color: #0b1220;
    margin: 6px 0 16px;
}

.pay-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 0;
    color: #6b7280;
}

.pay-row-val {
    color: #0b1220;
    font-weight: 800;
}

.pay-sep {
    height: 1px;
    background: #e5e7eb;
    margin: 14px 0;
}

.pay-safe {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #19b86a;
    font-weight: 800;
}

    .pay-safe .shield {
        font-size: 18px;
    }

@media (max-width: 980px) {
    .pay-inner {
        grid-template-columns: 1fr;
    }

    .pay-title {
        font-size: 38px;
    }

    .pay-cardwrap {
        padding: 22px;
    }
}
/* ===== KEŞFET (Explore) ===== */
.explore {
    background: #f6f7f9;
    padding: 48px 0 70px;
}

.explore-title {
    margin: 0 0 18px;
    font-size: 44px;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: #0f172a;
}

/* chips */
.explore-chips {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 0 18px;
}

    .explore-chips .chip {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        height: 44px;
        padding: 0 16px;
        border-radius: 999px;
        border: 1px solid #e5e7eb;
        background: #fff;
        color: #334155;
        font-weight: 600;
        text-decoration: none;
        box-shadow: 0 1px 0 rgba(16,24,40,.04);
    }

        .explore-chips .chip:hover {
            border-color: #d1d5db;
        }

    .explore-chips .chip-active {
        background: #16a34a;
        border-color: #16a34a;
        color: #fff;
    }

/* filters row */
.explore-filters {
    display: grid;
    grid-template-columns: 1fr 220px 220px;
    gap: 14px;
    align-items: center;
    margin: 12px 0 34px;
}

.filter-search {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 52px;
    padding: 0 16px;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    background: #fff;
    box-shadow: 0 1px 0 rgba(16,24,40,.04);
}

    .filter-search input {
        width: 100%;
        border: 0;
        outline: none;
        font-size: 15px;
        color: #111827;
        background: transparent;
    }

.filter-icon {
    opacity: .55;
    font-size: 16px;
}

.filter-select {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 52px;
    padding: 0 14px;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    background: #fff;
    box-shadow: 0 1px 0 rgba(16,24,40,.04);
}

    .filter-select select {
        width: 100%;
        height: 100%;
        border: 0;
        outline: none;
        font-size: 15px;
        background: transparent;
        color: #111827;
    }

/* placeholder */
.explore-placeholder {
    display: flex;
    justify-content: center;
    padding: 60px 0 10px;
}

.placeholder-card {
    width: min(680px, 100%);
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(15,23,42,.06);
}

.placeholder-text {
    font-size: 16px;
    color: #475569;
    margin-bottom: 16px;
}

/* button - outline (Filtreleri Temizle) */
.btn.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 0 16px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #0f172a;
    font-weight: 700;
    text-decoration: none;
}

    .btn.btn-outline:hover {
        border-color: #cbd5e1;
    }

@media (max-width: 980px) {
    .explore-filters {
        grid-template-columns: 1fr;
    }
}
