@import url('https://fonts.googleapis.com/css?family=Raleway:400,700');
@import url('https://fonts.cdnfonts.com/css/more-sugar');



html, body {
  max-width: 100%;
  overflow-x: hidden;
}
/* Reset */
body, ul, li, h1, p, h2, h3 {
    margin: 0;
    padding: 0;
    list-style: none;
     font-family: "Harmonia Sans", sans-serif !important;;
    width: 100%;
    box-sizing: border-box;

  }
  
  /* Navbar */
  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    border-bottom: 1px solid rgb(131, 130, 130);
 font-family: "Harmonia Sans", sans-serif !important;;    
height: 150px;
    position: fixed; /* Fija la barra en la parte superior */
    top: 0; /* Asegura que esté en la parte superior */
    left: 0; /* Asegura que esté alineado a la izquierda */
    background-color: white; /* Opcional: da un fondo blanco para mejorar la visibilidad */
    width: 100%; /* Hace que ocupe todo el ancho de la pantalla */
    z-index: 1000; /* Asegura que esté por encima de otros elementos */
  }
  
  .navbar-left,
  .navbar-right {
    display: flex;
    align-items: center;
    margin-left: 200px;
    margin-right: 200px;
  }
  
  .navbar-center {
    text-align: center;
  }
  
  .logo h1 {
    font-size: 24px;
    margin: 0;
  }
  
  .logo p {
    font-size: 12px;
    margin: 0;
  }
  
  .navbar-links {
    display: flex;
    gap: 20px;
    margin-top: 30px;
  }
  
  .navbar-links li a {
    text-decoration: none;
    color: #000;
    padding: 5px 10px;

  }

  #home{
    background: linear-gradient(90deg, #2cdbe3, #ffffff); /* Degradado rosado */
    transition: 0.3s;
  }
  
  .navbar-links li a:hover {
    color: #2cdbe3; /* Pink hover effect */
  }
  
  .search-icon,
.user-icon, .cart-icon {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px; /* Asegura que los botones tengan la misma altura */
  width: 40px;  /* Ajusta el tamaño del botón */
  color: black;

}

  .user-iconn{
    display: none;
  }

  .user-icon svg {
    width: 24px;  /* Ajusta el tamaño del icono */
    height: 24px;
    fill: #000;  /* Color del icono */
    cursor: pointer;
    transition: fill 0.3s;
}

