/* Reviews page — summary + card grid (.reviewsPage) */.reviewsPage{
  margin-bottom: 8px;
}/* Compact summary: stars + score + count in one row */ .reviewsSummary--compact{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  padding: 11px 16px;
  margin: 10px 0 8px;
  border-radius: 12px;
  background: var(--content-card-inner-bg);
  border: 1px solid var(--content-card-inner-border);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.14);
}.reviewsSummary--compact .reviewStars{
  font-size: 1rem;
}.reviewsSummary__inline{
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 2px 6px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--muted, rgba(255, 255, 255, 0.55));
}.reviewsSummary__scoreInline{
  font-size: 1.15rem;
  font-weight: 850;
  letter-spacing: -0.02em;
  color: var(--primary, #fff);
}.reviewsSummary__slash{
  font-weight: 600;
  opacity: 0.55;
}.reviewsSummary__dot{
  opacity: 0.35;
  padding: 0 2px;
  font-weight: 700;
}.reviewsSummary__countInline{
  font-weight: 600;
  color: rgba(255, 255, 255, 0.68);
}.reviewsDisclaimer{
  margin: 0 0 18px;
  font-size: 0.76rem;
  line-height: 1.5;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.46);
  max-width: 58ch;
}.reviewsToolbar{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  margin: 0 0 16px;
}.reviewsToolbar__label{
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--muted, rgba(255, 255, 255, 0.65));
  letter-spacing: 0.04em;
  text-transform: uppercase;
}/* Custom sort dropdown (replaces native <select> so the list matches dark UI) */ .reviewsSortCustom{
  position: relative;
  display: inline-block;
  min-width: 220px;
}.reviewsSortCustom__btn{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 44px;
  padding: 10px 14px 10px 16px;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: inherit;
  text-align: left;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  cursor: pointer;
  background: #181a26;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}.reviewsSortCustom__btn:hover{
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
}.reviewsSortCustom.is-open .reviewsSortCustom__btn{
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}.reviewsSortCustom__btn:focus{
  outline: none;
}.reviewsSortCustom__btn:focus-visible{
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35);
}.reviewsSortCustom__current{
  flex: 1;
  min-width: 0;
  color: #fff;
}.reviewsSortCustom__chev{
  flex-shrink: 0;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid rgba(255, 255, 255, 0.88);
  transition: transform 0.2s ease;
}.reviewsSortCustom.is-open .reviewsSortCustom__chev{
  transform: rotate(180deg);
}.reviewsSortCustom__panel{
  position: absolute;
  z-index: 50;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  padding: 6px;
  margin: 0;
  list-style: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: #181a26;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
}.reviewsSortCustom__opt{
  display: block;
  width: 100%;
  margin: 0;
  padding: 12px 14px;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: inherit;
  text-align: left;
  color: #fff;
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.12s ease, color 0.12s ease;
}.reviewsSortCustom__opt:hover,
.reviewsSortCustom__opt:focus{
  outline: none;
  background: rgba(122, 90, 248, 0.22);
  color: #fff;
}.reviewsSortCustom__opt:focus-visible{
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35);
}.reviewsSortCustom__opt.is-active{
  background: linear-gradient(90deg, rgba(209, 72, 157, 0.35) 0%, rgba(122, 90, 248, 0.3) 100%);
  color: #fff;
}.reviewsSortCustom__opt.is-active:hover{
  background: linear-gradient(90deg, rgba(209, 72, 157, 0.45) 0%, rgba(122, 90, 248, 0.4) 100%);
}/* Reviews: “leave a review” + Drupal form */ .reviewsListHead{
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted, rgba(255, 255, 255, 0.55));
  margin: 22px 0 14px;
  padding-top: 4px;
}/* Collapsible review form (<details>) */ .reviewComposerDisclosure{
  margin: 0 0 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.22);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}.reviewComposerDisclosure__summary{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  list-style: none;
  cursor: pointer;
  padding: 14px 16px;
  font-family: inherit;
  color: #fff;
  transition: background 0.15s ease;
}.reviewComposerDisclosure__summary::-webkit-details-marker{
  display: none;
}.reviewComposerDisclosure__summary:hover{
  background: rgba(255, 255, 255, 0.04);
}.reviewComposerDisclosure__title{
  flex: 1 1 auto;
  min-width: min(100%, 160px);
  font-size: 1.02rem;
  font-weight: 850;
  letter-spacing: -0.02em;
}.reviewComposerDisclosure__hint{
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.92);
  margin-left: auto;
}.reviewComposerDisclosure__chev{
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid rgba(255, 255, 255, 0.88);
  transition: transform 0.2s ease;
}.reviewComposerDisclosure[open] .reviewComposerDisclosure__chev{
  transform: rotate(180deg);
}.reviewComposerDisclosure[open] .reviewComposerDisclosure__summary{
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}.reviewComposerDisclosure__body{
  padding: 16px 16px 18px;
  background: linear-gradient(180deg, rgba(22, 24, 42, 0.55) 0%, rgba(12, 13, 18, 0.98) 100%);
}.reviewComposerDisclosure__note{
  margin: 0 0 14px;
  font-size: 0.8rem;
  line-height: 1.45;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}.reviewComposerDisclosure__legal{
  margin: 16px 0 0;
  font-size: 0.7rem;
  line-height: 1.45;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.42);
}.reviewComposerDisclosure__legal a{
  color: rgba(167, 139, 250, 0.95);
  text-decoration: none;
  font-weight: 700;
}.reviewComposerDisclosure__legal a:hover{
  text-decoration: underline;
}.reviewComposer__shell{
  width: 100%;
}.reviewComposer--form .messages,
.reviewComposer--form .messages--error,
.reviewComposer--form .messages--status{
  margin-bottom: 14px;
  border-radius: 12px;
}.reviewComposer--form{
  position: relative;
}.reviewComposer--form .js-form-item{
  margin-top: 16px;
}.reviewComposer--form .js-form-item:first-of-type{
  margin-top: 0;
}.reviewComposer--form label,
.reviewComposer--form .fieldset-legend,
.reviewComposer--form legend span{
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255, 255, 255, 0.55);
}.reviewComposer--form .description{
  margin-top: 6px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
}/* Rating: pill buttons + star preview (stars injected by arbicarReviewRatingPreview) */ .reviewComposer__ratingOuter{
  padding: 0;
  margin-top: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}/* Drupal wraps radios in <fieldset> — kill UA “groove” border (looks like a white box) */ .reviewComposer--form .reviewComposer__ratingOuter > fieldset,
