/* TON 618 Product Reviews */
.ton618-pr {
    --pr-accent: #040D1A;
    --pr-ink: #040D1A;
    --pr-muted: #666666;
    --pr-border: #e6e0dc;
    padding: 60px 62px 20px;
    background: #f7f4f0;
    color: var(--pr-ink);
}

.ton618-pr__inner {
    width: min(1600px, 100%);
    margin: 0 auto;
}

/* =========================================================
   TOOLBAR / SUMMARY
========================================================= */

.ton618-pr__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 12px;
}

.ton618-pr__summary,
.ton618-pr__toolbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ton618-pr__summary-stars,
.ton618-pr-card__stars {
    display: flex;
    align-items: center;
    gap: 2px;
    color: var(--pr-accent);
    line-height: 1;
}

.ton618-pr__summary-stars {
    font-size: 20px;
}

.ton618-pr__summary-stars .is-empty,
.ton618-pr-card__stars .is-empty {
    color: transparent;
    -webkit-text-stroke: 1px var(--pr-accent);
}

.ton618-pr__count {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: 0;
    background: none;
    color: var(--pr-ink);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.12px;
    cursor: pointer;
}

.ton618-pr__count-caret {
    width: 8px;
    height: 8px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
}

.ton618-pr__write {
    min-height: 44px;
    padding: 0 20px;
    border: none;
    background: transparent;
    color: var(--pr-ink);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 300;
    cursor: pointer;
    transition: border-color .2s ease, background-color .2s ease;
}

.ton618-pr__sort {
    position: relative;
    display: block;
}

.ton618-pr__sort::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    width: 8px;
    height: 8px;
    border-right: 1px solid var(--pr-ink);
    border-bottom: 1px solid var(--pr-ink);
    pointer-events: none;
    transform: translateY(-70%) rotate(45deg);
}

.ton618-pr__sort select {
    width: 100%;
    height: 44px;
    padding: 0px 0px 0 15px;
    border: none;
    border-radius: 0;
    outline: 0;
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    color: var(--pr-ink);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    transition: border-color .2s ease, background-color .2s ease;
}

/* =========================================================
   REVIEWS GRID — 4 × 5
========================================================= */

.ton618-pr__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.ton618-pr-card {
    position: relative;
    min-width: 0;
    height: 185px;
    min-height: 185px;
    padding: 28px 28px 24px;
    background: #ffffff;
    color: #000000;
    box-sizing: border-box;
    overflow: visible;
    isolation: isolate;
}

.ton618-pr-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: #ffffff;
    box-shadow:
        0 18px 42px rgba(4, 13, 26, 0.12),
        0 4px 12px rgba(4, 13, 26, 0.06);
    opacity: 0;
    transform: scale(0.985);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
}

.ton618-pr-card:hover::before {
    opacity: 1;
    transform: scale(1);
}

.ton618-pr-card__head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-right: 0;
}

.ton618-pr-card.has-images .ton618-pr-card__head {
    padding-right: calc((var(--review-image-count, 1) * 44px) + 8px);
}

.ton618-pr-card__author-row {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 4px;
}

.ton618-pr-card__author {
    min-width: 0;
    overflow: hidden;
    color: #666666;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.18px;
    text-transform: uppercase;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ton618-pr-verified {
    width: 15px;
    height: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 15px;
    color: var(--pr-accent);
    font-size: 0;
    line-height: 0;
}

.ton618-pr-verified svg {
    width: 12px;
    height: 12px;
    display: block;
}

.ton618-pr-card__stars {
    margin: 0;
    font-size: 14px;
}

.ton618-pr-card__text {
    display: -webkit-box;
    margin: 20px 0 0;
    padding: 0 0 18px;
    overflow: hidden;
    color: #000000;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.ton618-pr-card__text p {
    margin: 0;
}

.ton618-pr-card time {
    position: absolute;
    left: 28px;
    bottom: 16px;
    color: #8a8175;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 300;
    line-height: 1;
    letter-spacing: .3px;
}

.ton618-pr-card__images {
    position: absolute;
    top: 29px;
    right: 28px;
    display: flex;
    align-items: flex-start;
    gap: 4px;
    margin: 0;
}

.ton618-pr-card__image {
    width: 40px;
    height: 50px;
    padding: 0;
    border: 0;
    background: #f7f4f0;
    cursor: zoom-in;
    overflow: hidden;
}

.ton618-pr-card__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.ton618-pr__empty {
    padding: 40px 20px;
    text-align: center;
    color: var(--pr-muted);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
}

.ton618-pr__more-wrap {
    margin-top: 42px;
    text-align: center;
}

.ton618-pr__more-wrap[hidden] {
    display: none;
}

.ton618-pr__more {
    min-width: 250px;
    min-height: 52px;
    padding: 0 28px;
    border: 1px solid var(--pr-ink);
    background: transparent;
    color: var(--pr-ink);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 300;
    line-height: 1;
    letter-spacing: .48px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color .25s ease, color .25s ease;
}

.ton618-pr__more:hover {
    background: var(--pr-ink);
    color: #fff;
}

.ton618-pr__more:disabled {
    opacity: .55;
    pointer-events: none;
}

/* =========================================================
   MULTI-STEP REVIEW FORM MODAL
========================================================= */

.ton618-pr-modal,
.ton618-pr-lightbox {
    position: fixed;
    inset: 0;
    z-index: 30000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .22s ease, visibility .22s ease;
}

.ton618-pr-modal.is-active,
.ton618-pr-lightbox.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.ton618-pr-modal__overlay,
.ton618-pr-lightbox__overlay {
    position: absolute;
    inset: 0;
    background: rgba(4, 13, 26, .52);
}

.ton618-pr-modal {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
}

.ton618-pr-modal__window {
    position: relative;
    z-index: 2;
    width: min(650px, 100%);
    height: min(590px, calc(100dvh - 56px));
    background: #ffffff;
    color: var(--pr-ink);
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(4, 13, 26, .18);
}

.ton618-pr-modal__close,
.ton618-pr-lightbox__close {
    position: absolute;
    z-index: 12;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--pr-ink);
    cursor: pointer;
}

