body {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  color: #111 !important;
}

@media (max-width: 900px) {
  .reviews-section {
    padding: 10px 0px 0;
  }

  #reviewsMount {
    padding: 0px 10px;
  }
}

.reviews-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.reviews-header {
  text-align: center;
}

.summary-rating-row {
  display: grid;
  gap: 10px;
}

.overall-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

#review-avg-score {
  font-size: 28px;
  font-weight: 800;
  color: #000;
}

.stars-row {
  color: #389692;
  font-size: 24px;
  letter-spacing: 2px;
}

.review-count-text {
  font-size: 14px;
  color: #666;
}

.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  font-size: 12px;
  color: #444;
}

@media (min-width: 900px) {
  .summary-rating-row {
    grid-template-columns: 180px minmax(0, 1fr);
    align-items: center;
    width: 100%;
    margin: 0 auto;
    gap: 15px;
  }
}

.star-label {
  display: flex;
  align-items: center;
  width: 20px;
}

.star-label::after {
  content: "★";
  color: #389692;
  margin-left: 2px;
}

.bar-track {
  flex: 1;
  height: 10px;
  background: #f0f0f0;
  border-radius: 10px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: #389692;
  border-radius: 10px;
}

.bar-percent {
  width: 30px;
  text-align: right;
  font-weight: 600;
}

.write-review-btn {
  width: 60%;
  margin: 0 auto;
  background: #389692;
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: 15px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}

.summary-review-media-wall {
  --summary-media-thumb-size: 56px;
  --summary-media-gap: 6px;
  width: 60%;
  margin: 0 auto;
  display: none;
  align-items: center;
  gap: var(--summary-media-gap);
  flex-wrap: nowrap;
  overflow: hidden;
  padding-top: 10px;
}

.summary-review-media-thumb-btn {
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  flex: 0 0 auto;
}

.summary-review-media-thumb {
  width: var(--summary-media-thumb-size);
  height: var(--summary-media-thumb-size);
  border-radius: 8px;
  object-fit: cover;

  display: block;
}

.summary-review-see-more {
  width: var(--summary-media-thumb-size);
  height: var(--summary-media-thumb-size);
  border-radius: 8px;
  border: 1px solid #d9d9d9;
  background: #fff;
  color: #222;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  flex: 0 0 auto;
}

.summary-media-overlay {
  --summary-overlay-ink: #142332;
  --summary-overlay-muted: #5f7284;
  --summary-overlay-accent: #389692;
  --summary-overlay-star: #f3a641;
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 3vw, 28px);
  background:
    radial-gradient(circle at 12% 18%, rgba(56, 150, 146, 0.22), transparent 48%),
    radial-gradient(circle at 86% 82%, rgba(243, 166, 65, 0.16), transparent 44%),
    rgba(8, 12, 18, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 20000;
}

.summary-media-overlay.show {
  display: flex;
  animation: summary-overlay-fade-in 0.22s ease;
}

