.wa-consult {
    position: fixed;
    bottom: 28px;
    right: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: #ffffff;
    padding: 14px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: all 0.3s ease;
  }
  
  .wa-consult img {
    width: 22px;
    height: 22px;
  }
  
  .wa-consult:hover {
    background: #1ebe5d;
    transform: translateY(-4px);
  }
  
  
  /* Fast Response Badge */
  .wa-badge {
    position: absolute;
    top: -35px;
    right: 5px;
    background: #ffffff;
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }
  
  .wa-text.mobile {
    display: none;
  }
  
  /* Mobile view */
  @media (max-width: 768px) {
    .wa-text.desktop {
      display: none;
    }
  
    .wa-text.mobile {
      display: inline;
      font-size: 13px;
    }
  
    .wa-consult {
      padding: 12px 16px;
      border-radius: 40px;
    }
  }
  
  