.share-float {
  position: fixed;
  right: 31px;
  bottom: 96px;
  z-index: 1001;
}

.share-float__toggle {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid #d6dce4;
  border-radius: 50%;
  background: #fff;
  color: #142642;
  box-shadow: 0 6px 18px rgba(13, 30, 54, 0.16);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease,
    box-shadow 180ms ease;
}

.share-float__toggle:hover,
.share-float.is-open .share-float__toggle {
  border-color: #1760c6;
  color: #1760c6;
  box-shadow: 0 9px 22px rgba(13, 30, 54, 0.2);
  transform: translateY(-1px);
}

.share-float__toggle:focus-visible,
.share-float__option:focus-visible {
  outline: 3px solid rgba(23, 96, 198, 0.35);
  outline-offset: 2px;
}

.share-float__toggle svg {
  width: 20px;
  height: 20px;
}

.share-float__menu {
  position: absolute;
  right: -7px;
  bottom: calc(100% + 10px);
  display: grid;
  width: max-content;
  min-width: 210px;
  gap: 4px;
  padding: 8px;
  border: 1px solid #dfe4ea;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(13, 30, 54, 0.2);
}

.share-float__menu[hidden] {
  display: none;
}

.share-float__option {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #26384f;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease;
}

.share-float__option:hover {
  background: #f2f6fc;
  color: #1760c6;
}

.share-float__option svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.share-float__option--whatsapp svg {
  color: #1fae55;
}

.share-float__status {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 600px) {
  .share-float {
    right: 22px;
    bottom: 84px;
  }

  .share-float__toggle {
    width: 42px;
    height: 42px;
  }

  .share-float__menu {
    right: -6px;
    min-width: 200px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .share-float__toggle,
  .share-float__option {
    transition: none;
  }
}
