/**
 * __REVIEWS_ARCHIVE_PUBLIC_V1__
 * Strict Bumaga-style public reviews archive.
 */

.rv-page {
    min-height: 70vh;
    padding: 64px 0 54px;
    background: #171717;
    color: #f5f5f5;
}

.rv-hero,
.rv-filters,
.rv-grid,
.rv-empty {
    width: min(1030px, calc(100% - 32px));
    margin-left: auto;
    margin-right: auto;
}

.rv-hero {
    text-align: center;
    margin-bottom: 22px;
}

.rv-kicker {
    margin-bottom: 12px;
    color: rgba(110, 168, 255, 0.78);
    font-size: 11px;
    line-height: 1;
    font-weight: 850;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.rv-title {
    margin: 0;
    color: rgba(245, 247, 250, 0.96);
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.04;
    font-weight: 900;
    letter-spacing: -0.045em;
}

.rv-subtitle {
    max-width: 760px;
    margin: 16px auto 0;
    color: rgba(220, 224, 230, 0.58);
    font-size: 16px;
    line-height: 1.65;
}

.rv-stats {
    margin: 18px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.rv-stats span {
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    padding: 6px 11px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.07);
    background: rgba(255,255,255,0.025);
    color: rgba(230,234,241,0.64);
    font-size: 12px;
    font-weight: 700;
}

.rv-filters {
    margin-top: 26px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.rv-filter,
.rv-btn {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.075);
    background: rgba(255,255,255,0.02);
    color: rgba(232,236,242,0.72);
    font-size: 12px;
    font-weight: 750;
    text-decoration: none;
    transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.rv-filter:hover,
.rv-btn:hover,
.rv-filter--active {
    border-color: rgba(110,168,255,0.32);
    background: rgba(110,168,255,0.055);
    color: rgba(245,248,255,0.92);
}

.rv-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.rv-card {
    border: 1px solid rgba(255,255,255,0.075);
    background: rgba(255,255,255,0.018);
    border-radius: 16px;
    padding: 18px;
}

.rv-card-top,
.rv-card-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.rv-badge {
    border: 1px solid rgba(255,255,255,0.075);
    background: rgba(255,255,255,0.025);
    color: rgba(232,236,242,0.66);
    border-radius: 999px;
    padding: 5px 9px;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.rv-badge--verified {
    color: rgba(110,168,255,0.88);
    border-color: rgba(110,168,255,0.18);
}

.rv-review-text {
    margin: 14px 0 16px;
    color: rgba(238,240,244,0.86);
    font-size: 15px;
    line-height: 1.7;
}

.rv-card-meta {
    color: rgba(218,222,229,0.46);
    font-size: 12px;
}

.rv-card-meta span + span::before {
    content: "•";
    margin-right: 8px;
    color: rgba(218,222,229,0.26);
}

.rv-empty {
    margin-top: 22px;
    border: 1px solid rgba(255,255,255,0.075);
    background: rgba(255,255,255,0.014);
    border-radius: 16px;
    padding: 26px;
    text-align: center;
}

.rv-empty h2 {
    margin: 0;
    color: rgba(245,247,250,0.9);
    font-size: 22px;
    font-weight: 850;
    letter-spacing: -0.025em;
}

.rv-empty p {
    max-width: 720px;
    margin: 10px auto 0;
    color: rgba(218,222,229,0.56);
    font-size: 14px;
    line-height: 1.65;
}

.rv-empty-actions {
    margin-top: 18px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

@media (max-width: 760px) {
    .rv-page {
        padding-top: 46px;
    }

    .rv-hero,
    .rv-filters,
    .rv-grid,
    .rv-empty {
        width: min(100% - 24px, 720px);
    }

    .rv-grid {
        grid-template-columns: 1fr;
    }

    .rv-title {
        font-size: 36px;
    }

    .rv-subtitle {
        font-size: 14.5px;
    }
}

@media (max-width: 520px) {
    .rv-hero,
    .rv-filters,
    .rv-grid,
    .rv-empty {
        width: calc(100% - 18px);
    }

    .rv-title {
        font-size: 32px;
    }

    .rv-empty {
        padding: 20px;
    }
}


/* __REVIEWS_ARCHIVE_UNIFIED_HERO_V1__ — make reviews hero match site-wide hero */
.rv-page {
    min-height: 70vh;
    padding: 48px 0 54px;
    background: #171717;
    color: #f5f5f5;
}

.rv-hero,
.rv-filters,
.rv-grid,
.rv-empty {
    width: min(1030px, calc(100% - 32px));
    margin-left: auto;
    margin-right: auto;
}

.rv-hero--unified {
    margin-bottom: 26px;
    text-align: center;
}

.rv-hero-head {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.rv-hero-icon {
    width: 88px;
    height: 88px;
    flex: 0 0 88px;
    border-radius: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #f5f7fb;
    background: linear-gradient(180deg, rgba(96,162,255,0.96) 0%, rgba(86,136,241,0.96) 100%);
    box-shadow:
        0 18px 40px rgba(53, 115, 225, 0.22),
        inset 0 1px 0 rgba(255,255,255,0.12);
}

.rv-hero-icon svg {
    width: 40px;
    height: 40px;
    display: block;
}

.rv-title {
    margin: 0;
    color: rgba(245, 247, 250, 0.98);
    font-size: clamp(48px, 5.4vw, 74px);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -0.055em;
}

.rv-subtitle {
    max-width: 1120px;
    margin: 22px auto 0;
    color: rgba(220, 224, 230, 0.56);
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.62;
    text-align: center;
}

.rv-stats {
    margin: 22px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.rv-stats span {
    min-height: 31px;
    display: inline-flex;
    align-items: center;
    padding: 6px 11px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.07);
    background: rgba(255,255,255,0.025);
    color: rgba(230,234,241,0.64);
    font-size: 12px;
    font-weight: 700;
}

.rv-filters {
    margin-top: 22px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

@media (max-width: 760px) {
    .rv-page {
        padding-top: 42px;
    }

    .rv-hero,
    .rv-filters,
    .rv-grid,
    .rv-empty {
        width: min(100% - 24px, 720px);
    }

    .rv-hero-head {
        gap: 14px;
    }

    .rv-hero-icon {
        width: 72px;
        height: 72px;
        flex-basis: 72px;
        border-radius: 20px;
    }

    .rv-hero-icon svg {
        width: 34px;
        height: 34px;
    }

    .rv-title {
        font-size: clamp(34px, 8.2vw, 52px);
    }

    .rv-subtitle {
        margin-top: 18px;
        font-size: 15px;
        line-height: 1.6;
    }

    .rv-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .rv-hero,
    .rv-filters,
    .rv-grid,
    .rv-empty {
        width: calc(100% - 18px);
    }

    .rv-hero-head {
        gap: 12px;
    }

    .rv-hero-icon {
        width: 64px;
        height: 64px;
        flex-basis: 64px;
        border-radius: 18px;
    }

    .rv-hero-icon svg {
        width: 30px;
        height: 30px;
    }

    .rv-title {
        font-size: 32px;
    }

    .rv-subtitle {
        font-size: 14.5px;
    }

    .rv-empty {
        padding: 20px;
    }
}


/* __REVIEWS_HERO_EXACT_NUMBERS_V1__
   Exact hero metrics copied from /numbers.php:
   .sms-page / .sms-header / .sms-title / .sms-title-icon / .sms-subtitle
*/
.rv-page {
    max-width: clamp(1280px, 86vw, 1420px);
    margin: 0 auto;
    padding: 40px 20px 54px;
    background: #1a1a1a;
    color: #fff;
}

.rv-hero,
.rv-filters,
.rv-grid,
.rv-empty {
    width: 100%;
    max-width: none;
}

.rv-hero,
.rv-hero--unified {
    text-align: center;
    margin: 0 0 40px;
}

.rv-hero-head {
    margin: 0 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.rv-hero-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    background: linear-gradient(135deg, #4a9eff 0%, #2d7cd6 100%);
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(74, 158, 255, 0.3);
    color: #fff;
}

.rv-hero-icon svg {
    width: 32px;
    height: 32px;
    color: #fff;
}

.rv-title {
    margin: 0;
    color: #fff;
    font-size: 42px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: 0;
}

.rv-subtitle {
    color: #888;
    font-size: 18px;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
    text-align: center;
}

/* Numbers hero has no status chips; hide them to keep hero identical. */
.rv-stats {
    display: none !important;
}

.rv-filters {
    margin: 0 auto 22px;
    justify-content: center;
}

/* Keep content narrower after the copied hero, without changing hero metrics. */
.rv-filters,
.rv-grid,
.rv-empty {
    max-width: 1030px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 760px) {
    .rv-page {
        max-width: none;
        padding: 40px 20px 42px;
    }

    .rv-hero,
    .rv-hero--unified {
        margin-bottom: 34px;
    }

    .rv-title {
        font-size: 32px;
    }

    .rv-subtitle {
        font-size: 16px;
    }

    .rv-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .rv-page {
        padding-left: 15px;
        padding-right: 15px;
    }

    .rv-hero-head {
        flex-direction: column;
        gap: 15px;
    }

    .rv-title {
        font-size: 28px;
    }

    .rv-hero-icon {
        width: 56px;
        height: 56px;
    }

    .rv-hero-icon svg {
        width: 32px;
        height: 32px;
    }

    .rv-subtitle {
        font-size: 14px;
    }
}



/* __RA_PUBLIC_MEDIA_1_CSS__ — review archive thumbnails + lightweight lightbox */
.rv-media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(76px, 104px));
    gap: 10px;
    margin: 16px 0 4px;
}

.rv-media-thumb {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    background: rgba(255,255,255,0.04);
    cursor: pointer;
}

.rv-media-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(0,0,0,0.18));
    opacity: 0;
    transition: opacity .18s ease;
}

.rv-media-thumb:hover::after {
    opacity: 1;
}

.rv-media-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}


@media (max-width: 640px) {
    .rv-media-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}



/* __RA_MEDIA_POLISH_1F_GALLERY_CSS__ — FAQ-like premium overlay for review screenshots */
.rv-gallery-lock {
    overflow: hidden;
}

.rv-gallery {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background:
        radial-gradient(circle at 50% 0%, rgba(65, 132, 255, 0.16), transparent 38%),
        rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(12px);
}

.rv-gallery.rv-gallery--open {
    display: flex;
}

.rv-gallery-shell {
    position: relative;
    width: min(1040px, 94vw);
    max-height: 92vh;
    overflow: hidden;
    border: 1px solid rgba(86, 145, 255, 0.34);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(25, 29, 36, 0.98), rgba(12, 13, 15, 0.98));
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.62);
}

