.topbar-social[hidden],
.floating-whatsapp[hidden] {
  display: none;
}

.topbar-social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar-social a {
  display: inline-flex;
  width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  border: 1px solid #dfcdc2;
  border-radius: 50%;
  color: var(--primary, #8a5a44);
  font-size: 13px;
  line-height: 1;
  transition: all .2s ease;
  text-decoration: none;
}

.topbar-social a:hover {
  border-color: var(--primary, #8a5a44);
  background: var(--primary, #8a5a44);
  color: #fff;
  transform: translateY(-2px);
}

.floating-whatsapp {
  position: fixed;
  z-index: 40;
  left: 20px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: #258b5a;
  padding: 12px 16px;
  box-shadow: 0 10px 24px #164c332e;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  animation: whatsapp-pulse 2.4s ease-in-out infinite;
  cursor: pointer;
  touch-action: auto;
  user-select: none;
}

.floating-whatsapp span {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 1px solid #fff;
  border-radius: 50%;
  font-size: 15px;
}

.floating-whatsapp:hover {
  animation-play-state: paused;
  filter: brightness(1.04);
}

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 10px 24px #164c332e; }
  50% { box-shadow: 0 14px 31px #164c3352, 0 0 0 7px #258b5a16; }
}

.nav-actions > a[aria-label="Ürün ara"],
.nav-actions > a[data-header-call] {
  display: none !important;
}

@media (max-width: 620px) {
  .floating-whatsapp {
    left: 19px;
    bottom: 14px;
    padding: 12px;
  }

  .floating-whatsapp b {
    display: none;
  }
}
