.brl-profile-page {
    background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);
    min-height: 100vh;
    padding: 24px 0 60px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.brl-profile-page * { box-sizing: border-box; }

.brl-profile-page .brl-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 16px;
}

.brl-profile-page .brl-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.875rem;
    color: #64748b;
    flex-wrap: wrap;
}

.brl-profile-page .brl-breadcrumb a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.2s;
}

.brl-profile-page .brl-breadcrumb a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.brl-profile-page .brl-breadcrumb-sep { color: #cbd5e1; }

.brl-profile-page .brl-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 24px;
    align-items: start;
}

.brl-profile-page .brl-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 0;
}

.brl-profile-page .brl-sidebar {
    position: sticky;
    top: 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.brl-profile-page .brl-card {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: box-shadow 0.25s ease;
}

.brl-profile-page .brl-card:hover {
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08), 0 2px 4px rgba(15, 23, 42, 0.04);
}

.brl-profile-page .brl-card-header {
    padding: 20px 24px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.brl-profile-page .brl-card-title {
    margin: 0;
    font-size: 1.0625rem;
    font-weight: 600;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.3;
}

.brl-profile-page .brl-card-title i {
    color: #2563eb;
    font-size: 1rem;
    width: 32px;
    height: 32px;
    background: #eff6ff;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.brl-profile-page .brl-card-subtitle {
    font-size: 0.8125rem;
    color: #64748b;
    margin-top: 4px;
}

.brl-profile-page .brl-card-body { padding: 24px; }

.brl-profile-page .brl-user-card {
    text-align: center;
    padding: 0;
    overflow: hidden;
}

.brl-profile-page .brl-user-banner {
    height: 90px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #1e40af 100%);
    position: relative;
}

.brl-profile-page .brl-user-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.08) 0%, transparent 50%);
}

.brl-profile-page .brl-user-content {
    padding: 0 24px 24px;
    margin-top: -50px;
    position: relative;
}

.brl-profile-page .brl-user-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    font-size: 2.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border: 4px solid #ffffff;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
    position: relative;
    overflow: hidden;
}

.brl-profile-page .brl-user-avatar.has-image {
    background: #f1f5f9;
}

.brl-profile-page .brl-user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.brl-profile-page .brl-user-verified {
    position: absolute;
    bottom: 4px;
    right: 4px;
    width: 28px;
    height: 28px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #ffffff;
    color: white;
    font-size: 0.75rem;
    z-index: 2;
}

.brl-profile-page .brl-user-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 4px;
    line-height: 1.3;
}

.brl-profile-page .brl-user-title {
    color: #64748b;
    margin: 0 0 16px;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.brl-profile-page .brl-user-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-bottom: 20px;
}

.brl-profile-page .brl-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 11px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
}

.brl-profile-page .brl-badge.success {
    background: #ecfdf5;
    color: #065f46;
    border-color: #a7f3d0;
}

.brl-profile-page .brl-badge.primary {
    background: #eff6ff;
    color: #1e40af;
    border-color: #bfdbfe;
}

.brl-profile-page .brl-badge.warning {
    background: #fffbeb;
    color: #92400e;
    border-color: #fde68a;
}

.brl-profile-page .brl-user-info {
    background: #f8fafc;
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 16px;
    border: 1px solid #f1f5f9;
}

.brl-profile-page .brl-info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.8125rem;
}

.brl-profile-page .brl-info-row:last-child { border-bottom: none; }

.brl-profile-page .brl-info-label {
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
}

.brl-profile-page .brl-info-label i {
    color: #94a3b8;
    width: 14px;
}

.brl-profile-page .brl-info-value {
    color: #0f172a;
    font-weight: 600;
}

.brl-profile-page .brl-store-logo-wrap {
    background: #f8fafc;
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 16px;
    border: 1px dashed #cbd5e1;
}

.brl-profile-page .brl-store-logo {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
}

.brl-profile-page .brl-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.brl-profile-page .brl-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 16px;
    border-radius: 9px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 1.375rem;
    border: 1px solid transparent;
    cursor: pointer;
    line-height: 1.2;
}

.brl-profile-page .brl-btn-primary {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    box-shadow: 0 1px 3px rgba(37, 99, 235, 0.2);
}

.brl-profile-page .brl-btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    color: white;
    text-decoration: none;
}

.brl-profile-page .brl-btn-outline {
    background: white;
    color: #475569;
    border-color: #e2e8f0;
}

.brl-profile-page .brl-btn-outline:hover {
    background: #f8fafc;
    color: #0f172a;
    border-color: #363637;
    text-decoration: none;
}