.rv-gallery-main {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: min(68vh, 720px);
    background:
        radial-gradient(circle at 50% 12%, rgba(255,255,255,0.05), transparent 42%),
        rgba(0,0,0,0.34);
}

.rv-gallery-img {
    display: block;
    max-width: 100%;
    max-height: min(68vh, 720px);
    object-fit: contain;
    border-radius: 14px;
}

.rv-gallery-brand {
    position: absolute;
    left: 20px;
    bottom: 18px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.58);
    text-shadow: 0 2px 12px rgba(0,0,0,0.65);
    pointer-events: none;
}

.rv-gallery-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 4;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 14px;
    background: rgba(28, 29, 32, 0.86);
    color: rgba(255,255,255,0.92);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.rv-gallery-nav {
    position: absolute;
    top: 50%;
    z-index: 3;
    transform: translateY(-50%);
    width: 44px;
    height: 56px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    background: rgba(20, 22, 26, 0.72);
    color: rgba(255,255,255,0.92);
    font-size: 38px;
    line-height: 1;
    cursor: pointer;
}

.rv-gallery-nav:disabled {
    opacity: 0.24;
    cursor: default;
}

.rv-gallery-prev {
    left: 16px;
}

.rv-gallery-next {
    right: 16px;
}

.rv-gallery-footer {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
    background: rgba(8, 9, 11, 0.64);
}

.rv-gallery-count {
    flex: 0 0 auto;
    min-width: 44px;
    color: rgba(255,255,255,0.56);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.rv-gallery-thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 2px;
}

.rv-gallery-th {
    width: 68px;
    height: 52px;
    flex: 0 0 auto;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
    opacity: 0.58;
    cursor: pointer;
}

.rv-gallery-th--active {
    opacity: 1;
    border-color: rgba(86, 145, 255, 0.96);
    box-shadow: 0 0 0 2px rgba(86, 145, 255, 0.20);
}

.rv-gallery-th img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Keep cards stable: thumbnails stay compact; expanded view lives in .rv-gallery only. */
.rv-media-grid {
    grid-template-columns: repeat(auto-fit, minmax(76px, 104px));
}

@media (max-width: 720px) {
    .rv-gallery {
        padding: 10px;
    }

    .rv-gallery-shell {
        width: 100%;
        max-height: 94vh;
        border-radius: 18px;
    }

    .rv-gallery-main {
        min-height: 62vh;
    }

    .rv-gallery-img {
        max-height: 62vh;
    }

    .rv-gallery-footer {
        padding: 12px;
    }

    .rv-gallery-close {
        top: 10px;
        right: 10px;
    }

    .rv-gallery-nav {
        width: 38px;
        height: 48px;
    }

    .rv-gallery-prev {
        left: 10px;
    }

    .rv-gallery-next {
        right: 10px;
    }
}


/* __RA_MEDIA_POLISH_1H_VIEWER_UX_CSS__ — visible SVG close, conditional nav, mobile polish */
.rv-gallery-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: rgba(255, 255, 255, 0.96);
    background: rgba(18, 20, 24, 0.92);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.38);
}

.rv-gallery-close svg {
    width: 22px;
    height: 22px;
    display: block;
    stroke: currentColor;
    stroke-width: 2.35;
    stroke-linecap: round;
    fill: none;
}

.rv-gallery-close:hover {
    border-color: rgba(255, 105, 105, 0.42);
    background: rgba(44, 24, 26, 0.96);
    color: rgba(255, 235, 235, 1);
}

.rv-gallery--single .rv-gallery-nav {
    display: none !important;
}

.rv-gallery--single .rv-gallery-thumbs {
    display: none !important;
}

.rv-gallery--single .rv-gallery-footer {
    min-height: 48px;
}

.rv-gallery--single .rv-gallery-count {
    opacity: 0.58;
}

.rv-gallery-main {
    isolation: isolate;
}

.rv-gallery-img {
    background: rgba(0, 0, 0, 0.22);
}

.rv-gallery-brand {
    background: rgba(0, 0, 0, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 5px 8px;
}

@media (max-width: 720px) {
    .rv-gallery {
        align-items: stretch;
        justify-content: stretch;
        padding: 8px;
        background: rgba(0, 0, 0, 0.86);
        backdrop-filter: blur(8px);
    }

    .rv-gallery-shell {
        width: 100%;
        max-height: calc(100vh - 16px);
        border-radius: 18px;
        display: flex;
        flex-direction: column;
    }

    .rv-gallery-main {
        flex: 1 1 auto;
        min-height: 0;
        height: auto;
        padding: 0;
    }

    .rv-gallery-img {
        width: 100%;
        max-width: 100%;
        max-height: calc(100vh - 96px);
        object-fit: contain;
        border-radius: 12px;
    }

    .rv-gallery--single .rv-gallery-img {
        max-height: calc(100vh - 74px);
    }

    .rv-gallery-close {
        top: 10px;
        right: 10px;
        width: 42px;
        height: 42px;
        border-radius: 13px;
        background: rgba(18, 20, 24, 0.96);
    }

    .rv-gallery-close svg {
        width: 21px;
        height: 21px;
    }

    .rv-gallery-brand {
        left: 12px;
        bottom: 12px;
        font-size: 10px;
        padding: 4px 7px;
    }

    .rv-gallery-footer {
        flex: 0 0 auto;
        padding: 10px 12px 12px;
        gap: 10px;
    }

    .rv-gallery--single .rv-gallery-footer {
        padding: 8px 12px 10px;
        min-height: 38px;
    }

    .rv-gallery-count {
        min-width: 34px;
        font-size: 11px;
    }

    .rv-gallery-th {
        width: 58px;
        height: 44px;
        border-radius: 10px;
    }
}

@media (max-width: 420px) {
    .rv-gallery {
        padding: 6px;
    }

    .rv-gallery-shell {
        max-height: calc(100vh - 12px);
        border-radius: 16px;
    }

    .rv-gallery-img {
        max-height: calc(100vh - 90px);
    }

    .rv-gallery--single .rv-gallery-img {
        max-height: calc(100vh - 66px);
    }

    .rv-gallery-close {
        width: 40px;
        height: 40px;
    }
}


/* __RA_TEXT_1F_DOMAIN_LINK_CSS__ — clickable branded domain inside review text, native Bumaga blue */
.rv-domain-link {
    color: #4a9eff;
    font-weight: 800;
    text-decoration: none;
    border-bottom: 1px solid rgba(74, 158, 255, 0.42);
    text-shadow: 0 0 14px rgba(74, 158, 255, 0.16);
    transition: color .16s ease, border-color .16s ease, text-shadow .16s ease, opacity .16s ease;
}

.rv-domain-link:hover {
    color: #5aafff;
    border-color: rgba(90, 175, 255, 0.58);
    text-shadow: 0 0 16px rgba(74, 158, 255, 0.24);
}

.rv-domain-link:focus-visible {
    outline: 2px solid rgba(74, 158, 255, 0.70);
    outline-offset: 3px;
    border-radius: 4px;
}

/* __RA_PAGINATION_1B_LOAD_MORE_CSS__ — scalable review archive pagination, native Bumaga blue */
.rv-load-more-wrap {
    display: flex;
    justify-content: center;
    margin: 34px 0 8px;
}

.rv-load-more {
    min-width: 190px;
    min-height: 46px;
    padding: 12px 22px;
    border: 1px solid rgba(74, 158, 255, 0.34);
    border-radius: 999px;
    background:
        linear-gradient(135deg, rgba(74, 158, 255, 0.13) 0%, rgba(45, 124, 214, 0.10) 100%),
        rgba(255, 255, 255, 0.035);
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.02em;
    cursor: pointer;
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.28),
        0 0 22px rgba(74, 158, 255, 0.08);
    transition:
        transform .16s ease,
        border-color .16s ease,
        background .16s ease,
        box-shadow .16s ease,
        opacity .16s ease;
}

.rv-load-more:hover {
    transform: translateY(-1px);
    border-color: rgba(74, 158, 255, 0.52);
    background:
        linear-gradient(135deg, rgba(74, 158, 255, 0.20) 0%, rgba(45, 124, 214, 0.14) 100%),
        rgba(255, 255, 255, 0.045);
    box-shadow:
        0 14px 34px rgba(0, 0, 0, 0.32),
        0 0 28px rgba(74, 158, 255, 0.14);
}

.rv-load-more:focus-visible {
    outline: 2px solid rgba(74, 158, 255, 0.70);
    outline-offset: 4px;
}

.rv-load-more:disabled {
    cursor: default;
    opacity: 0.62;
    transform: none;
}

.rv-load-more--loading span::after {
    content: "";
    display: inline-block;
    width: 1.1em;
    text-align: left;
    animation: rvLoadDots 1.1s steps(4, end) infinite;
}

@keyframes rvLoadDots {
    0% { content: ""; }
    25% { content: "."; }
    50% { content: ".."; }
    75%, 100% { content: "..."; }
}

@media (max-width: 640px) {
    .rv-load-more-wrap {
        margin-top: 26px;
    }

    .rv-load-more {
        width: 100%;
        min-height: 48px;
    }
}

/* __RA_STYLE_1B_NATIVE_BUMAGA_BLUE__ */

/* __RA_STATS_STYLE_1B_EXACT_ESCROW_CHIP_CSS__ — exact Escrow trust chip style mapped to Reviews */
.rv-hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.rv-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--bp-green-dim);
    border: 1px solid rgba(52, 211, 153, 0.15);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--bp-green);
    font-family: var(--bp-sans);
}

