:root {
  --pvr-accent-color: #2563eb;
  --pvr-accent-color-dark: #1d4ed8;
  --pvr-star-color: #f59e0b;
  --pvr-card-bg: #ffffff;
  --pvr-card-bg-soft: #f8fbff;
  --pvr-text-color: #111827;
  --pvr-radius: 12px;
  --pvr-card-shadow: none;
  --pvr-border-color: #e5e7eb;
  --pvr-muted-color: #6b7280;
  --pvr-success-bg: #ecfdf5;
  --pvr-success-text: #047857;
  --pvr-surface-color: #f8fafc;
  --pvr-gradient-soft: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(14, 165, 233, 0.08));
  --pvr-gradient-accent: linear-gradient(135deg, #2563eb, #0ea5e9);
  --pvr-card-shadow: 0 0 10px rgba(0,0,0,0.15);
  --pvr-text-link: #1e76c5;
  --pvr-text-link-hover: #ff7878;
  --pvr-shadow-sm: 1px 1px 2px rgba(0, 0, 0, 0.12);
  --pvr-shadow-md: 1px 1px 4px rgba(0, 0, 0, 0.25);
  --pvr-shadow-lg: 0 0 10px rgba(0, 0, 0, 0.15);
  --pvr-radius-sm: 6px;
  --pvr-radius-md: 12px;
  --pvr-radius-lg: 20px;
  --pvr-radius-full: 50%;
  --pvr-transition: 0.2s ease;
  --pvr-transition-slow: 0.3s ease;
  --pvr-thumb-w: 120px;
  --pvr-thumb-h: 120px;
  --pvr-large-thumb-w: 400px;
  --pvr-large-thumb-h: 400px;
  --pvr-criteria-bg: #f2f2f7;
  --pvr-criteria-star-inactive: #d1d1d6;
  --pvr-criteria-star-active: #ff9500;
}

/* Criteria Voting & Display */
.pvr-criteria-voting {
    margin: 20px 0;
    padding: 15px;
    background: var(--pvr-criteria-bg);
    border-radius: var(--pvr-radius);
}

.pvr-criteria-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.pvr-criteria-label {
    font-size: 13px;
    color: #3a3a3c;
}

.pvr-criteria-stars {
    display: flex;
    gap: 4px;
}

.pvr-criteria-stars label {
    cursor: pointer;
}

.pvr-criteria-stars svg {
    transition: fill 0.2s;
}

.pvr-review__criteria {
    margin-bottom: 15px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 8px;
}

.pvr-criterion-display-item {
    font-size: 11px;
    color: var(--pvr-muted-color);
    background: #ededed;
    padding: 6px 10px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pvr-criterion-dots {
    display: flex;
    gap: 2px;
}

.pvr-criterion-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--pvr-criteria-star-inactive);
}

.pvr-criterion-dot--active {
    background: var(--pvr-criteria-star-active);
}

.pvr-btn {
  padding: .5rem 1rem;
  box-shadow: none;
  outline: 0 !important;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.pvr-icon {
  width: 1em;
  height: 1em;
  display: block;
}

.pvr-notice-stack {
  position: fixed;
  top: 24px;
  right: 24px;
  width: min(380px, calc(100vw - 48px));
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999999;
  pointer-events: none;
}

.pvr-notice {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.08);
  font-family: inherit;
  opacity: 0;
  transform: translateY(-16px) scale(0.95);
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: auto;
  border: 1px solid transparent;
}

.pvr-notice--show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.pvr-notice--hide {
  opacity: 0;
  transform: translateY(20px) scale(0.95);
}

.pvr-notice--error {
  background-color: #fef2f2;
  border-color: #fed7d7;
  color: #991b1b;
}

.pvr-notice--success {
  background-color: #ecfdf5;
  border-color: #a7f3d0;
  color: #065f46;
}

.pvr-notice--info {
  background-color: #fffbeb;
  border-color: #fef3c7;
  color: #92400e;
}

.pvr-notice__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.pvr-notice__svg-icon {
  width: 20px;
  height: 20px;
  display: block;
}

.pvr-notice__text {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}

.pvr-notice__close {
  width: 22px;
  height: 22px;
  min-width: 22px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: currentColor;
  opacity: 0.5;
  font-size: 18px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.2s ease, background-color 0.2s ease;
}

.pvr-notice__close:hover {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.06);
}

.pvr-reviews-wrapper {
  color: var(--pvr-text-color);
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 14px;
  line-height: 1.5;
  img{
    -webkit-user-drag: none;
    user-select: none;
  }
}

.pvr-media-modal img{
  -webkit-user-drag: none;
    user-select: none;
}

.pvr-overview {
  display: grid;
  gap: 20px;
}

.pvr-form-section,
.pvr-summary {
  background: var(--pvr-card-bg);
  border: 1px solid var(--pvr-border-color);
  border-radius: 24px;
  box-shadow: var(--pvr-card-shadow);
  padding: 20px;
  display: grid;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.pvr-form-section::before,
.pvr-summary::before,
.pvr-summary__criteria-grid::before,
.pvr-review-item::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0), rgba(37, 99, 235, 0.55), rgba(14, 165, 233, 0));
}

.pvr-form-section {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  overflow-y: auto;
  flex: 1;
  min-height: 0;
}

.pvr-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.02em;
}

.pvr-list-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.pvr-write-review-btn {
  border: 1px solid rgba(37, 99, 235, 0.24);
  background: rgba(37, 99, 235, 0.08);
  color: var(--pvr-accent-color);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.pvr-write-review-btn:hover {
  background: rgba(37, 99, 235, 0.14);
  transform: translateY(-1px);
}

.pvr-review-form-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 100001;
}

.pvr-review-form-modal[hidden] {
  display: none !important;
}

.pvr-review-form-modal__wrapper {
  position: relative;
  width: min(860px, 100%);
}

.pvr-review-form-modal__dialog {
  position: relative;
  width: 100%;
  max-height: min(90vh, 900px);
  overflow: hidden;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
}

.pvr-review-form-modal__close {
  position: absolute;
  top: -16px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--pvr-border-color);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--pvr-text-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  padding: 0;
}

.pvr-review-form-modal__close-icon {
  width: 16px;
  height: 16px;
  display: block;
  color: currentColor;
  fill: none;
  stroke: currentColor;
}

.pvr-reply-form-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 100001;
}

.pvr-reply-form-modal[hidden] {
  display: none !important;
}

.pvr-reply-form-modal__dialog {
  position: relative;
  width: min(560px, 100%);
  max-height: min(90vh, 700px);
  overflow-y: auto;
  border-radius: 24px;
}

.pvr-reply-form-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--pvr-border-color);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--pvr-text-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  padding: 0;
}

.pvr-reply-form-modal__close-icon {
  width: 16px;
  height: 16px;
  display: block;
  color: currentColor;
  fill: none;
  stroke: currentColor;
}

.pvr-reply-form-section {
  padding: 24px;
}

.pvr-reply-form-section .pvr-reply-form {
  background: transparent;
  border: none;
  padding: 0;
  margin-top: 0;
  border-radius: 0;
}

.pvr-list-subtitle {
  margin: 6px 0 0;
  color: var(--pvr-muted-color);
  font-size: 14px;
}