.user-icon:hover {
    color: #2cdbe3;  /* Color al pasar el mouse */
}

  
  .cart-icon {
    position: relative;
  }
  
  .cart-count {
    position: absolute;
    top: -5px;
    right: -10px;
    background: black;
    color: white;
    font-size: 12px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* Estilos para el usuario y cerrar sesión */
 /* Estilos para el usuario y cerrar sesión */
.navbar-right {
  position: relative; /* Necesario para el posicionamiento del menú de cerrar sesión */
  gap: 20px;
}

.user-menu {
  display: none; /* Inicialmente oculto */
  position: absolute;
  top: 30px; /* Ajusta según sea necesario */
  right: 7px;
  background-color: #f1f1f1;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 125px;
  font-family: "Harmonia Sans", sans-serif !important;;
  z-index: 10; /* Asegura que el menú esté encima de otros elementos */
  text-align: center;
}

/* Mostrar el menú solo cuando el icono de usuario o el menú estén en hover */
.user-icon:hover + .user-menu,
.user-menu:hover {
  display: block;
}

/* Estilo del enlace de cerrar sesión */
.cerrar {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  display: block;
  padding: 5px 10px;
  transition: background-color 0.3s ease;
}

.cerrar:hover {
  background-color: #f0f0f0;
  color: #2cdbe3; /* Pink hover effect */
  text-decoration: underline;
}

.admin-btn{
  text-decoration: none;
  color: #333;
  font-weight: bold;
  display: block;
  padding: 5px 10px;
  transition: background-color 0.3s ease;
}

.admin-btn:hover{
    background-color: #f0f0f0;
    color: #2cdbe3; /* Pink hover effect */
    text-decoration: underline;
}

/* Estilo del carrito */
.cart-icon {
  cursor: pointer;
  /* Otros estilos de tu carrito */
}


  /* Hamburger Menu */
.hamburger-menu {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: #000;
}


@media (max-width: 768px) {
  .navbar {
      padding: 10px!important;
      width: 100%!important;
      margin: 0!important;
      display: flex !important;
      flex-direction: column !important;
      align-items: center !important;
  }

  .add-to-cart-btn_MODAL {
      width: 100% !important;
  }

  .navbar-left,
  .navbar-right {
      margin-left: 10px!important;
      margin-right: 10px!important;
  }

  .destacados {
      padding: 5px!important;
  }

  .ig {
      width: auto;
  }

  .producto {
      width: 100%!important;
      margin: 0 auto!important;
  }

  .grid {
      margin: 0!important;
      padding: 0 10px!important;
  }

  .section-container {
      width: 100%!important;
      padding: 0!important;
      margin: 0!important;
  }

  .image-with-text__text {
      width: 100%!important;
      padding: 0 15px !important;
  }

  .navbar-center {
      flex: 1;
      justify-content: center;
      order: 1 !important;
  }

  body {
      width: 100%;
  }

  .navbar-links {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 8%;
      left: 0;
      width: 38%;
      background-color: #fff;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      padding: 20px 0;
  }

  .navbar-links li a {
      position: relative;
      display: block;
      text-align: center;
      text-decoration: none;
      padding: 10px 0;
      color: #000;
  }

  .navbar-links li a::after {
      content: '';
      position: absolute;
      left: 10%;
      bottom: 0;
      width: 90%;
      height: 2px;
      background-color: black;
  }

  .navbar-links li a:hover {
      color: #2cdbe3;
  }

  .navbar-links.show {
      display: flex;
  }

  .hamburger-menu {
      display: block;
      position: absolute;
      left: 10px;
  }

  #home {
      background: linear-gradient(90deg, #2cdbe3, #ffffff);
      text-align: center;
      text-decoration: none;
      position: relative;
  }

  #home:hover {
      color: #2cdbe3;
  }

  .navbar-left {
      order: 2 !important;
      width: 100% !important;
      margin-top: 10px !important;
      display: flex !important;
      justify-content: center !important;
  }

  #search-container {
      position: absolute !important;
      top: 100% !important;
      left: 50% !important;
      transform: translateX(-50%) !important;
      width: 200px !important;
      z-index: 1000 !important;
  }

  #search-input {
      width: 200px !important;
      padding: 8px !important;
      box-sizing: border-box !important;
  }

  .search-icon {
      position: relative !important;
      z-index: 1001 !important;
  }

  .navbar-right {
      order: 3 !important;
  }
}

.search-icon {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  color: black;
}

.search-circle {
  position: relative;
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.search-circle::after {
  content: '';
  position: absolute;
  width: 11px;
  height: 1px;
  background: currentColor;
  bottom: -4px;
  right: -9px;
  transform: rotate(45deg);
}
  


/* Contenedor del video */
.video-container {
    position: relative;
    width: 100%;
    height: 70vh; /* El video ocupa toda la ventana */
    overflow: hidden;
}

.prueba {
  height: 35px;
  margin-top: 170px; /* Ajusta esto según el alto de tu barra de navegación */
}

/* Video de fondo */
.background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  object-fit: contain; /* Cambiado a 'contain' */
  background-color: black; /* Fondo negro opcional */
  z-index: -1;
}


/* Contenido sobre el video */
.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.video-overlay h1 {
    font-size: 3rem;
    margin: 0;
}

