/** Shopify CDN: Minification failed

Line 53:8 Expected identifier but found whitespace
Line 53:10 Unexpected "{"
Line 53:19 Expected ":"
Line 83:8 Expected identifier but found whitespace
Line 83:10 Unexpected "{"
Line 83:19 Expected ":"

**/
.custom-header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo img {
  height: 50px;
}
/* ============ NAVIGATION ============ */
.main-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-navigation .menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.menu-item {
  position: relative;
}
.menu-item > a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: color 0.3s ease;
}
.menu-item:hover > a {
  color: {{ section.settings.accent_color }};
}

/* Dropdown base */
.dropdown,
.sub-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 220px;
  border-radius: 6px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  flex-direction: column;
  z-index: 100;
}
.menu-item:hover > .dropdown { display: flex; }
.dropdown-item:hover > .sub-dropdown { display: flex; top: 0; left: 100%; }

.dropdown a,
.sub-dropdown a {
  padding: 10px 16px;
  color: #333;
  text-decoration: none;
  display: block;
}
.dropdown a:hover,
.sub-dropdown a:hover {
  background: #f8f8f8;
  color: {{ section.settings.accent_color }};
}

.header-nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.header-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.header-nav a:hover {
  color: #6b3ce9;
}

/* Icons */
.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
  margin-left: 15px;
  position: relative;
}

.icon-btn svg {
  vertical-align: middle;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #6b3ce9;
  color: #fff;
  border-radius: 50%;
  padding: 2px 5px;
  font-size: 11px;
}

/* Search Bar */
.search-bar {
  display: none;
  border-top: 1px solid #eee;
  background: #fafafa;
  padding: 10px 20px;
}

.search-bar.active {
  display: block;
}

.search-bar form {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  gap: 10px;
}

.search-bar input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.search-bar button {
  background: #6b3ce9;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 6px;
  cursor: pointer;
}

/* Mobile */
@media (max-width: 768px) {
  .header-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    background: #fff;
    width: 100%;
    text-align: center;
    border-top: 1px solid #eee;
    flex-direction: column;
    padding: 15px 0;
  }

  .header-nav.active {
    display: flex;
  }

  .header-nav ul {
    flex-direction: column;
    gap: 15px;
  }
}
