.crc-carousel {
  --crc-signature:#0081A4;
  --crc-signature-soft:#8FC6D4;
  --crc-star-empty:#DCECEF;
  --crc-gap: 16px;
  --crc-text: #202124;
  --crc-muted: #6f7378;
  --crc-line: #e7e8ea;
  --crc-panel: #f7f8f9;
  --crc-card: #ffffff;
  --crc-tp: #00b67a;
  --crc-em: #35b8e7;
  --crc-danger: #d62839;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 26px;
  align-items: stretch;
  width: 100%;
  padding: 22px 24px;
  background: var(--crc-panel);
  color: var(--crc-text);
  font-family: inherit;
}

.crc-carousel *, .crc-carousel *::before, .crc-carousel *::after { box-sizing: border-box; }

.crc-summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4px 8px 4px 2px;
  min-width: 0;
}
.crc-summary-eyebrow { font-size: 12px; font-weight: 700; color: var(--crc-muted); margin-bottom: 4px; }
.crc-summary-score-row { display: flex; align-items: baseline; gap: 3px; }
.crc-summary-score { font-size: 36px; line-height: 1; letter-spacing: -.04em; }
.crc-summary-outof { font-size: 16px; font-weight: 600; color: #3e4145; }
.crc-summary .crc-stars { margin-top: 11px; }
.crc-summary-recommend { margin-top: 11px; font-size: 14px; }
.crc-summary-count { margin-top: 4px; font-size: 12px; color: var(--crc-muted); }
.crc-summary-sources { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.crc-summary-source { font-size: 11px; font-weight: 700; padding: 5px 7px; background: #fff; border: 1px solid var(--crc-line); border-radius: 6px; }
.crc-summary-source-tp { color: #087d57; }
.crc-summary-source-em { color: var(--crc-signature); }

.crc-reviews-area { position: relative; min-width: 0; padding: 0 30px 20px; }
.crc-viewport { overflow: hidden; width: 100%; }
.crc-track { display: flex; gap: var(--crc-gap); transition: transform .38s ease; will-change: transform; }

.crc-card {
  flex: 0 0 calc((100% - (var(--crc-gap) * 2)) / 3);
  min-width: 0;
  min-height: 215px;
  display: flex;
  flex-direction: column;
  padding: 16px 17px 15px;
  background: var(--crc-card);
  border: 1px solid #eceef0;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0,0,0,.025);
}
.crc-card-head { display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom:10px; }
.crc-source-line { display:flex; align-items:center; gap:7px; font-size:12px; font-weight:750; }
.crc-source-mark { width:22px; height:22px; display:inline-flex; align-items:center; justify-content:center; border-radius:5px; color:#fff; font-weight:800; font-size:14px; line-height:1; }
.crc-source-mark-trustpilot { background: var(--crc-tp); }
.crc-source-mark-emaerket { background: var(--crc-signature); font-style: italic; }
.crc-date { flex:0 0 auto; font-size:10px; color:#9a9da1; }

.crc-rating-row { display:flex; align-items:center; justify-content:space-between; gap:10px; min-height:24px; margin-bottom:8px; }
.crc-stars {
  display:inline-flex;
  gap:4px;
  line-height:1;
}

.crc-star {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:21px;
  height:21px;
  border-radius:5px;
  font-size:14px;
  line-height:1;
  color:#fff;
  background:var(--crc-star-empty);
}

.crc-star.is-filled {
  background:var(--crc-signature);
}

.crc-star.is-half {
  background:linear-gradient(
    90deg,
    var(--crc-signature) 0%,
    var(--crc-signature) 50%,
    var(--crc-signature-soft) 50%,
    var(--crc-signature-soft) 100%
  );
}

.crc-star.is-empty {
  background:var(--crc-star-empty);
}

.crc-recommend-label {
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:12px;
  font-weight:750;
}

.crc-recommend-icon {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:21px;
  height:21px;
  border-radius:50%;
  color:#fff;
  font-size:13px;
  font-weight:900;
}

.crc-recommend-label.is-positive {
  color:var(--crc-signature);
}

.crc-recommend-label.is-positive .crc-recommend-icon {
  background:var(--crc-signature);
}

.crc-recommend-label.is-negative {
  color:var(--crc-danger);
}

.crc-recommend-label.is-negative .crc-recommend-icon {
  background:var(--crc-danger);
}

.crc-title { margin:0 0 7px !important; padding:0 !important; font-size:15px !important; line-height:1.3 !important; font-weight:750 !important; letter-spacing:0 !important; }
.crc-text { display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:4; overflow:hidden; margin:0; font-size:13px; line-height:1.45; color:#383b3f; }
.crc-card-foot { margin-top:auto; padding-top:13px; display:flex; align-items:flex-end; justify-content:space-between; gap:10px; border-top:1px solid #f1f2f3; }
.crc-customer { min-width:0; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; font-size:11px; font-weight:700; color:#5e6267; }
.crc-foot-meta { display:flex; flex-direction:column; align-items:flex-end; gap:2px; flex:0 0 auto; font-size:9px; color:#9a9da1; }
.crc-verified { color:#6e9eb1; }

.crc-nav { position:absolute; top:50%; transform:translateY(-58%); z-index:4; width:28px; height:28px; padding:0; border:0; border-radius:50%; background:#fff; color:#33aeda; box-shadow:0 1px 4px rgba(0,0,0,.08); font-size:24px; line-height:25px; cursor:pointer; }
.crc-prev { left:0; }
.crc-next { right:0; }
.crc-nav:disabled { opacity:.25; cursor:default; }
.crc-dots { position:absolute; left:30px; right:30px; bottom:0; display:flex; justify-content:center; gap:5px; }
.crc-dot { width:5px; height:5px; padding:0; border:0; border-radius:50%; background:#c9ccd0; cursor:pointer; }
.crc-dot.is-active { background:#596067; }
.crc-empty { padding:16px; background:#f7f8f9; border:1px solid var(--crc-line); border-radius:8px; }

@media (max-width: 1100px) {
  .crc-carousel { grid-template-columns:180px minmax(0,1fr); gap:18px; }
  .crc-card { flex-basis:calc((100% - var(--crc-gap)) / 2); }
}
@media (max-width: 760px) {
  .crc-carousel { display:block; padding:18px 14px; }
  .crc-summary { padding:0 8px 18px; text-align:center; align-items:center; }
  .crc-summary-sources { justify-content:center; }
  .crc-reviews-area { padding-left:24px; padding-right:24px; }
  .crc-card { flex-basis:100%; min-height:205px; }
  .crc-prev { left:-2px; } .crc-next { right:-2px; }
}
@media (prefers-reduced-motion: reduce) { .crc-track { transition:none; } }


/* v1.6.0 source branding + filtering */
.crc-carousel {
  --crc-em: #35B8E7;
  --crc-em-soft: #EAF8FD;
  --crc-tp: #00B67A;
  --crc-tp-soft: #9BE6CC;
}

.crc-summary-source,
.crc-source-line {
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
  cursor: pointer;
}

.crc-summary-source {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #5d6268;
  transition: border-color .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}

.crc-summary-source:hover,
.crc-summary-source.is-active {
  border-color: #c8ccd0;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
}

.crc-summary-source-all.is-active { color: var(--crc-signature); }
.crc-summary-source-tp { color: #087d57; }
.crc-summary-source-tp.is-active { border-color: rgba(0,182,122,.35); background: #F2FCF8; }
.crc-summary-source-em { color: #168BB2; }
.crc-summary-source-em.is-active { border-color: rgba(53,184,231,.4); background: var(--crc-em-soft); }

.crc-filter-star { color: var(--crc-tp); font-size: 13px; line-height: 1; }
.crc-filter-em-logo { display:block; width:auto; height:15px; max-width:58px; object-fit:contain; }

.crc-source-line {
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
}

.crc-source-line:hover span:last-child { text-decoration: underline; text-underline-offset: 2px; }

.crc-source-logo {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:28px;
  height:22px;
}
.crc-source-logo img {
  display:block;
  width:auto;
  height:20px;
  max-width:66px;
  object-fit:contain;
}

.crc-card-emaerket {
  border-top: 3px solid var(--crc-em);
}
.crc-card-trustpilot {
  border-top: 3px solid var(--crc-tp);
}

.crc-card-emaerket .crc-source-line,
.crc-card-emaerket .crc-recommend-label.is-positive {
  color: #168BB2;
}

.crc-card-emaerket .crc-recommend-icon-like {
  background: transparent;
  width: 22px;
  height: 22px;
  border-radius: 0;
}
.crc-card-emaerket .crc-recommend-icon-like img {
  display:block;
  width:22px;
  height:22px;
  object-fit:contain;
}

/* Trustpilot keeps Trustpilot green; only combined score uses Smartkontakten blue. */
.crc-stars-trustpilot .crc-star.is-filled {
  background: var(--crc-tp);
}
.crc-stars-trustpilot .crc-star.is-half {
  background: linear-gradient(90deg,
    var(--crc-tp) 0%,
    var(--crc-tp) 50%,
    var(--crc-tp-soft) 50%,
    var(--crc-tp-soft) 100%);
}
.crc-stars-trustpilot .crc-star.is-empty {
  background: #DDF3EB;
}

.crc-card[hidden] { display: none !important; }


/* v1.6.1 filter polish */
.crc-summary-sources {
  display:flex;
  flex-wrap:nowrap;
  align-items:center;
  gap:5px;
  width:100%;
  margin-top:14px;
}

.crc-summary-source {
  min-width:0;
  height:27px;
  display:inline-flex;
  flex:0 1 auto;
  align-items:center;
  justify-content:center;
  gap:4px;
  padding:4px 7px;
  border-radius:7px;
  white-space:nowrap;
  line-height:1;
  font-size:10px;
}

.crc-summary-source b {
  font-size:10px;
}

.crc-filter-star {
  font-size:11px;
}

.crc-filter-em-logo {
  display:none !important;
}

.crc-filter-em-dot {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:15px;
  height:15px;
  flex:0 0 15px;
  border-radius:50%;
  background:var(--crc-em);
  color:#fff;
  font-size:10px;
  font-weight:800;
  font-style:italic;
  line-height:1;
}

.crc-recommend-like {
  display:block;
  width:16px;
  height:16px;
  flex:0 0 16px;
  object-fit:contain;
  background:transparent !important;
  border:0 !important;
  border-radius:0 !important;
  box-shadow:none !important;
}

.crc-card-emaerket .crc-recommend-icon-like {
  display:none !important;
}

@media (max-width:760px) {
  .crc-summary-sources {
    justify-content:center;
    flex-wrap:wrap;
  }
}


/* ==========================================================
   v1.6.2 — score + source filter refinement
   ========================================================== */

/* SCORE PANEL */
.crc-summary {
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
  min-width:230px;
  padding:20px 22px;
}

.crc-summary-eyebrow {
  margin-bottom:7px;
  font-size:11px;
  font-weight:700;
  color:#70777d;
  letter-spacing:.01em;
}

.crc-summary-score {
  display:flex;
  align-items:flex-end;
  gap:4px;
  margin-bottom:10px;
  line-height:1;
}

.crc-summary-score strong {
  font-size:38px;
  line-height:.95;
  letter-spacing:-1.5px;
  font-weight:800;
}

.crc-summary-score span {
  padding-bottom:4px;
  font-size:16px;
  font-weight:700;
}

.crc-summary .crc-stars {
  gap:5px;
  margin-bottom:11px;
}

.crc-summary .crc-star {
  width:25px;
  height:25px;
  border-radius:6px;
  font-size:17px;
}

.crc-summary-recommendation {
  margin-top:1px;
  font-size:15px;
  line-height:1.35;
}

.crc-summary-recommendation strong {
  font-weight:800;
}

.crc-summary-based {
  margin-top:7px;
  font-size:12px;
  color:#687078;
}

/* Exact percentage-filled stars.
   A score of 4.7 means the fifth star is 70% filled. */
.crc-star {
  position:relative;
  overflow:hidden;
  color:#fff;
  background:var(--crc-star-empty, #DCECEF) !important;
}

.crc-star::before {
  content:"★";
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  width:var(--crc-star-fill, 0%);
  overflow:hidden;
  white-space:nowrap;
  color:#fff;
  background:var(--crc-signature, #0081A4);
}

/* Trustpilot keeps its own green identity. */
.crc-stars-trustpilot .crc-star::before {
  background:#00B67A;
}

.crc-stars-trustpilot .crc-star {
  background:#DDEFE8 !important;
}

/* Combined score uses Smartkontakten signature colour only. */
.crc-stars-combined .crc-star::before {
  background:#0081A4;
}

.crc-stars-combined .crc-star {
  background:#A8D3DE !important;
}

/* FILTER BAR */
.crc-summary-sources {
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:7px;
  width:100%;
  margin-top:16px;
}

.crc-summary-source {
  box-sizing:border-box;
  min-height:36px;
  height:auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
  gap:6px;
  padding:7px 10px;
  border:1px solid #D9E0E4;
  border-radius:9px;
  background:#fff;
  color:#2D3438;
  font-size:12px;
  font-weight:700;
  line-height:1;
  white-space:nowrap;
  cursor:pointer;
  transition:border-color .16s ease, box-shadow .16s ease, background .16s ease;
}

.crc-summary-source:hover {
  border-color:#AEBAC0;
}

.crc-summary-source.is-active {
  border-color:#0081A4;
  box-shadow:0 0 0 1px rgba(0,129,164,.08);
  background:#F3FBFD;
}

.crc-summary-source b {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:22px;
  height:20px;
  padding:0 6px;
  border-radius:999px;
  background:#F1F3F4;
  color:#4C5458;
  font-size:11px;
  font-weight:800;
}

.crc-summary-source.is-active b {
  background:#DDF2F7;
  color:#006C89;
}

.crc-filter-star {
  color:#00B67A;
  font-size:16px;
  line-height:1;
}

.crc-filter-em-logo {
  display:block !important;
  width:25px;
  height:25px;
  object-fit:contain;
  flex:0 0 25px;
}

.crc-summary-source-em {
  color:#0081A4;
}

.crc-summary-source-tp {
  color:#17795A;
}

.crc-filter-em-dot {
  display:none !important;
}

@media (max-width:760px) {
  .crc-summary {
    min-width:0;
    align-items:center;
    text-align:center;
  }

  .crc-summary-sources {
    justify-content:center;
  }

  .crc-summary-source {
    min-height:38px;
  }
}


/* ==========================================================
   v1.6.3 — compact score panel + single-row source filters
   ========================================================== */

.crc-summary {
  min-width: 270px;
  width: 270px;
  padding: 16px 20px;
  justify-content: center;
}

.crc-summary-eyebrow {
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 700;
  color: #6b7378;
}

.crc-summary-stars {
  display: block;
  margin-bottom: 8px;
}

.crc-summary-stars .crc-stars {
  margin: 0;
  gap: 4px;
}

.crc-summary-stars .crc-star {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  font-size: 16px;
}

.crc-summary-inline {
  display: flex;
  align-items: baseline;
  flex-wrap: nowrap;
  gap: 7px;
  margin: 0 0 5px;
  color: #222;
  white-space: nowrap;
  line-height: 1.25;
}

.crc-summary-inline > strong {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -.2px;
}

.crc-summary-inline > span {
  font-size: 13px;
}

.crc-summary-inline b {
  font-weight: 800;
}

.crc-summary-separator {
  color: #9aa1a5;
}

.crc-summary-count {
  margin: 0 0 12px;
  font-size: 12px;
  color: #697176;
}

/* Source filter row */
.crc-summary-sources {
  display: flex;
  flex-wrap: nowrap !important;
  align-items: center;
  gap: 8px;
  width: max-content;
  max-width: none;
  margin: 0;
}

.crc-summary-source {
  min-height: 34px;
  height: 34px;
  padding: 7px 9px;
  gap: 5px;
  border-radius: 8px;
  font-size: 11px;
  line-height: 1;
}

.crc-summary-source b {
  min-width: 20px;
  height: 19px;
  padding: 0 5px;
  font-size: 10px;
}

.crc-filter-em-logo {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
}

/* Fix fractional star alignment:
   background fill is clipped independently while the star glyph stays centered. */
.crc-star {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  line-height: 1;
  color: #fff;
}

.crc-star::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--crc-star-fill, 0%);
  z-index: 0;
}

.crc-star::after {
  content: "★";
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  line-height: 1;
  font: inherit;
}

.crc-stars-combined .crc-star {
  background: #A8D3DE !important;
}

.crc-stars-combined .crc-star::before {
  background: #0081A4;
}

.crc-stars-trustpilot .crc-star {
  background: #DDEFE8 !important;
}

.crc-stars-trustpilot .crc-star::before {
  background: #00B67A;
}

@media (max-width: 1180px) {
  .crc-summary {
    min-width: 255px;
    width: 255px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .crc-summary-source {
    padding-left: 7px;
    padding-right: 7px;
  }
}

@media (max-width: 760px) {
  .crc-summary {
    width: auto;
    min-width: 0;
    align-items: center;
    text-align: center;
  }

  .crc-summary-inline {
    justify-content: center;
  }

  .crc-summary-sources {
    width: auto;
    flex-wrap: wrap !important;
    justify-content: center;
  }
}


/* ==========================================================
   v1.6.4 — source-filter grid + E-mærket dislike icon
   ========================================================== */

/* Keep filters inside the score column:
   row 1: Alle | Trustpilot
   row 2: E-mærket under Alle */
.crc-summary-sources {
  display:grid !important;
  grid-template-columns:max-content max-content;
  grid-template-areas:
    "all trustpilot"
    "emaerket .";
  align-items:center;
  justify-content:start;
  column-gap:8px;
  row-gap:8px;
  width:100% !important;
  max-width:100%;
  margin:0;
}

.crc-summary-source-all {
  grid-area:all;
}

.crc-summary-source-tp {
  grid-area:trustpilot;
}

.crc-summary-source-em {
  grid-area:emaerket;
  justify-self:start;
}

/* E-mærket uses its supplied thumbs-up / thumbs-down artwork directly. */
.crc-recommend-like,
.crc-recommend-dislike {
  display:block;
  width:17px;
  height:17px;
  flex:0 0 17px;
  object-fit:contain;
  background:transparent !important;
  border:0 !important;
  border-radius:0 !important;
  box-shadow:none !important;
}

.crc-card-emaerket .crc-recommend-label.is-negative {
  color:var(--crc-em, #35B8E7);
}

@media (max-width:760px) {
  .crc-summary-sources {
    justify-content:center;
    grid-template-columns:max-content max-content;
  }
}

/* ==========================================================
   v1.6.5 — real spacing between summary filters and reviews
   ========================================================== */

/* The summary panel is ~270px wide. Reserve that width in the
   actual grid as well, so the filter buttons cannot intrude into
   the review column. */
@media (min-width:1101px) {
  .crc-carousel {
    grid-template-columns:270px minmax(0, 1fr);
    column-gap:36px;
  }

  .crc-summary {
    width:270px;
    min-width:270px;
  }
}

/* Keep a comfortable separation on medium screens too. */
@media (min-width:761px) and (max-width:1100px) {
  .crc-carousel {
    grid-template-columns:235px minmax(0, 1fr);
    column-gap:26px;
  }

  .crc-summary {
    width:235px;
    min-width:235px;
  }
}


/* ==========================================================
   v1.6.6 — larger, geometrically centred combined-score stars
   ========================================================== */

/* Only the five stars in the combined score panel become larger. */
.crc-summary-stars .crc-stars-combined {
  gap: 6px;
}

.crc-summary-stars .crc-stars-combined .crc-star {
  width: 31px;
  height: 31px;
  border-radius: 8px;
  font-size: 0; /* do not rely on the font star glyph */
  flex: 0 0 31px;
}

/* Fractional fill stays exact: e.g. 4.7 = 70% of the fifth tile. */
.crc-summary-stars .crc-stars-combined .crc-star::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--crc-star-fill, 0%);
  height: 100%;
  background: #0081A4;
  z-index: 0;
}

/*
 * Draw the white star as a geometric shape instead of the ★ font glyph.
 * This makes its optical centre identical in every browser.
 */
.crc-summary-stars .crc-stars-combined .crc-star::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 17px;
  height: 17px;
  transform: translate(-50%, -50%);
  background: #fff;
  clip-path: polygon(
    50% 0%,
    61% 34%,
    98% 35%,
    68% 57%,
    79% 93%,
    50% 72%,
    21% 93%,
    32% 57%,
    2% 35%,
    39% 34%
  );
  z-index: 1;
}

/* Keep the unfilled part pleasantly contrasting with the signature colour. */
.crc-summary-stars .crc-stars-combined .crc-star {
  background: #A8D3DE !important;
}

@media (max-width: 760px) {
  .crc-summary-stars .crc-stars-combined .crc-star {
    width: 29px;
    height: 29px;
    flex-basis: 29px;
  }

  .crc-summary-stars .crc-stars-combined .crc-star::after {
    width: 16px;
    height: 16px;
  }
}


/* v1.6.7 — touch swipe */
.crc-viewport {
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}


/* ==========================================================
   v1.6.8 — transparency disclaimer + score methodology info
   ========================================================== */

.crc-disclaimer {
  width: 100%;
  box-sizing: border-box;
  margin-top: 8px;
  padding: 0 42px;
  text-align: center;
  font-size: 11px;
  line-height: 1.4;
  color: #707980;
  font-style: italic;
}

.crc-score-info {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.crc-score-info > summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  box-sizing: border-box;
  border: 1px solid #AAB4B9;
  border-radius: 50%;
  color: #68747A;
  background: #fff;
  font-size: 11px;
  font-weight: 800;
  font-family: Arial, sans-serif;
  line-height: 1;
  cursor: pointer;
  user-select: none;
}

.crc-score-info > summary::-webkit-details-marker {
  display: none;
}

.crc-score-info > summary:hover,
.crc-score-info[open] > summary {
  border-color: #0081A4;
  color: #0081A4;
}

.crc-score-info-panel {
  position: absolute;
  z-index: 100;
  left: 50%;
  top: calc(100% + 9px);
  width: min(390px, 78vw);
  box-sizing: border-box;
  padding: 15px 16px;
  border: 1px solid #D9E1E5;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(25, 45, 55, .16);
  color: #283238;
  font-size: 12px;
  line-height: 1.5;
  white-space: normal;
  transform: translateX(-50%);
}

.crc-score-info-panel::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -6px;
  width: 10px;
  height: 10px;
  border-left: 1px solid #D9E1E5;
  border-top: 1px solid #D9E1E5;
  background: #fff;
  transform: translateX(-50%) rotate(45deg);
}

.crc-score-info-panel > strong {
  display: block;
  margin-bottom: 7px;
  font-size: 13px;
}

.crc-score-info-panel p {
  margin: 7px 0;
}

.crc-score-info-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px 10px;
  margin: 10px 0;
  padding: 9px 0;
  border-top: 1px solid #EDF0F2;
  border-bottom: 1px solid #EDF0F2;
}

.crc-score-info-grid span {
  color: #68747A;
}

.crc-score-info-grid b {
  font-weight: 700;
}

.crc-score-formula {
  color: #4F5B61;
}

@media (max-width: 760px) {
  .crc-disclaimer {
    padding: 0 12px;
  }

  .crc-score-info-panel {
    position: fixed;
    left: 50%;
    top: 50%;
    width: min(90vw, 390px);
    max-height: 75vh;
    overflow: auto;
    transform: translate(-50%, -50%);
  }

  .crc-score-info-panel::before {
    display: none;
  }
}


/* v1.6.9 — close controls for score methodology popover */
.crc-score-info-panel {
  padding-top: 18px;
}

.crc-score-info-close {
  position: absolute;
  top: 8px;
  right: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #667278;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
}

.crc-score-info-close:hover,
.crc-score-info-close:focus-visible {
  background: #F0F4F5;
  color: #0081A4;
  outline: none;
}


/* ==========================================================
   v1.7.0 — configurable visible card count + compact widgets
   ========================================================== */

.crc-carousel {
  --crc-visible-cards: 3;
}

.crc-card {
  flex-basis: calc(
    (100% - (var(--crc-gap) * (var(--crc-visible-cards) - 1)))
    / var(--crc-visible-cards)
  ) !important;
}

/* Let JS decide the readable number of cards instead of old fixed 3/2/1 rules. */
@media (max-width:1100px) {
  .crc-card { flex-basis: calc((100% - (var(--crc-gap) * (var(--crc-visible-cards) - 1))) / var(--crc-visible-cards)) !important; }
}
@media (max-width:760px) {
  .crc-card { flex-basis: calc((100% - (var(--crc-gap) * (var(--crc-visible-cards) - 1))) / var(--crc-visible-cards)) !important; }
}

.crc-mini-widget {
  display:inline-block;
  width:auto;
  max-width:220px;
  min-width:175px;
  font-family:inherit;
  color:#022838;
}

.crc-mini-widget-inner {
  display:flex;
  flex-direction:column;
  gap:7px;
  color:inherit;
  text-decoration:none;
  white-space:nowrap;
}

.crc-mini-main {
  display:flex;
  align-items:center;
  gap:6px;
}

.crc-mini-logo {
  flex:0 0 auto;
}

.crc-mini-logo-em {
  width:30px;
  height:30px;
  object-fit:contain;
}

.crc-mini-logo-tp,
.crc-mini-logo-combined {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:30px;
  height:30px;
  border-radius:7px;
  color:#fff;
  font-size:18px;
  line-height:1;
}

.crc-mini-logo-tp { background:#00B67A; }
.crc-mini-logo-combined { background:#0081A4; }

.crc-mini-stars .crc-stars {
  gap:3px;
}

.crc-mini-stars .crc-star {
  width:23px;
  height:23px;
  border-radius:5px;
  font-size:13px;
}

.crc-mini-meta {
  display:flex;
  align-items:center;
  width:100%;
  font-size:10px;
  line-height:1.2;
}

.crc-mini-meta > span:first-child,
.crc-mini-meta > span:last-child {
  flex:0 0 auto;
}

.crc-mini-divider {
  flex:1 1 auto;
  text-align:center;
  margin:0 6px;
  color:#7c858a;
}

.crc-mini-reviews-label {
  text-decoration:underline;
}

.crc-mini-widget-emaerket .crc-stars-emaerket .crc-star::before {
  background:#44C0F0;
}

.crc-mini-widget-emaerket .crc-stars-emaerket .crc-star {
  background:#BDE8F7 !important;
}


/* ==========================================================
   v1.7.1 — compact badge widget, matching the reference style
   ========================================================== */

.crc-mini-widget{
  display:inline-block!important;
  width:auto!important;
  min-width:170px!important;
  max-width:210px!important;
  height:auto!important;
  margin:0!important;
  padding:0!important;
  color:#022838!important;
  box-sizing:border-box!important;
}

.crc-mini-widget-inner{
  display:flex!important;
  flex-direction:column!important;
  align-items:stretch!important;
  gap:5px!important;
  width:100%!important;
  color:inherit!important;
  text-decoration:none!important;
  white-space:nowrap!important;
}

.crc-mini-main{
  display:flex!important;
  flex-direction:row!important;
  align-items:center!important;
  gap:4px!important;
  width:100%!important;
}

.crc-mini-logo{
  width:28px!important;
  height:28px!important;
  flex:0 0 28px!important;
  margin:0 2px 0 0!important;
}

.crc-mini-logo-em{
  display:block!important;
  object-fit:contain!important;
}

.crc-mini-logo-tp,
.crc-mini-logo-combined{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  border-radius:5px!important;
  color:#fff!important;
  font-size:15px!important;
  line-height:1!important;
}

.crc-mini-logo-tp{background:#00B67A!important}
.crc-mini-logo-combined{background:#0081A4!important}

.crc-mini-rating-stars{
  display:flex!important;
  align-items:center!important;
  gap:2px!important;
  height:24px!important;
  --crc-mini-color:#0081A4;
  --crc-mini-empty:#A8D3DE;
}

.crc-mini-rating-stars-trustpilot{
  --crc-mini-color:#00B67A;
  --crc-mini-empty:#D8EEE6;
}

.crc-mini-rating-stars-emaerket{
  --crc-mini-color:#44C0F0;
  --crc-mini-empty:#BDE8F7;
}

.crc-mini-rating-star{
  position:relative!important;
  display:block!important;
  width:23px!important;
  height:23px!important;
  flex:0 0 23px!important;
  background:linear-gradient(
    90deg,
    var(--crc-mini-color) 0,
    var(--crc-mini-color) var(--crc-mini-fill),
    var(--crc-mini-empty) var(--crc-mini-fill),
    var(--crc-mini-empty) 100%
  )!important;
  clip-path:polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 93%,
    50% 72%,
    21% 93%,
    32% 57%,
    2% 35%,
    39% 35%
  )!important;
}

.crc-mini-meta{
  display:flex!important;
  align-items:center!important;
  width:100%!important;
  font-size:10px!important;
  line-height:1.2!important;
  color:#022838!important;
}

.crc-mini-meta b{
  font-weight:700!important;
}

.crc-mini-divider{
  flex:1 1 auto!important;
  text-align:center!important;
  margin:0 5px!important;
  color:#53646C!important;
}

.crc-mini-reviews-label{
  text-decoration:underline!important;
}

/* Admin uses the exact frontend preview markup. */
.crc-admin-widget-preview{
  min-height:72px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:flex-start!important;
  padding:14px!important;
  background:#F6F7F7!important;
  border-radius:8px!important;
  overflow:visible!important;
}

.crc-admin-widget-preview .crc-mini-widget{
  transform:none!important;
}

.crc-admin-php-examples{
  margin-top:20px;
  padding-top:16px;
  border-top:1px solid #DCDCDE;
}


/* v1.8.3 — prevent the transient wrong card count from being painted.
   JS removes this class immediately after the first stable layout measurement. */
.crc-carousel.crc-is-initializing .crc-viewport,
.crc-carousel.crc-is-initializing .crc-dots {
  visibility: hidden;
}

/* v1.8.4 — optional direct link to the original Trustpilot review.
   Only the source/brand line is clickable; never the full review card. */
.crc-trustpilot-review-link {
  color: inherit;
  text-decoration: none;
}
.crc-trustpilot-review-link:hover,
.crc-trustpilot-review-link:focus {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* v1.8.5 — source hotlinks for Trustpilot + E-mærket.
   Only the source line is clickable; never the whole card. */
.crc-source-hotlink {
  color: inherit;
  text-decoration: none;
}
.crc-source-hotlink:hover,
.crc-source-hotlink:focus {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}


/* v1.9.0 — Google Reviews */
.crc-carousel {
  --crc-google:#4285F4;
  --crc-google-star:#F9AB00;
  --crc-google-soft:#EEF4FF;
}
.crc-source-mark-google {
  background:#fff;
  color:var(--crc-google);
  border:1px solid #d7dce2;
  font-family:Arial,sans-serif;
  font-weight:700;
}
.crc-card-google { border-top-color:var(--crc-google); }
.crc-summary-source-google { color:#2867c7; }
.crc-summary-source-google.is-active {
  border-color:rgba(66,133,244,.38);
  background:var(--crc-google-soft);
}
.crc-filter-google {
  color:var(--crc-google);
  font-family:Arial,sans-serif;
  font-weight:800;
  font-size:13px;
  line-height:1;
}
.crc-stars-google .crc-star::before { background:var(--crc-google-star); }
.crc-stars-google .crc-star { color:#e9edf2; }
.crc-mini-logo-google {
  background:#fff;
  color:#4285F4;
  border:1px solid #d7dce2;
  font-family:Arial,sans-serif;
  font-weight:800;
}
.crc-mini-rating-stars-google .crc-mini-rating-star::before { background:#F9AB00; }