@keyframes summary-overlay-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.summary-media-modal {
  position: relative;
  width: min(1080px, 90vw);
  height: min(820px, 90dvh);
  max-height: 90dvh;
  overflow: hidden;
  background: linear-gradient(180deg, #fcfdff 0%, #eef3f8 100%);
  border-radius: 24px;
  display: grid;
  grid-template-columns: minmax(0, 58%) minmax(0, 42%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 30px 80px rgba(5, 12, 22, 0.46);
}

.summary-media-left-panel {
  background: linear-gradient(145deg, #0d1827 0%, #14283c 55%, #113746 100%);
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.summary-media-main-stage {
  flex: 1 1 0;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 2vw, 24px);
}

.summary-media-main-stage img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(160deg, #0b1724 0%, #060d16 100%);
  box-shadow: 0 20px 34px rgba(2, 8, 14, 0.45);
  animation: summary-media-image-in 0.2s ease;
}

@keyframes summary-media-image-in {
  from {
    opacity: 0.5;
    transform: scale(0.98);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.summary-media-thumb-strip {
  flex: 0 0 auto;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 12px 16px 16px;
  background: linear-gradient(180deg, rgba(3, 9, 16, 0) 0%, rgba(3, 9, 16, 0.42) 100%);
}

.summary-media-thumb-strip::-webkit-scrollbar {
  height: 6px;
}

.summary-media-thumb-strip::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.35);
  border-radius: 999px;
}

.summary-media-thumb-btn {
  width: 74px;
  height: 74px;
  padding: 0;
  flex: 0 0 auto;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  cursor: pointer;
  border-radius: 13px;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.summary-media-thumb-btn.active {
  border-color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.summary-media-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.summary-media-right-panel {
  position: relative;
  min-height: 0;
  overflow-y: auto;
  padding: clamp(20px, 2.5vw, 28px);
  background: linear-gradient(180deg, #fcfeff 0%, #ecf2f8 100%);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.summary-media-review-meta-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-right: 56px;
}

.summary-media-review-stars {
  color: var(--summary-overlay-star);
  letter-spacing: 1px;
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
}

.summary-media-review-date {
  font-size: 12px;
  color: var(--summary-overlay-muted);
  background: #ffffff;
  border: 1px solid rgba(20, 35, 50, 0.15);
  border-radius: 999px;
  padding: 4px 10px;
  white-space: nowrap;
}

.summary-media-review-user-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.summary-media-user-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, #389692 0%, #2f6f93 100%);
  box-shadow: 0 10px 20px rgba(47, 111, 147, 0.26);
  color: #fff;
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
}

.summary-media-review-user-meta {
  min-width: 0;
}

.summary-media-review-user-line {
  display: flex;
  align-items: center;
  gap: 6px;
}

.summary-media-review-user {
  font-size: 15px;
  font-weight: 700;
  color: var(--summary-overlay-ink);
}

.summary-media-verified-badge {
  background: rgba(56, 150, 146, 0.12);
  border: 1px solid rgba(56, 150, 146, 0.25);
  color: #1f6f6b;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 999px;
  line-height: 1;
}

.summary-media-review-country {
  margin-top: 4px;
  font-size: 12px;
  color: var(--summary-overlay-muted);
}

.summary-media-review-title {
  margin: 4px 0 0;
  font-size: 18px;
  line-height: 1.28;
  color: var(--summary-overlay-ink);
  font-weight: 700;
}

.summary-media-review-text {
  margin: 0;
  font-size: 15px;
  color: #2a3b4a;
  line-height: 1.65;
  white-space: pre-line;
}

.summary-media-review-nav {
  margin-top: auto;
  display: grid;
  grid-template-columns: minmax(96px, max-content) 1fr minmax(96px, max-content);
  align-items: center;
  border-top: 1px solid rgba(20, 35, 50, 0.12);
  padding-top: 14px;
  gap: 10px;
}

.summary-media-review-counter {
  font-size: 12px;
  color: var(--summary-overlay-muted);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.04em;
}

.summary-media-nav-btn {
  border: 1px solid rgba(20, 35, 50, 0.2);
  background: #fff;
  color: var(--summary-overlay-ink);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.summary-media-nav-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  border-color: rgba(56, 150, 146, 0.48);
  box-shadow: 0 8px 16px rgba(20, 35, 50, 0.12);
}

.summary-media-nav-btn:focus-visible {
  outline: 2px solid rgba(56, 150, 146, 0.55);
  outline-offset: 2px;
}

.summary-media-nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  box-shadow: none;
}

.summary-media-close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(7, 12, 18, 0.58);
  color: #fff;
  border-radius: 999px;
  font-size: 27px;
  line-height: 0.95;
  cursor: pointer;
  z-index: 3;
  display: grid;
  place-items: center;
  transition: transform 0.18s ease, background-color 0.18s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.summary-media-close-btn:hover {
  transform: rotate(90deg);
  background: rgba(7, 12, 18, 0.78);
}

.summary-media-close-btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 2px;
}

body.summary-media-open {
  overflow: hidden;
  overscroll-behavior: none;
}

@media (max-width: 900px) {
  .summary-media-overlay {
    padding: 8px;
    align-items: center;
  }

  .summary-media-modal {
    width: min(760px, 90vw);
    height: min(900px, 90dvh);
    max-height: 90dvh;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 50%) minmax(0, 50%);
    border-radius: 20px;
  }

  .summary-media-left-panel {
    min-height: 0;
  }

  .summary-media-main-stage {
    padding: 10px;
    min-height: 0;
  }

  .summary-media-thumb-strip {
    gap: 8px;
    padding: 10px 12px 12px;
    overflow-y: hidden;
  }

  .summary-media-right-panel {
    min-height: 0;
    overflow-y: auto;
    padding: 18px 16px 16px;
    gap: 10px;
  }

  .summary-media-thumb-btn {
    width: 60px;
    height: 60px;
    border-radius: 11px;
  }

  .summary-media-review-meta-top {
    padding-right: 52px;
  }

  .summary-media-review-stars {
    font-size: 16px;
  }

  .summary-media-review-date {
    font-size: 12px;
  }

  .summary-media-review-user {
    font-size: 14px;
  }

  .summary-media-user-icon {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .summary-media-review-title {
    font-size: 16px;
  }

  .summary-media-review-text {
    font-size: 14px;
    line-height: 1.55;
  }

  .summary-media-review-nav {
    grid-template-columns: max-content 1fr max-content;
    gap: 8px;
    padding-top: 12px;
  }

  .summary-media-review-counter {
    font-size: 11px;
  }

  .summary-media-nav-btn {
    min-height: 40px;
    min-width: 92px;
    padding: 8px 10px;
  }

  .summary-media-close-btn {
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
    font-size: 24px;
  }
}

@media (max-width: 600px) {
  .summary-media-overlay {
    padding: clamp(8px, 3.5vw, 14px);
  }

  .summary-media-modal {
    width: 90vw;
    height: 90dvh;
    max-height: 90dvh;
    border-radius: 18px;
    grid-template-rows: minmax(0, 47%) minmax(0, 53%);
  }

  .summary-media-left-panel {
    padding-top: env(safe-area-inset-top, 0px);
  }

  .summary-media-main-stage {
    padding: 8px 10px;
  }

  .summary-media-main-stage img {
    border-radius: 12px;
  }

  .summary-media-thumb-strip {
    padding: 8px 10px 12px;
  }

  .summary-media-right-panel {
    padding: 16px 14px calc(14px + env(safe-area-inset-bottom, 0px));
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
  }

  .summary-media-review-nav {
    position: sticky;
    bottom: 0;
    background: linear-gradient(180deg, rgba(236, 242, 248, 0) 0%, #eef4fa 42%);
    padding-bottom: 2px;
  }

  .summary-media-close-btn {
    top: calc(env(safe-area-inset-top, 0px) + 8px);
    right: 10px;
  }
}


.review-filter-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.review-filter-title {
  font-weight: 700;
  color: #333;
}

.review-filter-pills {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;

  margin: 0 auto;
  justify-content: center;
}

@media (min-width: 900px) {
  .review-filter-pills {
    gap: 8px;
  }

  .review-filter-pill {
    font-size: 12px;
    padding: 8px 8px;
  }
}

.review-filter-pill {
  border: 1px solid #ddd;
  background: #fff;
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  padding: 7px 4px;
  border-radius: 999px;
  font-size: 11px;
  cursor: pointer;
  color: black;
}

.review-filter-pill.active {
  background: #389692;
  color: #fff;
  border-color: #389692;
}

.reviews-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  font-size: 14px;
}

@media (min-width: 900px) {
  #reviewsMount .reviews-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    align-items: start;
  }

  #reviewsMount .reviews-masonry-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
  }

  #reviewsMount .review-card {
    height: fit-content;
    margin: 0;
  }
}