.video-overlay p {
    font-size: 1.5rem;
    margin: 10px 0 0;
}

     /* Contenedor principal */
     .marquee-container {
        width: 100%; /* Ocupa todo el ancho */
        overflow: hidden; /* Oculta el contenido fuera del contenedor */
        white-space: nowrap; /* Evita saltos de línea */
        background-color: #fff;
        padding: 40px 0;
        position: relative;
      }

    /* Contenedor del texto en movimiento */
    .marquee {
        display: inline-block; /* Contenido en línea para desplazamiento fluido */
        white-space: nowrap; /* Mantiene todo en línea */
        animation: scroll 50s linear infinite; /* Animación fluida sin pausas */
      }

    /* Texto individual */
    .marquee span {
      margin-right: 100px; /* Espaciado entre textos */
      font-size: 25px; /* Tamaño de la fuente */
      color: #000; /* Color del texto */
    }

    .marquee span {
        margin-right: 80px; /* Ajusta el espacio entre los textos */
      }

    /* Definición de la animación continua */
    @keyframes scroll {
        0% {
          transform: translateX(0); /* Comienza desde el inicio */
        }
        100% {
          transform: translateX(-50%); /* Se desplaza la mitad del ancho (el duplicado) */
        }
    }


    .carousel {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .carousel,
.video-container,
.marquee-container {
    max-width: 100%;
    overflow-x: hidden;
}

    .carousel .image {
      display: none; /* Oculta todas las imágenes por defecto */
    }
    
    .carousel .image.active {
      display: block; /* Solo la imagen con la clase 'active' se muestra */
    }
    
    .image {
      display: none; /* Ocultar todas las imágenes */
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      object-position: center;
    }
    
    .image.active {
      display: block; /* Solo la imagen con la clase 'active' se muestra */
    }



/* Estilos responsivos para móviles */
@media (max-width: 768px) {
  .video-container {
      height: 40vh;
  }



  .video-overlay h1 {
      font-size: 2rem;
  }

  .video-overlay p {
      font-size: 1rem;
  }

  .marquee span {
      font-size: 18px;
      margin-right: 80px;
  }
}

/* Estilos responsivos para tabletas */
@media (min-width: 769px) and (max-width: 1280px) {
  .video-container {
      height: 50vh;
  }

  .video-overlay h1 {
      font-size: 2.5rem;
  }

  .video-overlay p {
      font-size: 1.2rem;
  }

  .marquee span {
      font-size: 22px;
      margin-right: 80px;
  }
}

/* Estilos para pantallas de 1280px o más */
@media (min-width: 1281px) {
  .video-container {
      height: 70vh;
  }

  .video-overlay h1 {
      font-size: 3rem;
  }

  .video-overlay p {
      font-size: 1.5rem;
  }

  .marquee span {
      font-size: 25px;
      margin-right: 80px;
  }
}

/* Ajustes para el carrusel responsivo */
.carousel .image {
  width: 100%;
  height: auto;
  object-fit: cover;
}


   /*lapices*/


.page-width {
    max-width: 100rem;
    margin: 0 auto;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}

/* Media query para pantallas entre 1280px y 1920px */
@media (min-width: 1280px) and (max-width: 1920px) {
  .page-width {
      max-width: 90%;  /* Ajuste proporcional del ancho máximo */
  }
  
  .grid {
      gap: 40px;  /* Incremento del espacio entre columnas */
  }
  
  .image-with-text__heading {
      font-size: 3.5vw;  /* Tamaño de fuente responsive */
      margin: 0 0 30px;
  }
  
  .image-with-text__text {
      font-size: 1.3vw;  /* Tamaño de fuente responsive */
      width: auto;  /* Permite que el texto se ajuste al contenedor */
      max-width: 80%;  /* Limita el ancho máximo del texto */
  }
  
  .button {
      padding: 15px 30px;  /* Botón más grande para pantallas mayores */
      font-size: 1vw;
  }
  
  .carousel img {
      max-width: 100%;
      height: auto;
  }
}



@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr;
    }

    .grid__item {
        text-align: center;
    }

    .grid__item_img {
        text-align: center;
    }
}

.image-with-text__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.image-with-text__heading {
    font-size: 45px;
    margin: 0 0 20px;
}

.image-with-text__text {
    font-size: 21px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #000000;
    width: 580px;
}

