/** Shopify CDN: Minification failed

Line 16:18 Unexpected "{"
Line 16:27 Expected ":"
Line 16:34 Unexpected "{"
Line 17:25 Expected identifier but found whitespace
Line 17:27 Unexpected "{"
Line 17:36 Expected ":"
Line 18:30 Expected identifier but found whitespace
Line 18:32 Unexpected "{"
Line 18:41 Expected ":"
Line 19:19 Expected identifier but found whitespace
... and 119 more hidden warnings

**/
.manual-reviews--{{ section.id }} {
    --reviews-background: {{ section.settings.background_color }};
    --reviews-card-background: {{ section.settings.card_background_color }};
    --reviews-text: {{ section.settings.text_color }};
    --reviews-secondary: {{ section.settings.secondary_text_color }};
    --reviews-border: {{ section.settings.border_color }};
    --reviews-star: {{ section.settings.star_color }};

    padding-top: {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
    background: var(--reviews-background);
    color: var(--reviews-text);
}

.manual-reviews--{{ section.id }} .manual-reviews__header {
    display: flex;
    align-items: flex-end;
    justify-content:  center;
    gap: 30px;
    margin-bottom: 32px;
    text-align:center;
}
.section-manual-product-reviews .page-width{
    max-width:1460px;
    margin:0 auto;
    padding:0 10px;
}
.manual-reviews--{{ section.id }} .manual-reviews__heading {
    margin: 0;
    color: var(--reviews-text);
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.15;
}

.manual-reviews--{{ section.id }} .manual-reviews__subheading {
    max-width: 650px;
    margin: 10px 0 0;
    color: var(--reviews-secondary);
    font-size: 15px;
    line-height: 1.6;
}

.manual-reviews--{{ section.id }} .manual-reviews__summary {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 14px;
    padding: 16px 20px;
    border: 1px solid var(--reviews-border);
    border-radius: 14px;
    background: var(--reviews-card-background);
}

.manual-reviews--{{ section.id }} .manual-reviews__average {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.manual-reviews--{{ section.id }} .manual-reviews__stars,
.manual-reviews--{{ section.id }} .manual-reviews__card-stars {
    display: flex;
    gap: 2px;
}

.manual-reviews--{{ section.id }} .manual-reviews__star {
    color: #d6d6d6;
    font-size: 20px;
    line-height: 1;
}

.manual-reviews--{{ section.id }} .manual-reviews__star.is-filled {
    color: var(--reviews-star);
}

.manual-reviews--{{ section.id }} .manual-reviews__count {
    margin: 5px 0 0;
    color: var(--reviews-secondary);
    font-size: 13px;
}

/* Carousel shell */
.manual-reviews--{{ section.id }} .manual-reviews__carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.manual-reviews--{{ section.id }} .manual-reviews__viewport {
    flex: 1 1 auto;
    overflow: hidden;
    min-width: 0;
}

.manual-reviews--{{ section.id }} .manual-reviews__track {
    display: flex;
    gap: 20px;
    will-change: transform;
}

/* 3 slides on desktop */
.manual-reviews--{{ section.id }} .manual-reviews__slide {
    flex: 0 0 calc((100% - (2 * 20px)) / 3);
    min-width: 0;
    border: 1px solid #dedede;
    border-radius: 6px;
}

.manual-reviews--{{ section.id }} .manual-reviews__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--reviews-border);
    border-radius: 50%;
    background: var(--reviews-card-background);
    color: var(--reviews-text);
    cursor: pointer;
    transition: opacity 0.2s ease, border-color 0.2s ease;
}

.manual-reviews--{{ section.id }} .manual-reviews__arrow svg {
    width: 18px;
    height: 18px;
}

.manual-reviews--{{ section.id }} .manual-reviews__arrow:hover:not(:disabled) {
    border-color: var(--reviews-text);
}

.manual-reviews--{{ section.id }} .manual-reviews__arrow:disabled {
    opacity: 0.35;
    cursor: default;
}

.manual-reviews--{{ section.id }} .manual-reviews__card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-width: 0;
    padding: 24px;
    border: 1px solid var(--reviews-border);
    border-radius: {{ section.settings.card_radius }}px;
    background: var(--reviews-card-background);
}

