.page-header {
    text-align: center;
    padding: 20px 0 40px 0;
}
.page-header h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}
.page-header p {
    font-size: 18px;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.profile-grid {
    display: grid;
    grid-template-columns: minmax(320px, 1fr) 2fr;
    gap: 30px;
    align-items: flex-start;
}

.profile-forms-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.profile-card {
    background-color: var(--color-surface);
    padding: 30px;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.card-title {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--color-border);
}

.community-badge-card .card-title {
    margin-bottom: 20px;
}
.badge-info {
    display: flex;
    align-items: center;
    gap: 25px;
}
.points-display {
    text-align: center;
    background-color: var(--color-background);
    border-radius: var(--border-radius);
    padding: 15px;
    border: 1px solid var(--color-border);
}
.points-display i {
    font-size: 24px;
    color: #ffc107;
}
.points-display span {
    display: block;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text-base);
}
.points-display p {
    font-size: 12px;
    font-weight: 500;
    color: var(--color-text-muted);
}
.level-display .level-title {
    font-weight: 600;
    font-size: 18px;
    margin: 0;
}
.level-display .level-desc {
    font-size: 14px;
    color: var(--color-text-muted);
    margin: 0;
}

.form-group {
    margin-bottom: 20px;
}
.form-label {
    display: block;
    font-weight: 500;
    color: var(--color-text-base);
    margin-bottom: 8px;
}
.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(0, 169, 127, 0.1);
}
.form-control:disabled {
    background-color: var(--color-background);
    cursor: not-allowed;
}
.form-button {
    width: 100%;
    padding: 12px;
    background-color: var(--color-primary);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.form-button:hover {
    background-color: var(--color-primary-dark);
}

.message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 6px;
    border: 1px solid transparent;
}
.message.success {
    background-color: rgba(25, 135, 84, 0.1);
    color: #146c43;
    border-color: rgba(25, 135, 84, 0.2);
}
.message.error {
    background-color: rgba(220, 53, 69, 0.1);
    color: #b02a37;
    border-color: rgba(220, 53, 69, 0.2);
}

.condensed-list {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.condensed-list .search-result-item {
    padding: 15px;
    margin-bottom: 0;
    border: none;
    box-shadow: none;
    background-color: var(--color-background);
}
.condensed-list .search-result-item:hover {
    background-color: #e9ecef;
}
.condensed-list .result-item-image-link {
    width: 60px;
    height: 60px;
}
.condensed-list .result-item-title {
    font-size: 16px;
    margin-bottom: 5px;
}
.condensed-list .result-item-brand {
    font-size: 13px;
    margin-bottom: 0;
}

.suggestions-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.suggestions-table th, .suggestions-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}
.suggestions-table thead th {
    font-weight: 600;
    color: var(--color-text-muted);
    background-color: var(--color-background);
}
.suggestions-table tbody tr:last-child td {
    border-bottom: none;
}
.suggestion-status {
    padding: 3px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    color: white;
    white-space: nowrap;
}
.suggestion-status-pending { background-color: #ffc107; color: #333; }
.suggestion-status-accepted { background-color: #198754; }
.suggestion-status-rejected { background-color: #dc3545; }


/* --- YENİ EKLENDİ: Herkese Açık Profil Stilleri --- */
.public-profile .page-header { display: none; } /* Ayarlar sayfasındaki başlığı gizle */

.public-profile-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
.public-profile-avatar {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 600;
    text-transform: uppercase;
}
.public-profile-info h1 {
    font-size: 28px;
    margin: 0;
}
.public-profile-info .username {
    font-size: 16px;
    color: var(--color-text-muted);
    margin: 0;
}
.public-profile-bio {
    border-top: 1px solid var(--color-border);
    padding-top: 20px;
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.7;
}
.public-profile-link {
    margin-top: 20px;
    border-top: 1px solid var(--color-border);
    padding-top: 15px;
}
.public-profile-link a {
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

/* Aktivite Akışı Stilleri */
.activity-feed {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.activity-item {
    background-color: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: 15px;
}
.activity-header {
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 10px;
    margin-bottom: 15px;
}
.activity-header p {
    margin: 0;
    font-size: 15px;
}
.activity-header a {
    text-decoration: none;
    font-weight: 600;
}
.activity-header small {
    color: var(--color-text-muted);
    font-size: 13px;
}
.activity-body {
    display: flex;
    gap: 15px;
}
.activity-image-link {
    flex-shrink: 0;
}
.activity-image-link img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
}
.activity-content .review-rating {
    font-size: 16px;
    margin-bottom: 8px;
}
.activity-comment {
    font-style: italic;
    color: var(--color-text-muted);
    margin: 0;
    font-size: 15px;
}

@media (max-width: 992px) {
    .profile-grid {
        grid-template-columns: 1fr;
    }
}