.pvr-product-media-strip {
  background: var(--pvr-card-bg);
  border: 1px solid var(--pvr-border-color);
  border-radius: 24px;
  padding: 20px;
  display: grid;
  gap: 14px;
}

.pvr-product-media-strip__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.pvr-product-media-strip__title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.pvr-product-media-strip__open-all {
  border: 1px solid rgba(37, 99, 235, 0.2);
  background: rgba(37, 99, 235, 0.08);
  color: var(--pvr-accent-color);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.pvr-product-media-strip__grid {
  display: flex;
  gap: 5px;
  padding: 4px 4px 10px;
  overflow-x: auto;
  scrollbar-width: thin;
  min-height: fit-content;
  scrollbar-color: rgba(148, 163, 184, 0.9) transparent;
}

.pvr-product-media-strip__grid::-webkit-scrollbar {
  height: 6px;
}

.pvr-product-media-strip__grid::-webkit-scrollbar-track {
  background: transparent;
}

.pvr-product-media-strip__grid::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.75);
  border-radius: 10px;
}

.pvr-product-media-strip__grid.ex-scroll {
  cursor: grab;
  user-select: none;
}

.pvr-product-media-strip__grid.ex-scroll.active {
  cursor: grabbing;
}

.pvr-product-media-item {
  padding: 0;
  border: 2px solid transparent;
  border-radius: var(--pvr-radius-md);
  background: transparent !important;
  cursor: pointer;
  overflow: hidden;
  flex: 0 0 var(--pvr-thumb-w);
  width: var(--pvr-thumb-w);
  height: var(--pvr-thumb-h);
  position: relative;
  transition: border-color 0.2s;
}

.pvr-product-media-item:hover {
  border-color: var(--pvr-accent-color);
}

.pvr-product-media-item .pvr-review-media-image,
.pvr-product-media-item .pvr-media-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pvr-review-media-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  pointer-events: none;
}

.pvr-media-item--photo .pvr-review-media-play {
  display: none;
}

.pvr-privacy-label{
  display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    input{
      width: 30px !important;
    }
}

.pvr-media-grid-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: rgba(15, 23, 42, 0.78);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.pvr-media-grid-modal__dialog {
  width: 100vw;
  height: 100vh;
  max-height: none;
  background: #fff;
  border-radius: 0;
  padding: 20px;
  overflow: auto;
}

.pvr-media-grid-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 1rem;
}

.pvr-media-grid-modal__title {
  margin: 0;
  font-size: 20px;
}

.pvr-media-grid-modal__close {
  position: absolute;
  top: 5px;
  right: 5px;
}

.pvr-media-grid-modal__close-icon {
  width: 22px;
  height: 22px;
}

.pvr-media-grid-modal__grid {
  overflow-y: auto;
  overflow-x: hidden;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  align-content: start;
  padding: 4px;
  width: 97vw;
  margin: 0 auto;
}

.pvr-grid-media-item {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
  width: 100%;
  height: 40vh;
  position: relative;
  border-radius: var(--pvr-radius-lg);
  box-shadow: var(--pvr-shadow-md);
}

.pvr-grid-media-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
  transition: var(--pvr-transition-slow);
  will-change: transform;
}

.pvr-grid-media-item:hover .pvr-grid-media-thumb {
  transform: scale(1.05);
}

.pvr-grid-media-thumb--video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.3s ease;
}

.pvr-grid-media-thumb--video svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.pvr-grid-media-item:hover .pvr-grid-media-thumb--video {
  opacity: 0;
}

.pvr-media-grid-modal__show-more {
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--pvr-accent-color);
  cursor: pointer;
  font-weight: 600;
}

.pvr-media-grid-modal__actions {
  display: flex;
  justify-content: center;
}

.pvr-summary__average {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.pvr-summary__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--pvr-accent-color);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pvr-summary__number {
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  color: var(--pvr-text-color);
}

.pvr-summary__count {
  font-size: 14px;
  color: var(--pvr-muted-color);
}

.pvr-summary__breakdown {
  display: grid;
  gap: 10px;
}

.pvr-breakdown__row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pvr-breakdown__label {
  font-size: 14px;
  color: var(--pvr-muted-color);
  white-space: nowrap;
  min-width: 28px;
  display: flex;
  align-items: center;
  font-weight: 600;
  gap: 3px;
}
.pvr-breakdown__label .pvr-star-icon{
  width: 14px;
  height: 14px;
  vertical-align: middle;
  fill: #f59e0b;
}

.pvr-breakdown__count {
  font-size: 14px;
  color: var(--pvr-muted-color);
  min-width: 20px;
  text-align: right;
  font-weight: 600;
}

.pvr-breakdown__bar {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: #eef2f7;
  overflow: hidden;
}

.pvr-breakdown__fill {
  height: 100%;
  width: 0;
  background: var(--pvr-gradient-accent);
  border-radius: inherit;
  transition: width 0.3s ease;
}

.pvr-summary__criteria-grid {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    padding: 20px;
    background: var(--pvr-card-bg);
    border: 1px solid var(--pvr-border-color);
    border-radius: 24px;
    box-shadow: var(--pvr-card-shadow);
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
}

.pvr-summary__criteria-card {
    background: var(--pvr-card-bg-soft);
    border: 1px solid var(--pvr-border-color);
    border-radius: var(--pvr-radius-sm);
    padding: 12px;
    text-align: center;
    transition: all var(--pvr-transition);
    width: max-content;
    flex-shrink: 0;
    min-width: 160px;
    max-width: 260px;
}

.pvr-summary__criteria-card:hover {
  border-color: var(--pvr-accent-color);
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.1);
}

.pvr-summary__criteria-rating {
  font-size: 22px;
  font-weight: 700;
  color: var(--pvr-accent-color);
  margin-bottom: 6px;
  line-height: 1;
}

.pvr-summary__criteria-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--pvr-text-color);
  margin-bottom: 4px;
  word-break: break-word;
}

.pvr-summary__criteria-description {
  font-size: 11px;
  color: var(--pvr-muted-color);
  line-height: 1.3;
  word-break: break-word;
}

.pvr-reviews-list{
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pvr-review-item {
  background: linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
  border: 1px solid var(--pvr-border-color);
  border-radius: 12px;
  box-shadow: var(--pvr-card-shadow);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.pvr-review__product-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  margin-bottom: 4px;
}

.pvr-review__product-img {
  width: var(--pvr-product-img-size, 40px);
  height: var(--pvr-product-img-size, 40px);
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--pvr-border-color);
}

.pvr-review__product-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--pvr-text-color);
  line-height: 1.3;
}

.pvr-review__product-link:hover .pvr-review__product-name {
  color: var(--pvr-accent-color);
}

.pvr-stars {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pvr-star-color);
}

.pvr-star--full,
.pvr-star--half,
.pvr-star--empty {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  line-height: 1;
}

.pvr-star--full {
  color: var(--pvr-star-color);
}

.pvr-star--half {
  color: #e5b769;
}

.pvr-star--empty {
  color: #d1d5db;
}

.pvr-stars--sm {
  font-size: 15px;
}

