/** Shopify CDN: Minification failed

Line 17:19 Expected identifier but found whitespace
Line 17:21 Unexpected "{"
Line 17:30 Expected ":"
Line 18:8 Expected identifier but found whitespace
Line 18:10 Unexpected "{"
Line 18:19 Expected ":"
Line 22:2 Unexpected "{"
Line 22:3 Expected identifier but found "%"
Line 25:2 Unexpected "{"
Line 25:3 Expected identifier but found "%"
... and 37 more hidden warnings

**/
.custom-header {
  background-color: {{ section.settings.background_color }};
  color: {{ section.settings.text_color }};
  padding: 15px 0;
  position: relative;
  z-index: 100;
  {% if section.settings.enable_sticky %}
  position: sticky;
  top: 0;
  {% endif %}
}

.custom-header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo */
.custom-header__logo {
  flex-shrink: 0;
}

.custom-header__logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.custom-header__logo-image {
  display: block;
  object-fit: contain;
}

.custom-header__logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Navigation */
.custom-header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.custom-header__menu {
  display: flex;
  align-items: center;
  gap: 35px;
  margin: 0;
  padding: 0;
}

.custom-header__menu-item {
  position: relative;
}

.custom-header__menu-link {
  text-decoration: none;
  color: {{ section.settings.text_color }};
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: opacity 0.2s ease;
  padding: 5px 0;
  display: inline-block;
}

.custom-header__menu-link:hover {
  opacity: 0.7;
}

.custom-header__menu-link--active {
  font-weight: 600;
}

.custom-header__menu-underline {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: {{ section.settings.active_link_color }};
}

/* Icons */
.custom-header__icons {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

.custom-header__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: {{ section.settings.text_color }};
  text-decoration: none;
  transition: background-color 0.2s ease, opacity 0.2s ease;
  position: relative;
}

.custom-header__icon--cart {
  background-color: #000;
  color: #fff;
}

.custom-header__icon:hover {
  opacity: 0.8;
}

.custom-header__cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #ff0000;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Toggle */
.custom-header__mobile-toggle {
  display: none;
  background: none;
  border: none;
  padding: 5px;
  cursor: pointer;
  color: {{ section.settings.text_color }};
}

/* Mobile Menu */
.custom-header__mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: {{ section.settings.background_color }};
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.custom-header__mobile-menu.is-open {
  display: block;
}

.custom-header__mobile-menu-list {
  margin: 0;
  padding: 0;
}

.custom-header__mobile-menu-item {
  margin-bottom: 15px;
}

.custom-header__mobile-menu-item:last-child {
  margin-bottom: 0;
}

.custom-header__mobile-menu-link {
  color: {{ section.settings.text_color }};
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  display: block;
  padding: 10px 0;
}

.custom-header__mobile-menu-link--active {
  font-weight: 700;
}

/* Responsive */
@media screen and (max-width: 989px) {
  .custom-header__nav {
    display: none;
  }

  .custom-header__mobile-toggle {
    display: flex;
  }
}

@media screen and (max-width: 749px) {
  .custom-header__icons {
    gap: 10px;
  }

  .custom-header__icon {
    width: 36px;
    height: 36px;
  }

  .custom-header__icon svg {
    width: 18px;
    height: 18px;
  }
}
/* Hero Basketball Section */
.hero-basketball {
    position: relative;
    width: 100%;
    height: {{ section.settings.section_height }}px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 15px;
    margin: 0 auto;
    max-width: calc(100% - 40px);
  }
  
  /* Background */
  .hero-basketball__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  
  .hero-basketball__bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  
  .hero-basketball__bg-placeholder {
    width: 100%;
    height: 100%;
    background-color: #1a1a1a;
  }
  
  .hero-basketball__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, var(--overlay-opacity, 0.4));
  }
  
  /* Rotating Badge */
  .hero-basketball__badge-wrapper {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
  }
  
  .hero-basketball__badge {
    position: relative;
    width: 120px;
    height: 120px;
    background-color: {{ section.settings.badge_bg }};
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  }
  
  .hero-basketball__badge-text {
    position: absolute;
    width: 100%;
    height: 100%;
  }
  
  .hero-basketball__badge-text text {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  
  .hero-basketball__badge-center {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
  }
  
  /* Content */
  .hero-basketball__content {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 20px;
  }
  
  .hero-basketball__content-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  
  .hero-basketball__heading {
    font-size: {{ section.settings.heading_size }}px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }
  
  /* Button */
  .hero-basketball__button {
    display: inline-block;
    padding: 15px 40px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-transform: capitalize;
    border-radius: 30px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  
  .hero-basketball__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  }
  
  /* Responsive */
  @media screen and (max-width: 989px) {
    .hero-basketball {
      height: {{ section.settings.section_height_mobile }}px;
      border-radius: 10px;
      max-width: calc(100% - 30px);
    }
  
    .hero-basketball__heading {
      font-size: {{ section.settings.heading_size_mobile }}px;
    }
  
    .hero-basketball__badge-wrapper {
      top: -50px;
    }
  
    .hero-basketball__badge {
      width: 100px;
      height: 100px;
    }
  
    .hero-basketball__badge-center {
      width: 40px;
      height: 40px;
    }
  
    .hero-basketball__badge-center svg {
      width: 18px;
      height: 18px;
    }
  
    .hero-basketball__badge-text text {
      font-size: 11px;
    }
  }
  
  @media screen and (max-width: 749px) {
    .hero-basketball {
      max-width: calc(100% - 20px);
      border-radius: 8px;
    }
  
    .hero-basketball__heading {
      font-size: calc({{ section.settings.heading_size_mobile }}px - 4px);
    }
  
    .hero-basketball__button {
      padding: 12px 30px;
      font-size: 13px;
    }
  
    .hero-basketball__content-inner {
      gap: 20px;
    }
  }