/* Webflow.css sonrası yüklensin — mobil hamburger + sticky header */

@media screen and (max-width: 991px) {
  body {
    padding-top: calc(
      64px + 56px + env(safe-area-inset-top, 0px)
    );
  }

  .navbar-stack {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000 !important;
    padding-top: env(safe-area-inset-top, 0px);
    background-color: var(--color--light) !important;
    box-shadow: 0 1px 0 rgba(54, 33, 15, 0.08),
      0 4px 24px rgba(54, 33, 15, 0.06);
  }

  .navbar.w-nav {
    position: relative !important;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    height: 64px !important;
    padding-top: 0;
    background: transparent !important;
    box-shadow: none;
  }

  .navbar .container-navbar {
    overflow: visible;
    height: 64px;
  }


  .navbar .left-navbar {
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 200px) !important;
  }

  .navbar .navbar-actions {
    gap: 8px;
  }

  .nav-whatsapp-cta {
    display: flex !important;
  }

  .navbar .link-brand-navbar {
    width: auto !important;
    max-width: 100%;
  }

  .navbar .navbar-actions {
    flex: 0 0 auto;
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    margin-left: auto;
    z-index: 1002;
    position: relative;
  }

  .navbar .mobile-nav-toggle {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    flex-shrink: 0;
  }

  .navbar .nav-menu--desktop {
    display: none !important;
  }
}

@media screen and (min-width: 992px) {
  .navbar-stack {
    position: relative;
  }

  .nav-svc-strip {
    display: none !important;
  }

  .navbar .mobile-nav-toggle {
    display: none !important;
  }

  .nav-whatsapp-cta {
    margin-left: 4px;
  }
}