.ton618-pr-modal__close {
    top: 18px;
    right: 18px;
}

.ton618-pr-modal__close::before,
.ton618-pr-modal__close::after,
.ton618-pr-lightbox__close::before,
.ton618-pr-lightbox__close::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 24px;
    height: 1px;
    background: currentColor;
}

.ton618-pr-modal__close::before,
.ton618-pr-lightbox__close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.ton618-pr-modal__close::after,
.ton618-pr-lightbox__close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.ton618-pr-form {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 0;
    font-family: var(--font-body);
}

.ton618-pr-form__steps {
    position: relative;
    flex: 1 1 auto;
    width: 100%;
    height: 100%;
    min-height: 0;
    overflow-y: auto;
    scrollbar-width: thin;
}

.ton618-pr-form__step {
    width: 100%;
    height: 100%;
    min-height: 100%;
    animation: ton618ReviewStepIn 0.26s ease both;
}

.ton618-pr-form__step[hidden] {
    display: none !important;
}

.ton618-pr-form__step-content {
    width: 100%;
    height: 100%;
    min-height: 100%;
    padding: 72px 62px 34px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    box-sizing: border-box;
}

.ton618-pr-form__step-content--rating,
.ton618-pr-form__step-content--success {
    align-items: center;
    text-align: center;
}

@keyframes ton618ReviewStepIn {
    from {
        opacity: 0;
        transform: translateX(14px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


.ton618-pr-form__header {
    max-width: 510px;
    margin: 0 auto 36px;
    text-align: center;
}

.ton618-pr-form__eyebrow {
    display: block;
    margin-bottom: 14px;
    color: var(--pr-muted);
    font-size: 10px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.ton618-pr-form h2 {
    margin: 0;
    color: var(--pr-ink);
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
    line-height: 1.06;
    letter-spacing: -.8px;
}

.ton618-pr-form__header p,
.ton618-pr-form__step-content--success > p {
    margin: 16px auto 0;
    max-width: 420px;
    color: var(--pr-muted);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5;
    letter-spacing: .32px;
}

/* Step 1: rating */
.ton618-pr-form__rating {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 4px 0 16px;
}

.ton618-pr-form__star {
    width: 56px;
    height: 56px;
    padding: 0;
    border: 0;
    background: transparent;
    color: transparent;
    -webkit-text-stroke: 1.4px var(--pr-accent);
    font-size: 50px;
    line-height: 1;
    cursor: pointer;
    transition: color .18s ease, transform .18s ease;
}

.ton618-pr-form__star:hover,
.ton618-pr-form__star:focus-visible {
    transform: scale(1.06);
    outline: none;
}

.ton618-pr-form__star.is-active {
    color: var(--pr-accent);
}

.ton618-pr-form__rating-labels {
    width: 100%;
    max-width: 330px;
    display: flex;
    justify-content: space-between;
    color: var(--pr-muted);
    font-size: 11px;
    font-weight: 300;
    letter-spacing: .28px;
}

/* Step 2: photos */
.ton618-pr-form__upload {
    flex: 1 1 auto;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 32px;
    border: 1px dashed #cfc8bf;
    background: #f7f4f0;
    text-align: center;
    cursor: pointer;
    box-sizing: border-box;
    transition: border-color .2s ease, background-color .2s ease;
}

.ton618-pr-form__upload:hover {
    border-color: var(--pr-ink);
    background: #f7f4f0;
}

.ton618-pr-form__upload input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.ton618-pr-form__upload-icon {
    width: 34px;
    height: 34px;
    color: var(--pr-accent);
}

.ton618-pr-form__upload-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.ton618-pr-form__upload-button {
    min-width: 150px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border: 1px solid var(--pr-ink);
    background: var(--pr-ink);
    color: #ffffff;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: .48px;
    text-transform: uppercase;
}

.ton618-pr-form__upload small {
    max-width: 340px;
    color: var(--pr-muted);
    font-size: 11px;
    line-height: 1.45;
}

.ton618-pr-form__previews {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
}

.ton618-pr-form__preview {
    position: relative;
    width: 72px;
    height: 82px;
    border: 1px solid var(--pr-border);
    background: #f7f4f0;
    overflow: hidden;
}

.ton618-pr-form__preview img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.ton618-pr-form__preview button {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 22px;
    height: 22px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .9);
    color: var(--pr-ink);
    font-size: 16px;
    line-height: 20px;
    cursor: pointer;
}

/* Step 3: review text */
.ton618-pr-form__review {
    display: block;
}

.ton618-pr-form textarea {
    width: 100%;
    min-height: 220px;
    padding: 18px;
    border: 1px solid var(--pr-border);
    border-radius: 0;
    background: #f7f4f0;
    color: var(--pr-ink);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.55;
    letter-spacing: .3px;
    resize: none;
    box-sizing: border-box;
    transition: border-color .2s ease;
}

.ton618-pr-form textarea:focus {
    outline: none;
    border-color: var(--pr-ink);
}

.ton618-pr-form__character-count {
    margin-top: 8px;
    color: var(--pr-muted);
    font-size: 11px;
    text-align: right;
}

.ton618-pr-form__character-count.is-valid {
    color: var(--pr-accent);
}

/* Step 4: contact data */
.ton618-pr-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ton618-pr-form label:not(.ton618-pr-form__upload):not(.ton618-pr-form__review) {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--pr-ink);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: .36px;
}

.ton618-pr-form label em {
    color: #b53b32;
    font-style: normal;
}

.ton618-pr-form input[type="text"],
.ton618-pr-form input[type="email"] {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border: 1px solid var(--pr-border);
    border-radius: 0;
    background: #f7f4f0;
    color: var(--pr-ink);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    box-sizing: border-box;
    transition: border-color .2s ease;
}

.ton618-pr-form input[type="text"]:focus,
.ton618-pr-form input[type="email"]:focus {
    outline: none;
    border-color: var(--pr-ink);
}

.ton618-pr-form__legal {
    margin: 6px 0 0;
    color: var(--pr-muted);
    font-size: 10px;
    font-weight: 300;
    line-height: 1.55;
    letter-spacing: .22px;
}

.ton618-pr-form__legal a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Step 5: success */
.ton618-pr-form__success-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 26px;
    color: var(--pr-accent);
}

.ton618-pr-form__success-icon svg {
    width: 100%;
    height: 100%;
    display: block;
    stroke-width: 1.4;
}

.ton618-pr-form__done {
    min-width: 180px;
    min-height: 48px;
    margin-top: 30px;
    padding: 0 24px;
    border: 1px solid var(--pr-ink);
    background: var(--pr-ink);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: .48px;
    text-transform: uppercase;
    cursor: pointer;
}

/* Shared footer */
.ton618-pr-form__footer {
    flex: 0 0 78px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    padding: 0 32px;
    border-top: 1px solid var(--pr-border);
    background: #f7f4f0;
    box-sizing: border-box;
}

.ton618-pr-form__footer[hidden] {
    display: none !important;
}

.ton618-pr-form__footer-button {
    width: max-content;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--pr-ink);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: .36px;
    cursor: pointer;
}