.rv-hero-pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--bp-green);
}

/* Keep Reviews count chip identical to Escrow: no extra strong scaling/glow. */
.rv-hero-pill strong {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
}

.rv-hero-pill span {
    line-height: inherit;
}


@media (max-width: 480px) {
    .esc-title              { font-size: 26px; }
    .esc-kpi-value          { font-size: 28px; }
    .esc-kpi-dynamic        { font-size: 12px; }
    .rv-hero-stats              { gap: 6px; }
    .rv-hero-pill               { padding: 5px 10px; font-size: 11px; }

/* __HERO_PARITY_1B_REVIEWS_EXACT_ESCROW_HERO__ — Reviews hero follows escrow.css .esc-header/.esc-title rhythm */
.rv-page .rv-hero,
.rv-page .rv-hero.rv-hero--unified {
    text-align: center;
    padding: 48px 0 32px;
    margin: 0 auto;
    max-width: none;
}

.rv-page .rv-hero-head {
    font-size: 42px;
    font-weight: 900;
    margin: 0 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--bp-text);
    line-height: 1.15;
}

.rv-page .rv-title {
    margin: 0;
    padding: 0;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: -0.02em;
    color: inherit;
}

.rv-page .rv-hero-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--bp-accent) 0%, #2d7cd6 100%);
    border-radius: var(--bp-radius);
    box-shadow: 0 8px 25px rgba(74, 158, 255, 0.3);
    flex-shrink: 0;
}

.rv-page .rv-hero-icon svg {
    width: 32px;
    height: 32px;
    color: #fff;
}

.rv-page .rv-subtitle {
    color: var(--bp-text-secondary);
    font-size: 18px;
    max-width: 650px;
    margin: 0 auto 20px;
    line-height: 1.6;
    padding: 0;
}

.rv-page .rv-hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 0;
}

.rv-page .rv-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--bp-green-dim);
    border: 1px solid rgba(52, 211, 153, 0.15);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--bp-green);
    font-family: var(--bp-sans);
    min-height: 0;
    box-shadow: none;
    letter-spacing: 0;
}

.rv-page .rv-hero-pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--bp-green);
    box-shadow: none;
}

.rv-page .rv-stats {
    display: none !important;
}

@media (max-width: 768px) {
    .rv-page .rv-hero,
    .rv-page .rv-hero.rv-hero--unified {
        padding: 40px 0 28px;
    }

    .rv-page .rv-hero-head {
        font-size: 32px;
    }

    .rv-page .rv-hero-icon {
        width: 50px;
        height: 50px;
    }

    .rv-page .rv-hero-icon svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .rv-page .rv-hero,
    .rv-page .rv-hero.rv-hero--unified {
        padding: 32px 0 24px;
    }

    .rv-page .rv-hero-head {
        font-size: 28px;
        gap: 12px;
    }

    .rv-page .rv-hero-icon {
        width: 46px;
        height: 46px;
    }

    .rv-page .rv-hero-icon svg {
        width: 26px;
        height: 26px;
    }

    .rv-page .rv-subtitle {
        font-size: 15px;
        max-width: 100%;
    }

    .rv-page .rv-hero-stats {
        gap: 6px;
    }

    .rv-page .rv-hero-pill {
        padding: 5px 10px;
        font-size: 11px;
    }
}

/* __RA_CSS_BRACE_FIX_4F_CLOSE_480_MEDIA__ — closes previous @media (max-width: 480px) block */
}

/* __HERO_TOP_SPACING_1A_COMPACT_REVIEWS__ — avoid double top gap: page wrapper + escrow-style hero */
.rv-page {
    padding-top: 0;
}

.rv-page .rv-hero,
.rv-page .rv-hero.rv-hero--unified {
    padding-top: 48px;
}

@media (max-width: 768px) {
    .rv-page {
        padding-top: 0;
    }

    .rv-page .rv-hero,
    .rv-page .rv-hero.rv-hero--unified {
        padding-top: 40px;
    }
}

@media (max-width: 480px) {
    .rv-page {
        padding-top: 0;
    }

    .rv-page .rv-hero,
    .rv-page .rv-hero.rv-hero--unified {
        padding-top: 32px;
    }
}


/* __RA_UI_SORT_4B__ — cleaner public reviews UI: no per-card badges, sort controls, better hero rhythm */
.rv-page .rv-hero-stats {
    margin-top: 20px;
}

.rv-page .rv-sort {
    margin: 22px auto 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 5px;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 999px;
    background: rgba(255,255,255,0.025);
}

.rv-page .rv-sort-link {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border-radius: 999px;
    color: rgba(230,234,241,0.62);
    text-decoration: none;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    border: 1px solid transparent;
    transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.rv-page .rv-sort-link:hover {
    color: rgba(245,247,250,0.9);
    border-color: rgba(74,158,255,0.24);
    background: rgba(74,158,255,0.08);
}

.rv-page .rv-sort-link--active {
    color: rgba(111,231,255,0.95);
    border-color: rgba(74,158,255,0.34);
    background: rgba(74,158,255,0.12);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.rv-page .rv-card-top {
    display: none !important;
}

.rv-page .rv-review-text {
    margin-top: 0;
}

@media (max-width: 640px) {
    .rv-page .rv-hero-stats {
        margin-top: 16px;
    }

    .rv-page .rv-sort {
        width: 100%;
        border-radius: 20px;
    }

    .rv-page .rv-sort-link {
        flex: 1 1 auto;
        min-width: 120px;
    }
}

/* __RA_SORT_VISUAL_FIX_4C__ — force enterprise sort pills + hero counter gap */
.rv-page .rv-hero .rv-hero-stats,
.rv-hero .rv-hero-stats,
.rv-hero-stats {
    margin-top: 30px !important;
}

.rv-page .rv-hero .rv-sort,
.rv-hero .rv-sort,
.rv-sort {
    margin: 22px auto 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    padding: 5px !important;
    width: auto !important;
    max-width: min(100%, 560px) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,0.035) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04) !important;
}

.rv-page .rv-hero .rv-sort-link,
.rv-hero .rv-sort-link,
.rv-sort-link {
    min-height: 34px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 15px !important;
    border-radius: 999px !important;
    border: 1px solid transparent !important;
    background: transparent !important;
    color: rgba(226,232,240,0.64) !important;
    text-decoration: none !important;
    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    letter-spacing: .075em !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
    transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease !important;
}

.rv-page .rv-hero .rv-sort-link:hover,
.rv-hero .rv-sort-link:hover,
.rv-sort-link:hover {
    color: rgba(245,247,250,0.92) !important;
    border-color: rgba(74,158,255,0.28) !important;
    background: rgba(74,158,255,0.09) !important;
    text-decoration: none !important;
}

.rv-page .rv-hero .rv-sort-link--active,
.rv-hero .rv-sort-link--active,
.rv-sort-link--active {
    color: rgba(111,231,255,0.96) !important;
    border-color: rgba(74,158,255,0.38) !important;
    background: rgba(74,158,255,0.14) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.07) !important;
}

@media (max-width: 640px) {
    .rv-page .rv-hero .rv-hero-stats,
    .rv-hero .rv-hero-stats,
    .rv-hero-stats {
        margin-top: 22px !important;
    }

    .rv-page .rv-hero .rv-sort,
    .rv-hero .rv-sort,
    .rv-sort {
        width: 100% !important;
        border-radius: 20px !important;
    }

    .rv-page .rv-hero .rv-sort-link,
    .rv-hero .rv-sort-link,
    .rv-sort-link {
        flex: 1 1 auto !important;
        min-width: 120px !important;
    }
}

/* __RA_SORT_EXCHANGE_STYLE_4G__ — align reviews sort pills with Exchange dark enterprise controls */
.rv-page .rv-hero .rv-sort,
.rv-hero .rv-sort,
.rv-sort {
    margin: 24px auto 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    padding: 0 !important;
    width: auto !important;
    max-width: min(100%, 760px) !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.rv-page .rv-hero .rv-sort-link,
.rv-hero .rv-sort-link,
.rv-sort-link {
    min-height: 42px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 22px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    background: rgba(255,255,255,0.025) !important;
    color: rgba(226,232,240,0.42) !important;
    text-decoration: none !important;
    font-size: 13px !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    letter-spacing: .055em !important;
    text-transform: none !important;
    white-space: nowrap !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.025) !important;
    transition:
        background .18s ease,
        border-color .18s ease,
        color .18s ease,
        box-shadow .18s ease,
        transform .18s ease !important;
}

.rv-page .rv-hero .rv-sort-link:hover,
.rv-hero .rv-sort-link:hover,
.rv-sort-link:hover {
    color: rgba(245,247,250,0.78) !important;
    border-color: rgba(74,158,255,0.22) !important;
    background: rgba(74,158,255,0.055) !important;
    text-decoration: none !important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.035),
        0 10px 24px rgba(0,0,0,0.18) !important;
}

.rv-page .rv-hero .rv-sort-link--active,
.rv-hero .rv-sort-link--active,
.rv-sort-link--active {
    color: rgba(245,247,250,0.9) !important;
    border-color: rgba(74,158,255,0.36) !important;
    background: rgba(74,158,255,0.09) !important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.055),
        0 0 0 1px rgba(74,158,255,0.06),
        0 12px 28px rgba(74,158,255,0.08) !important;
}

.rv-page .rv-hero .rv-hero-stats,
.rv-hero .rv-hero-stats,
.rv-hero-stats {
    margin-top: 34px !important;
}

@media (max-width: 640px) {
    .rv-page .rv-hero .rv-sort,
    .rv-hero .rv-sort,
    .rv-sort {
        width: 100% !important;
        gap: 8px !important;
    }

    .rv-page .rv-hero .rv-sort-link,
    .rv-hero .rv-sort-link,
    .rv-sort-link {
        flex: 1 1 100% !important;
        min-height: 40px !important;
        padding: 0 14px !important;
        font-size: 12px !important;
    }

    .rv-page .rv-hero .rv-hero-stats,
    .rv-hero .rv-hero-stats,
    .rv-hero-stats {
        margin-top: 24px !important;
    }
}

