/* ===============================
   Amazon Review Insights – Styles
   =============================== */

/* Review Card */
.ari-review-card {
    background: #fafafa;
    padding: 18px 20px;
    margin-bottom: 18px;
    border-left: 4px solid #ff9900;
    border-radius: 6px;
    transition: all 0.25s ease;
    position: relative;
}

/* Hover Highlight */
.ari-review-card:hover {
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

/* Header Row */
.ari-review-header {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 8px;
    align-items: center;
}

/* Client Name Badge */
.ari-client {
    background: #ff4d4d;
    color: #ffffff;
    font-size: 12px;
    padding: 4px 9px;
    border-radius: 4px;
    font-weight: 600;
    line-height: 1;
}

/* Marketplace Badge */
.ari-marketplace {
    background: #232f3e;
    color: #ffffff;
    font-size: 12px;
    padding: 4px 9px;
    border-radius: 4px;
    font-weight: 600;
    line-height: 1;
}

/* Rating */
.ari-rating {
    font-size: 14px;
    font-weight: 600;
    margin: 6px 0 8px;
    color: #222;
}

/* Review Text */
.ari-text {
    font-size: 14px;
    color: #444;
    line-height: 1.65;
    margin: 0 0 6px;
}

/* Footer Note */
.ari-note {
    font-size: 12px;
    color: #888;
}

/* Wrapper Title */
.ari-amazon-feedback-wrapper h3 {
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 600;
}

/* Mobile Optimization */
@media (max-width: 600px) {
    .ari-review-card {
        padding: 16px;
    }

    .ari-review-header {
        gap: 8px;
    }
}