.ton618-pr-form__footer-button.is-back {
    justify-self: start;
}

.ton618-pr-form__footer-button.is-back span {
    margin-right: 7px;
}

.ton618-pr-form__footer-button.is-next {
    justify-self: end;
    text-transform: uppercase;
}

.ton618-pr-form__footer-button:disabled {
    opacity: .32;
    cursor: not-allowed;
}

.ton618-pr-form__progress {
    display: flex;
    align-items: center;
    gap: 5px;
}

.ton618-pr-form__progress span {
    width: 32px;
    height: 2px;
    background: #ded8d0;
    transition: background-color .2s ease;
}

.ton618-pr-form__progress span.is-complete,
.ton618-pr-form__progress span.is-active {
    background: var(--pr-accent);
}

.ton618-pr-form__notice {
    position: absolute;
    left: 32px;
    right: 32px;
    bottom: 88px;
    z-index: 8;
    margin: 0;
    padding: 11px 14px;
    border: 1px solid transparent;
    background: #ffffff;
    font-size: 12px;
    line-height: 1.4;
    box-shadow: 0 8px 24px rgba(4, 13, 26, .08);
}

.ton618-pr-form__notice[hidden] {
    display: none !important;
}

.ton618-pr-form__notice.is-error {
    border-color: #e5c5c2;
    background: #fff7f6;
    color: #9f2f27;
}

.ton618-pr-form__notice.is-success {
    border-color: #bed4c2;
    background: #f4fbf5;
    color: #1b6a2e;
}

.ton618-pr-form__hp {
    position: absolute !important;
    left: -9999px !important;
}

/* Lightbox */
.ton618-pr-lightbox {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.ton618-pr-lightbox > img {
    position: relative;
    z-index: 2;
    max-width: min(1000px, calc(100vw - 60px));
    max-height: calc(100dvh - 60px);
    object-fit: contain;
}

.ton618-pr-lightbox__close {
    top: 18px;
    right: 18px;
    color: #fff;
}

body.ton618-pr-modal-open {
    overflow: hidden;
}

@media (max-width: 1199px) {
    .ton618-pr {
        padding-right: 24px;
        padding-left: 24px;
    }

    .ton618-pr__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    /* =====================================================
       REVIEWS SECTION
    ===================================================== */

    .ton618-pr {
        padding: 40px 18px 40px;
    }

/* =====================================================
   TOOLBAR — MOBILE
===================================================== */

.ton618-pr__toolbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 36px;
    grid-template-areas:
        "summary sort"
        "write write";
    align-items: center;
    gap: 14px 12px;
    margin-bottom: 28px;
}

.ton618-pr__toolbar-actions {
    display: contents;
}

.ton618-pr__summary {
    grid-area: summary;
    width: auto;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 7px;
}

.ton618-pr__summary-stars {
    flex: 0 0 auto;
    font-size: 14px;
}

.ton618-pr__count {
    min-width: 0;
    gap: 6px;
    font-size: 14px;
    white-space: nowrap;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -1px;
    color: #000000;
}

.ton618-pr__sort {
    grid-area: sort;
    position: relative;
    width: 36px;
    height: 36px;
    min-width: 36px;
    display: block;
    border: 1px solid var(--pr-border);
    background: #f7f4f0;
    box-sizing: border-box;
}

.ton618-pr__sort::after {
    display: none;
}

.ton618-pr__sort::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 17px;
    height: 17px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23040D1A' stroke-width='1.7' stroke-linecap='round'%3E%3Cpath d='M4 7h16M4 12h16M4 17h16'/%3E%3Ccircle cx='9' cy='7' r='2' fill='%23fff'/%3E%3Ccircle cx='15' cy='12' r='2' fill='%23fff'/%3E%3Ccircle cx='10' cy='17' r='2' fill='%23fff'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.ton618-pr__sort select {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    opacity: 0;
    cursor: pointer;
}

