* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    color: #fff;
    background-color: #000;
  }
  
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #fff;
    color: #000;
  }
  
  header .logo {
    font-size: 24px;
    font-weight: bold;
  }
  
  nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #000;
    font-weight: 600;
  }
  
    /* HERO PRINCIPAL */
    .hero {
        /* Si DominioFit.css está en /Assets/css/ */
background: url('Assets/images/DFIT/Portada/Hop-1.gif') no-repeat center/cover;
        height: 90vh;
        display: flex;
        align-items: center;
        padding: 0 50px;
        color: #fff;
        position: relative;
      }
  
      .hero-content {
        max-width: 500px;
        position: relative;
        z-index: 2;
      }
  
      .hero-content h1 {
        font-size: 48px;
        margin-bottom: 20px;
      }
  
      .hero-content p {
        font-size: 18px;
        margin-bottom: 30px;
      }
  
      .buttons {
        display: flex;
        gap: 15px;
      }
  
      .btn {
        padding: 15px 30px;
        background-color: #fff ;
        color: #000;
        text-decoration: none;
        border-radius: 20px!important;
        font-weight: bold;
        transition: 0.3s;
      }
  
      .btn:hover {
        background-color: #343333 ;
      }
  
      .btn.wman {
        background-color: #efefef !important;
        color: #252525;
      }
      .btn.wman:hover {
        background-color: #000000 !important;
        color: #fff;
      }
      .btn.dark {
        background-color: #333 !important;
        color: #fff;
      }
  
      .btn.dark:hover {
        background-color: #0f0f0f !important;
      }
  
 /* Codigo de css productos inclye efecto hover que se cambie solo boton de me gusta  cambio de imagenes y otros */
  .product {
    overflow: hidden;
    position: relative;
  }

  /* Tallas efecto hover */
  .product .talla {
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
  }

  .product .talla:hover {
    background-color: #fff !important;
    color: #000 !important;
    transform: scale(1.1);
  }

  /* Corazón efecto hover */
  .product .favorite i {
    cursor: pointer;
    transition: color 0.3s, transform 0.3s;
  }

  .product .favorite i:hover {
    color: red;
    transform: scale(1.2);
  }
  /* Agrega estas reglas al estilo existente */

/* Ocultar tallas inicialmente */
.product .tallas {
opacity: 0;
visibility: hidden;
transition: opacity 0.3s ease, visibility 0.3s ease;
bottom: -50px; /* Empieza fuera de la imagen */
}

/* Mostrar tallas al hacer hover en el producto */
.product:hover .tallas {
opacity: 1;
visibility: visible;
bottom: 10px; /* Vuelve a su posición original */
}

/* Asegurar que la imagen tenga posición relativa para contener las tallas */
.product-img {
position: relative;
display: block;
}
.arrow-btn {
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  z-index: 10;
}

.arrow-btn:hover {
  background-color: black;
}

#scroll-container::-webkit-scrollbar {
  display: none; /* Oculta la scrollbar */
}

#scroll-container {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

#scroll-container1::-webkit-scrollbar {
    display: none; /* Oculta la scrollbar */
  }
  
  #scroll-container1 {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }
/* Estilos para el carrusel */
.arrow-btn {
background-color: rgba(0, 0, 0, 0.7);
color: white;
border: none;
width: 40px;
height: 40px;
border-radius: 50%;
z-index: 10;
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
}

.arrow-btn:hover {
background-color: black ;
transform: scale(1.1);
}

/* Contenedor de productos */
#scroll-container {
scroll-snap-type: x mandatory;
scroll-behavior: smooth;
-webkit-overflow-scrolling: touch;
padding-bottom: 10px; /* Espacio para scroll */
}

/* Oculta scrollbar */
#scroll-container::-webkit-scrollbar {
display: none;
}

#scroll-container {
-ms-overflow-style: none;
scrollbar-width: none;
}

/* Estilos para móvil */
@media (max-width: 767.98px) {


/* Flechas visibles en móvil */
.arrow-btn {
  display: flex !important;
  width: 35px;
  height: 35px;
  background-color: rgba(0, 0, 0, 0.5);
}
}

/* Estilos para desktop */
@media (min-width: 768px) {
.product {
  min-width: calc(25% - 16px) !important; /* 4 productos con gap */
}
}
@media (max-width: 767.98px) {
#scroll-container {
  justify-content: left;
}
}


/* Segunda seccion de la ropa hombre mujer *//* Segunda seccion de la ropa hombre mujer *//* Segunda seccion de la ropa hombre mujer */

.card img {
    object-fit: cover;
    height: 400px;
  }

  .card h6 {
    margin-bottom: 0.5rem;
  }

  .card p {
    font-size: 0.875rem;
  }

  .card a {
    color: #000;
  }

  .card a:hover {
    text-decoration: underline;
  }

  /* Scroll horizontal en móvil */
  .scroll-container {
    overflow-x: auto;
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
  }

  .scroll-container .card {
    min-width: 280px;
    flex: 0 0 auto;
  }

  /* Ocultamos scrollbar en algunos navegadores */
  .scroll-container::-webkit-scrollbar {
    display: none;
  }

  @media (min-width: 768px) {
    .scroll-container {
      overflow: visible;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
    }

    .scroll-container .card {
      min-width: auto;
    }
  }
   /* Inicio del apartado de la mujer solo la imagen */ /* Inicio del apartado de la mujer solo la imagen */
 /* HERO-WOMAN */
 .hero-woman {
    background-image: url('https://images.unsplash.com/photo-1558611848-73f7eb4001a1?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    height: 55vh;
    display: flex;
    align-items: center;
    color: #fff;
    position: relative;
  }

  .hero-woman::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3); /* Oscurece la imagen */
  }

  .hero-woman .hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
  }

  .hero-woman h1 {
    font-size: 3rem;
    font-weight: 700;
  }

  .hero-woman p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }

  .hero-woman .btn {
    background-color: #fff;
    color: #000;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-transform: uppercase;
    transition: all 0.3s;
  }

  .hero-woman .btn:hover {
    background-color: #000;
    color: #fff;
  }
  /* Segunda seccion de la ropa mujer */ /* Segunda seccion de la ropa mujer */ /* Segunda seccion de la ropa mujer */
  