/** Shopify CDN: Minification failed

Line 21:18 Expected identifier but found whitespace
Line 21:20 Unexpected "{"
Line 21:29 Expected ":"
Line 22:20 Expected identifier but found whitespace
Line 22:22 Unexpected "{"
Line 22:31 Expected ":"
Line 23:26 Expected identifier but found whitespace
Line 23:28 Unexpected "{"
Line 23:37 Expected ":"
Line 24:18 Expected identifier but found whitespace
... and 22 more hidden warnings

**/
/* ==========================================================================
   Custom Header Styles
   ========================================================================== */

:root {
  --header-top-bg: {{ section.settings.top_bar_bg }};
  --header-top-text: {{ section.settings.top_bar_text }};
  --header-top-link-hover: {{ section.settings.top_bar_link_hover }};
  --header-nav-bg: {{ section.settings.nav_bg }};
  --header-nav-text: {{ section.settings.nav_text }};
  --header-nav-hover: {{ section.settings.nav_hover }};
  --header-nav-font-size: {{ section.settings.nav_font_size }}px;
  --header-nav-letter-spacing: {{ section.settings.nav_letter_spacing }}px;
  --header-icon-color: {{ section.settings.icon_color }};
  --header-icon-hover: {{ section.settings.icon_hover_color }};
}

/* Reset & Base
   ========================================================================== */

.custom-header {
  width: 100%;
  position: relative;
  z-index: 1000;
}

.custom-header *,
.custom-header *::before,
.custom-header *::after {
  box-sizing: border-box;
}

/* Top Bar
   ========================================================================== */

.header-top {
  background-color: var(--header-top-bg);
  padding: 12px 0;
}

.header-top__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

/* Left Side - Contact Links */
.header-top__left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-top__link-item {
  display: inline-flex;
}

.header-top__link,
.header-top__text {
  font-size: 13px;
  color: var(--header-top-text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.header-top__link:hover {
  color: var(--header-top-link-hover);
}

.header-top__separator {
  color: var(--header-top-text);
  opacity: 0.4;
  font-size: 12px;
}

/* Center - Logo */
.header-top__center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.header-logo__image {
  display: block;
  height: auto;
  max-width: 100%;
}

.header-logo__text {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 2px;
}

/* Right Side - Icons */
.header-top__right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
}

.header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--header-icon-color);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  position: relative;
  transition: color 0.2s ease;
  text-decoration: none;
}

.header-icon:hover {
  color: var(--header-icon-hover);
}

.header-icon svg {
  display: block;
}

.header-icon__count {
  position: absolute;
  top: -6px;
  right: -8px;
  background-color: var(--header-nav-hover);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

/* Separator Line
   ========================================================================== */

.header-separator {
  height: 1px;
  width: 100%;
}

/* Navigation Bar
   ========================================================================== */

.header-nav {
  background-color: var(--header-nav-bg);
  padding: 15px 0;
}

.header-nav__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.header-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.header-nav__item {
  position: relative;
}

.header-nav__link {
  display: block;
  font-size: var(--header-nav-font-size);
  font-weight: 500;
  color: var(--header-nav-text);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: var(--header-nav-letter-spacing);
  padding: 8px 0;
  transition: color 0.2s ease;
}

.header-nav__link:hover {
  color: var(--header-nav-hover);
}

.header-nav__link--highlighted {
  font-weight: 500;
}

/* Dropdown Menu */
.header-nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  min-width: 200px;
  padding: 10px 0;
  list-style: none;
  margin: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid #eee;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 100;
}

.header-nav__item:hover .header-nav__dropdown {
  opacity: 1;
  visibility: visible;
}

.header-nav__dropdown-item {
  margin: 0;
}

.header-nav__dropdown-link {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  color: var(--header-nav-text);
  text-decoration: none;
  text-transform: none;
  letter-spacing: 0.5px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.header-nav__dropdown-link:hover {
  background-color: #f8f8f8;
  color: var(--header-nav-hover);
}

/* Mobile Menu Toggle */
.header-nav__mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--header-nav-text);
}

.header-nav__mobile-toggle .icon-close {
  display: none;
}

.header-nav__mobile-toggle[aria-expanded="true"] .icon-menu {
  display: none;
}

.header-nav__mobile-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

/* Search Overlay
   ========================================================================== */

.header-search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 100px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 2000;
}

.header-search-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.header-search-overlay__container {
  background-color: #fff;
  width: 100%;
  max-width: 600px;
  padding: 30px;
  border-radius: 4px;
  position: relative;
  margin: 0 20px;
}

.header-search-form {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-search-form__input {
  flex: 1;
  padding: 14px 18px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s ease;
}

.header-search-form__input:focus {
  border-color: var(--header-nav-hover);
}

.header-search-form__button {
  padding: 14px 18px;
  background-color: var(--header-nav-hover);
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.header-search-form__button:hover {
  opacity: 0.9;
}

.header-search-overlay__close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #666;
  transition: color 0.2s ease;
}

.header-search-overlay__close:hover {
  color: #000;
}

/* Responsive Styles
   ========================================================================== */

@media screen and (max-width: 991px) {
  .header-top__container {
    grid-template-columns: 1fr auto 1fr;
  }

  .header-nav__list {
    gap: 25px;
  }

  .header-nav__link {
    font-size: 12px;
  }
}

@media screen and (max-width: 767px) {
  .header-top__container {
    grid-template-columns: 1fr;
    gap: 15px;
    text-align: center;
  }

  .header-top__left {
    justify-content: center;
    order: 2;
  }

  .header-top__center {
    order: 1;
  }

  .header-top__right {
    justify-content: center;
    order: 3;
  }

  /* Mobile Navigation */
  .header-nav__mobile-toggle {
    display: flex;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
  }

  .header-nav__list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background-color: #fff;
    padding: 20px;
    gap: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 100;
  }

  .header-nav__list.is-open {
    display: flex;
  }

  .header-nav__item {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #eee;
  }

  .header-nav__item:last-child {
    border-bottom: none;
  }

  .header-nav__link {
    padding: 15px 0;
  }

  .header-nav__dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 10px 0;
    opacity: 1;
    visibility: visible;
    display: none;
  }

  .header-nav__item:hover .header-nav__dropdown {
    display: block;
  }

  .header-nav__dropdown-link {
    padding: 10px 0;
  }

  /* Body scroll lock when menu is open */
  body.menu-open {
    overflow: hidden;
  }
}

@media screen and (max-width: 480px) {
  .header-top__left {
    flex-wrap: wrap;
    gap: 8px;
  }

  .header-top__separator {
    display: none;
  }

  .header-top__link-item {
    width: 100%;
    justify-content: center;
  }

  .header-logo__image {
    max-width: 150px;
  }

  .header-logo__text {
    font-size: 22px;
  }
}

/* Sticky Header Option
   ========================================================================== */

.custom-header--sticky {
  position: sticky;
  top: 0;
}

.custom-header--sticky.is-scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Animation for search overlay */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header-search-overlay.is-open .header-search-overlay__container {
  animation: fadeIn 0.3s ease forwards;
}