.button {
    background-color: #000;
    color: #fff;
    text-transform: uppercase;
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #333;
}
  
      /* Estilo para las redes sociales laterales */
      .social-icons {
        position: fixed;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        gap: 20px;
      }
      
      .social-icons .icon {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 50px;
        height: 50px;
        background-color: transparent;
        border-radius: 50%;
        transition: all 0.3s ease;
        font-size: 20px; /* Tamaño del icono */
        color: #000;
      }
      
      .social-icons .icon:hover {
        background-color: #111111; /* Fondo gris */
        transform: scale(1.1); /* Aumenta el tamaño del círculo */
        color: #fff;
      }
      
      .social-icons .icon i {
        transition: transform 0.3s ease;
      }
      
      .social-icons .icon:hover i {
        transform: scale(1.3); /* Zoom en el icono */
      }

      /*GIMENA*/

      .section-container {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 57vh;
        background-color: black;
        margin-bottom: 50px;
      }
  
      .section-content {
        display: flex;
        width: 92%;
        background-color: #d9d1cf;
      }

      .section-content {
        width: 100% !important;
        max-width: 100%!important;
    }
    
    .image-container,
    .text-container {
        width: 100%!important;
    }
  
      .image-container {
        flex: 1;
      }
  
      .image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
  
      .text-container {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px;
        text-align: center;
        background-color: #d9d1cf;
      }
  
      .text-container blockquote {
        font-style: italic;
        font-size: 1.5em;
        margin-bottom: 10px;
      }
  
      .text-container cite {
        font-size: 1em;
        color: #555;
      }


      /*Destacados*/
      :root {
        --color-base-solid-button-labels: 255, 255, 255; /* Color blanco */
        --color-base-outline-button-labels: 33, 35, 38; /* Color oscuro */
    }
    
      .titulo-destacados {
        text-align: center;
        font-size: 40px;
        margin-bottom: 20px;
        color: #000000;
     font-family: "Harmonia Sans", sans-serif !important;;      }
      
.destacados {
    display: grid;
    gap: 20px;
    padding: 10px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    align-items: stretch; /* Changed from center to stretch */
}

.producto {
    display: flex;
    flex-direction: column;
    min-width: 300px;
    text-align: center;
    background: linear-gradient(to bottom, white, #2cdbe3);
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
      
      .producto img {
        width: 100%;
        height: auto;
        border-radius: 5px;
        margin-bottom: 10px;
      }
      
      .producto h3 {
        font-size: 16px; /* Tamaño del título ligeramente ajustado */
        color: #000000;
        margin: 10px 0 0;
        font-family: 'More Sugar', sans-serif !important; /* Aplicar tipografía */

      }

      #modal-titleo{
        font-family: 'More Sugar', sans-serif !important; /* Aplicar tipografía */

      }
      
      .producto:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      }

      .producto {
        position: relative;
    }
    
    .sin-stock-banner {
        position: absolute;
        top: 0;
        left: 0;
        background-color: red;
        color: white;
        padding: 5px 30px;
        transform: rotate(0deg) translateX(0%) translateY(50%);
        font-weight: bold;
        z-index: 1;
        font-family: 'More Sugar', sans-serif !important; /* Aplicar tipografía */

    }

      

    
    .reviews {
        margin-bottom: 10px;
    }
    
    .star {
        color: #2cdbe3; /* Color rosa para las estrellas */
    }
    
    .product-price {
        font-size: 20px;
        font-weight: bold;
        margin: 10px 0;
    }
    .product-image-container {
        position: relative;
    }

    .product-image {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.3s ease;
    }
    
    .add-to-cart {
        position: absolute;
        bottom: 190px;
        left: 50%;
        transform: translateX(-50%);
        background-color: #2cdbe3;
        color: white;
        padding: 10px 20px;
        border: none;
        cursor: pointer;
        font-size: 16px;
        opacity: 0; /* Inicialmente invisible */
        transition: opacity 1s ease, background-position 2s ease; /* Cambié la duración de la transición */
        background-size: 220% 100%; /* Hace que el gradiente ocupe más espacio */
        background-position: 100% 0; /* Inicia el gradiente desplazado a la derecha */
        visibility: hidden; /* Esconde el botón por defecto */
        width: 60%;
    }
    
    .producto:hover .add-to-cart {
        opacity: 1;
        visibility: visible;
        background-position: 0 0; /* El gradiente se mueve a la izquierda */
    }

    .add-to-cart:hover {
        animation: slideGradient 2s forwards, epicAnimation 0.6s ease-out; /* Aplicamos ambas animaciones */
  
    }

    .producto-content {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
  }


@keyframes slideGradient {
    0% {
        background-position: 100% 0;
    }
    100% {
        background-position: 0 0;
    }
}

@keyframes epicAnimationn {
  0% {
    transform: scale(1);
    background-color: #000;
    box-shadow: 0 0 5px #2cdbe3, 0 0 10px #2cdbe3;
  }
  50% {
    transform: scale(1.01); /* Zoom casi imperceptible */
    background-color: #2cdbe3;
    box-shadow: 0 0 15px #2cdbe3, 0 0 25px #2cdbe3;
  }
  100% {
    transform: scale(1);
    background-color: #000;
    box-shadow: 0 0 5px #2cdbe3, 0 0 10px #2cdbe3;
  }
}



