/** Shopify CDN: Minification failed

Line 58:8 Expected identifier but found whitespace
Line 58:10 Unexpected "{"
Line 58:19 Expected ":"
Line 58:44 Expected ":"
Line 270:14 Expected identifier but found whitespace
Line 270:16 Unexpected "{"
Line 270:25 Expected ":"
Line 270:57 Expected ":"
Line 286:14 Expected identifier but found whitespace
Line 286:16 Unexpected "{"
... and 6 more hidden warnings

**/


/* CSS from section stylesheet tags */
/* --- Desktop Layout --- */
.header-wrapper {
  position: sticky;
  top: 0;
  z-index: 99999999;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.header-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  align-items: center;
  text-align: center;
  min-height: 100px;
  border-bottom: 1px solid #000;
  border-top: 1px solid #000;
}

.header-grid__item {
  border-right: 1px solid #000;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  height: 100%;
  transition: all 0.3s ease;
}

.header-grid__item:last-child {
  border-right: none;
}

.header-grid__item:hover {
  background: rgba(0,0,0,0.02);
}

.header__heading-logo {
  width: {{ section.settings.logo_width }}px;
  height: auto;
  display: block;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.header__heading-logo:hover {
  transform: scale(1.05);
}

.list-menu__item--link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 18px;
  position: relative;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

/* Removed underline hover effect */
.list-menu__item--link:hover {
  color: #000;
}

/* Dropdown Menu Styles */
.header__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  margin-top: -20px !important;
  transform: translateX(-50%);
  background: white;
  border-radius: 8px;
  min-width: 220px;
  z-index: 999999999;
  display: none;
  text-align: left;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  opacity: 0;
  transition: all 0.3s ease;
}

.header__dropdown.active {
  display: block;
  opacity: 1;
}

.header__dropdown-item {
  padding: 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header__dropdown-item:last-child {
  border-bottom: none;
}

.header__dropdown-link {
  color: #555;
  text-decoration: none;
  display: block;
  font-size: 16px;
  padding: 12px 20px;
  transition: all 0.2s ease;
}

.header__dropdown-link:hover {
  background: #f9f9f9;
  color: #000;
  padding-left: 25px;
}

/* Updated dropdown icon styles */
.has-dropdown .list-menu__item--link {
  display: flex;
  align-items: center;
  gap: 6px;
}

.has-dropdown .dropdown-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.has-dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}

/* Wholesale buttons - Desktop only */
.wholesale-buttons {
  display: flex;
  gap: 12px;
  margin-right: 20px;
}

.wholesale-buttons a {
  padding: 8px 16px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.wholesale-login {
  color: #111270;
  border: 1px solid #111270;
  background-color: transparent;
}

.wholesale-login:hover {
  background-color: #f0f0f8;
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.wholesale-register {
  background-color: #111270;
  color: white;
  border: 1px solid #111270;
}

.wholesale-register:hover {
  background-color: #0a0d4a;
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Mobile Wholesale Buttons */
.mobile-wholesale-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 1rem 0 1rem 10px; /* top: 1rem, right: 0, bottom: 1rem, left: 20px */
  margin: 0px 0px 50px 0px;
  border-top: 1px solid rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.1);
}


.mobile-wholesale-buttons a {
  display: block;
  max-width: 70% !important;
  padding: 12px;
  border-radius: 120px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
}

.mobile-wholesale-login {
  color: #111270;
  border: 1px solid #111270;
  background-color: transparent;
}

.mobile-wholesale-register {
  background-color: #111270;
  color: white;
  border: 1px solid #111270;
}

.mobile-wholesale-buttons a:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* --- Mobile Layout --- */
.header__mobile-toggle {
  display: none;
}

@media screen and (max-width: 750px) {
  .header-grid {
    display: none;
  }

  .mobile-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-top: 0.5px solid #000000;
    background: white;
  }

  .header__mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: none;
    border: none;
    color: #333;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
  }

  .header__mobile-toggle:hover {
    background: #f5f5f5;
  }

  .mobile-header-logo img {
    max-width: {{ section.settings.logo_width_mobile }}px;
    height: auto;
    image-rendering: auto;
  }

  .mobile-header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    padding: 10px 0;
  }

  .mobile-header-logo img {
    display: block;
    margin: 0 auto;
    max-width: {{ section.settings.logo_width_mobile }}px;
    height: auto;
  }

  .mobile-drawer {
    position: fixed;
    top: 0;
    padding-top: 100px;
    left: -100%;
    width: 85%;
    height: 100vh;
    background: white;
    transition: left 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 99999999;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #000000;
  }

  .mobile-drawer.open {
    left: 0;
  }

  .mobile-drawer__content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
    flex-grow: 1;
  }

  .mobile-drawer__topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }

  .mobile-drawer__logo img {
    max-width: {{ section.settings.logo_drawer_width }}px;
    height: auto;
    display: block;
  }

  .drawer-close {
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    color: #333;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
  }

  .drawer-close:hover {
    background: #f5f5f5;
  }

  .mobile-drawer__menu-item {
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }

