.seller-page__header {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-5);
}

.seller-page__header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-left: auto;
}

.seller-page__avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 999px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
    flex-shrink: 0;
}

.seller-page__member-since {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin: 2px 0 var(--space-1);
}

.seller-page__no-rating {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.seller-response-time {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    margin-top: var(--space-1);
}

.seller-response-time svg {
    width: 14px;
    height: 14px;
}

.seller-experienced-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #b7791f;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: var(--space-1);
}

.seller-experienced-badge svg {
    width: 14px;
    height: 14px;
}

.seller-page h2 {
    margin-top: var(--space-5);
    margin-bottom: var(--space-3);
}

.seller-reviews {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.seller-review {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-3);
}

.seller-review__header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-1);
}

.seller-review__meta {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.seller-review__confirmed {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #1a7f37;
    font-size: 0.8rem;
    font-weight: 600;
}

.seller-review__confirmed svg {
    width: 14px;
    height: 14px;
}

.seller-review__comment {
    margin: 0;
    color: var(--color-text);
    line-height: 1.5;
}

.seller-review__reply {
    margin-top: var(--space-2);
    padding: var(--space-2) var(--space-3);
    background: var(--color-surface);
    border-radius: var(--radius-sm);
}

.seller-review__reply p {
    margin: var(--space-1) 0 0;
    line-height: 1.5;
}

.seller-review__reply-form {
    margin-top: var(--space-2);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.seller-review__reply-form textarea {
    resize: vertical;
    min-height: 4.5rem;
}