/* __RA_GALLERY_LABELS_PATTERN_7B__ — reviews gallery follows Labels lightbox dark pattern */
.rv-gallery {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    z-index: 999999 !important;

    display: none !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 28px !important;
    box-sizing: border-box !important;

    background:
        radial-gradient(circle at 50% 0%, rgba(74,158,255,0.08), transparent 34%),
        rgba(0,0,0,0.88) !important;
    backdrop-filter: blur(14px) saturate(110%) !important;
    -webkit-backdrop-filter: blur(14px) saturate(110%) !important;
}

.rv-gallery.rv-gallery--open {
    display: flex !important;
}

.rv-gallery-shell {
    position: relative !important;
    width: min(1180px, 94vw) !important;
    height: min(820px, 88vh) !important;
    max-height: 88dvh !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: center !important;

    border-radius: 18px !important;
    border: 1px solid rgba(255,255,255,0.10) !important;
    background: rgba(13,13,13,0.96) !important;
    box-shadow:
        0 28px 90px rgba(0,0,0,0.62),
        inset 0 1px 0 rgba(255,255,255,0.045) !important;
    overflow: hidden !important;
}

.rv-gallery-main {
    position: relative !important;
    flex: 1 1 auto !important;
    min-height: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 28px !important;
    background: rgba(9,10,12,0.72) !important;
}

.rv-gallery-img {
    display: block !important;
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: calc(88dvh - 124px) !important;

    object-fit: contain !important;
    border-radius: 10px !important;
    box-shadow: 0 18px 44px rgba(0,0,0,0.42) !important;
}

.rv-gallery-close {
    position: absolute !important;
    top: 18px !important;
    right: 20px !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 0 !important;
    margin: 0 !important;
    border-radius: 999px !important;

    background-color: rgba(26,26,26,0.96) !important;
    border: 1px solid rgba(255,255,255,0.22) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.45) !important;

    color: transparent !important;
    font-size: 0 !important;
    line-height: 0 !important;
    overflow: hidden !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    z-index: 1000000 !important;

    appearance: none !important;
    -webkit-appearance: none !important;

    background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='24'%20height='24'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%23ffffff'%20stroke-width='3.2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M6%206L18%2018M18%206L6%2018'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 22px 22px !important;
}

.rv-gallery-close svg,
.rv-gallery-close::before,
.rv-gallery-close::after {
    display: none !important;
    content: none !important;
}

.rv-gallery-close:hover {
    border-color: rgba(255,255,255,0.38) !important;
    background-color: rgba(34,34,34,0.98) !important;
    transform: none !important;
}

.rv-gallery-footer {
    flex: 0 0 auto !important;
    min-height: 58px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 14px !important;

    padding: 12px 18px !important;
    border-top: 1px solid rgba(255,255,255,0.07) !important;
    background: rgba(10,10,10,0.96) !important;
}

.rv-gallery-count {
    color: rgba(226,232,240,0.42) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em !important;
}

.rv-gallery-brand {
    position: absolute !important;
    left: 22px !important;
    bottom: 22px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    min-height: 26px !important;
    padding: 0 12px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(255,255,255,0.10) !important;
    background: rgba(0,0,0,0.24) !important;

    color: rgba(245,247,250,0.60) !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    letter-spacing: .18em !important;
}

.rv-gallery-nav {
    border-color: rgba(255,255,255,0.14) !important;
    background: rgba(26,26,26,0.84) !important;
    color: rgba(255,255,255,0.78) !important;
    box-shadow: 0 12px 30px rgba(0,0,0,0.34) !important;
}

.rv-gallery-nav:hover {
    border-color: rgba(255,255,255,0.26) !important;
    background: rgba(34,34,34,0.96) !important;
}

.rv-gallery-thumbs {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 8px !important;
    min-width: 0 !important;
    overflow-x: auto !important;
}

.rv-gallery-th {
    width: 48px !important;
    height: 38px !important;
    border-radius: 8px !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    background: rgba(255,255,255,0.035) !important;
    overflow: hidden !important;
    opacity: .62 !important;
}

.rv-gallery-th--active {
    opacity: 1 !important;
    border-color: rgba(74,158,255,0.42) !important;
}

.rv-gallery-th img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.rv-gallery--single .rv-gallery-thumbs {
    display: none !important;
}

html.rv-gallery-lock,
html.rv-gallery-lock body {
    overflow: hidden !important;
}

@media (max-width: 768px) {
    .rv-gallery {
        padding: 12px !important;
    }

    .rv-gallery-shell {
        width: 100% !important;
        height: min(760px, 90dvh) !important;
        border-radius: 14px !important;
    }

    .rv-gallery-main {
        padding: 16px !important;
    }

    .rv-gallery-img {
        max-height: calc(90dvh - 112px) !important;
        border-radius: 8px !important;
    }

    .rv-gallery-close {
        top: 12px !important;
        right: 12px !important;
        width: 42px !important;
        height: 42px !important;
        min-width: 42px !important;
        min-height: 42px !important;
        background-size: 21px 21px !important;
    }

    .rv-gallery-footer {
        min-height: 52px !important;
        padding: 10px 12px !important;
    }

    .rv-gallery-brand {
        left: 16px !important;
        bottom: 16px !important;
    }
}

/* __RA_GALLERY_LABELS_EXACT_7D__ — make Reviews screenshot viewer match Labels lightbox pattern */
.rv-gallery {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    z-index: 999999 !important;
    isolation: isolate !important;

    display: none !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 0 !important;
    box-sizing: border-box !important;

    background: rgba(0,0,0,0.92) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;

    overflow: hidden !important;
    cursor: default !important;
}

.rv-gallery.rv-gallery--open {
    display: flex !important;
}

.rv-gallery-shell {
    position: static !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 0 !important;
    margin: 0 !important;

    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: hidden !important;
}

.rv-gallery-main {
    position: relative !important;
    flex: 1 1 auto !important;
    width: 100% !important;
    min-height: 0 !important;
    max-height: 100vh !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 58px 20px 72px !important;
    box-sizing: border-box !important;

    background: transparent !important;
    overflow: hidden !important;
    touch-action: none !important;
    user-select: none !important;
}

.rv-gallery-img {
    display: block !important;
    width: auto !important;
    height: auto !important;

    max-width: 92vw !important;
    max-height: 84vh !important;

    object-fit: contain !important;
    border-radius: var(--bp-radius-sm, 10px) !important;

    box-shadow: none !important;
    background: transparent !important;

    user-select: none !important;
    -webkit-user-drag: none !important;
    -webkit-touch-callout: none !important;
    touch-action: none !important;
}

.rv-gallery-close {
    position: fixed !important;
    top: 16px !important;
    right: 20px !important;

    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;

    display: block !important;
    box-sizing: border-box !important;

    padding: 0 !important;
    margin: 0 !important;

    border-radius: 50% !important;
    border: 1px solid rgba(255,255,255,.30) !important;

    background-color: rgba(26,26,26,.94) !important;
    background-image: url("data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2024%2024%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Cpath%20d%3D%27M7%207L17%2017M17%207L7%2017%27%20stroke%3D%27white%27%20stroke-width%3D%272.7%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: 22px 22px !important;

    box-shadow: 0 8px 24px rgba(0,0,0,.42) !important;

    color: transparent !important;
    font-size: 0 !important;
    line-height: 0 !important;
    text-indent: -9999px !important;

    cursor: pointer !important;
    z-index: 1000000 !important;

    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;

    appearance: none !important;
    -webkit-appearance: none !important;
}

.rv-gallery-close svg,
.rv-gallery-close::before,
.rv-gallery-close::after,
.rv-gallery-close * {
    display: none !important;
    content: none !important;
}

.rv-gallery-close:hover {
    background-color: rgba(34,34,34,.98) !important;
    border-color: rgba(255,255,255,.42) !important;
    transform: none !important;
}

.rv-gallery-footer {
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 18px !important;

    width: 100% !important;
    min-height: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;

    padding: 0 20px !important;
    box-sizing: border-box !important;

    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    pointer-events: none !important;
}

.rv-gallery-count {
    min-width: 0 !important;
    padding: 6px 10px !important;

    border-radius: 999px !important;
    border: 1px solid rgba(255,255,255,0.10) !important;
    background: rgba(0,0,0,0.26) !important;

    color: rgba(255,255,255,0.46) !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: .06em !important;
    line-height: 1 !important;
}

.rv-gallery-brand {
    display: none !important;
}

.rv-gallery-thumbs {
    display: none !important;
}

.rv-gallery-nav {
    position: fixed !important;
    top: 50% !important;
    transform: translateY(-50%) !important;

    width: 44px !important;
    height: 58px !important;
    border-radius: 999px !important;

    border: 1px solid rgba(255,255,255,0.14) !important;
    background: rgba(26,26,26,0.42) !important;
    color: rgba(255,255,255,0.58) !important;

    box-shadow: none !important;
    z-index: 1000000 !important;
}

.rv-gallery-nav:hover {
    border-color: rgba(255,255,255,0.26) !important;
    background: rgba(34,34,34,0.70) !important;
    color: rgba(255,255,255,0.84) !important;
}

.rv-gallery-prev {
    left: 24px !important;
}

.rv-gallery-next {
    right: 24px !important;
}

.rv-gallery--single .rv-gallery-nav {
    display: none !important;
}

.rv-gallery--single .rv-gallery-footer {
    bottom: 18px !important;
}

html.rv-gallery-lock,
html.rv-gallery-lock body {
    overflow: hidden !important;
}

@media (max-width: 768px) {
    .rv-gallery-main {
        padding: 54px 12px 62px !important;
    }

    .rv-gallery-img {
        max-width: 95vw !important;
        max-height: 82vh !important;
        border-radius: 8px !important;
    }

    .rv-gallery-close {
        top: 12px !important;
        right: 12px !important;
        width: 42px !important;
        height: 42px !important;
        min-width: 42px !important;
        min-height: 42px !important;
        background-size: 21px 21px !important;
    }

    .rv-gallery-footer {
        bottom: 12px !important;
        padding: 0 12px !important;
    }

    .rv-gallery-nav {
        width: 40px !important;
        height: 52px !important;
        background: rgba(26,26,26,0.52) !important;
    }

    .rv-gallery-prev {
        left: 10px !important;
    }

    .rv-gallery-next {
        right: 10px !important;
    }
}


/* __RA_LABELS_LIKE_HERO_STATS_8A__ — replace green review chip with Labels-like context bar */
.rv-page .rv-context-bar {
    margin: 38px auto 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 100%;
    color: rgba(226,232,240,0.50);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
}

.rv-page .rv-context-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 28px;
    color: rgba(226,232,240,0.52);
}