.pvr-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--pvr-success-bg);
  color: var(--pvr-success-text);
  font-size: 12px;
  font-weight: 600;
  width: fit-content;
}

.pvr-review__media {
  display: flex;
  flex-wrap: nowrap;
  gap: 5px;
  overflow-x: auto;
  white-space: nowrap;
  transition: all var(--ex-transition);
  will-change: transform;
  user-select: none;
  cursor: grab;
  padding: 4px 4px 10px;
  scrollbar-width: thin;
  scrollbar-color: rgba(148, 163, 184, 0.9) transparent;
}

.pvr-review__media:active {
  cursor: grabbing;
}

.pvr-review__media::-webkit-scrollbar {
  height: 6px;
}

.pvr-review__media::-webkit-scrollbar-track {
  background: transparent;
}

.pvr-review__media::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.75);
  border-radius: 10px;
}

.pvr-media-item {
  position: relative;
  isolation: isolate;
  flex: 0 0 var(--pvr-thumb-w, 120px);
  width: var(--pvr-thumb-w, 120px);
  max-width: var(--pvr-thumb-w, 120px);
}

.pvr-review-media-trigger {
  cursor: pointer;
  outline: 0 !important;
}

.pvr-review-media-trigger:focus-visible {
  outline: 2px solid var(--pvr-accent-color);
  outline-offset: 4px;
}

.pvr-media-item--video {
  aspect-ratio: 16 / 9;
}

.pvr-media-item__media {
  width: 100%;
  height: 100%;
}

.pvr-media-item__status {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.72);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  backdrop-filter: blur(10px);
  display: none;
}

.pvr-media-item[data-status="uploaded"] .pvr-media-item__status {
  background: rgba(5, 150, 105, 0.82);
}

.pvr-media-item[data-status="processing"] .pvr-media-item__status,
.pvr-media-item[data-status="uploading"] .pvr-media-item__status,
.pvr-media-item[data-status="uploaded"] .pvr-media-item__status {
  display: inline-flex;
}

.pvr-media-item__controls {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pvr-media-action {
  appearance: none;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  color: #0f172a;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  box-shadow: none;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.pvr-media-action:hover,
.pvr-media-action:focus-visible {
  background: #ffffff;
  color: var(--pvr-accent-color);
  transform: translateY(-1px);
  outline: none;
}

.pvr-media-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--pvr-radius-md);
  overflow: hidden;
  background: #f3f4f6;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: none;
}

.pvr-media-thumb--video {
  aspect-ratio: 16 / 9;
}

.pvr-review__media .pvr-media-thumb {
  width: var(--pvr-thumb-w, 120px);
  height: var(--pvr-thumb-h, 120px);
  aspect-ratio: auto;
}

.pvr-review__media .pvr-media-thumb--video {
  aspect-ratio: auto;
}

.pvr-review__media .pvr-media-item--video {
  aspect-ratio: auto;
}

.pvr-media-thumb img,
.pvr-media-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.2s ease;
  pointer-events: none;
}

.pvr-media-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.pvr-review-media-trigger:hover .pvr-media-thumb img,
.pvr-review-media-trigger:hover .pvr-media-thumb video,
.pvr-review-media-trigger:focus-visible .pvr-media-thumb img,
.pvr-review-media-trigger:focus-visible .pvr-media-thumb video {
  transform: scale(1.04);
}

.pvr-review-media-play svg {
  width: 30px;
  height: 30px;
  display: block;
  fill: currentColor;
}

.pvr-review__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  flex-wrap: wrap;
}

.pvr-review__author-info {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.pvr-review__avatar {
  width: var(--pvr-avatar-size, 70px);
  height: var(--pvr-avatar-size, 70px);
  border-radius: var(--pvr-radius-sm);
  object-fit: cover;
  box-shadow: none;
  transition: transform var(--pvr-transition);
  cursor: pointer;
  z-index: 2;
  position: relative;
  transform-origin: center left;
}

.pvr-review__avatar:hover {
  transform: scale(1.1);
  z-index: 5;
}

.pvr-review__avatar--expanded {
  transform: scale(3.5) translateY(30%) !important;
  box-shadow: var(--pvr-shadow-lg);
  z-index: 100;
}

.pvr-review__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pvr-review__meta-top {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.pvr-review__author {
  font-weight: 700;
  font-size: 15px;
}

.pvr-review__date {
  font-size: 12px;
  color: var(--pvr-muted-color);
}

.pvr-review__badges {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pvr-review__rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.pvr-star {
  width: 14px;
  height: 14px;
  display: block;
}

.pvr-star--full {
  color: var(--pvr-star-color);
}

.pvr-star--empty {
  color: #d1d5db;
}

.pvr-review__content {
  font-size: 14px;
  line-height: 1.75;
  color: var(--pvr-text-color);
  width: 100%;
}

.pvr-review__content-inner {
  background: var(--pvr-surface-color);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 12px;
  padding: 10px 6px;
}


.pvr-review__field {
    margin-top: 10px;
    padding: 10px 14px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.pvr-review__field-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.pvr-review__field--pros .pvr-review__field-label {
    color: #059669;
}

.pvr-review__field--cons .pvr-review__field-label {
    color: #dc2626;
}

.pvr-review__field-value {
    display: block;
    line-height: 1.6;
}

.pvr-form__limitations{
  min-height: 80px !important;
}

.pvr-review__city {
    font-size: 12px;
    color: var(--pvr-muted-color);
    background: rgba(0,0,0,0.05);
    padding: 2px 8px;
    border-radius: 999px;
    vertical-align: middle;
    margin-left: 6px;
}

.pvr-review__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding-top: 4px;
  flex-wrap: wrap;
  margin-top: auto;
}

.pvr-helpful {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  flex-wrap: wrap;
  flex-direction: column;
}

.pvr-helpful__label {
  font-size: 13px;
  color: var(--pvr-muted-color);
}

.pvr-helpful__btns {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.pvr-helpful__btns .pvr-widget-read-more {
  margin-left: auto;
}

.pvr-vote-btn {
  appearance: none;
  border: 1px solid rgba(203, 213, 225, 0.9);
  border-radius: 999px;
  background: #ffffff;
  color: var(--pvr-text-color);
  padding: 9px 13px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: none;
  min-width: 50px;
}

.pvr-vote-btn:hover,
.pvr-vote-btn:focus-visible {
  border-color: var(--pvr-accent-color);
  color: var(--pvr-accent-color);
  outline: none;
}

.pvr-vote-btn--active {
  border-color: var(--pvr-accent-color);
  background: rgba(37, 99, 235, 0.08);
  color: var(--pvr-accent-color);
  box-shadow: none;
}

.pvr-helpful__balance {
  font-size: 13px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  min-width: 32px;
  text-align: center;
}

.pvr-helpful__balance--positive {
  background: #ecfdf5;
  color: #059669;
}

.pvr-helpful__balance--negative {
  background: #fef2f2;
  color: #dc2626;
}

.pvr-vote-btn:disabled {
  opacity: 0.75;
  cursor: wait;
}

.pvr-reply-toggle {
  appearance: none;
  border: 1px solid rgba(37, 99, 235, 0.18);
  background: rgba(37, 99, 235, 0.05);
  color: var(--pvr-accent-color);
  font-size: 13px;
  cursor: pointer;
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 600;
}

.pvr-replies {
  display: grid;
  gap: 10px;
  margin-top: 2px;
  padding-left: 16px;
  border-left: 2px solid rgba(37, 99, 235, 0.12);
}

.pvr-replies--nested {
  padding-left: 12px;
}

.pvr-reply {
  padding: 14px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 18px;
  background: #fbfcfe;
  color: var(--pvr-text-color);
}

.pvr-reply--owner {
  background: #eff6ff;
  border-color: #93c5fd;
}

.pvr-reply__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.pvr-reply__author {
  font-weight: 600;
  font-size: 13px;
}

.pvr-reply__date {
  font-size: 12px;
  color: var(--pvr-muted-color);
}

.pvr-reply__content {
  font-size: 13px;
  line-height: 1.5;
}

.pvr-owner-badge {
  display: inline-flex;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--pvr-accent-color);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
}

.pvr-reply-form {
  display: grid;
  gap: 10px;
  margin-top: 4px;
  padding: 14px;
  border-radius: 18px;
  background: var(--pvr-surface-color);
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.pvr-form {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  display: grid;
  gap: 12px;
}

.pvr-form__hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 12px 14px;
  border-radius: 20px;
  background: var(--pvr-gradient-soft);
  border: 1px solid rgba(191, 219, 254, 0.6);
}

.pvr-form__intro {
  display: grid;
  gap: 6px;
}

.pvr-form__eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--pvr-accent-color);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pvr-form__title {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.pvr-form__description {
  margin: 0;
  color: var(--pvr-muted-color);
  font-size: 13px;
}

.pvr-form__meta {
  display: flex;
  align-items: flex-start;
}

.pvr-form__user-badge {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.95);
  color: var(--pvr-text-color);
  font-size: 13px;
  font-weight: 600;
}

.pvr-form__group {
  display: grid;
  gap: 6px;
}

.pvr-avatar-upload {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}

.pvr-avatar-upload__media {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.pvr-avatar-upload__user {
  display: flex;
  align-items: center;
  min-height: 1px;
}

.pvr-avatar-upload__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--pvr-text-color);
  line-height: 1.25;
  word-break: break-word;
}

.pvr-avatar-preview {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  flex-shrink: 0;
  border: 2px solid #ddd;
}

.pvr-avatar-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pvr-avatar-label {
  cursor: pointer;
  color: var(--pvr-primary, #2271b1);
  font-size: 12px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pvr-avatar-crop-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(17, 24, 39, 0.7);
}

.pvr-avatar-crop-modal__dialog {
  width: 100%;
  max-width: 460px;
  background: #fff;
  border-radius: 14px;
  box-shadow: none;
  padding: 18px;
  display: grid;
  gap: 14px;
}

.pvr-avatar-crop-modal__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--pvr-text-color);
}

