/* ================================================================
   OZ REVIEWS — Shared reviews section styles
   Used by homepage (S10) and ruimte / stucsoorten pages.
   Uses global design-system tokens so it works outside .oz-hp scope.
   ================================================================ */

.oz-hp-reviews {
  --oz-star-size: 18px;
}

/* Section header (eyebrow + heading) — scoped to reviews so it works
   outside .oz-hp (on ruimte/stucsoorten pages). */
.oz-hp-reviews .oz-hp-section-header {
  text-align: center;
  margin-bottom: 48px;
}

.oz-hp-reviews .oz-hp-eyebrow {
  font-family: var(--oz-ff-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--oz-accent);
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.oz-hp-reviews .oz-hp-eyebrow::before,
.oz-hp-reviews .oz-hp-eyebrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: var(--oz-border);
}
.oz-hp-reviews .oz-hp-eyebrow::before { right: calc(100% + 16px); }
.oz-hp-reviews .oz-hp-eyebrow::after  { left:  calc(100% + 16px); }

.oz-hp-reviews .oz-hp-heading {
  font-family: var(--oz-ff-heading);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 400;
  color: var(--oz-text-primary);
  line-height: 1.2;
  margin: 0;
}

.oz-hp-reviews .oz-hp-heading em {
  font-style: italic;
  color: var(--oz-accent);
}

.oz-hp-reviews .oz-hp-section-intro {
  font-size: 15px;
  line-height: 1.7;
  color: var(--oz-text-primary);
  max-width: 560px;
  margin: 12px auto 0;
  text-align: center;
}

@media (max-width: 767px) {
  .oz-hp-reviews .oz-hp-eyebrow::before,
  .oz-hp-reviews .oz-hp-eyebrow::after { display: none; }
  .oz-hp-reviews .oz-hp-section-header { margin-bottom: 32px; }
}

/* Summary header: big rating + stars + count */
.oz-hp-reviews-summary {
  max-width: var(--oz-max-w);
  margin: 0 auto 40px;
  padding: 0 var(--oz-gap);
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.oz-hp-reviews-rating {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.oz-hp-reviews-big-num {
  font-family: var(--oz-ff-heading);
  font-size: 64px;
  line-height: 1;
  color: var(--oz-accent);
  font-weight: 400;
}

.oz-hp-reviews-rating-label {
  font-size: 14px;
  color: var(--oz-text-muted);
}

.oz-hp-reviews-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.oz-hp-reviews-stars-row {
  display: inline-flex;
  gap: 2px;
  color: var(--oz-accent);
}

.oz-hp-reviews-stars-row .oz-hp-star {
  width: 22px;
  height: 22px;
}

.oz-hp-reviews-count {
  font-size: 13px;
  color: var(--oz-text-muted);
}

.oz-hp-reviews-count strong {
  color: var(--oz-text-primary);
  font-weight: 600;
}

/* Review card grid */
.oz-hp-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--oz-max-w);
  margin: 0 auto;
  padding: 0 var(--oz-gap);
}

.oz-hp-review {
  background: var(--oz-bg-warm);
  padding: 24px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.oz-hp-reviews-grid .oz-hp-review {
  height: 320px;
  overflow: hidden;
}

.oz-hp-reviews-grid .oz-hp-review-body {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.oz-hp-reviews-grid .oz-hp-review-photos,
.oz-hp-reviews-grid .oz-hp-review-reply,
.oz-hp-reviews-grid .oz-hp-review-title {
  display: none;
}

.oz-hp-reviews-grid .oz-hp-review-author {
  margin-top: auto;
}

.oz-hp-review-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.oz-hp-review-stars {
  display: inline-flex;
  gap: 1px;
  color: var(--oz-accent);
}

.oz-hp-star {
  width: var(--oz-star-size);
  height: var(--oz-star-size);
  display: inline-block;
}

.oz-hp-star--empty {
  color: rgba(19, 83, 80, 0.2);
}

.oz-hp-review-date {
  font-size: 11px;
  color: var(--oz-text-muted);
  white-space: nowrap;
}

.oz-hp-review-body {
  font-size: 14px;
  line-height: 1.65;
  color: var(--oz-text-body);
  margin: 0;
  flex: 1;
}

.oz-hp-review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(19, 83, 80, 0.12);
}

.oz-hp-review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--oz-accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--oz-ff-heading);
  font-size: 16px;
  flex-shrink: 0;
}