.rv-page .rv-context-item strong {
    color: rgba(226,232,240,0.78);
    font-weight: 850;
    letter-spacing: -0.01em;
}

.rv-page .rv-context-emoji {
    opacity: .78;
    filter: saturate(.85);
    font-size: 15px;
    line-height: 1;
}

.rv-page .rv-context-sep {
    color: rgba(226,232,240,0.28);
    font-weight: 700;
    padding: 0 1px;
}

/* Disable old green chip if legacy markup ever appears. */
.rv-page .rv-hero-pill {
    background: rgba(255,255,255,0.035) !important;
    border-color: rgba(255,255,255,0.08) !important;
    color: rgba(226,232,240,0.62) !important;
}

.rv-page .rv-sort {
    margin-top: 34px !important;
}

@media (max-width: 640px) {
    .rv-page .rv-context-bar {
        margin-top: 28px;
        gap: 6px 8px;
        font-size: 12px;
        padding: 0 12px;
    }

    .rv-page .rv-context-item {
        min-height: 24px;
        gap: 5px;
    }

    .rv-page .rv-context-emoji {
        font-size: 13px;
    }

    .rv-page .rv-sort {
        margin-top: 26px !important;
    }
}


/* __RA_LABELS_EXACT_HERO_RHYTHM_8B__ — Reviews hero controls aligned to Labels page rhythm */
.rv-page .rv-hero {
    padding-bottom: 78px !important;
}

/* Segmented control like Labels filter tabs */
.rv-page .rv-hero .rv-sort,
.rv-hero .rv-sort,
.rv-sort {
    margin: 42px auto 0 !important;
    width: min(760px, calc(100vw - 40px)) !important;
    min-height: 64px !important;

    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    align-items: stretch !important;
    justify-content: center !important;
    gap: 0 !important;

    padding: 0 !important;
    overflow: hidden !important;

    border-radius: 15px !important;
    border: 1px solid rgba(255,255,255,0.09) !important;
    background: rgba(255,255,255,0.012) !important;
    box-shadow: none !important;
}

.rv-page .rv-hero .rv-sort-link,
.rv-hero .rv-sort-link,
.rv-sort-link {
    min-height: 64px !important;
    height: 64px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 0 20px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;

    color: rgba(226,232,240,0.48) !important;
    text-decoration: none !important;

    font-size: 16px !important;
    line-height: 1 !important;
    font-weight: 850 !important;
    letter-spacing: -0.015em !important;
    text-transform: none !important;
    white-space: nowrap !important;

    transition: background .18s ease, color .18s ease, box-shadow .18s ease !important;
}

.rv-page .rv-hero .rv-sort-link + .rv-sort-link,
.rv-hero .rv-sort-link + .rv-sort-link,
.rv-sort-link + .rv-sort-link {
    border-left: 1px solid rgba(255,255,255,0.045) !important;
}

.rv-page .rv-hero .rv-sort-link:hover,
.rv-hero .rv-sort-link:hover,
.rv-sort-link:hover {
    color: rgba(245,247,250,0.66) !important;
    background: rgba(255,255,255,0.025) !important;
    text-decoration: none !important;
}

.rv-page .rv-hero .rv-sort-link--active,
.rv-hero .rv-sort-link--active,
.rv-sort-link--active {
    color: #4a9eff !important;
    background: rgba(74,158,255,0.12) !important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.035),
        inset 0 -1px 0 rgba(0,0,0,0.16) !important;
}

/* Labels-like context line under tabs, centered and quiet */
.rv-page .rv-context-bar {
    width: 100% !important;
    margin: 34px auto 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 7px !important;

    color: rgba(226,232,240,0.38) !important;
    font-size: 15px !important;
    font-weight: 650 !important;
    line-height: 1.2 !important;
    text-align: center !important;
}

.rv-page .rv-context-item {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;

    min-height: auto !important;
    color: rgba(226,232,240,0.38) !important;
}

.rv-page .rv-context-item strong {
    color: #4a9eff !important;
    font-weight: 850 !important;
}

.rv-page .rv-context-emoji {
    opacity: .88 !important;
    font-size: 15px !important;
    line-height: 1 !important;
    filter: saturate(.9) brightness(.95) !important;
}

.rv-page .rv-context-sep {
    color: rgba(226,232,240,0.22) !important;
    padding: 0 2px !important;
}

/* Space between context and cards similar to Labels */
.rv-page .rv-grid {
    margin-top: 54px !important;
}

@media (max-width: 768px) {
    .rv-page .rv-hero {
        padding-bottom: 54px !important;
    }

    .rv-page .rv-hero .rv-sort,
    .rv-hero .rv-sort,
    .rv-sort {
        width: min(100%, calc(100vw - 28px)) !important;
        min-height: 54px !important;
        border-radius: 13px !important;
    }

    .rv-page .rv-hero .rv-sort-link,
    .rv-hero .rv-sort-link,
    .rv-sort-link {
        min-height: 54px !important;
        height: 54px !important;
        padding: 0 10px !important;
        font-size: 13px !important;
    }

    .rv-page .rv-context-bar {
        margin-top: 26px !important;
        gap: 5px 7px !important;
        font-size: 12px !important;
        padding: 0 12px !important;
    }

    .rv-page .rv-grid {
        margin-top: 38px !important;
    }
}

/* __RA_LABELS_COMPACT_TABS_8C__ — make reviews sort/context match Labels proportions */
.rv-page .rv-hero {
    padding-bottom: 54px !important;
}

/* Match Labels tab block: compact centered segmented control */
.rv-page .rv-hero .rv-sort,
.rv-hero .rv-sort,
.rv-sort {
    margin: 34px auto 0 !important;
    width: min(680px, calc(100vw - 40px)) !important;
    min-height: 48px !important;
    height: 48px !important;

    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    align-items: stretch !important;

    border-radius: 14px !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    background: rgba(255,255,255,0.012) !important;
    overflow: hidden !important;
}

.rv-page .rv-hero .rv-sort-link,
.rv-hero .rv-sort-link,
.rv-sort-link {
    min-height: 48px !important;
    height: 48px !important;
    padding: 0 14px !important;

    font-size: 14px !important;
    font-weight: 800 !important;
    letter-spacing: -0.01em !important;

    color: rgba(226,232,240,0.48) !important;
    border-radius: 0 !important;
    background: transparent !important;
}

.rv-page .rv-hero .rv-sort-link--active,
.rv-hero .rv-sort-link--active,
.rv-sort-link--active {
    color: #4a9eff !important;
    background: rgba(74,158,255,0.115) !important;
    box-shadow: none !important;
}

/* Context line like Labels: smaller and closer */
.rv-page .rv-context-bar {
    margin: 24px auto 0 !important;
    font-size: 13px !important;
    font-weight: 650 !important;
    gap: 6px !important;
    color: rgba(226,232,240,0.36) !important;
}

.rv-page .rv-context-item {
    gap: 5px !important;
    color: rgba(226,232,240,0.36) !important;
}

.rv-page .rv-context-item strong {
    color: #4a9eff !important;
    font-weight: 850 !important;
}

.rv-page .rv-context-emoji {
    font-size: 13px !important;
    opacity: .82 !important;
}

.rv-page .rv-context-sep {
    padding: 0 1px !important;
    color: rgba(226,232,240,0.20) !important;
}

/* Bring cards rhythm closer to Labels */
.rv-page .rv-grid {
    margin-top: 42px !important;
}

@media (max-width: 768px) {
    .rv-page .rv-hero {
        padding-bottom: 42px !important;
    }

    .rv-page .rv-hero .rv-sort,
    .rv-hero .rv-sort,
    .rv-sort {
        margin-top: 28px !important;
        width: min(100%, calc(100vw - 28px)) !important;
        height: 46px !important;
        min-height: 46px !important;
        border-radius: 12px !important;
    }

    .rv-page .rv-hero .rv-sort-link,
    .rv-hero .rv-sort-link,
    .rv-sort-link {
        min-height: 46px !important;
        height: 46px !important;
        padding: 0 8px !important;
        font-size: 12px !important;
    }

    .rv-page .rv-context-bar {
        margin-top: 20px !important;
        font-size: 12px !important;
        gap: 5px 6px !important;
    }

    .rv-page .rv-grid {
        margin-top: 32px !important;
    }
}

/* __RA_LABELS_IDENTICAL_TABS_8D__ — pixel-close Reviews controls to Labels filter tabs */
.rv-page .rv-hero {
    padding-bottom: 46px !important;
}

/* Labels-like segmented tabs: compact centered block */
.rv-page .rv-hero .rv-sort,
.rv-hero .rv-sort,
.rv-sort {
    margin: 34px auto 0 !important;

    width: 640px !important;
    max-width: calc(100vw - 40px) !important;
    min-height: 48px !important;
    height: 48px !important;

    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    align-items: stretch !important;
    justify-content: center !important;

    gap: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;

    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 14px !important;
    background: rgba(255,255,255,0.012) !important;
    box-shadow: none !important;
}

/* Labels-like tab item */
.rv-page .rv-hero .rv-sort-link,
.rv-hero .rv-sort-link,
.rv-sort-link {
    min-height: 48px !important;
    height: 48px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 0 18px !important;
    margin: 0 !important;

    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;

    color: rgba(226,232,240,0.46) !important;
    text-decoration: none !important;

    font-size: 14px !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    letter-spacing: -0.012em !important;
    text-transform: none !important;
    white-space: nowrap !important;

    transition: background .18s ease, color .18s ease !important;
}