.ton618-pr__write {
	grid-area: write;
        width: 100%;
        min-width: 0;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 18px;
        border: 1px solid var(--pr-border);
        background: #f7f4f0;
        color: var(--pr-ink);
        font-size: 14px;
        font-weight: 400;
        letter-spacing: 0.42px;
        text-transform: uppercase;
        box-sizing: border-box;
}

    /* =====================================================
       REVIEWS GRID — 2 CARDS PER ROW
    ===================================================== */

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

    .ton618-pr-card {
        position: relative;
        width: 100%;
        min-width: 0;
        height: auto;
        min-height: 175px;
        padding: 14px 12px 30px;
        overflow: hidden;
    }

    .ton618-pr-card__head {
        width: 100%;
        gap: 7px;
        padding-right: 0;
    }

    .ton618-pr-card__author-row {
        width: 100%;
        min-width: 0;
        gap: 3px;
    }

    .ton618-pr-card__author {
        max-width: calc(100% - 17px);
        font-size: 12px;
        line-height: 1.15;
        letter-spacing: 0.18px;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }

    .ton618-pr-verified {
        width: 13px;
        height: 13px;
        flex: 0 0 13px;
    }

    .ton618-pr-verified svg {
        width: 11px;
        height: 11px;
    }

    .ton618-pr-card__stars {
        gap: 1px;
        font-size: 11px;
    }

    .ton618-pr-card__text {
        margin-top: 10px;
        padding: 0;
        font-size: 12px;
        font-weight: 300;
        line-height: 1.3;
        letter-spacing: 0.08px;
        -webkit-line-clamp: 5;
    }

    .ton618-pr-card time {
        left: 12px;
        bottom: 10px;
        font-size: 8px;
        letter-spacing: 0.08px;
    }

    /* Фото у правому верхньому куті картки */
    .ton618-pr-card.has-images .ton618-pr-card__head {
        padding-right: 34px;
    }

    .ton618-pr-card__images {
        top: 12px;
        right: 10px;
        gap: 2px;
    }

    .ton618-pr-card__image {
        width: 28px;
        height: 34px;
    }

    /* На вузькій картці показуємо лише перше фото */
    .ton618-pr-card__image:not(:first-child) {
        display: none;
    }

    /* =====================================================
       LOAD MORE
    ===================================================== */

    .ton618-pr__more-wrap {
        margin-top: 30px;
    }

    .ton618-pr__more {
        width: 100%;
        min-width: 0;
    }

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

    .ton618-pr-modal {
        padding: 0;
    }

    .ton618-pr-modal__window {
        width: 100vw;
        height: 100dvh;
        max-height: none;
        box-shadow: none;
    }

    .ton618-pr-modal__close {
        position: fixed;
        top: 14px;
        right: 14px;
    }

    .ton618-pr-form__step-content {
        width: 100%;
        height: 100%;
        min-height: 100%;
        padding: 72px 20px 26px;
        justify-content: center;
        background: #f7f4f0;
    }

    .ton618-pr-form__header {
        margin-bottom: 30px;
    }

    .ton618-pr-form h2 {
        font-size: 28px;
    }

    .ton618-pr-form__header p,
    .ton618-pr-form__step-content--success > p {
        font-size: 13px;
    }

    .ton618-pr-form__rating {
        gap: 5px;
    }

    .ton618-pr-form__star {
        width: 48px;
        height: 48px;
        font-size: 43px;
    }

    .ton618-pr-form__rating-labels {
        max-width: 282px;
    }

    .ton618-pr-form__upload {
        flex: 0 0 auto;
        width: 100%;
        min-height: 210px;
        padding: 24px 18px;
    }

    .ton618-pr-form textarea {
        min-height: 250px;
    }

    .ton618-pr-form__row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .ton618-pr-form__footer {
        flex-basis: 100px;
        gap: 8px;
        padding: 0 20px;
    }

    .ton618-pr-form__footer-button {
        font-size: 12px;
    }

    .ton618-pr-form__progress {
        gap: 3px;
    }

    .ton618-pr-form__progress span {
        width: 22px;
    }

    .ton618-pr-form__notice {
        left: 16px;
        right: 16px;
        bottom: 80px;
    }
}

/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {
    .ton618-pr {
        padding-right: 7px;
        padding-left: 7px;
    }

    .ton618-pr__grid {
        gap: 7px;
    }

    .ton618-pr-card {
        min-height: 170px;
        padding-right: 9px;
        padding-left: 9px;
    }

    .ton618-pr-card__author {
        font-size: 9px;
    }

    .ton618-pr-card__stars {
        font-size: 10px;
    }

    .ton618-pr-card__text {
        font-size: 10px;
    }

    .ton618-pr-card time {
        left: 9px;
    }

    .ton618-pr-card__images {
        right: 8px;
    }
}

/* =========================================================
   RATING DISTRIBUTION POPOVER
========================================================= */

.ton618-pr__distribution-wrap {
    position: relative;
    z-index: 40;
}

.ton618-pr__count:disabled {
    cursor: default;
    opacity: .55;
}

.ton618-pr__count-caret {
    transition: transform .2s ease;
}

