/* =========================================================
   PRODUCT REVIEWS CAROUSEL — DESKTOP
========================================================= */

.product-reviews-carousel-section {
    padding: 40px 0 60px;
    background: var(--color-background);
    overflow: hidden;
}

.product-reviews-carousel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 0px 64px 40px;
}

.product-reviews-section-title {
    display: none;
}

.product-reviews-summary {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: #000000;
    font-family: var(--font-decorative);
    font-size: 30px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -1px;
}

.product-reviews-summary-star {
    color: #040D1A;
    font-size: 15px;
    line-height: 1;
    transform: translateY(0);
}

.product-reviews-count {
    color: #000000;
    font-family: var(--font-decorative);
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -1px;
}

.product-reviews-arrows {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-reviews-arrow {
    position: relative;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 1px solid #eae6e3;
    border-radius: 50%;
    background: transparent;
    color: #040D1A;
    font-size: 0;
    line-height: 0;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.product-reviews-arrow::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 11px;
    height: 11px;
    background: #040D1A;
    mask-image: url("../images/icon-caret.svg");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-image: url("../images/icon-caret.svg");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    transform: translate(-50%, -50%);
}

.product-reviews-arrow[data-reviews-prev]::before {
    transform: translate(-50%, -50%) rotate(180deg);
}

.product-reviews-arrow[data-reviews-next]::before {
    transform: translate(-50%, -50%) rotate(0deg);
}

.product-reviews-arrow:hover {
    border-color: rgba(4, 13, 26, 0.28);
    background: rgba(255, 255, 255, 0.35);
}

.product-reviews-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    cursor: grab;
}

.product-reviews-viewport::-webkit-scrollbar {
    display: none;
}

.product-reviews-viewport.is-dragging {
    cursor: grabbing;
}

.product-reviews-track {
    display: flex;
    align-items: stretch;
    gap: 20px;
    width: max-content;
    padding: 0 65px;
}

.product-review-card {
    position: relative;
    width: 380px;
    min-width: 380px;
    height: 185px;
    min-height: 185px;
    padding: 28px 28px 24px;
    background: #ffffff;
    color: #000000;
    box-sizing: border-box;
    cursor: pointer;
    overflow: visible;
    transform: none;
    box-shadow: none;
    isolation: isolate;
    transition: background-color 0.25s ease;
}

.product-review-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;
}

.product-review-card:hover {
    transform: none;
    background: #ffffff;
}

.product-review-card:hover::before {
    opacity: 1;
    transform: scale(1);
}

.product-review-card-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-right: 60px;
}

.product-review-author {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #666666;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}

.product-review-verified {
    width: 15px;
    height: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 15px;
}

.product-review-verified svg {
    width: 12px;
    height: 12px;
    display: block;
}

.product-review-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    color: #040D1A;
    font-size: 14px;
    line-height: 1;
}

.product-review-stars .is-empty {
    color: transparent;
    -webkit-text-stroke: 1px #063f49;
}

.product-review-title {
    max-width: 230px;
    margin: 18px auto 18px;
    color: #000000;
    font-family: var(--font-decorative);
    font-size: 18px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.1;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-review-text {
    display: -webkit-box;
    margin: 0;
    color: #000000;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-review-image {
    position: absolute;
    top: 29px;
    right: 28px;
    width: 40px;
    height: 50px;
    margin: 0;
    overflow: hidden;
    background: var(--color-background);
}

.product-review-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}


/* =========================================================
   PRODUCT REVIEW MODAL — DESKTOP
========================================================= */

.product-review-modal {
    position: fixed;
    inset: 0;
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.product-review-modal.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.product-review-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.42);
}

.product-review-modal-window {
    position: relative;
    z-index: 2;
    width: 1048px;
    max-width: calc(100vw - 80px);
    height: 560px;
    max-height: calc(100vh - 80px);
    background: transparent;
    color: #000000;
    overflow: visible;
}

.product-review-modal-layout:not(.has-media) .product-review-modal-main {
    padding: 32px 44px 24px 32px;
}