/* Tablets (pantallas de 768px a 1024px) */
@media (max-width: 1024px) {
  .section-container {
      height: auto;
      margin-bottom: 30px;
  }
  

  .section-content {
      flex-direction: column;
      width: 100%;
  }

  .image-container {
      width: 100%;
  }

  .text-container {
      padding: 15px;
  }

  .destacados {
      flex-wrap: wrap;
      gap: 15px;
  }

  .titulo-destacados {
    text-align: center;
    font-size: 40px;
    margin-bottom: 20px;
    color: #000000;
 font-family: "Harmonia Sans", sans-serif !important;;      
margin-top: 20px !important;
}

  .producto {
      min-width: calc(50% - 10px); /* Dos columnas */
  }

  .grid{
    margin-bottom: 50px;
  }
 
}

/* Móviles (pantallas de 767px o menos) */
@media (max-width: 767px) {
  .section-container {
      height: auto;
      height: 355px;
      margin-top: 50px !important;
  }

  .add-to-cart-btn_MODAL{
    width: 100% !important;
  }

  .ig{
    width: auto !important;
  }

  body{
    width: 100%;
  }

  .prueba{
    margin-top: 0px;
  }

  .section-content {
      flex-direction: column;
      width: 100%;
  }

  .image-container img {
      height: 200px; /* Ajusta la altura para móviles */
      object-fit: cover;
  }

  .text-container blockquote {
      font-size: 1.2em;
  }

  .text-container cite {
      font-size: 0.9em;
  }

  .destacados {
      gap: 10px;
      display: flex;
  }

  .grid__item_img{
    height: 100%;
  }

  .producto {
      width: 50%;
  }

  .producto img {
      height: auto;
  }

  .image-with-text__content{
    align-items: center;
  }
  .image-with-text__text{
    width: 90%;
    font-size: 17px;
  }

  .section-container{
    margin-top: 215;

  }
}

/* Pantallas de 1280px */
@media (max-width: 1280px) {
  .section-container {
      margin-bottom: 40px;
      margin-top: auto;
  }

  .grid__item_img{
    width: 100% !important;
  }

  .image-with-text__heading{
    text-align: center;
  }

  .section-content {
      width: 95%;
  }

  .text-container {
      padding: 20px;
  }

  .producto {
      min-width: calc(33.33% - 10px); /* Tres columnas */
  }

  .grid{
    grid-template-columns: 1fr;
      margin-bottom: 50px;
  }

  .image-with-text__content{
    align-items: center;
  }
}

/* Móviles pequeños (480px o menos) */
@media (max-width: 480px) {
  .section-container {
      height: auto;
      padding: 10px; /* Añade algo de margen interno */
      margin-bottom: 15px;
      width: 100%;
  }

  .sin-stock-banner {
    position: absolute;
    top: 0;
    left: 0;
    background-color: red;
    color: white;
    padding: 5px 10px;
    transform: rotate(0deg) translateX(0%) translateY(50%);
    font-weight: bold;
    z-index: 1;
    font-size: 12px;
  }
  

  .modal-body {

    padding: 5px !important;
}

  .nav-container{
    padding: 0;
    overflow: scroll;
  }

  .add-to-cart-btn_MODAL{
    width: 100% !important;
  }

  .navbar-links.show {
    display: flex;
    width: 80%;
    position: absolute !important;
    z-index: 9999 !important; /* Valor alto para estar por encima de todo */
    background-color: #fff !important; /* Asegura que el fondo sea sólido */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important; /* Sombra opcional para mejor visibilidad */
  }

  .modalo-contento{
    display: grid !important;
  }

  .navbar-links.show{
    width: 80%;
  }

  .section-content {
      flex-direction: column;
      width: 100%;
  }

  .image-container img {
      height: 150px; /* Reduce aún más la altura de las imágenes */
      object-fit: cover;
  }

  .section--padding{
    justify-items: center;
    align-items: center;
  }

  .text-container {
      padding: 10px;
      text-align: center;
  }

  .text-container blockquote {
      font-size: 1em; /* Reduce el tamaño del texto */
      margin-bottom: 5px;
  }

  .text-container cite {
      font-size: 0.8em;
      color: #777;
  }

  .destacados {
    display: grid;
    gap: 40px;
    padding: 10px;
    grid-template-columns: 1fr; /* Una sola columna que ocupa todo el ancho disponible */
    align-items: center; /* Centra verticalmente los elementos */
    justify-items: center; /* Centra horizontalmente los elementos */
    width: 100% !important;
  }
  

 .ig{
  width: 100% !important;
 }

  .producto {
      padding: 10px; /* Reduce el padding */
      width: 50% !important;
  }

  .producto img {
      object-fit: cover;
  }

  .add-to-cart{
    bottom: 122px;
  }

  .producto h3 {
      font-size: 14px; /* Reduce el tamaño del título */
  }

  .product-price {
      font-size: 16px; /* Reduce el tamaño del precio */
  }

  .add-to-cart {
      padding: 8px 15px; /* Botón más compacto */
      font-size: 14px; /* Texto más pequeño */
  }

  .carousel{
    width: 100%;

  }

  .grid__item_img{
    height: 100%;
  }

  .image-with-text__heading{
    font-size: 30px;
  }

  div.image-with-text__content {
    align-items: center;
    width: 100%;
}

.grid{
  margin-bottom: 20px !important;
}

}

