  .yg-contact-fab {
    position: fixed;
    right: 20px;
    bottom: 120px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    font-family: inherit;
  }

  .yg-contact-fab__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px) scale(0.98);
    transform-origin: bottom right;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .yg-contact-fab.is-open .yg-contact-fab__actions {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .yg-contact-fab__toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 0;
    border-radius: 999px;
    padding: 14px 18px;
    background: #ffafcc;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    font-size: 15px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  }

  .yg-contact-fab__toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  }

  .yg-contact-fab__toggle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    font-size: 14px;
    line-height: 1;
  }

  .yg-contact-fab__action {
    min-width: 240px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    border-radius: 18px;
    padding: 14px 16px;
    color: #111111;
    background: #ffffff;
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .yg-contact-fab__action:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
  }

  .yg-contact-fab__action--whatsapp {
    border-left: 4px solid #25d366;
  }

  .yg-contact-fab__action--call {
    border-left: 4px solid #111111;
  }

  .yg-contact-fab__icon {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
    background: #f4f4f4;
  }

  .yg-contact-fab__action--whatsapp .yg-contact-fab__icon {
    color: #25d366;
    background: rgba(37, 211, 102, 0.12);
  }

  .yg-contact-fab__action--call .yg-contact-fab__icon {
    color: #111111;
    background: rgba(17, 17, 17, 0.08);
  }

  .yg-contact-fab__icon svg {
    width: 22px;
    height: 22px;
    display: block;
  }

  .yg-contact-fab__content {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
  }

  .yg-contact-fab__content strong {
    font-size: 15px;
    font-weight: 700;
  }

  .yg-contact-fab__content small {
    margin-top: 3px;
    font-size: 12px;
    color: #666666;
  }

@media (max-width: 640px) {
  .yg-contact-fab {
    right: 12px;
    bottom: 12px;
    left: auto;
    align-items: flex-end;
    gap: 8px;
  }

  .yg-contact-fab__toggle {
    justify-content: center;
    padding: 12px 14px;
    font-size: 14px;
    gap: 8px;
  }

  .yg-contact-fab__toggle-icon {
    width: 20px;
    height: 20px;
    font-size: 13px;
  }

  .yg-contact-fab__action {
    min-width: 200px;
    width: auto;
    padding: 12px 14px;
    border-radius: 14px;
  }

  .yg-contact-fab__icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
  }

  .yg-contact-fab__icon svg {
    width: 20px;
    height: 20px;
  }

  .yg-contact-fab__content strong {
    font-size: 14px;
  }

  .yg-contact-fab__content small {
    font-size: 11px;
  }
}