/** Shopify CDN: Minification failed

Line 160:11 Expected identifier but found whitespace
Line 160:13 Unexpected "{"
Line 160:22 Expected ":"
Line 160:55 Expected ":"
Line 180:10 Expected identifier but found whitespace
Line 180:12 Unexpected "{"
Line 180:21 Expected ":"
Line 180:53 Expected ":"
Line 181:11 Expected identifier but found whitespace
Line 181:13 Unexpected "{"
... and 2 more hidden warnings

**/
/* START_SECTION:special-menu-dropdown (INDEX:143) */
.special-menu {
  width: 100%;
  background-color: #FF6600;
  position: relative;
  box-shadow: inset 0px 20px 15px 2px rgba(0, 0, 0, 0.2);
}

.menu-container {
  width: 100%;
  position: relative;
}

.menu-container.wrapped {
  max-width: 1600px;
  margin: 0 auto;
}

.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: stretch;
  position: relative;
}

.menu-item {
  flex: 1;
  position: relative;
  padding: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-link {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0 20px;
}

.menu-item.has-divider::after {
  content: '';
  position: absolute;
  right: 0;
  height: 100%;
  width: 1px;
  background-color: #2E2D57;
}

.icon-title-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu-icon {
  display: block;
  object-fit: contain;
}

.menu-title {
  color: #FFFFFF;
  font-weight: 500;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.mobile-title {
  display: none;
}

.dropdown-icon.desktop-only {
  display: inline-flex;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  width: 200px;
  transform: translateX(-50%);
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border-radius: 4px;
  padding: 8px 0;
  margin-top: 0;
  z-index: 101;
}

.menu-item:hover .dropdown.desktop-only {
  display: block;
}

.dropdown-item a {
  color: #333;
  text-decoration: none;
  display: block;
  font-size: 14px;
  padding: 8px 16px;
}

.dropdown-item:hover a {
  color: #FF6600;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .menu-list {
    height: auto !important;
  }
  
  .menu-title {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .menu-item.mobile-hidden {
    display: none;
  }

  /* Mobile Grid Layout - 4 items */
  .menu-list {
    flex-wrap: wrap;
    height: auto !important;
    justify-content: space-between;
  }
  
  .menu-item {
    flex: 0 0 25%;
    max-width: 25%;
    min-width: 60px;
    height: {{ section.settings.mobile_menu_height }}px;
    position: relative;
  }
  
  .menu-link {
    padding: 10px 5px;
  }
  
  /* Add back dividers for mobile, position them vertically between items */
  .menu-item:not(:nth-child(4n)):not(.mobile-hidden)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background-color: #2E2D57;
  }
  
  .menu-icon {
    width: {{ section.settings.mobile_icon_width }}px !important;
    height: {{ section.settings.mobile_icon_height }}px !important;
  }
  
  /* Hide desktop title and show mobile title */
  .desktop-title {
    display: none;
  }
  
  .dropdown-icon.desktop-only {
    display: none;
  }
  
  .mobile-title {
    display: block;
    font-size: 11px;
    color: #FFFFFF;
    text-align: center;
    margin-top: 6px;
  }
  
  /* Center icon in mobile view */
  .icon-title-wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2px;
    width: 100%;
    position: relative;
  }
  
  /* Remove original dividers in favor of our custom mobile dividers */
  .menu-item.has-divider::after {
    display: none;
  }
  
  /* Hide dropdowns on mobile */
  .dropdown.desktop-only {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .menu-link {
    padding: 8px 2px;
  }
  
  .mobile-title {
    font-size: 10px;
  }
}
/* END_SECTION:special-menu-dropdown */
