﻿#fab-container {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

#fab-options {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition:
    max-height 0.35s ease,
    opacity 0.25s ease;
  pointer-events: none;
}

#fab-options.open {
  max-height: 200px;
  opacity: 1;
  pointer-events: all;
}

.fab-option {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-decoration: none;
}

.fab-option-label {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #1a1a2e;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.fab-option-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fab-line-icon  { background: #06c755; }
.fab-phone-icon { background: #1a1a2e; }

.fab-option-icon svg {
  width: 22px;
  height: 22px;
  fill: white;
}

#fab-main {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1a1a2e;
  border: none;
  border-radius: 28px;
  padding: 12px 18px 12px 14px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

#fab-main svg {
  width: 20px;
  height: 20px;
  fill: white;
  transition: transform 0.3s ease;
}

#fab-main span {
  color: white;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
