/* ========================================
   CHECKFIX REVIEWS CSS - CheckFix CI Farben
   Datei: checkfix-reviews.css
   ======================================== */

.checkfix-reviews-container {
    font-family: 'Open Sans', sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 70px;
}

.trust-item {
    text-align: center;
    padding: 30px 20px;
    background: #f6faed;
    border-radius: 12px;
    border: 1px solid rgba(167, 189, 38, 0.1);
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(167, 189, 38, 0.1);
}

.trust-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #A7bd26;
    margin-bottom: 8px;
}

.trust-item p {
    font-size: 16px;
    color: #555;
    font-weight: 600;
}

.rating-overview {
    background: #f6faed;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 50px;
    border: 1px solid rgba(167, 189, 38, 0.15);
}

.rating-summary {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
}

.overall-rating {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
}

.rating-score {
    font-size: 4rem;
    font-weight: 700;
    color: #A7bd26;
    margin-bottom: 20px;
}

.stars {
    font-size: 2rem;
    color: #A7bd26;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.rating-count {
    font-size: 16px;
    color: #666;
    font-weight: 600;
}

.rating-count span {
    color: #A7bd26;
    font-weight: 700;
}

.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 20px;
}

.star-label {
    font-weight: 600;
    min-width: 80px;
    color: #555;
    font-size: 16px;
}

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

.bar-fill {
    height: 100%;
    background: #A7bd26;
    border-radius: 6px;
    transition: width 1s ease;
}

.percentage {
    font-weight: 700;
    color: #A7bd26;
    min-width: 50px;
    text-align: right;
    font-size: 16px;
}

.reviews-section {
    margin-top: 20px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
}

.review-card {
    background: #fafafa;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    border-left: 4px solid #A7bd26;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(167, 189, 38, 0.1);
    background: white;
}

.review-card.verified {
    background: linear-gradient(135deg, #fefffe 0%, #f6faed 100%);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #A7bd26;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    position: relative;
}

.review-card.verified .avatar::after {
    content: '✓';
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    background: #A7bd26;
    color: white;
    border-radius: 50%;
    font-size: 10px;
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviewer-details h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 5px;
    font-weight: 700;
}

.review-date {
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

.review-stars {
    color: #A7bd26;
    font-size: 1.2rem;
}

.review-text {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.review-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 15px;
    margin-bottom: 15px;
}

.tag {
    background: rgba(167, 189, 38, 0.1);
    color: #A7bd26;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(167, 189, 38, 0.2);
    transition: all 0.2s ease;
}

.tag:hover {
    background: rgba(167, 189, 38, 0.15);
    transform: translateY(-1px);
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(167, 189, 38, 0.1) 0%, rgba(167, 189, 38, 0.05) 100%);
    color: #A7bd26;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    border: 1px solid rgba(167, 189, 38, 0.3);
}

.verified-badge::before {
    content: '';  /* Leer lassen */
}

.review-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
    font-size: 12px;
    color: #999;
}

.review-helpful {
    font-weight: 600;
    color: #A7bd26;
}

.checkfix-no-reviews {
    text-align: center;
    padding: 60px 20px;
    background: #f6faed;
    border-radius: 12px;
    margin: 40px 0;
}

