/** Shopify CDN: Minification failed

Line 451:0 Expected "}" to go with "{"

**/
/* Header Styles */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgb(0, 0, 0);
}

.header__wrapper {
  position: relative;
}

.header__container {
  padding: 0 2rem;
}

.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  gap: 2rem;
}

/* Blue Accent Line */
.header__accent-line {
  width: 100%;
  height: 6px;
  background-color: rgb(0, 120, 212);
}

/* Logo */
.header__logo {
  flex-shrink: 0;
  z-index: 2;
}

.header__logo-link {
  display: block;
  line-height: 0;
}

.header__logo-text {
  font-size: 2rem;
  font-weight: 700;
  color: rgb(255, 255, 255);
  text-decoration: none;
  white-space: nowrap;
}

.header__logo-image {
  max-height: 4rem;
  width: auto;
}

/* Desktop Navigation */
.desktop-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 3.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__nav-item {
  position: relative;
}

.header__nav-link {
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.8rem 0;
  display: block;
  position: relative;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: rgb(0, 120, 212);
  transition: width 0.3s ease;
}

.header__nav-link:hover::after,
.header__nav-link.active::after {
  width: 100%;
}

.header__nav-link:hover {
  opacity: 1;
}/* Right Side Actions */
.header__actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Search Bar */
.header__search {
  position: relative;
}

.header__search-form {
  display: flex;
  align-items: center;
  position: relative;
}

.header__search-input {
  width: 250px;
  padding: 0.8rem 4rem 0.8rem 1.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  color: rgb(255, 255, 255);
  font-size: 1.4rem;
  transition: all 0.3s ease;
}

.header__search-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.header__search-input:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgb(0, 120, 212);
  box-shadow: 0 0 0 3px rgba(0, 120, 212, 0.2);
}

.header__search-btn {
  position: absolute;
  right: 1rem;
  background: none;
  border: none;
  color: rgb(255, 255, 255);
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.header__search-btn:hover {
  color: rgb(0, 120, 212);
}

/* Mobile Menu Button */
.header__mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}

.header__mobile-menu-icon {
  width: 24px;
  height: 2px;
  background-color: rgb(255, 255, 255);
  transition: all 0.3s ease;
}

/* Mobile Drawer */
.header__mobile-drawer {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background-color: rgb(0, 0, 0) !important;
  z-index: 1001;
  transition: left 0.3s ease;
  overflow-y: auto;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
}

.header__mobile-drawer.active {
  left: 0;
}

.header__mobile-drawer-content {
  padding: 2rem;
  width: 100%;
  height: 100%;
  position: relative;
}

.header__mobile-close {
  background: none;
  border: none;
  color: rgb(255, 255, 255) !important;
  cursor: pointer;
  padding: 0.5rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}

.header__mobile-nav {
  width: 100%;
}

.header__mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.header__mobile-nav-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header__mobile-nav-link {
  display: block;
  padding: 1.5rem 0;
  color: rgb(255, 255, 255) !important;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.header__mobile-nav-link:hover {
  color: rgb(0, 120, 212);
}

.header__mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.header__mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .header__mobile-menu-btn {
    display: flex;
  }
  
  .desktop-nav {
    display: none;
  }
  
  .header__search {
    display: none;
  }
  
  .header__logo-text {
    font-size: 1.6rem;
  }
  
  .header__content {
    padding: 1rem 0;
  }


/* Desktop Dropdown */
.header__nav-item--dropdown {
  position: relative;
}

/* Hide dropdown on mobile/tablet */
@media (max-width: 991px) {
  .header__dropdown {
    display: none !important;
  }
}

.header__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #000000 !important;
  min-width: 220px;
  padding: 1rem 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border-top: 3px solid rgb(0, 120, 212);
  z-index: 1000;
}

.header__nav-item--dropdown:hover .header__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.header__dropdown li {
  list-style: none;
}

.header__dropdown-link {
  display: block;
  padding: 1rem 2rem;
  color: #ffffff !important;
  text-decoration: none !important;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  background-color: transparent;
}

.header__dropdown-link:hover {
  background-color: rgba(0, 120, 212, 0.1);
  color: rgb(0, 120, 212) !important;
  padding-left: 2.5rem;
}

/* Mobile Search */
.header__mobile-search {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header__mobile-search-form {
  display: flex;
  align-items: center;
  position: relative;
}

.header__mobile-search-input {
  width: 100%;
  padding: 1rem 4rem 1rem 1.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  color: rgb(255, 255, 255);
  font-size: 1.5rem;
}

.header__mobile-search-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.header__mobile-search-input:focus {
  outline: none;
  border-color: rgb(0, 120, 212);
  background-color: rgba(255, 255, 255, 0.15);
}

.header__mobile-search-btn {
  position: absolute;
  right: 1rem;
  background: none;
  border: none;
  color: rgb(255, 255, 255);
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Submenu */
.header__mobile-nav-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  background: none;
  border: none;
  color: rgb(255, 255, 255) !important;
  font-size: 1.8rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
}

.header__mobile-nav-arrow {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.header__mobile-nav-item--has-dropdown.active .header__mobile-nav-arrow {
  transform: rotate(180deg);
}

.header__mobile-submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.header__mobile-nav-item--has-dropdown.active .header__mobile-submenu {
  max-height: 500px;
}

.header__mobile-submenu-link {
  display: block;
  padding: 1rem 0 1rem 2rem;
  color: rgba(255, 255, 255, 0.8) !important;
  text-decoration: none;
  font-size: 1.6rem;
  transition: all 0.3s ease;
}

.header__mobile-submenu-link:hover {
  color: rgb(0, 120, 212) !important;
  padding-left: 2.5rem;
}

