/* ========================================
   HESABIM PAGE STYLES
   ======================================== */

.hesabim-page {
    padding: 20px 16px 40px;
    background: #f5f6f8;
    min-height: 70vh;
}

/* Breadcrumb stilleri: public/assets/css/style.css */

/* Welcome */
.hesabim-welcome {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding: 20px 24px;
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.hesabim-avatar i {
    font-size: 48px;
    color: #2A3F54;
}

.hesabim-welcome-text h1 {
    font-size: 20px;
    font-weight: 700;
    color: #2A3F54;
    margin: 0 0 4px;
}

.hesabim-welcome-text p {
    font-size: 13px;
    color: #6c757d;
    margin: 0;
}

/* Layout */
.hesabim-layout {
    display: flex;
    gap: 24px;
}

/* Sidebar */
.hesabim-sidebar {
    width: 260px;
    flex-shrink: 0;
}

.hesabim-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    overflow: hidden;
}

.hesabim-menu li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    font-size: 14px;
    color: #495057;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    border-bottom: 1px solid #f1f3f5;
}

.hesabim-menu li:last-child {
    border-bottom: none;
}

.hesabim-menu li i {
    font-size: 18px;
    color: #6c757d;
    width: 22px;
    text-align: center;
    flex-shrink: 0;
}

.hesabim-menu li:hover {
    background: #f8f9fa;
    color: #2A3F54;
}

.hesabim-menu li:hover i {
    color: #2A3F54;
}

.hesabim-menu li.active {
    background: #2A3F54;
    color: #ffffff;
}

.hesabim-menu li.active i {
    color: #ffffff;
}

.hesabim-menu-cikis {
    color: #dc3545 !important;
}

.hesabim-menu-cikis i {
    color: #dc3545 !important;
}

.hesabim-menu-cikis:hover {
    background: #fff5f5 !important;
    color: #dc3545 !important;
}

/* Content Area */
.hesabim-content {
    flex: 1;
    min-width: 0;
}

.hesabim-tab {
    display: none;
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    padding: 24px;
}

.hesabim-tab.active {
    display: block;
}

.hesabim-tab-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.hesabim-tab-header h2 {
    font-size: 20px;
    font-weight: 700;
    color: #2A3F54;
    margin: 0;
}

.hesabim-tab-count {
    font-size: 13px;
    color: #6c757d;
    background: #f1f3f5;
    padding: 4px 12px;
    border-radius: 20px;
}

.hesabim-select {
    padding: 6px 14px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    font-size: 13px;
    color: #495057;
    background: #fff;
    outline: none;
}

.hesabim-select:focus {
    border-color: #2A3F54;
}

/* ===== EMPTY STATE ===== */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: #fafbfc;
    border-radius: 8px;
    border: 2px dashed #dee2e6;
}

.empty-state i {
    font-size: 64px;
    color: #adb5bd;
    margin-bottom: 16px;
    display: block;
}

.empty-state h3 {
    font-size: 18px;
    font-weight: 700;
    color: #495057;
    margin: 0 0 8px;
}

.empty-state p {
    font-size: 14px;
    color: #6c757d;
    margin: 0 0 20px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.empty-state-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 24px;
    border-radius: 6px;
    background: #2A3F54;
    color: #fff;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s;
}

.empty-state-btn:hover {
    background: #1e2f40;
    color: #fff;
}

.btn-yeni-adres-ekle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    background: linear-gradient(135deg, #2A3F54 0%, #1e2f40 100%);
    color: #fff;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(42, 63, 84, 0.15);
}

.btn-yeni-adres-ekle:hover {
    background: linear-gradient(135deg, #34495e 0%, #2A3F54 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(42, 63, 84, 0.25);
    color: #fff;
}

.btn-yeni-adres-ekle:active {
    transform: translateY(0);
}

.btn-yeni-adres-ekle i {
    font-size: 16px;
}

/* ===== SİPARİŞLER ===== */
.siparis-card {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
}

.siparis-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    flex-wrap: wrap;
    gap: 8px;
}

