.yg-contact-fab__actions {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
}

/* BUTON (LG STANDARDINA YAKIN) */
.yg-contact-fab__action {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  border-radius: 999px; /* btn gibi */
  padding: 14px 28px; /* btn-lg'e yakın */
  font-size: 18px; /* btn-md-lg arası dengeli */
  font-weight: 600;
  color: #111;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
  transition: 0.2s ease;
  white-space: nowrap;
}

.yg-contact-fab__action:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.yg-contact-fab__icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f4f4;
}

/* SVG */
.yg-contact-fab__icon svg {
  width: 22px;
  height: 22px;
}

/* WhatsApp renk */
.yg-contact-fab__action--whatsapp .yg-contact-fab__icon {
  color: #25d366;
  background: rgba(37, 211, 102, 0.12);
}

/* Telefon renk */
.yg-contact-fab__action--call .yg-contact-fab__icon {
  color: #111;
  background: rgba(17, 17, 17, 0.08);
}

/* TEXT */
.yg-contact-fab__content {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.yg-contact-fab__content strong {

  color: #111 !important;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.yg-contact-fab__content small {
  font-size: 13px;
  color: #666;
}

/* MOBILE */
@media (max-width: 640px) {
  .yg-contact-fab {
    right: 12px;
    bottom: 12px;
  }

  .yg-contact-fab__actions {
    flex-direction: column;
  }

  .yg-contact-fab__action {
    font-size: 16px;
    padding: 12px 20px;
  }

  .yg-contact-fab__icon {
    width: 36px;
    height: 36px;
  }
}