/* ============================================================
   HEADER - Global Styles
   Two-row desktop header with responsive behavior
   ============================================================ */

/* Desktop header container */
.desktop-header {
  display: block;
}

/* General navbar and brand adjustments */
.navbar-brand img {
  max-height: none;
  width: auto;
  display: block;
}

.navbar {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

/* Navigation links */
.navbar-nav .nav-link {
  color: var(--k-0);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: var(--era-light-blue);
  text-decoration: none;
}

/* Magento top menu (categories) */
.navigation {
  margin: 0;
}

.navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.navigation .level0 {
  display: inline-block;
  position: relative;
}

.navigation .level0 > a {
  padding: 0.5rem 1rem;
  display: block;
  color: inherit;
  text-decoration: none;
}

/* Minicart wrapper - removed button styles to prevent overlap */
.minicart-wrapper {
  display: none; /* Hidden - buttons removed */
}




/* Account link */
.header-account-link {
  display: flex;
  align-items: center;
  color: var(--k-0);
  text-decoration: none;
  transition: color 0.2s ease;
}

.header-account-link:hover {
  color: var(--era-light-blue);
}

.header-account-link i {
  margin-right: 0.5rem;
}

/* Container adjustments */
.header-row1 .container,
.header-row2 .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}
