.pccr-section,
.pccr-section * {
  box-sizing: border-box;
}

.pccr-section {
  --pccr-green: var(--cps-green, #009900);
  --pccr-text: #0b1526;
  --pccr-muted: #5f6b7a;
  --pccr-border: #e1e5ea;
  --pccr-soft: #f3f5f7;
  --pccr-star: #f8a94b;
  width: 100%;
  color: var(--pccr-text);
  font-family: Arial, Helvetica, sans-serif;
  background: transparent;
  clear: both;
}

.pccr-inner {
  width: min(100%, 1500px);
  margin: 0 auto;
  padding: 18px 0 28px;
}

.pccr-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.pccr-title {
  margin: 0;
  color: var(--pccr-text);
  font-size: clamp(22px, 1.8vw, 28px);
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: .005em;
}

.pccr-divider {
  width: 100%;
  height: 1px;
  margin: 18px 0 20px;
  background: var(--pccr-border);
}

.pccr-summary {
  max-width: 730px;
}

.pccr-updated-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 18px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(0, 153, 0, .09);
  color: var(--pccr-green);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.pccr-clock {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  font-size: 14px;
  line-height: 1;
}

.pccr-rating-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 8px;
}

.pccr-rating-number {
  color: var(--pccr-text);
  font-size: clamp(30px, 3.2vw, 40px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: .005em;
}

.pccr-stars,
.pccr-card-stars {
  display: inline-flex;
  align-items: center;
  color: var(--pccr-star);
  line-height: 1;
}

.pccr-star-rating {
  --pccr-rating-pct: 0%;
  position: relative;
  display: inline-block;
  color: #d7dce3;
  font-size: 25px;
  line-height: 1;
  letter-spacing: 2px;
  white-space: nowrap;
}

.pccr-star-base,
.pccr-star-fill {
  display: block;
}

.pccr-star-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--pccr-rating-pct);
  overflow: hidden;
  color: var(--pccr-star);
  white-space: nowrap;
}

.pccr-card-stars .pccr-star-rating {
  font-size: 16px;
  letter-spacing: 1px;
}

.pccr-rating-count {
  margin: 0 0 22px;
  color: var(--pccr-muted);
  font-size: 17px;
  line-height: 1.55;
}

.pccr-trust-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-width: 730px;
  margin: 0 0 28px;
  padding: 22px 24px;
  border-radius: 8px;
  background: #eef1f4;
}

.pccr-trust-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--pccr-green);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
}

.pccr-trust-copy strong {
  display: block;
  margin: 4px 0 12px;
  color: var(--pccr-text);
  font-size: 19px;
  line-height: 1.3;
  font-weight: 600;
}

.pccr-trust-copy p {
  margin: 0;
  color: var(--pccr-muted);
  font-size: 16px;
  line-height: 1.5;
}

.pccr-source-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0 0 28px;
  color: var(--pccr-text);
  font-size: 17px;
  line-height: 1.4;
  font-weight: 800;
}

.pccr-source-line strong {
  color: var(--pccr-green);
  font-size: 16px;
  letter-spacing: .02em;
}

.pccr-review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 78px;
}

.pccr-review-card {
  min-width: 0;
  color: var(--pccr-text);
}

.pccr-review-card.is-hidden {
  display: none;
}

.pccr-reviewer-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 12px;
}

.pccr-avatar {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #eef1f5;
  color: #b7c0cb;
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
}

.pccr-reviewer-meta h3 {
  margin: 0 0 8px;
  color: var(--pccr-text);
  font-size: 16px;
  line-height: 1.3;
  font-weight: 600;
}

.pccr-reviewer-meta p {
  margin: 0;
  color: var(--pccr-muted);
  font-size: 15px;
  line-height: 1.35;
}

.pccr-card-rating-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0 0 14px;
}

.pccr-card-date {
  flex: 0 0 auto;
  color: var(--pccr-muted);
  font-size: 14px;
  line-height: 1.2;
}

.pccr-review-text {
  color: var(--pccr-text);
  font-size: 17px;
  line-height: 1.5;
}

.pccr-review-text p {
  margin: 0 0 12px;
}

.pccr-review-text p:last-child {
  margin-bottom: 0;
}

.pccr-review-images {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 16px 0 0;
}

.pccr-review-images a {
  display: block;
  width: 112px;
  height: 78px;
  border-radius: 7px;
  overflow: hidden;
  background: var(--pccr-soft);
  text-decoration: none;
}

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

.pccr-review-reply {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-left: 3px solid var(--pccr-green);
  border-radius: 0 8px 8px 0;
  background: rgba(0, 153, 0, .06);
  color: var(--pccr-text);
}

.pccr-review-reply strong {
  display: block;
  margin: 0 0 7px;
  color: var(--pccr-green);
  font-size: 14px;
  line-height: 1.25;
  font-weight: 700;
}