.review-card {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 10px 13px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
  background: #fff;
}

.review-stars-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 5px;
}

.review-stars {
  color: #389692;
  font-size: 18px;
  margin-bottom: 0;
}

.review-user-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 3px;
}

.review-user-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.review-user-name {
  font-weight: 700;
  font-size: 13px;
  font-family: "poppins-semibold";
}

.verified-badge {
  background: #389692;
  color: #fff;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
}

.review-text {
  font-size: 12px;
  color: #333;
  line-height: 1.5;
}

.view-more-btn {
  display: none;
  background: #389692;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  margin: 0 auto;
  align-items: center;
  gap: 6px;
  margin-bottom: 15px;
}

/* Errors & Validation */
.field-error {
  color: #d32f2f;
  font-size: 11px;
  display: none;
  font-weight: 600;
  margin-left: 10px;
}

.field-error.active {
  display: block;
}

.input-error {
  border-color: #d32f2f !important;
  background: #fff8f8;
}

/* Review Sheet Extras */
.review-sheet-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: none;
}

.review-sheet-overlay.show {
  display: block;
}

.review-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 20px 20px 0 0;
  z-index: 1001;
  transform: translateY(100%);
  transition: transform 0.3s ease-out;
  max-height: 85vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.review-sheet.open {
  transform: translateY(0);
}

.review-sheet-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding: 15px;
}

.review-sheet-header>h3 {
  margin: 0;
}

#closeReviewSheet {
  border-radius: 30px;
  border: none;
  width: 40px;
  height: 40px;
  padding: 10px;
  cursor: pointer;
}

.review-sheet-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
}

.review-input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 20px;
}

.review-star-select {
  font-size: 40px;
  cursor: pointer;
  text-align: center;
  user-select: none;
  padding: 5px 0 10px;
}

.review-star-select span {
  color: #e0e0e0;
  transition: color 0.1s ease;
}

.review-star-select span.filled {
  color: #f5b400;
}

.media-upload-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: #fdfdfd;
  border: 1px dashed #7a4aa3;
  border-radius: 30px;
  font-size: 13px;
  color: #7a4aa3;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  justify-content: center;
}

.jdgm-media-label:hover {
  background: #f9f0ff;
  transform: translateY(-1px);
}

.media-preview-container {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  overflow: hidden;
  justify-content: flex-start;
}