.checkfix-no-reviews p {
    font-size: 18px;
    color: #666;
    font-weight: 600;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) and (min-width: 769px) {
    .trust-indicators {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }
    
    .trust-item {
        flex: 0 1 calc(50% - 15px);
        min-width: 280px;
    }
    
    .trust-item:last-child {
        flex: 0 1 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .checkfix-reviews-container {
        padding: 30px 15px;
    }
    
    .trust-indicators {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 50px;
    }
    
    .trust-item {
        width: 100%;
    }
    
    .trust-item h3 {
        font-size: 2rem;
    }
    
    .rating-summary {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .rating-overview {
        padding: 30px 20px;
    }
    
    .rating-score {
        font-size: 3rem;
    }
    
    .stars {
        font-size: 1.5rem;
    }
    
    .rating-bar {
        gap: 12px;
    }
    
    .star-label {
        min-width: 60px;
        font-size: 14px;
    }
    
    .percentage {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .review-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .avatar {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .reviewer-details h4 {
        font-size: 1rem;
    }
    
    .review-text {
        font-size: 15px;
    }
    
    .review-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .trust-item {
        padding: 20px 15px;
    }
    
    .trust-item h3 {
        font-size: 1.8rem;
    }
    
    .trust-item p {
        font-size: 14px;
    }
    
    .rating-overview {
        padding: 20px 15px;
    }
    
    .overall-rating {
        padding: 20px;
    }
    
    .rating-score {
        font-size: 2.5rem;
    }
    
    .review-card {
        padding: 15px;
    }
    
    .reviewer-info {
        gap: 12px;
    }
}

/* === CheckFix Reviews – SLIDER SUPPORT (append at end) ===================== */

/* Fallback-Grid für No-JS */
.reviews-grid{display:grid;grid-template-columns:1fr;gap:16px}
@media (min-width:768px){.reviews-grid{grid-template-columns:repeat(2,1fr)}}
@media (min-width:1024px){.reviews-grid{grid-template-columns:repeat(3,1fr)}}
.reviews-grid.hidden{display:none}

/* Swiper-Container: erst ausblenden, wenn JS ready wird eingeblendet
   -> verhindert FOUC und doppelte Darstellung */
.checkfix-reviews-slider{display:none}
.checkfix-reviews-slider.is-ready{display:block}

/* Slides/Karten: volle Höhe im Slide nutzen */
.swiper-slide{height:auto}
.swiper-slide > .review-card{height:100%}

/* Navigation (Pfeile) – CI-nah und klickbar */
.checkfix-reviews-slider .swiper-button-prev,
.checkfix-reviews-slider .swiper-button-next{
  width:38px;height:38px;border-radius:50%;
  border:1px solid rgba(167,189,38,.35); /* #A7bd26 */
  background:#fff;box-shadow:0 1px 2px rgba(0,0,0,.06);
  z-index:5
}
.checkfix-reviews-slider .swiper-button-prev::after,
.checkfix-reviews-slider .swiper-button-next::after{font-size:16px}

/* Pagination kompakt */
.checkfix-reviews-slider .swiper-pagination-bullet{
  width:8px;height:8px;opacity:.5;background:#A7bd26
}
.checkfix-reviews-slider .swiper-pagination-bullet-active{opacity:1}

/* Sicherheitsnetz: Keine Overlays über den Pfeilen */
.checkfix-reviews-slider{position:relative}
.checkfix-reviews-slider *{box-sizing:border-box}

/* === Patch: Style auf "gestern" angleichen =============================== */

/* Container & Trust-Boxen etwas luftiger und mittig begrenzen */
.checkfix-reviews-container{padding:60px 20px;background:#fff}
.trust-indicators{max-width:900px;margin-left:auto;margin-right:auto;gap:20px}
.trust-item{padding:24px 20px;border:1px solid rgba(167,189,38,.10);background:#f6faed;border-radius:12px;transition:.3s}
.trust-item:hover{transform:translateY(-2px);box-shadow:0 4px 12px rgba(167,189,38,.10)}
.trust-item h3{font-size:2.2rem;font-weight:800;color:#A7bd26;line-height:1;margin:0 0 8px}
.trust-item p{font-size:15px;color:#555;font-weight:600;line-height:1.3;margin:0}

/* Rating-Übersicht kompakter */
.rating-overview{background:#f6faed;border-radius:12px;padding:30px;margin-bottom:40px;border-top:4px solid #A7bd26;box-shadow:0 4px 12px rgba(0,0,0,.08)}
.rating-summary{grid-template-columns:1fr 2fr;gap:40px}
.overall-rating .rating-score{font-size:3.5rem;font-weight:800;color:#A7bd26;line-height:1;margin-bottom:8px}
.overall-rating .stars{font-size:1.8rem;letter-spacing:2px;margin-bottom:12px}
.rating-count{font-size:15px}
.rating-count span{color:#A7bd26;font-weight:700}
.rating-breakdown{gap:12px;padding:5px}
.rating-bar{gap:15px;padding:3px 0}
.star-label{min-width:70px;font-size:15px}
.bar{height:10px;border-radius:5px}
.bar-fill{border-radius:5px}

/* Karten-Look wie gestern */
.review-card{background:#fff;border-radius:12px;box-shadow:0 4px 12px rgba(0,0,0,.08);padding:24px;border:1px solid #f0f0f0;border-top:4px solid #A7bd26;min-height:320px;display:flex;flex-direction:column;transition:.3s}
.review-card:hover{transform:translateY(-2px);box-shadow:0 8px 20px rgba(0,0,0,.12)}
.review-card.verified{background:linear-gradient(135deg,#fefffe 0%,#f9fcf4 100%)}
.review-header{align-items:flex-start;margin-bottom:16px}
.reviewer-info{gap:12px;flex:1;min-width:0}
.avatar{width:45px;height:45px;border-radius:50%;background:#A7bd26;color:#fff;font-weight:800;font-size:16px;display:flex;align-items:center;justify-content:center;flex-shrink:0;box-shadow:0 2px 6px rgba(167,189,38,.3)}
.review-card.verified .avatar{position:relative}
.review-card.verified .avatar::after{content:'✓';position:absolute;bottom:-2px;right:-2px;width:16px;height:16px;background:#A7bd26;color:#fff;border-radius:50%;font-size:9px;display:flex;align-items:center;justify-content:center;border:2px solid #fff;box-shadow:0 2px 4px rgba(0,0,0,.2)}
.reviewer-details h4{font-size:16px;margin:0 0 4px;font-weight:700;line-height:1.2}
.review-date{font-size:13px;color:#666;font-weight:600;line-height:1.2}
.review-stars{font-size:18px;line-height:1;white-space:nowrap}
.review-tags{gap:6px;margin-top:auto;margin-bottom:10px}
.tag{background:rgba(167,189,38,.1);color:#A7bd26;padding:4px 10px;border-radius:12px;font-size:12px;font-weight:600;border:1px solid rgba(167,189,38,.2);transition:.3s}
.tag:hover{background:rgba(167,189,38,.15)}
.verified-badge{gap:4px;background:linear-gradient(135deg,rgba(167,189,38,.1) 0%,rgba(167,189,38,.05) 100%);color:#A7bd26;padding:4px 10px;border-radius:12px;font-size:11px;font-weight:700;border:1px solid rgba(167,189,38,.25)}
.review-meta{margin-top:10px;padding-top:10px;border-top:1px solid #f0f0f0;font-size:11px;color:#999}

/* Swiper: Pfeile außerhalb, sichtbarer Bereich erweitern */
.checkfix-reviews-slider.swiper{overflow:visible;padding:0 48px} /* etwas Innenabstand, damit Pfeile Platz haben */
.checkfix-reviews-slider .swiper-button-prev,
.checkfix-reviews-slider .swiper-button-next{
  position:absolute;top:calc(50% - 10px);
  width:40px;height:40px;border-radius:50%;
  background:#fff;border:2px solid #A7bd26;color:#A7bd26;
  box-shadow:0 4px 12px rgba(0,0,0,.10);z-index:10;
}
.checkfix-reviews-slider .swiper-button-prev{left:-24px}
.checkfix-reviews-slider .swiper-button-next{right:-24px}
.checkfix-reviews-slider .swiper-button-prev::after,
.checkfix-reviews-slider .swiper-button-next::after{font-size:20px}
.checkfix-reviews-slider .swiper-button-prev:hover,
.checkfix-reviews-slider .swiper-button-next:hover{background:#A7bd26;color:#fff;transform:scale(1.06)}
.checkfix-reviews-slider .swiper-button-prev:active,
.checkfix-reviews-slider .swiper-button-next:active{transform:scale(.96)}

/* Pagination dezenter */
.checkfix-reviews-slider .swiper-pagination{margin-top:18px}
.checkfix-reviews-slider .swiper-pagination-bullet{width:10px;height:10px;background:#d0d0d0;opacity:1}
.checkfix-reviews-slider .swiper-pagination-bullet-active{background:#A7bd26;border-radius:5px;width:24px}

/* Überschrift aus PHP ausblenden, wenn du deinen Builder-Titel nutzt */
.checkfix-reviews-container .section-title{display:none}

/* Responsive Angleichungen */
@media (max-width:1024px){
  .rating-summary{grid-template-columns:1fr;gap:25px}
  .checkfix-reviews-slider.swiper{padding:0 45px}
  .checkfix-reviews-slider .swiper-button-prev{left:-18px}
  .checkfix-reviews-slider .swiper-button-next{right:-18px}
  .review-card{min-height:280px;padding:20px}
}
@media (max-width:768px){
  .checkfix-reviews-container{padding:40px 15px}
  .trust-indicators{grid-template-columns:1fr;gap:15px;margin-bottom:35px}
  .rating-overview{padding:25px 20px}
  .overall-rating .rating-score{font-size:3rem}
  .checkfix-reviews-slider.swiper{padding:0 40px}
  .checkfix-reviews-slider .swiper-button-prev,.checkfix-reviews-slider .swiper-button-next{width:35px;height:35px}
  .avatar{width:40px;height:40px;font-size:14px}
  .reviewer-details h4{font-size:15px}
  .review-text{-webkit-line-clamp:5}
}
@media (max-width:480px){
  .checkfix-reviews-slider.swiper{padding:0 35px}
  .checkfix-reviews-slider .swiper-button-prev,.checkfix-reviews-slider .swiper-button-next{width:32px;height:32px}
  .review-card{padding:18px}
  .tag{font-size:11px;padding:3px 8px}
}

/* --- Weiterlesen-System --- */
.review-text-wrapper{position:relative}
.review-toggle-btn{
  display:inline-block;margin-top:6px;padding:6px 12px;font-size:13px;font-weight:700;
  color:#A7bd26;background:rgba(167,189,38,.10);border:1px solid rgba(167,189,38,.30);
  border-radius:8px;cursor:pointer;transition:all .25s ease
}
.review-toggle-btn:hover{background:#A7bd26;color:#fff}

/* Sterne unter dem Namen sauber ausrichten */
.reviewer-details{display:flex;flex-direction:column}
.reviewer-details h4{margin:0;font-size:16px;line-height:1.25}
.review-stars{font-size:18px;line-height:1;margin:4px 0 2px;white-space:nowrap;color:#A7bd26}

/* Avatar nicht quetschen (falls nicht schon gesetzt) */
.avatar{width:45px;height:45px;flex-shrink:0;display:flex;align-items:center;justify-content:center;border-radius:50%}

/* Pfeile innerhalb der Box halten (falls zu weit rausstehen) */
.checkfix-reviews-slider.swiper{overflow:visible;padding:0 44px}
.checkfix-reviews-slider .swiper-button-prev{left:-14px}
.checkfix-reviews-slider .swiper-button-next{right:-14px}
@media (max-width:1024px){
  .checkfix-reviews-slider.swiper{padding:0 40px}
  .checkfix-reviews-slider .swiper-button-prev{left:-10px}
  .checkfix-reviews-slider .swiper-button-next{right:-10px}
}

/* === Slider clamp: nichts ragt über die 1200er Box hinaus =============== */
.checkfix-reviews-container{max-width:1200px;margin:0 auto}
.checkfix-reviews-slider.swiper{
  overflow:hidden;              /* <<< wichtig: abschneiden, nicht rausstehen */
  padding:0 24px;               /* innen etwas Platz für Pfeile */
}

/* Pfeile innerhalb halten */
.checkfix-reviews-slider .swiper-button-prev,
.checkfix-reviews-slider .swiper-button-next{
  width:40px;height:40px;border-radius:50%;
  background:#fff;border:2px solid #A7bd26;color:#A7bd26;
  box-shadow:0 4px 12px rgba(0,0,0,.10);
}
.checkfix-reviews-slider .swiper-button-prev{left:6px}
.checkfix-reviews-slider .swiper-button-next{right:6px}
.checkfix-reviews-slider .swiper-button-prev::after,
.checkfix-reviews-slider .swiper-button-next::after{font-size:20px}

@media (max-width:1024px){
  .checkfix-reviews-slider.swiper{padding:0 16px}
  .checkfix-reviews-slider .swiper-button-prev{left:4px}
  .checkfix-reviews-slider .swiper-button-next{right:4px}
}

/* === Header-Layout feinjustieren ======================================= */
.review-header{align-items:center;margin-bottom:14px}
.reviewer-info{gap:14px}
.avatar{width:45px;height:45px;flex-shrink:0}
.reviewer-details{display:flex;flex-direction:column}
.reviewer-details h4{margin:0;font-size:16px;line-height:1.25}
.review-stars{margin:6px 0 2px;font-size:18px;color:#A7bd26;line-height:1}
.review-date{font-size:13px;color:#666;font-weight:600}

/* === Weiterlesen als Link, kein Button ================================== */
.review-toggle-btn,
.review-toggle-link{ /* safety: falls Button noch existiert */
  all: unset;
  display:inline;
  cursor:pointer;
  color:#A7bd26;
  font-weight:700;
  font-size:13px;
  line-height:1.6;
  text-decoration: underline;
}
.review-toggle-btn:hover,
.review-toggle-link:hover{opacity:.8}

/* --- Slider: nichts ragt über die Box hinaus --- */
/* Bühne: innerhalb der 1200er Box bleiben, mit Platz für Pfeile */
.checkfix-reviews-container{max-width:1200px;margin:0 auto}
.checkfix-reviews-slider.swiper{
  overflow: hidden;     /* schneidet Überstand ab */
  padding: 0 44px;      /* Platz links/rechts NUR für die Pfeile */
}

/* Pfeile sitzen im Innen-Polster, nicht über den Karten */
.checkfix-reviews-slider .swiper-button-prev,
.checkfix-reviews-slider .swiper-button-next{
  width:40px;height:40px;border-radius:50%;
  background:#fff;border:2px solid #A7bd26;color:#A7bd26;
  box-shadow:0 4px 12px rgba(0,0,0,.10);
  top: calc(50% - 8px);
}
.checkfix-reviews-slider .swiper-button-prev{left:12px}
.checkfix-reviews-slider .swiper-button-next{right:12px}
.checkfix-reviews-slider .swiper-button-prev::after,
.checkfix-reviews-slider .swiper-button-next::after{font-size:20px}

/* Slides sauber strecken, keine Restpixel */
.checkfix-reviews-slider .swiper-wrapper{align-items:stretch}
.checkfix-reviews-slider .swiper-slide{height:auto;box-sizing:border-box}

/* Sicherheit: nichts rechts „lugt“ */
.reviews-section{overflow:hidden}

/***** === HARD FIX (übersteuert doppelte/konfliktierende Regeln) === *****/

/* NUR die basis .review-text (ohne -short/-full) */
.checkfix-reviews-container .review-card .review-text-wrapper .review-text:not(.review-text-short):not(.review-text-full){
  display: block !important;
  -webkit-line-clamp: unset !important;
  -webkit-box-orient: unset !important;
  overflow: visible !important;
}

/* 2) Slider-Bühne: nichts darf überstehen; Pfeile im Innenpolster */
.checkfix-reviews-container .checkfix-reviews-slider.swiper{
  overflow: hidden !important;     /* schneidet „4. Karte“ ab */
  padding: 0 44px !important;      /* Parkspur für die Pfeile */
}
.checkfix-reviews-container .checkfix-reviews-slider .swiper-wrapper{
  align-items: stretch !important;
}
.checkfix-reviews-container .checkfix-reviews-slider .swiper-slide{
  height: auto !important;
  box-sizing: border-box !important;
}

/* 3) Pfeile eindeutig positionieren (keine negativen Werte) */
.checkfix-reviews-container .checkfix-reviews-slider .swiper-button-prev,
.checkfix-reviews-container .checkfix-reviews-slider .swiper-button-next{
  width: 40px !important; height: 40px !important; border-radius: 50% !important;
  background: #fff !important; border: 2px solid #A7bd26 !important; color:#A7bd26 !important;
  box-shadow: 0 4px 12px rgba(0,0,0,.10) !important;
  top: calc(50% - 8px) !important;
}
.checkfix-reviews-container .checkfix-reviews-slider .swiper-button-prev{ left: 12px !important; }
.checkfix-reviews-container .checkfix-reviews-slider .swiper-button-next{ right: 12px !important; }
.checkfix-reviews-container .checkfix-reviews-slider .swiper-button-prev::after,
.checkfix-reviews-container .checkfix-reviews-slider .swiper-button-next::after{ font-size: 20px !important; }

/* 4) Nichts rechts „lugt“ (Sicherheitsnetz) */
.checkfix-reviews-container .reviews-section{ overflow: hidden !important; }

/* 5) Sterne sauber zwischen Name & Firma (mittiger Eindruck) */
.checkfix-reviews-container .review-header {
    align-items: center !important;
    margin-bottom: 16px !important;
}
.checkfix-reviews-container .reviewer-info {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
}
.checkfix-reviews-container .reviewer-details {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 4px !important; /* ← NEU! Das ist der Schlüssel */
}
.checkfix-reviews-container .reviewer-details h4 {
    margin: 0 !important; /* ← kein margin-bottom mehr */
    padding: 0 !important;
    font-size: 17px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
}
.checkfix-reviews-container .review-stars{
  margin: 6px 0 6px !important; font-size: 18px !important; line-height:1 !important; color:#A7bd26 !important;
}
.checkfix-reviews-container .review-date{ font-size:13px !important; color:#666 !important; font-weight:600 !important; }

/* === FINALE Toggle-Styles === */

/* === FINALE Toggle-Styles - MIT FORCE === */

/* Weiterlesen-Button */
.review-toggle-btn {
    display: inline-block !important;
    margin-top: 8px;
    padding: 0;
    background: none !important;
    border: none !important;
    color: #A7bd26 !important;
    font-weight: 700;
    font-size: 13px;
    text-decoration: underline;
    cursor: pointer;
    font-family: inherit;
    line-height: 1.6;
}

.review-toggle-btn:hover {
    opacity: 0.8;
}

/* Text-Bereiche - ERZWUNGEN */
.checkfix-reviews-container .review-card .review-text-wrapper .review-text-short {
    display: block;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 8px;
}

.checkfix-reviews-container .review-card .review-text-wrapper .review-text-full {
    display: none;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 8px;
}

/* Basis review-text ohne Suffix */
.checkfix-reviews-container .review-card .review-text-wrapper .review-text {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 8px;
}

.checkfix-reviews-container .review-stars {
    margin: 0 !important; /* ← kein margin mehr */
    padding: 0 !important;
    font-size: 18px !important;
    line-height: 1 !important;
    color: #A7bd26 !important;
}

.checkfix-reviews-container .avatar {
    width: 45px !important;
    height: 45px !important;
    flex-shrink: 0 !important;
    align-self: center !important; /* Avatar mittig */
}

/* === Review Card - Datum immer unten === */

.checkfix-reviews-container .review-card {
    display: flex !important;
    flex-direction: column !important;
    min-height: 320px !important;
}

/* Text-Wrapper nimmt verfügbaren Platz */
.checkfix-reviews-container .review-text-wrapper {
    flex: 1 !important; /* Wächst und füllt Raum */
}

/* Tags & Meta nach unten schieben */
.checkfix-reviews-container .review-tags {
    margin-top: auto !important; /* Schiebt sich nach unten */
    margin-bottom: 10px !important;
}

.checkfix-reviews-container .review-meta {
    margin-top: 10px !important;
    padding-top: 10px !important;
}

/* Verifizierte Badge ganz unten */
.checkfix-reviews-container .verified-badge {
    margin-top: 10px !important;
}

/* Meta (mit Datum) immer am Ende */
.checkfix-reviews-container .review-card > .review-meta {
    order: 99 !important; /* Kommt als letztes */
}

.checkfix-reviews-container .review-card > .verified-badge {
    order: 100 !important; /* Kommt nach Meta */
}

/* === Review Card - Richtige Reihenfolge === */

.checkfix-reviews-container .review-card {
    display: flex !important;
    flex-direction: column !important;
    min-height: 320px !important;
}

/* Header bleibt oben */
.checkfix-reviews-container .review-card > .review-header {
    order: 1 !important;
}

/* Text-Wrapper */
.checkfix-reviews-container .review-card > .review-text-wrapper {
    order: 2 !important;
    flex: 1 !important;
}

/* Tags */
.checkfix-reviews-container .review-card > .review-tags {
    order: 3 !important;
    margin-top: auto !important;
    margin-bottom: 10px !important;
}

/* Verifizierte Badge VOR dem Datum */
.checkfix-reviews-container .review-card > .verified-badge {
    order: 4 !important;
    margin-bottom: 10px !important;
}

/* Meta (Datum) ganz unten */
.checkfix-reviews-container .review-card > .review-meta {
    order: 5 !important;
    margin-top: 0 !important;
}