/* Reviews Section Structure */
.reviews-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    font-family: 'Outfit', sans-serif;
    color: #333;
}

/* Header */
.reviews-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.reviews-header h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.review-badge {
    background-color: #fdf2f8;
    /* Light pink background */
    color: #db2777;
    /* Pink text */
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.review-badge svg {
    fill: currentColor;
}

.trustpilot-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #00b67a;
    /* Trustpilot Green */
    font-weight: 600;
    font-size: 14px;
}

.trustpilot-star {
    fill: #00b67a;
    /* Filled star color */
    background: #00b67a;
    width: 20px;
    height: 20px;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}


/* Scroll Container */
.reviews-scroll-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 25px;
    scrollbar-width: thin;
    scrollbar-color: #ddd transparent;
}

.reviews-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.reviews-scroll-container::-webkit-scrollbar-thumb {
    background-color: #ddd;
    border-radius: 4px;
}

.reviews-scroll-container::-webkit-scrollbar-track {
    background-color: transparent;
}

/* Review Card */
.review-card {
    min-width: 320px;
    max-width: 320px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    transition: transform 0.2s;
}

.review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

/* User Info */
.review-user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #4a4a4a;
    font-size: 16px;
    position: relative;
    overflow: hidden;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-avatar.yellow {
    background-color: #fceea4;
    color: #7c6a0c;
}

.user-avatar.green {
    background-color: #daf2a9;
    color: #5a7b0a;
}


.user-info {
    flex-grow: 1;
}

.user-info h4 {
    font-size: 15px;
    margin: 0 0 2px 0;
    font-weight: 700;
    color: #333;
}

.user-info .user-location {
    font-size: 12px;
    color: #777;
    display: flex;
    align-items: center;
    gap: 4px;
}

.user-location img {
    width: 14px;
    height: auto;
}


/* Rating */
.review-stars {
    color: #E91E63;
    /* Pink stars */
    margin-bottom: 12px;
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
}

.review-stars span {
    font-size: 14px;
    color: #E91E63;
}

/* Text */
.review-text {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 64px;
    /* Approx 3 lines height to align cards */
}

/* Review Images */
.review-images {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.review-images img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #eee;
}

/* Footer Ticket Info */
.review-ticket-info {
    background-color: #f7f7f7;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 12px;
    color: #666;
    margin-top: auto;
}

.review-ticket-info strong {
    display: block;
    color: #333;
    margin-bottom: 2px;
    font-size: 12px;
}

/* Navigation Arrows (Optional, mostly decoration if standard scroll) */
.reviews-nav {
    margin-left: auto;
    display: flex;
    gap: 10px;
}

.nav-btn {
    width: 36px;
    height: 36px;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #555;
    transition: 0.2s;
}

.nav-btn:hover {
    border-color: #333;
    color: #333;
}