.pccr-review-reply div {
  color: var(--pccr-muted);
  font-size: 15px;
  line-height: 1.5;
}

.pccr-review-reply p {
  margin: 0 0 10px;
}

.pccr-review-reply p:last-child {
  margin-bottom: 0;
}

.pccr-helpful-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 18px 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--pccr-text);
  font: inherit;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 800;
  cursor: pointer;
}

.pccr-helpful-button:hover,
.pccr-helpful-button:focus-visible {
  color: var(--pccr-green);
  outline: none;
}

.pccr-actions {
  margin: 34px 0 0;
}

.pccr-load-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border: 1px solid var(--pccr-border);
  border-radius: 999px;
  background: #fff;
  color: var(--pccr-text);
  font: inherit;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
  cursor: pointer;
  transition: border-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.pccr-load-more:hover,
.pccr-load-more:focus-visible {
  border-color: var(--pccr-green);
  color: var(--pccr-green);
  box-shadow: 0 0 0 4px rgba(0, 153, 0, .1);
  outline: none;
}

.pccr-empty {
  max-width: 700px;
  margin: 0;
  padding: 24px;
  border: 1px dashed var(--pccr-border);
  border-radius: 10px;
  background: #fff;
}

.pccr-empty strong {
  display: block;
  margin: 0 0 8px;
  color: var(--pccr-text);
  font-size: 18px;
  line-height: 1.3;
  font-weight: 800;
}

.pccr-empty p {
  margin: 0;
  color: var(--pccr-muted);
  font-size: 15px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .pccr-review-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .pccr-inner {
    padding: 16px 0 24px;
  }

  .pccr-divider {
    margin: 16px 0 18px;
  }

  .pccr-rating-row {
    gap: 12px;
  }

  .pccr-star-rating {
    font-size: 21px;
  }

  .pccr-card-stars .pccr-star-rating {
    font-size: 16px;
  }

  .pccr-trust-box {
    padding: 18px;
  }

  .pccr-trust-icon {
    width: 36px;
    height: 36px;
    font-size: 19px;
  }

  .pccr-trust-copy strong {
    font-size: 18px;
  }

  .pccr-reviewer-row {
    gap: 12px;
  }

  .pccr-avatar {
    width: 52px;
    height: 52px;
    font-size: 21px;
  }

  .pccr-card-rating-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .pccr-review-images a {
    width: 94px;
    height: 68px;
  }
}

.pccr-helpful-button.is-voted {
  color: var(--pccr-green);
  cursor: default;
}

.pccr-helpful-button.is-loading {
  opacity: .64;
  cursor: wait;
}

.pccr-helpful-button:disabled {
  cursor: default;
}

.pccr-helpful-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  color: var(--pccr-muted);
  font-weight: 700;
}

.pccr-helpful-count:not(.is-empty)::before {
  content: '(';
}

.pccr-helpful-count:not(.is-empty)::after {
  content: ')';
}

.pccr-helpful-count.is-empty {
  display: none;
}

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

.pccr-modal {
  --pccr-green: var(--cps-green, #009900);
  --pccr-text: #0b1526;
  --pccr-muted: #5f6b7a;
  --pccr-border: #e1e5ea;
  --pccr-soft: #f3f5f7;
  --pccr-star: #f8a94b;
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 42px;
  color: var(--pccr-text);
  font-family: inherit;
}

.pccr-modal.is-open {
  display: flex;
}

.pccr-modal[aria-hidden="true"] {
  display: none;
}

.pccr-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 21, 38, .22);
  backdrop-filter: blur(1px);
}

.pccr-modal-panel {
  position: relative;
  z-index: 1;
  width: min(96vw, 1580px);
  max-height: min(86vh, 820px);
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 26px 80px rgba(11, 21, 38, .22);
}

.pccr-modal-close {
  position: absolute;
  top: 24px;
  right: 28px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #88919e;
  font: inherit;
  font-size: clamp(24px, 2vw, 28px);
  line-height: 1.12;
  cursor: pointer;
}

.pccr-modal-close:hover,
.pccr-modal-close:focus-visible {
  color: var(--pccr-text);
  background: var(--pccr-soft);
  outline: none;
}

.pccr-modal-scroll {
  max-height: min(86vh, 820px);
  overflow: auto;
  padding: 46px 58px 44px;
  scrollbar-width: thin;
}

.pccr-modal-title {
  margin: 0 0 48px;
  color: var(--pccr-text);
  font-size: clamp(22px, 1.8vw, 26px);
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: .005em;
}

