/* === Container Styling === */
.max-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  /* === Logo === */
  .logo {
    height: 34px;
  }
  
  /* === Post Property Button === */
  .post-property-btn {
    border: 2px solid #f27d27;
    border-radius: 2rem;
    padding: 4px 14px;
    font-weight: 500;
    font-size: 0.95rem;
    background: #fff;
    color: #222;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s ease;
    white-space: nowrap;
  }
  
  .post-property-btn:hover {
    border-color: #d95c00;
    color: #d95c00;
  }
  
  .post-property-btn .badge,
  .badge.brokerage-badge {
    background: #41a58d;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 1rem;
    padding: 2px 10px;
    margin-left: 4px;
    letter-spacing: 0.5px;
  }
  
  /* === Dropdown Toggle === */
  .dropdown-toggle {
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
  }
  
  /* === Responsive Layout === */
  .desktop-header {
    display: flex;
  }
  
  .mobile-header {
    display: none;
  }
  
  @media (max-width: 768px) {
    .desktop-header {
      display: none !important;
    }
  
    .mobile-header {
      display: flex !important;
    }
  
    .mobile-header .post-property-btn {
        font-size: 0.85rem;
        padding: 4px 12px;
        min-width: 227px;
        max-width: 230px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
  
    .mobile-header .badge.brokerage-badge {
      font-size: 0.7rem;
      padding: 2px 8px;
    }
  
    .mobile-header img.logo {
      height: 32px;
    }
  }
  

  /* === Container Styling === */
.max-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* === Logo === */
.logo {
  height: 34px;
}

/* === Post Property Button === */
.post-property-btn {
  border: 2px solid #f27d27;
  border-radius: 2rem;
  padding: 4px 14px;
  font-weight: 500;
  font-size: 0.95rem;
  background: #fff;
  color: #222;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s ease;
  white-space: nowrap;
}

.post-property-btn:hover {
  border-color: #d95c00;
  color: #d95c00;
}

.post-property-btn .badge,
.badge.brokerage-badge {
  background: #41a58d;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 1rem;
  padding: 2px 10px;
  margin-left: 4px;
  letter-spacing: 0.5px;
}

/* === Dropdown Toggle === */
.dropdown-toggle {
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
}

/* === Responsive Layout === */
.desktop-header {
  display: flex;
}

.mobile-header {
  display: none;
}

@media (max-width: 768px) {
  .desktop-header {
    display: none !important;
  }

  .mobile-header {
    display: flex !important;
  }

  .mobile-header .post-property-btn {
        display:none !important;
        font-size: 0.85rem;
        padding: 4px 12px;
        min-width: 220px;
        max-width: 230px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

  .mobile-header .badge.brokerage-badge {
    font-size: 0.7rem;
    padding: 2px 8px;
  }

  .mobile-header img.logo {
    height: 32px;
  }
}
/* === Left Sidebar Styles === */
.mobile-sidebar {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  max-width: 280px;
  height: 100vh;
  background: #fff;
  z-index: 1050;
  transition: left 0.3s ease-in-out;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
}

.mobile-sidebar.active {
  left: 0;
}

.sidebar-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1040;
  display: none;
}

.sidebar-backdrop.active {
  display: block;
}

