/** Shopify CDN: Minification failed

Line 10:10 Unexpected "{"
Line 10:19 Expected ":"
Line 11:10 Unexpected "{"
Line 11:19 Expected ":"

**/
/* reset / safe defaults for this section */
.section-{{ section.id }} .rte ul,
.section-{{ section.id }} .rte ol { padding: 0; }

.lk-reviews{ position:relative; }

.lk-reviews__kicker{ font-size:.8rem; opacity:.75; margin-bottom:.25rem; }
.lk-reviews__title{ line-height:1.15; margin:0; }
.lk-reviews__sub{ opacity:.8; margin:.5rem 0 0; }

.lk-reviews__header{ display:flex; gap:24px; justify-content:space-between; margin-bottom:16px; flex-wrap:wrap; }
.lk-reviews__title-wrap{ padding-bottom:8px; }
.lk-reviews__summary{ display:flex; gap:16px; align-items:center; flex-wrap:wrap; }

.lk-reviews__stats{ display:flex; align-items:center; gap:.5rem; flex-wrap:wrap; opacity:.9; }
.lk-reviews__stats-divider{ opacity:.5; }

.lk-reviews__controls{ display:flex; justify-content:space-between; align-items:center; gap:12px; width:100%; }
.lk-reviews__filters{ display:flex; gap:8px; flex-wrap:wrap; }
.lk-reviews__filter{
  padding:6px 10px;
  border:1px solid rgba(var(--color-foreground), .18);
  border-radius:999px;
  background:transparent;
  color:inherit;
  cursor:pointer;
  font-size:.9rem;
}
.lk-reviews__filter.is-active,
.lk-reviews__filter:hover{
  background:rgba(var(--color-foreground), .06);
  border-color:rgba(var(--color-foreground), .32);
}

/* LIST like Judge.me screenshot */
.lk-reviews__list{
  border-top:1px solid rgba(var(--color-foreground), .10);
}

.lk-review{
  display:flex;
  gap:14px;
  padding:18px 0;
  border-bottom:1px solid rgba(var(--color-foreground), .10);
}

.lk-review__avatar{
  width:28px;
  height:28px;
  border-radius:4px;
  display:grid;
  place-items:center;
  background:rgba(var(--color-foreground), .06);
  border:1px solid rgba(var(--color-foreground), .10);
  flex:0 0 auto;
  margin-top:2px;
}

.lk-review__content{ min-width:0; flex:1 1 auto; }

.lk-review__top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
}

.lk-review__who{ display:flex; align-items: center; gap:4px; min-width:0; }

.lk-review__stars{ line-height:1; }
.lk-review__star{ opacity:.25; margin-right:2px; font-size:14px; }
.lk-review__star.is-on{ opacity:1; }

.lk-review__author{
  line-height:1.2;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  display: flex;
  align-content: center;
  align-items: center;
  gap: .5rem;
}
.lk-review__toggle{
  width:18px;
  height:18px;
  border-radius:50%;
  border:1px solid rgba(var(--color-foreground), .22);
  background:transparent;
  cursor:pointer;
  flex:0 0 auto;
  margin-top:2px;
}
.lk-review.is-open .lk-review__toggle{
  background:rgba(var(--color-foreground), .08);
  border-color:rgba(var(--color-foreground), .32);
}

.lk-review__title{
  margin:10px 0 6px;
  font-size:1.05rem;
  font-weight:600;
  color:inherit;
}
.lk-review__body{
  line-height:1.55;
  opacity: 0.85;

  /* collapsed like in many widgets */
  overflow:hidden;
  display:-webkit-box;
  -webkit-box-orient:vertical;
}
.lk-review.is-open .lk-review__body{
  -webkit-line-clamp:unset;
  display:block;
}

.lk-review__footer{
  font-size:1.3rem;
  display:flex;
  gap:.5rem;
  flex-wrap:wrap;
  align-items:center;
}
.lk-review__sep{ opacity:.5; }
.lk-review__link{
  color:inherit;
  text-decoration:underline;
  text-underline-offset:2px;
}
.lk-review__badge{
  font-size:.75rem;
  padding:2px 8px;
  border-radius:999px;
  border:1px solid rgba(var(--color-foreground), .20);
  opacity:.9;
}
.lk-review__badge--ebay{ border-color:rgba(70,181,255,.85); }
.lk-review__badge--jm{ border-color:rgba(255,209,102,.9); }

/* pagination */
.lk-reviews__pagination{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding-top:16px;
}
.lk-reviews__page,
.lk-reviews__page-nav{
  min-width:34px;
  height:34px;
  border-radius:999px;
  border:1px solid rgba(var(--color-foreground), .18);
  background:transparent;
  color:inherit;
  cursor:pointer;
  padding:0 10px;
}
.lk-reviews__page.is-active{
  background:rgba(var(--color-foreground), .08);
  border-color:rgba(var(--color-foreground), .32);
}
.lk-reviews__page[disabled],
.lk-reviews__page-nav[disabled]{ opacity:.45; cursor:not-allowed; }

.lk-reviews__ellipsis{
  opacity:.6;
  padding:0 2px;
}

.lk-pagination{
  display:flex;
  justify-content:center;
  margin-top:20px;
}

.lk-pagination__inner{
  display:flex;
  align-items:center;
  gap:24px;              /* расстояние между 1 2 3 … 14 › */
}

.lk-pagination .page,
.lk-pagination .deco,
.lk-pagination .next,
.lk-pagination .prev{
  display:inline-flex;
  align-items:center;
}

