.elementor-538 .elementor-element.elementor-element-575e044{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-538 .elementor-element.elementor-element-89ecdf5 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-89ecdf5 *//* Top banner */
.top-banner {
  background-color: #5b4218;
  color: white;
  text-align: center;
  padding: 5px 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Main header container */
.custom-header {
  font-family: Arial, sans-serif;
}

.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 10px 20px;
  background-color: white;
  border-bottom: 1px solid #ccc;
  position: relative;
}

/* Logo section */
.header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  max-height: 40px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}


.site-name {
  text-decoration: none;
  color: #5b4218;
  font-weight: 700;
  font-size: 20px;
  white-space: nowrap;
}

/* Navigation menu */
.nav-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-links a {
  text-decoration: none;
  color: #5b4218;
  font-weight: bold;
  font-size: 14px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #000;
}

/* Search + icons */
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-form {
  display: flex;
  border: 1px solid #000;
  border-radius: 25px;
  overflow: hidden;
  height: 32px;
}

.search-form input {
  border: none;
  padding: 5px 10px;
  outline: none;
  font-size: 13px;
}

.search-form button {
  background: none;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 14px;
}

.icon-link {
  font-size: 18px;
  color: #5b4218;
  text-decoration: none;
}

/* Mobile menu */
.mobile-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #5b4218;
  position: absolute;
  right: 20px;
  top: 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .main-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #fff;
    margin-top: 10px;
    padding: 10px 0;
  }

  .nav-links.show {
    display: flex;
  }

  .header-right {
    margin-top: 10px;
    width: 100%;
    justify-content: space-between;
  }

  .mobile-toggle {
    display: block;
  }

  .search-form {
    width: 100%;
    max-width: 100%;
  }

  .search-form input {
    width: 100%;
  }

  .site-name {
    font-size: 18px;
  }
}/* End custom CSS */