/* =========================================
   REVIEW CHAT BUBBLE — MAS v3.0.0
========================================= */
.reviews-display-section {
    max-width: 1100px;
    margin: 3rem auto;
    padding: 2rem 1rem;
    width: 100%;
}

.reviews-title {
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--mas-blue);
    font-size: 2rem;
    font-weight: 700;
}

.review-chat-bubble {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: slideInUp 0.4s ease-out;
    max-width: 100%;
}

@keyframes slideInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.review-avatar {
    flex-shrink: 0;
}

.avatar-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mas-blue), var(--mas-blue-bright));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0,128,255,0.3);
    border: 3px solid white;
}

.review-content-wrapper {
    flex: 1;
    min-width: 0;
}

.review-header-chat {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
    margin-bottom: 0.5rem;
}

.reviewer-name {
    font-size: 1.05rem;
    color: var(--mas-blue);
    font-weight: 700;
}

.review-time {
    font-size: 0.85rem;
    color: var(--mas-blue-dark);
}

.review-bubble-content {
    background: white;
    padding: 1.2rem 1.5rem;
    border-radius: 18px 18px 18px 4px;
    box-shadow: 0 2px 8px rgba(0,74,173,0.08);
    border: 2px solid var(--mas-blue-soft);
    transition: var(--transition-base);
    position: relative;
}

.review-bubble-content::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -8px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 12px 12px;
    border-color: transparent transparent white transparent;
    filter: drop-shadow(-2px 2px 1px rgba(0,0,0,0.03));
}

.review-bubble-content:hover {
    box-shadow: 0 4px 16px rgba(0,74,173,0.12);
    transform: translateY(-2px);
}

.review-stars-inline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.rating-number {
    color: var(--mas-orange);
    font-weight: 700;
    font-size: 0.95rem;
}

.review-title-bubble {
    font-size: 1.1rem;
    color: var(--mas-blue);
    margin: 0 0 0.8rem 0;
    font-weight: 700;
    line-height: 1.3;
}

.review-text {
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0 0 1rem 0;
    font-size: 0.95rem;
}

.rating-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--mas-blue-bg);
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--mas-blue-soft), var(--mas-blue-bg));
    color: var(--text-dark);
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid var(--mas-blue-bg);
    transition: var(--transition-base);
}

.rating-badge:hover {
    background: linear-gradient(135deg, var(--mas-blue-bg), var(--mas-blue-soft));
    transform: translateY(-1px);
}

.rating-badge-new {
    background: linear-gradient(135deg, rgba(0,128,255,0.1), rgba(0,128,255,0.05));
    border-color: rgba(0,128,255,0.3);
    color: var(--mas-blue);
}

.rating-badge-new:hover {
    background: linear-gradient(135deg, rgba(0,128,255,0.15), rgba(0,128,255,0.08));
}

.no-reviews-bubble {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border: 2px dashed var(--mas-blue-bg);
}

.no-reviews-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.no-reviews-bubble p {
    color: var(--mas-blue-dark);
    font-size: 1.05rem;
    margin: 0;
}

@media (max-width: 768px) {
    .reviews-display-section { width: 100% !important; padding: 1rem 0.5rem !important; margin: 1rem 0 !important; }
    .reviews-title            { font-size: 1.5rem; margin-bottom: 2rem; }
    .review-chat-bubble       { gap: 0.8rem; }
    .avatar-circle            { width: 45px; height: 45px; font-size: 1.1rem; }
    .review-bubble-content    { padding: 1rem 0.8rem !important; }
}

@media (max-width: 480px) {
    .reviews-display-section { padding: 1rem 0.5rem !important; }
    .reviews-title            { font-size: 1.3rem; margin-bottom: 1.5rem; }
    .review-chat-bubble       { gap: 0.6rem; margin-bottom: 1.5rem; }
    .avatar-circle            { width: 40px; height: 40px; font-size: 1rem; }
    .review-bubble-content    { padding: 0.9rem 1rem !important; }
}