.oz-hp-review-author-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.oz-hp-review-author-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--oz-text-primary);
}

.oz-hp-review-verified {
  font-size: 11px;
  color: var(--oz-accent);
}

.oz-hp-review-title {
  font-family: var(--oz-ff-heading);
  font-size: 16px;
  font-weight: 500;
  color: var(--oz-text-primary);
  margin: 0;
  line-height: 1.3;
}

.oz-hp-review-photos {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.oz-hp-review-photos li { margin: 0; }
.oz-hp-review-photos a { display: block; }
.oz-hp-review-photos img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.oz-hp-review-reply {
  background: rgba(19, 83, 80, 0.05);
  border-left: 3px solid var(--oz-accent);
  padding: 10px 14px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--oz-text-body);
  border-radius: 0 4px 4px 0;
}
.oz-hp-review-reply strong {
  color: var(--oz-accent);
  font-weight: 600;
}

.oz-hp-review-avatar--img {
  background: transparent;
  padding: 0;
  overflow: hidden;
}
.oz-hp-review-avatar--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.oz-hp-review--google .oz-hp-review-verified::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 4px;
  vertical-align: -1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cpath fill='%234285F4' d='M43.6 20.1H24v8.3h11.2c-1.6 4.3-6 6.9-11.2 6.9-6.8 0-12.3-5.5-12.3-12.3S17.2 10.7 24 10.7c3 0 5.7 1.1 7.8 2.9l5.8-5.8C33.9 4.3 29.2 2.3 24 2.3 12.1 2.3 2.3 12.1 2.3 24S12.1 45.7 24 45.7 45.7 35.9 45.7 24c0-1.3-.1-2.6-.3-3.9z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

@media (max-width: 1024px) {
  .oz-hp-reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .oz-hp-reviews-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 14px;
    padding: 0 var(--oz-gap) 8px;
    scroll-padding: 0 var(--oz-gap);
  }
  .oz-hp-reviews-grid::-webkit-scrollbar { display: none; }
  .oz-hp-reviews-grid .oz-hp-review {
    flex: 0 0 85%;
    scroll-snap-align: start;
  }
  .oz-hp-reviews-summary { gap: 18px; }
  .oz-hp-reviews-big-num { font-size: 52px; }
}

/* Reviews footer: "alle reviews" link + FAQ/CTA panel */
.oz-hp-reviews-footer {
  max-width: var(--oz-max-w);
  margin: 32px auto 0;
  padding: 0 var(--oz-gap);
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.oz-hp-reviews-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--oz-accent);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.oz-hp-reviews-all:hover { border-bottom-color: var(--oz-accent); }
.oz-hp-reviews-all svg { flex-shrink: 0; }

.oz-hp-reviews-cta {
  width: 100%;
  background: var(--oz-bg-warm);
  border-radius: 10px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.oz-hp-reviews-cta-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.oz-hp-reviews-cta-text strong {
  font-family: var(--oz-ff-heading);
  font-size: 20px;
  font-weight: 400;
  color: var(--oz-text-primary);
}

.oz-hp-reviews-cta-text span {
  font-size: 14px;
  color: var(--oz-text-muted);
}

.oz-hp-reviews-cta-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.oz-hp-reviews-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--oz-accent);
  background: var(--oz-accent);
  color: #fff;
  transition: background 0.2s, color 0.2s;
}
.oz-hp-reviews-btn:hover { background: transparent; color: var(--oz-accent); }