.product-review-modal-layout:not(.has-media) .product-review-modal-text {
    max-width: 720px;
}

.product-review-modal-layout:not(.has-media) .product-review-modal-content {
    width: 100%;
}

.product-review-modal-close {
    position: absolute;
    top: 22px;
    right: 40px;
    z-index: 10;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #000000;
    font-size: 0;
    line-height: 0;
    cursor: pointer;
}

.product-review-modal-close::before,
.product-review-modal-close::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 25px;
    height: 1px;
    background: #000000;
    transform-origin: center;
}

.product-review-modal-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.product-review-modal-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.product-review-modal-layout {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    height: 100%;
    min-height: 0;
    background: transparent;
}

.product-review-modal-layout.has-media {
    grid-template-columns: 1fr 1fr;
}

.product-review-modal-media {
    position: relative;
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #000000;
    overflow: hidden;
}

.product-review-modal-layout.has-media .product-review-modal-media {
    display: flex;
}

.product-review-modal-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.product-review-modal-media img:not([src]),
.product-review-modal-media img[src=""] {
    display: none;
}

.product-review-modal-media-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #ffffff;
    font-size: 0;
    line-height: 0;
    transform: translateY(-50%);
    cursor: pointer;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.product-review-modal-media-arrow:hover {
    opacity: 1;
}

.product-review-modal-media-arrow::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 10px;
    height: 10px;
    border-left: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
}

.product-review-modal-media-arrow-prev,
.product-review-modal-media-arrow:first-child {
    left: 18px;
}

.product-review-modal-media-arrow-prev::before,
.product-review-modal-media-arrow:first-child::before {
    transform: translate(-35%, -50%) rotate(45deg);
}

.product-review-modal-media-arrow-next,
.product-review-modal-media-arrow:last-child {
    right: 18px;
}

.product-review-modal-media-arrow-next::before,
.product-review-modal-media-arrow:last-child::before {
    transform: translate(-65%, -50%) rotate(-135deg);
}

.product-review-modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    min-height: 0;
    background: #ffffff;
}

.product-review-modal-main {
    padding: 32px 44px 24px 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
    min-height: 0;
}

.product-review-modal-customer {
    display: block;
    padding: 0 44px 22px 0;
}

.product-review-modal-avatar {
    display: none;
}

.product-review-modal-name {
    margin: 0 0 6px;
    color: #000000;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: 0.48px;
    text-transform: uppercase;
}

.product-review-modal-verified {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 4px;
    color: #000000;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.1;
}

.product-review-modal-verified.is-hidden {
    display: none;
}

.product-review-modal-verified .product-review-verified {
    width: 15px;
    height: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 15px;
    background: transparent;
    border-radius: 0;
    font-size: 0;
    line-height: 0;
}

.product-review-modal-verified .product-review-verified svg {
    width: 14px;
    height: 14px;
    display: block;
}

.product-review-modal-separator {
    width: 100%;
    height: 1px;
    margin: 0 0 24px;
    background: #e6e0dc;
}

.product-review-modal-rating-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 0 0 15px;
}

.product-review-modal-rating-row .product-review-stars {
    font-size: 16px;
    gap: 4px;
}

.product-review-modal-date {
    color: #000000;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.36px;
}

.product-review-modal-title {
    margin: 0 0 15px;
    color: #000000;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 400;
    font-style: italic;
}

.product-review-modal-text {
    max-width: 430px;
    color: #000000;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
}

.product-review-modal-small-image {
    width: 50px;
    height: 64px;
    margin: 26px 0 0;
    overflow: hidden;
    background: #f7f4f0;
}

.product-review-modal-small-image.is-hidden {
    display: none;
}

.product-review-modal-small-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.product-review-modal-product {
    display: none;
}

