/* =====================================================================
   Trendyol Yönetim Paneli - Larkon İlhamlı Tasarım
   Açık tema · sıcak krem sidebar · turuncu vurgu · slate başlıklar
   ===================================================================== */

:root {
    /* Marka */
    --ty-primary:        #ff6c2f;
    --ty-primary-hover:  #e95a1e;
    --ty-primary-soft:   #fff0e8;

    /* Nötrler */
    --ty-body-bg:        #f9f7f7;
    --ty-sidebar-bg:     #f8f5f1;
    --ty-card-bg:        #ffffff;

    /* Tipografi */
    --ty-heading:        #313b5e;
    --ty-text:           #5d7186;
    --ty-text-muted:     #98a6b5;

    /* Sınırlar / gölgeler */
    --ty-border:         #eaedf1;
    --ty-input-border:   #d8dfe7;
    --ty-shadow-sm:      0 1px 2px rgba(49, 59, 94, 0.04);
    --ty-shadow:         0 2px 6px rgba(49, 59, 94, 0.06);
    --ty-shadow-lg:      0 12px 32px rgba(49, 59, 94, 0.12);

    /* Yuvarlama */
    --ty-radius-sm: 6px;
    --ty-radius:    10px;
    --ty-radius-lg: 14px;

    /* Renkli yumuşak arkaplanlar */
    --ty-soft-blue:    #e9f1ff;
    --ty-soft-green:   #e8f8ee;
    --ty-soft-purple:  #f3ecff;
    --ty-soft-yellow:  #fff7e0;
    --ty-soft-red:     #ffe9e9;
    --ty-soft-orange:  #fff0e8;
}

/* ---- Temel ---- */
* { -webkit-font-smoothing: antialiased; }
html, body { background-color: var(--ty-body-bg); }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--ty-text);
    font-size: 14px;
    line-height: 1.5;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    color: var(--ty-heading);
    font-weight: 600;
}
a { color: var(--ty-primary); text-decoration: none; }
a:hover { color: var(--ty-primary-hover); }

/* =================================================================
   LAYOUT — sidebar + content
   ================================================================= */
.app-shell {
    display: flex;
    min-height: 100vh;
}
.app-sidebar {
    width: 250px;
    flex-shrink: 0;
    background-color: var(--ty-sidebar-bg);
    border-right: 1px solid var(--ty-border);
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; bottom: 0; left: 0;
    z-index: 1030;
    transition: transform 0.25s ease;
}
.app-main {
    flex: 1;
    margin-left: 250px;
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.app-content {
    flex: 1;
    padding: 1.5rem;
}
@media (max-width: 991.98px) {
    .app-sidebar { transform: translateX(-100%); }
    .app-sidebar.acik { transform: translateX(0); box-shadow: var(--ty-shadow-lg); }
    .app-main { margin-left: 0; }
    .sidebar-perde {
        position: fixed; inset: 0;
        background: rgba(49, 59, 94, 0.35);
        z-index: 1025;
        display: none;
    }
    .sidebar-perde.acik { display: block; }
}

/* =================================================================
   SIDEBAR
   ================================================================= */
.app-sidebar .marka {
    height: 64px;
    padding: 0 1.25rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--ty-border);
}
.app-sidebar .marka .marka-nokta {
    width: 32px; height: 32px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--ty-primary) 0%, #ff9559 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(255, 108, 47, 0.35);
}
.app-sidebar .marka .marka-yazi {
    font-weight: 700;
    color: var(--ty-heading);
    font-size: 1rem;
    line-height: 1.1;
}
.app-sidebar .marka .marka-yazi small {
    display: block;
    font-weight: 400;
    color: var(--ty-text-muted);
    font-size: 0.7rem;
    margin-top: 2px;
}

