/* Sayfa Estetik Stilleri - Kurumsal Sade Tasarım */

/* Hizmetler Kartları */
.hizmet-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    text-align: center;
    height: 100%;
}
.hizmet-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}
.hizmet-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}
.hizmet-card .hizmet-baslik {
    display: block;
    margin-top: 15px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
}
.hizmet-card a {
    color: inherit;
    text-decoration: none;
}
.hizmet-card a:hover {
    color: inherit;
}

/* Blog Kartları */
.blog-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 25px;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    height: 100%;
}
.blog-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}
.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
.blog-card .blog-card-body {
    padding: 18px;
    text-align: left;
}
.blog-card .blog-baslik {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
}
.blog-card .blog-tarih {
    display: block;
    font-size: 13px;
    color: #999;
}
.blog-card .blog-tarih i {
    margin-right: 4px;
}
.blog-card a {
    color: inherit;
    text-decoration: none;
}
.blog-card a:hover {
    color: inherit;
}

/* ========== Auth Sayfaları (Giriş, Kayıt, Şifremi Unuttum) ========== */
.auth-container {
    max-width: 700px !important;
    width: 100% !important;
    margin: 40px auto !important;
    padding: 0 15px !important;
    box-sizing: border-box;
    float: none !important;
    position: relative;
}
.auth-box {
    background: #fff !important;
    border-radius: 14px !important;
    padding: 38px 34px !important;
    box-shadow: 0 4px 30px rgba(0,0,0,0.07) !important;
    border: 1px solid #eaeaea !important;
    float: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden;
}
.auth-box * { box-sizing: border-box; }
.auth-box .auth-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: #fff;
    line-height: 1;
}
.auth-box .auth-icon.login-icon { background: linear-gradient(135deg, #28a745, #20c997); }
.auth-box .auth-icon.register-icon { background: linear-gradient(135deg, #007bff, #6f42c1); }
.auth-box .auth-icon.forgot-icon { background: linear-gradient(135deg, #fd7e14, #e83e8c); }
.auth-box .auth-title {
    text-align: center;
    font-size: 23px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 4px 0;
    padding: 0;
    line-height: 1.3;
}
.auth-box .auth-subtitle {
    text-align: center;
    font-size: 13px;
    color: #999;
    margin: 0 0 10px 0;
    padding: 0;
    line-height: 1.5;
    font-weight: 400;
}

/* Form Kontrolleri */
.auth-box .form-control {
    border: 1.5px solid #ddd !important;
    border-radius: 9px !important;
    padding: 12px 15px !important;
    font-size: 14px !important;
    transition: border-color 0.25s ease, box-shadow 0.25s ease !important;
    background: #f8f9fb !important;
    color: #333 !important;
    width: 100% !important;
    height: auto !important;
    box-shadow: none !important;
    -webkit-appearance: none;
    outline: none !important;
    display: block;
    margin-bottom: 0;
}
.auth-box select.form-control {
    -webkit-appearance: auto !important;
    appearance: auto !important;
    cursor: pointer;
}
.auth-box .form-control:focus {
    border-color: #4a90d9 !important;
    box-shadow: 0 0 0 3.5px rgba(74,144,217,0.1) !important;
    background: #fff !important;
    outline: none !important;
}
.auth-box .form-control::placeholder {
    color: #aaa !important;
    font-weight: 400;
}

/* Row Spacing */
.auth-box .row {
    margin-bottom: 12px !important;
    margin-left: -6px !important;
    margin-right: -6px !important;
}
.auth-box .row > [class*="col-"] {
    padding-left: 6px !important;
    padding-right: 6px !important;
}

/* Ana Butonlar */
.auth-box .btn-auth-primary {
    display: block !important;
    width: 100% !important;
    padding: 13px 20px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    border: none !important;
    border-radius: 9px !important;
    color: #fff !important;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.25s ease, filter 0.2s ease !important;
    margin-top: 6px;
    text-align: center;
    line-height: 1.4;
    letter-spacing: 0.2px;
    text-decoration: none !important;
    -webkit-appearance: none;
}
.auth-box .btn-auth-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15) !important;
    filter: brightness(1.05);
    color: #fff !important;
    text-decoration: none !important;
}
.auth-box .btn-auth-primary:active {
    transform: translateY(0) !important;
}
.auth-box .btn-auth-primary.btn-green { background: linear-gradient(135deg, #28a745, #20c997) !important; }
.auth-box .btn-auth-primary.btn-blue { background: linear-gradient(135deg, #007bff, #6f42c1) !important; }
.auth-box .btn-auth-primary.btn-orange { background: linear-gradient(135deg, #fd7e14, #e83e8c) !important; }

/* Divider */
.auth-box .auth-divider {
    display: flex !important;
    align-items: center;
    margin: 24px 0 !important;
    user-select: none;
    -webkit-user-select: none;
}
.auth-box .auth-divider::before,
.auth-box .auth-divider::after {
    content: '' !important;
    flex: 1;
    height: 1px;
    background: #e5e5e5;
}
.auth-box .auth-divider span {
    padding: 0 16px;
    font-size: 11px;
    font-weight: 700;
    color: #bbb;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Alt Buton (Kayıt Ol / Giriş Yap) */
.auth-box .btn-auth-alt {
    display: block !important;
    width: 100% !important;
    padding: 12px 16px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-align: center !important;
    border: 1.5px solid #e0e0e0 !important;
    border-radius: 9px !important;
    background: #fff !important;
    color: #444 !important;
    text-decoration: none !important;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease !important;
    box-sizing: border-box;
    line-height: 1.4;
    cursor: pointer;
}
.auth-box .btn-auth-alt:hover {
    border-color: #c0c0c0 !important;
    background: #f5f6f8 !important;
    color: #333 !important;
    text-decoration: none !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04) !important;
}
.auth-box .btn-auth-alt b { font-weight: 700; }
.auth-box .btn-auth-alt i.fa-chevron-right { font-size: 11px; margin-left: 2px; }

/* Şifremi Unuttum Linki */
.auth-box .auth-link {
    display: inline-block;
    text-align: right;
    font-size: 13px;
    color: #999;
    text-decoration: none !important;
    margin: 4px 0;
    transition: color 0.2s ease;
    font-weight: 400;
}
.auth-box .auth-link:hover { color: #4a90d9 !important; text-decoration: none !important; }
.auth-box .auth-link i { margin-right: 3px; }

/* Checkbox Satırı */
.auth-box .auth-checkbox-row {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    margin: 12px 0 !important;
    font-size: 13px;
    flex-wrap: wrap;
    gap: 6px;
}
.auth-box .auth-checkbox-row label {
    color: #666 !important;
    cursor: pointer;
    font-weight: 400;
    margin: 0;
    font-size: 13px;
}
.auth-box .auth-checkbox-row input[type="checkbox"] {
    margin-right: 5px;
    vertical-align: middle;
}

/* Başarı / Hata Mesajları */
.auth-box .basari,
.auth-box .hata {
    border-radius: 9px !important;
    padding: 14px 18px !important;
    margin-bottom: 18px !important;
    font-size: 14px !important;
    text-align: center;
    font-weight: 500;
    line-height: 1.5;
}
.auth-box .basari {
    background: #edf7ee !important;
    color: #1e7e34 !important;
    border: 1px solid #c3e6cb !important;
}
.auth-box .hata {
    background: #fdf0f0 !important;
    color: #c0392b !important;
    border: 1px solid #f5c6cb !important;
}

/* Checkbox / Sözleşme Alanları */
.auth-sozlesme-kutu {
    background: #f5f6f8 !important;
    border: 1.5px solid #eaeaea !important;
    border-radius: 10px !important;
    padding: 16px !important;
    margin-bottom: 16px !important;
}
.auth-sozlesme-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 8px !important;
    padding: 8px 0 !important;
    border-bottom: 1px solid #eee !important;
}
.auth-sozlesme-item:last-of-type {
    border-bottom: none !important;
    padding-bottom: 0 !important;
}
.auth-sozlesme-item:first-of-type {
    padding-top: 0 !important;
}
.auth-sozlesme-item input[type="checkbox"] {
    margin-top: 2px !important;
    min-width: 16px !important;
    accent-color: #222 !important;
    cursor: pointer !important;
}
.auth-sozlesme-item label {
    font-size: 12.5px !important;
    color: #555 !important;
    font-weight: 400 !important;
    cursor: pointer !important;
    margin: 0 !important;
    line-height: 1.5 !important;
}
.auth-sozlesme-item a {
    color: #4a90d9 !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    cursor: pointer !important;
}
.auth-sozlesme-item a:hover {
    text-decoration: underline !important;
}
.auth-sozlesme-bilgi {
    font-size: 10.5px !important;
    color: #999 !important;
    line-height: 1.6 !important;
    margin-top: 8px !important;
}
.auth-sozlesme-bilgi a {
    color: #4a90d9 !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    cursor: pointer !important;
}
.auth-sozlesme-bilgi a:hover {
    text-decoration: underline !important;
}

/* Sözleşme Modal - sepetim.php ModernModal ile aynı yapı, kayit-ol.php içinde tanımlı */

.auth-box .checkbox label {
    font-size: 12px !important;
    color: #666 !important;
    font-weight: 400;
}
.auth-box .checkbox a {
    color: #4a90d9 !important;
    font-weight: 500;
}
.auth-box .checkbox a:hover {
    text-decoration: underline !important;
}

/* Radio Butonları */
.auth-box .form-check-label {
    font-size: 13px !important;
    color: #777 !important;
}

/* Başvuru Tip Seçici */
.auth-tip-kutu {
    background: #f5f6f8;
    border: 1.5px solid #eaeaea;
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 20px;
    position: relative;
}
.auth-tip-label {
    display: block;
    font-size: 11.5px;
    font-weight: 600;
    color: #999;
    margin-bottom: 12px;
    letter-spacing: 0.2px;
}
.auth-tip-secici {
    display: flex;
    gap: 10px;
    margin-bottom: 0;
}
.auth-tip-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    background: #fafbfc;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    user-select: none;
    -webkit-user-select: none;
}
.auth-tip-item:hover {
    border-color: #ccc;
    background: #f5f5f5;
}
.auth-tip-item.aktif {
    border-color: #222;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.auth-tip-radio {
    width: 18px;
    height: 18px;
    min-width: 18px;
    border-radius: 50%;
    border: 2px solid #ccc;
    position: relative;
    transition: border-color 0.2s ease;
}
.auth-tip-item.aktif .auth-tip-radio {
    border-color: #222;
}
.auth-tip-item.aktif .auth-tip-radio::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #222;
}
.auth-tip-icerik {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    color: #888;
    transition: color 0.2s ease;
}
.auth-tip-item.aktif .auth-tip-icerik {
    color: #222;
}
.auth-tip-icerik i {
    font-size: 15px;
}
@media (max-width: 480px) {
    .auth-tip-secici {
        flex-direction: column;
        gap: 8px;
    }
}

/* Responsive */
@media (max-width: 576px) {
    .auth-container {
        margin: 20px auto;
        padding: 0 10px;
    }
    .auth-box {
        padding: 28px 22px !important;
        border-radius: 12px !important;
    }
    .auth-box .auth-title { font-size: 20px; }
    .auth-box .auth-checkbox-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* ========== Admin Şifremi Unuttum (Özel Tasarım) ========== */
.admin-forgot-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0e1a30 0%, #162038 50%, #0e1a30 100%);
    padding: 20px;
    box-sizing: border-box;
}
.admin-forgot-box {
    width: 100%;
    max-width: 430px;
    background: #1c2336;
    border-radius: 18px;
    padding: 44px 38px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    box-sizing: border-box;
}
.admin-forgot-box * { box-sizing: border-box; }
.admin-forgot-box .admin-forgot-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, #008bea, #00c6ff);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 28px;
    color: #fff;
    box-shadow: 0 6px 25px rgba(0,139,234,0.35);
}
.admin-forgot-box h2 {
    color: #e8e9ed !important;
    font-size: 21px !important;
    font-weight: 700 !important;
    margin: 0 0 6px 0 !important;
    padding: 0 !important;
    line-height: 1.3;
}
.admin-forgot-box .admin-forgot-desc {
    color: #6b7280;
    font-size: 13px;
    margin: 0 0 28px 0;
    padding: 0;
    line-height: 1.6;
    font-weight: 400;
}
.admin-forgot-box .form-control {
    background: #111827 !important;
    border: 1.5px solid rgba(255,255,255,0.08) !important;
    border-radius: 10px !important;
    padding: 14px 18px !important;
    font-size: 14px !important;
    color: #e4e5e9 !important;
    transition: border-color 0.25s ease, box-shadow 0.25s ease !important;
    width: 100% !important;
    height: auto !important;
    box-shadow: none !important;
    -webkit-appearance: none;
    outline: none !important;
    display: block;
}
.admin-forgot-box .form-control::placeholder { color: #4b5563 !important; }
.admin-forgot-box .form-control:focus {
    border-color: #008bea !important;
    box-shadow: 0 0 0 3.5px rgba(0,139,234,0.15) !important;
    outline: none !important;
    background: #111827 !important;
}
.admin-forgot-box .btn-admin-forgot {
    display: block;
    width: 100%;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    color: #fff;
    background: linear-gradient(135deg, #008bea, #00c6ff);
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.25s ease;
    margin-top: 14px;
    box-shadow: 0 6px 20px rgba(0,139,234,0.25);
    text-align: center;
    line-height: 1.4;
    letter-spacing: 0.2px;
}
.admin-forgot-box .btn-admin-forgot:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,139,234,0.4);
}
.admin-forgot-box .btn-admin-forgot:active {
    transform: translateY(0);
}
.admin-forgot-box .admin-forgot-divider {
    display: flex;
    align-items: center;
    margin: 28px 0;
    user-select: none;
    -webkit-user-select: none;
}
.admin-forgot-box .admin-forgot-divider::before,
.admin-forgot-box .admin-forgot-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.06);
}
.admin-forgot-box .admin-forgot-divider span {
    padding: 0 16px;
    font-size: 11px;
    font-weight: 700;
    color: #4b5563;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.admin-forgot-box .btn-admin-support {
    display: block;
    width: 100%;
    padding: 12px 16px;
    font-size: 13px;
    text-align: center;
    border: 1.5px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    background: transparent;
    color: #6b7280;
    text-decoration: none;
    transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
    box-sizing: border-box;
    line-height: 1.4;
}
.admin-forgot-box .btn-admin-support:hover {
    border-color: rgba(0,139,234,0.4);
    color: #e4e5e9;
    text-decoration: none;
    background: rgba(0,139,234,0.05);
}
.admin-forgot-box .btn-admin-support b { color: #00a8ff; font-weight: 600; }
.admin-forgot-box .admin-forgot-result {
    border-radius: 10px;
    padding: 16px 18px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}
.admin-forgot-box .admin-forgot-result.success {
    background: rgba(40,167,69,0.12);
    color: #6ee7a0;
    border: 1px solid rgba(40,167,69,0.18);
}
.admin-forgot-box .admin-forgot-result.error {
    background: rgba(220,53,69,0.12);
    color: #ff7b8a;
    border: 1px solid rgba(220,53,69,0.18);
}
@media (max-width: 480px) {
    .admin-forgot-box {
        padding: 32px 24px;
        border-radius: 14px;
    }
    .admin-forgot-box h2 { font-size: 18px !important; }
}

/* Sipariş Takip Formu */
.takip-section {
    max-width: 650px;
    margin: 0 auto;
    padding: 40px 0;
}
.takip-box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 35px 30px;
    margin-bottom: 20px;
}
.takip-box h3 {
    font-size: 17px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    margin-top: 0;
}
.takip-box p.takip-aciklama {
    font-size: 13px;
    color: #888;
    margin-bottom: 20px;
}
.takip-box .form-control {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 14px;
    height: auto;
    margin-bottom: 0;
}
.takip-box .form-control:focus {
    border-color: #333;
    box-shadow: none;
}
.takip-box .btn-takip {
    width: 100%;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    color: #fff;
    background: #333;
    cursor: pointer;
    transition: background 0.2s ease;
}
.takip-box .btn-takip:hover {
    background: #555;
}
.takip-icon {
    font-size: 28px;
    color: #333;
    margin-bottom: 12px;
    display: block;
}

/* Ödeme Bildirimi Formu */
.odeme-bildirim-section {
    max-width: 550px;
    margin: 0 auto;
    padding: 40px 0;
}
.odeme-bildirim-box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 35px 30px;
}
.odeme-bildirim-box .odeme-icon {
    font-size: 36px;
    color: #333;
    margin-bottom: 10px;
    display: block;
    text-align: center;
}
.odeme-bildirim-box h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-top: 0;
    margin-bottom: 5px;
    text-align: center;
}
.odeme-bildirim-box p.odeme-aciklama {
    font-size: 13px;
    color: #888;
    margin-bottom: 25px;
    text-align: center;
}
.odeme-bildirim-box label {
    float: left;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    margin-bottom: 5px;
}
.odeme-bildirim-box .form-control {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 14px;
    height: auto;
    margin-bottom: 15px;
}
.odeme-bildirim-box .form-control:focus {
    border-color: #333;
    box-shadow: none;
}
.odeme-bildirim-box select.form-control {
    appearance: auto;
}
.odeme-bildirim-box .btn-bildirim {
    width: 100%;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    color: #fff;
    background: #333;
    cursor: pointer;
    transition: background 0.2s ease;
    margin-top: 5px;
}
.odeme-bildirim-box .btn-bildirim:hover {
    background: #555;
}

/* Banka Hesapları Kartları */
.banka-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 25px 20px;
    margin-bottom: 25px;
    text-align: center;
    transition: box-shadow 0.25s ease;
    height: 100%;
}
.banka-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
.banka-card img {
    max-width: 180px;
    height: 70px;
    object-fit: contain;
    display: block;
    margin: 0 auto 15px;
}
.banka-card .banka-baslik {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    display: block;
    margin-bottom: 8px;
}
.banka-card .banka-aciklama {
    font-size: 13px;
    color: #666;
    display: block;
    word-break: break-all;
    line-height: 1.6;
}
.banka-card .banka-iban-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    margin-top: 10px;
}
.banka-bos {
    text-align: center;
    padding: 50px 20px;
    color: #999;
    font-size: 16px;
}
.banka-bos i {
    font-size: 40px;
    display: block;
    margin-bottom: 15px;
    color: #ccc;
}

/* Sonuç Mesajları (Takip & Ödeme) */
.sonuc-mesaj {
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}
.sonuc-mesaj.basari {
    background: #f0faf0;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
    box-shadow: none;
    border-radius: 8px;
}
.sonuc-mesaj.hata {
    background: #fef0f0;
    color: #c62828;
    border: 1px solid #ffcdd2;
    box-shadow: none;
    border-radius: 8px;
}

/* Sayfa Bölüm Başlığı */
.sayfa-bolum-baslik {
    text-align: center;
    margin-bottom: 35px;
}
.sayfa-bolum-baslik h2 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}
.sayfa-bolum-baslik p {
    font-size: 14px;
    color: #888;
    margin: 0;
}
.sayfa-bolum-baslik .baslik-cizgi {
    width: 40px;
    height: 2px;
    background: #333;
    margin: 12px auto 0;
}

/* ========== Header Top Bar - Kompakt Görünüm ========== */
.header-top .top-menu > li > ul {
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
}
.header-top .top-menu li + li {
    margin-left: 6px !important;
    padding-right: 6px !important;
}
.header-top .top-menu li a {
    font-size: 12px !important;
    white-space: nowrap;
}
.header-top .top-menu li a i {
    margin-right: 1px !important;
    font-size: 13px;
}
@media (max-width: 1200px) {
    .header-top .top-menu li + li {
        margin-left: 4px !important;
        padding-right: 4px !important;
    }
    .header-top .top-menu li a {
        font-size: 11px !important;
    }
}
