/** Shopify CDN: Minification failed

Line 1066:0 Unexpected "{"

**/
.hip-hop-banner {
  position: relative;
  min-height: 80vh; /* Reducido de 100vh para menos espacio vertical en escritorio */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  color: #ffffff;
  overflow: hidden;
}

/* Overlay para mejorar legibilidad del texto */
.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.65) 100%);
  z-index: 1;
}

/* Container principal con grid layout */
.banner-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem; /* Ajustado padding-top para reducir espacio superior en escritorio */
  display: grid;
  grid-template-columns: 1fr 280px; /* Ajustado para mover tarjeta a la izquierda y texto a la derecha */
  gap: 2rem; /* Reducido de 4rem para un layout más compacto */
  align-items: center;
  min-height: 80vh; /* Ajustado para coincidir con el banner y reducir espacio */
}

/* ===== LADO IZQUIERDO - CONTENIDO PRINCIPAL ===== */

.banner-left {
  display: flex;
  flex-direction: column;
  gap: 2rem; /* Reducido ligeramente para menos espacio vertical */
  padding-top: 1rem; /* Reducido para alinear mejor el contenido */
}

/* Elemento Superior - Línea decorativa con ícono */
.banner-eyebrow {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.eyebrow-line {
  width: clamp(50px, 8vw, 80px);
  height: 1px;
  background: #FFD700;
  position: relative;
  flex-shrink: 0;
}

.eyebrow-icon {
  position: absolute;
  right: calc(-1 * clamp(13px, 2vw, 18px));
  top: calc(-1 * clamp(13px, 2vw, 18px));
  width: clamp(26px, 4vw, 36px);
  height: clamp(26px, 4vw, 36px);
  border-radius: 50%;
  background: #FFD700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.eyebrow-icon img {
  width: clamp(14px, 2.5vw, 20px);
  height: clamp(14px, 2.5vw, 20px);
  border-radius: 50%;
}

.default-icon {
  width: 14px;
  height: 14px;
  background: #000000;
  border-radius: 50%;
}

/* Texto descriptivo */
.eyebrow-text {
  flex: 1;
}

.eyebrow-text p {
  margin: 0;
  font-size: clamp(0.7rem, 1.5vw, 0.8rem);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  line-height: 1.4;
}

.eyebrow-main {
  opacity: 0.95;
  margin-bottom: 0.25rem;
}

.eyebrow-sub {
  opacity: 0.75;
  font-size: clamp(0.65rem, 1.4vw, 0.75rem);
}

/* Headline Principal */
.banner-headline {
  margin: 1rem 0;
}

.banner-headline h1 {
  font-size: clamp(1.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 0.95;
  margin: 0;
  display: flex;
  flex-direction: column;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.headline-line-1,
.headline-line-2 {
  display: block;
}

.headline-line-2 {
  margin-top: 0.2em;
}

/* Botones de Acción */
.banner-buttons {
  display: flex;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  flex-wrap: wrap;
  margin-top: 1rem;
}

.btn {
  padding: clamp(0.8rem, 2vw, 1.1rem) clamp(1.8rem, 4vw, 2.5rem);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(0.75rem, 1.5vw, 0.85rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
  min-width: clamp(110px, 20vw, 140px);
  min-height: 44px; /* Minimum touch target size */
  justify-content: center;
  cursor: pointer;
}

/* Efecto de brillo en hover */
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

/* Botón primario (blanco outline) */
.btn-primary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  backdrop-filter: blur(10px);
}

.btn-primary:hover {
  background: #ffffff;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}

/* Botón secundario (dorado filled) */
.btn-secondary {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #000000;
  border: 2px solid #FFD700;
  font-weight: 800;
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
  background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
}

.btn-arrow {
  font-size: 1.1em;
  transition: transform 0.3s ease;
}

.btn-secondary:hover .btn-arrow {
  transform: translateX(3px);
}

/* ===== LADO DERECHO - SISTEMA DE TARJETAS ===== */

.banner-right {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 2rem 0;
}

.product3-cards-container {
  position: relative;
  width: 280px;
  overflow: hidden;
}

/* Contenedor de tarjetas apiladas verticalmente */
.product3-cards-wrapper {
  display: flex;
  flex-direction: row;
  gap: 0;
  overflow: scroll;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.product3-cards-wrapper::-webkit-scrollbar {
  display: none;
}

/* Tarjetas de producto compactas y cuadradas */
.product3-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: clamp(1rem, 2vw, 1.5rem);
  backdrop-filter: blur(15px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  min-height: clamp(300px, 50vw, 400px);
  max-height: clamp(300px, 50vw, 400px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
}

/* Tarjeta dorada */
.product3-card-gold {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #000000;
}

.product3-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

.product3-card-gold:hover {
  box-shadow: 0 25px 50px rgba(255, 215, 0, 0.3);
}

/* Contenido de la tarjeta */
.card-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Título del producto */
.product3-title {
  font-size: clamp(0.8rem, 2vw, 1rem);
  font-weight: 800;
  margin: 0 0 0.5rem 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: inherit;
  line-height: 1.2;
}

/* Descripción del producto */
.product3-description {
  font-size: clamp(0.65rem, 1.5vw, 0.8rem);
  margin: 0 0 1rem 0;
  opacity: 0.8;
  line-height: 1.4;
  flex-grow: 1;
  font-weight: 500;
}

/* Footer con precio y botón */
.product3-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.product3-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.price-symbol {
  font-size: clamp(0.8rem, 1.8vw, 1rem);
  font-weight: 600;
  opacity: 0.8;
}

.price-amount {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

/* Botón de agregar */
.add-btn {
  width: clamp(44px, 6vw, 44px); /* Minimum touch target size */
  height: clamp(44px, 6vw, 44px); /* Minimum touch target size */
  border-radius: 50%;
  background: #FFD700;
  border: none;
  color: #000000;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  flex-shrink: 0;
}

.product3-card-gold .add-btn {
  background: #000000;
  color: #FFD700;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.add-btn:hover {
  transform: scale(1.1) rotate(90deg);
}

.add-btn:active {
  transform: scale(0.95);
}

/* Badge del producto */
.product3-badge {
  position: absolute;
  top: clamp(0.7rem, 1.5vw, 1rem);
  right: clamp(0.7rem, 1.5vw, 1rem);
  background: #FFD700;
  color: #000000;
  padding: clamp(0.25rem, 0.8vw, 0.4rem) clamp(0.7rem, 2vw, 1rem);
  border-radius: 20px;
  font-size: clamp(0.55rem, 1.2vw, 0.7rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

/* ===== NAVEGACIÓN CON FLECHAS ===== */

.carousel-navigation {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  margin: 0;
}

.nav-btn {
  position: absolute;
  width: clamp(44px, 6vw, 44px); /* Minimum touch target size */
  height: clamp(44px, 6vw, 44px); /* Minimum touch target size */
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(15px);
  flex-shrink: 0;
  pointer-events: auto;
  opacity: 0.5;
  transition: opacity 0.1s;
}

.nav-btn:hover,
.nav-btn:focus {
  opacity: 1;
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
  border-color: rgba(255, 215, 0, 0.5);
}

.nav-btn:active {
  transform: scale(0.95);
}

.nav-btn.prev {
  left: 0;
}

.nav-btn.next {
  right: 0;
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 1200px) {
  .banner-container {
    max-width: 1200px;
    gap: 3rem;
  }
  
  .banner-left {
    gap: 2rem;
  }
  
  .banner-eyebrow {
    gap: 1rem;
  }
}

/* New breakpoint for better tablet support */
@media (max-width: 992px) {
  .banner-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    padding: 0 1.5rem;
    justify-items: center;
  }
  
  .banner-right {
    height: auto;
    padding: 1rem 0;
    width: 100%;
    justify-content: center;
  }
  
  .product3-cards-container {
    position: relative;
    width: 100%;
    max-width: 280px;
    overflow: hidden;
    margin: 0 auto;
  }
  
  .product3-cards-wrapper {
    display: flex;
    flex-direction: row;
    overflow: scroll;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 0; /* Remove gap for seamless sliding */
  }
  
  .product3-cards-wrapper::-webkit-scrollbar {
    display: none;
  }
  
  .product3-card {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }
  
  .carousel-navigation {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
    margin: 0;
  }
  
  .nav-btn {
    pointer-events: auto;
    opacity: 0.5;
    transition: opacity 0.1s;
  }
  
  .nav-btn:hover,
  .nav-btn:focus {
    opacity: 1;
  }
  
  .nav-btn.prev {
    left: 0;
  }
  
  .nav-btn.next {
    right: 0;
  }
  
  .banner-eyebrow {
    justify-content: center;
  }
  
  .banner-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .banner-container {
    padding: 0 1.25rem;
    gap: 1.75rem;
  }
  
  .banner-left {
    gap: 1.75rem;
    padding-top: 1.25rem;
  }
  
  .product3-cards-container {
    max-width: 260px;
  }
  
  .product3-card {
    min-height: clamp(280px, 50vw, 360px);
    max-height: clamp(280px, 50vw, 360px);
  }
  
  .carousel-navigation {
    gap: 0.6rem;
  }
}

@media (max-width: 640px) {
  .banner-container {
    padding: 0 1rem;
    gap: 1.5rem;
  }
  
  .banner-left {
    gap: 1.5rem;
    padding-top: 1rem;
  }
  
  .banner-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .carousel-navigation {
    gap: 0.5rem;
  }
  
  .product3-card {
    min-height: clamp(260px, 50vw, 340px);
    max-height: clamp(260px, 50vw, 340px);
  }
}

@media (max-width: 480px) {
  .hip-hop-banner {
    min-height: 100svh;
  }
  
  .banner-container {
    gap: 1rem;
    padding: 0 0.75rem;
  }
  
  .banner-left {
    gap: 1.25rem;
  }
  
  .banner-eyebrow {
    gap: 1rem;
  }
  
  .carousel-navigation {
    margin-top: 1rem;
  }
  
  .product3-card {
    min-height: clamp(240px, 50vw, 320px);
    max-height: clamp(240px, 50vw, 320px);
    padding: clamp(0.75rem, 2vw, 1.25rem);
  }
  
  .product3-title {
    font-size: clamp(0.75rem, 2vw, 0.9rem);
  }
  
  .product3-description {
    font-size: clamp(0.6rem, 1.5vw, 0.7rem);
  }
  
  .price-amount {
    font-size: clamp(1rem, 3vw, 1.3rem);
  }
}

/* ===== ANIMACIONES Y EFECTOS ===== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Animaciones de entrada */
.banner-left > * {
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.banner-left > *:nth-child(1) { animation-delay: 0.1s; }
.banner-left > *:nth-child(2) { animation-delay: 0.3s; }
.banner-left > *:nth-child(3) { animation-delay: 0.5s; }

.product3-cards-container {
  animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
  opacity: 0;
}

.product3-cards-container.loaded {
  opacity: 1;
}

/* ===== ESTADOS DE CARGA ===== */

.hip-hop-banner.loading {
  background-color: #1a1a1a;
}

.hip-hop-banner.loading .banner-overlay {
  background: rgba(0,0,0,0.8);
}

/* ===== ACCESIBILIDAD ===== */

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.btn:focus,
.nav-btn:focus,
.add-btn:focus {
  outline: 2px solid #FFD700;
  outline-offset: 2px;
}

/* ===== UTILIDADES ===== */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== ESTADOS HOVER ADICIONALES ===== */

.product3-card:hover .product3-title {
  color: #FFD700;
}

.product3-card-gold:hover .product3-title {
  color: #000000;
}

.eyebrow-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

/* ===== MEJORAS PARA ELEGANCIA Y ANIMACIONES ===== */

/* Degradado mejorado en la parte inferior del banner para un blend suave */
.hip-hop-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.1) 30%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.6) 80%, rgba(0,0,0,0.9) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Animaciones sutiles para botones */
@keyframes subtlePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.btn:hover {
  animation: subtlePulse 2s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.add-btn:hover {
  animation: subtlePulse 2s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-btn:hover {
  animation: subtlePulse 2s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animación para texto descriptivo: Despliegue línea por línea */
.eyebrow-text p {
  opacity: 0;
  transform: translateX(-20px);
  animation: slideInLeft 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.eyebrow-main {
  animation-delay: 0.2s;
}

.eyebrow-sub {
  animation-delay: 0.4s;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Animación sutil para la línea decorativa */
.eyebrow-line {
  width: 0;
  animation: expandLine 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
}

@keyframes expandLine {
  from {
    width: 0;
  }
  to {
    width: clamp(50px, 8vw, 80px);
  }
}

/* Animación elegante para ícono */
.eyebrow-icon {
  opacity: 0;
  transform: scale(0.5);
  animation: popIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s forwards;
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Animaciones para tarjetas de producto */
.product3-card {
  opacity: 0;
  transform: translateY(30px);
  animation: cardFadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.product3-card:nth-child(1) { animation-delay: 0.6s; }
.product3-card:nth-child(2) { animation-delay: 0.8s; }
.product3-card:nth-child(3) { animation-delay: 1s; }

@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animación para badge */
.product3-badge {
  opacity: 0;
  transform: scale(0.8);
  animation: badgeAppear 0.6s ease-out 1.2s forwards;
}

@keyframes badgeAppear {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Mejoras generales para elegancia sin colores exagerados */
.hip-hop-banner {
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.4);
}

.banner-overlay {
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.6) 100%);
}

.product3-card {
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.product3-card:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.product3-card-gold {
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.product3-card-gold:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.btn-primary {
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255,255,255,0.7);
}

.btn-primary:hover {
  box-shadow: 0 8px 25px rgba(255,255,255,0.25);
}

.btn-secondary {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.add-btn {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.product3-card-gold .add-btn {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.nav-btn {
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.nav-btn:hover {
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.eyebrow-icon {
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.eyebrow-icon:hover {
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.product3-badge {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Eliminar cualquier glow amarillo */
.product3-card:hover .product3-title {
  color: inherit;
}

.eyebrow-icon:hover {
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

/* ===== ADICIONES PARA ANIMACIONES FLUIDAS SIN FLICKER ===== */

/* Forzar aceleración GPU en elementos principales */
.hip-hop-banner,
.banner-overlay,
.banner-container,
.banner-left,
.banner-right,
.product3-cards-container,
.product3-card,
.btn,
.nav-btn,
.add-btn,
.eyebrow-icon,
.product3-badge {
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
}

/* Usar will-change para optimizar animaciones en elementos animados */
.banner-left > *,
.product3-cards-container,
.product3-card,
.eyebrow-text p,
.eyebrow-line,
.eyebrow-icon,
.product3-badge,
.btn:hover,
.add-btn:hover,
.nav-btn:hover {
  will-change: opacity, transform, box-shadow;
}

/* Suavizar transiciones globales y animaciones con timing functions optimizadas */
* {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Prevenir reflows iniciales estableciendo opacidad 0 hasta carga (asumiendo JS añade .loaded al body) */
body:not(.loaded) .hip-hop-banner * {
  opacity: 0 !important;
  animation: none !important;
  transition: none !important;
}

body.loaded .hip-hop-banner {
  transition: opacity 0.5s ease-in-out;
  opacity: 1;
}

/* Aumentar duración de animaciones ligeramente para reducir carga inicial (sin cambiar delays) */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.banner-left > * {
  animation-duration: 1s; /* Aumentado de 0.8s para más fluidez */
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.product3-cards-container {
  animation-duration: 1s; /* Aumentado de 0.8s */
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.eyebrow-text p {
  animation-duration: 1.2s; /* Aumentado de 1s */
}
{
  animation-duration: 1.2s; /* Aumentado de 1s */
}

@keyframes badgeAppear {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.product3-badge {
  animation-duration: 0.8s; /* Aumentado de 0.6s */
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* proporción 16:9 */
  border-radius: 12px;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px; /* bordes internos redondeados */
}