/* ============================================
 * TGA Metal — Trust Enhance
 * Badges (hero), reviews rating, quick trust signals
 * ============================================ */

/* ----- Trust badges row (pod hero kategorii) ----- */
.trust-badges-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  padding: 14px 20px;
  background: linear-gradient(180deg, #F8FAFC 0%, #EEF3F8 100%);
  border-top: 1px solid #E6EDF6;
  border-bottom: 1px solid #E6EDF6;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Saira', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1C3957;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.trust-badge svg {
  width: 18px;
  height: 18px;
  color: #1a8d3f;
  flex-shrink: 0;
}

.trust-badge strong {
  font-weight: 700;
  color: #2461a3;
}

@media (max-width: 640px) {
  .trust-badges-row {
    padding: 12px 16px;
    gap: 8px 14px;
  }
  .trust-badge {
    font-size: 12px;
  }
  .trust-badge svg {
    width: 16px;
    height: 16px;
  }
}

/* ----- Reviews rating header (nad Splide reviews carousel) ----- */
.reviews-rating-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 8px auto 28px;
  padding: 18px 24px;
  max-width: 560px;
  background: #fff;
  border: 1px solid #E6EDF6;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(28, 57, 87, .06);
  text-align: center;
}

.reviews-rating-stars {
  display: inline-flex;
  gap: 3px;
  line-height: 1;
}

.reviews-rating-stars svg {
  width: 22px;
  height: 22px;
  color: #FFC107;
}

.reviews-rating-score {
  font-family: 'Saira', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1C3957;
}

.reviews-rating-score strong {
  font-size: 28px;
  color: #2461a3;
  margin-right: 6px;
}

.reviews-rating-label {
  font-family: 'Saira', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #6B7485;
  letter-spacing: 0.02em;
}

.reviews-rating-label a {
  color: #2461a3;
  text-decoration: underline;
}

.reviews-rating-label a:hover {
  color: #1C3957;
}

@media (max-width: 640px) {
  .reviews-rating-header {
    padding: 14px 18px;
    margin: 4px 16px 22px;
  }
  .reviews-rating-score strong {
    font-size: 24px;
  }
  .reviews-rating-stars svg {
    width: 18px;
    height: 18px;
  }
}

/* ----- Mobile sticky CTA bar — body padding (prevents content being hidden) ----- */
@media (max-width: 1024px) {
  body {
    padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px)) !important;
  }
}
