 .whatsapp-wrapper {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .whatsapp-fixed-link {
    width: 60px;
    height: 60px;
    background-color: #25D366; 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
  }

  .whatsapp-fixed-link:hover {
    background-color: #1ebe5d;
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  }

  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
  }

  .whatsapp-fixed-link i {
    color: #fff;
  }

  .edit-btn {
    font-size: 14px;
    padding: 6px 12px;
    background: #f0f0f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #333;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
  }

  .edit-btn:hover {
    background: #ddd;
  }