.siparis-info {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.siparis-no {
    font-size: 13px;
    color: #495057;
}

.siparis-no strong {
    color: #2A3F54;
}

.siparis-tarih {
    font-size: 12px;
    color: #6c757d;
}

.siparis-durum {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.siparis-durum-kargoda {
    background: #e7f3ff;
    color: #0d6efd;
}

.siparis-durum-teslim {
    background: #e6f9e6;
    color: #198754;
}

.siparis-durum-iptal {
    background: #fde8e8;
    color: #dc3545;
}

/* Sipariş durum renkleri: başarısız -> kırmızı, başarılı -> yeşil */
.siparis-durum-basarisiz,
.siparis-durum-failed,
.siparis-durum-basarisiz-odeme,
.siparis-durum-iade,
.siparis-durum-iptal-edildi,
.siparis-durum-reddedildi {
    background: #fde8e8;
    color: #dc3545;
}

.siparis-durum-teslim,
.siparis-durum-tamamlandi,
.siparis-durum-onaylandi,
.siparis-durum-odendi {
    background: #e6f9e6;
    color: #198754;
}

.siparis-durum-kargoda,
.siparis-durum-yolda,
.siparis-durum-aktarildi {
    background: #e7f3ff;
    color: #0d6efd;
}

.siparis-durum-beklemede,
.siparis-durum-hazirlaniyor,
.siparis-durum-onay,
.siparis-durum-isleme {
    background: #fff4e0;
    color: #c77700;
}

/* İade talebi durum renkleri */
.talep-durum-approved,
.talep-durum-completed,
.talep-durum-onaylandi {
    background: #e6f9e6;
    color: #198754;
}

.talep-durum-rejected,
.talep-durum-cancelled,
.talep-durum-reddedildi,
.talep-durum-iptal-edildi {
    background: #fde8e8;
    color: #dc3545;
}

.talep-durum-pending,
.talep-durum-processing,
.talep-durum-beklemede,
.talep-durum-islemde {
    background: #fff4e0;
    color: #c77700;
}

.siparis-card-body {
    padding: 16px 18px;
}

.siparis-urun {
    display: flex;
    align-items: center;
    gap: 16px;
}

.siparis-urun img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    flex-shrink: 0;
}

.siparis-urun-detay {
    flex: 1;
    min-width: 0;
}

.siparis-urun-detay h4 {
    font-size: 14px;
    font-weight: 600;
    color: #212529;
    margin: 0 0 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.siparis-urun-detay p {
    font-size: 12px;
    color: #6c757d;
    margin: 0 0 4px;
}

.hesap-iptal-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #adb5bd;
    cursor: pointer;
    border: none;
    background: none;
    padding: 8px 0;
    transition: color 0.2s;
}

.hesap-iptal-link:hover {
    color: #dc3545;
}

.siparis-urun-kod,
.teklif-urun-kod,
.talep-urun-kod {
    display: block;
    font-size: 12px;
    color: #6c757d;
    margin-bottom: 4px;
}

.siparis-urun-kod i,
.teklif-urun-kod i,
.talep-urun-kod i {
    color: #e67e22;
    margin-right: 4px;
}

.siparis-urun-kod strong,
.teklif-urun-kod strong,
.talep-urun-kod strong {
    color: #1a2b4a;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.talep-urun-kod {
    display: inline-block;
    margin-left: 8px;
    font-size: 11px;
}

.siparis-magaza {
    font-size: 12px;
    color: #2A3F54;
    font-weight: 600;
}

.siparis-fiyat {
    flex-shrink: 0;
    text-align: right;
}

.siparis-fiyat strong {
    font-size: 16px;
    color: #2A3F54;
}

.siparis-card-footer {
    display: flex;
    gap: 8px;
    padding: 12px 18px;
    background: #fafbfc;
    border-top: 1px solid #e9ecef;
    flex-wrap: wrap;
}

.siparis-card-footer button {
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.15s;
    border: none;
}

.btn-siparis-detay {
    background: #2A3F54;
    color: #fff;
}
.btn-siparis-detay:hover { background: #1e2f40; }

.btn-siparis-takip {
    background: #0d6efd;
    color: #fff;
}
.btn-siparis-takip:hover { background: #0b5ed7; }

.btn-siparis-degerlendir {
    background: #e8a317;
    color: #fff;
}
.btn-siparis-degerlendir:hover { background: #d4940f; }

.btn-siparis-iade {
    background: #fff;
    color: #dc3545;
    border: 1px solid #dc3545 !important;
}
.btn-siparis-iade:hover { background: #fde8e8; }

.siparis-tip-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    letter-spacing: 0.2px;
}
.siparis-tip-adet { background: #e8f4fd; color: #0a6ebd; }
.siparis-tip-seri { background: #f0e8fd; color: #6f42c1; }

.siparis-fiyat {
    flex-shrink: 0;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}
.siparis-fiyat strong { font-size: 16px; color: #2A3F54; display: block; }
.siparis-fiyat small { font-size: 11px; color: #adb5bd; }

/* Takipten Çık Butonu */
.btn-takipten-cik {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    background: #f8fafc;
    color: #64748b;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-takipten-cik:hover {
    background: #fff1f2;
    color: #e11d48;
    border-color: #fecdd3;
    box-shadow: 0 2px 8px rgba(225, 29, 72, 0.1);
}

.btn-takipten-cik:active {
    transform: scale(0.97);
}


/* ===== SİPARİŞ DETAY MODAL ===== */
.sd-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
}
.sd-modal-overlay.aktif {
    opacity: 1;
    pointer-events: all;
}
.sd-modal-overlay.aktif .sd-modal {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.sd-modal {
    background: #fff;
    border-radius: 14px;
    width: 100%;
    max-width: 620px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 12px 50px rgba(0,0,0,0.2);
    transform: translateY(28px) scale(0.97);
    opacity: 0;
    transition: transform 0.28s ease, opacity 0.28s ease;
    overflow: hidden;
}

.sd-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 22px;
    background: #2A3F54;
    color: #fff;
    flex-shrink: 0;
}

.sd-modal-baslik {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
}

.sd-modal-baslik > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sd-siparis-no-text {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.3px;
}

.sd-tip-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 2px 9px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    width: fit-content;
}
.sd-tip-badge.adet { background: rgba(255,255,255,0.18); color: #fff; }
.sd-tip-badge.seri { background: rgba(255,255,255,0.18); color: #fff; }

.sd-kapat-btn {
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    font-size: 15px;
    padding: 6px 9px;
    border-radius: 7px;
    cursor: pointer;
    transition: background 0.12s;
    line-height: 1;
    flex-shrink: 0;
}
.sd-kapat-btn:hover { background: rgba(255,255,255,0.28); }

.sd-modal-body {
    overflow-y: auto;
    padding: 0;
    flex: 1;
}

/* Ürün Bloku */
.sd-urun-blok {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 22px;
    border-bottom: 1px solid #e9ecef;
    background: #f8f9fa;
}

.sd-urun-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    flex-shrink: 0;
}

.sd-urun-bilgi {
    flex: 1;
    min-width: 0;
}

.sd-urun-adi {
    font-size: 14px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 4px;
    line-height: 1.4;
}

.sd-urun-magaza {
    font-size: 12px;
    color: #2A3F54;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.sd-durum-satir {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.sd-durum-badge {
    font-size: 12px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.sd-durum-badge.siparis-durum-kargoda { background: #e7f3ff; color: #0d6efd; }
.sd-durum-badge.siparis-durum-teslim  { background: #e6f9e6; color: #198754; }
.sd-durum-badge.siparis-durum-iptal   { background: #fde8e8; color: #dc3545; }

.sd-tarih {
    font-size: 12px;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Bölümler */
.sd-bolum {
    padding: 16px 22px;
    border-bottom: 1px solid #f0f0f0;
}

.sd-bolum-baslik {
    font-size: 12px;
    font-weight: 700;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Info Grid */
.sd-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
}

.sd-info-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.sd-info-label {
    font-size: 11px;
    color: #adb5bd;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
}

.sd-info-val {
    font-size: 13px;
    font-weight: 600;
    color: #212529;
}

.sd-kargo-kodu {
    font-family: monospace;
    font-size: 12px;
    color: #2A3F54;
    background: #e8f4fd;
    padding: 2px 7px;
    border-radius: 4px;
    width: fit-content;
}

.sd-adres-satir {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sd-adres-val {
    font-size: 13px;
    color: #495057;
    line-height: 1.5;
}

/* Seri Grid */
.sd-seri-meta {
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 12px;
}

.sd-seri-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sd-seri-kart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    background: #f8f9fa;
    border: 1.5px solid #dee2e6;
    border-radius: 8px;
    padding: 8px 14px;
    min-width: 60px;
}

.sd-seri-beden {
    font-size: 13px;
    font-weight: 700;
    color: #2A3F54;
}

.sd-seri-adet {
    font-size: 11px;
    color: #6c757d;
    font-weight: 500;
}

.sd-seri-adet-val {
    font-size: 14px;
    font-weight: 700;
    color: #6f42c1;
}

/* Kademe Listesi */
.sd-kademe-listesi {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sd-kademe-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    background: #f8f9fa;
    border: 1.5px solid #dee2e6;
    border-radius: 8px;
    padding: 8px 14px;
    min-width: 90px;
    transition: border-color 0.12s, background 0.12s;
}

.sd-kademe-miktar {
    font-size: 11px;
    color: #6c757d;
    font-weight: 500;
    text-align: center;
}

.sd-kademe-fiyat {
    font-size: 14px;
    font-weight: 700;
    color: #2A3F54;
}

/* Toplam */
.sd-toplam-blok {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 22px;
    background: #f8f9fa;
    border-top: 2px solid #e9ecef;
}

.sd-toplam-label {
    font-size: 14px;
    font-weight: 600;
    color: #495057;
}

.sd-toplam-fiyat {
    font-size: 22px;
    font-weight: 800;
    color: #2A3F54;
}

/* Footer */
.sd-modal-footer {
    padding: 14px 22px;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    flex-shrink: 0;
    background: #fff;
}

.sd-btn-kapat {
    padding: 9px 24px;
    border-radius: 7px;
    border: 1.5px solid #dee2e6;
    background: #fff;
    color: #6c757d;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.12s, border-color 0.12s;
}
.sd-btn-kapat:hover { background: #f8f9fa; border-color: #adb5bd; }

/* Fiyat Detayları */
.sd-fiyat-kupon {
    background: linear-gradient(135deg, #fff9e6 0%, #fff3cd 100%);
    border: 1.5px solid #ffc107;
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 12px;
}

.sd-kupon-bilgi {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #856404;
}

.sd-kupon-bilgi i {
    font-size: 20px;
    color: #ffc107;
}

.sd-kupon-kodu {
    margin-left: auto;
    background: #ffc107;
    color: #212529;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    font-family: monospace;
}

.sd-fiyat-teklif {
    background: linear-gradient(135deg, #f0e8fd 0%, #e8d5f7 100%);
    border: 1.5px solid #6f42c1;
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 12px;
}

.sd-teklif-bilgi {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #6f42c1;
}

.sd-teklif-bilgi i {
    font-size: 20px;
    color: #6f42c1;
}

.sd-fiyat-karsilastirma {
    background: #f8f9fa;
    border: 1.5px solid #e9ecef;
    border-radius: 10px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.sd-fiyat-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.sd-fiyat-label {
    font-size: 11px;
    color: #adb5bd;
    font-weight: 500;
}

.sd-fiyat-eski {
    font-size: 16px;
    font-weight: 700;
    color: #dc3545;
    text-decoration: line-through;
}

.sd-fiyat-yeni {
    font-size: 18px;
    font-weight: 800;
    color: #198754;
}

.sd-fiyat-ok {
    color: #adb5bd;
    font-size: 20px;
}

.sd-indirim-badge {
    margin-left: auto;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.sd-indirim-badge span {
    display: flex;
    align-items: center;
    gap: 4px;
}

@media (max-width: 576px) {
    .sd-info-grid { grid-template-columns: 1fr; }
    .sd-modal { max-height: 95vh; border-radius: 14px 14px 0 0; align-self: flex-end; }
    .sd-modal-overlay { align-items: flex-end; padding: 0; }
    .sd-fiyat-karsilastirma { flex-direction: column; align-items: flex-start; gap: 12px; }
    .sd-fiyat-ok { transform: rotate(90deg); }
    .sd-indirim-badge { margin-left: 0; margin-top: 8px; }
}


/* ===== BEĞENDİKLERİM ===== */
.begendiklerim-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 20px;
}

.begendiklerim-grid .urun-karti {
    min-width: unset;
    max-width: unset;
}

.begeni-card {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.15s;
}

.begeni-card:hover {
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.begeni-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.begeni-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.begeni-remove {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.9);
    color: #dc3545;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: background 0.15s;
}

.begeni-remove:hover {
    background: #dc3545;
    color: #fff;
}

.begeni-card-body {
    padding: 12px;
}

.begeni-card-body h4 {
    font-size: 13px;
    font-weight: 600;
    color: #212529;
    margin: 0 0 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.begeni-fiyat {
    font-size: 15px;
    font-weight: 700;
    color: #2A3F54;
    margin-bottom: 4px;
}

.begeni-fiyat-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.begeni-eski-fiyat {
    font-size: 12px;
    color: #adb5bd;
    text-decoration: line-through;
}

.begeni-magaza {
    display: block;
    font-size: 11px;
    color: #6c757d;
    margin-bottom: 10px;
}

.begeni-sepet-btn {
    width: 100%;
    padding: 7px;
    border: none;
    border-radius: 6px;
    background: #2A3F54;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: background 0.15s;
}

.begeni-sepet-btn:hover {
    background: #1e2f40;
}


/* ===== TAKİP ETTİĞİM MAĞAZALAR ===== */
.magaza-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.magaza-card-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f1f3f5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.magaza-card-avatar i {
    font-size: 24px;
    color: #2A3F54;
}

.magaza-card-info {
    flex: 1;
    min-width: 0;
}

.magaza-card-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: #212529;
    margin: 0 0 6px;
}

.magaza-card-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.magaza-card-meta span {
    font-size: 12px;
    color: #6c757d;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.magaza-card-meta .bi-star-fill {
    color: #e8a317;
}

.magaza-card-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.btn-magaza-git {
    padding: 6px 16px;
    border-radius: 6px;
    background: #2A3F54;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.15s;
}
.btn-magaza-git:hover { background: #1e2f40; color: #fff; }

.btn-magaza-takipten-cik {
    padding: 6px 16px;
    border-radius: 6px;
    border: 1px solid #dee2e6;
    background: #fff;
    color: #6c757d;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.15s;
}
.btn-magaza-takipten-cik:hover { border-color: #dc3545; color: #dc3545; }


/* ===== İADE TALEPLERİM ===== */
.iade-tab-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.iade-tab-header h2 {
    margin: 0;
}

.btn-yeni-iade-talep {
    padding: 9px 20px;
    border-radius: 7px;
    background: #2A3F54;
    color: #fff;
    border: none;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: background 0.15s, transform 0.1s;
    white-space: nowrap;
}
.btn-yeni-iade-talep:hover { background: #1e2f40; transform: translateY(-1px); }
.btn-yeni-iade-talep:active { transform: translateY(0); }

.talep-card {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
}

.iade-talep-card {
    border-left: 3px solid #2A3F54;
    transition: box-shadow 0.15s;
}
.iade-talep-card:hover { box-shadow: 0 2px 10px rgba(0,0,0,0.08); }

.talep-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 18px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.talep-header-left {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.talep-no {
    font-size: 12px;
    font-weight: 700;
    color: #2A3F54;
    letter-spacing: 0.3px;
}

.talep-urun-adi {
    font-size: 13px;
    font-weight: 500;
    color: #495057;
}

.talep-durum {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 11px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.talep-durum-yanit    { background: #e6f9e6; color: #198754; }
.talep-durum-beklemede { background: #fff3cd; color: #856404; }
.talep-durum-kapali   { background: #f1f3f5; color: #6c757d; }
.talep-durum-onaylandi { background: #d1f0e0; color: #0f6e3a; }
.talep-durum-tamamlandi { background: #e8f4fd; color: #0a6ebd; }

.talep-card-body {
    padding: 14px 18px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.iade-card-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.iade-info-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}

.iade-info-label {
    color: #6c757d;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    min-width: 110px;
}

.iade-info-value {
    color: #212529;
    font-weight: 500;
}

.talep-tarih {
    font-size: 11px;
    color: #adb5bd;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}


/* ===== İADE TALEP MODAL ===== */
.iade-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
}
.iade-modal-overlay.aktif {
    opacity: 1;
    pointer-events: all;
}
.iade-modal-overlay.aktif .iade-modal {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.iade-modal {
    background: #fff;
    border-radius: 12px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.18);
    transform: translateY(24px) scale(0.97);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
    overflow: hidden;
}

.iade-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px 16px;
    border-bottom: 1px solid #e9ecef;
    background: #f8f9fa;
}

.iade-modal-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #2A3F54;
    display: flex;
    align-items: center;
    gap: 8px;
}

.iade-modal-kapat {
    background: none;
    border: none;
    cursor: pointer;
    color: #6c757d;
    font-size: 16px;
    padding: 4px 6px;
    border-radius: 5px;
    transition: background 0.12s, color 0.12s;
    line-height: 1;
}
.iade-modal-kapat:hover { background: #e9ecef; color: #212529; }

.iade-modal-body {
    padding: 22px 22px 8px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.iade-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.iade-form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #495057;
    display: flex;
    align-items: center;
    gap: 5px;
}

.iade-select {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #dee2e6;
    border-radius: 7px;
    font-size: 14px;
    color: #212529;
    background: #fff;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236c757d' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
    transition: border-color 0.15s, box-shadow 0.15s;
    outline: none;
}
.iade-select:focus { border-color: #2A3F54; box-shadow: 0 0 0 3px rgba(42,63,84,0.1); }
.iade-select.hata { border-color: #dc3545; box-shadow: 0 0 0 3px rgba(220,53,69,0.1); }

.iade-textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #dee2e6;
    border-radius: 7px;
    font-size: 14px;
    color: #212529;
    resize: vertical;
    font-family: inherit;
    transition: border-color 0.15s, box-shadow 0.15s;
    outline: none;
    box-sizing: border-box;
}
.iade-textarea:focus { border-color: #2A3F54; box-shadow: 0 0 0 3px rgba(42,63,84,0.1); }

.iade-modal-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding: 16px 22px 20px;
    border-top: 1px solid #e9ecef;
    margin-top: 8px;
}

.iade-btn-iptal {
    padding: 9px 20px;
    border-radius: 7px;
    border: 1.5px solid #dee2e6;
    background: #fff;
    color: #6c757d;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.12s, border-color 0.12s;
}
.iade-btn-iptal:hover { background: #f8f9fa; border-color: #adb5bd; }

.iade-btn-gonder {
    padding: 9px 22px;
    border-radius: 7px;
    border: none;
    background: #2A3F54;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: background 0.12s, transform 0.1s;
}
.iade-btn-gonder:hover { background: #1e2f40; transform: translateY(-1px); }
.iade-btn-gonder:active { transform: translateY(0); }

/* ===== İADE FOTOĞRAF YÜKLEME ===== */
.iade-img-upload-area {
    border: 2px dashed #d1d5db;
    border-radius: 10px;
    padding: 4px;
    transition: border-color 0.2s;
    cursor: pointer;
    position: relative;
}

.iade-img-upload-area:hover,
.iade-img-upload-area.dragover {
    border-color: #2A3F54;
}

.iade-img-input {
    display: none;
}

.iade-img-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 22px 16px;
    gap: 4px;
    color: #6c757d;
    font-size: 13px;
}

.iade-img-placeholder i {
    font-size: 30px;
    color: #adb5bd;
    margin-bottom: 4px;
}

.iade-img-placeholder small {
    color: #adb5bd;
    font-size: 11px;
}

.iade-img-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 8px;
}

.iade-img-thumb {
    position: relative;
    width: 68px;
    height: 68px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.iade-img-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.iade-img-thumb-remove {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(220, 38, 38, 0.9);
    color: #fff;
    border: none;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: background 0.12s;
}

.iade-img-thumb-remove:hover {
    background: rgba(185, 28, 28, 1);
}

/* ===== İADE KART FOTOĞRAFLARI ===== */
.iade-card-photos {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #f1f3f5;
}

.iade-card-photos-label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 8px;
}

.iade-card-photos-label i {
    font-size: 14px;
}

.iade-card-photos-list {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.iade-card-photos-list img {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid #e9ecef;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
}

.iade-card-photos-list img:hover {
    transform: scale(1.08);
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

/* ===== BAŞARILI POPUP ===== */
.iade-basarili-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 9100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
}
.iade-basarili-overlay.aktif {
    opacity: 1;
    pointer-events: all;
}
.iade-basarili-overlay.aktif .iade-basarili-modal {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.iade-basarili-modal {
    background: #fff;
    border-radius: 14px;
    width: 100%;
    max-width: 360px;
    padding: 36px 28px 30px;
    text-align: center;
    box-shadow: 0 8px 40px rgba(0,0,0,0.18);
    transform: translateY(24px) scale(0.95);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.iade-basarili-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.iade-checkmark {
    width: 72px;
    height: 72px;
}

.iade-checkmark-circle {
    stroke: #28a745;
    stroke-width: 2;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-miterlimit: 10;
    animation: iade-stroke 0.6s cubic-bezier(0.65,0,0.45,1) 0.1s forwards;
}

.iade-checkmark-check {
    stroke: #28a745;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: iade-stroke 0.4s cubic-bezier(0.65,0,0.45,1) 0.65s forwards;
}

@keyframes iade-stroke {
    100% { stroke-dashoffset: 0; }
}

.iade-basarili-modal h3 {
    font-size: 20px;
    font-weight: 700;
    color: #212529;
    margin: 0 0 10px;
}

.iade-basarili-modal p {
    font-size: 14px;
    color: #6c757d;
    margin: 0 0 24px;
    line-height: 1.6;
}

.iade-basarili-btn {
    padding: 10px 36px;
    border-radius: 8px;
    border: none;
    background: #28a745;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s, transform 0.1s;
}
.iade-basarili-btn:hover { background: #218838; transform: translateY(-1px); }
.iade-basarili-btn:active { transform: translateY(0); }


/* ===== KULLANICI BİLGİLERİM ===== */
.kullanici-form {
    max-width: 700px;
}

.form-row-2 {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.form-row-2 .form-group {
    flex: 1;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #495057;
    margin-bottom: 6px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    font-size: 14px;
    color: #212529;
    background: #fff;
    outline: none;
    transition: border-color 0.15s;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #2A3F54;
}

.form-divider {
    border-color: #e9ecef;
    margin: 24px 0;
}

.form-section-title {
    font-size: 16px;
    font-weight: 700;
    color: #2A3F54;
    margin: 0 0 16px;
}

.bildirim-tercih-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.bildirim-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #495057;
    cursor: pointer;
}

.bildirim-check input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #2A3F54;
}

.form-actions {
    display: flex;
    gap: 12px;
}

.btn-kaydet {
    padding: 10px 24px;
    border-radius: 6px;
    background: #2A3F54;
    color: #fff;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.15s;
}
.btn-kaydet:hover { background: #1e2f40; }

.btn-iptal {
    padding: 10px 24px;
    border-radius: 6px;
    background: #fff;
    color: #6c757d;
    border: 1px solid #dee2e6;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
}
.btn-iptal:hover { border-color: #adb5bd; color: #495057; }


/* ===== ADRESLERİM ===== */
.adresler-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 16px;
}

.adres-card {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.15s;
}

.adres-card:hover {
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.adres-card-varsayilan {
    border-color: #2A3F54;
}

.adres-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.adres-card-header h4 {
    font-size: 14px;
    font-weight: 700;
    color: #2A3F54;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.adres-varsayilan-badge {
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    background: #2A3F54;
    padding: 2px 10px;
    border-radius: 20px;
}

.adres-card-body {
    padding: 14px 16px;
}

.adres-card-body p {
    font-size: 13px;
    color: #495057;
    margin: 0 0 4px;
    line-height: 1.5;
}

.adres-card-body p i {
    color: #6c757d;
    margin-right: 6px;
}

.adres-card-footer {
    display: flex;
    gap: 8px;
    padding: 10px 16px;
    background: #fafbfc;
    border-top: 1px solid #e9ecef;
    flex-wrap: wrap;
}

.adres-card-footer button {
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.15s;
    border: 1px solid #dee2e6;
    background: #fff;
    color: #495057;
}

.btn-adres-duzenle:hover { border-color: #2A3F54; color: #2A3F54; background: #f0f4f8; }
.btn-adres-sil:hover { border-color: #dc3545; color: #dc3545; background: #fff5f5; }
.btn-adres-varsayilan:hover { border-color: #198754; color: #198754; background: #f6fdf6; }
.btn-adres-varsayilan {
    border-color: #198754 !important;
    color: #198754 !important;
}


/* ===== DEĞERLENDİRMELERİM ===== */
.degerlendirme-card {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 12px;
}

.degerlendirme-urun {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.degerlendirme-urun img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #e9ecef;
    flex-shrink: 0;
}

.degerlendirme-urun-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: #212529;
    margin: 0 0 4px;
}

.degerlendirme-magaza {
    font-size: 12px;
    color: #2A3F54;
    font-weight: 600;
}

.degerlendirme-icerik {
    padding-left: 74px;
}

.degerlendirme-stars {
    margin-bottom: 6px;
}

.degerlendirme-stars i {
    font-size: 14px;
    color: #e8a317;
}

.degerlendirme-icerik p {
    font-size: 13px;
    color: #495057;
    margin: 0 0 8px;
    line-height: 1.5;
}

.degerlendirme-tarih {
    font-size: 11px;
    color: #adb5bd;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}


/* ===== YARDIM ===== */
.yardim-arama {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 24px;
}

.yardim-arama i {
    font-size: 18px;
    color: #6c757d;
}

.yardim-arama input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 14px;
    color: #212529;
    outline: none;
}

.yardim-arama input::placeholder {
    color: #adb5bd;
}

.yardim-kategori-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 30px;
}

.yardim-kategori-card {
    padding: 20px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.15s;
}

.yardim-kategori-card:hover {
    border-color: #2A3F54;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.yardim-kategori-card i {
    font-size: 28px;
    color: #2A3F54;
    margin-bottom: 10px;
    display: block;
}

.yardim-kategori-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: #212529;
    margin: 0 0 4px;
}

.yardim-kategori-card p {
    font-size: 12px;
    color: #6c757d;
    margin: 0;
}

.yardim-sss-title {
    font-size: 16px;
    font-weight: 700;
    color: #2A3F54;
    margin: 0 0 14px;
}

.yardim-sss-item {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 8px;
    overflow: hidden;
}

.yardim-sss-soru {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    cursor: pointer;
    transition: background 0.15s;
}

.yardim-sss-soru:hover {
    background: #f8f9fa;
}

.yardim-sss-soru span {
    font-size: 14px;
    font-weight: 600;
    color: #212529;
}

.yardim-sss-soru i {
    font-size: 14px;
    color: #6c757d;
    transition: transform 0.2s;
}

.yardim-sss-item.open .yardim-sss-soru i {
    transform: rotate(180deg);
}

.yardim-sss-cevap {
    display: none;
    padding: 0 18px 14px;
}

.yardim-sss-item.open .yardim-sss-cevap {
    display: block;
}

.yardim-sss-cevap p {
    font-size: 13px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

.yardim-iletisim {
    margin-top: 30px;
    padding: 24px;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.yardim-iletisim h3 {
    font-size: 16px;
    font-weight: 700;
    color: #2A3F54;
    margin: 0 0 6px;
}

.yardim-iletisim p {
    font-size: 13px;
    color: #6c757d;
    margin: 0 0 16px;
}

.yardim-iletisim-butonlar {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.yardim-iletisim-butonlar a,
.yardim-iletisim-butonlar button {
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: all 0.15s;
    border: none;
}

.btn-yardim-ara {
    background: #2A3F54;
    color: #fff;
}
.btn-yardim-ara:hover { background: #1e2f40; color: #fff; }

.btn-yardim-mail {
    background: #fff;
    color: #2A3F54;
    border: 1px solid #2A3F54 !important;
}
.btn-yardim-mail:hover { background: #f0f4f8; color: #2A3F54; }

.btn-yardim-chat {
    background: #198754;
    color: #fff;
}
.btn-yardim-chat:hover { background: #157347; }


/* ===== MOBİL MENÜ (Varsayılan: gizli) ===== */
.hesabim-sidebar-mobil {
    display: none;
}
.mobil-content-header {
    display: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hesabim-layout {
        flex-direction: column;
    }

    /* Desktop sidebar gizle */
    .hesabim-sidebar-desktop {
        display: none !important;
    }

    /* Breadcrumb & welcome gizle (mobil menü kendi header'ını gösterir) */
    .hesabim-breadcrumb {
        display: none;
    }
    .hesabim-welcome {
        display: none;
    }

    /* Mobil menü göster */
    .hesabim-sidebar-mobil {
        display: block;
        width: 100%;
    }

    /* Mobil menü header */
    .mobil-menu-header {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 16px 18px;
        background: #fff;
        border-bottom: 1px solid #e9ecef;
    }

    .mobil-menu-back {
        color: #212529;
        font-size: 22px;
        text-decoration: none;
        display: flex;
        align-items: center;
    }

    .mobil-menu-username {
        font-size: 16px;
        font-weight: 600;
        color: #212529;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Grup başlığı */
    .mobil-menu-grup {
        margin-bottom: 0;
    }

    .mobil-menu-grup-baslik {
        padding: 14px 18px 8px;
        font-size: 13px;
        font-weight: 600;
        color: #6c757d;
        background: #f5f5f5;
        text-transform: none;
        letter-spacing: 0;
    }

    /* Menü listesi */
    .mobil-menu-liste {
        list-style: none;
        padding: 0;
        margin: 0;
        background: #fff;
    }

    .mobil-menu-liste li {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 15px 18px;
        font-size: 14px;
        color: #333;
        cursor: pointer;
        border-bottom: 1px solid #f0f0f0;
        transition: background 0.15s;
        position: relative;
    }

    .mobil-menu-liste li:last-child {
        border-bottom: none;
    }

    .mobil-menu-liste li:active {
        background: #f5f5f5;
    }

    .mobil-menu-liste li > i:first-child {
        font-size: 20px;
        color: #ff6600;
        width: 26px;
        text-align: center;
        flex-shrink: 0;
    }

    .mobil-menu-liste li > span {
        flex: 1;
        font-weight: 400;
    }

    .mobil-menu-chevron {
        font-size: 14px !important;
        color: #ccc !important;
        width: auto !important;
        flex-shrink: 0;
    }

    /* Çıkış özel */
    .mobil-menu-cikis > i:first-child {
        color: #dc3545 !important;
    }
    .mobil-menu-cikis > span {
        color: #dc3545 !important;
    }

    /* Mobil content header (geri butonu) */
    .mobil-content-header {
        display: none;
        align-items: center;
        gap: 12px;
        padding: 14px 18px;
        background: #fff;
        border-bottom: 1px solid #e9ecef;
        margin-bottom: 12px;
        border-radius: 8px;
    }

    .mobil-content-header.aktif {
        display: flex;
    }

    .mobil-geri-btn {
        background: none;
        border: none;
        font-size: 22px;
        color: #212529;
        padding: 0;
        cursor: pointer;
        display: flex;
        align-items: center;
    }

    .mobil-content-baslik {
        font-size: 16px;
        font-weight: 600;
        color: #212529;
    }

    /* Varsayılan: mobil menü varken içerik gizli */
    .hesabim-content {
        display: none;
    }

    .hesabim-content.mobil-aktif {
        display: block;
    }

    .hesabim-sidebar-mobil.gizli {
        display: none;
    }

    .hesabim-page {
        padding: 0;
    }

    .hesabim-page > .container-fluid {
        padding: 0;
        max-width: 100% !important;
    }

    .hesabim-tab {
        border-radius: 0;
        border: none;
    }

    .hesabim-tab-header {
        padding: 14px 16px;
    }

    .hesabim-tab-header h2 {
        font-size: 17px;
    }

    .degerlendirme-icerik {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .hesabim-tab {
        padding: 16px;
    }

    .form-row-2 {
        flex-direction: column;
        gap: 12px;
    }

    .siparis-urun {
        flex-direction: column;
        align-items: flex-start;
    }

    .siparis-fiyat {
        text-align: left;
    }

    .yardim-kategori-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .begendiklerim-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .adresler-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .yardim-kategori-grid {
        grid-template-columns: 1fr;
    }

    .begendiklerim-grid {
        grid-template-columns: 1fr;
    }

    .magaza-card-actions {
        width: 100%;
    }

    .btn-magaza-git,
    .btn-magaza-takipten-cik {
        flex: 1;
        justify-content: center;
    }
}

/* ========== TEKLİF KARTLARI ========== */
.teklif-card {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.teklif-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.teklif-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    flex-wrap: wrap;
    gap: 8px;
}

.teklif-info {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.teklif-no {
    font-size: 13px;
    color: #495057;
}

.teklif-no strong {
    color: #2A3F54;
}

.teklif-tarih {
    font-size: 12px;
    color: #6c757d;
}

.teklif-durum {
    font-size: 12px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.teklif-durum-beklemede {
    background: #fff3cd;
    color: #997404;
}

.teklif-durum-kabul {
    background: #d1e7dd;
    color: #0f5132;
}

.teklif-durum-red {
    background: #f8d7da;
    color: #842029;
}

.teklif-durum-karsiteklif {
    background: #cff4fc;
    color: #055160;
}

.teklif-durum-iptal {
    background: #e9ecef;
    color: #495057;
}

.teklif-magaza a:hover,
.siparis-magaza a:hover {
    color: #f26b3a;
}

.teklif-card-body {
    padding: 16px 18px;
}

.teklif-urun {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 12px;
}

.teklif-urun img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    flex-shrink: 0;
}

.teklif-urun-detay {
    flex: 1;
    min-width: 0;
}

.teklif-urun-detay h4 {
    font-size: 15px;
    font-weight: 600;
    color: #212529;
    margin: 0 0 6px;
    line-height: 1.4;
}

.teklif-ozellikler {
    font-size: 12px;
    color: #6c757d;
    margin: 0 0 8px;
}

.teklif-magaza {
    font-size: 12px;
    color: #2A3F54;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.teklif-fiyat-bolum {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 6px;
    min-width: 200px;
}

.teklif-fiyat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.teklif-fiyat-label {
    font-size: 12px;
    color: #6c757d;
}

.teklif-fiyat-deger {
    font-size: 14px;
    font-weight: 600;
    color: #212529;
}

.teklif-fiyat-deger.liste-fiyat {
    color: #6c757d;
    text-decoration: line-through;
}

.teklif-fiyat-deger.teklif-fiyat {
    color: #E67E22;
    font-size: 16px;
}

.teklif-mesaj {
    margin-top: 12px;
    padding: 12px;
    background: #e7f3ff;
    border-left: 3px solid #0d6efd;
    border-radius: 4px;
    display: flex;
    gap: 10px;
}

.teklif-mesaj i {
    color: #0d6efd;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.teklif-mesaj-icerik {
    flex: 1;
}

.teklif-mesaj-icerik strong {
    display: block;
    font-size: 12px;
    color: #0d6efd;
    margin-bottom: 4px;
}

.teklif-mesaj-icerik p {
    font-size: 13px;
    color: #495057;
    margin: 0;
    line-height: 1.5;
}

.teklif-satici-yanit {
    margin-top: 12px;
    padding: 12px;
    background: #d1e7dd;
    border-left: 3px solid #198754;
    border-radius: 4px;
    display: flex;
    gap: 10px;
}

.teklif-satici-yanit i {
    color: #198754;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.teklif-yanit-icerik {
    flex: 1;
}

.teklif-yanit-icerik strong {
    display: block;
    font-size: 12px;
    color: #198754;
    margin-bottom: 4px;
}

.teklif-yanit-icerik p {
    font-size: 13px;
    color: #495057;
    margin: 0;
    line-height: 1.5;
}

.teklif-red-yanit {
    background: #f8d7da;
    border-left-color: #dc3545;
}

.teklif-red-yanit i {
    color: #dc3545;
}

.teklif-red-yanit .teklif-yanit-icerik strong {
    color: #dc3545;
}

.teklif-card-footer {
    display: flex;
    gap: 8px;
    padding: 12px 18px;
    background: #fafbfc;
    border-top: 1px solid #e9ecef;
    flex-wrap: wrap;
}

.teklif-card-footer button {
    padding: 7px 18px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.15s;
    border: none;
}

.btn-teklif-detay, .btn-teklif-iptal, .btn-teklif-sepet, .btn-teklif-yeni {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-teklif-detay {
    background: #2A3F54;
    color: #fff !important;
}

.btn-teklif-detay:hover {
    background: #1e2f40;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(42, 63, 84, 0.2);
}

.btn-teklif-iptal {
    background: #fff;
    color: #dc3545 !important;
    border: 1.5px solid #dc3545;
}

.btn-teklif-iptal:hover {
    background: #dc3545;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.2);
}

.btn-teklif-sepet {
    background: #27ae60;
    color: #fff !important;
}

.btn-teklif-sepet:hover {
    background: #219150;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.2);
}

.btn-teklif-yeni {
    background: #E67E22;
    color: #fff !important;
}

.btn-teklif-yeni:hover {
    background: #d35400;
    transform: translateY(-2px);
}

/* Responsive - Teklif Kartları */
@media (max-width: 768px) {
    .teklif-urun {
        flex-direction: column;
    }

    .teklif-fiyat-bolum {
        min-width: 100%;
    }

    .teklif-card-footer button {
        flex: 1;
        justify-content: center;
    }
}

/* ========== MODAL STİLLERİ ========== */

/* Teklif Detay Modal */
.teklif-detay-modal {
    padding: 10px 0;
}

.teklif-detay-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.teklif-detay-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.teklif-detay-no {
    font-size: 15px;
    color: #495057;
}

.teklif-detay-no strong {
    color: #2A3F54;
    font-size: 16px;
}

.teklif-detay-tarih {
    font-size: 13px;
    color: #6c757d;
}

.teklif-detay-urun {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 20px;
}

.teklif-detay-urun img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.teklif-detay-urun-bilgi h4 {
    font-size: 16px;
    color: #212529;
    margin: 0 0 8px;
    font-weight: 600;
}

.teklif-detay-magaza {
    font-size: 13px;
    color: #2A3F54;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.teklif-detay-ozellikler {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 12px;
    color: #6c757d;
    margin: 0;
}

.teklif-detay-ozellikler span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.teklif-detay-fiyatlar {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
}

.teklif-detay-fiyat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.teklif-detay-fiyat-row:last-child {
    border-bottom: none;
}

.teklif-detay-fiyat-row.highlight {
    background: white;
    margin: 0 -16px;
    padding: 12px 16px;
    border-radius: 6px;
}

.teklif-detay-label {
    font-size: 14px;
    color: #6c757d;
}

.teklif-detay-value {
    font-size: 15px;
    font-weight: 600;
    color: #212529;
}

.teklif-fiyat-vurgu {
    color: #E67E22;
    font-size: 18px;
}

.toplam-tutar {
    color: #198754;
    font-size: 18px;
}

.teklif-detay-mesaj {
    background: #e7f3ff;
    border-left: 3px solid #0d6efd;
    border-radius: 4px;
    padding: 16px;
    margin-bottom: 20px;
}

.teklif-detay-mesaj h6 {
    font-size: 13px;
    color: #0d6efd;
    margin: 0 0 10px;
    font-weight: 600;
}

.teklif-detay-mesaj p {
    font-size: 14px;
    color: #495057;
    margin: 0;
    line-height: 1.6;
}

.teklif-detay-timeline {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 16px;
}

.teklif-detay-timeline h6 {
    font-size: 14px;
    color: #212529;
    margin: 0 0 16px;
    font-weight: 600;
}

.timeline-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
}

.timeline-item:not(:last-child) {
    border-bottom: 1px dashed #e9ecef;
}

.timeline-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.timeline-icon.active {
    background: #d1e7dd;
    color: #198754;
}

.timeline-icon.pending {
    background: #fff3cd;
    color: #997404;
}

.timeline-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.timeline-content strong {
    font-size: 14px;
    color: #212529;
}

.timeline-date {
    font-size: 12px;
    color: #6c757d;
}

/* Teklif İptal Modal */
.iptal-modal-icerik {
    padding: 10px 0;
}

.iptal-uyari {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: #fff3cd;
    border-left: 3px solid #ffc107;
    border-radius: 4px;
    margin-bottom: 20px;
}

.iptal-uyari i {
    color: #997404;
    font-size: 24px;
    flex-shrink: 0;
}

.iptal-uyari p {
    margin: 0;
    color: #664d03;
    font-size: 14px;
    line-height: 1.6;
}

.iptal-teklif-ozet {
    background: #f8f9fa;
    padding: 16px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 2;
    color: #495057;
}

.iptal-teklif-ozet strong {
    color: #212529;
}

/* Adres Modal */
.form-label {
    font-size: 13px;
    font-weight: 600;
    color: #495057;
    margin-bottom: 6px;
}

.form-label .text-danger {
    color: #dc3545;
}

.form-control,
.form-select {
    font-size: 14px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    padding: 8px 12px;
}

.form-control:focus,
.form-select:focus {
    border-color: #2A3F54;
    box-shadow: 0 0 0 0.2rem rgba(42, 63, 84, 0.1);
}

.form-text {
    font-size: 12px;
    color: #6c757d;
    margin-top: 4px;
}

.form-check-input:checked {
    background-color: #2A3F54;
    border-color: #2A3F54;
}

/* Değerlendirme Düzenle Modal */
.degerlendirme-duzenle-urun {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 20px;
}

.degerlendirme-duzenle-urun img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.degerlendirme-duzenle-bilgi h6 {
    font-size: 15px;
    color: #212529;
    margin: 0 0 6px;
    font-weight: 600;
}

.degerlendirme-duzenle-bilgi p {
    font-size: 13px;
}

.degerlendirme-yildiz-secim {
    display: flex;
    gap: 8px;
    font-size: 32px;
}

.yildiz-duzenle {
    color: #ffc107;
    cursor: pointer;
    transition: all 0.2s;
}

.yildiz-duzenle:hover {
    transform: scale(1.1);
}

.yildiz-duzenle.bi-star {
    color: #e9ecef;
}

.degerlendirme-foto-upload {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.foto-upload-box {
    width: 100px;
    height: 100px;
    border: 2px dashed #ced4da;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.foto-upload-box:hover {
    border-color: #2A3F54;
    background: #f8f9fa;
}

.foto-upload-box i {
    font-size: 32px;
    color: #6c757d;
    margin-bottom: 8px;
}

.foto-upload-box p {
    font-size: 11px;
    color: #6c757d;
    margin: 0;
    text-align: center;
}

/* Değerlendirme Kartı Butonları */
.degerlendirme-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e9ecef;
}

.btn-degerlendirme-duzenle,
.btn-degerlendirme-sil {
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.15s;
    border: none;
}

.btn-degerlendirme-duzenle {
    background: #0d6efd;
    color: #fff;
}

.btn-degerlendirme-duzenle:hover {
    background: #0b5ed7;
}

.btn-degerlendirme-sil {
    background: #dc3545;
    color: #fff;
}

.btn-degerlendirme-sil:hover {
    background: #bb2d3b;
}

/* Modal Responsive */
@media (max-width: 768px) {
    .teklif-detay-urun {
        flex-direction: column;
    }

    .teklif-detay-urun img {
        width: 100%;
        height: 200px;
    }

    .degerlendirme-duzenle-urun {
        flex-direction: column;
    }

    .degerlendirme-duzenle-urun img {
        width: 100%;
        height: 150px;
    }

    .modal-dialog {
        margin: 10px;
    }
}

/* ========== YENİ TEKLİF VER MODAL ========== */
.yeni-teklif-urun-bilgi {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 20px;
}

.yeni-teklif-urun-bilgi img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.yeni-teklif-urun-detay h5 {
    font-size: 16px;
    color: #212529;
    margin: 0 0 8px;
    font-weight: 600;
}

.yeni-teklif-urun-detay p {
    font-size: 13px;
    margin-bottom: 4px;
}

.yeni-teklif-liste-fiyat {
    font-size: 14px;
    color: #495057;
    margin-top: 8px;
}

.yeni-teklif-liste-fiyat span {
    color: #dc3545;
    font-weight: 700;
    font-size: 16px;
}

.beden-secim-wrapper {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    padding: 8px 0;
}

.form-check-inline .form-check-input {
    margin-top: 0.2em;
}

.form-check-inline .form-check-label {
    font-size: 14px;
    font-weight: 500;
}

.yeni-teklif-ozet {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
    color: white;
}

.ozet-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.ozet-row:last-child {
    border-bottom: none;
}

.ozet-row.toplam {
    padding-top: 16px;
    margin-top: 8px;
    border-top: 2px solid rgba(255,255,255,0.3);
    border-bottom: none;
}

.ozet-label {
    font-size: 14px;
    opacity: 0.95;
}

.ozet-value {
    font-size: 15px;
    font-weight: 600;
}

.toplam-deger {
    font-size: 24px;
    font-weight: 700;
    color: #ffd700;
}

/* ========== İŞLEM UYARI MODAL (GENEL) ========== */
.uyari-animasyon-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #f7971e 0%, #ffd200 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    animation: basariliIconPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.uyari-animasyon-icon i {
    font-size: 56px;
    color: #fff;
    animation: basariliIconRotate 0.6s ease-in-out 0.3s;
}

.uyari-baslik {
    color: #e67e22;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    animation: basariliTextSlide 0.5s ease-out 0.2s both;
}

.uyari-mesaj {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
    animation: basariliTextSlide 0.5s ease-out 0.3s both;
}

#islemUyariModal.show .uyari-animasyon-icon {
    animation: basariliIconPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#islemUyariModal.show .uyari-animasyon-icon i {
    animation: basariliIconRotate 0.6s ease-in-out 0.3s;
}

#islemUyariModal.show .uyari-baslik {
    animation: basariliTextSlide 0.5s ease-out 0.2s both;
}

#islemUyariModal.show .uyari-mesaj {
    animation: basariliTextSlide 0.5s ease-out 0.3s both;
}

/* ========== İŞLEM BAŞARILI MODAL (GENEL) ========== */
.basarili-animasyon-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    animation: basariliIconPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.basarili-animasyon-icon i {
    font-size: 56px;
    color: #fff;
    animation: basariliIconRotate 0.6s ease-in-out 0.3s;
}

.basarili-baslik {
    color: #11998e;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    animation: basariliTextSlide 0.5s ease-out 0.2s both;
}

.basarili-mesaj {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
    animation: basariliTextSlide 0.5s ease-out 0.3s both;
}

/* Başarılı Modal Animasyonları */
@keyframes basariliIconPop {
    0% { 
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.15);
    }
    100% { 
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes basariliIconRotate {
    0% {
        transform: rotate(-180deg) scale(0);
    }
    100% {
        transform: rotate(0deg) scale(1);
    }
}

@keyframes basariliTextSlide {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modal göründüğünde animasyonları yeniden tetikle */
#islemBasariliModal.show .basarili-animasyon-icon {
    animation: basariliIconPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#islemBasariliModal.show .basarili-animasyon-icon i {
    animation: basariliIconRotate 0.6s ease-in-out 0.3s;
}

#islemBasariliModal.show .basarili-baslik {
    animation: basariliTextSlide 0.5s ease-out 0.2s both;
}

#islemBasariliModal.show .basarili-mesaj {
    animation: basariliTextSlide 0.5s ease-out 0.3s both;
}

/* Responsive - Yeni Teklif Modal */
@media (max-width: 768px) {
    .yeni-teklif-urun-bilgi {
        flex-direction: column;
    }

    .yeni-teklif-urun-bilgi img {
        width: 100%;
        height: 200px;
    }

    .basarili-animasyon-icon {
        width: 80px;
        height: 80px;
    }

    .basarili-animasyon-icon i {
        font-size: 42px;
    }

    .basarili-baslik {
        font-size: 22px;
    }

    .basarili-mesaj {
        font-size: 14px;
    }
}


/* ========== TEKLİF ARTTIRMA DURUMU & KARŞI TEKLİF BUTONU ========== */

.teklif-durum-arttirma {
    background: linear-gradient(135deg, #fff0e0 0%, #ffe5c8 100%);
    color: #b45309;
    border: 1.5px solid #f59e0b;
    animation: arttirmaPulse 2.4s ease-in-out infinite;
}

@keyframes arttirmaPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.35); }
    50%       { box-shadow: 0 0 0 6px rgba(245, 158, 11, 0); }
}

.teklif-card-arttirma {
    border-color: #f59e0b;
    border-left: 4px solid #f59e0b;
}

.teklif-arttirma-yanit {
    margin-top: 12px;
    padding: 12px;
    background: linear-gradient(135deg, #fff8ec 0%, #fff0d6 100%);
    border-left: 3px solid #f59e0b;
    border-radius: 6px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.teklif-arttirma-yanit i {
    color: #f59e0b;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.teklif-arttirma-yanit .teklif-yanit-icerik strong {
    display: block;
    font-size: 12px;
    color: #b45309;
    margin-bottom: 4px;
}

.btn-karsi-teklif {
    background: linear-gradient(135deg, #f59e0b 0%, #e67e22 100%);
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.2px;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.35);
    transition: all 0.18s;
}
.btn-karsi-teklif:hover {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.45);
}
.btn-karsi-teklif:active { transform: translateY(0); }


/* ========== KARŞI TEKLİF MODAL ========== */

.kt-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.52);
    z-index: 9500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
}
.kt-modal-overlay.aktif {
    opacity: 1;
    pointer-events: all;
}
.kt-modal-overlay.aktif .kt-modal {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.kt-modal {
    background: #fff;
    border-radius: 14px;
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.22);
    transform: translateY(30px) scale(0.97);
    opacity: 0;
    transition: transform 0.28s ease, opacity 0.28s ease;
    overflow: hidden;
}

.kt-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 22px;
    background: linear-gradient(135deg, #f59e0b 0%, #e67e22 100%);
    color: #fff;
    flex-shrink: 0;
}

.kt-modal-baslik {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
}

.kt-modal-baslik > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.kt-modal-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.kt-modal-subtitle {
    font-size: 12px;
    color: rgba(255,255,255,0.8);
}

.kt-kapat-btn {
    background: rgba(255,255,255,0.18);
    border: none;
    color: #fff;
    font-size: 14px;
    padding: 6px 9px;
    border-radius: 7px;
    cursor: pointer;
    transition: background 0.12s;
    line-height: 1;
    flex-shrink: 0;
}
.kt-kapat-btn:hover { background: rgba(255,255,255,0.32); }

/* Ürün Bloku */
.kt-urun-blok {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 22px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    flex-shrink: 0;
}

.kt-urun-img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    flex-shrink: 0;
}

.kt-urun-bilgi {
    flex: 1;
    min-width: 0;
}

.kt-urun-adi {
    font-size: 14px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.kt-urun-magaza {
    font-size: 12px;
    color: #2A3F54;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 3px;
}

.kt-liste-fiyat {
    font-size: 12px;
    color: #6c757d;
}

.kt-liste-fiyat strong {
    color: #2A3F54;
}

/* Modal Body */
.kt-modal-body {
    overflow-y: auto;
    flex: 1;
    padding: 0;
}

.kt-bolum {
    padding: 16px 22px;
    border-bottom: 1px solid #f0f0f0;
}

.kt-bolum-baslik {
    font-size: 12px;
    font-weight: 700;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Teklif Geçmişi - Chat Baloncukları */
.kt-gecmis-liste {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.kt-gecmis-item {
    display: flex;
}

.kt-gecmis-ben {
    justify-content: flex-end;
}

.kt-gecmis-satici {
    justify-content: flex-start;
}

.kt-gecmis-balon {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 10px 14px;
    border-radius: 12px;
    max-width: 70%;
    min-width: 140px;
}

.kt-gecmis-ben .kt-gecmis-balon {
    background: linear-gradient(135deg, #2A3F54 0%, #3d5a78 100%);
    color: #fff;
    border-bottom-right-radius: 4px;
}

.kt-gecmis-satici .kt-gecmis-balon {
    background: #f1f3f5;
    color: #212529;
    border-bottom-left-radius: 4px;
}

.kt-gecmis-taraf {
    font-size: 11px;
    font-weight: 700;
    opacity: 0.75;
}

.kt-gecmis-fiyat {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
}

.kt-gecmis-ben .kt-gecmis-fiyat {
    color: #fff;
}

.kt-gecmis-satici .kt-gecmis-fiyat {
    color: #e67e22;
}

.kt-gecmis-tarih {
    font-size: 10px;
    opacity: 0.6;
    margin-top: 2px;
}

/* Yeni Teklif Bölümü */
.kt-yeni-teklif-bolum {
    background: #fafbfc;
    border-bottom: none;
}

.kt-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.kt-form-group:last-child { margin-bottom: 0; }

.kt-form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #495057;
}

.kt-optional {
    font-weight: 400;
    color: #adb5bd;
    font-size: 12px;
}

.kt-input-wrap {
    display: flex;
    align-items: center;
    border: 1.5px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.15s, box-shadow 0.15s;
    background: #fff;
}

.kt-input-wrap:focus-within {
    border-color: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

.kt-input-prefix {
    padding: 0 12px;
    font-size: 16px;
    font-weight: 700;
    color: #f59e0b;
    background: #fff8ec;
    border-right: 1.5px solid #dee2e6;
    height: 44px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.kt-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px 14px;
    font-size: 16px;
    font-weight: 600;
    color: #212529;
    background: transparent;
    width: 100%;
}

.kt-input-wrap.kt-input-hata-wrap,
.kt-input.kt-input-hata + .kt-input-prefix,
.kt-input-wrap:has(.kt-input.kt-input-hata) {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.12);
}

.kt-hata-mesaj {
    font-size: 12px;
    color: #dc3545;
    display: flex;
    align-items: center;
    gap: 4px;
}

.kt-textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #dee2e6;
    border-radius: 8px;
    font-size: 13px;
    color: #212529;
    resize: vertical;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
    font-family: inherit;
    background: #fff;
    box-sizing: border-box;
}

.kt-textarea:focus {
    border-color: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

/* Modal Footer */
.kt-modal-footer {
    padding: 14px 22px;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    flex-shrink: 0;
    background: #fff;
}

.kt-btn-iptal {
    padding: 10px 22px;
    border-radius: 8px;
    border: 1.5px solid #dee2e6;
    background: #fff;
    color: #6c757d;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.12s, border-color 0.12s;
}
.kt-btn-iptal:hover { background: #f8f9fa; border-color: #adb5bd; }

.kt-btn-gonder {
    padding: 10px 26px;
    border-radius: 8px;
    border: none;
    background: linear-gradient(135deg, #f59e0b 0%, #e67e22 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: all 0.18s;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.35);
}
.kt-btn-gonder:hover {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.45);
}
.kt-btn-gonder:active { transform: translateY(0); }

@media (max-width: 576px) {
    .kt-modal { max-height: 95vh; border-radius: 14px 14px 0 0; align-self: flex-end; }
    .kt-modal-overlay { align-items: flex-end; padding: 0; }
    .kt-gecmis-balon { max-width: 85%; }
    .kt-modal-footer { flex-direction: column-reverse; }
    .kt-btn-iptal, .kt-btn-gonder { width: 100%; justify-content: center; }
}


/* ========== KARŞI TEKLİF BAŞARILI POPUP ========== */

.kt-basarili-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9600;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
}
.kt-basarili-overlay.aktif {
    opacity: 1;
    pointer-events: all;
}
.kt-basarili-overlay.aktif .kt-basarili-kart {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.kt-basarili-kart {
    background: #fff;
    border-radius: 18px;
    padding: 40px 36px 36px;
    max-width: 380px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transform: scale(0.85) translateY(20px);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

/* SVG Checkmark */
.kt-checkmark-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 22px;
}

.kt-checkmark-svg {
    width: 80px;
    height: 80px;
}

.kt-checkmark-circle {
    stroke: #22c55e;
    stroke-width: 2.5;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-linecap: round;
    animation: ktCircleDraw 0.6s cubic-bezier(0.65, 0, 0.45, 1) 0.1s forwards;
}

.kt-checkmark-check {
    stroke: #22c55e;
    stroke-width: 3;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: ktCheckDraw 0.4s cubic-bezier(0.65, 0, 0.45, 1) 0.65s forwards;
}

@keyframes ktCircleDraw {
    to { stroke-dashoffset: 0; }
}

@keyframes ktCheckDraw {
    to { stroke-dashoffset: 0; }
}

.kt-basarili-baslik {
    font-size: 22px;
    font-weight: 800;
    color: #212529;
    margin: 0 0 10px;
}

.kt-basarili-aciklama {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0 0 28px;
}

.kt-basarili-btn {
    display: inline-block;
    padding: 12px 40px;
    border-radius: 8px;
    border: none;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.18s;
    box-shadow: 0 3px 12px rgba(34, 197, 94, 0.35);
}
.kt-basarili-btn:hover {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    transform: translateY(-1px);
    box-shadow: 0 5px 18px rgba(34, 197, 94, 0.45);
}
.kt-basarili-btn:active { transform: translateY(0); }

@media (max-width: 480px) {
    .kt-basarili-kart { padding: 32px 24px 28px; }
    .kt-basarili-baslik { font-size: 19px; }
    .kt-checkmark-svg { width: 68px; height: 68px; }
}

/* ========================================
   SATICI MESAJLARI
   ======================================== */
.mesaj-badge {
    background: linear-gradient(135deg, #ff6600 0%, #e55a00 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 10px;
    margin-left: auto;
}

.mobil-mesaj-badge {
    background: linear-gradient(135deg, #ff6600 0%, #e55a00 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: auto;
    margin-right: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.mesajlar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

/* ========================================
   MESAJLAR — CHAT UI
   ======================================== */
.hm-msg-container {
    display: flex;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #eef1f4;
    background: #fff;
    height: 540px;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04), 0 10px 28px rgba(16, 24, 40, 0.08);
}

/* Sidebar */
.hm-msg-sidebar {
    width: 310px;
    flex-shrink: 0;
    border-right: 1px solid #eef1f4;
    display: flex;
    flex-direction: column;
    background: #fbfcfd;
}

.hm-msg-sidebar-search {
    margin: 12px 12px 6px;
    padding: 0 12px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    background: #f1f3f5;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #98a2b3;
    transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}

.hm-msg-sidebar-search:focus-within {
    border-color: #ff6600;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.12);
}

.hm-msg-sidebar-search input {
    border: none;
    outline: none;
    font-size: 13px;
    width: 100%;
    background: transparent;
    color: #1f2937;
}

.hm-msg-list {
    flex: 1;
    overflow-y: auto;
    padding: 6px 8px 10px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hm-msg-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    cursor: pointer;
    border: none;
    background: transparent;
    border-radius: 12px;
    transition: background 0.15s, box-shadow 0.15s;
    position: relative;
    width: 100%;
    text-align: left;
}
.hm-msg-item:hover { background: #f1f3f5; }
.hm-msg-item.active {
    background: #fff2e6;
    box-shadow: inset 3px 0 0 0 #ff6600;
}

.hm-msg-avatar-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid #eef1f4;
    background: #f1f3f5;
    box-shadow: 0 0 0 2px #fff, 0 1px 3px rgba(16, 24, 40, 0.1);
}

.hm-msg-avatar {
    flex: 0 0 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.hm-msg-item-body { flex: 1; min-width: 0; }

.hm-msg-item-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2px;
}

.hm-msg-item-name { font-weight: 700; font-size: 13px; color: #1f2937; }
.hm-msg-item-time { font-size: 11px; color: #98a2b3; }

.hm-msg-item-preview {
    font-size: 12px;
    color: #6b7280;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hm-msg-unread-dot {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 9px;
    background: #ff6600;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(255, 102, 0, 0.3);
}

/* Chat area */
.hm-msg-chat {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
    background: #fff;
}

.hm-msg-chat-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-bottom: 1px solid #eef1f4;
    background: #fff;
}

.hm-msg-back-btn {
    display: none;
    background: #f1f3f5;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    font-size: 16px;
    color: #475467;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: background 0.12s, color 0.12s;
}
.hm-msg-back-btn:hover { background: #e9ecef; color: #ff6600; }

.hm-msg-chat-name {
    font-size: 15px;
    font-weight: 700;
    color: #1f2937;
}

.hm-msg-chat-status {
    font-size: 12px;
    color: #98a2b3;
}

.hm-msg-chat-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #f7f8fa;
}

.hm-msg-bubble {
    max-width: 70%;
    padding: 10px 14px;
    border-radius: 16px;
    position: relative;
    animation: hmMsgFade 0.2s ease;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
}

@keyframes hmMsgFade {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hm-msg-bubble p { margin: 0; font-size: 14px; line-height: 1.5; }

.hm-msg-bubble--in {
    align-self: flex-start;
    background: #fff;
    border: 1px solid #eef1f4;
    border-bottom-left-radius: 6px;
    color: #1f2937;
}

.hm-msg-bubble--in::before {
    content: '';
    position: absolute;
    left: -6px;
    bottom: 9px;
    width: 12px;
    height: 12px;
    background: #fff;
    border-left: 1px solid #eef1f4;
    border-bottom: 1px solid #eef1f4;
    transform: rotate(45deg);
    border-bottom-left-radius: 3px;
}

.hm-msg-bubble--out {
    align-self: flex-end;
    background: linear-gradient(135deg, #ff6600 0%, #e55a00 100%);
    color: #fff;
    border-bottom-right-radius: 6px;
    box-shadow: 0 2px 6px rgba(255, 102, 0, 0.18);
}

.hm-msg-bubble--out::before {
    content: '';
    position: absolute;
    right: -6px;
    bottom: 9px;
    width: 12px;
    height: 12px;
    background: #e55a00;
    border-radius: 3px;
    transform: rotate(45deg);
}

.hm-msg-bubble-time {
    display: block;
    font-size: 10px;
    margin-top: 4px;
    opacity: 0.65;
    text-align: right;
}

.hm-msg-chat-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-top: 1px solid #eef1f4;
    background: #fff;
}

.hm-msg-attach-btn {
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 18px;
    color: #98a2b3;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.12s, color 0.12s;
}
.hm-msg-attach-btn:hover { background: #f1f3f5; color: #2A3F54; }

.hm-msg-input {
    flex: 1;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 11px 14px;
    font-size: 14px;
    outline: none;
    background: #f8f9fa;
    transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
    color: #1f2937;
}
.hm-msg-input::placeholder { color: #98a2b3; }
.hm-msg-input:focus {
    border-color: #ff6600;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.12);
}

.hm-msg-send-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, #ff6600 0%, #e55a00 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: opacity 0.15s, transform 0.12s, box-shadow 0.12s;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(255, 102, 0, 0.25);
}
.hm-msg-send-btn:hover:not(:disabled) {
    opacity: 0.95;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(255, 102, 0, 0.3);
}
.hm-msg-send-btn:active:not(:disabled) { transform: translateY(0); }
.hm-msg-send-btn:disabled { opacity: 0.5; cursor: not-allowed; box-shadow: none; }

.hm-msg-chat-peer {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #1f2937;
}

.hm-msg-chat-peer .hm-msg-avatar-img {
    width: 40px;
    height: 40px;
}

.hm-msg-read {
    display: block;
    font-size: 10px;
    margin-top: 2px;
    opacity: 0.75;
    text-align: right;
}

.hm-msg-read .bi-check2-all {
    color: #4da3ff;
}

.hm-msg-item--new {
    background: #fff2e6;
    box-shadow: inset 3px 0 0 0 #ff6600;
    border: 1px solid #ffd8bf;
    margin-bottom: 6px;
}
.hm-msg-item--new:hover { background: #ffe9d6; }

.hm-msg-chat-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #fbfcfd;
    color: #98a2b3;
}

.hm-msg-chat-empty i {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #eef1f4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #ff6600;
    box-shadow: 0 2px 10px rgba(16, 24, 40, 0.06);
}

.hm-msg-chat-empty p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
}

.hm-msg-list::-webkit-scrollbar,
.hm-msg-chat-body::-webkit-scrollbar {
    width: 6px;
}

.hm-msg-list::-webkit-scrollbar-thumb,
.hm-msg-chat-body::-webkit-scrollbar-thumb {
    background: #dde2e8;
    border-radius: 3px;
}

.hm-msg-list::-webkit-scrollbar-thumb:hover,
.hm-msg-chat-body::-webkit-scrollbar-thumb:hover {
    background: #c9d0d8;
}

.hm-msg-list::-webkit-scrollbar-track,
.hm-msg-chat-body::-webkit-scrollbar-track {
    background: transparent;
}

@media (prefers-reduced-motion: reduce) {
    .hm-msg-bubble { animation-duration: 0.01ms !important; }
}

/* Responsive — mobile: show list or chat, not both */
@media (max-width: 640px) {
    .hm-msg-container { height: 500px; }
    .hm-msg-sidebar { width: 100%; }
    .hm-msg-container.chat-open .hm-msg-sidebar { display: none; }
    .hm-msg-chat { display: none; }
    .hm-msg-container.chat-open .hm-msg-chat { display: flex; }
    .hm-msg-container.chat-open .hm-msg-back-btn { display: flex; }
}

/* ========================================
   BİLDİRİMLER
   ======================================== */
.bildirim-badge {
    background: linear-gradient(135deg, #3b7ddd 0%, #2563eb 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 10px;
    margin-left: auto;
}

.mobil-bildirim-badge {
    background: linear-gradient(135deg, #3b7ddd 0%, #2563eb 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: auto;
    margin-right: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.bildirimler-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.bildirim-actions {
    display: flex;
    gap: 8px;
}

.btn-tumunu-okundu {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border: 1.5px solid #3b7ddd;
    border-radius: 8px;
    background: #fff;
    color: #3b7ddd;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-tumunu-okundu:hover {
    background: #3b7ddd;
    color: #fff;
}

.bildirimler-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bildirim-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 16px;
    transition: all 0.2s ease;
    position: relative;
}

.bildirim-card:hover {
    border-color: #3b7ddd;
    box-shadow: 0 4px 12px rgba(59, 125, 221, 0.12);
}

.bildirim-card--yeni {
    border-left: 4px solid #3b7ddd;
    background: linear-gradient(to right, #f0f7ff 0%, #fff 100%);
}

.bildirim-card--okunmus {
    opacity: 0.85;
}

.bildirim-card--okunmus .bildirim-icon {
    opacity: 0.7;
}

.bildirim-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bildirim-icon i {
    font-size: 22px;
}

.bildirim-icon--siparis { background: linear-gradient(135deg, #10b981 0%, #059669 100%); color: #fff; }
.bildirim-icon--kargo { background: linear-gradient(135deg, #3b7ddd 0%, #2563eb 100%); color: #fff; }
.bildirim-icon--kampanya { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); color: #fff; }
.bildirim-icon--magaza { background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%); color: #fff; }
.bildirim-icon--teklif { background: linear-gradient(135deg, #ec4899 0%, #db2777 100%); color: #fff; }
.bildirim-icon--sistem { background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%); color: #fff; }

.bildirim-content {
    flex: 1;
    min-width: 0;
}

.bildirim-baslik {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.bildirim-baslik strong {
    font-size: 15px;
    font-weight: 700;
    color: #2A3F54;
}

.bildirim-badge-yeni {
    background: linear-gradient(135deg, #3b7ddd 0%, #2563eb 100%);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 10px;
    text-transform: uppercase;
}

.bildirim-mesaj {
    font-size: 13px;
    color: #495057;
    margin: 0 0 10px;
    line-height: 1.5;
}

.bildirim-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.bildirim-tarih {
    font-size: 12px;
    color: #adb5bd;
}

.bildirim-link {
    font-size: 12px;
    font-weight: 600;
    color: #3b7ddd;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s ease;
}

.bildirim-link:hover {
    color: #2563eb;
    gap: 6px;
}

.bildirim-link i {
    font-size: 11px;
}

.bildirim-okundu-btn {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: #f8f9fa;
    color: #adb5bd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.bildirim-okundu-btn:hover {
    background: #10b981;
    color: #fff;
}

.bildirim-okundu-btn i {
    font-size: 18px;
}

/* Responsive */
@media (max-width: 576px) {
    .bildirimler-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .btn-tumunu-okundu {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .bildirim-card {
        padding: 12px;
        gap: 12px;
    }
    
    .bildirim-icon {
        width: 40px;
        height: 40px;
    }
    
    .bildirim-icon i {
        font-size: 18px;
    }
    
    .bildirim-baslik strong {
        font-size: 14px;
    }
    
    .bildirim-mesaj {
        font-size: 12px;
    }
    
    .bildirim-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}

/* ===================================================
   DEĞERLENDİR MODAL
   =================================================== */
.rev-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.48);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
}
.rev-modal-overlay.aktif {
    opacity: 1;
    pointer-events: all;
}
.rev-modal-overlay.aktif .rev-modal {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.rev-modal {
    background: #fff;
    border-radius: 14px;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 8px 40px rgba(0,0,0,0.2);
    transform: translateY(28px) scale(0.97);
    opacity: 0;
    transition: transform 0.26s ease, opacity 0.26s ease;
}

.rev-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px 16px;
    border-bottom: 1px solid #e9ecef;
    background: #f8f9fa;
    border-radius: 14px 14px 0 0;
    position: sticky;
    top: 0;
    z-index: 1;
}

.rev-modal-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #2A3F54;
    display: flex;
    align-items: center;
    gap: 8px;
}

.rev-modal-header h3 i {
    color: #e8a317;
}

.rev-modal-kapat {
    background: none;
    border: none;
    cursor: pointer;
    color: #6c757d;
    font-size: 16px;
    padding: 4px 6px;
    border-radius: 5px;
    transition: background 0.12s, color 0.12s;
    line-height: 1;
}
.rev-modal-kapat:hover { background: #e9ecef; color: #212529; }

.rev-modal-body {
    padding: 22px 22px 8px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Ürün özeti */
.rev-urun-ozet {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 14px;
}

.rev-urun-ozet img {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid #e9ecef;
}

.rev-urun-bilgi {
    min-width: 0;
}

.rev-urun-adi {
    font-size: 13px;
    font-weight: 700;
    color: #212529;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rev-urun-magaza {
    font-size: 12px;
    color: #6c757d;
    margin-top: 2px;
}

/* Form groups */
.rev-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rev-label {
    font-size: 13px;
    font-weight: 600;
    color: #495057;
}

.rev-required { color: #dc3545; }
.rev-optional { font-weight: 400; color: #6c757d; font-size: 12px; }

/* Star rating */
.rev-stars {
    display: flex;
    gap: 6px;
}

.rev-star {
    font-size: 30px;
    color: #dee2e6;
    cursor: pointer;
    transition: color 0.12s, transform 0.1s;
    line-height: 1;
}

.rev-star:hover,
.rev-star.hovered,
.rev-star.selected {
    color: #e8a317;
}

.rev-star:hover { transform: scale(1.15); }

.rev-star-label {
    font-size: 12px;
    color: #6c757d;
    min-height: 18px;
    font-style: italic;
}

.rev-star-label.hata { color: #dc3545; }

/* Textarea */
.rev-textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #dee2e6;
    border-radius: 8px;
    font-size: 14px;
    color: #212529;
    resize: vertical;
    font-family: inherit;
    transition: border-color 0.15s, box-shadow 0.15s;
    outline: none;
    box-sizing: border-box;
    min-height: 90px;
}
.rev-textarea:focus { border-color: #2A3F54; box-shadow: 0 0 0 3px rgba(42,63,84,0.1); }
.rev-textarea.hata { border-color: #dc3545; box-shadow: 0 0 0 3px rgba(220,53,69,0.1); }

.rev-char-count {
    font-size: 11px;
    color: #adb5bd;
    text-align: right;
}
.rev-char-count.ok { color: #28a745; }

/* Image upload */
.rev-img-upload-area {
    border: 2px dashed #d1d5db;
    border-radius: 10px;
    padding: 4px;
    transition: border-color 0.2s;
    cursor: pointer;
}
.rev-img-upload-area:hover,
.rev-img-upload-area.dragover { border-color: #2A3F54; }

.rev-img-input { display: none; }

.rev-img-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 16px;
    gap: 4px;
    color: #6c757d;
    font-size: 13px;
}
.rev-img-placeholder i { font-size: 28px; color: #adb5bd; margin-bottom: 4px; }
.rev-img-placeholder small { color: #adb5bd; font-size: 11px; }

.rev-img-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 8px;
}

.rev-img-thumb {
    position: relative;
    width: 68px;
    height: 68px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e9ecef;
}
.rev-img-thumb img { width: 100%; height: 100%; object-fit: cover; }

.rev-img-thumb-remove {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(220,38,38,0.9);
    color: #fff;
    border: none;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: background 0.12s;
}
.rev-img-thumb-remove:hover { background: rgba(185,28,28,1); }

/* Anonim row */
.rev-anon-row { padding-bottom: 4px; }

.rev-anon-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #495057;
    cursor: pointer;
    user-select: none;
}
.rev-anon-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #2A3F54;
}

/* Footer */
.rev-modal-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding: 16px 22px 20px;
    border-top: 1px solid #e9ecef;
    margin-top: 8px;
}

.rev-btn-iptal {
    padding: 9px 20px;
    border-radius: 7px;
    border: 1.5px solid #dee2e6;
    background: #fff;
    color: #6c757d;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.12s, border-color 0.12s;
}
.rev-btn-iptal:hover { background: #f8f9fa; border-color: #adb5bd; }

.rev-btn-gonder {
    padding: 9px 22px;
    border-radius: 7px;
    border: none;
    background: #e8a317;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: background 0.12s, transform 0.1s;
}
.rev-btn-gonder:hover { background: #d4940f; transform: translateY(-1px); }
.rev-btn-gonder:active { transform: translateY(0); }

/* ===== DEĞERLENDİRME BAŞARILI POPUP ===== */
.rev-basarili-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 9100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
}
.rev-basarili-overlay.aktif {
    opacity: 1;
    pointer-events: all;
}
.rev-basarili-overlay.aktif .rev-basarili-modal {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.rev-basarili-modal {
    background: #fff;
    border-radius: 14px;
    width: 100%;
    max-width: 360px;
    padding: 36px 28px 30px;
    text-align: center;
    box-shadow: 0 8px 40px rgba(0,0,0,0.18);
    transform: translateY(24px) scale(0.95);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.rev-basarili-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.rev-checkmark {
    width: 72px;
    height: 72px;
}

.rev-checkmark-circle {
    stroke: #28a745;
    stroke-width: 2;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    animation: revCircle 0.6s ease forwards;
}

.rev-checkmark-check {
    stroke: #28a745;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: revCheck 0.4s 0.5s ease forwards;
}

@keyframes revCircle {
    to { stroke-dashoffset: 0; }
}
@keyframes revCheck {
    to { stroke-dashoffset: 0; }
}

.rev-basarili-modal h3 {
    font-size: 20px;
    font-weight: 700;
    color: #212529;
    margin: 0 0 10px;
}

.rev-basarili-modal p {
    font-size: 14px;
    color: #6c757d;
    margin: 0 0 24px;
    line-height: 1.6;
}

.rev-basarili-btn {
    padding: 10px 36px;
    border-radius: 8px;
    border: none;
    background: #28a745;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s, transform 0.1s;
}
.rev-basarili-btn:hover { background: #218838; transform: translateY(-1px); }
.rev-basarili-btn:active { transform: translateY(0); }

/* ========================================
   AYARLAR / HESAP SİLME
   ======================================== */
.ha-hesap-sil-section {
    border: 1px solid #fca5a5;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.ha-hesap-sil-header {
    background: linear-gradient(135deg, #fee2e2, #fef2f2);
    color: #991b1b;
    padding: 14px 20px;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #fca5a5;
}

.ha-hesap-sil-header i { font-size: 18px; }

.ha-hesap-sil-body {
    padding: 20px;
}

.ha-hesap-sil-uyari {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 10px;
    padding: 16px 18px;
}

.ha-hesap-sil-uyari-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fee2e2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #dc2626;
}

.ha-form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}

/* Hesap Silme Modal Overlay */
.ha-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.ha-modal-overlay.active {
    display: flex;
}

.ha-modal-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,.18);
    padding: 32px 28px;
    max-width: 420px;
    width: 92%;
    text-align: center;
    animation: haModalFadeIn .25s ease;
}

@keyframes haModalFadeIn {
    from { opacity: 0; transform: scale(.92) translateY(12px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.ha-modal-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 12px;
}

.ha-modal-icon-danger {
    background: #fee2e2;
    color: #dc2626;
}

.ha-modal-card-form {
    max-width: 520px;
    text-align: left;
    padding: 0;
    overflow: hidden;
}

.ha-modal-form-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: linear-gradient(135deg, #fee2e2, #fef2f2);
    border-bottom: 1px solid #fecaca;
}

.ha-modal-card-form .ha-hesap-sil-uyari,
.ha-modal-card-form .mb-3,
.ha-modal-card-form .d-flex {
    margin-left: 24px;
    margin-right: 24px;
}

.ha-modal-card-form .ha-hesap-sil-uyari { margin-top: 20px; }
.ha-modal-card-form .d-flex.justify-content-end { padding-bottom: 20px; }

@media (max-width: 576px) {
    .ha-hesap-sil-uyari { flex-direction: column; gap: 10px; }
    .ha-hesap-sil-body { padding: 16px; }
    .ha-modal-card { padding: 24px 18px; }
    .ha-modal-card-form { padding: 0; }
    .ha-modal-card-form .ha-hesap-sil-uyari,
    .ha-modal-card-form .mb-3,
    .ha-modal-card-form .d-flex { margin-left: 16px; margin-right: 16px; }
}

/* ===== TEKLİF AKIŞI (TIMELINE) ===== */
.teklif-akis {
    position: relative;
    padding-left: 35px;
    margin-top: 20px;
}

.teklif-akis::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 5px;
    bottom: 5px;
    width: 2px;
    background: #e2e8f0;
}

.teklif-akis-item {
    position: relative;
    margin-bottom: 25px;
}

.teklif-akis-item:last-child {
    margin-bottom: 0;
}

.akis-icon {
    position: absolute;
    left: -35px;
    width: 32px;
    height: 32px;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    font-size: 14px;
    color: #64748b;
}

.teklif-akis-item.completed .akis-icon {
    border-color: #27ae60;
    color: #27ae60;
}

.teklif-akis-item.active .akis-icon {
    border-color: #3498db;
    color: #3498db;
    box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.1);
}

.akis-content {
    background: #fff;
    padding: 0;
}

.akis-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.akis-header strong {
    font-size: 14px;
    color: #1e293b;
}

.akis-time {
    font-size: 11px;
    color: #94a3b8;
}

.akis-body {
    font-size: 13px;
    color: #475569;
}

.akis-body .badge {
    padding: 5px 10px;
    font-weight: 500;
}

.italic {
    font-style: italic;
}

/* ===== CONFIRM MODAL ===== */
.confirm-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.confirm-modal-overlay.aktif {
    opacity: 1;
    visibility: visible;
}

.confirm-modal {
    background: #fff;
    width: 100%;
    max-width: 400px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.confirm-modal-overlay.aktif .confirm-modal {
    transform: translateY(0);
}

.confirm-modal-header {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f0f0f0;
}

.confirm-modal-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #2A3F54;
}

.confirm-modal-kapat {
    background: none;
    border: none;
    font-size: 20px;
    color: #999;
    cursor: pointer;
    transition: color 0.2s;
}

.confirm-modal-kapat:hover {
    color: #333;
}

.confirm-modal-body {
    padding: 24px;
}

.confirm-modal-body p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

.confirm-modal-footer {
    padding: 16px 24px;
    background: #fcfcfc;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.confirm-btn-iptal, .confirm-btn-onay {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.confirm-btn-iptal {
    background: #fff;
    color: #666;
    border: 1px solid #ddd;
}

.confirm-btn-iptal:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

.confirm-btn-onay {
    background: #2A3F54;
    color: #fff;
    border: none;
}

.confirm-btn-onay:hover {
    background: #1e2f40;
    box-shadow: 0 4px 12px rgba(42, 63, 84, 0.2);
}
