/* ============================================================
   COPP — Google Reviews floating badge (bottom-right fixed)
   ============================================================ */
#copp-reviews-badge {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 99999;
  pointer-events: auto;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid #E4EBF0;
  border-radius: 50px;
  padding: 10px 18px 10px 12px;
  box-shadow: 0 4px 20px rgba(20, 48, 64, .14);
  text-decoration: none;
  color: inherit;
  transition: box-shadow .22s ease, transform .22s ease;
  font-family: 'Poppins', 'Open Sans', Arial, sans-serif;
  max-width: 220px;
}
#copp-reviews-badge:hover {
  box-shadow: 0 8px 32px rgba(20, 48, 64, .22);
  transform: translateY(-2px);
  text-decoration: none;
  color: inherit;
}
.crb__g {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: #F8F9FA;
  border-radius: 50%;
  flex-shrink: 0;
}
.crb__g svg { display: block; }
.crb__stars {
  color: #FBBC04;
  font-size: .95rem;
  letter-spacing: .02em;
  line-height: 1;
}
.crb__score {
  font-size: 1rem;
  font-weight: 800;
  color: #15303F;
  line-height: 1;
}
.crb__meta {
  font-size: .72rem;
  color: #54656F;
  line-height: 1.3;
  white-space: nowrap;
}
@media (max-width: 480px) {
  #copp-reviews-badge {
    bottom: 16px;
    right: 12px;
    padding: 8px 14px 8px 10px;
    gap: 6px;
  }
  .crb__g { width: 26px; height: 26px; }
  .crb__stars { font-size: .82rem; }
  .crb__score { font-size: .88rem; }
}
