/* Mobil cihazlar için stil ayarları */
        @media (max-width: 768px) {
            .cevruk-main-btn {
                display: none !important; /* Mobilde gizle */
            }
        }
        
        /* Daha geniş ekranlar için göster */
        @media (min-width: 769px) {
            .cevruk-main-btn {
                display: flex !important; /* Masaüstünde göster */
            }
        }
      /* Ana Menü Butonu */
      .cevruk-main-btn {
            position: fixed;
            bottom: 50px !important;
            right: 70px !important;
            border: none !important;
            border-radius: 50% !important;
            width: 60px !important;
            height: 60px !important;
            display: flex;
            align-items: center !important;
            justify-content: center !important;
            font-size: 30px !important;
            cursor: pointer !important;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            transition: background-color 0.3s, transform 0.3s;
            animation: bounce 5s ease-in-out infinite;
      }
   
      /* Bounce Effect */
      @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
      }
   
      .cevruk-main-btn {
            /* Diğer stiller burada */
            animation: bounce 2s ease-in-out infinite;
      }
   
      /* Alt Menü Butonları */
      .cevruk-menu-group {
            position: fixed;
            bottom: 120px;
            right: 70px;
            display: none;
            flex-direction: column;
            z-index: 1000;
            text-align: right; /* Metni sağa yaslamak için ekledim */
      }
   
      .cevruk-menu-btn {
            display: flex;
            align-items: center;
            color: white;
            text-decoration: none;
            width: auto;
            justify-content: flex-end;
            margin-bottom:10px!important
      }
   
      .cevruk-menu-btn:hover {
            transform: scale(1.05) !important;
            color: #fff!important
      }
   
      .cevruk-menu-icon {
            border-radius: 50%!important;
            padding: 16px!important;
            font-size: 16px!important;
            margin-left: 10px!important;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            transition: background-color 0.3s, transform 0.3s;
      }
   
      .cevruk-menu-label {
            font-size: 14px!important;
            border-radius: 10px!important;
            padding: 5px 15px!important;
            padding-right: 10px!important;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            transition: background-color 0.3s, transform 0.3s;
   
      }
   
      /* Her buton için renkler */
      .cevruk-whatsapp { background-color: #25D366; }
      .cevruk-instagram { background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4); }
      .cevruk-youtube { background-color: #FF0000; }
      .cevruk-call { background-color: #00ADEF; }
      .cevruk-location { background-color: #3B5998; }
      
      
      /* MOBİL */
      .cevruk-mobile-footer {
            position: fixed;
            bottom: 0;
            width: 100%;
            display: flex;
            justify-content: space-around;
            align-items: center;
            padding: 12px 0px 5px 0px;
            box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.5);
            z-index: 1000;
        }

        .cevruk-mobile-footer-link {
            text-decoration: none;
            font-size: 12px;
            text-align: center;
        }

        .cevruk-mobile-footer-link i {
            font-size: 24px;
            margin-bottom: 8px;
        }

        .cevruk-mobile-footer-link span {
            display: block;
        }

        /* Mobil cihazlar için stil ayarları */
        @media (max-width: 768px) {
            .cevruk-mobile-footer {
                display: flex; /* Mobilde göster */
            }
        }

        /* Daha geniş ekranlar için gizle */
        @media (min-width: 769px) {
            .cevruk-mobile-footer {
                display: none; /* Geniş ekranlarda gizle */
            }
        }