/* =========================================================
   VENTACTIVE
   PRODUCT REVIEWS
========================================================= */

.vcProductReviews {
    position: relative;
    padding:
        8px
        clamp(18px, 4vw, 70px)
        clamp(70px, 7vw, 110px);
}

.vcProductReviewsInner {
    width: min(1540px, 100%);
    margin: 0 auto;
}


/* =========================================================
   INTRO
========================================================= */

.vcProductReviewsIntro {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        auto;
    align-items: end;
    gap: 30px;
    margin-bottom: 26px;
}

.vcProductReviewsIntroCopy {
    max-width: 800px;
}

.vcProductReviewsEyebrow {
    display: block;
    margin-bottom: 8px;
    color: #7d96aa;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.vcProductReviewsIntro h2 {
    margin: 0;
    color: #123f68;
    font-family: "Inter", sans-serif;
    font-size:
        clamp(36px, 4.2vw, 62px);
    line-height: 0.97;
    letter-spacing: -0.045em;
}

.vcProductReviewsIntro h2 strong {
    display: block;
    color: #2a79ad;
}

.vcProductReviewsIntro p {
    max-width: 650px;
    margin: 14px 0 0;
    color: #7e92a4;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   MAIN REVIEW CTA
========================================================= */

.vcProductReviewMainCta {
    min-width: 240px;
    min-height: 62px;
    padding: 8px 8px 8px 16px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 14px;
    border: 1px solid rgba(22, 77, 124, 0.08);
    border-radius: 19px;
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.96),
            rgba(248,251,253,0.94)
        );
    color: #3a5d79;
    cursor: pointer;
    text-align: left;
    box-shadow:
        0 15px 34px rgba(22,65,99,0.07);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.vcProductReviewMainCta:hover {
    transform: translateY(-3px);
    border-color: rgba(36, 111, 165, 0.16);
    box-shadow:
        0 22px 42px rgba(22,65,99,0.1);
}

.vcProductReviewMainCta > span:first-child {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.vcProductReviewMainCta small {
    color: #91a2b0;
    font-size: 8px;
    font-weight: 750;
}

.vcProductReviewMainCta strong {
    margin-top: 2px;
    color: #315675;
    font-size: 11px;
}

.vcProductReviewMainCta > span:last-child {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background:
        linear-gradient(
            135deg,
            #174d78,
            #2d80b6
        );
    color: #ffffff;
    box-shadow:
        0 10px 22px rgba(23,78,120,0.16);
}

.vcProductReviewMainCta svg {
    width: 17px;
    height: 17px;
}


/* =========================================================
   DASHBOARD
========================================================= */

.vcProductReviewsDashboard {
    display: grid;
    grid-template-columns:
        minmax(290px, 0.76fr)
        minmax(0, 1.35fr);
    gap: 18px;
    margin-bottom: 20px;
}


/* =========================================================
   SCORE CARD
========================================================= */

.vcProductReviewScore {
    position: relative;
    overflow: hidden;
    min-height: 350px;
    padding:
        clamp(24px, 2.7vw, 38px);
    border-radius:
        clamp(28px, 3vw, 42px);
    background:
        linear-gradient(
            145deg,
            #123f68 0%,
            #1b5989 52%,
            #287daf 100%
        );
    color: #ffffff;
    box-shadow:
        0 30px 72px rgba(15,55,88,0.18);
    isolation: isolate;
}

.vcProductReviewScore::before {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    top: -150px;
    right: -140px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(107, 222, 195, 0.2),
            transparent 70%
        );
    pointer-events: none;
}

.vcProductReviewScore::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.12;
    background-image:
        linear-gradient(
            rgba(255,255,255,0.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.08) 1px,
            transparent 1px
        );
    background-size: 38px 38px;
}


/* =========================================================
   SCORE TOP
========================================================= */

.vcProductReviewScoreTop {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding-bottom: 18px;
    border-bottom:
        1px solid rgba(255,255,255,0.1);
}

