/* ============================================================
   ATAMAK AMBALAJ — Ana Stil (atamak.css)
   Kaynak: Onaylı mockup tasarımları
   ============================================================ */

/* ── CSS DEĞİŞKENLERİ ── */
:root {
  --dark:          #2B2B2B;
  --green:         #27B045;
  --green-dark:    #1E8A35;
  --green-light:   #E8F8ED;
  --bg:            #F5F5F5;
  --border:        #E0E0E0;
  --muted:         #6B6B6B;
  --white:         #fff;
  --font:         'Barlow', sans-serif;
  --font-cond:    'Barlow Condensed', sans-serif;

  /* Bootstrap uyum takma adları */
  --primary:       #27B045;
  --accent:        #27B045;
  --accent-dark:   #1E8A35;
  --accent-light:  #E8F8ED;
  --gray-bg:       #F5F5F5;
  --gray-border:   #E0E0E0;
  --gray-text:     #6B6B6B;

  /* Durum Renkleri */
  --s-waiting-bg:   #F5F5F5; --s-waiting-tx:  #6B6B6B;
  --s-notif-bg:     #FFF8E1; --s-notif-tx:    #8B6200;
  --s-ok-bg:        #E8F8ED; --s-ok-tx:       #1E8A35;
  --s-reject-bg:    #FFEBEB; --s-reject-tx:   #A32D2D;
  --s-partial-bg:   #E8F0FB; --s-partial-tx:  #1A4EA6;

  --dark-soft:     #1a3320;

  --shadow-sm: 0 1px 4px rgba(0,0,0,.07);
  --shadow-md: 0 4px 20px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.14);
  --radius:    8px;
  --radius-sm: 4px;
  --transition: .2s ease;

  /* ── BREAKPOINT SABİTLERİ (CSS-03)
     Bootstrap 5 lg = 992px  →  tüm dosyalarda bu değer kullanılır.
     Değişiklik gerekirse yalnızca burası güncellenir.
     Not: CSS custom properties @media içinde kullanılamaz; bu
     değerler dokümantasyon ve JS erişimi içindir.          ── */
  --bp-mobile: 992px;   /* max-width: 992px  →  mobil / sidebar gizle  */
  --bp-tablet: 768px;   /* min-width: 768px  →  tablet ara katmanı     */
}

/* ── BASE ── */
*, *::before, *::after { box-sizing: border-box; }
body { font-family: var(--font); color: var(--dark); background: var(--white); font-size: 15px; line-height: 1.7; -webkit-font-smoothing: antialiased; }
a { color: var(--green); transition: color var(--transition); }
a:hover { color: var(--green-dark); }
img { max-width: 100%; height: auto; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-cond); font-weight: 700; color: var(--dark); line-height: 1.2; }

/* ── TOPBAR ── */
.topbar { background: var(--dark); color: rgba(255,255,255,.55); font-size: 12px; padding: 7px 0; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: nowrap; }
.topbar a { color: rgba(255,255,255,.55); text-decoration: none; }
.topbar .sep, .topbar .topbar-sep { color: rgba(255,255,255,.25); margin: 0 8px; }

