/* --- 1. Tier 1: Dark Announcement Bar --- */
.header-banner {
  background-color: #1a1a1a !important;
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 0.5px;
}

/* --- 2. Tier 2: Main Header Row (Logo & Search) --- */
.header-bottom {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  padding-top: 15px;
  padding-bottom: 15px;
}

/* Style the search bar container inside displayTop to match the screenshot */
.header-bottom .search-widget form,
.header-bottom #search_widget form {
  display: flex;
  border: 2px solid #000000;
  border-radius: 4px;
  overflow: hidden;
  background: #ffffff;
}

.header-bottom .search-widget input[type="text"],
.header-bottom #search_widget input[type="text"] {
  border: none;
  box-shadow: none;
  padding: 10px 15px;
  font-size: 14px;
  outline: none;
  flex-grow: 1;
}

.header-bottom .search-widget button,
.header-bottom #search_widget button {
  background-color: #000000;
  border: none;
  color: #ffffff;
  padding: 0 20px;
  cursor: pointer;
  border-radius: 0;
}

.header-bottom .search-widget button i,
.header-bottom #search_widget button i {
  color: #ffffff;
}

/* --- 3. Tier 3: Vibrant Green Navigation Bar --- */
.header-nav-full-width {
  background-color: #78a631 !important; /* Signature Avada green tone */
  color: #ffffff;
  padding-top: 0;
  padding-bottom: 0;
}

/* Main menu links styling */
.header-nav-full-width .menu, 
.header-nav-full-width .top-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-nav-full-width .top-menu a {
  color: #ffffff !important;
  font-weight: 600;
  padding: 15px 18px;
  display: block;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.header-nav-full-width .top-menu a:hover {
  opacity: 0.85;
}

/* Categories dropdown button style (left side of green bar) */
.header-nav-full-width .category-button,
.header-nav-full-width .dropdown-menu-custom-btn {
  background-color: #648c26 !important;
  color: #ffffff;
  font-weight: bold;
  padding: 12px 20px;
  border-radius: 4px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Phone Contact Block (right side of green bar) */
.header-phone-block {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  margin-left: auto;
  text-align: right;
}

.header-phone-block .phone-icon-circle {
  background-color: #f39c12; /* Orange accent phone circle */
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-phone-block .phone-details {
  line-height: 1.2;
}

.header-phone-block .phone-subtitle {
  font-size: 11px;
  opacity: 0.9;
  text-transform: uppercase;
}

.header-phone-block .phone-number {
  font-size: 16px;
  font-weight: bold;
}