.custom-feedback-panel {
    display: grid;
    grid-template-columns: minmax(240px, 340px) minmax(0, 1fr);
    gap: 14px;
    margin: 14px 0 18px;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid rgba(236, 72, 153, 0.2);
    background: linear-gradient(130deg, #fffafc 0%, #f8fbff 100%);
}

.custom-feedback-summary h3 {
    margin: 0 0 6px;
    color: #9d174d;
}

.custom-feedback-summary p {
    margin: 0 0 10px;
    color: #64748b;
    font-size: 0.9rem;
}

.custom-feedback-score-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.custom-feedback-stars {
    color: #f59e0b;
    font-weight: 700;
    letter-spacing: 1px;
}

.custom-feedback-rating {
    color: #1e293b;
    font-size: 1rem;
}

.custom-feedback-count {
    color: #64748b;
    font-size: 0.85rem;
}

.custom-feedback-list {
    display: grid;
    gap: 8px;
    align-content: start;
}

.custom-feedback-item {
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 10px;
    padding: 10px;
}

.custom-feedback-item-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.custom-feedback-item-stars {
    color: #f59e0b;
    font-weight: 700;
}

.custom-feedback-item-date {
    color: #94a3b8;
    font-size: 0.78rem;
}

.custom-feedback-item-text {
    margin: 0;
    color: #475569;
    line-height: 1.45;
    font-size: 0.9rem;
}

.custom-feedback-empty {
    margin: 0;
    color: #94a3b8;
    font-size: 0.9rem;
}

@media (max-width: 960px) {
    .custom-feedback-panel {
        grid-template-columns: 1fr;
    }
}
