/** Shopify CDN: Minification failed

Line 286:0 Unexpected "}"

**/
/* ==========================================================================
   Hot Hand Hero Banner
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;600;700&family=Roboto:wght@400;500;600&display=swap');

.hh-hero-section {
  overflow: hidden;
}

.hh-hero {
  position: relative;
  width: 100%;
  max-width: var(--hh-banner-max-width, 1920px);
  min-height: var(--hh-banner-min-height, auto);
  margin: 0 auto;
  background-color: var(--hh-bg-color, #0B0B0B);
  padding-top: var(--hh-section-padding-top, 80px);
  padding-bottom: var(--hh-section-padding-bottom, 80px);
  display: flex;
  align-items: center;
}

.hh-hero__container {
  width: 100%;
}

/* -------------------- FULL BACKGROUND IMAGE (desktop) -------------------- */

.hh-hero__bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--hh-bg-image-mobile, var(--hh-bg-image));
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hh-hero__bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    var(--hh-bg-color) 0%,
    var(--hh-bg-color) var(--hh-overlay-start, 0%),
    transparent var(--hh-overlay-end, 70%)
  );
}

@media (min-width: 750px) {
  .hh-hero__bg-image {
    background-image: var(--hh-bg-image);
    background-position: var(--hh-bg-position, right center);
  }
}

/* -------------------- CONTAINER / GRID -------------------- */

.hh-hero__container {
  position: relative;
  z-index: 2;
  max-width: var(--hh-content-max-width, 1400px);
  margin: 0 auto;
  padding: 0 24px;
}

.hh-hero__grid {
  display: flex;
  align-items: center;
}

/* -------------------- LEFT CONTENT -------------------- */

.hh-hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: 100%;
  max-width: var(--hh-content-max-width-inner, 560px);
}

.hh-hero__logo {
  margin-bottom: 24px;
}

.hh-hero__logo-img {
  width: var(--hh-logo-width, 350px);
  max-width: 100%;
  height: auto;
  display: block;
}

.hh-hero__heading {
  margin: 0 0 16px 0;
  line-height: 1;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hh-hero__heading-line {
  display: block;
}

.hh-hero__heading-line--1,
.hh-hero__heading-line--2 {
  font-size: var(--hh-heading-font-size, 56px);
}

.hh-hero__text {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: var(--hh-body-font-size, 18px);
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 28px;
}

.hh-hero__button-wrap {
  display: flex;
  gap: 16px;
}

.hh-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 20px;
  padding: 14px 36px;
  border-radius: 6px;
  border: 2px solid transparent;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
  cursor: pointer;
}

.hh-hero__button--primary {
  background-color: var(--hh-btn-bg, #FF5526);
  color: var(--hh-btn-text, #FFFFFF);
  border-color: var(--hh-btn-bg, #FF5526);
}

.hh-hero__button--primary:hover {
  background-color: var(--hh-btn-hover-bg, #E53935);
  border-color: var(--hh-btn-hover-bg, #E53935);
  color: var(--hh-btn-hover-text, #FFFFFF);
  transform: translateY(-2px);
}

.hh-hero__button--secondary {
  background-color: transparent;
  color: var(--hh-btn-text, #FFFFFF);
  border-color: var(--hh-btn-bg, #FF5526);
}

.hh-hero__button--secondary:hover {
  background-color: var(--hh-btn-hover-bg, #E53935);
  border-color: var(--hh-btn-hover-bg, #E53935);
  color: var(--hh-btn-hover-text, #FFFFFF);
  transform: translateY(-2px);
}

/* -------------------- MOBILE-ONLY IMAGE (hidden on desktop) -------------------- */

.hh-hero__mobile-media {
  display: none;
}

.hh-hero__mobile-media-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

/* -------------------- SCROLL ANIMATION -------------------- */

.hh-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--hh-delay, 0ms);
}

.hh-animate.hh-in-view {
  opacity: 1;
  transform: translateY(0);
}

/* -------------------- RESPONSIVE -------------------- */

@media (max-width: 989px) {
  .hh-hero__heading-line--1,
  .hh-hero__heading-line--2 {
    font-size: var(--hh-subheading-font-size, 40px);
  }

  .hh-hero__content {
    max-width: 100%;
  }
}

@media (max-width: 749px) {
  .hh-hero {
    padding-top: var(--hh-section-padding-top-mobile, 40px);
    padding-bottom: var(--hh-section-padding-bottom-mobile, 40px);
    min-height: var(--hh-banner-min-height-mobile, auto);
  }

  .hh-hero__bg-overlay {
    background: linear-gradient(
      180deg,
      var(--hh-bg-color) 0%,
      var(--hh-bg-color) 45%,
      rgba(11, 11, 11, 0.55) 100%
    );
  }

  .hh-hero__container {
    padding: 0 16px;
  }

  .hh-hero__grid {
    flex-direction: column;
    gap: 28px;
  }

  .hh-hero__content {
    align-items: center;
    text-align: center;
    order: 1;
  }

  .hh-hero__mobile-media {
    display: none;
  }

  .hh-hero__logo-img {
    width: var(--hh-logo-width-mobile, 220px);
    margin: 0 auto;
  }

  .hh-hero__heading-line--1,
  .hh-hero__heading-line--2 {
    font-size: var(--hh-heading-font-size-mobile, 34px);
  }

  .hh-hero__text {
    font-size: var(--hh-body-font-size-mobile, 15px);
    max-width: 100%;
  }

  .hh-hero__button-wrap {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .hh-hero__button {
    width: 100%;
  }
}

@media (max-width: 749px) {
  .hh-hero__bg-image {
    background-size: 100% 100% !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
  }
}
}