/* ----------------------------------------
   GLOBAL WRAPPER
---------------------------------------- */
#cvr-reviews-wrapper {
    max-width: 1050px;
    margin: auto;
    padding: 40px 18px;
    font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial;
    background: linear-gradient(180deg, #f7fbff, #ffffff);
}

/* ----------------------------------------
   HERO HEADER (PREMIUM UPGRADE)
---------------------------------------- */
.cvr-rating-header {
    text-align: center;
    margin-bottom: 34px;
    padding: 38px 22px;
    border-radius: 22px;
    background: radial-gradient(circle at top, #eaf4ff 0%, #ffffff 60%);
    box-shadow: 0 18px 45px rgba(26, 115, 232, 0.10);
    border: 1px solid #e3efff;
    position: relative;
    overflow: hidden;
}

/* soft glow behind header */
.cvr-rating-header::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(26, 115, 232, 0.15);
    filter: blur(90px);
    top: -80px;
    right: -80px;
    z-index: 0;
}

/* BRAND TITLE */
.cvr-rating-header::before {
    content: "Aventura Campervans Reviews";
    display: block;
    font-size: 30px;
    font-weight: 700;
    color: #111111;
    letter-spacing: 0;
    margin-bottom: 14px;
    text-transform: none;
    position: relative;
    z-index: 1;
}

/* BIG RATING */
#cvr-average-rating {
    font-size: 56px;
    font-weight: 900;
    color: #1a73e8;
    letter-spacing: -1px;
    text-shadow: 0 6px 16px rgba(26, 115, 232, 0.18);
    position: relative;
    z-index: 1;
}

#cvr-rating-count {
    font-size: 14px;
    color: #5f6f86;
    margin-top: 6px;
    position: relative;
    z-index: 1;
}

/* ----------------------------------------
   FILTERS
---------------------------------------- */
.cvr-filters {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.cvr-filters select {
    flex: 1;
    padding: 13px 14px;
    border-radius: 14px;
    border: 1px solid #d6e4ff;
    background: #fff;
    font-size: 14px;
    color: #1f2d3d;
    box-shadow: 0 3px 12px rgba(26, 115, 232, 0.06);
    transition: all 0.2s ease;
}

.cvr-filters select:hover {
    border-color: #1a73e8;
}

.cvr-filters select:focus {
    outline: none;
    border-color: #1a73e8;
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.15);
}

/* ----------------------------------------
   LIST
---------------------------------------- */
#cvr-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* ----------------------------------------
   CARD
---------------------------------------- */
.cvr-review-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 20px;
    border: 1px solid #e8f0ff;
    box-shadow: 0 12px 32px rgba(15, 40, 90, 0.07);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.cvr-review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 50px rgba(15, 40, 90, 0.12);
}

/* ----------------------------------------
   CARD HEADER
---------------------------------------- */
.cvr-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cvr-user {
    flex: 1;
}

.cvr-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #d9e9ff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.10);
}

.cvr-name {
    font-weight: 800;
    font-size: 17px;
    color: #1f2d3d;
}

.cvr-location {
    font-size: 14px;
    color: #6b7a90;
    margin-top: 2px;
}

/* ----------------------------------------
   STARS (STRONGER)
---------------------------------------- */
.cvr-stars {
    margin-top: 6px;
    display: flex;
    gap: 3px;
}

.cvr-stars .star {
    font-size: 20px;
    color: #d0d7e6;
}

.cvr-stars .star.filled {
    color: #ffb400;
    text-shadow: 0 3px 10px rgba(255, 180, 0, 0.35);
}

/* ----------------------------------------
   SOURCE ICONS (VERY PROMINENT)
---------------------------------------- */
.cvr-source {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 6px;
}

.cvr-logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    filter: drop-shadow(0 8px 14px rgba(0,0,0,0.14));
    transition: transform 0.2s ease;
}

.cvr-logo:hover {
    transform: scale(1.1);
}

/* ----------------------------------------
   TEXT
---------------------------------------- */
.cvr-text {
    margin-top: 12px;
    line-height: 1.65;
    font-size: 14px;
    color: #2b3a4a;
}

/* ----------------------------------------
   GALLERY
---------------------------------------- */
.cvr-gallery {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.cvr-thumb {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.cvr-thumb:hover {
    transform: scale(1.04);
    box-shadow: 0 10px 22px rgba(0,0,0,0.14);
}

/* ----------------------------------------
   LOAD MORE
---------------------------------------- */
.cvr-loadmore-wrap {
    text-align: center;
    margin-top: 24px;
}

#cvr-load-more {
    background: linear-gradient(135deg, #1a73e8, #4dabf7);
    color: white;
    border: none;
    padding: 13px 24px;
    border-radius: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(26, 115, 232, 0.25);
    transition: all 0.2s ease;
}

#cvr-load-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(26, 115, 232, 0.35);
}

/* ----------------------------------------
   LIGHTBOX
---------------------------------------- */
.cvr-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10, 20, 40, 0.88);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.cvr-lightbox img {
    max-width: 92%;
    max-height: 92%;
    border-radius: 16px;
    box-shadow: 0 25px 70px rgba(0,0,0,0.45);
}

.cvr-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 44px;
    color: #fff;
    cursor: pointer;
    opacity: 0.9;
}

.cvr-close:hover {
    opacity: 1;
}