.pvr-avatar-crop-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 420px;
  background: #0f172a;
  border-radius: 12px;
  overflow: hidden;
  margin: 0 auto;
  touch-action: none;
}

.pvr-avatar-crop-stage img {
  position: absolute;
  max-width: none;
  user-select: none;
  -webkit-user-drag: none;
}

.pvr-avatar-crop-box {
  position: absolute;
  border: 2px solid #fff;
  border-radius: 50%;
  outline: 9999px solid rgba(15, 23, 42, 0.45);
  cursor: grab;
  touch-action: none;
}

.pvr-avatar-crop-box:active {
  cursor: grabbing;
}

.pvr-avatar-crop-resize {
  position: absolute;
  right: -6px;
  bottom: -6px;
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--pvr-primary, #2271b1);
  box-shadow: none;
  cursor: nwse-resize;
  padding: 0;
}

.pvr-avatar-crop-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.pvr-avatar-crop-modal__btn {
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1;
  padding: 10px 14px;
  cursor: pointer;
}

.pvr-avatar-crop-modal__btn--secondary {
  background: #fff;
  color: #1f2937;
}

.pvr-avatar-crop-modal__btn--primary {
  background: var(--pvr-primary, #2271b1);
  border-color: var(--pvr-primary, #2271b1);
  color: #fff;
}

.pvr-form__label {
  font-size: 13px;
  font-weight: 700;
  color: var(--pvr-text-color);
}

.pvr-form__label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.pvr-form__hint {
  font-size: 12px;
  color: var(--pvr-muted-color);
}

.pvr-form__row {
  display: grid;
  gap: 10px;
}

.pvr-form__textarea {
  min-height: 110px;
  resize: vertical;
}

.pvr-form__submit {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 4px;
}

.pvr-form__submit-meta {
  display: grid;
  gap: 10px;
}

.pvr-form__message {
  font-size: 13px;
  min-height: 20px;
  align-self: center;
}

.pvr-form__message--success {
  color: var(--pvr-success-text);
}

.pvr-form__message--error {
  color: #dc2626;
}

.pvr-required {
  color: #dc2626;
  margin-left: 2px;
}

.pvr-form input,
.pvr-form textarea,
.pvr-form select,
.pvr-reply-form input,
.pvr-reply-form textarea {
  border: 1px solid rgba(203, 213, 225, 0.9);
  border-radius: 16px;
  background: #ffffff;
  color: var(--pvr-text-color);
  padding: 12px 14px;
  font: inherit;
  box-shadow: none;
}

.pvr-form input:focus,
.pvr-form textarea:focus,
.pvr-form select:focus,
.pvr-reply-form input:focus,
.pvr-reply-form textarea:focus {
  border-color: var(--pvr-accent-color);
  outline: none;
  outline: 2px solid rgba(37, 99, 235, 0.35);
  outline-offset: 1px;
}

.pvr-form input{
  outline: 0 !important;
}

.pvr-rating-input {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 16px;
  width: fit-content;
  background: var(--pvr-surface-color);
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.pvr-rating-star {
  font-size: 28px;
  line-height: 1;
  color: #d1d5db;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}

.pvr-rating-star svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  display: block;
}

.pvr-star svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  display: block;
}

.pvr-rating-star.pvr-star--active {
  color: var(--pvr-star-color);
}

.pvr-rating-star:hover {
  color: var(--pvr-star-color);
}

.pvr-rating-star:hover {
  transform: scale(1.05);
}

.pvr-criteria-voting-block {
  margin: 18px 0;
  padding: 14px 0;
  border-top: 1px solid var(--pvr-border-color);
  border-bottom: 1px solid var(--pvr-border-color);
}

.pvr-criteria-scroll {
  display: flex;
  align-items: stretch;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 2px 8px;
}

.pvr-criteria-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2px;
  min-width: 160px;
  margin-bottom: 0;
  padding: 8px 10px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 10px;
  background: #fff;
  flex: 0 0 auto;
}

.pvr-criteria-row__head {
  min-width: 0;
  display: inline-flex;
}

.pvr-criteria-row__title-wrap {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pvr-criteria-row__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--pvr-text-color);
  line-height: 1.3;
  white-space: nowrap;
  cursor: help;
}

.pvr-criteria-row__required {
  color: #ff3b30;
  margin-left: 2px;
}

.pvr-criteria-row__info {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid rgba(148, 163, 184, 0.8);
  color: #64748b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  cursor: help;
  background: #fff;
}

