/* Google review tab — compact, always fully visible on right edge */

body > a.google-review-tab,
body > .google-review-tab,
.google-review-tab {
  position: fixed;
  top: calc(var(--header-h, 64px) + var(--safe-top, 0px) + 0.55rem);
  right: max(0.65rem, env(safe-area-inset-right, 0px));
  bottom: auto;
  left: auto;
  z-index: 195;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.42rem 0.55rem 0.42rem 0.48rem;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  border: 1.5px solid rgba(0, 119, 182, 0.16);
  border-radius: 10px;
  box-shadow: 0 3px 14px rgba(15, 28, 46, 0.12);
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  transition: box-shadow 0.2s ease, opacity 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

body > a.google-review-tab,
body > .google-review-tab {
  z-index: 195;
}

body.has-topbar .google-review-tab {
  top: calc(
    var(--topbar-h, 36px) + var(--header-h, 64px) + var(--safe-top, 0px) + 0.55rem
  );
}

.google-review-tab:hover,
.google-review-tab:focus-visible {
  box-shadow: 0 4px 18px rgba(42, 31, 24, 0.16);
  color: var(--ink);
  outline: none;
}

@media (max-width: 768px) {
  .google-review-tab {
    top: calc(var(--topbar-stack, var(--topbar-h, 40px)) + var(--header-h, 56px) + var(--safe-top, 0px) + 0.45rem);
    right: max(0.5rem, env(safe-area-inset-right, 0px));
    font-size: 0.7rem;
    min-height: 40px;
  }

  body.has-topbar .google-review-tab {
    top: calc(
      var(--topbar-stack, var(--topbar-h, 40px)) + var(--header-h, 56px) + var(--safe-top, 0px) + 0.45rem
    );
  }
}

.google-review-tab__icon {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
  opacity: 1;
  filter: none;
}

.google-review-tab__text {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.google-review-tab__rating {
  display: inline-flex;
  align-items: baseline;
  gap: 0.08rem;
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1;
  color: var(--ink-soft, #3d4f63);
  white-space: nowrap;
  background: linear-gradient(
    135deg,
    rgba(66, 133, 244, 0.14) 0%,
    rgba(52, 168, 83, 0.1) 35%,
    rgba(251, 188, 5, 0.1) 65%,
    rgba(234, 67, 53, 0.08) 100%
  );
  border: 1px solid rgba(0, 119, 182, 0.12);
  padding: 0.18rem 0.38rem;
  border-radius: 100px;
  letter-spacing: -0.02em;
}

.google-review-tab__num {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
}

.google-review-tab__star {
  font-size: 0.72rem;
  opacity: 0.92;
}

body.modal-open .google-review-tab,
body.cart-open .google-review-tab,
body.roulette-open .google-review-tab,
body:has(.lightbox.open) .google-review-tab,
body:has(.feat-cmd.is-open) .google-review-tab {
  opacity: 0;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .google-review-tab {
    transition: opacity 0.2s ease;
  }
}