.ton618-pr__count.is-open .ton618-pr__count-caret {
    transform: translateY(2px) rotate(225deg);
}

.ton618-pr-distribution {
    position: absolute;
    left: 0;
    top: calc(100% + 16px);
    z-index: 100;
    width: 360px;
    padding: 24px;
    border: 1px solid var(--pr-border);
    background: #ffffff;
    box-shadow:
        0 22px 48px rgba(4, 13, 26, .12),
        0 5px 14px rgba(4, 13, 26, .05);
    box-sizing: border-box;
}

.ton618-pr-distribution[hidden] {
    display: none;
}

.ton618-pr-distribution::before {
    content: "";
    position: absolute;
    left: 34px;
    top: -7px;
    width: 13px;
    height: 13px;
    border-top: 1px solid var(--pr-border);
    border-left: 1px solid var(--pr-border);
    background: #ffffff;
    transform: rotate(45deg);
}

.ton618-pr-distribution__average {
    display: flex;
    align-items: baseline;
    gap: 7px;
    margin: 0 0 20px;
    color: var(--pr-ink);
    font-family: var(--font-heading);
    line-height: 1;
}

.ton618-pr-distribution__average-star {
    color: var(--pr-accent);
    font-size: 22px;
}

.ton618-pr-distribution__average strong {
    font-size: 30px;
    font-weight: 400;
    letter-spacing: -1px;
}

.ton618-pr-distribution__average > span:last-child {
    color: var(--pr-muted);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: .36px;
}

.ton618-pr-distribution__rows {
    display: grid;
    gap: 4px;
}

.ton618-pr-distribution__row {
    width: 100%;
    min-height: 38px;
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr) 28px;
    align-items: center;
    gap: 12px;
    padding: 6px 8px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--pr-ink);
    cursor: pointer;
    text-align: left;
    transition: background-color .2s ease;
}

.ton618-pr-distribution__row:hover,
.ton618-pr-distribution__row.is-selected {
    background: #f7f4f0;
}

.ton618-pr-distribution__row.is-selected {
    box-shadow: inset 2px 0 0 var(--pr-accent);
}

.ton618-pr-distribution__row:focus-visible {
    outline: 1px solid var(--pr-accent);
    outline-offset: 1px;
}

.ton618-pr-distribution__row:disabled {
    opacity: .32;
    cursor: default;
    pointer-events: none;
}

.ton618-pr-distribution__stars {
    display: flex;
    align-items: center;
    gap: 1px;
    color: var(--pr-accent);
    font-size: 14px;
    line-height: 1;
    white-space: nowrap;
}

.ton618-pr-distribution__stars .is-empty {
    color: transparent;
    -webkit-text-stroke: 1px var(--pr-accent);
}

.ton618-pr-distribution__progress {
    width: 100%;
    height: 4px;
    display: block;
    overflow: hidden;
    background: #e9e4de;
}

.ton618-pr-distribution__progress > span {
    height: 100%;
    display: block;
    background: var(--pr-accent);
}

.ton618-pr-distribution__count {
    color: var(--pr-muted);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 300;
    line-height: 1;
    text-align: right;
}

@media (max-width: 767px) {
    .ton618-pr__distribution-wrap {
        position: static;
    }

    .ton618-pr-distribution {
        position: fixed;
        left: 14px;
        right: 14px;
        top: 50%;
        width: auto;
        max-width: 420px;
        margin: 0 auto;
        padding: 22px 18px;
        transform: translateY(-50%);
        box-shadow: 0 24px 64px rgba(4, 13, 26, .22);
    }

    .ton618-pr-distribution::before {
        display: none;
    }

    .ton618-pr-distribution__row {
        grid-template-columns: 88px minmax(0, 1fr) 24px;
        gap: 10px;
        padding-right: 6px;
        padding-left: 6px;
    }
}

.ton618-pr-distribution__overlay {
    display: none;
}

@media (max-width: 767px) {
    .ton618-pr-distribution__overlay:not([hidden]) {
        position: fixed;
        inset: 0;
        z-index: 90;
        display: block;
        background: rgba(4, 13, 26, .34);
    }

    .ton618-pr-distribution {
        z-index: 100;
    }
}

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

.ton618-pr-card {
    cursor: pointer;
}

.ton618-pr-card:focus-visible {
    outline: 1px solid var(--pr-accent);
    outline-offset: 3px;
}

.ton618-pr-card__image {
    pointer-events: none;
    cursor: pointer;
}

.ton618-pr-card__data {
    display: none !important;
}

/* =========================================================
   REVIEW DETAIL MODAL — DESKTOP
========================================================= */

.ton618-pr-detail-modal {
    position: fixed;
    inset: 0;
    z-index: 32000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, visibility .25s ease;
}

.ton618-pr-detail-modal.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.ton618-pr-detail-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .42);
}

.ton618-pr-detail-modal__window {
    position: relative;
    z-index: 2;
    width: 1048px;
    max-width: calc(100vw - 80px);
    height: 560px;
    max-height: calc(100vh - 80px);
    color: #000;
    overflow: visible;
}

.ton618-pr-detail-modal__close {
    position: absolute;
    top: 22px;
    right: 22px;
    z-index: 10;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #000;
    cursor: pointer;
}

.ton618-pr-detail-modal__close::before,
.ton618-pr-detail-modal__close::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 25px;
    height: 1px;
    background: currentColor;
}

.ton618-pr-detail-modal__close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.ton618-pr-detail-modal__close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.ton618-pr-detail-modal__layout {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    height: 100%;
    min-height: 0;
}

.ton618-pr-detail-modal__layout.has-media {
    grid-template-columns: 1fr 1fr;
}