.brl-profile-page .brl-btn-sm {
    padding: 8px 14px;
    font-size: 1.3125rem;
}

.brl-profile-page .brl-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.brl-profile-page .brl-stat {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e2e8f0;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.brl-profile-page .brl-stat:hover {
    transform: translateY(-2px);
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.brl-profile-page .brl-comments-tabs {
    display: flex;
    gap: 4px;
    padding: 4px;
    background: #f1f5f9;
    border-radius: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.brl-profile-page .brl-tab {
    flex: 1;
    min-width: 80px;
    padding: 8px 12px;
    border: none;
    background: transparent;
    border-radius: 7px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.brl-profile-page .brl-tab:hover { color: #0f172a; }

.brl-profile-page .brl-tab.active {
    background: white;
    color: #0f172a;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.1);
}

.brl-profile-page .brl-tab-count {
    background: #e2e8f0;
    color: #475569;
    padding: 1px 7px;
    border-radius: 10px;
    font-size: 0.6875rem;
    font-weight: 700;
}

.brl-profile-page .brl-tab.active .brl-tab-count {
    background: #2563eb;
    color: white;
}

.brl-profile-page .brl-comments {
    max-height: 800px;
    overflow-y: auto;
    padding-right: 6px;
}

.brl-profile-page .brl-comments::-webkit-scrollbar { width: 6px; }
.brl-profile-page .brl-comments::-webkit-scrollbar-track { background: #f1f5f9; border-radius: 3px; }
.brl-profile-page .brl-comments::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 3px; }
.brl-profile-page .brl-comments::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

.brl-profile-page .brl-comment {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 18px 20px;
    margin-bottom: 12px;
    transition: all 0.2s ease;
    position: relative;
}

.brl-profile-page .brl-comment:hover {
    border-color: #cbd5e1;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.brl-profile-page .brl-comment.positive { border-left: 4px solid #daa635; }
.brl-profile-page .brl-comment.neutral { border-left: 4px solid #f59e0b; }
.brl-profile-page .brl-comment.negative { border-left: 4px solid #ef4444; }

.brl-profile-page .brl-comment-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    gap: 10px;
    flex-wrap: wrap;
}

.brl-profile-page .brl-comment-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brl-profile-page .brl-comment-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #94a3b8, #64748b);
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.brl-profile-page .brl-comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.brl-profile-page .brl-comment-name {
    font-weight: 600;
    color: #0f172a;
    font-size: 0.9375rem;
    line-height: 1.2;
}

.brl-profile-page .brl-comment-meta {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 2px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.brl-profile-page .brl-comment-puan {
    flex-shrink: 0;
}

.brl-profile-page .brl-comment-baslik {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
    line-height: 1.4;
}

.brl-profile-page .brl-comment-kategori {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: 8px;
    padding-left: 8px;
    border-left: 1px solid #e2e8f0;
    color: #64748b;
}

.brl-profile-page .brl-comment-kategori i {
    color: #94a3b8;
}

.brl-profile-page .brl-comment-text {
    color: #334155;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.brl-profile-page .brl-comment-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
    flex-wrap: wrap;
}

.brl-profile-page .brl-comment-faydali-yazi {
    font-size: 0.8125rem;
    color: #64748b;
    margin-right: 4px;
}

.brl-profile-page .brl-faydali-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border: 1px solid #e2e8f0;
    background: white;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    transition: all 0.2s;
    line-height: 1;
}

.brl-profile-page .brl-faydali-btn:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
    color: #0f172a;
}

.brl-profile-page .brl-faydali-btn.aktif {
    background: #ecfdf5;
    border-color: #10b981;
    color: #065f46;
}

.brl-profile-page .brl-faydali-btn.aktif-eksi {
    background: #fef2f2;
    border-color: #ef4444;
    color: #991b1b;
}

.brl-profile-page .brl-faydali-btn.loading {
    opacity: 0.6;
    pointer-events: none;
}

.brl-profile-page .brl-faydali-btn .brl-sayi {
    font-weight: 700;
}

.brl-profile-page .brl-empty {
    text-align: center;
    padding: 60px 24px;
    color: #94a3b8;
}

.brl-profile-page .brl-empty-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #cbd5e1;
}

.brl-profile-page .brl-empty h4 {
    color: #475569;
    font-size: 1.0625rem;
    font-weight: 600;
    margin: 0 0 6px;
}

.brl-profile-page .brl-empty p {
    margin: 0;
    font-size: 0.875rem;
}

.brl-profile-page .brl-empty .brl-btn {
    display: inline-flex;
    width: auto;
}

.brl-profile-page .brl-yildizlar {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    color: #f59e0b;
    line-height: 1;
}

.brl-profile-page .brl-yildizlar-small {
    font-size: 0.875rem;
    gap: 1px;
}

.brl-profile-page .brl-yildizlar-medium {
    font-size: 1.125rem;
}

.brl-profile-page .brl-yildizlar-large {
    font-size: 1.5rem;
    gap: 4px;
}

.brl-profile-page .brl-puan-ozet {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 1px solid #fcd34d;
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 16px;
    text-align: center;
}

.brl-profile-page .brl-puan-buyuk {
    font-size: 2.5rem;
    font-weight: 800;
    color: #92400e;
    line-height: 1;
    margin-bottom: 4px;
}

.brl-profile-page .brl-puan-yorum-sayi {
    font-size: 0.75rem;
    color: #92400e;
    margin-top: 6px;
    font-weight: 600;
}

.brl-profile-page .brl-puan-bos {
    background: #f8fafc;
    border-color: #e2e8f0;
    color: #94a3b8;
    padding: 18px;
}

.brl-profile-page .brl-puan-bos i {
    font-size: 1.75rem;
    color: #cbd5e1;
    display: block;
    margin-bottom: 8px;
}

.brl-profile-page .brl-puan-bos-yazi {
    font-size: 0.8125rem;
    font-weight: 600;
}

.brl-profile-page .brl-rating-summary {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 32px;
    align-items: center;
}

.brl-profile-page .brl-rating-genel {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 12px;
    border: 1px solid #fcd34d;
}

.brl-profile-page .brl-rating-puan-buyuk {
    font-size: 3.5rem;
    font-weight: 800;
    color: #92400e;
    line-height: 1;
    margin-bottom: 8px;
}

.brl-profile-page .brl-rating-puan-alt {
    margin-top: 10px;
    font-size: 0.8125rem;
    color: #78350f;
    font-weight: 600;
}

.brl-profile-page .brl-rating-dagilim {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.brl-profile-page .brl-rating-row {
    display: grid;
    grid-template-columns: 50px 1fr 40px;
    align-items: center;
    gap: 12px;
}

.brl-profile-page .brl-rating-yildiz-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 4px;
}

.brl-profile-page .brl-rating-yildiz-label i {
    color: #f59e0b;
    font-size: 0.75rem;
}

.brl-profile-page .brl-rating-bar {
    height: 8px;
    background: #f1f5f9;
    border-radius: 4px;
    overflow: hidden;
}

.brl-profile-page .brl-rating-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #f59e0b, #d97706);
    border-radius: 4px;
    transition: width 0.8s ease;
}

.brl-profile-page .brl-rating-sayi {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #64748b;
    text-align: right;
}

@media (max-width: 1199px) {
    .brl-profile-page .brl-grid {
        grid-template-columns: 320px 1fr;
        gap: 20px;
    }
}

@media (max-width: 991px) {
    .brl-profile-page .brl-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .brl-profile-page .brl-sidebar {
        position: static;
        order: -1;
    }
    
    .brl-profile-page .brl-stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}

@media (max-width: 767px) {
    .brl-profile-page { padding: 16px 0 40px; }
    .brl-profile-page .brl-container { padding: 0 12px; }
    .brl-profile-page .brl-grid { gap: 16px; }
    .brl-profile-page .brl-card-header { padding: 16px 18px; }
    .brl-profile-page .brl-card-body { padding: 18px; }
    .brl-profile-page .brl-card-title { font-size: 1rem; }
    
    .brl-profile-page .brl-rating-summary {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .brl-profile-page .brl-rating-puan-buyuk {
        font-size: 3rem;
    }
    
    .brl-profile-page .brl-stats-grid { grid-template-columns: 1fr; }
    .brl-profile-page .brl-stat { padding: 16px; }
    .brl-profile-page .brl-comment { padding: 14px 16px; }
    
    .brl-profile-page .brl-user-avatar {
        width: 88px;
        height: 88px;
        font-size: 2rem;
    }
    
    .brl-profile-page .brl-user-name { font-size: 1.125rem; }
    .brl-profile-page .brl-comments { max-height: 500px; }
}

@media (max-width: 480px) {
    .brl-profile-page .brl-comments-tabs { flex-direction: column; }
    .brl-profile-page .brl-tab { min-width: 100%; }
    .brl-profile-page .brl-comment-head { align-items: flex-start; }
}

@keyframes brlFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.brl-profile-page .brl-card { animation: brlFadeIn 0.4s ease-out; }