.vcProductReviewScoreTop > span {
    color: rgba(255,255,255,0.58);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.vcProductReviewScoreTop small {
    color: rgba(255,255,255,0.45);
    font-size: 8px;
}


/* =========================================================
   AVERAGE
========================================================= */

.vcProductReviewAverage {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    gap: 7px;
    margin-top: 31px;
}

.vcProductReviewAverage strong {
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size:
        clamp(72px, 8vw, 108px);
    font-weight: 700;
    line-height: 0.82;
    letter-spacing: -0.065em;
}

.vcProductReviewAverage > span {
    margin-bottom: 8px;
    color: rgba(255,255,255,0.48);
    font-size: 13px;
    font-weight: 800;
}

.vcProductReviewAverageEmpty strong {
    color: rgba(255,255,255,0.7);
}

.vcProductReviewFirstLabel {
    position: relative;
    z-index: 2;
    display: block;
    margin-top: 10px;
    color: #a8ead9;
    font-size: 10px;
    font-weight: 850;
}

.vcProductReviewAverageStars {
    position: relative;
    z-index: 2;
    margin-top: 18px;
}

.vcProductReviewScore .vcProductStars {
    font-size: 18px;
    letter-spacing: 2px;
}

.vcProductReviewScore
.vcProductStarsBack {
    color: rgba(255,255,255,0.18);
}

.vcProductReviewScore
.vcProductStarsFront {
    color: #ffd46a;
}

.vcProductReviewScore > p {
    position: relative;
    z-index: 2;
    max-width: 310px;
    margin: 17px 0 0;
    color: rgba(255,255,255,0.56);
    font-size: 10px;
    line-height: 1.65;
}


/* =========================================================
   SCORE FOOT
========================================================= */

.vcProductReviewScoreFoot {
    position: absolute;
    z-index: 2;
    left:
        clamp(24px, 2.7vw, 38px);
    right:
        clamp(24px, 2.7vw, 38px);
    bottom:
        clamp(22px, 2vw, 30px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-top: 15px;
    border-top:
        1px solid rgba(255,255,255,0.1);
}

.vcProductReviewScoreFoot > span {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,0.43);
    font-size: 8px;
}

.vcProductReviewScoreFoot i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #6de0bd;
    box-shadow:
        0 0 0 5px rgba(109,224,189,0.1);
}


/* =========================================================
   DISTRIBUTION
========================================================= */

.vcProductReviewDistribution {
    min-width: 0;
    padding:
        clamp(24px, 2.8vw, 38px);
    border: 1px solid rgba(22,77,124,0.08);
    border-radius:
        clamp(28px, 3vw, 42px);
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.98),
            rgba(248,251,253,0.96)
        );
    box-shadow:
        0 28px 70px rgba(20,63,97,0.08);
}


/* =========================================================
   DISTRIBUTION HEAD
========================================================= */

.vcProductReviewDistributionHead {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 18px;
    border-bottom:
        1px solid rgba(22,77,124,0.08);
}

.vcProductReviewDistributionHead > div {
    min-width: 0;
}

.vcProductReviewDistributionHead
> div > span {
    display: block;
    color: #8ea1b0;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.vcProductReviewDistributionHead strong {
    display: block;
    margin-top: 3px;
    color: #315675;
    font-size: 14px;
}

.vcProductReviewDistributionIcon {
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: #eef5f9;
    color: #427596;
}

.vcProductReviewDistributionIcon svg {
    width: 21px;
    height: 21px;
}


/* =========================================================
   REVIEW BARS
========================================================= */

.vcProductReviewBars {
    display: grid;
    gap: 9px;
    margin-top: 23px;
}