/* ── NAVBAR ── */
.site-navbar { background: var(--white) !important; border-bottom: 1px solid var(--border); padding: 0; height: 68px; position: sticky; top: 0; z-index: 1030; box-shadow: 0 1px 12px rgba(0,0,0,.06); }
.site-navbar .container { height: 100%; display: flex; align-items: center; }
.site-navbar .navbar-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; padding: 0; margin-right: 2rem; }
.site-navbar .navbar-brand img { height: 48px; width: auto; display: block; }
.navbar-logo-brand { font-family: var(--font-cond); font-size: 22px; font-weight: 700; color: var(--dark); letter-spacing: .5px; line-height: 1; }
.navbar-logo-sub { font-size: 10px; font-weight: 600; color: var(--green); letter-spacing: 2px; text-transform: uppercase; display: block; }
.site-navbar .nav-link { font-size: 14px; font-weight: 500; color: var(--dark) !important; padding: 8px 16px !important; border-radius: 6px; transition: .2s; }
.site-navbar .nav-link:hover { color: var(--green) !important; background: var(--green-light); }
.site-navbar .nav-link.active { color: var(--green) !important; }
.site-navbar .dropdown-menu { border: 1px solid var(--border); border-radius: 10px; padding: 8px; box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.site-navbar .dropdown-item { font-size: 13px; border-radius: 6px; padding: 8px 12px; color: var(--dark); }
.site-navbar .dropdown-item:hover { background: var(--green-light); color: var(--green-dark); }

/* Navbar butonlar */
.btn-login-nav { font-size: 13px; font-weight: 600; color: #fff; border: 2px solid var(--green); padding: 7px 18px; border-radius: 7px; background: var(--green); text-decoration: none; transition: .2s; display: inline-flex; align-items: center; gap: 5px; }
.btn-login-nav:hover { background: var(--green-dark); border-color: var(--green-dark); color: #fff; }
.btn-order-nav { font-size: 13px; font-weight: 700; color: #fff; background: var(--green); border: none; padding: 8px 20px; border-radius: 7px; text-decoration: none; transition: .2s; }
.btn-order-nav:hover { background: var(--green-dark); color: #fff; }

/* Mobil hamburger */
.site-navbar .navbar-toggler { border-color: rgba(0,0,0,.2); }

/* ── BOOTSTRAP PRIMARY OVERRIDE ── */
.btn-primary { background: var(--green) !important; border-color: var(--green) !important; color: #fff !important; font-weight: 600; }
.btn-primary:hover, .btn-primary:focus { background: var(--green-dark) !important; border-color: var(--green-dark) !important; box-shadow: 0 4px 14px rgba(39,176,69,.3) !important; }
.btn-outline-primary { border-color: var(--green) !important; color: var(--green) !important; }
.btn-outline-primary:hover { background: var(--green) !important; border-color: var(--green) !important; color: #fff !important; }
.btn-dark { background: var(--dark) !important; border-color: var(--dark) !important; }
.btn-dark:hover { background: #3a3a3a !important; border-color: #3a3a3a !important; }

/* ── FORM ── */
.form-control, .form-select { border-color: var(--border); font-family: var(--font); color: var(--dark); }
.form-control:focus, .form-select:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(39,176,69,.15); }
.form-label { font-weight: 600; font-size: .88rem; }

/* ── STATS BAR ── */
.stats-bar { background: var(--white); border-bottom: 1px solid var(--border); }
.stat-item { padding: 26px 0; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-cond); font-size: 40px; font-weight: 700; color: var(--dark); line-height: 1; }
.stat-num span { color: var(--green); }
.stat-label { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* ── SECTION ── */
.sec-tag { display: inline-block; font-size: 11px; font-weight: 700; color: var(--green); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
.sec-title { font-family: var(--font-cond); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; color: var(--dark); line-height: 1.1; margin-bottom: 12px; }
.sec-desc { font-size: 15px; color: var(--muted); line-height: 1.7; max-width: 520px; }
.section-label { display: inline-block; font-size: 11px; font-weight: 700; color: var(--green); letter-spacing: 2px; text-transform: uppercase; }
.section-title { font-family: var(--font-cond); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; color: var(--dark); line-height: 1.1; }
.section-subtitle { color: var(--muted); font-size: .97rem; }

/* ── KATEGORİ KARTI ── */
.cat-card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 32px 28px; cursor: pointer; transition: .25s; position: relative; overflow: hidden; height: 100%; }
.cat-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--green); transform: scaleX(0); transform-origin: left; transition: .25s; }
.cat-card:hover { border-color: var(--green); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(39,176,69,.1); text-decoration: none; }
.cat-card:hover::before { transform: scaleX(1); }
.cat-card.cat-featured { background: var(--dark); border-color: var(--dark); color: #fff; }
.cat-num { font-family: var(--font-cond); font-size: 11px; font-weight: 600; letter-spacing: 2px; color: var(--muted); text-transform: uppercase; margin-bottom: 16px; }
.cat-featured .cat-num { color: rgba(255,255,255,.35); }
.cat-icon-wrap { width: 48px; height: 48px; background: var(--green-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-size: 22px; }
.cat-featured .cat-icon-wrap { background: rgba(39,176,69,.2); }
.cat-name { font-size: 17px; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.cat-featured .cat-name { color: #fff; font-family: var(--font-cond); font-size: 26px; }
.cat-info { font-size: 13px; color: var(--muted); }
.cat-featured .cat-info { color: rgba(255,255,255,.5); }
.cat-arrow { position: absolute; top: 20px; right: 20px; width: 32px; height: 32px; background: var(--green-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--green); transition: .2s; }
.cat-featured .cat-arrow { background: rgba(39,176,69,.2); }
.cat-card:hover .cat-arrow { background: var(--green); color: #fff; }

/* ── ÜRÜN KARTI ── */
.urun-kart, .kategori-kart { display: block; background: var(--white); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; text-decoration: none; transition: .25s; height: 100%; box-shadow: var(--shadow-sm); }
.urun-kart:hover, .kategori-kart:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green); }
.urun-kart-gorsel, .kategori-gorsel { aspect-ratio: 4/3; overflow: hidden; background: var(--bg); display: flex; align-items: center; justify-content: center; position: relative; }
.urun-kart-gorsel img, .kategori-gorsel img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.urun-kart:hover .urun-kart-gorsel img, .kategori-kart:hover .kategori-gorsel img { transform: scale(1.06); }
.urun-kart-body, .kategori-kart-body { padding: 20px; }
.urun-kart-body h4, .kategori-kart-body h3 { font-family: var(--font-cond); font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: .4rem; line-height: 1.3; }
.urun-kart-body p, .kategori-kart-body p { font-size: .83rem; color: var(--muted); margin-bottom: .6rem; line-height: 1.5; }
.urun-kart-link, .kategori-kart-link { font-size: .82rem; font-weight: 700; color: var(--green); }

/* ── NEDEN BİZ ── */
.why-item { display: flex; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--border); }
.why-item:last-child { border-bottom: none; }
.why-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--green-light); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.why-name { font-size: 15px; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.why-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── SİPARİŞ SÜRECI ── */
.process-section { background: var(--dark); padding: 5rem 0; }
.process-section .sec-title { color: #fff; }
.process-section .sec-tag { color: var(--green); }
.process-section .sec-desc { color: rgba(255,255,255,.5); }
.step { text-align: center; padding: 0 8px; }
.step-num { width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-family: var(--font-cond); font-size: 18px; font-weight: 700; color: rgba(255,255,255,.4); }
.step.active .step-num { background: var(--green); border-color: var(--green); color: #fff; }
.step-label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.7); margin-bottom: 4px; }
.step.active .step-label { color: #fff; }
.step-sub { font-size: 11px; color: rgba(255,255,255,.35); line-height: 1.5; }

/* ── BLOG KARTI ── */
.blog-card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transition: .2s; }
.blog-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.08); transform: translateY(-2px); }
.blog-img { background: var(--dark); height: 180px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.blog-badge { position: absolute; bottom: 10px; left: 10px; background: var(--green); color: #fff; font-size: 11px; font-weight: 600; padding: 3px 9px; border-radius: 4px; }
.blog-body { padding: 18px; }
.blog-date { font-size: 11px; color: var(--muted); margin-bottom: 7px; }
.blog-title { font-size: 15px; font-weight: 600; color: var(--dark); line-height: 1.4; margin-bottom: 8px; }
.blog-read { font-size: 12px; color: var(--green); font-weight: 600; }

/* ── CTA BANT ── */
.cta-band { background: var(--green); padding: 4rem 0; }
.cta-band h2 { font-family: var(--font-cond); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; color: #fff; }
.cta-band p { color: rgba(255,255,255,.78); font-size: 14px; margin-top: 6px; }
.btn-cta-white { background: #fff; color: var(--green-dark); font-size: 14px; font-weight: 700; padding: 13px 28px; border-radius: 8px; border: none; cursor: pointer; text-decoration: none; transition: .2s; }
.btn-cta-white:hover { background: var(--green-light); color: var(--green-dark); }
.btn-cta-out { background: none; color: #fff; font-size: 14px; font-weight: 600; padding: 13px 24px; border-radius: 8px; border: 2px solid rgba(255,255,255,.4); text-decoration: none; }

/* ── FOOTER ── */
.site-footer { background: var(--dark); padding: 56px 0 0; }
.footer-logo { height: 60px; width: auto; margin-bottom: 1rem; }
.footer-brand { font-family: var(--font-cond); font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.footer-sub { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.7; max-width: 240px; }
.footer-col-title { font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.6); text-decoration: none; }
.footer-links a:hover { color: var(--green); }
.footer-address { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.6; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 40px; padding: 18px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.25); }
.lang-btn { font-size: 11px; padding: 3px 9px; border-radius: 4px; border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.4); cursor: pointer; background: none; }
.lang-btn.active { color: var(--green); border-color: rgba(39,176,69,.4); }
.lang-btn.soon { opacity: .4; cursor: default; }

/* ── WHATSAPP ── */
.wa-btn { position: fixed; bottom: 24px; right: 24px; width: 50px; height: 50px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; box-shadow: 0 4px 14px rgba(37,211,102,.4); z-index: 999; text-decoration: none; transition: transform var(--transition); }
.wa-btn:hover { transform: scale(1.08); }

/* ── PAGE HERO ── */
.page-hero { background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%); padding: 3rem 0 2.5rem; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; right: -60px; bottom: -60px; width: 300px; height: 300px; border-radius: 50%; background: rgba(39,176,69,.06); }
.page-hero--sm { padding: 1.5rem 0; }
.page-hero h1,
.page-hero-title { font-family: var(--font-cond); font-size: 2.5rem; font-weight: 800; color: #fff; margin: 0; }
.page-hero .breadcrumb-item { color: rgba(255,255,255,.45); font-size: .85rem; }
.page-hero .breadcrumb-item a { color: rgba(255,255,255,.6); text-decoration: none; }
.page-hero .breadcrumb-item.active { color: rgba(255,255,255,.9); }
.page-hero .breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,.3); }

/* ── ANCHOR NAV ── */
.anchor-nav { background: var(--white); border-bottom: 1px solid var(--border); padding: 0; position: sticky; top: 68px; z-index: 50; }
.an-link { font-size: 13px; font-weight: 600; color: var(--muted); text-decoration: none; padding: 14px 18px; display: inline-block; border-bottom: 2px solid transparent; transition: .2s; }
.an-link:hover, .an-link.active { color: var(--green); border-bottom-color: var(--green); }

/* ── BADGE DURUM ── */
.badge-durum, [class^="badge-"] { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.badge-beklemede        { background: var(--s-waiting-bg); color: var(--s-waiting-tx); }
.badge-bildirim_yapildi { background: var(--s-notif-bg);   color: var(--s-notif-tx); }
.badge-onaylandi, .badge-teslim_edildi, .badge-odeme_alindi, .badge-cozuldu { background: var(--s-ok-bg); color: var(--s-ok-tx); }
.badge-reddedildi, .badge-iptal { background: var(--s-reject-bg); color: var(--s-reject-tx); }
.badge-kismi, .badge-kismi_odendi, .badge-acik { background: var(--s-partial-bg); color: var(--s-partial-tx); }
.badge-uretimde, .badge-proforma_gonderildi, .badge-odeme_bekleniyor, .badge-bekliyor, .badge-incelemede { background: var(--s-notif-bg); color: var(--s-notif-tx); }
.badge-sevkiyatta { background: #FFF3E0; color: #E65100; }
.badge-aktif { background: var(--s-ok-bg); color: var(--s-ok-tx); }
.badge-pasif, .badge-kapandi { background: var(--s-waiting-bg); color: var(--s-waiting-tx); }

/* ── FLASH ── */
.flash-success { background: var(--green-light); border: 1px solid var(--green); color: var(--green-dark); padding: 12px 18px; border-radius: 6px; font-weight: 500; margin-bottom: 1rem; }
.flash-error   { background: var(--s-reject-bg); border: 1px solid #f5c6c6; color: var(--s-reject-tx); padding: 12px 18px; border-radius: 6px; font-weight: 500; margin-bottom: 1rem; }
.flash-info    { background: var(--s-partial-bg); border: 1px solid #c0d4f5; color: var(--s-partial-tx); padding: 12px 18px; border-radius: 6px; font-weight: 500; margin-bottom: 1rem; }

/* ── TABLO ── */
.table th { background: var(--dark); color: #fff; font-size: .8rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; padding: 10px 14px; border: none; }
.table td { padding: 10px 14px; vertical-align: middle; font-size: .9rem; border-color: var(--border); }
.table tbody tr:hover td { background: var(--green-light); }

/* ── SAYFALAMA ── */
.pagination .page-link { color: var(--green); border-color: var(--border); }
.pagination .page-link:hover { background: var(--green-light); color: var(--green-dark); border-color: var(--green); }
.pagination .page-item.active .page-link { background: var(--green) !important; border-color: var(--green) !important; color: #fff !important; }
.pagination .page-item.disabled .page-link { color: #adb5bd; border-color: var(--border); background: transparent; }

/* ── UTIL ── */
.text-green { color: var(--green) !important; }
.bg-dark-brand { background: var(--dark) !important; }
.bg-green { background: var(--green) !important; }
.border-green { border-color: var(--green) !important; }

/* ── AUTH LAYOUT ── */
.auth-wrap {
    display: flex;
    flex: 1;
    min-height: 0;
}
.auth-brand-panel {
    width: 420px;
    min-width: 340px;
    min-height: 100%;
    background: linear-gradient(160deg, #1a3a24 0%, #27B045 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
}
.auth-brand-panel::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 300px; height: 300px;
    background: rgba(255,255,255,.06);
    border-radius: 50%;
}
.auth-brand-panel::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -60px;
    width: 280px; height: 280px;
    background: rgba(255,255,255,.05);
    border-radius: 50%;
}
.auth-logo {
    height: 64px;
    width: auto;
    margin-bottom: 2.5rem;
}
.auth-brand-panel h2 {
    font-family: var(--font-cond);
    font-size: 1.9rem;
    font-weight: 800;
    margin-bottom: .75rem;
    color: #fff;
}
.auth-brand-panel p {
    font-size: .95rem;
    color: rgba(255,255,255,.8);
    line-height: 1.6;
    margin-bottom: 1.75rem;
}
.auth-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.auth-feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .92rem;
    color: rgba(255,255,255,.9);
    margin-bottom: .65rem;
}
.auth-feature-list li i {
    color: #7ee89a;
    font-size: 1rem;
    flex-shrink: 0;
}
.auth-form-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    padding: 2rem 1.5rem;
}
.auth-form-inner {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 24px rgba(0,0,0,.07);
    padding: 2.5rem;
}
.auth-form-inner h1 {
    font-family: var(--font-cond);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: .25rem;
}
.auth-divider {
    text-align: center;
    color: var(--muted);
    font-size: .82rem;
    margin: 1.25rem 0;
    position: relative;
}
.auth-divider::before,
.auth-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 42%;
    height: 1px;
    background: var(--border);
}
.auth-divider::before { left: 0; }
.auth-divider::after  { right: 0; }
.auth-link-sm {
    font-size: .82rem;
    color: var(--muted);
    text-decoration: none;
}
.auth-link-sm:hover { color: var(--green); }
.input-icon-wrap { position: relative; }
.input-icon-wrap > i:first-child {
    position: absolute;
    left: .85rem; top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    font-size: .9rem;
    pointer-events: none;
}
.form-control-icon { padding-left: 2.4rem; }
.input-eye-btn {
    position: absolute;
    right: .75rem; top: 50%;
    transform: translateY(-50%);
    background: none; border: none;
    color: var(--muted); cursor: pointer;
    padding: 0; font-size: .9rem;
}
.input-eye-btn:hover { color: var(--green); }

/* Auth footer bar */
.auth-footer-bar {
    text-align: center;
    padding: .75rem 1rem;
    font-size: .8rem;
    color: var(--muted);
    background: var(--bg);
    border-top: 1px solid var(--border);
    flex-shrink: 0;
}
.auth-footer-bar a {
    color: var(--muted);
    text-decoration: none;
}
.auth-footer-bar a:hover { color: var(--green); }

/* Auth — responsive */
@media (max-width: 992px) {
    .auth-brand-panel { display: none; }
    .auth-form-panel { padding: 1.5rem 1rem; background: #fff; }
    .auth-form-inner { box-shadow: none; border: none; padding: 1.5rem 0; }
}

/* Auth — centered card (sifremi-unuttum, sifre-sifirla) */
.auth-body { background: var(--bg); min-height: 100vh; display: flex; flex-direction: column; margin: 0; }
.auth-body--centered { align-items: center; justify-content: center; padding: 2rem; }
.auth-centered-card {
    background: #fff; border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 24px rgba(0,0,0,.07);
    padding: 2.5rem; width: 100%; max-width: 420px; text-align: center;
}
.auth-centered-card h1 {
    font-family: var(--font-cond); font-size: 1.6rem;
    font-weight: 800; color: var(--dark); margin-bottom: .5rem;
}
.auth-icon-circle {
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--green-light);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto; font-size: 1.6rem; color: var(--green);
}
.sifre-guc { height: 4px; background: var(--border); border-radius: 2px; overflow: hidden; }
.sifre-guc-bar { height: 100%; width: 0; border-radius: 2px; transition: width .3s, background .3s; }

/* ============================================================
   CSS-04 UTILITY CLASSES — Inline style'ların yerine kullanılır.
   Yeni inline style yazmak yerine bu class'ları tercih edin.
   ============================================================ */

/* ── THUMBNAIL / ÖNZILAMA GÖRSELLERİ (JS ile DOM'a eklenenler) ── */
/* Kullanım: box.innerHTML += '<img class="thumb-sm" src="...">' */
.thumb-sm {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--border);
}

/* Kullanım (ürün/blog yükleme önizleme): class="thumb-md" */
.thumb-md {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--border);
}

/* Blog kapak görseli önizleme (tam genişlik) */
.thumb-preview {
  max-width: 100%;
  border-radius: 6px;
  border: 1px solid var(--border);
}

/* ── DROPDOWN / OVERLAY SCROLL ── */
/* Kullanım: class="scroll-dropdown" (max-height + overflow) */
.scroll-dropdown {
  max-height: 220px;
  overflow-y: auto;
}

/* ── TOPBAR METİN RENKLERİ ── */
/* Topbar içindeki soluk beyaz metinler için (rgba hesapları yerine) */
.text-topbar        { color: rgba(255,255,255,.55); }
.text-topbar-muted  { color: rgba(255,255,255,.25); }

/* ── KOŞULLU SEÇİLİ ROL KARTI (kullanıcı ekleme formu) ── */
/* PHP'de: class="rol-kart <?= $aktif ? 'rol-kart--secili' : '' ?>" */
.rol-kart--secili {
  border-color: var(--accent) !important;
  background: var(--accent-bg, #E8F8ED);
}
