.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.social-link {
  position: relative;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 15, 15, 0.12);
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: 0;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.social-link:hover {
  transform: translateY(-1px);
  border-color: rgba(15, 15, 15, 0.28);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.social-link--instagram {
  color: #fff;
  border: 0;
  border-radius: 9px;
  background:
    radial-gradient(circle at 30% 108%, #feda75 0 22%, #fa7e1e 34%, transparent 52%),
    radial-gradient(circle at 8% 10%, #405de6 0 28%, #5851db 42%, transparent 58%),
    linear-gradient(135deg, #405de6 0%, #833ab4 28%, #c13584 46%, #e1306c 62%, #fd1d1d 78%, #f56040 100%);
}

.social-link--threads {
  color: #fff;
  background: #111;
  border-color: #111;
  border-radius: 9px;
}

.social-link svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
  flex: 0 0 auto;
}

.channel-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
  min-width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 16px;
  border-radius: 999px;
  background: #75f05b;
  color: #111;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(43, 180, 37, 0.28), 0 3px 10px rgba(0, 0, 0, 0.12);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.channel-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(43, 180, 37, 0.34), 0 5px 14px rgba(0, 0, 0, 0.16);
}

.channel-float--above-bar {
  bottom: 88px;
}

.channel-float__dots {
  width: 30px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border-radius: 12px;
  background: #222;
}

.channel-float__dots span {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #75f05b;
}

.channel-float__label {
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

@media (max-width: 720px) {
  .channel-float {
    right: 16px;
    bottom: 18px;
    width: 52px;
    min-width: 52px;
    height: 52px;
    padding: 0;
  }

  .channel-float--above-bar {
    bottom: 82px;
  }

  .channel-float__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }
}