.vcProductReviewBar {
    width: 100%;
    min-height: 44px;
    padding: 6px 8px;
    display: grid;
    grid-template-columns:
        52px
        minmax(0, 1fr)
        38px;
    align-items: center;
    gap: 11px;
    border: 0;
    border-radius: 13px;
    background: transparent;
    color: inherit;
    cursor: pointer;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.vcProductReviewBar:hover {
    transform: translateX(3px);
    background: #f6f9fb;
}

.vcProductReviewBar.is-active {
    background:
        linear-gradient(
            135deg,
            #edf6fc,
            #f7fbfd
        );
}

.vcProductReviewBarStar {
    display: flex;
    align-items: center;
    gap: 5px;
}

.vcProductReviewBarStar strong {
    color: #365d79;
    font-size: 11px;
}

.vcProductReviewBarStar > span {
    color: #f3b23b;
    font-size: 13px;
}

.vcProductReviewBarTrack {
    position: relative;
    width: 100%;
    height: 7px;
    overflow: hidden;
    border-radius: 999px;
    background: #e6edf2;
}

.vcProductReviewBarTrack > span {
    position: absolute;
    inset:
        0 auto
        0 0;
    border-radius: inherit;
    background:
        linear-gradient(
            90deg,
            #f2b23d,
            #f8cd69
        );
    transition:
        width 0.45s cubic-bezier(.2,.75,.3,1);
}

.vcProductReviewBarCount {
    color: #8fa0ae;
    text-align: right;
    font-size: 9px;
    font-weight: 800;
}

.vcProductReviewDistributionReset {
    min-height: 37px;
    margin-top: 16px;
    padding: 0 12px;
    border: 1px solid rgba(22,77,124,0.08);
    border-radius: 11px;
    background: #ffffff;
    color: #58758c;
    cursor: pointer;
    font: inherit;
    font-size: 8px;
    font-weight: 850;
}


/* =========================================================
   REVIEWS CONTENT
========================================================= */

.vcProductReviewsContent {
    min-width: 0;
    padding:
        clamp(24px, 2.8vw, 38px);
    border: 1px solid rgba(22,77,124,0.08);
    border-radius:
        clamp(28px, 3vw, 42px);
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.98),
            rgba(248,251,253,0.96)
        );
    box-shadow:
        0 28px 70px rgba(20,63,97,0.08);
}


/* =========================================================
   REVIEWS CONTENT HEAD
========================================================= */

.vcProductReviewsContentHead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 19px;
    padding-bottom: 18px;
    border-bottom:
        1px solid rgba(22,77,124,0.08);
}

.vcProductReviewsContentHead > div:first-child {
    display: flex;
    flex-direction: column;
}