.oz-hp-reviews-btn--outline {
  background: transparent;
  color: var(--oz-accent);
}
.oz-hp-reviews-btn--outline:hover { background: var(--oz-accent); color: #fff; }

@media (max-width: 640px) {
  .oz-hp-reviews-cta {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 20px;
  }
  .oz-hp-reviews-cta-buttons {
    justify-content: center;
  }
}

/* ============================================================
   TRUSTINDEX WIDGET OVERRIDES
   Scoped to .oz-reviews-widget (the /reviews/ page wrapper) so
   we only restyle our own embed, never the plugin elsewhere.
   Goal: match the .oz-hp-review card style used on homepage +
   ruimte pages so the aggregator page feels native.
   ============================================================ */
.oz-reviews-widget { padding: 24px 0 48px; }

.oz-reviews-widget .ti-widget.ti-goog {
  font-family: var(--oz-ff-body) !important;
  color: var(--oz-text-body) !important;
  padding: 0 !important;
}

.oz-reviews-widget .ti-widget.ti-goog .ti-header,
.oz-reviews-widget .ti-widget.ti-goog > .ti-footer {
  display: none !important;
}

.oz-reviews-widget .ti-widget-container.ti-col-3 {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px !important;
  max-width: var(--oz-max-w);
  margin: 0 auto !important;
  padding: 0 var(--oz-gap) !important;
}

.oz-reviews-widget .ti-widget .ti-review-item {
  background: var(--oz-bg-warm) !important;
  border-radius: 8px !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  width: auto !important;
}

.oz-reviews-widget .ti-widget .ti-review-item .ti-inner {
  background: transparent !important;
  padding: 24px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
}

.oz-reviews-widget .ti-review-header {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin: 0 !important;
  padding-bottom: 12px !important;
  border-bottom: 1px solid rgba(19, 83, 80, 0.12) !important;
  order: 3;
}

.oz-reviews-widget .ti-profile-img img {
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
}

.oz-reviews-widget .ti-profile-details { gap: 1px !important; }

.oz-reviews-widget .ti-name {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--oz-text-primary) !important;
}

.oz-reviews-widget .ti-date {
  font-size: 11px !important;
  color: var(--oz-text-muted) !important;
}

.oz-reviews-widget .ti-stars {
  order: 1;
  display: inline-flex !important;
  gap: 1px !important;
}

.oz-reviews-widget .ti-star svg { width: 18px !important; height: 18px !important; }

.oz-reviews-widget .ti-star svg path,
.oz-reviews-widget .ti-star.full-star svg path {
  fill: var(--oz-accent) !important;
}

.oz-reviews-widget .ti-review-content,
.oz-reviews-widget .ti-review-text-container {
  font-size: 14px !important;
  line-height: 1.65 !important;
  color: var(--oz-text-body) !important;
  order: 2;
  margin: 0 !important;
}

.oz-reviews-widget .ti-read-more {
  color: var(--oz-accent) !important;
  font-weight: 600 !important;
}

.oz-reviews-widget .ti-rating-text { display: none !important; }

.oz-reviews-widget .ti-platform-icon { opacity: 0.55; }

.oz-reviews-widget .ti-controls-line {
  margin-top: 32px !important;
  justify-content: center !important;
}

.oz-reviews-widget .ti-prev,
.oz-reviews-widget .ti-next {
  background: var(--oz-accent) !important;
  color: #fff !important;
  border: 0 !important;
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
}

.oz-reviews-widget .ti-prev:hover,
.oz-reviews-widget .ti-next:hover {
  background: var(--oz-text-primary) !important;
}

.oz-reviews-widget .ti-widget .ti-footer-text,
.oz-reviews-widget .ti-widget .ti-rating-box { display: none !important; }

@media (max-width: 1024px) {
  .oz-reviews-widget .ti-widget-container.ti-col-3 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 640px) {
  .oz-reviews-widget .ti-widget-container.ti-col-3 {
    grid-template-columns: 1fr !important;
  }
}

.oz-reviews-intro {
  padding: 32px 0 24px;
  text-align: center;
}

/* ================================================================
   Reviews carousel — Swiper-powered slider for /reviews/ hub
   ================================================================ */
.oz-hp-reviews-carousel {
  position: relative;
  max-width: var(--oz-max-w);
  margin: 0 auto;
  padding: 0 var(--oz-gap);
}

.oz-hp-reviews-carousel .oz-hp-reviews-swiper {
  overflow: hidden;
}