/* links + current */
.lk-pagination .page a,
.lk-pagination .page.current{
  font-size:16px;
  line-height:1;
  padding:6px 2px;
  color:inherit;
  text-decoration:none;
  border-bottom:1px solid transparent;
  opacity:.85;
}

/* active page underline */
.lk-pagination .page.current{
  opacity:1;
  border-bottom-color:currentColor;
}

/* hover underline */
.lk-pagination .page a:hover,
.lk-pagination .page a:focus-visible{
  opacity:1;
  border-bottom-color:currentColor;
  outline:none;
}

/* ellipsis */
.lk-pagination .deco{
  font-size:16px;
  line-height:1;
  padding:6px 2px;
  opacity:.6;
}

/* next/prev arrow */
.lk-pagination .next a,
.lk-pagination .prev a{
  color:inherit;
  text-decoration:none;
  padding:6px 2px;
  border-bottom:1px solid transparent;
  opacity:.85;
}

/* заменить "Next »" на одну стрелку, но оставить ссылку кликабельной */
.lk-pagination .next a{
  font-size:0; /* скрываем текст визуально */
}
.lk-pagination .next a::after{
  content:"›";
  font-size:18px;
  line-height:1;
}

.lk-pagination .prev a{
  font-size:0;
}
.lk-pagination .prev a::after{
  content:"‹";
  font-size:18px;
  line-height:1;
}

.lk-pagination .next a:hover,
.lk-pagination .next a:focus-visible,
.lk-pagination .prev a:hover,
.lk-pagination .prev a:focus-visible{
  opacity:1;
  border-bottom-color:currentColor;
  outline:none;
}

  .lk-review__media{ display:flex; gap:8px; flex-wrap:wrap; margin: 10px 0; }

  .lk-zoom-thumb{
    border:1px solid rgba(var(--color-foreground), .12);
    background:transparent;
    padding:0;
    cursor: pointer;
    overflow:hidden;
  }
  .lk-zoom-thumb img{
    display:block;
    width:76px;
    height:76px;
    object-fit:cover;
  }

/* =========================
   LK Zoom Modal — Full CSS
   (no zoom/drag; responsive)
   ========================= */

/* Overlay */
.lk-zoom-modal{
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.72);
  display: grid;
  place-items: center;
  padding: 18px;
}

.lk-zoom-modal[hidden]{
  display: none !important;
}

/* Card */
.lk-zoom-card{
  width: min(1100px, 100%);
  height: min(78vh, 780px);
  background: rgba(20,20,20,.92);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
}

/* Top bar */
.lk-zoom-bar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.lk-zoom-hint{
  color: #fff;
  opacity: .85;
  font-size: 12px;
}

.lk-zoom-actions{
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Buttons */
.lk-zoom-btn{
  height: 34px;
  min-width: 34px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.lk-zoom-btn:hover{
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.06);
}

/* Stage + Image */
.lk-zoom-stage{
  position: relative;
  overflow: hidden;
  background: rgba(0,0,0,.35);
  padding: 12px;
}

.lk-zoom-img{
  width: 100% !important;
  height: 100% !important;
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain; /* change to cover if you want fill+crop */
  border-radius: 12px;
}

/* =========================
   DESKTOP: make modal fit image width (no side bars)
   ========================= */
@media (min-width: 769px){
  /* card should shrink-wrap to the image */
  .lk-zoom-card{
    width: fit-content;
    max-width: 98vw;
    height: auto;
    max-height: 92vh;
  }

  /* remove inner padding that creates extra gutters */
  .lk-zoom-stage{
    padding: 0;
    width: auto;
    max-width: 98vw;
    background: transparent;
  }

  /* image defines the size */
  .lk-zoom-img{
    width: auto !important;
    height: auto !important;
    max-width: 98vw;
    max-height: 84vh; /* keep room for the top bar */
    object-fit: contain;
    display: block;
    border-radius: 12px;
  }
}
/* =========================
   MOBILE: compact (not too tall)
   ========================= */
@media (max-width: 768px){
  .lk-zoom-modal{
    place-items: center;
    padding: 12px;
  }

  /* compact card (auto height) */
  .lk-zoom-card{
    width: 100%;
    max-width: 520px;
    height: auto;
    max-height: 78vh;
    border-radius: 16px;
    display: grid;
    grid-template-rows: auto auto; /* bar + stage */
  }

  .lk-zoom-bar{
    padding: 10px 10px;
  }

  .lk-zoom-btn{
    height: 38px;
    min-width: 38px;
    padding: 0 12px;
  }

  .lk-zoom-stage{
    height: auto;
    max-height: calc(78vh - 52px); /* bar approx */
    display: grid;
    place-items: center;
    padding: 8px;
  }

  /* let image define height */
  .lk-zoom-img{
    width: 100% !important;
    height: auto !important;
    max-height: calc(78vh - 52px);
    object-fit: contain;
    border-radius: 10px;
  }
}

/* mobile */
@media (max-width: 640px){
  .lk-reviews__header{ align-items:flex-start; }
  .lk-review{ gap:12px; }
  .lk-review__title{ font-size:1rem; }
}
.lk-stars { display:inline-flex; gap:2px; line-height:1; }
.lk-star { opacity:.25; position:relative; display:inline-block; }
.lk-star.is-on { opacity:1; }
.lk-star.is-half { opacity:.25; }
.lk-star.is-half::after{
  content:"★";
  position:absolute; left:0; top:0;
  width:50%; overflow:hidden;
  opacity:1;
}

