.eppro-pc-wrap { display: block; }

.eppro-pc-heading {
    font-size: 20px;
    font-weight: 700;
    color: var(--eppro-gray-900, #111827);
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.eppro-pc-count { font-size: 15px; font-weight: 400; color: var(--eppro-gray-400, #9ca3af); }

/* List */
.eppro-pc-list, .eppro-pc-children {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.eppro-pc-children { margin-top: 12px; padding-left: 32px; }

.eppro-pc-comment {
    display: flex;
    gap: 14px;
    background: var(--eppro-gray-50, #f9fafb);
    border-radius: var(--eppro-radius-md, 10px);
    padding: 16px;
}

/* Avatar */
.eppro-pc-avatar { flex-shrink: 0; }
.eppro-pc-avatar img { border-radius: 50%; display: block; object-fit: cover; }

/* Body */
.eppro-pc-body { flex: 1; min-width: 0; }

.eppro-pc-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.eppro-pc-author { font-weight: 600; font-size: 14px; color: var(--eppro-gray-900, #111827); }
.eppro-pc-date   { font-size: 12px; color: var(--eppro-gray-400, #9ca3af); }

.eppro-pc-text { font-size: 14px; color: var(--eppro-gray-600, #4b5563); line-height: 1.7; }
.eppro-pc-text p { margin: 0 0 8px; }
.eppro-pc-text p:last-child { margin-bottom: 0; }

.eppro-pc-reply { margin-top: 8px; }
.eppro-pc-reply-link { font-size: 12px; font-weight: 600; color: var(--eppro-primary, #7c3aed); text-decoration: none; }
.eppro-pc-reply-link:hover { text-decoration: underline; }

.eppro-pc-empty { color: var(--eppro-gray-400, #9ca3af); font-size: 14px; padding: 20px 0; }

/* Form */
.eppro-pc-form-wrap { margin-top: 32px; }
.eppro-pc-form-title { font-size: 18px; font-weight: 700; color: var(--eppro-gray-900, #111827); margin: 0 0 18px; }

.eppro-pc-form { display: flex; flex-direction: column; gap: 0; }
.eppro-pc-field { margin-bottom: 14px; display: flex; flex-direction: column; gap: 5px; }
.eppro-pc-field label { font-size: 13px; font-weight: 600; color: var(--eppro-gray-700, #374151); }
.required { color: var(--eppro-error, #ef4444); }

.eppro-pc-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--eppro-input-border, #e5e7eb);
    border-radius: var(--eppro-radius, 8px);
    font-size: 14px;
    color: var(--eppro-input-color, #1f2937);
    background: var(--eppro-input-bg, #fff);
    transition: border-color .2s, box-shadow .2s;
    box-sizing: border-box;
    font-family: inherit;
}
.eppro-pc-input:focus {
    outline: none;
    border-color: var(--eppro-primary, #7c3aed);
    box-shadow: var(--eppro-focus-ring, 0 0 0 3px rgba(124,58,237,.2));
    background: var(--eppro-white, #fff);
}
.eppro-pc-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }

.eppro-pc-submit-btn {
    padding: 11px 28px;
    background: var(--eppro-primary, #7c3aed);
    color: #fff;
    border: 2px solid var(--eppro-primary, #7c3aed);
    border-radius: var(--eppro-radius, 8px);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s, transform .15s;
    align-self: flex-start;
}
.eppro-pc-submit-btn:hover { background: var(--eppro-primary-dark, #6d28d9); border-color: var(--eppro-primary-dark, #6d28d9); transform: translateY(-1px); }
