/* ============================================================
   HandlaOnline Standard – Custom CSS
   ============================================================ */

/* ── Topbar Dropdown Menus ── */

/* Dropdown toggle arrow/caret in topbar */
#header .header-top .nav-item.dropdown .dropdown-toggle::after {
  margin-left: 0.35em;
  vertical-align: 0.15em;
}

/* Dropdown menu container */
#header .header-top .header-nav-top .dropdown-menu {
  background: #fff;
  border: 0;
  border-radius: 0;
  box-shadow: 0 10px 30px 10px rgba(0, 0, 0, 0.05);
  min-width: 180px;
  padding: 5px 0;
  margin-top: 0;
  z-index: 10000;
}

/* Dropdown menu items – dark text on white background */
#header .header-top .header-nav-top .dropdown-menu .dropdown-item {
  color: #333 !important;
  font-size: 0.85em;
  padding: 7px 16px;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

#header .header-top .header-nav-top .dropdown-menu .dropdown-item:hover,
#header .header-top .header-nav-top .dropdown-menu .dropdown-item:focus {
  background-color: #f5f5f5;
  color: #000 !important;
}

#header .header-top .header-nav-top .dropdown-menu .dropdown-item:active {
  background-color: #e9ecef;
  color: #000 !important;
}

/* Ensure the dropdown parent has position relative for absolute menu */
#header .header-top .nav-item.dropdown {
  position: relative;
}

/* Hide the Porto triangle arrow on dropdown menu */
#header .header-top .header-nav-top .dropdown-menu::before {
  display: none !important;
}

/* ── Topbar CTA buttons ── */

/* Nav-item holding CTA: center vertically in topbar */
#header .header-top .nav-item:has(.btn-cta) {
  display: inline-flex !important;
  align-items: center;
  align-self: stretch;
}

/* CTA button base style */
#header .header-top .nav-item .btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  padding: 5px 14px;
  line-height: 1.4;
  border-radius: 3px;
  white-space: nowrap;
  font-weight: 600;
  text-decoration: none;
}

/* Mobile: tighter padding, smaller font */
@media (max-width: 767.98px) {
  #header .header-top .nav-item .btn-cta {
    padding: 3px 10px;
    font-size: 0.75em;
    line-height: 1.2;
  }
}
