/* Floating Google badge */
#ac-google-badge.ac-google-badge{
  position:fixed !important;
  right:24px !important;
  bottom:90px !important;
  left:auto !important;
  top:auto !important;
  z-index:999999 !important;
  text-decoration:none !important;
  width:auto !important;
  max-width:calc(100vw - 32px) !important;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif !important;
}

/* Card */
#ac-google-badge .ac-google-badge__inner{
  background:#f3f4f6 !important;
  border-radius:18px !important;
  padding:14px 18px !important;
  box-shadow:0 12px 30px rgba(0,0,0,.12) !important;
  display:flex !important;
  align-items:center !important;
  gap:12px !important;
  transition:transform .25s ease, box-shadow .25s ease !important;
}

#ac-google-badge:hover .ac-google-badge__inner{
  transform:translateY(-3px) !important;
  box-shadow:0 18px 38px rgba(0,0,0,.18) !important;
}

/* Logo */
#ac-google-badge .ac-google-logo,
#ac-google-badge .ac-google-logo::before,
#ac-google-badge .ac-google-logo::after{
  background:transparent !important;
  background-image:none !important;
  border-radius:0 !important;
  box-shadow:none !important;
}

#ac-google-badge .ac-google-logo{
  width:32px !important;
  height:32px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  flex-shrink:0 !important;
}

#ac-google-badge .ac-google-logo img{
  width:22px !important;
  height:22px !important;
  object-fit:contain !important;
  display:block !important;
  background:transparent !important;
  border-radius:0 !important;
}

/* Text */
#ac-google-badge .ac-rating-top{
  display:flex !important;
  align-items:center !important;
  gap:8px !important;
}

#ac-google-badge .ac-score{
  font-size:22px !important;
  font-weight:600 !important;
  color:#111 !important;
  line-height:1 !important;
}

#ac-google-badge .ac-stars{
  color:#f4b400 !important;
  font-size:18px !important;
  letter-spacing:2px !important;
  line-height:1 !important;
}

#ac-google-badge .ac-reviews{
  font-size:14px !important;
  color:#777 !important;
  margin-top:2px !important;
}

/* Safety: if CSS is loaded, still hide on mobile */
@media (max-width:768px){
  #ac-google-badge{ display:none !important; }
}