/* Móviles pequeños (480px o menos) */
@media (max-width: 480px) {
  .modal-carrito {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: 50% !important; /* Ocupa solo la mitad derecha */
    height: 100vh;
    background: white;
    z-index: 1000;
  }
  
  .modal-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 20px 0 0 20px; /* Redondear solo el lado izquierdo */
  }


  
  /* Ocultar productos recomendados y divisor */
  .productos-recomendados,
  .divisor {
    display: none;
  }
  
  /* Ajustar el carrito */
  .carrito {
    height: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  .carrito .modal-header {
    padding: 10px;
  }
  
  .carrito .modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
  }
  
  .carrito .modal-footer {
    padding: 10px;
    background: white;
    border-top: 1px solid #eee;
  }
}


/*footer*/
.custom-footer {
    background-color: #2cdbe3; /* Fondo rosa */
    color: #ffffff; /* Texto blanco */
    padding: 10px 40px; /* Reducir padding superior e inferior */
    font-family: "Harmonia Sans", sans-serif !important;;
    position: relative;
    height: 200px;
    align-items: center;
    display: grid;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end; /* Alinear el contenido al fondo */
  }
  
  .footer-logo img {
    max-width: 120px; /* Tamaño del logo */
  }
  
  .footer-content {
    flex: 1;
    text-align: center; /* Centrar el contenido */
  }
  
  .footer-section h3 {
    font-size: 1.5em;
    margin: 0;
  }
  
  .footer-section p {
    margin: 5px 0;
  }
  
  .footer-social {
    margin-top: 5px; /* Reducir el espacio */
  }
  
  .footer-social a {
    color: #ffffff; /* Color inicial del ícono */
    margin: 0 5px;
    font-size: 1.5em; /* Tamaño del ícono */
    text-decoration: none;
    display: inline-flex; /* Cambiado a inline-flex */
    justify-content: center; /* Centrar horizontalmente */
    align-items: center; /* Centrar verticalmente */
    width: 40px;
    height: 40px;
    border-radius: 50%; /* Hacer círculo */
    transition: all 0.3s ease; /* Transición suave */
  }
  
  .footer-social a:hover {
    background-color: #ffffff; /* Fondo blanco al hacer hover */
    color: #2cdbe3; /* Ícono cambia al color rosa del footer */
  }
  
  
  
  .footer-rights {
    margin-top: 10px; /* Reducir espacio */
    font-size: 0.9em;
  }
  
  .footer-rights p {
    margin: 0; /* Sin margen */
  }
  




  /*modal*/
  .modal-carrito {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    background-color: #fff;
    box-shadow: -4px 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    z-index: 1000;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #f8f8f8;
    border-bottom: 1px solid #ddd;
}

.modal-headerr{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #f8f8f8;
    border-bottom: 1px solid #ddd;
}

.modal-header h2 {
    margin: 0;
    font-size: 18px;
}

.close-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.carrito-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.carrito-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
    padding-bottom: 0px;
}

