/* Trustpilot Micro Combo Widget - Custom Styling */

.trustpilot-micro-combo-widget {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  width: 100%;
  text-align: center;
}

.trustpilot-widget-content {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: row;
}

/* Rating Text - "Fremragende" */
.trustpilot-rating-text {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #000;
  line-height: 1.5;
  white-space: nowrap;
}

/* Stars Container */
.trustpilot-stars-container {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

/* Individual Star Styling */
.trustpilot-star {
  display: inline-block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.trustpilot-star svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Full Star - Green Background */
.trustpilot-star-full rect {
  fill: #00b67a !important;
}

.trustpilot-star-full path {
  fill: white !important;
}

/* Half Star - Half Green, Half Grey */
.trustpilot-star-half rect:first-of-type {
  fill: #e0e0e0 !important;
}

.trustpilot-star-half rect:nth-of-type(2) {
  fill: #00b67a !important;
}

.trustpilot-star-half path {
  fill: white !important;
}

/* Empty Star - Grey Background */
.trustpilot-star-empty rect {
  fill: #e0e0e0 !important;
}

.trustpilot-star-empty path {
  fill: white !important;
}

/* Review Count Link */
.trustpilot-reviews-link {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #000;
  text-decoration: underline;
  line-height: 1.5;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.trustpilot-reviews-link:hover {
  opacity: 0.7;
  text-decoration: underline;
}

/* Trustpilot Brand */
.trustpilot-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.trustpilot-brand-star {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.trustpilot-brand-star path {
  fill: #00b67a !important;
}

.trustpilot-brand-text {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #000;
  line-height: 1.5;
  white-space: nowrap;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .trustpilot-widget-content {
    gap: 0.5rem;
  }
  
  .trustpilot-rating-text {
    font-size: 14px;
  }
  
  .trustpilot-star {
    width: 18px;
    height: 18px;
  }
  
  .trustpilot-reviews-link,
  .trustpilot-brand-text {
    font-size: 13px;
  }
  
  .trustpilot-brand-star {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 480px) {
  .trustpilot-widget-content {
    flex-direction: row;
    gap: 0.4rem;
    flex-wrap: wrap;
  }
  
  .trustpilot-rating-text {
    font-size: 13px;
  }
  
  .trustpilot-star {
    width: 16px;
    height: 16px;
  }
  
  .trustpilot-reviews-link {
    font-size: 12px;
  }
  
  .trustpilot-brand-text {
    font-size: 12px;
  }
  
  .trustpilot-brand-star {
    width: 12px;
    height: 12px;
  }
}

/* Hide Trustpilot widget script container */
.trustpilot-widget[style*="display: none"] {
  display: none !important;
}