.mobile-drawer__dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    font-weight: 500 !important;
    color: #333333 !important;
    font-size: 16px !important;
    text-align: left;
    padding: 1rem 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
}
  
  .mobile-drawer__menu-item a,
  .mobile-drawer__dropdown-toggle {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    text-align: left;
    display: block;
    padding: 1rem 0;
    font-size: 16px;
    transition: all 0.3s ease;
  }

  .mobile-drawer__menu-item a:hover {
    color: #000;
  }

  .mobile-drawer__footer {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    margin-top: auto;
    border-top: 1px solid rgba(0,0,0,0.05);
    justify-content: center;
  }

  .mobile-drawer__footer a {
    color: #333;
    font-size: 24px;
    transition: all 0.3s ease;
  }

  .mobile-drawer__footer a:hover {
    color: #000;
    transform: translateY(-2px);
  }

  .mobile-drawer-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
  }

  .mobile-drawer.open + .mobile-drawer-overlay {
    display: block;
  }

  /* Mobile dropdown styles */
  .mobile-drawer__dropdown {
    padding-left: 1rem;
    display: none;
    background: rgba(0,0,0,0.02);
  }

  .mobile-drawer__dropdown.active {
    display: block;
    animation: fadeIn 0.3s ease;
  }

  .mobile-drawer__dropdown-item {
    padding: 0;
  }

  .mobile-drawer__dropdown-item a {
    padding: 0.8rem 0 0.8rem 1rem;
    font-size: 15px;
    color: #666;
  }

  .mobile-drawer__dropdown-item a:hover {
    color: #000;
    background: rgba(0,0,0,0.03);
  }

  .mobile-drawer__dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1rem 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
  }

  .mobile-drawer__dropdown-toggle:after {
    content: "+";
    font-size: 25px;
    transition: all 0.3s ease;
  }

  .mobile-drawer__dropdown-toggle.active:after {
    content: "-";
  }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media screen and (min-width: 751px) {
  .mobile-header-bar,
  .mobile-drawer,
  .mobile-drawer-overlay {
    display: none !important;
  }
  
  /* Hide mobile wholesale buttons on desktop */
  .mobile-wholesale-buttons {
    display: none !important;
  }
}
.search-icons-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.search-icons-header__search {
  flex: 1;
  max-width: 300px;
  display: flex;
  border: 1px solid #ccc;
  border-radius: 999px;
  overflow: hidden;
}

.search-icons-header__search input {
  border: none;
  padding: 0.5rem 1rem;
  flex-grow: 1;
  font-size: 14px;
}

.search-icons-header__search button {
  background: #0e144d;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-icons-header__icons {
  display: flex;
  gap: 1.5rem;
  font-size: 24px;
}

.search-icons-header__icons a {
  color: #0e144d;
  text-decoration: none;
}