@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/*
 * Tema sistemi: tüm renkler CSS değişkeni (custom property) olarak tanımlanır,
 * hiçbir yerde ham hex renk kullanılmaz — yeni bir tema eklemek için tek yapılması
 * gereken bu bloktaki (veya [data-theme="..."] ile ayrı bir bloktaki) değerleri
 * değiştirmektir. Aktif tema: "Türkiye" (bayrak kırmızısı + beyaz).
 */
:root {
    --navy: #E30A17;
    --blue-deep: #A80E17;
    --blue: #C21422;
    --blue-bright: #E30A17;
    --teal: #ffffff;
    --teal-light: #ffe8e8;
    --gold: #ffffff;
    --gold-light: #ffe8e8;
    --gold-pale: #fdebec;
    --success: #1f7a4d;
    --bg: #fbf7f7;
    --card: #ffffff;
    --text: #1a1414;
    --text-muted: #6b5a5a;
    --border: #f0d8da;
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

/* ---- Alternatif temalar: html[data-theme] ile aktifleşir, tema seçici widget'ı yönetir ---- */
html[data-theme="lacivert-altin"] {
    --navy: #0a1628; --blue-deep: #12233a; --blue: #1c3a5e; --blue-bright: #1e3a5f;
    --teal: #b5904a; --teal-light: #d8bd85; --gold: #b5904a; --gold-light: #d8bd85; --gold-pale: #f4ecd9;
    --bg: #f7f5f0; --card: #ffffff; --text: #191c22; --text-muted: #5c6472; --border: #e4ddc9;
}
html[data-theme="zumrut"] {
    --navy: #0b3d2e; --blue-deep: #0f5c44; --blue: #147a58; --blue-bright: #189d6f;
    --teal: #c9a227; --teal-light: #e6cf7a; --gold: #c9a227; --gold-light: #e6cf7a; --gold-pale: #f3ecd2;
    --bg: #f6f8f4; --card: #ffffff; --text: #16241c; --text-muted: #5c6f64; --border: #dbe6dd;
}
html[data-theme="okyanus"] {
    --navy: #0a3a5c; --blue-deep: #0e4d78; --blue: #12608f; --blue-bright: #1479b3;
    --teal: #4fc3d9; --teal-light: #a9e4ef; --gold: #4fc3d9; --gold-light: #a9e4ef; --gold-pale: #e3f6f9;
    --bg: #f3f9fb; --card: #ffffff; --text: #12232d; --text-muted: #566b76; --border: #d7ecf1;
}
html[data-theme="koyu"] {
    --navy: #0b0e14; --blue-deep: #141922; --blue: #1c2430; --blue-bright: #d8bd85;
    --teal: #d8bd85; --teal-light: #eddcb5; --gold: #d8bd85; --gold-light: #eddcb5; --gold-pale: #23272f;
    --bg: #12151b; --card: #1a1e26; --text: #eef0f3; --text-muted: #9aa4b2; --border: #262c36;
}

* { box-sizing: border-box; }
body {
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    margin: 0;
    background: var(--bg);
    color: var(--text);
    line-height: 1.55;
}
a { text-decoration: none; color: inherit; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
i.fa, i.fas, i.fab { line-height: 1; }
h1, h2, h3 { font-family: var(--font-display); }

/* ---- Mobil uygulama tanıtım şeridi (sadece mobil genişlikte, kapatılabilir) ---- */
.app-promo-bar {
    display: none;
    background: var(--navy);
    color: #fff;
    border-bottom: 1px solid var(--gold);
}
.app-promo-bar.is-hidden { display: none !important; }
@media (max-width: 760px) {
    .app-promo-bar:not(.is-hidden) { display: block; }
}
.app-promo-inner {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 20px; font-size: 12.5px;
}
.app-promo-text { flex: 1; display: flex; align-items: center; gap: 7px; }
.app-promo-text i { color: var(--gold-light); }
.app-promo-btn {
    background: var(--gold); color: var(--navy); font-weight: 700;
    padding: 6px 12px; border-radius: 20px; font-size: 12px; white-space: nowrap;
    display: flex; align-items: center; gap: 6px; flex-shrink: 0;
}
.app-promo-close {
    background: transparent; border: none; color: #fff; opacity: 0.7;
    font-size: 15px; cursor: pointer; padding: 4px; flex-shrink: 0;
}
.app-promo-close:hover { opacity: 1; }

/* Üst iletişim şeridi */
.topbar {
    background: var(--navy);
    color: #9aa7ba;
    font-size: 12px;
    letter-spacing: 0.01em;
    padding: 8px 0;
    border-bottom: 1px solid var(--gold);
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.topbar-left, .topbar-right { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar a { display: flex; align-items: center; gap: 6px; }
.topbar a:hover { color: #fff; }
.topbar-right span { display: flex; align-items: center; gap: 6px; }
.topbar i { color: var(--gold-light); font-size: 12px; }

/* Ana header */
header.site-header {
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 2px rgba(10,22,40,0.06);
}
.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px;
    padding: 16px 20px;
}
.logo { font-family: var(--font-display); font-size: 21px; font-weight: 700; display: flex; align-items: center; gap: 12px; color: var(--navy); }
.logo-mark {
    width: 40px; height: 40px; border-radius: 4px;
    background: var(--navy);
    border: 1px solid var(--gold);
    color: var(--gold-light); display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0;
}
.logo-text { letter-spacing: 0.2px; font-size: 23px; }
.logo-img { height: 64px; width: auto; display: block; }
.footer-logo-img { height: 140px; width: auto; display: block; margin-bottom: 12px; }

.search-form { display: flex; flex: 1; max-width: 420px; min-width: 180px; }
.search-form input {
    padding: 10px 14px; border: 1px solid var(--border); border-right: none; border-radius: 4px 0 0 4px; width: 100%; font-size: 14px; font-family: inherit;
}
.search-form input:focus { outline: none; border-color: var(--blue-bright); }
.search-form button {
    padding: 0 16px; border: none; background: var(--navy); color: var(--gold-light); border-radius: 0 4px 4px 0; cursor: pointer;
}
.search-form button:hover { background: var(--blue-bright); }

.nav-links { display: flex; gap: 4px; align-items: center; flex-wrap: wrap; }
.icon-link {
    padding: 9px 12px; border-radius: 4px; font-size: 14px; display: flex; align-items: center; gap: 7px;
    color: var(--text); position: relative; font-weight: 500;
}
.icon-link i { color: var(--text-muted); font-size: 15px; }
.icon-link:hover { background: var(--gold-pale); }
.icon-link:hover i { color: var(--blue-bright); }
.cart-count {
    background: var(--navy); color: var(--gold-light); font-size: 11px; font-weight: 700;
    border-radius: 20px; padding: 1px 7px; margin-left: -2px;
}
.btn-pill {
    background: var(--navy); color: var(--gold-light); padding: 9px 18px; border-radius: 4px;
    font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 7px;
    border: 1px solid var(--navy);
}
.btn-pill:hover { background: var(--blue-deep); }

/* Kategori navigasyon çubuğu */
.category-nav { background: #faf8f3; border-top: 1px solid var(--border); }
.category-nav-bar { padding: 0; }
.category-nav-row { display: flex; gap: 4px; flex-wrap: wrap; padding: 4px 20px; }
.category-nav-row a {
    padding: 10px 14px; font-size: 13.5px; font-weight: 500; color: var(--text-muted);
    display: flex; align-items: center; gap: 7px; border-bottom: 2px solid transparent;
}
.category-nav-row a i { color: var(--gold); font-size: 13px; }
.category-nav-row a:hover { color: var(--blue-deep); border-bottom-color: var(--gold); }
.category-nav-toggle { display: none; }

/* Amiral (flagship) bağlantısı — diğerlerinden görsel olarak öne çıkar */
.nav-flagship-link { color: var(--blue-deep) !important; font-weight: 700 !important; }
.nav-flagship-link i { color: var(--blue-bright) !important; }

/* "Hizmetlerimiz" mega menü */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
    padding: 10px 14px; font-size: 13.5px; font-weight: 600; color: var(--text);
    display: flex; align-items: center; gap: 7px; background: none; border: none; cursor: pointer;
    font-family: inherit; border-bottom: 2px solid transparent;
}
.nav-dropdown-trigger i:first-child { color: var(--gold); font-size: 13px; }
.nav-dropdown-trigger .nav-caret { font-size: 10px; color: var(--text-muted); transition: transform .15s ease; }
.nav-dropdown-trigger:hover { color: var(--blue-deep); border-bottom-color: var(--gold); }
.nav-dropdown-trigger[aria-expanded="true"] .nav-caret { transform: rotate(180deg); }

.nav-mega-panel {
    display: none;
    position: absolute; top: 100%; left: 0; margin-top: 1px;
    background: #fff; border: 1px solid var(--border); border-radius: 8px;
    box-shadow: 0 12px 28px rgba(10,22,40,0.14);
    padding: 18px; width: 620px; max-width: 90vw; z-index: 200;
}
.nav-mega-panel.is-open { display: block; }
.nav-mega-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.nav-mega-item { display: flex; align-items: flex-start; gap: 12px; padding: 10px; border-radius: 6px; }
.nav-mega-item:hover { background: var(--gold-pale); }
.nav-mega-item-icon {
    width: 34px; height: 34px; border-radius: 6px; background: var(--navy); color: var(--gold-light);
    display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0;
}
.nav-mega-item-title { font-size: 13.5px; font-weight: 600; color: var(--text); }
.nav-mega-item-desc { font-size: 12px; color: var(--text-muted); margin-top: 2px; line-height: 1.4; }
.nav-mega-resources { border-top: 1px solid var(--border); margin-top: 14px; padding-top: 14px; display: flex; flex-wrap: wrap; align-items: center; gap: 6px 16px; }
.nav-mega-resources-title { font-size: 12px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .03em; display: flex; align-items: center; gap: 6px; width: 100%; margin-bottom: 4px; }
.nav-mega-resources a { font-size: 13px; color: var(--text-muted); }
.nav-mega-resources a:hover { color: var(--blue-deep); }

@media (max-width: 860px) {
    .category-nav-toggle {
        display: flex; align-items: center; gap: 9px; width: 100%;
        padding: 12px 20px; background: none; border: none; cursor: pointer;
        font-size: 13.5px; font-weight: 600; color: var(--blue-deep); font-family: inherit;
    }
    .category-nav-toggle i.fa-bars { color: var(--gold); font-size: 14px; }
    .category-nav-toggle .fa-chevron-down { margin-left: auto; transition: transform .15s ease; font-size: 11px; color: var(--text-muted); }
    .category-nav-toggle[aria-expanded="true"] .fa-chevron-down { transform: rotate(180deg); }
    .category-nav-row {
        flex-direction: column; gap: 0; padding: 0 20px; max-height: 0; overflow: hidden;
        border-top: 1px solid var(--border);
    }
    .category-nav-row.is-open { max-height: 70vh; overflow-y: auto; padding: 6px 20px 12px; }
    .category-nav-row a { padding: 11px 4px; border-bottom: 1px solid var(--border); }
    .category-nav-row a:last-child { border-bottom: none; }

    /* Mobilde mega menü, açılır panel değil — akordeon içinde düz bir blok olarak genişler */
    .nav-dropdown-trigger { width: 100%; padding: 11px 4px; border-bottom: 1px solid var(--border); }
    .nav-mega-panel {
        display: none; position: static; width: auto; max-width: none; box-shadow: none;
        border: none; border-radius: 0; padding: 4px 0 8px 12px; margin-top: 0;
    }
    .nav-mega-panel.is-open { display: block; }
    .nav-mega-grid { grid-template-columns: 1fr; }
    .nav-mega-item { padding: 8px 0; }
    .nav-mega-item-icon { width: 28px; height: 28px; font-size: 12px; }
    .nav-mega-resources { padding-top: 10px; margin-top: 8px; }
}

/* Hero */
.hero {
    background: linear-gradient(160deg, var(--navy) 0%, #5c0206 100%);
    color: #fff;
    padding: 56px 0 64px;
    text-align: center;
    border-bottom: 3px solid var(--gold);
}
.hero h1 { font-size: 34px; margin: 0 0 14px; }
.hero p { color: #b9c2d1; max-width: 640px; margin: 0 auto 26px; font-size: 16px; }
.hero-badges { display: flex; justify-content: center; gap: 26px; flex-wrap: wrap; margin-top: 30px; font-size: 14px; color: #c7cedb; }
.hero-badges span { display: flex; align-items: center; gap: 8px; }
.hero-badges i { color: var(--gold-light); font-size: 18px; }

main { min-height: 60vh; padding: 34px 0; }

.section-title { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.section-title i { color: var(--gold); }
.section-title h1 { font-weight: 700; }

.categories-bar {
    display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 26px;
}
.categories-bar a {
    background: #fff; border: 1px solid var(--border); padding: 8px 16px; border-radius: 4px; font-size: 14px;
    display: flex; align-items: center; gap: 8px; color: var(--text);
}
.categories-bar a i { color: var(--gold); }
.categories-bar a:hover, .categories-bar a.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.categories-bar a:hover i, .categories-bar a.active i { color: var(--gold-light); }

.product-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 22px;
}
.product-card {
    background: var(--card); border-radius: 6px; padding: 24px; box-shadow: 0 1px 3px rgba(10,22,40,0.06);
    border: 1px solid var(--border); border-top: 2px solid var(--navy);
    display: flex; flex-direction: column; position: relative; transition: transform .15s, box-shadow .15s;
}
.product-card:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(10,22,40,0.10); border-top-color: var(--gold); }
.product-card .icon-badge {
    width: 52px; height: 52px; border-radius: 4px;
    background: var(--navy); border: 1px solid var(--gold);
    display: flex; align-items: center; justify-content: center; color: var(--gold-light); font-size: 21px; margin-bottom: 16px;
}
.featured-tag {
    position: absolute; top: 16px; right: 16px; background: var(--navy); color: var(--gold-light);
    font-size: 10.5px; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase;
    padding: 4px 10px; border-radius: 3px; display: flex; align-items: center; gap: 4px;
}
.product-card h3 { font-size: 17px; margin: 0 0 8px; font-weight: 700; }
.product-card .desc { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; min-height: 36px; }
.product-card .price { font-weight: 700; color: var(--blue-deep); margin-bottom: 4px; font-size: 20px; font-family: var(--font-display); }
.product-card .price small { font-weight: 400; font-size: 12px; color: var(--text-muted); font-family: 'Inter', sans-serif; }
.product-card .btn { margin-top: auto; }

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    background: var(--navy); color: #fff; padding: 12px 20px;
    border: 1px solid var(--navy); border-radius: 4px; cursor: pointer; font-size: 14px; font-weight: 600; text-align: center;
    transition: background .15s, border-color .15s;
}
.btn:hover { background: var(--blue-deep); }
.btn.secondary { background: #fff; color: var(--navy); border-color: var(--border); }
.btn.secondary:hover { background: #f4f2ec; border-color: var(--navy); }
.btn.danger { background: #8f2323; border-color: #8f2323; }
.btn.danger:hover { background: #6f1a1a; }
.btn.teal { background: var(--navy); border-color: var(--gold); color: var(--gold-light); }
.btn.teal:hover { background: var(--blue-deep); }
.btn.btn-outline { background: transparent; border: 1px solid rgba(255,255,255,0.5); }

form.stacked { display: flex; flex-direction: column; gap: 14px; max-width: 440px; }
form.stacked label { font-weight: 600; font-size: 13.5px; color: var(--blue-deep); }
form.stacked input, form.stacked textarea, form.stacked select {
    padding: 11px 12px; border: 1px solid var(--border); border-radius: 4px; font-size: 14px; font-family: inherit;
}
form.stacked input:focus, form.stacked textarea:focus, form.stacked select:focus {
    outline: none; border-color: var(--blue-bright); box-shadow: 0 0 0 3px rgba(30,58,95,0.12);
}

.auth-card {
    background: #fff; max-width: 460px; margin: 0 auto; padding: 36px; border-radius: 6px;
    border: 1px solid var(--border); border-top: 3px solid var(--navy); box-shadow: 0 4px 18px rgba(10,22,40,0.06);
}
.auth-card h1 { display: flex; align-items: center; gap: 10px; font-size: 22px; font-weight: 700; }
.auth-card h1 i { color: var(--gold); }
.auth-hint { font-size: 12px; color: var(--text-muted); margin-top: -6px; }

.alert { padding: 12px 16px; border-radius: 4px; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; font-size: 14px; }
.alert-error { background: #fdf2f2; color: #8f2323; border: 1px solid #f0cccc; }
.alert-success { background: #f1f8f2; color: #1f5c34; border: 1px solid #c7e0cc; }

table.data-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 4px; overflow: hidden; }
table.data-table th, table.data-table td {
    padding: 12px 14px; border-bottom: 1px solid var(--border); text-align: left; font-size: 14px;
}
table.data-table th { background: var(--navy); color: var(--gold-light); font-weight: 600; font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.03em; }

.cart-row { display: flex; align-items: center; justify-content: space-between; background: #fff; padding: 14px 18px; border-radius: 4px; margin-bottom: 10px; border: 1px solid var(--border); flex-wrap: wrap; gap: 10px; }
.cart-row form { display: flex; gap: 8px; align-items: center; }
.cart-row input[type=number] { width: 64px; padding: 7px; border: 1px solid var(--border); border-radius: 4px; }

.total-box { text-align: right; font-size: 22px; font-weight: 700; margin: 20px 0; color: var(--blue-deep); font-family: var(--font-display); }

footer.site-footer { background: var(--navy); color: #9aa7ba; padding: 44px 0 24px; margin-top: 50px; font-size: 14px; border-top: 3px solid var(--gold); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 26px; margin-bottom: 26px; }
.footer-grid h4 { font-family: var(--font-display); color: var(--gold-light); margin: 0 0 12px; font-size: 15px; font-weight: 700; }
.footer-grid a { display: block; padding: 4px 0; color: #9aa7ba; }
.footer-grid a:hover { color: #fff; }
.footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 18px; font-size: 13px; display: flex; flex-direction: column; gap: 6px; align-items: center; }
.footer-badges { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; }
.footer-badges span { display: flex; align-items: center; gap: 6px; }
.footer-badges i { color: var(--gold-light); }

.product-detail { display: flex; gap: 34px; flex-wrap: wrap; background: #fff; padding: 32px; border-radius: 6px; border: 1px solid var(--border); border-top: 3px solid var(--navy); }
.product-detail .icon-badge {
    width: 130px; height: 130px; border-radius: 6px; flex-shrink: 0;
    background: var(--navy); border: 1px solid var(--gold);
    display: flex; align-items: center; justify-content: center; color: var(--gold-light); font-size: 50px;
}
.product-detail .info { flex: 1; min-width: 260px; }
.product-detail .price { font-size: 28px; color: var(--blue-deep); font-weight: 700; margin: 14px 0; font-family: var(--font-display); }
.product-detail .price small { font-size: 14px; font-weight: 400; color: var(--text-muted); font-family: 'Inter', sans-serif; }
.feature-list { list-style: none; padding: 0; margin: 16px 0; }
.feature-list li { display: flex; align-items: center; gap: 10px; padding: 7px 0; font-size: 14px; }
.feature-list i { color: var(--success); }

.badge-pill {
    display: inline-flex; align-items: center; gap: 6px; background: var(--gold-pale); color: var(--blue-deep);
    padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 600;
}

.checkbox-row { display: flex; align-items: center; gap: 8px; font-weight: 500 !important; }

/* ================= Ana sayfa ================= */
.hero-pro { padding: 68px 0 0; text-align: center; }
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px; background: rgba(213,187,133,0.14); color: var(--gold-light);
    border: 1px solid rgba(213,187,133,0.35);
    padding: 6px 18px; border-radius: 20px; font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 22px;
}
.hero-pro h1 { font-family: var(--font-display); font-size: 44px; line-height: 1.15; margin: 0 0 16px; letter-spacing: -0.3px; font-weight: 700; }
.hero-pro p { color: #b9c2d1; max-width: 620px; margin: 0 auto 32px; font-size: 17px; }

.domain-search-form { display: flex; max-width: 560px; margin: 0 auto; box-shadow: 0 14px 34px rgba(0,0,0,0.3); border-radius: 4px; overflow: hidden; border: 1px solid var(--gold); }
.domain-search-form input {
    flex: 1; padding: 17px 18px; border: none; font-size: 15px; font-family: inherit;
}
.domain-search-form input:focus { outline: none; }
.domain-search-form button {
    padding: 0 28px; border: none; background: var(--gold); color: var(--navy); font-weight: 700; font-size: 14px; cursor: pointer;
    display: flex; align-items: center; gap: 8px; white-space: nowrap;
}
.domain-search-form button:hover { background: var(--gold-light); }
.hero-domain-search { margin-bottom: 36px; }

/* ---- Kuryemax Plus amiral ürün bandı ---- */
.flagship-banner {
    position: relative; overflow: hidden;
    display: flex; align-items: center; gap: 40px; flex-wrap: wrap;
    background: linear-gradient(160deg, var(--navy) 0%, #5c0206 100%);
    border-radius: 6px; padding: 40px 42px; margin: 40px 0 8px;
    border-bottom: 3px solid var(--gold);
    box-shadow: 0 16px 40px -14px rgba(10,22,40,0.5);
}
.flagship-banner::before {
    content: ''; position: absolute; top: -100px; right: -80px; width: 300px; height: 300px;
    border-radius: 50%; background: radial-gradient(circle, rgba(213,187,133,0.14), transparent 70%);
    pointer-events: none;
}
.flagship-visual { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 18px; flex-shrink: 0; }
.flagship-app-icon {
    width: 96px; height: 96px; border-radius: 22px;
    box-shadow: 0 12px 28px -8px rgba(0,0,0,0.5);
    background: #fff; padding: 8px; object-fit: contain;
}
.flagship-screenshot {
    width: 190px; border-radius: 14px; border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 20px 44px -14px rgba(0,0,0,0.6);
}
.flagship-platform-row { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.flagship-platform-row span {
    display: flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 600; color: #b9c2d1;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); padding: 5px 10px; border-radius: 20px;
}
.flagship-platform-row i { color: var(--gold-light); }
.flagship-content { position: relative; z-index: 1; flex: 1; min-width: 280px; color: #fff; }
.flagship-badge {
    display: inline-flex; align-items: center; gap: 7px; background: rgba(213,187,133,0.15); color: var(--gold-light);
    border: 1px solid rgba(213,187,133,0.35); padding: 5px 14px; border-radius: 20px;
    font-size: 11px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 16px;
}
.flagship-content h2 { font-family: var(--font-display); font-size: 30px; margin: 0 0 4px; color: #fff; font-weight: 700; }
.flagship-tagline { font-size: 14.5px; font-weight: 700; color: var(--gold-light); letter-spacing: 0.02em; margin: 0 0 14px; text-transform: uppercase; }
.flagship-desc { font-size: 14.5px; color: #b9c2d1; line-height: 1.65; margin: 0 0 18px; max-width: 60ch; }
.flagship-features { list-style: none; padding: 0; margin: 0 0 26px; display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 8px 20px; }
.flagship-features li { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: #d7dde6; }
.flagship-features i { color: var(--gold-light); font-size: 12px; }
.flagship-footer { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.flagship-price { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: #fff; }
.flagship-price small { font-family: 'Inter', sans-serif; font-size: 12.5px; font-weight: 400; color: #9aa7ba; }

@media (max-width: 720px) {
    .flagship-banner { padding: 30px 24px; flex-direction: column; text-align: center; }
    .flagship-features { grid-template-columns: 1fr; }
    .flagship-footer { flex-direction: column; align-items: flex-start; width: 100%; }
}

/* ---- Amiral hizmet spotlight (Mobil Uygulama / Otomasyon) ---- */
.spotlight-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 22px; margin: 40px 0 8px; }
.spotlight-card {
    position: relative; background: #fff; border: 1px solid var(--border); border-radius: 6px;
    padding: 32px 30px; overflow: hidden;
    box-shadow: 0 1px 3px rgba(10,22,40,0.05);
    transition: transform .15s ease, box-shadow .15s ease;
}
.spotlight-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold);
}
.spotlight-card:hover { transform: translateY(-3px); box-shadow: 0 16px 34px -12px rgba(10,22,40,0.16); }
.spotlight-icon {
    width: 58px; height: 58px; border-radius: 6px; background: var(--navy); border: 1px solid var(--gold);
    color: var(--gold-light); display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 18px;
}
.spotlight-tag {
    position: absolute; top: 30px; right: 30px;
    font-size: 10.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
    color: #8a1620; background: var(--gold-pale); padding: 4px 10px; border-radius: 3px;
}
.spotlight-card h2 { font-size: 21px; margin: 0 0 10px; font-weight: 700; color: var(--blue-deep); }
.spotlight-card > p { font-size: 14px; color: var(--text-muted); margin: 0 0 18px; line-height: 1.6; }
.spotlight-list { list-style: none; padding: 0; margin: 0 0 24px; }
.spotlight-list li { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: 13.5px; color: var(--text); }
.spotlight-list i { color: var(--success); font-size: 12px; }
.spotlight-footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; padding-top: 18px; border-top: 1px solid var(--border); }
.spotlight-price { font-family: var(--font-display); font-size: 19px; font-weight: 700; color: var(--blue-deep); }
.spotlight-price small { font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 400; color: var(--text-muted); }

.stats-band { background: var(--navy); padding: 28px 0; margin-top: 32px; border-top: 1px solid rgba(213,187,133,0.25); }
.stats-band-row { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 20px; text-align: center; }
.stats-band .num { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--gold-light); }
.stats-band .lbl { font-size: 12.5px; color: #93a0b3; margin-top: 4px; letter-spacing: 0.03em; text-transform: uppercase; }

.category-card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.category-card {
    background: #fff; border: 1px solid var(--border); border-radius: 6px; padding: 28px 24px;
    display: flex; flex-direction: column; transition: transform .15s, box-shadow .15s, border-color .15s;
}
.category-card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(10,22,40,0.1); border-color: var(--gold); }
.category-card-icon {
    width: 50px; height: 50px; border-radius: 4px; background: var(--navy); border: 1px solid var(--gold);
    color: var(--gold-light); display: flex; align-items: center; justify-content: center; font-size: 21px; margin-bottom: 18px;
}
.category-card-icon-navy { background: var(--navy); border-color: var(--gold); color: var(--gold-light); }
.category-card-icon-gold { background: var(--gold-pale); border-color: var(--gold); color: #8a1620; }
.category-card-icon-success { background: #f1f8f2; border-color: #7fbf95; color: #1f5c34; }
.category-card-icon-danger { background: #fdf2f2; border-color: #d98888; color: #8f2323; }
.category-card h3 { margin: 0 0 8px; font-size: 16.5px; font-weight: 700; }
.category-card p { margin: 0; font-size: 13px; color: var(--text-muted); flex: 1; min-height: 36px; }
.category-card-link { margin-top: 16px; font-size: 13px; font-weight: 700; color: var(--blue-bright); display: flex; align-items: center; gap: 6px; }

.why-us-band { margin-top: 54px; }
.why-us-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; }
.why-us-card { background: #fff; border: 1px solid var(--border); border-radius: 6px; padding: 28px; text-align: center; }
.why-us-icon {
    width: 54px; height: 54px; border-radius: 50%; background: var(--navy);
    color: var(--gold-light); display: flex; align-items: center; justify-content: center; font-size: 21px; margin: 0 auto 18px;
}
.why-us-card h3 { margin: 0 0 8px; font-size: 16px; font-weight: 700; }
.why-us-card p { margin: 0; font-size: 13.5px; color: var(--text-muted); line-height: 1.55; }

/* ================= Alan adı sorgulama sayfası ================= */
.domain-hero {
    background: linear-gradient(160deg, var(--navy) 0%, #5c0206 100%);
    margin: -34px -20px 34px; border-radius: 0; padding: 58px 20px; text-align: center; color: #fff;
    border-bottom: 3px solid var(--gold);
}
.domain-hero-inner h1 { font-family: var(--font-display); font-size: 32px; margin: 0 0 12px; font-weight: 700; }
.domain-hero-inner p { color: #b9c2d1; margin: 0 0 28px; }

.domain-results { background: #fff; border: 1px solid var(--border); border-radius: 6px; padding: 26px; margin-top: 10px; }
.domain-result-list { display: flex; flex-direction: column; gap: 10px; }
.domain-result-row {
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
    padding: 15px 18px; border-radius: 4px; border: 1px solid var(--border);
}
.domain-result-row.is-available { background: #f1f8f2; border-color: #c7e0cc; }
.domain-result-row.is-taken { background: #fdf2f2; border-color: #f0cccc; }
.domain-result-row.is-unknown { background: #faf8f3; }
.domain-result-name { font-weight: 700; font-size: 15px; display: flex; align-items: center; gap: 10px; }
.domain-result-name i { color: var(--blue-bright); }

@media (max-width: 640px) {
    .hero-pro h1 { font-size: 30px; }
    .domain-search-form { flex-direction: column; border-radius: 6px; }
    .domain-search-form button { padding: 14px; justify-content: center; }
}

/* ---- Hesabım (Müşteri Paneli) ---- */
.account-hero {
    position: relative; overflow: hidden;
    display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
    background: linear-gradient(160deg, var(--navy) 0%, #5c0206 100%);
    color: #fff; border-radius: 6px; padding: 34px 36px; margin-bottom: 26px;
    box-shadow: 0 12px 30px -10px rgba(10,22,40,0.4);
    border-bottom: 3px solid var(--gold);
}
.account-hero::before {
    content: ''; position: absolute; top: -60px; right: -60px; width: 220px; height: 220px;
    border-radius: 50%; background: radial-gradient(circle, rgba(213,187,133,0.16), transparent 70%);
    pointer-events: none;
}
.account-hero::after {
    content: ''; position: absolute; bottom: -80px; left: 10%; width: 180px; height: 180px;
    border-radius: 50%; background: radial-gradient(circle, rgba(213,187,133,0.08), transparent 70%);
    pointer-events: none;
}
.account-avatar {
    position: relative; z-index: 1;
    width: 72px; height: 72px; min-width: 72px; border-radius: 50%;
    background: var(--navy); border: 2px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 26px; font-weight: 700; letter-spacing: 0.5px; color: var(--gold-light);
}
.account-hero-info { position: relative; z-index: 1; flex: 1; min-width: 200px; }
.account-hero-info h1 { margin: 0 0 8px; font-size: 25px; font-weight: 700; color: #fff; letter-spacing: -0.2px; }
.account-hero-meta { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; font-size: 13px; color: rgba(255,255,255,0.75); }
.account-hero-meta i { width: 14px; text-align: center; opacity: 0.85; }
.account-hero-meta .sep { opacity: 0.35; }
.account-hero > div:last-child { position: relative; z-index: 1; }
.account-badge {
    display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; border-radius: 3px;
    font-size: 11px; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.14);
}
.account-badge.success { background: rgba(31,122,77,0.25); color: #7fd6a4; border-color: rgba(127,214,164,0.3); }
.account-badge.warning { background: rgba(180,120,30,0.22); color: #f0c383; border-color: rgba(240,195,131,0.3); }
.account-badge.info { background: rgba(213,187,133,0.18); color: var(--gold-light); border-color: rgba(213,187,133,0.35); }
.account-badge.muted { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); }

.account-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; margin-bottom: 26px; }
.account-stat {
    background: var(--card); border: 1px solid var(--border); border-radius: 6px;
    padding: 18px 20px; display: flex; align-items: center; gap: 16px;
    box-shadow: 0 1px 2px rgba(10,22,40,0.04);
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.account-stat:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px -8px rgba(10,22,40,0.14);
    border-color: var(--gold);
}
.account-stat .stat-icon {
    width: 44px; height: 44px; border-radius: 4px; display: flex; align-items: center; justify-content: center;
    background: var(--navy); color: var(--gold-light); font-size: 17px; flex-shrink: 0;
}
.account-stat .stat-num { font-family: var(--font-display); font-size: 23px; font-weight: 700; color: var(--blue-deep); line-height: 1.1; font-variant-numeric: tabular-nums; }
.account-stat .stat-label { font-size: 12px; color: var(--text-muted); font-weight: 500; }

.account-layout { display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 1fr); gap: 22px; align-items: start; }
.account-main, .account-side { display: flex; flex-direction: column; gap: 20px; min-width: 0; }

.account-section {
    background: var(--card); border: 1px solid var(--border); border-radius: 6px;
    padding: 24px 26px; box-shadow: 0 1px 3px rgba(10,22,40,0.05);
    transition: box-shadow .15s ease;
}
.account-section:hover { box-shadow: 0 4px 14px -6px rgba(10,22,40,0.10); }
.account-section h2 {
    display: flex; align-items: center; gap: 10px; font-size: 15.5px; margin: 0 0 18px;
    padding-bottom: 14px; border-bottom: 1px solid var(--border);
    color: var(--blue-deep); font-weight: 700; letter-spacing: -0.1px;
}
.account-section h2 i {
    width: 30px; height: 30px; border-radius: 4px; display: inline-flex; align-items: center; justify-content: center;
    background: var(--navy); color: var(--gold-light); font-size: 13.5px;
}
.account-section .empty-hint {
    color: var(--text-muted); font-size: 13.5px; margin: 0; padding: 18px 0; text-align: center;
}
.account-section table.data-table { font-size: 13.5px; box-shadow: none; border: 1px solid var(--border); }
.account-section table.data-table th, .account-section table.data-table td { padding: 11px 12px; }
.account-section table.data-table tbody tr:hover { background: #faf8f3; }

.account-kv { display: flex; flex-direction: column; gap: 4px; }
.account-kv-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 9px 2px; border-bottom: 1px solid var(--border); font-size: 13.5px; }
.account-kv-row:last-child { border-bottom: none; }
.account-kv-row span:first-child { color: var(--text-muted); font-weight: 500; }

.account-section.danger-zone { border-color: #eccaca; background: linear-gradient(180deg, #fdf5f5, #fffbfb); }
.account-section.danger-zone h2 { color: #8f2323; border-bottom-color: #eccaca; }
.account-section.danger-zone h2 i { background: #8f2323; color: #fbdada; }
.account-section.danger-zone p { font-size: 13px; color: #6b1a1a; line-height: 1.65; margin: 0 0 16px; }

.inline-form-row { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }

@media (max-width: 860px) {
    .account-layout { grid-template-columns: 1fr; }
    .account-hero { padding: 26px 22px; }
}

.status-pill {
    display: inline-flex; align-items: center; gap: 6px; padding: 4px 11px; border-radius: 3px;
    font-size: 11px; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase;
}
.status-pill.success { background: #f1f8f2; color: #1f5c34; box-shadow: inset 0 0 0 1px rgba(31,92,52,0.15); }
.status-pill.warning { background: #fdf6ea; color: #92600f; box-shadow: inset 0 0 0 1px rgba(146,96,15,0.15); }
.status-pill.danger { background: #fdf2f2; color: #8f2323; box-shadow: inset 0 0 0 1px rgba(143,35,35,0.15); }
.status-pill.muted { background: #f1efe8; color: var(--text-muted); box-shadow: inset 0 0 0 1px rgba(91,107,130,0.12); }

/* ---- Ürün galerisi (ekran görüntüleri) ---- */
.product-gallery { margin-top: 40px; }
.gallery-title { display: flex; align-items: center; gap: 10px; font-size: 20px; margin: 0 0 18px; font-weight: 700; color: var(--blue-deep); }
.gallery-title i { color: var(--gold); }
.product-gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 18px; }
.product-gallery-item {
    display: block; border-radius: 10px; overflow: hidden; border: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(10,22,40,0.06); transition: transform .15s ease, box-shadow .15s ease;
}
.product-gallery-item:hover { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(10,22,40,0.14); }

/* ---- Yüzen tema seçici + yukarı çık widget'ı ---- */
.theme-widget {
    position: fixed; right: 22px; bottom: 24px; z-index: 400;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    opacity: 0; transform: translateY(10px); pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
}
.theme-widget.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.theme-swatches {
    display: flex; flex-direction: column; gap: 8px; background: var(--card);
    border: 1px solid var(--border); border-radius: 22px; padding: 8px;
    box-shadow: 0 6px 20px rgba(10,22,40,0.16);
}
.theme-swatch {
    width: 28px; height: 28px; border-radius: 50%; cursor: pointer; padding: 0;
    border: 2px solid rgba(0,0,0,0.08); flex-shrink: 0;
}
.theme-swatch[data-theme-id="turkiye"] { background: linear-gradient(135deg, #E30A17 50%, #ffffff 50%); }
.theme-swatch[data-theme-id="lacivert-altin"] { background: linear-gradient(135deg, #0a1628 50%, #b5904a 50%); }
.theme-swatch[data-theme-id="zumrut"] { background: linear-gradient(135deg, #0b3d2e 50%, #c9a227 50%); }
.theme-swatch[data-theme-id="okyanus"] { background: linear-gradient(135deg, #0a3a5c 50%, #4fc3d9 50%); }
.theme-swatch[data-theme-id="koyu"] { background: linear-gradient(135deg, #0b0e14 50%, #d8bd85 50%); }
.theme-swatch.is-active { border-color: var(--blue-bright); box-shadow: 0 0 0 2px var(--card), 0 0 0 4px var(--blue-bright); }
.scroll-top-btn {
    width: 44px; height: 44px; border-radius: 50%; border: none; cursor: pointer;
    background: var(--navy); color: var(--gold-light); font-size: 16px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 14px rgba(10,22,40,0.25); transition: transform .15s ease;
}
.scroll-top-btn:hover { transform: translateY(-2px); }
@media (max-width: 560px) {
    .theme-widget { right: 14px; bottom: 14px; }
}
.product-gallery-item img { width: 100%; display: block; }