.product-review-modal-bottom {
    margin-top: auto;
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.product-review-modal-recommend {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #000000;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
}

.product-review-modal-recommend.is-hidden {
    display: none;
}

.product-review-modal-recommend span {
    width: 14px;
    height: 12px;
    display: inline-block;
    background: transparent;
    border-radius: 0;
    position: relative;
}

.product-review-modal-recommend span::before {
    content: "♥";
    position: absolute;
    left: 0;
    top: -2px;
    color: #e07c61;
    font-size: 16px;
    line-height: 1;
}

.product-review-modal-recommend span::after {
    display: none;
}

.product-review-modal-recommend strong {
    font-weight: 400;
}

.product-review-modal-helpful {
    display: none;
}

.product-review-modal-footer {
    min-height: 58px;
    padding: 0 32px 26px;
    border-top: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 20px;
}

.product-review-modal-branding {
    display: none;
}

.product-review-modal-footer-arrows {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-review-modal-footer-arrows button {
    position: relative;
    width: 33px;
    height: 33px;
    padding: 0;
    border: 1px solid #e6e0dc;
    border-radius: 50%;
    background: #ffffff;
    color: #000000;
    font-size: 0;
    line-height: 0;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.product-review-modal-footer-arrows button:hover {
    border-color: rgba(0, 0, 0, 0.28);
    background: #ffffff;
}

.product-review-modal-footer-arrows button::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 11px;
    height: 11px;
    background: #000000;
    mask-image: url("../images/icon-caret.svg");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-image: url("../images/icon-caret.svg");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    transform: translate(-50%, -50%);
}

.product-review-modal-footer-arrows button:first-child::before {
    transform: translate(-50%, -50%) rotate(180deg);
}

.product-review-modal-footer-arrows button:last-child::before {
    transform: translate(-50%, -50%) rotate(0deg);
}

body.review-modal-open {
    overflow: hidden;
}


@media (max-width: 1199px) {

	.product-reviews-carousel-head {
    padding: 0px 24px 40px;
	}
	
	.product-reviews-track {
    padding: 0 24px;
}

}

@media (max-width: 767px) {
    .product-reviews-carousel-section {
        padding: 45px 0 45px;
    }

    .product-reviews-carousel-head {
        padding: 0 18px 36px;
    }

    .product-reviews-summary {
        font-size: 18px;
    }

    .product-reviews-count {
        font-size: 18px;
    }

    .product-reviews-summary-star {
        font-size: 12px;
    }

    .product-reviews-arrows {
        gap: 10px;
    }

    .product-reviews-arrow {
        width: 36px;
        height: 36px;
    }

    .product-reviews-track {
        gap: 16px;
        padding: 0 18px;
    }

    .product-review-card {
        width: calc(100vw - 36px);
        min-width: calc(100vw - 36px);
        height: 200px;
        min-height: 200px;
        padding: 20px 15px;
    }

    .product-review-author {
        font-size: 12px;
    }

    .product-review-stars {
        font-size: 14px;
    }

    .product-review-text {
        font-size: 16px;
        line-height: 1.4;
    }

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

    .product-review-modal {
        inset: 0;
        width: 100vw;
        height: 100dvh;
        padding: 0 !important;
        align-items: stretch;
        justify-content: stretch;
    }

    .product-review-modal-overlay {
        background: rgba(0, 0, 0, 0.42);
    }

    .product-review-modal-window {
        width: 100vw !important;
        max-width: none !important;
        height: 100dvh !important;
        max-height: none !important;
        margin: 0 !important;
        background: #ffffff;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .product-review-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);
    }

    .product-review-modal-close::before,
    .product-review-modal-close::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        width: 18px;
        height: 1px;
        background: #ffffff;
        transform-origin: center;
    }

    .product-review-modal-close::before {
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .product-review-modal-close::after {
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    .product-review-modal-layout,
    .product-review-modal-layout.has-media,
    .product-review-modal-layout:not(.has-media) {
        display: block !important;
        width: 100%;
        height: auto;
        min-height: 100dvh;
    }

    .product-review-modal-layout.has-media .product-review-modal-media {
        display: flex !important;
    }

    .product-review-modal-layout:not(.has-media) .product-review-modal-media {
        display: none !important;
    }

    .product-review-modal-media {
        width: 100vw;
        height: 48dvh;
        min-height: 360px;
        max-height: 520px;
        background: #000000;
        overflow: hidden;
    }

    .product-review-modal-media img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .product-review-modal-media-arrow {
        width: 36px;
        height: 36px;
    }

    .product-review-modal-media-arrow-prev,
    .product-review-modal-media-arrow:first-child {
        left: 12px;
    }

    .product-review-modal-media-arrow-next,
    .product-review-modal-media-arrow:last-child {
        right: 12px;
    }

    .product-review-modal-content {
        width: 100%;
        min-height: auto;
        background: #ffffff;
    }

    .product-review-modal-main {
        padding: 20px 20px 20px;
        gap: 0;
    }

    .product-review-modal-customer {
        padding: 0 44px 22px 0;
    }

    .product-review-modal-name {
        font-size: 12px;
    }

    .product-review-modal-verified {
        font-size: 14px;
    }

    .product-review-modal-separator {
        margin: 0 0 20px;
    }

    .product-review-modal-rating-row {
        margin: 0 0 15px;
    }

    .product-review-modal-rating-row .product-review-stars {
        font-size: 17px;
    }

    .product-review-modal-date {
        font-size: 12px;
        white-space: nowrap;
        font-weight: 300;
    }

    .product-review-modal-title {
        margin: 0px 0 15px;
        font-size: 18px;
    }

    .product-review-modal-text {
        max-width: none;
        font-size: 16px;
        line-height: 1.45;
    }

    .product-review-modal-small-image {
        width: 50px;
        height: 64px;
        margin-top: 20px;
    }

    .product-review-modal-bottom {
        margin-top: 24px;
        padding-top: 0;
        align-items: flex-start;
        flex-direction: column;
    }

    .product-review-modal-recommend {
        font-size: 14px;
    }

    .product-review-modal-footer {
        padding: 0 20px 28px;
        min-height: 62px;
        justify-content: flex-end;
    }

    .product-review-modal-footer-arrows button {
        width: 42px;
        height: 42px;
    }

    body.review-modal-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
}


/* =========================================================
   PRODUCT REVIEWS — ULTRA-WIDE SCREENS
   1620px → standard desktop sizes
   2953px → maximum proportional sizes
========================================================= */

@media (min-width: 1620px) {

    /* =========================
       SECTION SPACING
    ========================= */

    .product-reviews-carousel-section {
        padding:
            clamp(
                40px,
                calc(14.589px + 1.56857vw),
                61px
            )
            0
            clamp(
                60px,
                calc(21.884px + 2.35286vw),
                91px
            );
    }

.product-reviews-carousel-head {
    gap: clamp(
        24px,
        calc(8.753px + 0.94114vw),
        37px
    );

    padding:
        0
        64px
        clamp(
            40px,
            calc(14.589px + 1.56857vw),
            61px
        );
}


    /* =========================
       RATING SUMMARY
    ========================= */

    .product-reviews-summary {
        gap: clamp(
            8px,
            calc(2.918px + 0.31371vw),
            12px
        );

        font-size: clamp(
            30px,
            calc(10.942px + 1.17643vw),
            46px
        );

        letter-spacing: clamp(
            -1.5px,
            -0.051vw,
            -1px
        );
    }

    .product-reviews-summary-star {
        font-size: clamp(
            15px,
            calc(5.471px + 0.58822vw),
            23px
        );
    }

    .product-reviews-count {
        font-size: clamp(
            24px,
            calc(8.753px + 0.94114vw),
            37px
        );

        letter-spacing: clamp(
            -1.5px,
            -0.051vw,
            -1px
        );
    }


    /* =========================
       NAVIGATION ARROWS
    ========================= */

    .product-reviews-arrows {
        gap: clamp(
            10px,
            calc(3.647px + 0.39214vw),
            15px
        );
    }

    .product-reviews-arrow {
        width: clamp(
            32px,
            calc(11.671px + 1.25486vw),
            49px
        );

        height: clamp(
            32px,
            calc(11.671px + 1.25486vw),
            49px
        );
    }

    .product-reviews-arrow::before {
        width: clamp(
            11px,
            calc(4.012px + 0.43136vw),
            17px
        );

        height: clamp(
            11px,
            calc(4.012px + 0.43136vw),
            17px
        );
    }


    /* =========================
       CAROUSEL TRACK
    ========================= */

.product-reviews-track {
    gap: clamp(
        20px,
        calc(7.295px + 0.78429vw),
        30px
    );

    padding: 0 64px;
}


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

    .product-review-card {
        width: clamp(
            380px,
            calc(138.596px + 14.90145vw),
            579px
        );

        min-width: clamp(
            380px,
            calc(138.596px + 14.90145vw),
            579px
        );

        height: clamp(
            185px,
            calc(67.475px + 7.25465vw),
            282px
        );

        min-height: clamp(
            185px,
            calc(67.475px + 7.25465vw),
            282px
        );

        padding:
            clamp(
                28px,
                calc(10.212px + 1.098vw),
                43px
            )
            clamp(
                28px,
                calc(10.212px + 1.098vw),
                43px
            )
            clamp(
                24px,
                calc(8.753px + 0.94114vw),
                37px
            );
    }

    .product-review-card::before {
        box-shadow:
            0
            clamp(
                18px,
                calc(6.565px + 0.70586vw),
                27px
            )
            clamp(
                42px,
                calc(15.318px + 1.647vw),
                64px
            )
            rgba(4, 13, 26, 0.12),

            0
            clamp(
                4px,
                calc(1.459px + 0.15686vw),
                6px
            )
            clamp(
                12px,
                calc(4.377px + 0.47057vw),
                18px
            )
            rgba(4, 13, 26, 0.06);
    }


    /* =========================
       CARD HEADER
    ========================= */

    .product-review-card-top {
        gap: clamp(
            10px,
            calc(3.647px + 0.39214vw),
            15px
        );

        padding-right: clamp(
            60px,
            calc(21.884px + 2.35286vw),
            91px
        );
    }

    .product-review-author {
        gap: clamp(
            4px,
            calc(1.459px + 0.15686vw),
            6px
        );

        font-size: clamp(
            12px,
            calc(4.377px + 0.47057vw),
            18px
        );
    }

    .product-review-verified {
        width: clamp(
            15px,
            calc(5.471px + 0.58822vw),
            23px
        );

        height: clamp(
            15px,
            calc(5.471px + 0.58822vw),
            23px
        );

        flex-basis: clamp(
            15px,
            calc(5.471px + 0.58822vw),
            23px
        );
    }

    .product-review-verified svg {
        width: clamp(
            12px,
            calc(4.377px + 0.47057vw),
            18px
        );

        height: clamp(
            12px,
            calc(4.377px + 0.47057vw),
            18px
        );
    }

    .product-review-stars {
        gap: clamp(
            2px,
            calc(0.729px + 0.07843vw),
            3px
        );

        font-size: clamp(
            14px,
            calc(5.106px + 0.549vw),
            21px
        );
    }


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

    .product-review-title {
        max-width: clamp(
            230px,
            calc(83.887px + 9.0193vw),
            350px
        );

        margin:
            clamp(
                18px,
                calc(6.565px + 0.70586vw),
                27px
            )
            auto;

        font-size: clamp(
            18px,
            calc(6.565px + 0.70586vw),
            27px
        );
    }

    .product-review-text {
        font-size: clamp(
            14px,
            calc(5.106px + 0.549vw),
            21px
        );

        line-height: 1.4;
    }


    /* =========================
       REVIEW IMAGE
    ========================= */

    .product-review-image {
        top: clamp(
            29px,
            calc(10.577px + 1.13722vw),
            44px
        );

        right: clamp(
            28px,
            calc(10.212px + 1.098vw),
            43px
        );

        width: clamp(
            40px,
            calc(14.589px + 1.56857vw),
            61px
        );

        height: clamp(
            50px,
            calc(18.236px + 1.96072vw),
            76px
        );
    }
}