 /* Yanıp sönen yeşil animasyon tanımı */
  @keyframes blink-animation {
    0%, 100% {
      opacity: 1;
      box-shadow: 0 0 10px #28a745;
    }
    50% {
      opacity: 0.5;
      box-shadow: 0 0 20px #28a745;
    }
  }

  /* Masaüstü üst bar online ödeme butonu */
  .btn-online-odeme {
    display: inline-block;
    padding: 6px 14px;
    background-color: #18381a; /* canlı yeşil */
    animation: blink-animation 1.5s infinite;
    color: #fff !important;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.3s ease;
  }
  .btn-online-odeme:hover {
    background-color: #1e7e34;
    animation: none;
  }

  /* Menüdeki online ödeme butonu */
  .menu-item-odeme {
    margin-top: 15px;
    text-align: center;
  }
  .btn-online-odeme-menu {
    display: inline-block;
    padding: 10px 20px;
    background-color: #28a745;
    animation: blink-animation 1.5s infinite;
    color: white !important;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: background-color 0.3s ease;
  }
  .btn-online-odeme-menu:hover {
    background-color: #1e7e34;
    animation: none;
  }

  /* Mobil görünüm ayarları */
  @media (max-width: 991px) {
    /* Üst bardaki ve header-main'deki butonları gizle */
    .header-top .btn-online-odeme,
    .header-main .btn-online-odeme.mobile-visible {
      display: none !important;
    }

    /* Menüde online ödeme butonu görünür */
    .menu-item-odeme {
      display: block;
    }
  }

  /* Masaüstünde menüdeki online ödeme butonunu gizle */
  @media (min-width: 992px) {
    .menu-item-odeme {
      display: none;
    }
  }