/* Contact pop — Call + WhatsApp (bottom right) */
.bc-contact-rail {
  position: fixed;
  right: max(1.25rem, env(safe-area-inset-right, 0px));
  bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
  left: auto;
  top: auto;
  z-index: 9990;
  transform: none;
  display: flex;
  flex-direction: row;
  gap: 0;
  font-family: inherit;
  box-shadow:
    0 8px 32px rgba(15, 23, 42, 0.18),
    0 4px 12px rgba(15, 23, 42, 0.1);
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.bc-contact-rail__item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  min-width: 52px;
  text-decoration: none;
  color: #fff;
  transition: filter 0.15s ease;
  white-space: nowrap;
}

.bc-contact-rail__item:hover {
  filter: brightness(1.08);
}

.bc-contact-rail__item--call {
  background: linear-gradient(135deg, #0b6bff 0%, #094bb8 100%);
}

.bc-contact-rail__item--wa {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border-top: none;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.bc-contact-rail__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}

.bc-contact-rail__icon svg {
  width: 20px;
  height: 20px;
}

.bc-contact-rail__label {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .bc-contact-rail__item {
    padding: 0.7rem 0.9rem;
    min-width: 0;
  }

  .bc-contact-rail__label {
    font-size: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bc-contact-rail__item {
    transition: none;
  }
}