.manual-reviews--{{ section.id }} .manual-reviews__card-stars {
    margin-bottom: 16px;
}

.manual-reviews--{{ section.id }} .manual-reviews__card-stars .manual-reviews__star {
    font-size: 18px;
}

/* Read more / read less clamp */
.manual-reviews--{{ section.id }} .manual-reviews__review-wrap {
    margin-bottom: 20px;
}

.manual-reviews--{{ section.id }} .manual-reviews__content {
    color: var(--reviews-text);
    font-size: 15px;
    line-height: 1.7;
}

.manual-reviews--{{ section.id }} .manual-reviews__content [data-review-full] p {
    margin-top: 0;
}

.manual-reviews--{{ section.id }} .manual-reviews__content [data-review-full] p:last-child {
    margin-bottom: 0;
}

.manual-reviews--{{ section.id }} .manual-reviews__toggle {
    display: inline-block;
    margin-left: 4px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--reviews-text);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.7;
    text-decoration: underline;
    cursor: pointer;
    white-space: nowrap;
}

.manual-reviews--{{ section.id }} .manual-reviews__toggle.is-below {
    display: block;
    margin-left: 0;
    margin-top: 8px;
}

.manual-reviews--{{ section.id }} .manual-reviews__product-image-button {
    display: none;
    width: 100%;
    margin: 0 0 22px;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 10px;
    background: transparent;
    cursor: zoom-in;
}

.manual-reviews--{{ section.id }} .manual-reviews__card.is-expanded .manual-reviews__product-image-button {
    display: block;
}

.manual-reviews--{{ section.id }} .manual-reviews__product-image {
    display: block;
    width: 100%;
    max-height: 320px;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.manual-reviews--{{ section.id }} .manual-reviews__product-image-button:hover .manual-reviews__product-image {
    transform: scale(1.03);
}

.manual-reviews--{{ section.id }} .manual-reviews__reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--reviews-border);
}

.manual-reviews--{{ section.id }} .manual-reviews__avatar {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    overflow: hidden;
    border-radius: 50%;
    background: #eeeeee;
}

.manual-reviews--{{ section.id }} .manual-reviews__avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.manual-reviews--{{ section.id }} .manual-reviews__avatar--initial {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--reviews-text);
    font-size: 18px;
    font-weight: 700;
}

.manual-reviews--{{ section.id }} .manual-reviews__name {
    margin: 0;
    color: var(--reviews-text);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
}

.manual-reviews--{{ section.id }} .manual-reviews__customer-label {
    margin: 3px 0 0;
    color: var(--reviews-secondary);
    font-size: 13px;
    line-height: 1.35;
}

.manual-reviews--{{ section.id }} .manual-reviews__modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.86);
}

.manual-reviews--{{ section.id }} .manual-reviews__modal.is-open {
    display: flex;
}

.manual-reviews--{{ section.id }} .manual-reviews__modal-content {
    max-width: 1000px;
    max-height: 90vh;
}

.manual-reviews--{{ section.id }} .manual-reviews__modal-image {
    display: block;
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

.manual-reviews--{{ section.id }} .manual-reviews__modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #ffffff;
    font-size: 40px;
    line-height: 1;
    cursor: pointer;
}

/* Tablet: 2 slides — matches JS breakpoint at 989px */
@media screen and (max-width: 989px) {
    .manual-reviews--{{ section.id }} .manual-reviews__slide {
    flex: 0 0 calc((100% - 20px) / 2);
    }
}

/* Mobile: 1 slide — matches JS breakpoint at 749px */
@media screen and (max-width: 749px) {
    .manual-reviews--{{ section.id }} .manual-reviews__header {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 24px;
    }

    .manual-reviews--{{ section.id }} .manual-reviews__summary {
    width: 100%;
    }

    .manual-reviews--{{ section.id }} .manual-reviews__slide {
    flex: 0 0 100%;
    }

    .manual-reviews--{{ section.id }} .manual-reviews__card {
    padding: 20px;
    }

    .manual-reviews--{{ section.id }} .manual-reviews__arrow {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    }
}