/* mobile_social.css */
.mobile-social-container {
   display: none;
}

@media (max-width: 767px) {
   .mobile-social-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: fixed;
      bottom: 25px;
      left: 0;
      right: 0;
      width: 90%;
      margin: 0 auto;
      z-index: 90;
   }

   .mobile-social-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      color: #ffffff;
      text-decoration: none;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
   }
   
   .mobile-social-btn:active {
      transform: scale(0.95);
   }

   .mobile-social-wa {
      background-color: #25D366; /* WhatsApp Yesili */
   }

   .mobile-social-ig {
      background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
   }
   
   .mobile-social-btn svg {
      fill: #ffffff !important;
      width: 22px;
      height: 22px;
   }
}