.carrito-item img {
    width: 60px;
    height: 60px;
    border-radius: 5px;
    margin-right: 15px;
}

.carrito{
  padding-right: 20px;
}

.item-details {
    flex: 1;
}

.item-details h4 {
    margin: 0 0 5px;
    font-size: 16px;
}

.item-details p {
    margin: 0;
    color: #555;
    font-size: 14px;
}

.item-actions {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.item-actions button {
    background-color: #f0f0f0;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 16px;
}

.item-actions span {
    margin: 0 10px;
    font-size: 16px;
}

.remove-btn {
    background: none;
    border: none;
    font-size: 20px;
    color: #f00;
    cursor: pointer;
}

.modal-footer {
    padding: 20px;
    background-color: #f8f8f8;
    border-top: 1px solid #ddd;
    text-align: center;
}

.checkout-btn, .view-cart-btn {
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    border: none;
    background-color: 2cdbe3;
    color: white;
    font-size: 16px;
    cursor: pointer;
    font-size: 16px;
    transition: opacity 1s ease, background-position 2s ease;
    background-size: 220% 100%;
    background-position: 190% 0;
}

@keyframes epicAnimationn {
  0% {
    transform: scale(1);
    background-color: #000;
    box-shadow: 0 0 5px #2cdbe3, 0 0 10px #2cdbe3;
  }
  50% {
    transform: scale(1.01); /* Zoom casi imperceptible */
    background-color: #2cdbe3;
    box-shadow: 0 0 15px #2cdbe3, 0 0 25px #2cdbe3;
  }
  100% {
    transform: scale(1);
    background-color: #000;
    box-shadow: 0 0 5px #2cdbe3, 0 0 10px #2cdbe3;
  }
}



  
.modal-content {
  display: flex;
  gap: 10px;
  height: 100%;
}

.compra{
  height: 75%;
}

.divisor {
  width: 1px;
  background-color: #ddd;
  margin: 0 10px;
}
.add-to-cart-btn {
  background-color: transparent;
  color: #000000; /* Color de texto */
  font-size: 12px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding-top: 10px;
  position: relative; /* Necesario para animación */
  overflow: hidden; /* Para que la animación quede dentro del contorno del botón */
}

.add-to-cart-btn span {
  display: inline-block; /* Necesario para la animación */
  opacity: 0; /* Comienza invisible */
  transform: translateX(100%); /* Comienza desde la derecha */
  transition: transform 0.5s ease-out, opacity 0.5s ease-out; /* Animación de deslizamiento */
}

.add-to-cart-btn:hover span {
  opacity: 1; /* Hacer visible el texto */
  transform: translateX(0); /* Deslizarse hacia su posición original */
  animation: slideInFromRight 0.5s forwards; /* Aplica la animación con keyframe */
}

.add-to-cart-btn:hover {
  color: #2cdbe3; /* Color del texto cuando se hace hover */
}


/* Animación para deslizar el texto desde la derecha */
@keyframes slideInFromRight {
  0% {
    transform: translateX(100%); /* Comienza desde la derecha */
    opacity: 0;
  }
  100% {
    transform: translateX(0); /* Llega a su posición original */
    opacity: 1;
  }
}

.add-to-cart-btn .arrow {
  margin-left: 8px;
  font-size: 18px;
  font-weight: normal;
  transition: transform 0.3s;
  text-decoration: none;

}

.add-to-cart-btn:hover .arrow {
  transform: translateX(5px); /* Mueve la flecha hacia la derecha al hacer hover */
  text-decoration: none;
}


      
      

#modal-thumbnails img {
  border: 1px solid #ccc;
  border-radius: 5px;
  transition: transform 0.3s ease;
}

#modal-thumbnails img:hover {
  transform: scale(1.1);
}

.reviews {
  font-size: 14px;
  color: white !important;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}

.reviews .star {
  color: white; /* Cambia el color de las estrellas a blanco */
  font-size: 16px;
}

.search-icon svg {
  width: 20px;
  height: 20px;
  color: #000; /* o el color que prefieras */
}



.reviews span {
  color: #333;
  font-weight: bold;
}










