/* === Floating Action Buttons === */
.floating-buttons,
.floating-qr-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.floating-buttons {
  right: 30px;
  left: auto;
}

/* تنسيقات خاصة بأزرار QR */
.floating-qr-buttons {
  bottom: 30px;
  left: 30px;
  right: auto;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  background: #00bcd4;
  box-shadow: 0 4px 16px #00bcd455;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  border: none;
  outline: none;
  cursor: pointer;
  text-decoration: none;
}
.floating-btn:hover {
  background: #0097a7;
  box-shadow: 0 8px 32px #00bcd477;
  transform: translateY(-4px) scale(1.07);
}
.floating-call {
  background: #43b581;
}
.floating-call:hover {
  background: #357a4e;
}
.floating-whatsapp {
  background: #25d366;
}
.floating-whatsapp:hover {
  background: #128c7e;
}
@media (max-width: 600px) {
  .floating-buttons {
    bottom: 18px;
    right: 12px;
    gap: 10px;
  }
  .floating-btn {
    width: 44px;
    height: 44px;
    font-size: 1.4rem;
  }
}

/* Floating Buttons */
.floating-buttons-left {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1200;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    background: #00bcd4;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: none;
    outline: none;
    cursor: pointer;
    text-decoration: none;
    position: relative;
}

.floating-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.floating-snapchat {
    background: #FFFC00;
    color: #000;
}

.floating-tiktok {
    background: #000000;
    color: #ffffff;
}

.tooltip {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.floating-btn:hover .tooltip {
    opacity: 1;
    visibility: visible;
    right: 65px;
}
