.floating-contact-wrap {
  position: fixed;
  left: 12px;
  bottom: 90px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-pill {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px 0 10px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
}

.floating-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  font-size: 17px;
  background: rgba(255, 255, 255, 0.35);
}

.floating-plan {
  background: #e6c2ae;
  color: #a24f1f;
  border: 1px solid #d7a98f;
}

.floating-phone {
  background: #f3e8e0;
  color: #b65c2e;
  border: 1px solid #e1c8ba;
}

.floating-zalo {
  position: fixed;
  right: 12px;
  bottom: 90px;
  z-index: 99999;
  height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  background: #b86433;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.14);
}

.floating-pill:hover,
.floating-zalo:hover {
  opacity: 0.95;
}

@media (max-width: 767.98px) {
  .floating-contact-wrap {
    left: 8px;
    bottom: 80px;
    gap: 8px;
  }

  .floating-pill {
    min-height: 40px;
    padding: 0 14px 0 8px;
    font-size: 13px;
  }

  .floating-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    margin-right: 6px;
    font-size: 15px;
  }

  .floating-zalo {
    right: 8px;
    bottom: 80px;
    height: 44px;
    padding: 0 14px;
    font-size: 14px;
  }
}