    /* ============================================================
       r9- prefixed styles for Customer Reviews
       ============================================================ */

    .r9-section {
        background: #f8f9fc;
        font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
        padding: 3rem 0;
    }

    /* ----- Review Cards ----- */
    .r9-card {
        background: #ffffff;
        border-radius: 20px !important;
        border: 1px solid #d0d7e2;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04), 0 1px 4px rgba(0, 0, 0, 0.02);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        padding: 1.75rem 1.5rem !important;
        height: 100%;
        min-height: 280px;
    }

    .r9-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.03);
        border-color: #b0b8c4;
    }

    /* Stars */
    .r9-stars {
        display: flex;
        gap: 0.15rem;
        flex-wrap: wrap;
    }

    .r9-star {
        color: #00a859;
        font-size: 1.1rem;
        line-height: 1;
    }

    /* Title */
    .r9-title {
        font-weight: 700;
        font-size: 1.05rem;
        color: #0b1a2b;
        margin-bottom: 0.5rem;
        line-height: 1.3;
        letter-spacing: -0.01em;
    }

    /* Review Text */
    .r9-review {
        color: #3d4e66;
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 1rem;
        flex: 1 1 auto;
    }

    /* Divider */
    .r9-divider {
        margin: 0.75rem 0;
        border: 0;
        border-top: 2px solid #e9edf2;
        opacity: 1;
    }

    /* Meta - Person & Date */
    .r9-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .r9-person {
        font-weight: 700;
        color: #0b1a2b;
        font-size: 0.95rem;
    }

    .r9-date {
        color: #6c7a8e;
        font-size: 0.85rem;
    }

    /* ----- Footer Section - Grey Background ----- */
    .r9-footer {
        background: #e9edf2;
        border-radius: 20px;
        padding: 1.5rem 2rem;
        margin-top: 1.5rem;
    }

    .r9-footer-content {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
    }

    .r9-footer-left {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .r9-footer-stars .r9-star {
        font-size: 1.2rem;
        color: #00a859;
    }

    .r9-rating {
        font-weight: 700;
        font-size: 1.1rem;
        color: #0b1a2b;
    }

    .r9-review-count {
        color: #3d4e66;
        font-size: 0.9rem;
    }

    .r9-footer-right {
        flex-shrink: 0;
    }

    .r9-footer-link {
        color: #0b1a2b;
        font-weight: 600;
        font-size: 0.95rem;
        text-decoration: none;
        transition: color 0.15s ease, gap 0.15s ease;
        display: inline-flex;
        align-items: center;
        gap: 0.3rem;
        border-bottom: 2px solid transparent;
        padding-bottom: 0.1rem;
        letter-spacing: 0.01em;
    }

    .r9-footer-link:hover {
        color: #000;
        gap: 0.7rem;
        border-bottom-color: #1e1e1e;
    }

    /* ----- Responsive ----- */
    @media (max-width: 992px) {
        .r9-card {
            padding: 1.5rem 1.25rem !important;
            min-height: 250px;
        }
        .r9-title {
            font-size: 0.95rem;
        }
        .r9-review {
            font-size: 0.85rem;
        }
        .r9-star {
            font-size: 1rem;
        }
        .r9-footer {
            padding: 1.25rem 1.5rem;
        }
        .r9-footer-link {
            font-size: 0.9rem;
        }
    }

    @media (max-width: 768px) {
        .r9-card {
            padding: 1.25rem 1.25rem !important;
            min-height: 220px;
            border-radius: 16px !important;
        }
        .r9-title {
            font-size: 0.9rem;
        }
        .r9-review {
            font-size: 0.8rem;
            line-height: 1.6;
        }
        .r9-person {
            font-size: 0.85rem;
        }
        .r9-date {
            font-size: 0.8rem;
        }
        .r9-footer {
            padding: 1rem 1.25rem;
            border-radius: 16px;
        }
        .r9-footer-content {
            flex-direction: column;
            align-items: flex-start;
        }
        .r9-footer-left {
            flex-wrap: wrap;
        }
        .r9-footer-link {
            font-size: 0.85rem;
        }
        .r9-rating {
            font-size: 1rem;
        }
        .r9-review-count {
            font-size: 0.8rem;
        }
        .r9-footer-stars .r9-star {
            font-size: 1rem;
        }
    }

    @media (max-width: 576px) {
        .r9-section {
            padding: 2rem 0;
        }
        .r9-card {
            padding: 1rem 1rem !important;
            min-height: 180px;
            border-radius: 14px !important;
        }
        .r9-title {
            font-size: 0.85rem;
            margin-bottom: 0.35rem;
        }
        .r9-review {
            font-size: 0.78rem;
            margin-bottom: 0.5rem;
        }
        .r9-star {
            font-size: 0.9rem;
        }
        .r9-divider {
            margin: 0.5rem 0;
        }
        .r9-person {
            font-size: 0.8rem;
        }
        .r9-date {
            font-size: 0.75rem;
        }
        .r9-footer {
            padding: 0.75rem 1rem;
            border-radius: 14px;
            margin-top: 1rem;
        }
        .r9-footer-link {
            font-size: 0.8rem;
        }
        .r9-rating {
            font-size: 0.9rem;
        }
        .r9-review-count {
            font-size: 0.75rem;
        }
        .r9-footer-stars .r9-star {
            font-size: 0.9rem;
        }
        .r9-footer-left {
            gap: 0.5rem;
        }
    }