.pvr-tooltip-portal {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100002;
  max-width: 280px;
  padding: 8px 10px;
  border-radius: 8px;
  background: #0f172a;
  color: #f8fafc;
  font-size: 11px;
  line-height: 1.35;
  white-space: normal;
  pointer-events: none;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.22);
  opacity: 0;
  transform: translateY(2px);
  transition: opacity 0.14s ease, transform 0.14s ease;
}

.pvr-tooltip-portal--visible {
  opacity: 1;
  transform: translateY(0);
}

.pvr-rating-input.pvr-criteria-stars {
  width: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  gap: 3px;
}

.pvr-criteria-stars .pvr-rating-star {
  font-size: 18px;
}

.pvr-criteria-stars .pvr-rating-star svg {
  width: 22px;
  height: 22px;
}

.pvr-criteria-row--invalid {
  border-color: rgba(239, 68, 68, 0.55);
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.08);
}

.pvr-upload-zone {
  position: relative;
  border: 2px dashed rgba(37, 99, 235, 0.22);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  padding: 16px 14px;
  text-align: center;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.pvr-upload-zone__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  pointer-events: none;
}

.pvr-upload-zone__icon {
  font-size: 30px;
  color: var(--pvr-accent-color);
}

.pvr-upload-zone__badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--pvr-accent-color);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pvr-upload-zone__text {
  font-size: 14px;
  font-weight: 700;
  color: var(--pvr-text-color);
}

.pvr-upload-zone__hint {
  font-size: 11px;
  line-height: 1.25;
  color: var(--pvr-muted-color);
}

.pvr-upload-zone__limits {
  display: grid;
  gap: 1px;
  justify-items: center;
  text-align: center;
}

.pvr-file-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.pvr-upload-zone:hover,
.pvr-upload-zone:focus-within {
  border-color: var(--pvr-accent-color);
  background: #f8faff;
  transform: translateY(-1px);
}

.pvr-upload-progress {
  display: grid;
  gap: 6px;
}

.pvr-progress-text {
  font-size: 13px;
  color: var(--pvr-muted-color);
}

.pvr-progress-bar {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: #e2e8f0;
}

.pvr-progress-fill {
  width: 0;
  height: 100%;
  background: var(--pvr-gradient-accent);
  border-radius: inherit;
  transition: width 0.3s ease;
}

.pvr-submit-btn {
  appearance: none;
  border: none;
  border-radius: 999px;
  background: var(--pvr-gradient-accent);
  color: #ffffff;
  padding: 13px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: transform 0.2s ease, opacity 0.2s ease, filter 0.2s ease;
  box-shadow: none;
}

.pvr-submit-btn:hover,
.pvr-submit-btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: none;
  filter: brightness(1.03);
  outline: none;
}

.pvr-submit-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.pvr-media-preview {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pvr-media-preview .pvr-media-thumb {
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: none;
}

.pvr-form__hint--media {
  display: inline-block;
  margin-top: 10px;
}

.pvr-modal-open {
  overflow: hidden;
}

.pvr-media-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: #fff;
  backdrop-filter: blur(8px);
}

.pvr-media-modal__dialog {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  width: 100vw;
  height: 100vh;
  max-height: none;
  overflow: hidden;
  box-shadow: none;
}

.pvr-round-btn{
  cursor: pointer;
  height: 42px;
  width: 42px;
  text-align: center;
  border-radius: 50%;
  background: rgba(2, 6, 23, 0.52);
  color: #fff;
  line-height: 42 px;
  padding: 0;
  transition: all var(--pvr-transition);
  flex-shrink: 0;
  border: none;
  svg{
    fill: #fff;
    color: #fff;
    transition: all var(--pvr-transition);
  }
  &:hover{
    background: rgba(2, 6, 23, 0.72);
  }
}

.pvr-media-modal__close {
  padding: 0;
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 2;
}

.pvr-media-modal__expand {
  padding: 0;
  position: absolute;
  top: 5px;
  right: calc(33.33% + 12px);
  z-index: 2;
}

.pvr-media-modal__close-icon {
  width: 22px;
  height: 22px;
}

.pvr-media-modal__expand-icon {
  width: 20px;
  height: 20px;
}

.pvr-media-modal__mobile-bar {
  display: none;
}

.pvr-media-modal__mobile-slide {
  display: none;
}

.pvr-media-modal__all-media {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  height: 44px;
  border: none;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.78);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px 0 10px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.pvr-media-modal__all-media .back-arrow {
  width: 18px;
  height: 18px;
  fill: currentColor;
  display: block;
}

.pvr-media-modal__media {
  position: relative;
  min-height: 100%;
  background: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: grab;
}

.pvr-media-modal__media.has-blur-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--pvr-media-bg-image);
  background-size: cover;
  background-position: center;
  z-index: 0 ;
  margin: -30px;
  filter: blur(50px) saturate(0.95) brightness(.85);
}

.pvr-media-modal__image,
.pvr-media-modal__video {
    height: 100%;
    z-index: 1;
    object-fit: contain;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    position: relative;
}

.pvr-media-modal__video-player {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pvr-media-modal__video-player .pvr-media-modal__video {
  width: auto;
  max-width: 100%;
  height: 100%;
}

.pvr-media-modal__video-player--native-fullscreen {
  width: 100vw;
  height: 100vh;
  background: #000;
}

.pvr-media-modal__video-player--native-fullscreen .pvr-media-modal__video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pvr-media-modal__video-player--native-fullscreen .pvr-media-modal__video-controls {
  display: none;
}

.pvr-media-modal__video-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: auto auto auto minmax(120px, 1fr) auto auto auto;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.42) 70%, rgba(0, 0, 0, 0) 100%);
}

.pvr-video-control-btn {
  appearance: none;
  border: none;
  background: transparent;
  color: #ffffff;
  border-radius: 999px;
  width: 34px;
  height: 34px;
  min-height: 34px;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pvr-video-control-btn:hover,
.pvr-video-control-btn:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  outline: none;
}

.pvr-video-control-btn__icon {
  width: 20px;
  height: 20px;
  display: block;
  fill: currentColor;
}

.pvr-video-control__time,
.pvr-video-control__preload {
  font-size: 12px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.95);
  font-variant-numeric: tabular-nums;
  user-select: none;
}

.pvr-video-control__preload {
  min-width: 42px;
  text-align: right;
  color: rgba(255, 255, 255, 0.84);
}

.pvr-video-control__seek-wrap {
  --pvr-buffered-pct: 0%;
  --pvr-played-pct: 0%;
  position: relative;
  height: 18px;
  display: flex;
  align-items: center;
}

.pvr-video-control__buffered {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.52) 0 var(--pvr-buffered-pct), rgba(255, 255, 255, 0.26) var(--pvr-buffered-pct) 100%);
  pointer-events: none;
}

.pvr-video-control__seek {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

.pvr-video-control__seek::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(to right, #ff2f52 0 var(--pvr-played-pct), rgba(255, 255, 255, 0) var(--pvr-played-pct) 100%);
}

.pvr-video-control__seek::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-top: -4px;
  background: #ffffff;
  border: none;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.15);
}