/* Estilo para el contenedor de resultados de búsqueda */
#search-container {
  position: absolute; /* Posición absoluta respecto al contenedor padre más cercano */
  top: 100%; /* Ubica el contenedor justo debajo del ícono */
  left: 0; /* Alinea el contenedor al borde izquierdo del contenedor padre */
  background-color: #fff;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000; /* Asegura que esté sobre otros elementos */
  display: none; /* Oculto por defecto */
  text-align: center;
}

/* Estilo para el input del buscador */


/* Estilo para los resultados */
#product-results {
  margin-top: 10px;
  max-height: 200px; /* Altura máxima para mostrar los resultados */
  overflow-y: auto; /* Agrega scroll si los resultados son demasiados */
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  position: absolute;
  z-index: 10;
}

/* Estilo para cada item de producto */
#product-results .producto-item {
  padding: 10px;
  border-bottom: 1px solid #eee;
  font-size: 14px; /* Reducir el tamaño del texto */
  display: flex; /* Usamos flexbox para organizar imagen y texto */
  align-items: center; /* Centra verticalmente la imagen y el texto */
}

/* Estilo para la imagen del producto */
#product-results .producto-item img {
  width: 40px; /* Reducir el tamaño de la imagen */
  height: 40px;
  object-fit: cover;
  margin-right: 10px; /* Espacio entre la imagen y el texto */
}

/* Estilo para el nombre del producto */
#product-results .producto-item h3 {
  font-size: 14px;
  margin: 0;
  flex-grow: 1; /* Permite que el nombre del producto ocupe el espacio disponible */
}

/* Estilo para la descripción o precio del producto */
#product-results .producto-item p {
  font-size: 12px; /* Reducir el tamaño del precio */
  color: #000;
  margin: 10px;
}

/* Estilo para el botón de agregar al carrito */
#product-results .producto-item button {
  width: 36%;
  margin-top: 10px;
  padding: 10px;
  border: none;
  background-color: rgb(44, 219, 227);
  color: white;
  cursor: pointer;
  font-size: 10px;
  transition: opacity 1s ease, background-position 2s ease;
  background-size: 220% 100%;
  background-position: 190% 0;
}


@keyframes epicAnimationn {
  0% {
    transform: scale(1);
    background-color: #000;
    box-shadow: 0 0 5px #2cdbe3, 0 0 10px #2cdbe3;
  }
  50% {
    transform: scale(1.01); /* Zoom casi imperceptible */
    background-color: #2cdbe3;
    box-shadow: 0 0 15px #2cdbe3, 0 0 25px #2cdbe3;
  }
  100% {
    transform: scale(1);
    background-color: #000;
    box-shadow: 0 0 5px #2cdbe3, 0 0 10px #2cdbe3;
  }
}



  /* Estilo para el nuevo botón con clase add-to-cart-btn */
  .add-to-cart-btn_MODAL {
    width: 50%;
    margin-top: 10px;
    padding: 10px;
    border: none;
    background-color: #2cdbe3;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: opacity 1s ease, background-position 2s ease;
    background-size: 220% 100%;
    background-position: 190% 0;
  }

/* Animación para el hover */
@keyframes epicAnimationn {
  0% {
    transform: scale(1);
    background-color: #000;
    box-shadow: 0 0 5px #2cdbe3, 0 0 10px #2cdbe3;
  }
  50% {
    transform: scale(1.01); /* Zoom casi imperceptible */
    background-color: #2cdbe3;
    box-shadow: 0 0 15px #2cdbe3, 0 0 25px #2cdbe3;
  }
  100% {
    transform: scale(1);
    background-color: #000;
    box-shadow: 0 0 5px #2cdbe3, 0 0 10px #2cdbe3;
  }
}


/* Efecto al pasar el mouse */






.nav-container {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  font-family: Arial, sans-serif;
  margin-top: 40px;
}

.nav-section {
  text-align: center;
  flex: 1;
  margin: 0 15px;
}

.nav-icon {
  font-size: 24px;
  margin-bottom: 10px;
}

.nav-title {
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 16px;
}

.nav-content {
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-content li {
  color: #666;
  font-size: 14px;
  margin-bottom: 5px;
}



.footer-rights p {
  font-size: 14px;
  color: #555;
  text-align: center;
  margin-top: 20px;
}

.footer-rights a{
  text-decoration: none;
}
.footer-rights strong {
  color: #000;
}