.rv-page .rv-hero .rv-sort-link + .rv-sort-link,
.rv-hero .rv-sort-link + .rv-sort-link,
.rv-sort-link + .rv-sort-link {
    border-left: 1px solid rgba(255,255,255,0.045) !important;
}

.rv-page .rv-hero .rv-sort-link:hover,
.rv-hero .rv-sort-link:hover,
.rv-sort-link:hover {
    color: rgba(245,247,250,0.64) !important;
    background: rgba(255,255,255,0.025) !important;
    text-decoration: none !important;
}

/* Active tab exactly closer to Labels Europe active segment */
.rv-page .rv-hero .rv-sort-link--active,
.rv-hero .rv-sort-link--active,
.rv-sort-link--active {
    color: #4a9eff !important;
    background: rgba(74,158,255,0.125) !important;
    box-shadow: none !important;
}

/* Labels context line proportions */
.rv-page .rv-context-bar {
    margin: 30px auto 0 !important;

    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: wrap !important;

    gap: 6px !important;
    padding: 0 !important;

    color: rgba(226,232,240,0.34) !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
    font-weight: 600 !important;
    text-align: center !important;
}

.rv-page .rv-context-item {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    gap: 5px !important;
    min-height: auto !important;

    color: rgba(226,232,240,0.34) !important;
}

.rv-page .rv-context-item strong {
    color: #4a9eff !important;
    font-weight: 850 !important;
}

.rv-page .rv-context-emoji {
    font-size: 13px !important;
    line-height: 1 !important;
    opacity: .85 !important;
    filter: saturate(.9) brightness(.95) !important;
}

.rv-page .rv-context-sep {
    padding: 0 2px !important;
    color: rgba(226,232,240,0.20) !important;
}

/* Cards start like Labels cards rhythm */
.rv-page .rv-grid {
    margin-top: 44px !important;
}

/* Hard override older 8B/8C oversized rules */
.rv-page .rv-hero .rv-sort[aria-label="Review sorting"] {
    width: 640px !important;
    max-width: calc(100vw - 40px) !important;
    height: 48px !important;
    min-height: 48px !important;
}

.rv-page .rv-hero .rv-sort[aria-label="Review sorting"] .rv-sort-link {
    height: 48px !important;
    min-height: 48px !important;
    font-size: 14px !important;
}

@media (max-width: 768px) {
    .rv-page .rv-hero {
        padding-bottom: 38px !important;
    }

    .rv-page .rv-hero .rv-sort,
    .rv-hero .rv-sort,
    .rv-sort,
    .rv-page .rv-hero .rv-sort[aria-label="Review sorting"] {
        margin-top: 28px !important;
        width: min(100%, calc(100vw - 28px)) !important;
        height: 46px !important;
        min-height: 46px !important;
        border-radius: 12px !important;
    }

    .rv-page .rv-hero .rv-sort-link,
    .rv-hero .rv-sort-link,
    .rv-sort-link,
    .rv-page .rv-hero .rv-sort[aria-label="Review sorting"] .rv-sort-link {
        height: 46px !important;
        min-height: 46px !important;
        padding: 0 8px !important;
        font-size: 12px !important;
    }

    .rv-page .rv-context-bar {
        margin-top: 22px !important;
        font-size: 12px !important;
        gap: 5px 6px !important;
        padding: 0 12px !important;
    }

    .rv-page .rv-grid {
        margin-top: 34px !important;
    }
}

/* __RA_REVIEWS_HERO_BLOCKS_FINAL_8F__ — final Labels-style Reviews controls, no search */
.rv-page .rv-hero {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
}

/* Hide search if an experimental search block ever exists; Reviews should stay clean. */
.rv-page .rv-search-wrap {
    display: none !important;
}

/* Final compact segmented control: closer to Labels proportions, less massive */
.rv-page .rv-hero .rv-sort,
.rv-hero .rv-sort,
.rv-sort,
.rv-page .rv-hero .rv-sort[aria-label="Review sorting"] {
    margin: 34px auto 0 !important;

    width: 590px !important;
    max-width: calc(100vw - 40px) !important;
    height: 44px !important;
    min-height: 44px !important;

    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    align-items: stretch !important;
    justify-content: center !important;

    gap: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;

    border: 1px solid rgba(255,255,255,0.075) !important;
    border-radius: 13px !important;
    background: rgba(255,255,255,0.012) !important;
    box-shadow: none !important;
}

/* Final tab item */
.rv-page .rv-hero .rv-sort-link,
.rv-hero .rv-sort-link,
.rv-sort-link,
.rv-page .rv-hero .rv-sort[aria-label="Review sorting"] .rv-sort-link {
    height: 44px !important;
    min-height: 44px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 0 14px !important;
    margin: 0 !important;

    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;

    color: rgba(226,232,240,0.44) !important;
    text-decoration: none !important;

    font-size: 13px !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    letter-spacing: -0.01em !important;
    text-transform: none !important;
    white-space: nowrap !important;

    transition: background .18s ease, color .18s ease !important;
}

.rv-page .rv-hero .rv-sort-link + .rv-sort-link,
.rv-hero .rv-sort-link + .rv-sort-link,
.rv-sort-link + .rv-sort-link {
    border-left: 1px solid rgba(255,255,255,0.045) !important;
}

.rv-page .rv-hero .rv-sort-link:hover,
.rv-hero .rv-sort-link:hover,
.rv-sort-link:hover {
    color: rgba(245,247,250,0.66) !important;
    background: rgba(255,255,255,0.025) !important;
    text-decoration: none !important;
}

.rv-page .rv-hero .rv-sort-link--active,
.rv-hero .rv-sort-link--active,
.rv-sort-link--active {
    color: #4a9eff !important;
    background: rgba(74,158,255,0.115) !important;
    box-shadow: none !important;
}

/* Final stats/context line: like Labels, quiet and premium */
.rv-page .rv-context-bar {
    margin: 24px auto 0 !important;

    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: wrap !important;

    gap: 6px !important;
    padding: 0 !important;

    color: rgba(226,232,240,0.34) !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
    font-weight: 600 !important;
    text-align: center !important;
}

.rv-page .rv-context-item {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    gap: 5px !important;
    min-height: auto !important;

    color: rgba(226,232,240,0.34) !important;
}

.rv-page .rv-context-item strong {
    color: #4a9eff !important;
    font-weight: 850 !important;
}

.rv-page .rv-context-emoji {
    font-size: 13px !important;
    line-height: 1 !important;
    opacity: .82 !important;
    filter: saturate(.85) brightness(.95) !important;
}

.rv-page .rv-context-sep {
    padding: 0 2px !important;
    color: rgba(226,232,240,0.18) !important;
}

/* Cards should start closer, like Labels page rhythm */
.rv-page .rv-grid {
    margin-top: 40px !important;
}

/* Avoid old oversized layout rules winning by cascade */
.rv-page .rv-hero .rv-sort[aria-label="Review sorting"] {
    width: 590px !important;
    max-width: calc(100vw - 40px) !important;
    height: 44px !important;
    min-height: 44px !important;
}

.rv-page .rv-hero .rv-sort[aria-label="Review sorting"] .rv-sort-link {
    height: 44px !important;
    min-height: 44px !important;
    font-size: 13px !important;
}

@media (max-width: 768px) {
    .rv-page .rv-hero {
        padding-top: 40px !important;
        padding-bottom: 38px !important;
    }

    .rv-page .rv-hero .rv-sort,
    .rv-hero .rv-sort,
    .rv-sort,
    .rv-page .rv-hero .rv-sort[aria-label="Review sorting"] {
        margin-top: 28px !important;
        width: min(100%, calc(100vw - 28px)) !important;
        height: 44px !important;
        min-height: 44px !important;
        border-radius: 12px !important;
    }

    .rv-page .rv-hero .rv-sort-link,
    .rv-hero .rv-sort-link,
    .rv-sort-link,
    .rv-page .rv-hero .rv-sort[aria-label="Review sorting"] .rv-sort-link {
        height: 44px !important;
        min-height: 44px !important;
        padding: 0 8px !important;
        font-size: 12px !important;
    }

    .rv-page .rv-context-bar {
        margin-top: 20px !important;
        font-size: 12px !important;
        gap: 5px 6px !important;
        padding: 0 12px !important;
    }

    .rv-page .rv-grid {
        margin-top: 32px !important;
    }
}

/* __RA_SORT_ACTIVE_BLUE_FIX_8G__ — restore Labels-like blue active segment */
.rv-page .rv-hero .rv-sort .rv-sort-link.rv-sort-link--active,
.rv-hero .rv-sort .rv-sort-link.rv-sort-link--active,
.rv-sort .rv-sort-link.rv-sort-link--active,
.rv-page .rv-hero .rv-sort[aria-label="Review sorting"] .rv-sort-link.rv-sort-link--active {
    color: #4a9eff !important;
    background: rgba(74, 158, 255, 0.145) !important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.035),
        inset 0 -1px 0 rgba(0,0,0,0.16) !important;
    text-shadow: none !important;
}

.rv-page .rv-hero .rv-sort .rv-sort-link.rv-sort-link--active:hover,
.rv-hero .rv-sort .rv-sort-link.rv-sort-link--active:hover,
.rv-sort .rv-sort-link.rv-sort-link--active:hover,
.rv-page .rv-hero .rv-sort[aria-label="Review sorting"] .rv-sort-link.rv-sort-link--active:hover {
    color: #5aafff !important;
    background: rgba(74, 158, 255, 0.17) !important;
}

/* __RA_SORT_LABELS_EXACT_8J__ — force Reviews sort tabs to match Labels segmented tabs */
.rv-page .rv-hero .rv-sort,
.rv-hero .rv-sort,
.rv-sort,
.rv-page .rv-hero .rv-sort[aria-label="Review sorting"] {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0 !important;
    width: min(100%, 1180px) !important;
    max-width: 1180px !important;
    margin: 0 auto 28px !important;
    padding: 0 !important;
    background: var(--bp-surface) !important;
    border: 1px solid var(--bp-border) !important;
    border-radius: var(--bp-radius-sm) !important;
    overflow: hidden !important;
    box-shadow: none !important;
}

