.shop-floating-link {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 2147482000;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 86px;
  height: 86px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(8, 12, 14, 0.92);
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.shop-floating-link__logo {
  display: block;
  width: 38px;
  height: auto;
}

.shop-floating-link__label {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}

.shop-floating-link:hover {
  transform: translateY(-2px);
  background: rgba(0, 0, 0, 0.96);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.shop-floating-link:focus-visible {
  outline: 3px solid #39d7ff;
  outline-offset: 4px;
}

@media (max-width: 480px) {
  .shop-floating-link {
    right: max(12px, env(safe-area-inset-right));
    bottom: max(12px, env(safe-area-inset-bottom));
    width: 76px;
    height: 76px;
  }

  .shop-floating-link__logo {
    width: 34px;
  }

  .shop-floating-link__label {
    font-size: 10px;
  }
}