.pccr-modal-layout {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.pccr-modal-summary {
  position: sticky;
  top: 0;
}

.pccr-rating-bars {
  display: grid;
  gap: 12px;
  margin: 20px 0 28px;
}

.pccr-rating-bar-row {
  display: grid;
  grid-template-columns: 18px 18px minmax(0, 1fr) 46px;
  align-items: center;
  gap: 10px;
  color: var(--pccr-text);
  font-size: 18px;
  line-height: 1.2;
}

.pccr-rating-bar-star {
  color: var(--pccr-star);
  font-size: 18px;
  line-height: 1;
}

.pccr-rating-track {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: #e0e5eb;
  overflow: hidden;
}

.pccr-rating-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--pccr-star);
}

.pccr-rating-percent {
  color: var(--pccr-muted);
  text-align: right;
  font-size: 17px;
}

.pccr-modal-trust-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border-radius: 8px;
  background: #eef1f4;
}

.pccr-modal-trust-box .pccr-trust-copy strong {
  font-size: 20px;
}

.pccr-modal-main {
  min-width: 0;
}

.pccr-modal-brand {
  display: grid;
  justify-items: center;
  gap: 18px;
  width: min(100%, 520px);
  margin: 0 auto 34px;
  color: var(--pccr-text);
  text-align: center;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 600;
}

.pccr-modal-brand::after {
  content: '';
  display: block;
  width: min(220px, 70%);
  height: 3px;
  background: var(--pccr-text);
}

.pccr-modal-brand strong {
  color: var(--pccr-green);
  font-size: clamp(22px, 1.8vw, 26px);
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: -.01em;
  text-transform: uppercase;
}

.pccr-modal-toolbar {
  display: flex;
  justify-content: flex-end;
  margin: 0 0 34px;
}

.pccr-modal-toolbar label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--pccr-border);
  border-radius: 6px;
  background: #fff;
  color: var(--pccr-text);
  font-size: 15px;
  font-weight: 700;
}

.pccr-modal-toolbar select {
  max-width: 190px;
  border: 0;
  background: transparent;
  color: var(--pccr-text);
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  outline: none;
  cursor: pointer;
}

.pccr-modal-review-list {
  display: grid;
  gap: 0;
}

.pccr-modal-review-card {
  min-width: 0;
  padding: 0 0 34px;
  margin: 0 0 34px;
  border-bottom: 1px solid var(--pccr-border);
  color: var(--pccr-text);
}

.pccr-modal-review-card.is-modal-hidden {
  display: none;
}

.pccr-modal-review-card .pccr-review-text {
  max-width: 860px;
}

.pccr-modal-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 20px 0 0;
}

.pccr-modal-pagination button,
.pccr-modal-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--pccr-text);
  font: inherit;
  font-size: 17px;
  line-height: 1;
  font-weight: 800;
}

.pccr-modal-pagination button {
  cursor: pointer;
}

.pccr-modal-pagination button:hover,
.pccr-modal-pagination button:focus-visible {
  color: var(--pccr-green);
  outline: none;
}

.pccr-modal-pagination button.is-active {
  background: var(--pccr-green);
  color: #fff;
}

.pccr-modal-pagination button:disabled {
  color: #a1a9b3;
  cursor: default;
}

.pccr-pagination-prev,
.pccr-pagination-next {
  font-size: 30px !important;
  font-weight: 300 !important;
}

@media (max-width: 1100px) {
  .pccr-modal {
    padding: 24px;
  }

  .pccr-modal-scroll {
    padding: 38px 34px 34px;
  }

  .pccr-modal-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .pccr-modal-summary {
    position: static;
  }

  .pccr-modal-brand {
    justify-items: start;
    width: auto;
    margin: 0 0 26px;
    text-align: left;
  }
}

@media (max-width: 700px) {
  .pccr-modal {
    align-items: stretch;
    padding: 0;
  }

  .pccr-modal-panel {
    width: 100%;
    max-height: 100vh;
    border-radius: 0;
  }

  .pccr-modal-scroll {
    max-height: 100vh;
    padding: 32px 18px 28px;
  }

  .pccr-modal-close {
    top: 14px;
    right: 14px;
  }

  .pccr-modal-title {
    margin-bottom: 28px;
    padding-right: 48px;
  }

  .pccr-modal-toolbar {
    justify-content: stretch;
  }

  .pccr-modal-toolbar label {
    width: 100%;
    justify-content: space-between;
  }

  .pccr-modal-brand strong {
    font-size: 22px;
    line-height: 1.15;
  }

  .pccr-rating-bar-row {
    grid-template-columns: 16px 16px minmax(0, 1fr) 40px;
    gap: 8px;
    font-size: 15px;
  }

  .pccr-modal-pagination {
    gap: 4px;
  }

  .pccr-modal-pagination button,
  .pccr-modal-pagination span {
    min-width: 38px;
    height: 38px;
    font-size: 15px;
  }
}

.cps-store-content .pccr-store-section,
.pccr-store-section {
  margin-top: 18px;
}

.cps-store-content .pccr-store-section .pccr-inner {
  padding-top: 10px;
  padding-bottom: 30px;
}
