/**
 * V3 sticky contact hub (mockup).
 */

.sticky-contact.acp-sticky-contact {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.sticky-contact .sticky-options {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  transition: opacity 0.2s, transform 0.2s;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

.sticky-contact .sticky-options.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.sticky-contact .sticky-option {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  text-decoration: none;
  color: inherit;
}

.sticky-contact .sticky-option-label {
  background: var(--ink);
  color: #fff;
  font-family: Manrope, sans-serif;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  text-align: right;
}

.sticky-contact .sticky-option-label strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.sticky-contact .sticky-option-label span {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}

.sticky-contact .sticky-option-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.18);
  flex-shrink: 0;
  transition: transform 0.15s;
}

.sticky-contact .sticky-option:hover .sticky-option-icon {
  transform: scale(1.1);
}

.sticky-contact .sticky-icon-wa {
  background: #25d366;
}

.sticky-contact .sticky-icon-wc {
  background: #07c160;
}

.sticky-contact .sticky-icon-ph {
  background: var(--ink);
}

.sticky-contact .sticky-icon-em {
  background: var(--red);
}

.sticky-contact .acp-sticky-icon-ig {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.sticky-contact .acp-sticky-icon-fb {
  background: #1877f2;
}

.sticky-contact .sticky-main-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(200, 32, 47, 0.4);
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
  color: #fff;
  padding: 0;
}

.sticky-contact .sticky-main-btn:hover {
  transform: scale(1.07);
  box-shadow: 0 6px 24px rgba(200, 32, 47, 0.5);
}

.sticky-contact .sticky-main-btn svg {
  transition: transform 0.25s;
}

.sticky-contact .sticky-main-btn.open svg {
  transform: rotate(45deg);
}

@media (max-width: 720px) {
  .sticky-contact.acp-sticky-contact {
    bottom: 20px;
    right: 16px;
  }
}