.pvr-video-control__seek::-moz-range-track {
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.pvr-video-control__seek::-moz-range-progress {
  height: 4px;
  border-radius: 999px;
  background: #ff2f52;
}

.pvr-video-control__seek::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.15);
}

.pvr-media-modal__nav {
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(2, 6, 23, 0.72);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.pvr-media-modal__nav-icon {
  width: 24px;
  height: 24px;
}

.pvr-media-modal__nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.pvr-media-modal__counter {
  position: absolute;
    left: 16px;
    top: 75px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(2, 6, 23, 0.72);
    color: #fff;
    font-size: 12px;
    line-height: 1;
    z-index: 2;
}

.pvr-media-modal__aside {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 0;
  overflow: hidden;
  background: white;
}

.pvr-media-modal__aside-scroll {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px;
  overflow-y: auto;
  height: 100%;
}

.pvr-media-modal__thumb-item.pvr-media-modal__thumb-item--active {
  border-color: var(--pvr-accent-color);
}

.pvr-media-modal__rating .pvr-star {
  width: 16px;
  height: 16px;
}

.pvr-media-modal__thumb-strip {
  display: flex;
  gap: 5px;
  padding: 4px 4px 10px;
  overflow-x: auto;
  scrollbar-width: thin;
  min-height: fit-content;
  scrollbar-color: rgba(148, 163, 184, 0.9) transparent;
}

.pvr-media-modal__thumb-strip::-webkit-scrollbar {
  height: 6px;
}

.pvr-media-modal__thumb-strip::-webkit-scrollbar-track {
  background: transparent;
}

.pvr-media-modal__thumb-strip::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.75);
  border-radius: 10px;
}

.pvr-media-modal__thumb-item {
  flex: 0 0 var(--pvr-thumb-w, 54px);
  height: var(--pvr-thumb-h, 54px);
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
  position: relative;
}

.pvr-media-modal__thumb-item:hover {
  border-color: var(--pvr-accent-color);
}

.pvr-media-modal__thumb-item.pvr-media-modal__thumb-item--video {
  position: relative;
}

.pvr-media-modal__thumb-item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

