.mobile_social_container {
  display: none;
}

@media (max-width: 991px) {
  .mobile_social_container {
    display: block;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    z-index: 999;
    pointer-events: none; /* Allows clicking through the empty space */
  }

  .mobile_social_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    pointer-events: none;
  }

  .social_btn {
    pointer-events: auto; /* Re-enables clicking on the buttons */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .social_btn:active {
    transform: scale(0.9);
  }

  .social_btn svg {
    width: 22px;
    height: 22px;
  }

  .whatsapp_btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
  }

  .instagram_btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 6px 15px rgba(220, 39, 67, 0.4);
  }
}
