/* ================================
   PREMIUM REVIEWS SECTION (FINAL)
================================ */

/* SECTION BACKGROUND */
.testimonials-section {
    background: #f5f5f5;   /* light gray */
    padding: 60px 0;
}

/* CONTAINER */
.reviews-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER */
.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.reviews-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000;
}

/* META (stars + count + link) */
.reviews-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
    color: #333;
}

.header-stars {
    font-size: 1.1rem;
    letter-spacing: 2px;
    color: #000;
}

.see-all-link {
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

/* ARROWS */
.review-nav-arrows {
    display: flex;
    gap: 10px;
}

.nav-arrow {
    width: 32px;
    height: 32px;
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.nav-arrow:hover {
    background: #000;
    color: #fff;
}

/* SCROLL WRAPPER */
.reviews-scroll-wrapper {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
}

.reviews-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

/* REVIEW CARD */
.real-review-card {
    min-width: 300px;
    max-width: 300px;
    background: #ffffff;  /* white cards */
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 4px 10px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.real-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* TOP ROW */
.card-top-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.review-author {
    font-weight: 600;
    color: #000;
    font-size: 0.95rem;
}

.review-date {
    font-size: 0.8rem;
    color: #888;
}

/* STARS */
.card-stars {
    font-size: 1rem;
    color: #000;
    margin-bottom: 10px;
}

/* TITLE */
.review-headline {
    font-weight: 600;
    color: #000;
    font-size: 1rem;
    margin-bottom: 6px;
}

/* BODY */
.review-body {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;

    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ================================
   MOBILE RESPONSIVE
================================ */
@media (max-width: 768px) {

    .testimonials-section {
        padding: 40px 0;
    }

    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .reviews-title {
        font-size: 1.1rem;
    }

    .reviews-meta {
        width: 100%;
        justify-content: space-between;
    }

    .review-nav-arrows {
        display: none; /* swipe instead */
    }

    .reviews-scroll-wrapper {
        padding-left: 15px;
        gap: 15px;
    }

    .real-review-card {
        min-width: 80%;
        max-width: 80%;
        border-radius: 10px;
    }

    .review-body {
        font-size: 0.85rem;
        -webkit-line-clamp: 3;
    }

    .see-all-link {
        background: #832422;
        color: #fff;
        padding: 6px 12px;
        text-decoration: none;
        font-size: 0.8rem;
    }
}