.vcProductReviewsContentHead
> div:first-child > span {
    color: #8fa1af;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.vcProductReviewsContentHead
> div:first-child > strong {
    margin-top: 3px;
    color: #315675;
    font-size: 14px;
}


/* =========================================================
   REVIEW SORT
========================================================= */

.vcProductReviewsSort {
    position: relative;
    min-width: 185px;
}

.vcProductReviewsSort label {
    position: absolute;
    z-index: 2;
    left: 12px;
    top: 6px;
    color: #97a6b2;
    font-size: 6.5px;
    font-weight: 850;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    pointer-events: none;
}

.vcProductReviewsSort select {
    width: 100%;
    height: 47px;
    padding:
        15px 34px
        0 12px;
    appearance: none;
    border: 1px solid rgba(22,77,124,0.08);
    outline: 0;
    border-radius: 13px;
    background: #f8fbfd;
    color: #496a83;
    cursor: pointer;
    font: inherit;
    font-size: 9px;
    font-weight: 800;
}

.vcProductReviewsSort > svg {
    position: absolute;
    right: 11px;
    top: 50%;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
    color: #7d94a7;
    pointer-events: none;
}


/* =========================================================
   REVIEWS LIST
========================================================= */

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


/* =========================================================
   REVIEW CARD
========================================================= */

.vcProductReviewCard {
    position: relative;
    min-width: 0;
    padding: 18px;
    border: 1px solid rgba(22,77,124,0.07);
    border-radius: 21px;
    background: #ffffff;
    box-shadow:
        0 8px 20px rgba(22,65,99,0.035);
    transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease,
        opacity 0.2s ease;
}

.vcProductReviewCard:hover {
    transform: translateY(-3px);
    border-color: rgba(34,112,166,0.14);
    box-shadow:
        0 17px 36px rgba(22,65,99,0.075);
}

.vcProductReviewCard.is-filtered-out {
    display: none;
}


/* =========================================================
   AUTHOR
========================================================= */

.vcProductReviewAuthor {
    display: flex;
    align-items: center;
    gap: 11px;
}

.vcProductReviewAvatar {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background:
        linear-gradient(
            135deg,
            #eaf4fa,
            #f5f9fb
        );
    color: #2d6e9b;
    font-size: 10px;
    font-weight: 900;
}

.vcProductReviewAuthor > div:last-child {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.vcProductReviewAuthor strong {
    overflow: hidden;
    color: #345a76;
    font-size: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vcProductReviewAuthor span {
    margin-top: 2px;
    color: #98a7b3;
    font-size: 7.5px;
}


/* =========================================================
   CARD RATING
========================================================= */

.vcProductReviewCardRating {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 14px;
}

.vcProductReviewCardRating
.vcProductStars {
    font-size: 13px;
}

.vcProductReviewCardRating strong {
    color: #45657e;
    font-size: 9px;
}


/* =========================================================
   COMMENT
========================================================= */

.vcProductReviewComment {
    min-height: 84px;
    margin-top: 13px;
}

.vcProductReviewComment p {
    margin: 0;
    color: #657f92;
    font-size: 10.5px;
    line-height: 1.68;
}

.vcProductReviewNoComment {
    color: #9aa8b4 !important;
    font-style: italic;
}


/* =========================================================
   REVIEW FOOT
========================================================= */

.vcProductReviewCardFoot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 15px;
    padding-top: 12px;
    border-top:
        1px solid rgba(22,77,124,0.06);
}

.vcProductReviewVerified {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #43846e;
    font-size: 7px;
    font-weight: 800;
}

.vcProductReviewVerified svg {
    width: 14px;
    height: 14px;
}

.vcProductReviewCardFoot button {
    min-height: 30px;
    padding: 0 9px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: 1px solid rgba(22,77,124,0.07);
    border-radius: 9px;
    background: #ffffff;
    color: #617d92;
    cursor: pointer;
    font: inherit;
    font-size: 7.5px;
    font-weight: 800;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.vcProductReviewCardFoot button:hover {
    transform: translateY(-1px);
    background: #f7fafc;
    color: #286d9c;
}

.vcProductReviewCardFoot button.is-helpful {
    border-color: rgba(35,164,122,0.12);
    background: #eef9f5;
    color: #248567;
}

.vcProductReviewCardFoot button svg {
    width: 14px;
    height: 14px;
}


/* =========================================================
   FILTER EMPTY
========================================================= */

.vcProductReviewsFilterEmpty {
    min-height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}
.vcProductReviewsFilterEmpty[hidden] {
    display: none !important;
}

.vcProductReviewsFilterEmpty > span {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: #eef5f9;
    color: #567995;
}

.vcProductReviewsFilterEmpty svg {
    width: 25px;
    height: 25px;
}

.vcProductReviewsFilterEmpty strong {
    display: block;
    color: #365b76;
    font-size: 13px;
}

.vcProductReviewsFilterEmpty small {
    display: block;
    margin-top: 3px;
    color: #92a2af;
    font-size: 9px;
}


/* =========================================================
   EMPTY STATE
========================================================= */

.vcProductReviewsEmpty {
    min-height: 420px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.vcProductReviewsEmptyVisual {
    position: relative;
    width: 118px;
    height: 118px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            #ffffff,
            #eef5f9
        );
    color: #5b7f99;
    box-shadow:
        0 18px 40px rgba(22,65,99,0.08);
}

.vcProductReviewsEmptyVisual > span {
    position: absolute;
    inset: -10px;
    border: 1px dashed rgba(45,112,164,0.16);
    border-radius: 50%;
}

.vcProductReviewsEmptyVisual svg {
    width: 52px;
    height: 52px;
}

.vcProductReviewsEmpty > span {
    margin-top: 17px;
    color: #91a1ae;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.vcProductReviewsEmpty h3 {
    max-width: 500px;
    margin: 8px 0 0;
    color: #173f63;
    font-family: "Inter", sans-serif;
    font-size:
        clamp(28px, 3vw, 42px);
    line-height: 1;
}

.vcProductReviewsEmpty h3 strong {
    color: #2a79ad;
}

.vcProductReviewsEmpty p {
    max-width: 490px;
    margin: 12px 0 0;
    color: #8195a5;
    font-size: 10px;
    line-height: 1.65;
}

.vcProductReviewsEmpty button {
    min-height: 45px;
    margin-top: 17px;
    padding: 0 15px;
    border: 0;
    border-radius: 13px;
    background:
        linear-gradient(
            135deg,
            #174d78,
            #2d80b6
        );
    color: #ffffff;
    cursor: pointer;
    font: inherit;
    font-size: 9px;
    font-weight: 850;
    box-shadow:
        0 11px 24px rgba(23,78,120,0.17);
}


/* =========================================================
   REVIEW MODAL
========================================================= */

.vcProductReviewModal {
    position: fixed;
    z-index: 999999;
    inset: 0;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.vcProductReviewModal.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.vcProductReviewModalBackdrop {
    position: absolute;
    inset: 0;
    background: rgba(7,27,43,0.63);
    backdrop-filter: blur(14px);
}

.vcProductReviewModalPanel {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(570px, calc(100% - 30px));
    max-height: calc(100vh - 30px);
    overflow-y: auto;
    padding: 34px;
    border-radius: 30px;
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(61,153,214,0.09),
            transparent 30%
        ),
        #ffffff;
    box-shadow:
        0 36px 95px rgba(7,30,49,0.26);
    transform:
        translate(-50%, -46%)
        scale(0.97);
    transition:
        transform 0.38s cubic-bezier(.2,.75,.3,1);
}

.vcProductReviewModal.is-open
.vcProductReviewModalPanel {
    transform:
        translate(-50%, -50%)
        scale(1);
}


/* =========================================================
   REVIEW MODAL CLOSE
========================================================= */

.vcProductReviewModalClose {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(22,77,124,0.08);
    border-radius: 12px;
    background: #ffffff;
    color: #607d93;
    cursor: pointer;
    box-shadow:
        0 7px 18px rgba(22,65,99,0.05);
}

.vcProductReviewModalClose svg {
    width: 17px;
    height: 17px;
}


/* =========================================================
   REVIEW MODAL HEAD
========================================================= */

.vcProductReviewModalHead > span {
    color: #7b94a8;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.vcProductReviewModalHead h3 {
    max-width: 450px;
    margin: 8px 0 0;
    color: #173f63;
    font-family: "Inter", sans-serif;
    font-size:
        clamp(31px, 4vw, 45px);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.vcProductReviewModalHead h3 strong {
    display: block;
    color: #2a79ad;
}

.vcProductReviewModalHead p {
    max-width: 440px;
    margin: 11px 0 0;
    color: #8497a7;
    font-size: 10px;
    line-height: 1.6;
}


/* =========================================================
   REVIEW FORM
========================================================= */

.vcProductReviewForm {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}


/* =========================================================
   STAR SELECTOR
========================================================= */

.vcProductReviewRatingSelector {
    padding: 16px;
    border: 1px solid rgba(22,77,124,0.08);
    border-radius: 17px;
    background: #f8fbfd;
}

.vcProductReviewRatingSelector > span {
    display: block;
    color: #496b85;
    font-size: 9px;
    font-weight: 850;
}

.vcProductReviewRatingButtons {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 8px;
}

.vcProductReviewRatingButtons button {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 12px;
    background: #ffffff;
    color: #d8e1e8;
    cursor: pointer;
    font-size: 23px;
    line-height: 1;
    box-shadow:
        0 5px 14px rgba(22,65,99,0.04);
    transition:
        color 0.18s ease,
        background 0.18s ease,
        transform 0.18s ease;
}

.vcProductReviewRatingButtons button:hover,
.vcProductReviewRatingButtons button.is-hover,
.vcProductReviewRatingButtons button.is-selected {
    color: #f2b13b;
    background: #fffaf0;
}

.vcProductReviewRatingButtons button:hover {
    transform: translateY(-2px);
}

.vcProductReviewRatingSelector > strong {
    display: block;
    margin-top: 8px;
    color: #8799a8;
    font-size: 8px;
}


/* =========================================================
   REVIEW FIELDS
========================================================= */

.vcProductReviewField {
    display: grid;
    gap: 6px;
}

.vcProductReviewField label {
    color: #496b85;
    font-size: 9px;
    font-weight: 850;
}

.vcProductReviewField input,
.vcProductReviewField textarea {
    width: 100%;
    border: 1px solid rgba(22,77,124,0.09);
    outline: 0;
    border-radius: 15px;
    background: #f8fbfd;
    color: #294e6b;
    font: inherit;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.vcProductReviewField input {
    height: 48px;
    padding: 0 13px;
}

.vcProductReviewField textarea {
    min-height: 150px;
    padding: 13px;
    resize: vertical;
    line-height: 1.55;
}

.vcProductReviewField input:focus,
.vcProductReviewField textarea:focus {
    background: #ffffff;
    border-color: rgba(40,119,174,0.28);
    box-shadow:
        0 0 0 4px rgba(40,119,174,0.07);
}

.vcProductReviewFieldFoot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #9aa8b4;
    font-size: 7px;
}

.vcProductReviewFieldFoot strong {
    color: #53728a;
}


/* =========================================================
   REVIEW SUBMIT
========================================================= */

.vcProductReviewSubmit {
    min-height: 58px;
    padding: 7px 8px 7px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border: 0;
    border-radius: 17px;
    background:
        linear-gradient(
            135deg,
            #174d78,
            #2d80b6
        );
    color: #ffffff;
    cursor: pointer;
    box-shadow:
        0 14px 28px rgba(23,78,120,0.18);
}

.vcProductReviewSubmit > span:first-child {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.vcProductReviewSubmit small {
    color: rgba(255,255,255,0.6);
    font-size: 7px;
}

.vcProductReviewSubmit strong {
    margin-top: 2px;
    font-size: 10px;
}

.vcProductReviewSubmit > span:last-child {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: rgba(255,255,255,0.12);
}

.vcProductReviewSubmit svg {
    width: 16px;
    height: 16px;
}


/* =========================================================
   REVIEW MODAL FOOT
========================================================= */

.vcProductReviewModalFoot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 18px;
    padding-top: 14px;
    border-top:
        1px solid rgba(22,77,124,0.07);
}

.vcProductReviewModalFoot > span:first-child {
    color: #7d93a5;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.vcProductReviewModalFoot > span:last-child {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #8e9eaa;
    font-size: 7.5px;
}

.vcProductReviewModalFoot i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #31c596;
    box-shadow:
        0 0 0 4px rgba(49,197,150,0.09);
}


/* =========================================================
   BODY MODAL STATE
========================================================= */

body.vcProductReviewModalOpen {
    overflow: hidden;
}


/* =========================================================
   RESPONSIVE 900
========================================================= */

@media (max-width: 900px) {

    .vcProductReviews {
        padding-left: 18px;
        padding-right: 18px;
    }

    .vcProductReviewsDashboard {
        grid-template-columns:
            minmax(270px, 0.7fr)
            minmax(0, 1.3fr);
    }

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

}


/* =========================================================
   RESPONSIVE 720
========================================================= */

@media (max-width: 720px) {

    .vcProductReviews {
        padding:
            6px 12px
            55px;
    }

    .vcProductReviewsIntro {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .vcProductReviewsIntro h2 {
        font-size: 35px;
    }

    .vcProductReviewMainCta {
        width: 100%;
        min-width: 0;
    }

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

    .vcProductReviewScore,
    .vcProductReviewDistribution,
    .vcProductReviewsContent {
        border-radius: 27px;
    }

    .vcProductReviewScore {
        min-height: 330px;
        padding: 24px 20px;
    }

    .vcProductReviewScoreFoot {
        left: 20px;
        right: 20px;
    }

    .vcProductReviewDistribution {
        padding: 22px 18px;
    }

    .vcProductReviewsContent {
        padding: 20px 16px;
    }

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

    .vcProductReviewsSort {
        width: 100%;
    }

    .vcProductReviewCard {
        padding: 15px;
        border-radius: 18px;
    }

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

    .vcProductReviewModalPanel {
        width: calc(100% - 20px);
        padding: 28px 18px 22px;
        border-radius: 25px;
    }

}


/* =========================================================
   RESPONSIVE 430
========================================================= */

@media (max-width: 430px) {

    .vcProductReviews {
        padding-left: 8px;
        padding-right: 8px;
    }

    .vcProductReviewsIntro {
        padding-left: 8px;
        padding-right: 8px;
    }

    .vcProductReviewsIntro h2 {
        font-size: 31px;
    }

    .vcProductReviewsIntro p {
        font-size: 12px;
    }

    .vcProductReviewAverage strong {
        font-size: 78px;
    }

    .vcProductReviewBar {
        grid-template-columns:
            46px
            minmax(0, 1fr)
            30px;
        gap: 8px;
    }

    .vcProductReviewRatingButtons button {
        width: 39px;
        height: 39px;
        font-size: 21px;
    }

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

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.vcProductReviewMainCta:focus-visible,
.vcProductReviewBar:focus-visible,
.vcProductReviewDistributionReset:focus-visible,
.vcProductReviewsSort select:focus-visible,
.vcProductReviewCardFoot button:focus-visible,
.vcProductReviewsEmpty button:focus-visible,
.vcProductReviewModalClose:focus-visible,
.vcProductReviewRatingButtons button:focus-visible,
.vcProductReviewField input:focus-visible,
.vcProductReviewField textarea:focus-visible,
.vcProductReviewSubmit:focus-visible {
    outline:
        3px solid
        rgba(45,133,192,0.28);
    outline-offset: 3px;
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .vcProductReviewMainCta,
    .vcProductReviewBar,
    .vcProductReviewCard,
    .vcProductReviewCardFoot button,
    .vcProductReviewModal,
    .vcProductReviewModalPanel,
    .vcProductReviewRatingButtons button {
        transition: none !important;
    }

}

/* =========================================================
   REVIEW SUCCESS
========================================================= */

body.vcReviewSuccessOpen {
    overflow: hidden;
}


.vcReviewSuccess {
    position: fixed;
    inset: 0;
    z-index: 999999;

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

    padding: 28px;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity .3s ease,
        visibility .3s ease;
}


.vcReviewSuccess[hidden] {
    display: none !important;
}


.vcReviewSuccess.is-open {
    opacity: 1;
    visibility: visible;
}


.vcReviewSuccessBackdrop {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(5, 46, 72, .92),
            rgba(18, 54, 73, .72)
        );

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}


.vcReviewSuccessCard {
    position: relative;
    z-index: 2;

    width: min(100%, 650px);

    padding: 58px 58px 38px;

    border-radius: 42px;

    background:
        radial-gradient(
            circle at 90% 5%,
            rgba(224, 242, 252, .8),
            transparent 32%
        ),
        #fff;

    box-shadow:
        0 40px 100px rgba(3, 35, 55, .24);

    transform:
        translateY(24px)
        scale(.97);

    transition:
        transform .38s
        cubic-bezier(.2, .8, .2, 1);
}


.vcReviewSuccess.is-open
.vcReviewSuccessCard {
    transform:
        translateY(0)
        scale(1);
}


/* CLOSE */

.vcReviewSuccessClose {
    position: absolute;

    top: 24px;
    right: 24px;

    width: 58px;
    height: 58px;

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

    border: 0;
    border-radius: 18px;

    background: #fff;

    color: #56748a;

    box-shadow:
        0 10px 30px rgba(9, 49, 74, .08);

    cursor: pointer;

    transition:
        transform .2s ease,
        background .2s ease;
}


.vcReviewSuccessClose:hover {
    transform: rotate(5deg);
    background: #f4f9fc;
}


.vcReviewSuccessClose svg {
    width: 23px;
    height: 23px;
}


/* ICON */

.vcReviewSuccessIcon {
    width: 78px;
    height: 78px;

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

    margin-bottom: 28px;

    border-radius: 25px;

    color: #f2a11c;

    background:
        linear-gradient(
            145deg,
            #fff8e8,
            #fff1cf
        );

    box-shadow:
        0 18px 40px rgba(242, 161, 28, .16);
}


.vcReviewSuccessIcon svg {
    width: 40px;
    height: 40px;
}


/* COPY */

.vcReviewSuccessEyebrow {
    display: block;

    margin-bottom: 10px;

    color: #7892a6;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: .16em;
}


.vcReviewSuccessCard h2 {
    margin: 0;

    max-width: 520px;

    color: #0d4974;

    font-size: clamp(
        38px,
        5vw,
        58px
    );

    line-height: .98;
}


.vcReviewSuccessCard h2 strong {
    display: block;

    color: #2782b6;
}


.vcReviewSuccessCard > p {
    margin:
        22px 0 30px;

    max-width: 520px;

    color: #718ca0;

    font-size: 16px;
    line-height: 1.65;
}


/* INFO */

.vcReviewSuccessInfo {
    display: flex;
    align-items: center;

    gap: 15px;

    padding: 18px 20px;

    margin-bottom: 24px;

    border:
        1px solid
        rgba(24, 104, 153, .12);

    border-radius: 20px;

    background: #f6fafc;
}


.vcReviewSuccessInfoIcon {
    flex: 0 0 auto;

    width: 40px;
    height: 40px;

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

    border-radius: 13px;

    background: #e8f7f2;

    color: #24a57c;

    font-weight: 900;
}


.vcReviewSuccessInfo small,
.vcReviewSuccessInfo strong {
    display: block;
}


.vcReviewSuccessInfo small {
    margin-bottom: 3px;

    color: #8ba0af;

    font-size: 11px;

    text-transform: uppercase;
    letter-spacing: .1em;
}


.vcReviewSuccessInfo strong {
    color: #174e72;

    font-size: 14px;
}


/* BUTTON */

.vcReviewSuccessButton {
    width: 100%;

    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding:
        14px
        15px
        14px
        25px;

    border: 0;
    border-radius: 24px;

    background:
        linear-gradient(
            110deg,
            #155681,
            #2f8bc0
        );

    color: #fff;

    cursor: pointer;

    box-shadow:
        0 20px 45px
        rgba(21, 86, 129, .2);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}


.vcReviewSuccessButton:hover {
    transform:
        translateY(-2px);

    box-shadow:
        0 25px 50px
        rgba(21, 86, 129, .27);
}


.vcReviewSuccessButton small,
.vcReviewSuccessButton strong {
    display: block;
    text-align: left;
}


.vcReviewSuccessButton small {
    margin-bottom: 2px;

    opacity: .72;

    font-size: 11px;
}


.vcReviewSuccessButton strong {
    font-size: 17px;
}


.vcReviewSuccessButtonArrow {
    width: 56px;
    height: 56px;

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

    border-radius: 18px;

    background:
        rgba(255, 255, 255, .14);
}


.vcReviewSuccessButtonArrow svg {
    width: 23px;
    height: 23px;
}


/* FOOTER */

.vcReviewSuccessFooter {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-top: 27px;
    padding-top: 22px;

    border-top:
        1px solid
        rgba(21, 86, 129, .1);

    color: #8099aa;

    font-size: 11px;

    letter-spacing: .12em;
}


.vcReviewSuccessVerified {
    display: flex;
    align-items: center;

    gap: 8px;

    letter-spacing: 0;
}


.vcReviewSuccessVerified i {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #2dc398;

    box-shadow:
        0 0 0 6px
        rgba(45, 195, 152, .11);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 650px) {

    .vcReviewSuccess {
        padding: 16px;
    }


    .vcReviewSuccessCard {
        padding:
            48px
            24px
            26px;

        border-radius: 30px;
    }


    .vcReviewSuccessClose {
        top: 16px;
        right: 16px;

        width: 48px;
        height: 48px;

        border-radius: 15px;
    }


    .vcReviewSuccessIcon {
        width: 64px;
        height: 64px;

        border-radius: 20px;
    }


    .vcReviewSuccessCard h2 {
        padding-right: 10px;

        font-size: 38px;
    }


    .vcReviewSuccessCard > p {
        font-size: 14px;
    }


    .vcReviewSuccessButton {
        min-height: 72px;

        border-radius: 20px;
    }


    .vcReviewSuccessButtonArrow {
        width: 48px;
        height: 48px;

        border-radius: 15px;
    }


    .vcReviewSuccessFooter {
        align-items: flex-start;
        flex-direction: column;

        gap: 12px;
    }

}


.vcProductReviewHelpfulCount {
    min-width: 20px;
    height: 20px;

    padding: 0 6px;

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

    border-radius: 999px;

    background:
        rgba(22, 77, 124, 0.07);

    color: inherit;

    font-size: 7px;
    font-weight: 900;
    line-height: 1;
}


.vcProductReviewHelpfulCount[hidden] {
    display: none !important;
}


[data-vc-review-helpful].is-helpful
.vcProductReviewHelpfulCount {
    background:
        rgba(35, 164, 122, 0.11);
}