.ton618-pr-detail-modal__media {
    position: relative;
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #000;
    overflow: hidden;
}

.ton618-pr-detail-modal__layout.has-media .ton618-pr-detail-modal__media {
    display: flex;
}

.ton618-pr-detail-modal__media > img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.ton618-pr-detail-modal__media-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
    transform: translateY(-50%);
    opacity: .86;
}

.ton618-pr-detail-modal__media-arrow:hover {
    opacity: 1;
}

.ton618-pr-detail-modal__media-arrow.is-prev {
    left: 18px;
}

.ton618-pr-detail-modal__media-arrow.is-next {
    right: 18px;
}

.ton618-pr-detail-modal__media-arrow::before,
.ton618-pr-detail-modal__nav button::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 11px;
    height: 11px;
    background: currentColor;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l7 7-7 7' fill='none' stroke='%23000' stroke-width='1.4'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l7 7-7 7' fill='none' stroke='%23000' stroke-width='1.4'/%3E%3C/svg%3E");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    transform: translate(-50%, -50%);
}

.ton618-pr-detail-modal__media-arrow.is-prev::before,
.ton618-pr-detail-modal__nav button:first-child::before {
    transform: translate(-50%, -50%) rotate(180deg);
}

.ton618-pr-detail-modal__content {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    min-height: 0;
    background: #fff;
}

.ton618-pr-detail-modal__main {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    padding: 32px 44px 24px 32px;
}

.ton618-pr-detail-modal__customer {
    padding: 0 44px 22px 0;
}

.ton618-pr-detail-modal__name {
    margin: 0 0 6px;
    color: #000;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: .48px;
    text-transform: uppercase;
}

.ton618-pr-detail-modal__verified {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
    color: #000;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.1;
}

.ton618-pr-detail-modal__verified[hidden] {
    display: none;
}

.ton618-pr-detail-modal__verified .ton618-pr-verified svg {
    width: 14px;
    height: 14px;
}

.ton618-pr-detail-modal__separator {
    width: 100%;
    height: 1px;
    margin: 0 0 24px;
    background: #e6e0dc;
}

.ton618-pr-detail-modal__rating-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 0 0 15px;
}

.ton618-pr-detail-modal__stars .ton618-pr-card__stars {
    gap: 4px;
    font-size: 17px;
}

.ton618-pr-detail-modal__date {
    color: #000;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 300;
    line-height: 1;
    letter-spacing: .36px;
}

.ton618-pr-detail-modal__text {
    max-width: 430px;
    color: #000;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.45;
    white-space: pre-line;
}

.ton618-pr-detail-modal__layout:not(.has-media) .ton618-pr-detail-modal__text {
    max-width: 720px;
}

.ton618-pr-detail-modal__thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.ton618-pr-detail-modal__thumbs[hidden] {
    display: none;
}

.ton618-pr-detail-modal__thumb {
    width: 50px;
    height: 64px;
    padding: 0;
    border: 1px solid transparent;
    background: #f7f4f0;
    cursor: pointer;
    overflow: hidden;
}

.ton618-pr-detail-modal__thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.ton618-pr-detail-modal__product {
    margin-top: auto;
    padding-top: 24px;
    color: #666;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 300;
}

.ton618-pr-detail-modal__product a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.ton618-pr-detail-modal__footer {
    min-height: 58px;
    padding: 0 32px 26px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.ton618-pr-detail-modal__nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ton618-pr-detail-modal__nav button {
    position: relative;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid #e6e0dc;
    border-radius: 50%;
    background: #fff;
    color: #000;
    cursor: pointer;
}

.ton618-pr-detail-modal__nav button:hover {
    border-color: rgba(0, 0, 0, .28);
}

.ton618-pr-detail-modal button:disabled {
    opacity: .35;
    pointer-events: none;
}

/* =========================================================
   REVIEW DETAIL MODAL — MOBILE
========================================================= */

@media (max-width: 767px) {
    .ton618-pr-detail-modal {
        width: 100vw;
        height: 100dvh;
        padding: 0;
        align-items: stretch;
        justify-content: stretch;
    }

    .ton618-pr-detail-modal__window {
        width: 100vw;
        max-width: none;
        height: 100dvh;
        max-height: none;
        overflow-y: auto;
        overflow-x: hidden;
        background: #fff;
    }

    .ton618-pr-detail-modal__close {
		position: fixed;
        top: 14px;
        right: 14px;
        z-index: 50;
        width: 36px;
        height: 36px;
        padding: 0;
        border: 0;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.35);
        backdrop-filter: blur(2px);
    }

    .ton618-pr-detail-modal__layout,
    .ton618-pr-detail-modal__layout.has-media {
        display: block;
        width: 100%;
        height: auto;
        min-height: 100dvh;
    }

    .ton618-pr-detail-modal__layout.has-media .ton618-pr-detail-modal__media {
        display: flex;
    }

    .ton618-pr-detail-modal__media {
        width: 100vw;
        min-height: 360px;
        max-height: 520px;
    }

    .ton618-pr-detail-modal__content {
        min-height: auto;
    }

    .ton618-pr-detail-modal__main {
        padding: 20px;
    }

    .ton618-pr-detail-modal__customer {
        padding-right: 44px;
        padding: 0 44px 12px 0;
    }

    .ton618-pr-detail-modal__text,
    .ton618-pr-detail-modal__layout:not(.has-media) .ton618-pr-detail-modal__text {
        max-width: none;
        font-size: 16px;
    }

    .ton618-pr-detail-modal__footer {
        padding: 0 20px 28px;
    }

    .ton618-pr-detail-modal__nav button {
        width: 42px;
        height: 42px;
    }
}