.oz-hp-reviews-carousel .swiper-slide {
  height: auto;
  display: flex;
}

.oz-hp-reviews-carousel .swiper-slide > .oz-hp-review {
  width: 100%;
  height: 380px;
  overflow: hidden;
}

.oz-hp-reviews-carousel .oz-hp-review-body {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.oz-hp-reviews-carousel .oz-hp-review-photos,
.oz-hp-reviews-carousel .oz-hp-review-reply,
.oz-hp-reviews-carousel .oz-hp-review-title {
  display: none;
}

.oz-hp-reviews-carousel .oz-hp-review-author {
  margin-top: auto;
}

.oz-hp-reviews-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--oz-border, rgba(0,0,0,.12));
  background: #fff;
  color: var(--oz-text, #222);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  transition: background .15s, color .15s, box-shadow .15s, opacity .15s;
  padding: 0;
}

.oz-hp-reviews-nav svg {
  width: 24px;
  height: 24px;
  display: block;
}

.oz-hp-reviews-nav:hover {
  background: var(--oz-text, #222);
  color: #fff;
}

.oz-hp-reviews-nav.swiper-button-disabled {
  opacity: .35;
  cursor: default;
  pointer-events: none;
}

.oz-hp-reviews-nav--prev { left: -4px; }
.oz-hp-reviews-nav--next { right: -4px; }

@media (min-width: 1024px) {
  .oz-hp-reviews-nav--prev { left: -22px; }
  .oz-hp-reviews-nav--next { right: -22px; }
}

@media (max-width: 640px) {
  .oz-hp-reviews-nav { display: none; }
}

/* ================================================================
   Compact review form — used on /reviews/ hub.
   Overrides oz-forms defaults (12px gap, 22px padding) with tighter
   spacing and a 2-col grid for pairs so the form reads as one clean
   card instead of a long list.
   ================================================================ */
.oz-form-wrap--review {
  max-width: 620px;
  margin: 0 auto;
  padding: 0 var(--oz-gap);
}

.oz-form-wrap--review .oz-form {
  gap: 10px;
  margin: 0;
  padding: 18px 20px 16px;
  max-width: none;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(20, 30, 40, .06);
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 14px;
  row-gap: 10px;
}

.oz-form-wrap--review .oz-form > * {
  grid-column: 1 / -1;
}

@container ozform (min-width: 520px) {
  .oz-form-wrap--review .oz-form__field--naam,
  .oz-form-wrap--review .oz-form__field--email,
  .oz-form-wrap--review .oz-form__field--stad,
  .oz-form-wrap--review .oz-form__field--project_type {
    grid-column: span 1;
  }
}

.oz-form-wrap--review .oz-form__label {
  font-size: 12px;
  letter-spacing: .02em;
}

.oz-form-wrap--review .oz-form__field input[type="text"],
.oz-form-wrap--review .oz-form__field input[type="email"],
.oz-form-wrap--review .oz-form__field select,
.oz-form-wrap--review .oz-form__field textarea {
  padding: 8px 11px;
  font-size: 14px;
  border-radius: 6px;
}

.oz-form-wrap--review .oz-form__field textarea {
  min-height: 88px;
}

.oz-form-wrap--review .oz-form__help {
  font-size: 11px;
  line-height: 1.4;
}

.oz-form-wrap--review .oz-form__field--rating .oz-form__rating {
  gap: 2px;
}

.oz-form-wrap--review .oz-form__error {
  min-height: 0;
}

.oz-form-wrap--review .oz-form__field.is-invalid .oz-form__error {
  min-height: 1em;
  margin-top: 2px;
}

.oz-form-wrap--review .oz-form__turnstile {
  min-height: 0;
}

.oz-form-wrap--review .oz-form__nav {
  margin-top: 4px;
}

.oz-form-wrap--review .oz-form__submit {
  width: 100%;
  min-height: 46px;
  font-size: 15px;
  background: var(--oz-accent, #135350);
  color: #fff;
  border-color: var(--oz-accent, #135350);
}

.oz-form-wrap--review .oz-form__submit:hover {
  background: #0f4240;
}

/* Secondary CTA row under the form */
.oz-reviews-secondary-cta {
  max-width: 620px;
  margin: 20px auto 0;
  padding: 0 var(--oz-gap);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  text-align: center;
  font-size: 14px;
  color: var(--oz-text-muted);
}

/* Override global --outline (designed for dark hero) so the button is
   legible on the light sand background. */
.oz-reviews-secondary-cta .oz-hp-btn--outline {
  background: transparent;
  border: 1.5px solid var(--teal);
  color: var(--teal);
}

.oz-reviews-secondary-cta .oz-hp-btn--outline:hover {
  background: var(--teal);
  color: var(--white);
}

/* Hero variant — reviews page */
.oz-hp-hero--reviews .oz-hp-hero-title-tag {
  color: rgba(255, 255, 255, .88);
  font-weight: 500;
  letter-spacing: .04em;
}

/* ================================================================
   TRUSTINDEX TRUST BADGE
   Appended under every review grid/carousel block via Renderer::trust_badge.
   Layout: [Trustindex wordmark] | check Reviews geverifieerd | G Bekijk op Google
   ================================================================ */
.oz-hp-trustindex-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 24px auto 0;
  padding: 10px 20px;
  max-width: max-content;
  border: 1px solid var(--oz-border, rgba(0, 0, 0, .08));
  border-radius: 999px;
  background: var(--oz-bg-subtle, #f7f5f0);
  font-family: var(--oz-ff-body);
  font-size: 13px;
  line-height: 1.4;
  color: var(--oz-text-primary, #2a2a2a);
  letter-spacing: .01em;
}

.oz-hp-trustindex-logo-link {
  display: inline-flex;
  align-items: center;
  border-bottom: 0 !important;
  line-height: 0;
}

.oz-hp-trustindex-logo {
  /* The Trustindex SVG has viewBox 288x48.2 but no intrinsic width/height.
     Chrome resolves naturalWidth/Height to 0, so width:auto collapses to 0.
     Set both dimensions explicitly (preserving the 6:1 aspect ratio). */
  width: 108px;
  height: 18px;
  display: block;
  object-fit: contain;
}

.oz-hp-trustindex-badge-sep {
  display: inline-block;
  width: 1px;
  height: 16px;
  background: var(--oz-border, rgba(0, 0, 0, .14));
  flex-shrink: 0;
}

.oz-hp-trustindex-badge-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.oz-hp-trustindex-check {
  color: #2aab5e;
  flex-shrink: 0;
}

.oz-hp-trustindex-google-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.oz-hp-trustindex-google-icon {
  width: 14px;
  height: 14px;
  display: inline-block;
  border-bottom: 0 !important;
}

.oz-hp-trustindex-badge a {
  color: var(--oz-accent, var(--teal, #1f7a6b));
  text-decoration: none;
  font-weight: 500;
}

.oz-hp-trustindex-google-link:hover {
  text-decoration: underline;
}

/* Compact variant for PDP review tab (tighter vertical rhythm). */
.oz-hp-reviews--pdp .oz-hp-trustindex-badge {
  margin-top: 16px;
  font-size: 12px;
  padding: 8px 16px;
  gap: 10px;
}

/* On dark hero panels (if we ever place the badge above the fold). */
.oz-hp-hero .oz-hp-trustindex-badge {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .18);
  color: #fff;
  backdrop-filter: blur(6px);
}

.oz-hp-hero .oz-hp-trustindex-badge a { color: #fff; }
.oz-hp-hero .oz-hp-trustindex-badge-sep { background: rgba(255, 255, 255, .24); }
/* On the dark hero, swap the light-bg wordmark for the white-fill variant. */
.oz-hp-hero .oz-hp-trustindex-logo {
  content: url('https://cdn.trustindex.io/assets/platform/Trustindex/logo-dark.svg');
}

@media (max-width: 560px) {
  .oz-hp-trustindex-badge {
    flex-wrap: wrap;
    gap: 8px 12px;
    font-size: 12px;
    padding: 10px 16px;
  }
  .oz-hp-trustindex-badge-sep { display: none; }
}