.reviewComposer--form .reviewComposer__ratingOuter fieldset.fieldgroup,
.reviewComposer--form .reviewComposer__ratingOuter fieldset.form-composite{
  border: 0 !important;
  border-style: none !important;
  border-color: transparent !important;
  border-image: none !important;
  margin: 0 !important;
  padding: 0 !important;
  min-width: 0 !important;
  min-inline-size: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  outline: none !important;
}.reviewComposer__ratingOuter fieldset.fieldgroup .fieldset-wrapper{
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  box-shadow: none;
}.reviewComposer__ratingOuter fieldset.fieldgroup legend{
  float: none;
  width: 100%;
  padding: 0;
  margin: 0 0 8px;
}.reviewComposer__ratingOuter fieldset.fieldgroup .fieldset-legend{
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255, 255, 255, 0.55);
}/* Inner radios wrapper: vertical rows,
label frame + stars (reviews-page.css overrides on .reviewsPage) */ .reviewComposer__ratingOuter .reviewComposer__ratingRadiosRoot{
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 10px;
  margin-top: 4px;
  max-width: min(100%, 400px);
  padding: 0;
  border: none;
  background: transparent;
}.reviewComposer__ratingOuter .form-type-radio{
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin: 0;
}.reviewComposer__ratingOuter .form-type-radio label.option{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  box-sizing: border-box;
  height: 34px;
  min-height: 34px;
  width: 9.75rem;
  min-width: 9.75rem;
  max-width: 9.75rem;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, #1a2338 0%, #0f1729 100%);
  border: 1px solid rgba(100, 116, 139, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
  cursor: pointer;
  color: #f8fafc;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.01em;
  line-height: 1.2;
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}.reviewComposer__ratingOuter .form-type-radio label.option:hover{
  border-color: rgba(148, 163, 184, 0.35);
  background: linear-gradient(180deg, #1e2a42 0%, #121a2e 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 4px 14px rgba(0, 0, 0, 0.22);
  transform: translateY(-1px);
}.reviewComposer__ratingOuter .form-type-radio input.form-radio{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  opacity: 0;
}.reviewComposer__ratingOuter .form-type-radio input.form-radio:focus + label.option{
  outline: 2px solid rgba(236, 72, 153, 0.55);
  outline-offset: 3px;
}.reviewComposer__ratingOuter .form-type-radio input.form-radio:checked + label.option{
  border-color: rgba(129, 140, 248, 0.4);
  background: linear-gradient(165deg, rgba(55, 48, 120, 0.45) 0%, rgba(15, 23, 42, 0.96) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 0 0 1px rgba(99, 102, 241, 0.22),
    0 0 28px rgba(79, 70, 229, 0.14);
  color: #fff;
  transform: none;
}.reviewComposer__ratingStarsPreview{
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: auto;
  flex-shrink: 0;
  font-size: 1.05rem;
  line-height: 1;
  letter-spacing: 0;
  color: #fbbf24;
  text-shadow: 0 0 14px rgba(251, 191, 36, 0.35);
  opacity: 1;
  pointer-events: none;
  user-select: none;
}.reviewComposer__ratingStarsPreview .reviewComposer__ratingStar{
  display: inline-block;
  line-height: 1;
}@media (prefers-reduced-motion: reduce){
  .reviewComposer__ratingOuter .form-type-radio label.option {
    transition-duration: 0.01ms;
  }
  .reviewComposer__ratingOuter .form-type-radio label.option:hover {
    transform: none;
  }
}.reviewComposer__select,
.reviewComposer__input,
.reviewComposer__textarea{
  width: 100%;
  max-width: 100%;
  margin-top: 8px;
  padding: 12px 14px;
  font-size: 0.92rem;
  font-weight: 600;
  font-family: inherit;
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.25);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}.reviewComposer__select{
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, rgba(244, 114, 182, 0.9) 50%),
    linear-gradient(135deg, rgba(244, 114, 182, 0.9) 50%, transparent 50%);
  background-position: calc(100% - 16px) 50%, calc(100% - 11px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 36px;
}.reviewComposer__textarea{
  min-height: 120px;
  resize: vertical;
  line-height: 1.5;
}.reviewComposer__input::placeholder,
.reviewComposer__textarea::placeholder{
  color: rgba(255, 255, 255, 0.35);
  font-weight: 500;
}.reviewComposer__select:focus,
.reviewComposer__input:focus,
.reviewComposer__textarea:focus{
  outline: none;
  border-color: rgba(255, 255, 255, 0.26);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.25);
}.reviewComposer__hp{
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
}/* "You are a": themed dropdown (JS-built; native select hidden when .is-enhanced) */ .reviewComposer__roleWrap{
  position: relative;
}.reviewComposer__roleWrap.is-enhanced .reviewComposer__roleNative{
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}.reviewComposer__roleWrap:not(.is-enhanced) select.reviewComposer__roleNative{
  width: 100%;
  max-width: 100%;
  margin-top: 8px;
  padding: 12px 14px;
  font-size: 0.92rem;
  font-weight: 600;
  font-family: inherit;
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, rgba(244, 114, 182, 0.9) 50%),
    linear-gradient(135deg, rgba(244, 114, 182, 0.9) 50%, transparent 50%);
  background-position: calc(100% - 16px) 50%, calc(100% - 11px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 36px;
}.reviewsRoleCustom{
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  margin-top: 8px;
}.reviewsRoleCustom__btn{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 44px;
  padding: 10px 14px 10px 16px;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: inherit;
  text-align: left;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  cursor: pointer;
  background: #181a26;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}.reviewsRoleCustom__btn:hover{
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
}.reviewsRoleCustom.is-open .reviewsRoleCustom__btn{
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}.reviewsRoleCustom__btn:focus{
  outline: none;
}.reviewsRoleCustom__btn:focus-visible{
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35);
}.reviewsRoleCustom__current{
  flex: 1;
  min-width: 0;
  color: #fff;
}.reviewsRoleCustom__chev{
  flex-shrink: 0;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid rgba(255, 255, 255, 0.88);
  transition: transform 0.2s ease;
}.reviewsRoleCustom.is-open .reviewsRoleCustom__chev{
  transform: rotate(180deg);
}.reviewsRoleCustom__panel{
  position: absolute;
  z-index: 60;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  padding: 6px;
  margin: 0;
  list-style: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: #181a26;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
}.reviewsRoleCustom__opt{
  display: block;
  width: 100%;
  margin: 0;
  padding: 12px 14px;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: inherit;
  text-align: left;
  color: #fff;
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.12s ease, color 0.12s ease;
}.reviewsRoleCustom__opt:hover,
.reviewsRoleCustom__opt:focus{
  outline: none;
  background: rgba(122, 90, 248, 0.22);
  color: #fff;
}.reviewsRoleCustom__opt:focus-visible{
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35);
}.reviewsRoleCustom__opt.is-active{
  background: linear-gradient(90deg, rgba(209, 72, 157, 0.35) 0%, rgba(122, 90, 248, 0.3) 100%);
  color: #fff;
}.reviewsRoleCustom__opt.is-active:hover{
  background: linear-gradient(90deg, rgba(209, 72, 157, 0.45) 0%, rgba(122, 90, 248, 0.4) 100%);
}.reviewComposer--form .form-actions{
  margin-top: 22px;
  margin-bottom: 0;
  padding-top: 0;
}.reviewComposer__submit{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 26px;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: inherit;
  letter-spacing: 0.02em;
  color: #fff !important;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  /* Як у .btn.primary (Post Car): той самий brand-gradient і симетричне свічення */
  background: var(--brand-gradient);
  box-shadow: 0 0 26px rgba(59, 130, 246, 0.48), 0 0 52px rgba(59, 130, 246, 0.2);
  transition: filter 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}.reviewComposer__submit:hover{
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 0 34px rgba(59, 130, 246, 0.55), 0 0 60px rgba(99, 102, 241, 0.22);
}.reviewComposer__submit:active{
  transform: translateY(0);
  filter: brightness(0.98);
}.reviewComposer__submit:focus{
  outline: none;
}.reviewComposer__submit:focus-visible{
  box-shadow:
    0 0 0 2px rgba(15, 23, 42, 0.95),
    0 0 0 4px rgba(99, 102, 241, 0.45),
    0 0 26px rgba(59, 130, 246, 0.48),
    0 0 52px rgba(59, 130, 246, 0.2);
}@media (prefers-reduced-motion: reduce){
  .reviewComposer__submit {
    transition-duration: 0.01ms;
  }
  .reviewComposer__submit:hover,
  .reviewComposer__submit:active {
    transform: none;
  }
}.reviewCard__nameRow{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
}.reviewCard__badge{
  display: inline-block;
  padding: 3px 8px;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(167, 139, 250, 0.95);
  background: rgba(122, 90, 248, 0.18);
  border: 1px solid rgba(122, 90, 248, 0.35);
  border-radius: 999px;
}.reviewStars{
  display: inline-flex;
  gap: 3px;
  font-size: 1.15rem;
  line-height: 1;
  user-select: none;
}.reviewStars__star{
  color: rgba(255, 255, 255, 0.22);
  text-shadow: none;
}.reviewStars__star--full{
  color: #fbbf24;
  text-shadow: 0 0 12px rgba(251, 191, 36, 0.35);
}.reviewsGrid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: 18px;
  align-items: stretch;
  overflow: visible;
  padding: 6px;
  margin: -6px;
}.reviewCard{
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  padding: 18px 18px 16px;
  border-radius: var(--content-card-inner-radius, 14px);
  background: var(--content-card-inner-bg);
  border: 1px solid var(--content-card-inner-border);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
  transform: scale(1);
  transform-origin: center center;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}.reviewCard:hover{
  z-index: 2;
  transform: scale(1.028);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.08);
}.reviewCard:has(.reviewCard__reply[open]){
  z-index: 22;
}.reviewCard:has(.reviewCard__reply[open]):hover{
  z-index: 23;
}@media (prefers-reduced-motion: reduce){
  .reviewCard {
    transition-duration: 0.01ms;
  }
  .reviewCard:hover {
    transform: none;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
  }
}.reviewCard__top{
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px 14px;
  align-items: start;
  flex-shrink: 0;
  margin-bottom: 12px;
}.reviewCard__avatar{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 55%, #6366f1 100%);
  flex-shrink: 0;
}.reviewCard__who{ min-width: 0; }.reviewCard__name{
  font-weight: 800;
  font-size: 0.98rem;
  color: var(--primary, #fff);
  line-height: 1.25;
}.reviewCard__meta{
  margin-top: 3px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted, rgba(255, 255, 255, 0.55));
  line-height: 1.35;
}.reviewCard__scoreCol{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}.reviewCard__scoreCol .reviewStars{
  font-size: 0.95rem;
}.reviewCard__scoreNum{
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--muted, rgba(255, 255, 255, 0.65));
}.reviewCard__body{
  flex: 1 1 auto;
  min-height: 0;
  margin-bottom: 10px;
}.reviewCard__body p{
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
}.reviewCard__dateRow{
  flex-shrink: 0;
  margin-bottom: 10px;
}.reviewCard__date{
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted, rgba(255, 255, 255, 0.5));
  letter-spacing: 0.02em;
  line-height: 1.4;
}.reviewCard__dateFull{
  color: rgba(255, 255, 255, 0.78);
}.reviewCard__dateRel{
  font-weight: 600;
  color: var(--muted, rgba(255, 255, 255, 0.45));
}.reviewCard__reply{
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  margin-top: 4px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
  overflow: hidden;
}.reviewCard__reply[open]{
  z-index: 20;
  overflow: visible;
  border-color: rgba(139, 92, 246, 0.35);
  background: rgba(99, 102, 241, 0.08);
}.reviewCard__replySummary{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 14px;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
  letter-spacing: 0.02em;
}.reviewCard__replySummary::-webkit-details-marker{
  display: none;
}.reviewCard__replySummaryText{
  flex: 1;
  min-width: 0;
  color: rgba(255, 255, 255, 0.95);
}.reviewCard__replySummaryIcon{
  flex-shrink: 0;
  width: 0;
  height: 0;
  margin-left: 2px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid rgba(255, 255, 255, 0.88);
  opacity: 0.92;
  transition: transform 0.2s ease;
}.reviewCard__reply[open] .reviewCard__replySummaryIcon{
  transform: rotate(180deg);
}/* Pop reply out of document flow so the grid row height does not grow (no jump of cards below). */ .reviewCard__reply[open] .reviewCard__replyBody{
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 3;
  margin: 0;
  padding: 0 14px 14px;
  border-radius: 0 0 12px 12px;
  border: 1px solid rgba(139, 92, 246, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: -1px;
  background: rgba(18, 21, 32, 0.98);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.55);
  max-height: min(60vh, 28rem);
  overflow-y: auto;
}.reviewCard__replyBody{
  padding: 0 14px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}.reviewCard__replyBrand{
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(167, 139, 250, 0.95);
  margin: 10px 0 6px;
}.reviewCard__replyText{
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.52;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}@media (max-width: 400px){
  .reviewCard__top {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }
  .reviewCard__avatar { grid-row: 1 / span 2; }
  .reviewCard__scoreCol {
    grid-column: 2 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    margin-top: 4px;
  }
}