.preview-img-wrapper {
  position: relative;
  width: 60px;
  height: 60px;
  flex: 0 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

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

.preview-remove-btn {
  position: absolute;
  top: 4px;
  right: 4px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 14px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(2px);
  transition: background 0.2s;
}

.preview-remove-btn:hover {
  background: #ff4444;
}

.preview-img-wrapper.uploading .preview-img {
  opacity: 0.5;
}

.submit-review-btn {
  background: #7a4aa3;
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: 20px;
  font-weight: 700;
  cursor: pointer;
}

@keyframes spin {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

.review-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-top-color: #7a4aa3;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  z-index: 2;
}

.review-date {
  display: inline-flex;
  align-items: center;
  margin-left: auto;
  color: #6a6a6a;
  font-size: 11px;
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════
   FRAUNCES THEME OVERRIDES (splashbook)
   ═══════════════════════════════════════════════ */
@media screen and (max-width: 900px) {
  body.landing-fraunces-page #reviewsMount {
    margin-top: 18px;
    padding: 0px 10px;
  }
}

body.landing-fraunces-page #reviewsMount .reviews-summary-card {
  background: var(--sb-card) !important;
  border: 1px solid var(--sb-line);
  border-radius: 22px !important;
  box-shadow: var(--sb-shadow) !important;
  padding: 14px !important;
}

body.landing-fraunces-page #review-avg-score {
  color: var(--sb-ink);
  font-size: 36px;
  font-weight: 700;
}

body.landing-fraunces-page #reviewsMount .stars-row,
body.landing-fraunces-page #reviewsMount .review-stars {
  color: #f4a340;
}

body.landing-fraunces-page #reviewsMount .review-count-text {
  color: var(--sb-muted);
}

body.landing-fraunces-page #reviewsMount .bar-fill {
  background: var(--sb-secondary);
}

body.landing-fraunces-page #reviewsMount .write-review-btn,
body.landing-fraunces-page #reviewsMount .view-more-btn {
  background: linear-gradient(145deg,
      var(--sb-accent) 0%,
      var(--sb-accent-deep) 100%);
  border: 1px solid rgba(25, 24, 22, 0.16);
  border-radius: 14px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

body.landing-fraunces-page #reviewsMount .review-filter-pill {
  border: 1px solid rgba(25, 24, 22, 0.16);
  color: #2e2a24;
  background: #fff;
}

body.landing-fraunces-page #reviewsMount .review-filter-pill.active {
  background: #191816;
  border-color: #191816;
  color: #fff;
}

body.landing-fraunces-page #reviewsMount .review-card {
  border: 1px solid rgba(25, 24, 22, 0.12);
  border-radius: 14px;
  background: #ffffff;
}

body.landing-fraunces-page #reviewsMount .review-user-name {
  font-weight: 700;
}

body.landing-fraunces-page #reviewsMount .verified-badge {
  background: var(--sb-secondary);
}

body.landing-fraunces-page #reviewsMount .jdgm-rev__body {
  color: #403c34;
}

/* Keep product-page reviews summary controls full width (same behavior as reviews page) */
#reviewsMount .write-review-btn {
  width: 100%;
  margin: 0;
}

#reviewsMount .summary-review-media-wall {
  width: 100%;
  margin: 0;
}

#reviewsMount .review-filter-pills {
  width: 100%;
  margin: 0;
  justify-content: space-between;
}


/* ═══════════════════════════════════════════════════════════════
   Shared "scrapbook tone" — applied via .scrapbook-reviews wrapper
   on every product page (except Splashbook). Same red CTA, forest
   bars, cream summary surface, 1400px section width — regardless
   of the host product's palette.
   ═══════════════════════════════════════════════════════════════ */
.scrapbook-reviews {
  width: calc(100% - 14px);
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.scrapbook-reviews #reviewsMount .write-review-btn,
.scrapbook-reviews #reviewsMount .view-more-btn {
  background: #C4423A !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 14px !important;
}
.scrapbook-reviews #reviewsMount .bar-fill {
  background: #2F5D4F !important;
}
.scrapbook-reviews #reviewsMount .review-stars,
.scrapbook-reviews #reviewsMount .stars-row,
.scrapbook-reviews #reviewsMount .summary-media-review-stars {
  color: #E8B04A !important;
}
.scrapbook-reviews #reviewsMount .reviews-summary-card {
  background: rgba(255, 252, 244, 0.92) !important;
  border: 1px solid rgba(31, 26, 20, 0.14) !important;
  border-radius: 22px !important;
}
.scrapbook-reviews #reviewsMount .verified-badge {
  background: #2F5D4F !important;
}
.scrapbook-reviews #reviewsMount .review-filter-pill.active {
  background: #1F1A14 !important;
  border-color: #1F1A14 !important;
  color: #ffffff !important;
}
