/* Desktop Header Brand Styles */
.header-brand-wrapper {
  display: flex;
  align-items: center;
  float: left;
  margin-right: 30px;
}

.brand-logo {
  display: inline-block;
  margin-right: 15px;
}

.brand-meta {
  display: inline-block;
}

.company-name {
  font-size: 15px;
  font-weight: 700;
  color: #222;
  letter-spacing: -0.2px;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0;
  white-space: nowrap;
}

/* Mobile Header Brand Styles */
.mobile-header-brand {
  display: flex;
  align-items: center;
  padding: 10px;
}

.m-brand-logo {
  flex-shrink: 0;
  margin-right: 10px;
}

.m-brand-logo img {
  max-height: 40px;
  width: auto;
}

.m-brand-meta {
  flex: 1;
}

.m-brand-meta .company-name {
  font-size: 12px;
  line-height: 1.1;
}

/* Sticky Header Styles */
.main_header.header-sticky {
  position: fixed;
  background: #fff;
  width: 100%;
  z-index: 999;
  top: 0;
  left: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.main_header.header-sticky .header_top {
  display: none;
}

/* Media Queries */
@media (max-width: 991px) {
  .header-brand-wrapper {
    display: none;
  }
}

@media (min-width: 992px) {
  .mobile-header-brand {
    display: none;
  }
  .main_header.header-sticky {
    animation: fadeInDown 0.5s;
  }
}