/* =========================================================
   TON 618 PRODUCT REVIEWS — LARGE / ULTRA-WIDE
   1620px → стандартні розміри
   3875px → максимальні розміри
========================================================= */

@media (min-width: 1620px) {

    .ton618-pr {
        /*
         * Єдина шкала шрифтів для секції.
         */

        --pr-ultra-xs: clamp(
            10px,
            calc(4.25px + 0.355vw),
            18px
        );

        --pr-ultra-small: clamp(
            11px,
            calc(4.53px + 0.399vw),
            20px
        );

        --pr-ultra-label: clamp(
            12px,
            calc(3.38px + 0.532vw),
            24px
        );

        --pr-ultra-body: clamp(
            14px,
            calc(6.82px + 0.443vw),
            24px
        );

        /*
         * Горизонтально завжди 64px,
         * щоб секція починалася на рівні хедера.
         */

        padding:
            clamp(
                60px,
                calc(31.26px + 1.774vw),
                100px
            )
            64px
            clamp(
                20px,
                calc(9.94px + 0.621vw),
                34px
            );
    }

    /*
     * Прибираємо обмеження 1600px.
     * На великому екрані сітка використовує
     * всю доступну ширину між відступами 64px.
     */

    .ton618-pr__inner {
        width: 100%;
        max-width: none;
    }


    /* =====================================================
       TOOLBAR
    ===================================================== */

    .ton618-pr__toolbar {
        gap: clamp(
            24px,
            calc(12.51px + 0.71vw),
            40px
        );

        margin-bottom: clamp(
            12px,
            calc(6.25px + 0.355vw),
            20px
        );
    }

    .ton618-pr__summary,
    .ton618-pr__toolbar-actions {
        gap: clamp(
            12px,
            calc(6.25px + 0.355vw),
            20px
        );
    }

    .ton618-pr__summary-stars {
        font-size: clamp(
            20px,
            calc(9.94px + 0.621vw),
            34px
        );
    }

    .ton618-pr__count {
        gap: clamp(
            8px,
            calc(3.69px + 0.266vw),
            14px
        );

        font-size: var(--pr-ultra-body);
    }

    .ton618-pr__count-caret {
        width: clamp(
            8px,
            calc(3.69px + 0.266vw),
            14px
        );

        height: clamp(
            8px,
            calc(3.69px + 0.266vw),
            14px
        );
    }


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

    .ton618-pr__write {
        min-height: clamp(
            44px,
            calc(23.88px + 1.242vw),
            72px
        );

        padding-right: clamp(
            20px,
            calc(9.94px + 0.621vw),
            34px
        );

        padding-left: clamp(
            20px,
            calc(9.94px + 0.621vw),
            34px
        );

        font-size: var(--pr-ultra-label);
    }

    .ton618-pr__sort select {
        height: clamp(
            44px,
            calc(23.88px + 1.242vw),
            72px
        );

        padding-right: clamp(
            34px,
            calc(17.47px + 1.02vw),
            57px
        );

        padding-left: clamp(
            15px,
            calc(8.53px + 0.399vw),
            24px
        );

        font-size: var(--pr-ultra-label);
    }

    .ton618-pr__sort::after {
        right: clamp(
            15px,
            calc(8.53px + 0.399vw),
            24px
        );

        width: clamp(
            8px,
            calc(3.69px + 0.266vw),
            14px
        );

        height: clamp(
            8px,
            calc(3.69px + 0.266vw),
            14px
        );
    }


    /* =====================================================
       REVIEWS GRID
    ===================================================== */

    .ton618-pr__grid {
        gap: clamp(
            20px,
            calc(9.94px + 0.621vw),
            34px
        );
    }


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

    .ton618-pr-card {
        height: clamp(
            185px,
            calc(88.02px + 5.987vw),
            320px
        );

        min-height: clamp(
            185px,
            calc(88.02px + 5.987vw),
            320px
        );

        padding:
            clamp(
                28px,
                calc(13.63px + 0.887vw),
                48px
            )
            clamp(
                28px,
                calc(13.63px + 0.887vw),
                48px
            )
            clamp(
                24px,
                calc(11.07px + 0.798vw),
                42px
            );
    }

    .ton618-pr-card::before {
        box-shadow:
            0
            clamp(
                18px,
                calc(7.94px + 0.621vw),
                32px
            )
            clamp(
                42px,
                calc(21.88px + 1.242vw),
                70px
            )
            rgba(4, 13, 26, 0.12),

            0
            clamp(
                4px,
                calc(1.84px + 0.133vw),
                7px
            )
            clamp(
                12px,
                calc(6.25px + 0.355vw),
                20px
            )
            rgba(4, 13, 26, 0.06);
    }

    .ton618-pr-card__head {
        gap: clamp(
            10px,
            calc(4.25px + 0.355vw),
            18px
        );
    }

    /*
     * Залишаємо місце справа під фото відгуку.
     */

    .ton618-pr-card.has-images
    .ton618-pr-card__head {
        padding-right: clamp(
            52px,
            calc(29.01px + 1.419vw),
            84px
        );
    }


    /* =====================================================
       CARD AUTHOR / VERIFIED / STARS
    ===================================================== */

    .ton618-pr-card__author-row {
        gap: clamp(
            4px,
            calc(1.84px + 0.133vw),
            7px
        );
    }

    .ton618-pr-card__author {
        font-size: var(--pr-ultra-label);
        line-height: 1.1;
    }

    .ton618-pr-verified {
        width: clamp(
            15px,
            calc(7.10px + 0.488vw),
            26px
        );

        height: clamp(
            15px,
            calc(7.10px + 0.488vw),
            26px
        );

        flex-basis: clamp(
            15px,
            calc(7.10px + 0.488vw),
            26px
        );
    }

    .ton618-pr-verified svg {
        width: clamp(
            12px,
            calc(6.25px + 0.355vw),
            20px
        );

        height: clamp(
            12px,
            calc(6.25px + 0.355vw),
            20px
        );
    }

    .ton618-pr-card__stars {
        gap: clamp(
            2px,
            calc(0.56px + 0.089vw),
            4px
        );

        font-size: var(--pr-ultra-body);
    }


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

    .ton618-pr-card__text {
        margin-top: clamp(
            20px,
            calc(9.94px + 0.621vw),
            34px
        );

        padding-bottom: clamp(
            18px,
            calc(7.94px + 0.621vw),
            32px
        );

        font-size: var(--pr-ultra-body);
        line-height: 1.4;
    }

    .ton618-pr-card time {
        left: clamp(
            28px,
            calc(13.63px + 0.887vw),
            48px
        );

        bottom: clamp(
            16px,
            calc(7.38px + 0.532vw),
            28px
        );

        font-size: var(--pr-ultra-xs);
    }


    /* =====================================================
       REVIEW IMAGES
    ===================================================== */

    .ton618-pr-card__images {
        top: clamp(
            29px,
            calc(13.91px + 0.931vw),
            50px
        );

        right: clamp(
            28px,
            calc(13.63px + 0.887vw),
            48px
        );

        gap: clamp(
            4px,
            calc(1.84px + 0.133vw),
            7px
        );
    }

    .ton618-pr-card__image {
        width: clamp(
            40px,
            calc(19.88px + 1.242vw),
            68px
        );

        height: clamp(
            50px,
            calc(25.57px + 1.508vw),
            84px
        );
    }


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

    .ton618-pr__empty {
        padding:
            clamp(
                40px,
                calc(19.88px + 1.242vw),
                68px
            )
            clamp(
                20px,
                calc(9.94px + 0.621vw),
                34px
            );

        font-size: var(--pr-ultra-body);
    }


    /* =====================================================
       LOAD MORE
    ===================================================== */

    .ton618-pr__more-wrap {
        margin-top: clamp(
            42px,
            calc(21.88px + 1.242vw),
            70px
        );
    }

    .ton618-pr__more {
        min-width: clamp(
            250px,
            calc(127.87px + 7.539vw),
            420px
        );

        min-height: clamp(
            52px,
            calc(29.01px + 1.419vw),
            84px
        );

        padding-right: clamp(
            28px,
            calc(13.63px + 0.887vw),
            48px
        );

        padding-left: clamp(
            28px,
            calc(13.63px + 0.887vw),
            48px
        );

        font-size: var(--pr-ultra-label);
    }


    /* =====================================================
       RATING DISTRIBUTION POPOVER
    ===================================================== */

    .ton618-pr-distribution {
        top: calc(
            100% +
            clamp(
                16px,
                calc(7.38px + 0.532vw),
                28px
            )
        );

        width: clamp(
            360px,
            calc(187.58px + 10.643vw),
            600px
        );

        padding: clamp(
            24px,
            calc(12.51px + 0.71vw),
            40px
        );
    }

    .ton618-pr-distribution::before {
        left: clamp(
            34px,
            calc(17.47px + 1.02vw),
            57px
        );

        top: clamp(
            -12px,
            calc(-3.41px - 0.222vw),
            -7px
        );

        width: clamp(
            13px,
            calc(6.53px + 0.399vw),
            22px
        );

        height: clamp(
            13px,
            calc(6.53px + 0.399vw),
            22px
        );
    }

    .ton618-pr-distribution__average {
        gap: clamp(
            7px,
            calc(3.41px + 0.222vw),
            12px
        );

        margin-bottom: clamp(
            20px,
            calc(9.94px + 0.621vw),
            34px
        );
    }

    .ton618-pr-distribution__average-star {
        font-size: clamp(
            22px,
            calc(10.51px + 0.71vw),
            38px
        );
    }

    .ton618-pr-distribution__average strong {
        font-size: clamp(
            30px,
            calc(15.63px + 0.887vw),
            50px
        );
    }

    .ton618-pr-distribution__average
    > span:last-child {
        font-size: var(--pr-ultra-label);
    }

    .ton618-pr-distribution__rows {
        gap: clamp(
            4px,
            calc(1.84px + 0.133vw),
            7px
        );
    }

    .ton618-pr-distribution__row {
        min-height: clamp(
            38px,
            calc(19.32px + 1.153vw),
            64px
        );

        grid-template-columns:
            clamp(
                92px,
                calc(50.33px + 2.572vw),
                150px
            )
            minmax(0, 1fr)
            clamp(
                28px,
                calc(15.07px + 0.798vw),
                46px
            );

        gap: clamp(
            12px,
            calc(6.25px + 0.355vw),
            20px
        );

        padding:
            clamp(
                6px,
                calc(3.13px + 0.177vw),
                10px
            )
            clamp(
                8px,
                calc(3.69px + 0.266vw),
                14px
            );
    }

    .ton618-pr-distribution__stars {
        font-size: var(--pr-ultra-body);
    }

    .ton618-pr-distribution__progress {
        height: clamp(
            4px,
            calc(1.84px + 0.133vw),
            7px
        );
    }

    .ton618-pr-distribution__count {
        font-size: var(--pr-ultra-small);
    }
}