.rv-page .rv-hero .rv-sort-link,
.rv-hero .rv-sort-link,
.rv-sort-link,
.rv-page .rv-hero .rv-sort[aria-label="Review sorting"] .rv-sort-link {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    padding: 11px 28px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: var(--bp-text-secondary) !important;
    font-size: 0.88rem !important;
    font-weight: 600 !important;
    line-height: 1.25 !important;
    text-decoration: none !important;
    cursor: pointer !important;
    box-shadow: none !important;
    transform: none !important;
    transition: all var(--bp-transition) !important;
}

.rv-page .rv-hero .rv-sort-link:not(:last-child)::after,
.rv-hero .rv-sort-link:not(:last-child)::after,
.rv-sort-link:not(:last-child)::after {
    content: "" !important;
    position: absolute !important;
    right: 0 !important;
    top: 20% !important;
    width: 1px !important;
    height: 60% !important;
    background: var(--bp-border) !important;
}

.rv-page .rv-hero .rv-sort-link:hover,
.rv-hero .rv-sort-link:hover,
.rv-sort-link:hover {
    color: var(--bp-text) !important;
    background: rgba(255, 255, 255, 0.03) !important;
}

.rv-page .rv-hero .rv-sort-link.rv-sort-link--active,
.rv-hero .rv-sort-link.rv-sort-link--active,
.rv-sort .rv-sort-link.rv-sort-link--active,
.rv-page .rv-hero .rv-sort[aria-label="Review sorting"] .rv-sort-link.rv-sort-link--active {
    background: var(--bp-accent-dim) !important;
    color: var(--bp-accent) !important;
    font-weight: 700 !important;
    box-shadow: none !important;
}

.rv-page .rv-hero .rv-sort-link.rv-sort-link--active::after,
.rv-hero .rv-sort-link.rv-sort-link--active::after,
.rv-sort .rv-sort-link.rv-sort-link--active::after {
    display: none !important;
}

.rv-page .rv-hero .rv-sort-link.rv-sort-link--active:hover,
.rv-hero .rv-sort-link.rv-sort-link--active:hover,
.rv-sort .rv-sort-link.rv-sort-link--active:hover {
    background: var(--bp-accent-dim) !important;
    color: var(--bp-accent) !important;
}

@media (max-width: 768px) {
    .rv-page .rv-hero .rv-sort,
    .rv-hero .rv-sort,
    .rv-sort,
    .rv-page .rv-hero .rv-sort[aria-label="Review sorting"] {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: auto !important;
        justify-content: flex-start !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
    }

    .rv-page .rv-hero .rv-sort::-webkit-scrollbar,
    .rv-hero .rv-sort::-webkit-scrollbar,
    .rv-sort::-webkit-scrollbar {
        display: none !important;
    }

    .rv-page .rv-hero .rv-sort-link,
    .rv-hero .rv-sort-link,
    .rv-sort-link,
    .rv-page .rv-hero .rv-sort[aria-label="Review sorting"] .rv-sort-link {
        flex: 0 0 auto !important;
        padding: 8px 16px !important;
        font-size: 0.8rem !important;
        white-space: nowrap !important;
    }

    .rv-page .rv-hero .rv-sort-link:not(:last-child)::after,
    .rv-hero .rv-sort-link:not(:last-child)::after,
    .rv-sort-link:not(:last-child)::after {
        display: none !important;
    }
}

/* __RA_SORT_LABELS_WIDTH_8K__ — stop Reviews tabs from stretching wider than Labels-style segmented control */
.rv-page .rv-hero .rv-sort,
.rv-hero .rv-sort,
.rv-sort,
.rv-page .rv-hero .rv-sort[aria-label="Review sorting"] {
    width: auto !important;
    max-width: calc(100% - 32px) !important;
    display: inline-flex !important;
    margin: 0 auto 28px !important;
}

.rv-page .rv-hero .rv-sort-link,
.rv-hero .rv-sort-link,
.rv-sort-link,
.rv-page .rv-hero .rv-sort[aria-label="Review sorting"] .rv-sort-link {
    flex: 0 0 auto !important;
    min-width: 220px !important;
    padding: 11px 28px !important;
    white-space: nowrap !important;
}

@media (max-width: 768px) {
    .rv-page .rv-hero .rv-sort,
    .rv-hero .rv-sort,
    .rv-sort,
    .rv-page .rv-hero .rv-sort[aria-label="Review sorting"] {
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .rv-page .rv-hero .rv-sort-link,
    .rv-hero .rv-sort-link,
    .rv-sort-link,
    .rv-page .rv-hero .rv-sort[aria-label="Review sorting"] .rv-sort-link {
        min-width: auto !important;
        flex: 0 0 auto !important;
        padding: 8px 16px !important;
    }
}

/* __RA_SORT_LABELS_WIDTH_8L__ — pixel-close Reviews sort width to Labels tabs */
.rv-page .rv-hero .rv-sort,
.rv-hero .rv-sort,
.rv-sort,
.rv-page .rv-hero .rv-sort[aria-label="Review sorting"] {
    width: 880px !important;
    max-width: calc(100% - 32px) !important;
    display: flex !important;
    margin: 0 auto 28px !important;
}

.rv-page .rv-hero .rv-sort-link,
.rv-hero .rv-sort-link,
.rv-sort-link,
.rv-page .rv-hero .rv-sort[aria-label="Review sorting"] .rv-sort-link {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    padding: 11px 28px !important;
    white-space: nowrap !important;
}

@media (max-width: 768px) {
    .rv-page .rv-hero .rv-sort,
    .rv-hero .rv-sort,
    .rv-sort,
    .rv-page .rv-hero .rv-sort[aria-label="Review sorting"] {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: auto !important;
        justify-content: flex-start !important;
    }

    .rv-page .rv-hero .rv-sort-link,
    .rv-hero .rv-sort-link,
    .rv-sort-link,
    .rv-page .rv-hero .rv-sort[aria-label="Review sorting"] .rv-sort-link {
        flex: 0 0 auto !important;
        min-width: auto !important;
        padding: 8px 16px !important;
    }
}

/* __RA_SORT_LABELS_NATURAL_8M__ — final: Reviews sort tabs use true Labels natural content width */
.rv-page .rv-hero .rv-sort,
.rv-hero .rv-sort,
.rv-sort,
.rv-page .rv-hero .rv-sort[aria-label="Review sorting"] {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0 !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: calc(100% - 32px) !important;
    margin: 0 auto 28px !important;
    padding: 0 !important;
    background: var(--bp-surface) !important;
    border: 1px solid var(--bp-border) !important;
    border-radius: var(--bp-radius-sm) !important;
    overflow: hidden !important;
    box-shadow: none !important;
}

.rv-page .rv-hero .rv-sort-link,
.rv-hero .rv-sort-link,
.rv-sort-link,
.rv-page .rv-hero .rv-sort[aria-label="Review sorting"] .rv-sort-link {
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    padding: 11px 28px !important;
    font-size: 0.88rem !important;
    font-weight: 600 !important;
    line-height: 1.25 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: var(--bp-text-secondary) !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    box-shadow: none !important;
    transform: none !important;
}

.rv-page .rv-hero .rv-sort-link.rv-sort-link--active,
.rv-hero .rv-sort-link.rv-sort-link--active,
.rv-sort .rv-sort-link.rv-sort-link--active,
.rv-page .rv-hero .rv-sort[aria-label="Review sorting"] .rv-sort-link.rv-sort-link--active {
    background: var(--bp-accent-dim) !important;
    color: var(--bp-accent) !important;
    font-weight: 600 !important;
}

@media (max-width: 768px) {
    .rv-page .rv-hero .rv-sort,
    .rv-hero .rv-sort,
    .rv-sort,
    .rv-page .rv-hero .rv-sort[aria-label="Review sorting"] {
        display: flex !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: auto !important;
        justify-content: flex-start !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
    }

    .rv-page .rv-hero .rv-sort::-webkit-scrollbar,
    .rv-hero .rv-sort::-webkit-scrollbar,
    .rv-sort::-webkit-scrollbar {
        display: none !important;
    }

    .rv-page .rv-hero .rv-sort-link,
    .rv-hero .rv-sort-link,
    .rv-sort-link,
    .rv-page .rv-hero .rv-sort[aria-label="Review sorting"] .rv-sort-link {
        flex: 0 0 auto !important;
        padding: 8px 16px !important;
        font-size: 0.8rem !important;
    }

    .rv-page .rv-hero .rv-sort-link:not(:last-child)::after,
    .rv-hero .rv-sort-link:not(:last-child)::after,
    .rv-sort-link:not(:last-child)::after {
        display: none !important;
    }
}

/* __RA_HERO_RHYTHM_8N__ — final vertical rhythm: subtitle/tabs/stats/cards */
.rv-page .rv-hero .rv-sort,
.rv-hero .rv-sort,
.rv-sort,
.rv-page .rv-hero .rv-sort[aria-label="Review sorting"] {
    margin-top: 16px !important;
    margin-bottom: 18px !important;
}

.rv-page .rv-context-bar,
.rv-context-bar {
    margin-top: 0 !important;
    margin-bottom: 34px !important;
}

.rv-page .rv-reviews,
.rv-page .rv-reviews-grid,
.rv-page .rv-grid,
.rv-page .rv-cards,
.rv-page .rv-list {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.rv-page .rv-context-emoji {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-right: 6px !important;
    opacity: 0.9 !important;
}

@media (max-width: 768px) {
    .rv-page .rv-hero .rv-sort,
    .rv-hero .rv-sort,
    .rv-sort,
    .rv-page .rv-hero .rv-sort[aria-label="Review sorting"] {
        margin-top: 14px !important;
        margin-bottom: 16px !important;
    }

    .rv-page .rv-context-bar,
    .rv-context-bar {
        margin-bottom: 26px !important;
    }
}

/* __RA_HERO_COMPACT_8O__ — compact Reviews hero rhythm, reduce empty gap before cards */
.rv-page .rv-hero {
    padding-bottom: 36px !important;
    margin-bottom: 0 !important;
}

.rv-page .rv-hero .rv-sort,
.rv-hero .rv-sort,
.rv-sort,
.rv-page .rv-hero .rv-sort[aria-label="Review sorting"] {
    margin-top: 18px !important;
    margin-bottom: 16px !important;
}

.rv-page .rv-context-bar,
.rv-context-bar {
    margin-top: 0 !important;
    margin-bottom: 22px !important;
    font-size: 0.94rem !important;
    line-height: 1.25 !important;
    opacity: 1 !important;
}

.rv-page .rv-context-item,
.rv-context-item {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.rv-page .rv-context-emoji,
.rv-context-emoji {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0.95 !important;
    filter: none !important;
}

.rv-page .rv-context-bar strong,
.rv-context-bar strong {
    color: var(--bp-accent) !important;
    font-weight: 700 !important;
}

.rv-page .rv-context-sep,
.rv-context-sep {
    margin: 0 10px !important;
    opacity: 0.45 !important;
}

/* Pull the first reviews section closer to the hero stats */
.rv-page .rv-main,
.rv-page main,
.rv-page .rv-section,
.rv-page .rv-results,
.rv-page .rv-reviews,
.rv-page .rv-reviews-grid,
.rv-page .rv-grid,
.rv-page .rv-cards,
.rv-page .rv-list {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.rv-page .rv-card:first-child,
.rv-page .rv-grid .rv-card:nth-child(1),
.rv-page .rv-reviews-grid .rv-card:nth-child(1) {
    margin-top: 0 !important;
}

@media (max-width: 768px) {
    .rv-page .rv-hero {
        padding-bottom: 28px !important;
    }

    .rv-page .rv-context-bar,
    .rv-context-bar {
        margin-bottom: 18px !important;
        font-size: 0.88rem !important;
    }
}

/* __RA_PUBLIC_NUMBER_FRONT_12B1_CSS__ — clean public review sequence number */
.rv-page .rv-card-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 22px;
    padding: 3px 8px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.035);
    color: var(--bp-text-secondary);
    font-size: 0.72rem;
    font-weight: 750;
    letter-spacing: .035em;
    line-height: 1;
    white-space: nowrap;
}


/* ============================================================
   RA SHARE 1C — Reviews copy-link button + toast
   Pattern: Labels share button, rv-* namespace.
   Sentinel: __RA_SHARE_1C_CARD_SHARE_UI__
   ============================================================ */
.rv-page .rv-card {
    position: relative;
}

.rv-page .rv-card-share {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;
    padding: 0;

    border: 1px solid rgba(255,255,255,0.075);
    border-radius: 16px;
    background: rgba(255,255,255,0.018);
    color: rgba(232,236,242,0.46);

    cursor: pointer;
    transition:
        border-color 0.18s ease,
        background 0.18s ease,
        color 0.18s ease,
        transform 0.18s ease,
        box-shadow 0.18s ease;
}

.rv-page .rv-card-share:hover,
.rv-page .rv-card-share:focus-visible {
    border-color: rgba(110,168,255,0.32);
    background: rgba(74,158,255,0.10);
    color: rgba(111,231,255,0.95);
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.22);
    outline: none;
}

.rv-page .rv-card-share svg {
    width: 18px;
    height: 18px;
    pointer-events: none;
}

.rv-page .rv-card:has(.rv-card-share) .rv-review-text {
    padding-right: 54px;
}

.rv-page .rv-card--deep-linked {
    animation: rv-share-deep-pulse 2.4s ease forwards;
}

@keyframes rv-share-deep-pulse {
    0% {
        border-color: rgba(111,231,255,0.70);
        box-shadow: 0 0 0 0 rgba(74,158,255,0.42), 0 12px 34px rgba(0,0,0,0.30);
    }
    34% {
        border-color: rgba(111,231,255,0.52);
        box-shadow: 0 0 0 10px rgba(74,158,255,0.16), 0 12px 34px rgba(0,0,0,0.30);
    }
    100% {
        border-color: rgba(255,255,255,0.075);
        box-shadow: none;
    }
}

.rv-toast {
    position: fixed !important;
    left: 50% !important;
    bottom: max(28px, env(safe-area-inset-bottom, 0px) + 18px) !important;
    transform: translateX(-50%) translateY(18px) !important;
    z-index: 2147483000 !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    min-width: 168px !important;
    max-width: calc(100vw - 32px) !important;
    padding: 12px 20px !important;

    border: 1px solid rgba(110,168,255,0.24) !important;
    border-radius: 14px !important;
    background: rgba(19, 24, 34, 0.96) !important;
    color: rgba(245,248,255,0.94) !important;

    font-size: 13px !important;
    font-weight: 650 !important;
    letter-spacing: -0.01em !important;
    line-height: 1.2 !important;
    text-align: center !important;
    white-space: nowrap !important;

    box-shadow: 0 18px 44px rgba(0,0,0,0.42), inset 0 1px 0 rgba(255,255,255,0.06) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;

    transition:
        opacity 0.18s ease,
        visibility 0.18s ease,
        transform 0.18s ease !important;
}

.rv-toast.visible {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-50%) translateY(0) !important;
}

