/* responsive.css - Mobil veya küçük ekranlarda alt menü ve eleman düzenlemesi için */

/* GENEL MOBİL GÖRÜNÜM (max-width: 1024px) İÇİN TÜM STİLLER */
/* Tüm elemanlar için box-sizing modelini ayarla */
html {
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: inherit;
}

@media screen and (max-width: 1024px) {
  /* Alt Navigasyon */
  .bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    display: flex;
    justify-content: space-between;
    padding: 8px 2px 2px 2px;
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1);
    z-index: 999;
    border-top: 1px solid #ddd;
  }

  .bottom-nav a {
    flex-grow: 1;
    text-align: center;
    text-decoration: none;
    color: #535353;
    font-size: 11px;
  }

  .bottom-nav a.active {
    color: #ff6600;
  }

  .bottom-nav svg {
    width: 24px;
    height: 24px;
    margin: 0 auto 2px;
  }

  .bottom-nav .nav-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Sayı göstergesi */
  .badge-count {
    position: absolute;
    top: -3px;
    right: 20px; /* Ya da -6px, HTML yapınıza göre ayarlayın */
    background-color: #ff6600;
    color: white;
    font-size: 10px;
    padding: 2px 4px;
    border-radius: 12px;
    min-width: 13px;
    text-align: center;
    line-height: 1;
    z-index: 10;
  }

  /* Footer düzeni */
  .footer-top {
    flex-direction: column;
    gap: 20px;
  }
.footer-bottom {
  margin-bottom: 50px;
}

  .bottom-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  /* Header öğeleri gizlenir */
  .header-right,
  .search-box {
    display: none !important;
  }

  .header-container {
    padding: 0 12px;
  }

  .section-subheader {
    padding: 0 5px;
  }

  .category-boxes {
    grid-template-columns: repeat(2, 1fr);
  }

.hamburger-btn {
  position: fixed;
  top: 2px;
  right: 10px;
  z-index: 1100;
  width: 40px;
  height: 40px;
  font-size: 22px;
  border: none;
  border-radius: 50%;
  background-color: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger-btn:hover {
  background-color: rgba(0, 0, 0, 0.06);
}
#mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 260px;
  height: 100%;
  background: #fff;
  box-shadow: -2px 0 10px rgba(0,0,0,0.1);
  transition: right 0.3s ease;
  z-index: 999;
  padding: 20px;
}

#mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 35px 0;
}

#mobile-menu ul li {
  margin-bottom: 15px;
  padding: 5px 0px 5px 5px;
}

#mobile-menu ul li a {
  color: #333;
  text-decoration: none;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

#mobile-menu ul li a:hover {
  color: #ff6600;
}

#menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 999;
  display: none;
}


  .login-btn, .logout-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background: #ff6600;
    color: white;
    text-align: center;
    border-radius: 6px;
    font-weight: bold;
    margin-top: 10px;
  }

  .mobile-panel .row {
    margin-top: 8px;
    font-size: 13px;
    text-align: center;
  }

  .mobile-panel .row a {
    color: #ff6600;
    text-decoration: none;
    font-weight: bold;
    margin-left: 5px;
  }
}

@media screen and (max-width: 1024px) {
  .footer-top {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 sütun görünüm */
    gap: 20px;
  }

  .footer-col {
    min-width: auto;
    width: 100%;
  }
}
	    /* Responsive görünmesin */
    @media screen and (max-width: 1024px) {
      .subheader-menu {
        display: none;
      }
      .subheader-placeholder {
        display: none;
      }
    }