.pvr-media-modal__extra-fields,
.pvr-media-modal__content .pvr-review__extra-fields {
  background: #f8fafc;
  padding: 12px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pvr-media-modal__author {
  align-items: center;
}

.pvr-media-modal__badges {
  justify-content: flex-start;
}

.pvr-media-modal__content {
  margin: 0;
}

.pvr-media-modal__footer {
  align-items: flex-start;
}

.pvr-media-modal__reply-form {
  margin-top: 0;
}

.pvr-media-modal__replies {
  margin-top: 0;
}

.pvr-no-reviews {
  text-align: center;
  color: var(--pvr-muted-color);
  padding: 36px 18px;
  font-size: 14px;
  background: var(--pvr-surface-color);
  border: 1px dashed rgba(148, 163, 184, 0.4);
  border-radius: 20px;
}

.pvr-widget-reviews {
  position: relative;
  margin: 20px 0;
}

/* ============================================
   Grid Widget
   ============================================ */
.pvr-reviews-grid {
  display: grid;
  gap: 18px;
}

.pvr-reviews-grid__item {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.pvr-reviews-grid__item .pvr-review-item {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.pvr-reviews-grid__item .pvr-review-item > * {
  flex-shrink: 0;
}

.pvr-reviews-grid__item .pvr-review__content {
  flex: 1 1 auto;
  min-height: 0;
}

/* ============================================
   Carousel Widget
   ============================================ */
.ex-reviews__carousel-item {
  display: flex;
  flex-direction: column;
  align-self: stretch;
}

.ex-reviews__carousel-item .pvr-review-item {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
}

.ex-reviews__carousel-item .pvr-review-item > * {
  flex-shrink: 0;
}

.ex-reviews__carousel-item .pvr-review__content {
  flex: 1 1 auto;
  min-height: 0;
}

/* ============================================
   Shared Widget Styles
   ============================================ */
.pvr-widget-reviews .pvr-review__content {
  font-size: clamp(13px, 1.4vw, 15px);
}

.pvr-review__footer {
  margin-top: auto;
}

.pvr-widget-read-more {
  background: none;
  border: none;
  color: var(--pvr-accent-color, #2563eb);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  padding: 4px 0;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.pvr-widget-read-more:hover {
  opacity: 0.7;
  text-decoration: underline;
}

.pvr-reviews-carousel-wrapper {
  position: relative;
  padding-inline: 22px;
}

.pvr-reviews-carousel {
  display: flex;
  gap: 18px;
  overflow: hidden;
  padding: 2px 2px 14px;
  will-change: transform;
}

.pvr-carousel-controls {
  pointer-events: none;
}

.pvr-carousel-control {
  pointer-events: auto;
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(203, 213, 225, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--pvr-text-color);
  box-shadow: var(--pvr-card-shadow);
  transform: translateY(-50%);
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.pvr-carousel-control:hover,
.pvr-carousel-control:focus-visible {
  border-color: var(--pvr-accent-color);
  color: var(--pvr-accent-color);
  background: #ffffff;
  transform: translateY(-50%) scale(1.03);
  outline: none;
}

.pvr-carousel-control .pvr-icon {
  width: 18px;
  height: 18px;
}

.pvr-carousel-prev {
  left: 0;
}

.pvr-carousel-next {
  right: 0;
}

.pvr-reviews-carousel-wrapper .pvr-carousel-controls {
  pointer-events: none;
}

@media (min-width: 768px) {
  .pvr-reviews-wrapper {
    gap: 24px;
  }

  .pvr-overview {
    align-items: start;
  }

  .pvr-summary {
    grid-template-columns: minmax(180px, 220px) 1fr;
    align-items: start;
    gap: 20px;
    padding: 24px;
  }

  .pvr-review-item {
    padding: 20px 12px;
  }

  .pvr-form__row {
    grid-template-columns: 1fr 1fr;
  }

  .pvr-submit-btn {
    width: auto;
    justify-self: start;
  }

  .pvr-reviews-grid {
    gap: 20px;
  }

}

@media (max-width: 1440px) {
  .pvr-media-grid-modal__grid{
    grid-template-columns: repeat(5, minmax(0px, 1fr));
  }
}

@media (max-width: 1024px) {
  .pvr-media-grid-modal__grid{
    grid-template-columns: repeat(4, minmax(0px, 1fr));
  }
}

@media (max-width: 900px) {
  .pvr-media-modal {
    padding: 0;
  }

  .pvr-media-modal__dialog {
    grid-template-columns: 1fr;
    width: 100vw;
    height: 100vh;
    max-height: none;
    border-radius: 0;
  }

  .pvr-media-modal__media {
    height: 100vh;
  }

  .pvr-media-modal__image,
  .pvr-media-modal__video {
    max-width: none !important;
    width: 100%;
    height: auto;
    min-height: 60vh;
    object-fit: cover;
    object-position: center center;
  }

  .pvr-media-modal__aside {
    display: none;
  }

  .pvr-media-modal__all-media {
    left: 12px;
    max-width: calc(100vw - 140px);
  }

  .pvr-media-modal__counter {
    left: 12px;
    top: 70px;
  }

  .pvr-media-modal__video-controls {
    grid-template-columns: auto auto auto minmax(80px, 1fr) auto auto auto;
    gap: 6px;
    padding: 8px 10px;
    bottom: 0px;
  }

  .pvr-video-control__time,
  .pvr-video-control__preload {
    font-size: 11px;
  }

  .pvr-media-modal__close {
    top: 12px;
    right: 12px;
    z-index: 10;
    width: 36px;
    height: 36px;
  }

  .pvr-media-modal__expand {
    top: 60px;
    right: 12px;
    z-index: 10;
    width: 36px;
    height: 36px;
  }

  .pvr-media-modal__mobile-bar {
    display: flex;
    flex-direction: column;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.45) 70%, transparent 100%);
    padding: 40px 16px 16px;
    cursor: pointer;
    transition: bottom 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .pvr-video-modal .pvr-media-modal__mobile-bar {
    bottom: 50px;
  }

  .pvr-media-modal__mobile-bar-info {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .pvr-media-modal__mobile-bar-avatar {
    flex-shrink: 0;
  }

  .pvr-media-modal__mobile-bar-avatar .pvr-review__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
  }

  .pvr-media-modal__mobile-bar-avatar .pvr-review__avatar--placeholder {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .pvr-media-modal__mobile-bar-meta {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .pvr-media-modal__mobile-bar-name {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
  }

  .pvr-media-modal__mobile-bar-rating .pvr-star {
    width: 12px;
    height: 12px;
  }

  .pvr-media-modal__mobile-bar-rating .pvr-star--full {
    color: #f59e0b;
  }

  .pvr-media-modal__mobile-bar-rating .pvr-star--empty {
    color: rgba(255,255,255,0.3);
  }

  .pvr-media-modal__mobile-bar-expand {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease;
  }

  .pvr-media-modal__mobile-bar-expand:active {
    transform: scale(1.15);
  }

  .pvr-media-modal__mobile-bar-expand svg {
    transform: rotate(180deg);
  }

  .pvr-media-modal__mobile-bar-text {
    color: rgba(255,255,255,0.8);
    font-size: 12px;
    line-height: 1.4;
    margin-top: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 2.8em;
  }

  .pvr-media-modal__mobile-slide {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 15;
    height: 80vh;
    background: #fff;
    border-radius: 16px 16px 0 0;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 -8px 30px rgba(0,0,0,0.25);
  }

  .pvr-media-modal__mobile-slide--open {
    transform: translateY(0);
  }

  .pvr-media-modal__mobile-slide-header {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px 10px;
    position: relative;
  }

  .pvr-media-modal__mobile-slide-handle {
    width: 36px;
    height: 4px;
    border-radius: 2px;
    background: #d1d5db;
  }

  .pvr-media-modal__mobile-slide-close {
    position: absolute;
    right: 8px;
    top: 4px;
    width: 34px;
    height: 34px;
    padding: 0;
    border: none;
    border-radius: 50%;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    svg{
      width: 18px;
      height: 18px;
      fill: currentColor;
    }
  }

  .pvr-media-modal__mobile-slide-close:hover {
    background: rgba(0,0,0,0.72);
  }

  .pvr-media-modal__mobile-slide-scroll {
    flex: 1;
    overflow-y: auto;
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .pvr-media-modal__mobile-slide-thumbs {
    flex-shrink: 0;
    padding: 12px 16px 24px;
    border-top: 1px solid var(--pvr-border-color);
  }

  .pvr-media-modal__mobile-thumb-strip {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .pvr-media-modal__mobile-thumb-strip .pvr-media-modal__thumb-item {
    flex: 0 0 54px;
    height: 54px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s;
    position: relative;
  }

  .pvr-media-modal__mobile-thumb-strip .pvr-media-modal__thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .pvr-media-modal__mobile-thumb-strip .pvr-media-modal__thumb-item--active {
    border-color: var(--pvr-accent-color);
  }

  .pvr-media-modal__mobile-thumb-strip .pvr-media-modal__thumb-item--video .pvr-review-media-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 22px;
    height: 22px;
    background: rgba(0,0,0,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    pointer-events: none;
  }

  .pvr-media-modal__mobile-thumb-strip .pvr-media-modal__thumb-item--video .pvr-review-media-play svg {
    width: 14px;
    height: 14px;
  }

  .pvr-media-modal__mobile-slide-scroll .pvr-media-modal__author {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
  }

  .pvr-media-modal__mobile-slide-scroll .pvr-media-modal__author .pvr-review__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
  }

  .pvr-media-modal__mobile-slide-scroll .pvr-media-modal__author .pvr-review__avatar--placeholder {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .pvr-media-modal__mobile-slide-date {
    font-size: 12px;
    color: var(--pvr-muted-color);
  }

  .pvr-media-modal__mobile-slide-scroll .pvr-media-modal__content {
    margin: 0;
    padding: 12px 14px;
    background: var(--pvr-surface-color);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.7;
  }

  .pvr-media-modal__mobile-slide-scroll .pvr-media-modal__footer {
    margin-top: 4px;
  }

  .pvr-media-modal__mobile-slide-scroll .pvr-media-modal__replies {
    margin-top: 0;
  }

  .pvr-reviews-carousel-wrapper {
    padding-inline: 0;
  }

  .pvr-carousel-controls {
    display: none;
  }
}

.pvr-media-modal__nav--prev {
  left: 12px;
}

.pvr-media-modal__nav--next {
  right: calc(33.333% + 12px);
}

@media (max-width: 900px) {
  .pvr-media-modal__nav--prev {
    left: 2px;
  }

  .pvr-media-modal__nav--next {
    right: 2px;
  }
  .pvr-media-modal__nav{
    background: rgb(2 6 23 / 32%);
    width: 40px;
    height: 40px;
  }
}

  .pvr-media-modal__video-controls {
    grid-template-columns: auto auto auto minmax(80px, 1fr) auto auto auto;
    gap: 6px;
    padding: 8px 10px;
  }

  .pvr-video-control__time,
  .pvr-video-control__preload {
    font-size: 11px;
  }
  .pvr-media-grid-modal__dialog{
    padding: 0;
  }
  .pvr-media-grid-modal__title{
    display: none;
  }
  .pvr-media-grid-modal__close{
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 11;
  }

@media (max-width: 640px) {
  .pvr-media-grid-modal__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100vw;
  }
  .pvr-media-modal__all-media {
    left: 10px;
    max-width: calc(100vw - 136px);
    padding-right: 12px;
  }
}

@media (min-width: 1024px) {
  .pvr-reviews-wrapper {
    gap: 28px;
    padding: 1rem;
  }
}

.pvr-review__avatar--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--pvr-primary-color, #2ecc71);
    color: #fff;
    font-weight: 700;
    font-size: calc(var(--pvr-avatar-size, 48px) * 0.4);
    text-transform: uppercase;
    aspect-ratio: 1/1;
    width: var(--pvr-avatar-size, 48px);
    height: var(--pvr-avatar-size, 48px);
}

/* My Avatar Page */
.pvr-my-avatar {
    max-width: 400px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.pvr-my-avatar__preview {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    margin: 20px 0;
    border: 3px solid var(--pvr-border-color);
    position: relative;
}
.pvr-my-avatar__preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pvr-account-avatar-placeholder {
    font-size: 64px;
    line-height: 1;
}
.pvr-my-avatar__upload {
    margin-top: 16px;
}

.pvr-reviews-wrapper :focus {
    outline: none;
}

.pvr-reviews-wrapper :focus-visible {
    outline: 2px solid var(--pvr-primary-color, #7F77DD);
    outline-offset: 2px;
    border-radius: 12px;
}

.pvr-btn--secondary {
    background: transparent;
    border: 1px solid var(--pvr-primary-color, #7F77DD);
    color: var(--pvr-primary-color, #7F77DD);
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.pvr-btn--secondary:hover {
    background: rgba(127, 119, 221, 0.08);
}

.pvr-btn--secondary:active {
    transform: scale(0.97);
}

/* My Reviews Page */
.pvr-my-reviews__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}
.pvr-my-review-card {
    display: flex;
    gap: 20px;
    background: var(--pvr-card-bg);
    border: 1px solid var(--pvr-border-color);
    border-radius: var(--pvr-radius);
    padding: 16px;
    box-shadow: var(--pvr-card-shadow);
    position: relative;
    overflow: hidden;
}
.pvr-my-review-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(37, 99, 235, 0), rgba(37, 99, 235, 0.55), rgba(14, 165, 233, 0));
}
.pvr-my-review-card__product {
    flex: 0 0 100px;
}
.pvr-my-review-card__product-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--pvr-border-color);
}
.pvr-my-review-card__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.pvr-my-review-card__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    flex-wrap: wrap;
}
.pvr-my-review-card__product-name {
    font-weight: 700;
    font-size: 15px;
    color: var(--pvr-text-color);
    text-decoration: none;
}
.pvr-my-review-card__product-name:hover {
    color: var(--pvr-accent-color);
}
.pvr-my-review-card__date {
    font-size: 12px;
    color: var(--pvr-muted-color);
    white-space: nowrap;
}
.pvr-my-review-card__rating {
    display: flex;
    align-items: center;
    gap: 4px;
}
.pvr-my-review-card__pending {
    font-size: 12px;
    color: #dc2626;
    margin-left: 8px;
    font-weight: 600;
}
.pvr-my-review-card__title {
    font-weight: 600;
    font-size: 14px;
    color: var(--pvr-text-color);
}
.pvr-my-review-card__content {
    font-size: 14px;
    line-height: 1.6;
    color: var(--pvr-text-color);
    background: var(--pvr-surface-color);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 12px;
    padding: 12px 14px;
}
.pvr-my-review-card__extra {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 13px;
}
.pvr-my-review-card__pros {
    color: #059669;
}
.pvr-my-review-card__cons {
    color: #dc2626;
}
.pvr-my-review-card__media {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.pvr-my-review-card__media-item {
    flex: 0 0 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--pvr-border-color);
    position: relative;
}
.pvr-my-review-card__media-item img,
.pvr-my-review-card__media-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.pvr-my-review-card__media-item--video .pvr-review-media-play {
    width: 24px;
    height: 24px;
}
.pvr-my-review-card__media-item--video .pvr-review-media-play svg {
    width: 16px;
    height: 16px;
}
.pvr-my-reviews__pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}
.pvr-my-reviews__pagination .pvr-btn {
    border: 1px solid var(--pvr-border-color);
    border-radius: 8px;
    background: #fff;
    color: var(--pvr-text-color);
    min-width: 40px;
    text-decoration: none;
}
.pvr-my-reviews__pagination .pvr-btn--active {
    background: var(--pvr-accent-color);
    color: #fff;
    border-color: var(--pvr-accent-color);
}

@media (max-width: 640px) {
    .pvr-my-review-card {
        flex-direction: column;
    }
    .pvr-my-review-card__product {
        flex: 0 0 auto;
    }
    .pvr-my-review-card__product-img {
        width: 80px;
        height: 80px;
    }
}

.pvr-compress-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pvr-fade-in 0.2s ease;
}

@keyframes pvr-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

.pvr-compress-modal {
    background: var(--pvr-card-bg, #fff);
    border-radius: 20px;
    padding: 28px 24px 24px;
    max-width: 440px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    animation: pvr-modal-slide-up 0.25s ease;
    position: relative;
    overflow: hidden;
}

@keyframes pvr-modal-slide-up {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.pvr-compress-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 4px;
}

.pvr-compress-header__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--pvr-gradient-soft);
    color: var(--pvr-accent-color, #2563eb);
    flex-shrink: 0;
}

.pvr-compress-header__text {
    font-size: 17px;
    font-weight: 600;
    color: var(--pvr-text-color, #111827);
}

.pvr-compress-file-info {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    color: var(--pvr-muted-color, #6b7280);
    background: var(--pvr-surface-color, #f8fafc);
    border: 1px solid var(--pvr-border-color, #e5e7eb);
    border-radius: 20px;
    padding: 4px 14px;
    margin: 10px 0 6px;
}

.pvr-compress-info {
    font-size: 12.5px;
    color: var(--pvr-muted-color, #6b7280);
    margin: 0 0 10px;
    line-height: 1.4;
}

.pvr-compress-preview {
    width: 100%;
    max-height: 240px;
    background: #000;
    border-radius: var(--pvr-radius, 12px);
    margin: 0 0 16px;
    display: block;
}

.pvr-compress-progress {
    margin: 0 0 4px;
}

.pvr-compress-progress__track {
    width: 100%;
    height: 8px;
    border-radius: 999px;
    background: var(--pvr-border-color, #e5e7eb);
    overflow: hidden;
    position: relative;
}

.pvr-compress-progress__fill {
    height: 100%;
    border-radius: 999px;
    background: var(--pvr-gradient-accent);
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    min-width: 0;
}

.pvr-compress-progress__shimmer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.35) 50%,
        transparent 100%
    );
    animation: pvr-shimmer 1.8s ease-in-out infinite;
    z-index: 2;
    border-radius: 999px;
}

@keyframes pvr-shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(200%);
    }
}

.pvr-compress-progress__text {
    font-size: 12.5px;
    color: var(--pvr-muted-color, #6b7280);
    margin: 8px 0 0;
    min-height: 18px;
}

.pvr-compress-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
}

.pvr-compress-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.15s ease, color 0.15s ease;
    font-family: inherit;
}

.pvr-compress-btn:active {
    transform: scale(0.92);
}

.pvr-compress-btn--icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--pvr-surface-color, #f8fafc);
    color: var(--pvr-text-color, #111827);
    border: 1px solid var(--pvr-border-color, #e5e7eb);
}

.pvr-compress-btn--icon:hover {
    background: var(--pvr-border-color, #e5e7eb);
}

.pvr-compress-btn--icon:focus-visible {
    outline: 2px solid var(--pvr-accent-color, #2563eb);
    outline-offset: 2px;
}

.pvr-compress-btn--cancel {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.pvr-compress-btn--cancel:hover {
    background: #fee2e2;
    border-color: #f87171;
}

.pvr-compress-btn--cancel:focus-visible {
    outline: 2px solid #dc2626;
    outline-offset: 2px;
}