@media (max-width: 640px) {
    .rv-page .rv-card-share {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
        border-radius: 14px;
    }

    .rv-page .rv-card-share svg {
        width: 16px;
        height: 16px;
    }

    .rv-page .rv-card:has(.rv-card-share) .rv-review-text {
        padding-right: 46px;
    }

    .rv-toast {
        bottom: max(22px, env(safe-area-inset-bottom, 0px) + 14px) !important;
        min-width: 150px !important;
        padding: 12px 18px !important;
        font-size: 13px !important;
    }
}
/* /__RA_SHARE_1C_CARD_SHARE_UI__ */

/* ============================================================
   RA SHARE 1D — Compact review share button
   Reason: 1C button was visually too large for review cards.
   Sentinel: __RA_SHARE_1D_COMPACT_BUTTON__
   ============================================================ */
.rv-page .rv-card-share {
    top: 16px !important;
    right: 16px !important;
    width: 28px !important;
    height: 28px !important;
    border-radius: 9px !important;
    background: rgba(255,255,255,0.014) !important;
}

.rv-page .rv-card-share svg {
    width: 13px !important;
    height: 13px !important;
}

.rv-page .rv-card:has(.rv-card-share) .rv-review-text {
    padding-right: 36px !important;
}

@media (max-width: 640px) {
    .rv-page .rv-card-share {
        top: 14px !important;
        right: 14px !important;
        width: 26px !important;
        height: 26px !important;
        border-radius: 8px !important;
    }

    .rv-page .rv-card-share svg {
        width: 12px !important;
        height: 12px !important;
    }

    .rv-page .rv-card:has(.rv-card-share) .rv-review-text {
        padding-right: 34px !important;
    }
}
/* /__RA_SHARE_1D_COMPACT_BUTTON__ */

/* ============================================================
   RA SHARE 1E — Dark enterprise toast style
   Reason: copy toast must match Bumaga dark UI, not blue-fill style.
   Sentinel: __RA_SHARE_1E_DARK_TOAST__
   ============================================================ */
.rv-toast {
    min-width: 178px !important;
    padding: 11px 18px !important;

    border: 1px solid rgba(255,255,255,0.10) !important;
    border-radius: 14px !important;

    background:
        linear-gradient(180deg, rgba(31,31,31,0.98), rgba(18,18,18,0.98)) !important;
    color: rgba(245,248,255,0.92) !important;

    font-size: 13px !important;
    font-weight: 650 !important;
    letter-spacing: -0.01em !important;

    box-shadow:
        0 18px 48px rgba(0,0,0,0.48),
        inset 0 1px 0 rgba(255,255,255,0.06) !important;
}

.rv-toast::before {
    content: "";
    width: 7px;
    height: 7px;
    margin-right: 9px;
    border-radius: 999px;
    background: rgba(111,231,255,0.88);
    box-shadow: 0 0 14px rgba(111,231,255,0.18);
    flex: 0 0 auto;
}

@media (max-width: 640px) {
    .rv-toast {
        min-width: 162px !important;
        padding: 10px 16px !important;
        border-radius: 13px !important;
        font-size: 12.5px !important;
    }

    .rv-toast::before {
        width: 6px;
        height: 6px;
        margin-right: 8px;
    }
}
/* /__RA_SHARE_1E_DARK_TOAST__ */

/* ============================================================
   RA SHARE 1G — Exact Labels P19A toast style for Reviews
   Reason: previous RA 1E toast was not matching Labels visual language.
   Source pattern: labels.css P19A_LABELS_COPY_TOAST_VISIBILITY_FIX
   Sentinel: __RA_SHARE_1G_LABELS_TOAST_EXACT__
   ============================================================ */
.rv-toast {
    position: fixed !important;
    left: 50% !important;
    bottom: max(28px, env(safe-area-inset-bottom, 0px) + 18px) !important;
    transform: translateX(-50%) translateY(18px) !important;
    z-index: 2147483000 !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    min-width: 168px !important;
    max-width: calc(100vw - 32px) !important;
    padding: 13px 22px !important;

    background: rgba(18, 18, 18, 0.98) !important;
    color: rgba(255, 255, 255, 0.96) !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    border-radius: 14px !important;

    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    letter-spacing: -0.01em !important;
    text-align: center !important;
    white-space: nowrap !important;

    box-shadow:
        0 18px 44px rgba(0, 0, 0, 0.62),
        inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
    backdrop-filter: blur(14px) saturate(130%) !important;
    -webkit-backdrop-filter: blur(14px) saturate(130%) !important;

    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition:
        opacity 0.18s ease,
        visibility 0.18s ease,
        transform 0.18s ease !important;
}

.rv-toast::before {
    content: none !important;
    display: none !important;
}

.rv-toast.visible {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-50%) translateY(0) !important;
}

@media (max-width: 640px) {
    .rv-toast {
        bottom: max(22px, env(safe-area-inset-bottom, 0px) + 14px) !important;
        min-width: 156px !important;
        padding: 12px 18px !important;
        border-radius: 13px !important;
        font-size: 13px !important;
    }
}
/* /__RA_SHARE_1G_LABELS_TOAST_EXACT__ */
