/** Shopify CDN: Minification failed

Line 21:13 Expected identifier but found whitespace
Line 21:15 Unexpected "{"
Line 21:24 Expected ":"
Line 29:13 Expected identifier but found whitespace
Line 29:15 Unexpected "{"
Line 29:24 Expected ":"
Line 42:8 Expected identifier but found whitespace
Line 42:10 Unexpected "{"
Line 42:19 Expected ":"
Line 53:8 Expected identifier but found whitespace
... and 8 more hidden warnings

**/


/* CSS from section stylesheet tags */
.gender-split {
  width: 100%;
  background: {{ section.settings.background_color }};
  padding: 0;
  margin: 0;
}

.gender-split__header {
  text-align: center;
  padding: 60px 20px 40px;
  background: {{ section.settings.header_background }};
}

.gender-split__tabs {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 0;
}

.gender-split__tab {
  font-size: 18px;
  font-weight: 600;
  color: {{ section.settings.tab_color }};
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  padding-bottom: 10px;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
  user-select: none;
}

.gender-split__tab:hover {
  color: {{ section.settings.tab_active_color }};
}

.gender-split__tab.active {
  border-bottom-color: {{ section.settings.tab_active_color }};
  color: {{ section.settings.tab_active_color }};
}

.gender-split__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 100%;
  padding: 0 20px 60px;
  margin: 0 auto;
  position: relative;
  min-height: 400px;
}

.gender-split__item {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: 0;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gender-split__item.fade-out {
  opacity: 0;
  transform: translateY(20px);
}

.gender-split__item.hidden {
  display: none;
}

.gender-split__image-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 133%;
  overflow: hidden;
  background: #f5f5f5;
}

.gender-split__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gender-split__item:hover .gender-split__image {
  transform: scale(1.05);
}

.gender-split__info {
  padding: 20px 12px;
  text-align: center;
}

.gender-split__code {
  font-size: 11px;
  font-weight: 600;
  color: #666;
  letter-spacing: 1px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.gender-split__title {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.gender-split__price {
  font-size: 15px;
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
}

.gender-split__colors {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.gender-split__color {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #e0e0e0;
  cursor: pointer;
  transition: all 0.2s ease;
}

.gender-split__color:hover {
  transform: scale(1.15);
  border-color: #000;
}

.gender-split__link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* TABLET */
@media (max-width: 1024px) {
  .gender-split__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 0 16px 50px;
  }

  .gender-split__tabs {
    gap: 50px;
  }

  .gender-split__tab {
    font-size: 16px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .gender-split__header {
    padding: 40px 20px 30px;
  }

  .gender-split__tabs {
    gap: 40px;
  }

  .gender-split__tab {
    font-size: 14px;
    letter-spacing: 1.5px;
  }

  .gender-split__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 12px 40px;
    min-height: 300px;
  }

  .gender-split__info {
    padding: 14px 8px;
  }

  .gender-split__code {
    font-size: 10px;
    margin-bottom: 4px;
  }

  .gender-split__title {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .gender-split__price {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .gender-split__colors {
    gap: 6px;
  }

  .gender-split__color {
    width: 20px;
    height: 20px;
  }
}
.video-banner-nike {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

.video-banner-nike video,
.video-banner-nike .video-poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-banner-nike::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.5) 100%);
  z-index: 1;
}

.video-banner-nike__container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 20px 80px;
}

.video-banner-nike__content {
  text-align: center;
  max-width: 600px;
}

.video-banner-nike__heading {
  font-size: 64px;
  font-weight: 800;
  color: #ffffff !important;
  margin: 0 0 16px 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.video-banner-nike__description {
  font-size: 20px;
  font-weight: 500;
  color: #ffffff !important;
  margin: 0 0 32px 0;
  line-height: 1.4;
  text-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.video-banner-nike__description * {
  color: #ffffff !important;
}

.video-banner-nike__button {
  display: inline-block;
  background: #ffffff !important;
  color: #000000 !important;
  padding: 18px 48px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  text-transform: capitalize;
  border: none;
}

.video-banner-nike__button:hover {
  background: #f5f5f5 !important;
  color: #000000 !important;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* MOBILE - CRÍTICO PARA EL AJUSTE */
@media (max-width: 768px) {
  .video-banner-nike {
    height: 60vh;
    min-height: 500px;
  }

  .video-banner-nike__container {
    padding: 0 24px 60px;
  }

  .video-banner-nike__heading {
    font-size: 40px;
    margin-bottom: 12px;
  }

  .video-banner-nike__description {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .video-banner-nike__button {
    padding: 14px 36px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .video-banner-nike {
    height: 55vh;
    min-height: 450px;
  }

  .video-banner-nike__container {
    padding: 0 20px 50px;
  }

  .video-banner-nike__heading {
    font-size: 32px;
    margin-bottom: 10px;
  }

  .video-banner-nike__description {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .video-banner-nike__button {
    padding: 12px 32px;
    font-size: 15px;
  }
}

/* DESKTOP GRANDE */
@media (min-width: 1440px) {
  .video-banner-nike__heading {
    font-size: 72px;
  }

  .video-banner-nike__description {
    font-size: 22px;
  }

  .video-banner-nike__button {
    padding: 20px 52px;
    font-size: 19px;
  }
}