.adbsh-header {
  --adbsh-topbar-bg: #1c2158;
  --adbsh-topbar-text: #cfd3ef;
  --adbsh-topbar-icon: #cfd3ef;
  --adbsh-nav-bg: #ffffff;
  --adbsh-menu-text: #1c2158;
  --adbsh-menu-hover: #c31432;
  --adbsh-menu-dot: #c31432;
  --adbsh-highlight-color: #c31432;
  --adbsh-button-bg: #c31432;
  --adbsh-button-text: #ffffff;
  --adbsh-button-bg-hover: #9c0f27;
  --adbsh-icon-btn-hover-bg: #f4f5fb;
  --adbsh-panel-bg: #ffffff;
  --adbsh-panel-text: #1c2158;
  --adbsh-panel-overlay: rgba(15, 18, 40, 0.55);
  --adbsh-container-max-width: 1400px;
  --adbsh-logo-height: 60px;

  position: relative;
  z-index: 999;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.adbsh-header.adbsh-sticky {
  position: sticky;
  top: 0;
}

.adbsh-header.adbsh-is-stuck .adbsh-nav {
  box-shadow: 0 8px 20px rgba(15, 18, 40, 0.12);
}

.adbsh-header.adbsh-full-width .adbsh-topbar-inner,
.adbsh-header.adbsh-full-width .adbsh-nav-inner {
  /* Full Width mode stretches the background only (it already spans
     100% with no max-width). Content stays contained at
     --adbsh-container-max-width so the logo/menu/button never spread
     out to the edges of the screen. */
  max-width: var(--adbsh-container-max-width) !important;
}

/* ---------- Top bar ---------- */
.adbsh-topbar {
  background: var(--adbsh-topbar-bg);
  color: var(--adbsh-topbar-text);
}

.adbsh-topbar-inner {
  max-width: var(--adbsh-container-max-width) !important;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.88rem;
  width: 100%;
  box-sizing: border-box;
}

.adbsh-topbar-items {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.adbsh-topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--adbsh-topbar-text);
  text-decoration: none;
}

.adbsh-topbar-item i,
.adbsh-topbar-item svg {
  color: var(--adbsh-topbar-icon);
  font-size: 0.95rem;
  width: 1em;
  height: 1em;
}

.adbsh-topbar-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.adbsh-topbar-social a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--adbsh-topbar-icon);
  text-decoration: none;
  font-size: 0.85rem;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.adbsh-topbar-social a:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.6);
}

/* ---------- Main nav ---------- */
.adbsh-nav {
  background: var(--adbsh-nav-bg);
}

.adbsh-nav-inner {
  max-width: var(--adbsh-container-max-width) !important;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  min-height: 0;
  width: 100%;
  box-sizing: border-box;
}

.adbsh-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.adbsh-logo img {
  max-height: var(--adbsh-logo-height);
  width: auto;
  display: block;
}

.adbsh-logo-text {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--adbsh-menu-text);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.adbsh-logo-text .adbsh-highlight {
  color: var(--adbsh-highlight-color);
}

.adbsh-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.adbsh-menu li {
  display: flex;
  align-items: center;
  gap: 28px;
  position: relative;
}

.adbsh-menu .sub-menu {
  list-style: none;
  margin: 0;
  padding: 10px 0;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 200px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  display: none;
  flex-direction: column;
  gap: 0;
  z-index: 100;
}

.adbsh-menu li:hover > .sub-menu {
  display: flex;
}

.adbsh-menu .sub-menu li {
  display: block;
  width: 100%;
}

.adbsh-menu .sub-menu a {
  display: block;
  padding: 10px 18px;
  font-weight: 500;
  font-size: 0.92rem;
}

.adbsh-menu li.menu-item-has-children > a::after {
  content: " \25BE";
  font-size: 0.65em;
  margin-left: 4px;
  vertical-align: middle;
}

.adbsh-menu.adbsh-menu-dots > li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--adbsh-menu-dot);
  flex-shrink: 0;
}

.adbsh-menu.adbsh-menu-dots > li:first-child::before {
  display: none;
}

.adbsh-menu a {
  color: var(--adbsh-menu-text);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: color 0.15s ease;
}

.adbsh-menu a:hover,
.adbsh-menu a:focus-visible {
  color: var(--adbsh-menu-hover);
}

.adbsh-menu li.current-menu-item > a,
.adbsh-menu li.current_page_item > a {
  color: var(--adbsh-menu-hover);
}

.adbsh-nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.adbsh-icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #e2e4f0;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--adbsh-menu-text);
  cursor: pointer;
  font-size: 1rem;
  flex-shrink: 0;
}

.adbsh-icon-btn:hover {
  background: var(--adbsh-icon-btn-hover-bg);
}

.adbsh-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--adbsh-button-bg);
  color: var(--adbsh-button-text);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}

.adbsh-button:hover {
  background: var(--adbsh-button-bg-hover);
  color: var(--adbsh-button-text);
  transform: translateY(-1px);
}

/* ---------- Search ---------- */
.adbsh-search-wrap {
  position: relative;
}

.adbsh-search-form {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #ffffff;
  border: 1px solid #e2e4f0;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(15, 18, 40, 0.14);
  padding: 10px;
  gap: 8px;
  z-index: 20;
}

.adbsh-search-form.adbsh-open {
  display: flex;
}

.adbsh-search-form input[type="search"] {
  border: 1px solid #e2e4f0;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 0.95rem;
  width: 220px;
  outline: none;
}

.adbsh-search-form button {
  border: none;
  background: var(--adbsh-button-bg);
  color: #fff;
  border-radius: 6px;
  padding: 0 16px;
  cursor: pointer;
  font-size: 0.95rem;
}

/* ---------- Quick info slide-out panel ---------- */
.adbsh-panel-overlay {
  position: fixed;
  inset: 0;
  background: var(--adbsh-panel-overlay);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
  z-index: 998;
}

.adbsh-panel-overlay.adbsh-open {
  opacity: 1;
  visibility: visible;
}

.adbsh-panel {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 360px;
  max-width: 88vw;
  background: var(--adbsh-panel-bg);
  color: var(--adbsh-panel-text);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 999;
  overflow-y: auto;
  padding: 60px 32px 40px;
  box-sizing: border-box;
}

.adbsh-panel.adbsh-open {
  transform: translateX(0);
}

.adbsh-panel-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #e2e4f0;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
}

.adbsh-panel-logo {
  margin-bottom: 24px;
}

.adbsh-panel-logo img {
  max-height: 44px;
  width: auto;
}

.adbsh-panel h4 {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 24px 0 14px;
  color: var(--adbsh-panel-text);
}

.adbsh-panel p {
  text-align: center;
  font-size: 0.98rem;
  line-height: 1.75;
  color: #565b74;
  margin: 0 0 16px;
}

.adbsh-panel-contact-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.adbsh-panel-contact-list a,
.adbsh-panel-contact-list span {
  color: #565b74;
  text-decoration: none;
  font-size: 0.98rem;
  text-align: center;
}

.adbsh-panel-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.adbsh-panel-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--adbsh-panel-text);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.95rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .adbsh-menu {
    display: none;
  }
}
