/* ABP Feedback Display — Front-end */

.abp-fd-section {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 28px;
    margin-top: 32px;
}

.abp-fd-heading {
    margin: 0 0 20px;
    font-size: 20px;
    color: #111827;
}

/* Overview row */
.abp-fd-overview {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.abp-fd-overall {
    text-align: center;
    min-width: 120px;
}

.abp-fd-big-rating {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: #111827;
    line-height: 1;
}

.abp-fd-stars {
    display: block;
    margin: 6px 0;
}

.abp-fd-star {
    font-size: 20px;
}

.abp-fd-star-full {
    color: #f59e0b;
}

.abp-fd-star-half {
    color: #fbbf24;
    opacity: 0.7;
}

.abp-fd-star-empty {
    color: #d1d5db;
}

.abp-fd-count {
    font-size: 13px;
    color: #6b7280;
}

/* Category bars */
.abp-fd-categories {
    flex: 1;
    min-width: 250px;
}

.abp-fd-cat {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.abp-fd-cat-label {
    width: 140px;
    font-size: 14px;
    color: #374151;
    font-weight: 500;
}

.abp-fd-cat-rating {
    width: 40px;
    font-size: 13px;
    color: #6b7280;
    text-align: right;
}

.abp-fd-bar-bg {
    flex: 1;
    height: 10px;
    background: #e5e7eb;
    border-radius: 5px;
    overflow: hidden;
}

.abp-fd-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #2271b1, #3b82f6);
    border-radius: 5px;
    transition: width 0.3s;
}

/* Breakdown */
.abp-fd-breakdown {
    margin-top: 20px;
    border-top: 1px solid #e5e7eb;
    padding-top: 20px;
}

.abp-fd-breakdown h4 {
    margin: 0 0 14px;
    font-size: 15px;
    color: #374151;
}

.abp-fd-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.abp-fd-item-label {
    width: 200px;
    font-size: 13px;
    color: #4b5563;
}

.abp-fd-item-bar-wrap {
    flex: 1;
}

.abp-fd-item-avg {
    width: 30px;
    text-align: right;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
}

/* Testimonials */
.abp-fd-testimonials {
    margin-top: 20px;
    border-top: 1px solid #e5e7eb;
    padding-top: 20px;
}

.abp-fd-testimonials h4 {
    margin: 0 0 14px;
    font-size: 15px;
    color: #374151;
}

.abp-fd-testimonial {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 16px 20px;
    margin-bottom: 12px;
}

.abp-fd-testimonial p {
    margin: 0 0 6px;
    font-size: 14px;
    color: #374151;
    font-style: italic;
    line-height: 1.6;
}

.abp-fd-testimonial footer {
    font-size: 12px;
    color: #9ca3af;
}

/* Responsive */
@media (max-width: 600px) {
    .abp-fd-overview {
        flex-direction: column;
        align-items: center;
    }

    .abp-fd-item-label {
        width: 140px;
    }

    .abp-fd-cat-label {
        width: 100px;
    }
}