.app-sidebar .sidebar-icerik {
    flex: 1;
    overflow-y: auto;
    padding: 0.75rem 0;
}
.app-sidebar .sidebar-icerik::-webkit-scrollbar { width: 6px; }
.app-sidebar .sidebar-icerik::-webkit-scrollbar-thumb { background: #e2dfd9; border-radius: 3px; }

.menu-bolum-basligi {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--ty-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1rem 1.5rem 0.5rem;
}
.menu-liste { list-style: none; padding: 0; margin: 0; }
.menu-liste .menu-oge { padding: 0 0.75rem; }
.menu-liste .menu-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 12px;
    border-radius: var(--ty-radius);
    color: var(--ty-text);
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.15s ease;
    position: relative;
}
.menu-liste .menu-link:hover {
    background-color: rgba(255, 108, 47, 0.06);
    color: var(--ty-heading);
}
.menu-liste .menu-link.active {
    background-color: var(--ty-primary);
    color: #fff;
    box-shadow: 0 6px 14px rgba(255, 108, 47, 0.28);
}
.menu-liste .menu-link.active:hover { color: #fff; }
.menu-liste .menu-link .menu-ikon {
    font-size: 1.15rem;
    width: 22px;
    text-align: center;
    flex-shrink: 0;
}
.menu-liste .menu-link .menu-rozet {
    margin-left: auto;
    font-size: 0.7rem;
    padding: 2px 7px;
    border-radius: 999px;
    background: rgba(0,0,0,0.06);
    color: var(--ty-text-muted);
    font-weight: 600;
}
.menu-liste .menu-link.active .menu-rozet { background: rgba(255,255,255,0.2); color: #fff; }

/* =================================================================
   TOP BAR
   ================================================================= */
.app-topbar {
    height: 64px;
    background-color: #ffffff;
    border-bottom: 1px solid var(--ty-border);
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    gap: 1rem;
    position: sticky;
    top: 0;
    z-index: 1020;
}
.topbar-arama {
    flex: 1;
    max-width: 360px;
    position: relative;
}
.topbar-arama input {
    width: 100%;
    height: 40px;
    padding: 0 1rem 0 2.4rem;
    border: 1px solid var(--ty-border);
    border-radius: var(--ty-radius);
    background: #f5f6f8;
    font-size: 0.875rem;
    color: var(--ty-text);
    transition: all 0.15s ease;
}
.topbar-arama input:focus {
    outline: none;
    border-color: var(--ty-primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 108, 47, 0.12);
}
.topbar-arama .arama-ikon {
    position: absolute;
    left: 12px; top: 50%;
    transform: translateY(-50%);
    color: var(--ty-text-muted);
}
.topbar-spacer { flex: 1; }

.topbar-aksiyonlar {
    display: flex;
    align-items: center;
    gap: 6px;
}
.topbar-btn {
    width: 40px; height: 40px;
    border-radius: var(--ty-radius);
    display: inline-flex;
    align-items: center; justify-content: center;
    color: var(--ty-text);
    background: transparent;
    border: 0;
    position: relative;
    transition: all 0.15s ease;
    font-size: 1.15rem;
    cursor: pointer;
}
.topbar-btn:hover { background: #f3f4f6; color: var(--ty-heading); }
.topbar-btn .nokta {
    position: absolute;
    top: 9px; right: 11px;
    width: 8px; height: 8px;
    background: var(--ty-primary);
    border-radius: 50%;
    border: 2px solid #fff;
}

.kullanici-dropdown {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 10px 4px 4px;
    border-radius: var(--ty-radius);
    cursor: pointer;
    transition: all 0.15s ease;
}
.kullanici-dropdown:hover { background: #f3f4f6; }
.kullanici-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ty-primary) 0%, #ff9559 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}
.kullanici-bilgi {
    display: none;
    line-height: 1.2;
}
.kullanici-bilgi .ad { font-size: 0.85rem; font-weight: 600; color: var(--ty-heading); }
.kullanici-bilgi .rol { font-size: 0.72rem; color: var(--ty-text-muted); }
@media (min-width: 768px) { .kullanici-bilgi { display: block; } }

.menu-toggle {
    display: none;
    background: transparent;
    border: 0;
    color: var(--ty-text);
    font-size: 1.4rem;
    padding: 8px;
    cursor: pointer;
}
@media (max-width: 991.98px) { .menu-toggle { display: inline-flex; } }

/* =================================================================
   SAYFA BAŞLIĞI
   ================================================================= */
.page-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}
.page-bar .page-baslik {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--ty-heading);
    margin: 0;
}
.page-bar .page-altyazi {
    font-size: 0.8125rem;
    color: var(--ty-text-muted);
    margin-top: 2px;
}
.kirintik {
    font-size: 0.8125rem;
    color: var(--ty-text-muted);
}
.kirintik a { color: var(--ty-text); }
.kirintik a:hover { color: var(--ty-primary); }
.kirintik .ayrac { margin: 0 6px; opacity: 0.5; }

/* =================================================================
   CARD
   ================================================================= */
.card {
    background: var(--ty-card-bg);
    border: 1px solid var(--ty-border);
    border-radius: var(--ty-radius-lg);
    box-shadow: var(--ty-shadow-sm);
    margin-bottom: 1.25rem;
}
.card-header {
    padding: 1.1rem 1.25rem;
    border-bottom: 1px solid var(--ty-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.card-header h4, .card-header .card-baslik {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    color: var(--ty-heading);
}
.card-header .card-altyazi {
    font-size: 0.78rem;
    color: var(--ty-text-muted);
    margin-top: 2px;
}
.card-body { padding: 1.25rem; }
.card-footer {
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--ty-border);
    background: transparent;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* =================================================================
   STAT KARTLAR (Dashboard)
   ================================================================= */
.stat-kart {
    padding: 1.25rem;
    background: var(--ty-card-bg);
    border: 1px solid var(--ty-border);
    border-radius: var(--ty-radius-lg);
    box-shadow: var(--ty-shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    height: 100%;
}
.stat-kart .ust {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.stat-kart .etiket {
    color: var(--ty-text-muted);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}
.stat-kart .deger {
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--ty-heading);
    line-height: 1.1;
}
.stat-kart .ikon-kutu {
    width: 42px; height: 42px;
    border-radius: var(--ty-radius);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}
.stat-kart .trend {
    font-size: 0.78rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
}
.stat-kart .trend.yukari { color: #22a06b; }
.stat-kart .trend.asagi { color: #d65454; }
.stat-kart .alt {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 0.75rem;
    color: var(--ty-text-muted);
    font-size: 0.78rem;
}
.stat-kart .sparkline {
    width: 100px;
    height: 40px;
    margin-left: auto;
}

/* Renkli ikon kutuları */
.ikon-mavi   { background: var(--ty-soft-blue);   color: #2c5ee8; }
.ikon-yesil  { background: var(--ty-soft-green);  color: #22a06b; }
.ikon-mor    { background: var(--ty-soft-purple); color: #7c4dff; }
.ikon-sari   { background: var(--ty-soft-yellow); color: #c08a00; }
.ikon-kirmizi{ background: var(--ty-soft-red);    color: #d65454; }
.ikon-turuncu{ background: var(--ty-soft-orange); color: var(--ty-primary); }

/* =================================================================
   FORM
   ================================================================= */
.form-label {
    font-size: 0.825rem;
    font-weight: 500;
    color: var(--ty-heading);
    margin-bottom: 0.45rem;
}
.form-label.zorunlu::after {
    content: '*';
    color: var(--ty-primary);
    margin-left: 4px;
}
.form-control, .form-select {
    width: 100%;
    height: 42px;
    padding: 0 0.9rem;
    border: 1px solid var(--ty-input-border);
    border-radius: var(--ty-radius);
    background: #fff;
    font-size: 0.875rem;
    color: var(--ty-heading);
    transition: all 0.15s ease;
}
textarea.form-control { height: auto; padding: 0.7rem 0.9rem; }
.form-control:focus, .form-select:focus {
    outline: none;
    border-color: var(--ty-primary);
    box-shadow: 0 0 0 3px rgba(255, 108, 47, 0.12);
}
.form-control::placeholder { color: var(--ty-text-muted); }
.form-hint {
    margin-top: 0.4rem;
    font-size: 0.78rem;
    color: var(--ty-text-muted);
}
.form-hint code {
    background: #f3f4f6;
    padding: 1px 6px;
    border-radius: 4px;
    color: var(--ty-primary);
    font-size: 0.78rem;
}
.input-grup {
    display: flex;
    align-items: stretch;
}
.input-grup .form-control {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.input-grup .input-ek {
    height: 42px;
    padding: 0 0.9rem;
    border: 1px solid var(--ty-input-border);
    border-left: 0;
    border-radius: 0 var(--ty-radius) var(--ty-radius) 0;
    background: #f5f6f8;
    color: var(--ty-text);
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}
.form-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.form-check-input {
    width: 18px; height: 18px;
    border: 1.5px solid var(--ty-input-border);
    border-radius: 5px;
    appearance: none;
    cursor: pointer;
    transition: all 0.15s ease;
    flex-shrink: 0;
}
.form-check-input:checked {
    background: var(--ty-primary);
    border-color: var(--ty-primary);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M3.5 8.5l3 3 6-6'/%3E%3C/svg%3E");
    background-size: 14px;
    background-position: center;
    background-repeat: no-repeat;
}
.form-check-input[type="checkbox"].switch-stil {
    width: 38px; height: 22px;
    border-radius: 999px;
    position: relative;
    background: #d8dfe7;
    border-color: #d8dfe7;
}
.form-check-input[type="checkbox"].switch-stil::after {
    content: '';
    width: 16px; height: 16px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 2px; left: 2px;
    transition: all 0.15s ease;
}
.form-check-input[type="checkbox"].switch-stil:checked {
    background-image: none;
    background: var(--ty-primary);
    border-color: var(--ty-primary);
}
.form-check-input[type="checkbox"].switch-stil:checked::after {
    left: 18px;
}

/* =================================================================
   BUTON
   ================================================================= */
.btn {
    height: 40px;
    padding: 0 1rem;
    border-radius: var(--ty-radius);
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid transparent;
    background: transparent;
    color: var(--ty-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.15s ease;
    text-decoration: none;
}
.btn:hover { background: #f3f4f6; }
.btn-primary, .btn-trendyol {
    background: var(--ty-primary);
    border-color: var(--ty-primary);
    color: #fff;
    box-shadow: 0 4px 10px rgba(255, 108, 47, 0.22);
}
.btn-primary:hover, .btn-trendyol:hover {
    background: var(--ty-primary-hover);
    border-color: var(--ty-primary-hover);
    color: #fff;
}
.btn-cikti {
    background: #fff;
    border-color: var(--ty-border);
    color: var(--ty-text);
}
.btn-cikti:hover {
    background: #f9fafb;
    border-color: var(--ty-input-border);
    color: var(--ty-heading);
}
.btn-link {
    background: transparent;
    color: var(--ty-primary);
    padding: 0;
    height: auto;
}
.btn-link:hover { color: var(--ty-primary-hover); background: transparent; }
.btn-sm { height: 32px; padding: 0 0.75rem; font-size: 0.8125rem; }
.btn-lg { height: 48px; padding: 0 1.4rem; font-size: 0.95rem; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* =================================================================
   ROZET / BADGE
   ================================================================= */
.rozet {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
}
.rozet-basari  { background: var(--ty-soft-green);  color: #22a06b; }
.rozet-hata    { background: var(--ty-soft-red);    color: #d65454; }
.rozet-uyari   { background: var(--ty-soft-yellow); color: #c08a00; }
.rozet-bilgi   { background: var(--ty-soft-blue);   color: #2c5ee8; }
.rozet-soluk   { background: #f3f4f6; color: var(--ty-text-muted); }
.rozet-turuncu { background: var(--ty-soft-orange); color: var(--ty-primary); }

/* =================================================================
   UYARI / ALERT
   ================================================================= */
.uyari {
    display: flex;
    gap: 0.85rem;
    padding: 0.9rem 1.1rem;
    border-radius: var(--ty-radius);
    margin-bottom: 1rem;
    align-items: flex-start;
    font-size: 0.875rem;
    border: 1px solid transparent;
}
.uyari .uyari-ikon { font-size: 1.25rem; flex-shrink: 0; margin-top: 1px; }
.uyari-basari { background: var(--ty-soft-green);  color: #15784f; border-color: #c6ecd5; }
.uyari-hata   { background: var(--ty-soft-red);    color: #a83a3a; border-color: #ffd0d0; }
.uyari-uyari  { background: var(--ty-soft-yellow); color: #8a6500; border-color: #ffe9a8; }
.uyari-bilgi  { background: var(--ty-soft-blue);   color: #1d4abf; border-color: #cddfff; }
.uyari .kapat-btn {
    margin-left: auto;
    background: transparent;
    border: 0;
    cursor: pointer;
    color: inherit;
    opacity: 0.6;
    padding: 4px;
}
.uyari .kapat-btn:hover { opacity: 1; }

/* =================================================================
   AYARLAR SAYFASI - sol sekme listesi
   ================================================================= */
.ayarlar-sekme-listesi {
    background: var(--ty-card-bg);
    border: 1px solid var(--ty-border);
    border-radius: var(--ty-radius-lg);
    overflow: hidden;
    box-shadow: var(--ty-shadow-sm);
}
.ayarlar-sekme {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    color: var(--ty-text);
    font-weight: 500;
    font-size: 0.875rem;
    border-bottom: 1px solid var(--ty-border);
    transition: all 0.15s ease;
}
.ayarlar-sekme:last-child { border-bottom: 0; }
.ayarlar-sekme:hover { background: #faf9f7; color: var(--ty-heading); }
.ayarlar-sekme.aktif {
    background: var(--ty-primary-soft);
    color: var(--ty-primary);
    font-weight: 600;
    border-left: 3px solid var(--ty-primary);
    padding-left: 15px;
}
.ayarlar-sekme i { font-size: 1.1rem; }
.ayarlar-sekme .rozet-soluk { margin-left: auto; font-size: 0.65rem; }

/* =================================================================
   LOGIN SAYFASI (split-screen)
   ================================================================= */
.giris-sayfa {
    min-height: 100vh;
    display: flex;
    background: var(--ty-body-bg);
}
.giris-sol {
    flex: 1;
    background: linear-gradient(135deg, #ff6c2f 0%, #ff9559 50%, #ffb088 100%);
    display: none;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 3rem;
}
.giris-sol::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    top: -100px; right: -100px;
}
.giris-sol::after {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    bottom: -50px; left: -50px;
}
@media (min-width: 992px) { .giris-sol { display: flex; } }
.giris-tanitim {
    position: relative;
    z-index: 1;
    color: #fff;
    max-width: 440px;
}
.giris-tanitim h2 {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.15;
}
.giris-tanitim p {
    font-size: 1rem;
    opacity: 0.92;
    line-height: 1.6;
    margin-bottom: 2rem;
}
.giris-ozellikler { list-style: none; padding: 0; margin: 0; }
.giris-ozellikler li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: #fff;
    font-size: 0.95rem;
}
.giris-ozellikler li i {
    width: 28px; height: 28px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.giris-sag {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.giris-kart {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: var(--ty-radius-lg);
    box-shadow: var(--ty-shadow);
    padding: 2.5rem;
    border: 1px solid var(--ty-border);
}
.giris-kart .marka-buyuk {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 2rem;
}
.giris-kart .marka-buyuk .marka-nokta {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--ty-primary) 0%, #ff9559 100%);
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 6px 14px rgba(255, 108, 47, 0.3);
}
.giris-kart .marka-buyuk .marka-yazi { font-size: 1.05rem; font-weight: 700; color: var(--ty-heading); line-height: 1.2; }
.giris-kart .marka-buyuk .marka-yazi small { display: block; color: var(--ty-text-muted); font-weight: 400; font-size: 0.78rem; }

.giris-kart h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}
.giris-kart .altyazi { color: var(--ty-text-muted); margin-bottom: 1.5rem; font-size: 0.875rem; }

/* =================================================================
   YARDIMCI
   ================================================================= */
.metin-soluk { color: var(--ty-text-muted) !important; }
.metin-baslik { color: var(--ty-heading) !important; }
.metin-marka { color: var(--ty-primary) !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.d-flex { display: flex; }
.align-items-center { align-items: center; }
.justify-content-between { justify-content: space-between; }
.gap-2 { gap: 0.75rem; }
.gap-3 { gap: 1rem; }
.w-100 { width: 100%; }
hr.ayrac-cizgi { border: 0; border-top: 1px solid var(--ty-border); margin: 1.25rem 0; }

/* GRID — Bootstrap'siz hafif grid */
.satir { display: flex; flex-wrap: wrap; margin: 0 -10px; }
.satir > [class*="sutun-"] { padding: 0 10px; box-sizing: border-box; width: 100%; }
@media (min-width: 576px) {
    .sutun-sm-6 { width: 50%; }
}
@media (min-width: 768px) {
    .sutun-md-4 { width: 33.3333%; }
    .sutun-md-6 { width: 50%; }
    .sutun-md-8 { width: 66.6667%; }
    .sutun-md-9 { width: 75%; }
    .sutun-md-3 { width: 25%; }
}
@media (min-width: 992px) {
    .sutun-lg-3 { width: 25%; }
    .sutun-lg-4 { width: 33.3333%; }
    .sutun-lg-6 { width: 50%; }
    .sutun-lg-8 { width: 66.6667%; }
    .sutun-lg-9 { width: 75%; }
}

/* Spinner */
.donen {
    width: 14px; height: 14px;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: don 0.7s linear infinite;
    display: inline-block;
}
@keyframes don { to { transform: rotate(360deg); } }
