.varela-round-regular {
  font-family: "Varela Round", sans-serif;
  font-weight: 400;
  font-style: normal;
}

body {
  font-family: "Varela Round", sans-serif;
  padding: 0;
  margin: 0;
  background-color: #e7ebf3;
}

nav {
  background-color: #16366d;
}

nav img {
  margin-left: 25px;
  margin-top: 10px;
  width: 200px;
  height: 80px;
}

.barnav {
  height: 45px;
  background-color: #16366d;
}

.menu {
  font-family: "Varela Round", sans-serif;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.menu > li {
  position: relative;
}

.menu > li > a {
  display: block;
  padding: 12px 20px;
  color: rgb(255, 255, 255);
  transition: 0.5s;
  text-decoration: none;
}

.menu > li > a:hover {
  border-radius: 8px;
  transition: 0.5s;
  background: #0b1c38;
  color: rgb(104, 104, 104);
}

/* Submenús ocultos inicialmente */
.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #102850;
  min-width: 180px;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 1000;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

/* Ítems dentro del submenú */
.submenu li a {
  transition: 0.5s;
  display: block;
  padding: 10px 15px;
  color: rgb(255, 255, 255);
  text-decoration: none;
  white-space: nowrap;
}

.submenu li a:hover {
  transition: 0.5s;
  border-radius: 8px;
  background: #112b57;
}

/* Mostrar submenú al pasar el mouse */
.dropdown:hover > .submenu {
  display: block;
}

/* Submenú en cascada hacia la derecha */
.subderecha {
  top: 0;
  left: 100%;
}

.barraup {
  display: flex;
  justify-content: space-between;
}

.barra_inicio {
  background-color: #16366d;
}

.boton_busca {
  margin-right: 5px;
  height: 28px;
  width: 28px;
  border-radius: 25px;
  border-style: none;
}

.boton_busca:hover {
  transition: 0.5s;
  color: white;
  background-color: #0545da;
}

.buscador {
  margin-top: 35px;
}

.barra_busqueda {
  margin-right: 8em;
  height: 25px;
  width: 250px;
  border-radius: 15px;
  border-style: none;
}

.carro {
  color: white;
}

.carro:hover {
  transition: 0.5s;
  color: #0545da;
}

.barra_inicio img {
  width: 200px;
  height: 80px;
  filter: drop-shadow(0 0 5px rgb(250, 250, 250));
}

.user-cart-container {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-right: 25px;
  margin-top: 45px;
}

.user-icon {
  color: white;
  transition: 0.5s;
}

.user-icon:hover {
  transition: 0.5s;
  color: #0545da;
}

.favoritos-icon {
  position: relative;
  color: #e74c3c;
  text-decoration: none;
  transition: all 0.3s;
  display: flex;
  align-items: center;
}

.favoritos-icon:hover {
  color: #c0392b;
  transform: scale(1.1);
}

.contador-favoritos,
.contador-carrito {
  background: #9c1203ff;
  color: white;
  border-radius: 50%;
  padding: 4px 2px;
  font-size: 0.7em;
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 18px;
  text-align: center;
  font-weight: bold;
}

main {
  padding: 0 15px 15px 15px;
}

/* ========================================================================= */
/* SECCIONES DE PRODUCTOS MEJORADAS */
/* ========================================================================= */

.seccion-productos {
  margin: 30px 0;
  padding: 0 15px;
}

.titulo-seccion {
  color: #16366d;
  text-align: center;
  margin-bottom: 25px;
  font-size: 2em;
  padding: 15px;
  background: linear-gradient(135deg, #16366d, #0b1c38);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: bold;
}

/* ========================================================================= */
/* CARRUSEL CON FLECHAS */
/* ========================================================================= */

.carrusel-container {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 auto;
  max-width: 1400px;
  padding: 0 50px;
}

.contenedor-carrusel {
  display: flex;
  overflow-x: hidden;
  gap: 25px;
  padding: 20px 10px;
  scroll-behavior: smooth;
  width: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.contenedor-carrusel::-webkit-scrollbar {
  display: none;
}

.carrusel-flecha {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(22, 54, 109, 0.9);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2em;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  backdrop-filter: blur(10px);
}

.carrusel-flecha:hover {
  background: #16366d;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.carrusel-flecha:active {
  transform: translateY(-50%) scale(0.95);
}

.carrusel-flecha-izquierda {
  left: 0;
}

.carrusel-flecha-derecha {
  right: 0;
}

.carrusel-flecha:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: translateY(-50%);
}

.carrusel-flecha:disabled:hover {
  transform: translateY(-50%);
  background: rgba(22, 54, 109, 0.9);
}

/* ========================================================================= */
/* PRODUCTOS DINÁMICOS */
/* ========================================================================= */

.producto-dinamico {
  background-color: #10264d;
  padding: 20px 15px;
  border-radius: 15px;
  min-width: 240px;
  max-width: 240px;
  height: 400px;
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  position: relative;
  cursor: pointer;
  animation: fadeInUp 0.5s ease-out;
}

.producto-dinamico:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.producto-contenido {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.producto-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.imagen-producto {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  margin: 0 auto 15px auto;
  display: block;
  border: 2px solid #1e3a6b;
  transition: transform 0.3s ease;
}

.producto-dinamico:hover .imagen-producto {
  transform: scale(1.05);
}

.nombre-producto {
  color: white;
  font-size: 1em;
  margin: 0 0 12px 0;
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.3;
  font-weight: 500;
  transition: color 0.3s ease;
}

.producto-dinamico:hover .nombre-producto {
  color: #3498db;
}

.precio-producto {
  color: #ffd700;
  font-weight: bold;
  font-size: 1.4em;
  margin: 10px 0;
}

.stock-info {
  color: #27ae60;
  font-size: 0.85em;
  margin: 8px 0;
  font-weight: 500;
}

.stock-agotado {
  color: #e74c3c;
}

/* SECCIÓN DE ACCIONES DEL PRODUCTO */
.producto-acciones {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

.acciones-superiores {
  display: flex;
  justify-content: flex-end;
}

.form-favorito {
  margin: 0;
}

.btn-favorito {
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid #e74c3c;
  color: #e74c3c;
  padding: 8px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1em;
  z-index: 10;
  position: relative;
}

.btn-favorito:hover {
  background: #e74c3c;
  color: white;
  transform: scale(1.1);
}

.btn-favorito.activo {
  background: #e74c3c;
  color: white;
  animation: pulse 0.6s ease-in-out;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.corazon-favorito {
  font-size: 1.2em;
}

.form-carrito {
  margin: 0;
  width: 100%;
}

.btn-agregar {
  width: 100%;
  padding: 12px 15px;
  background: linear-gradient(135deg, #27ae60, #219a52);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: "Varela Round", sans-serif;
  font-size: 0.95em;
  font-weight: 500;
  transition: all 0.3s ease;
  z-index: 10;
  position: relative;
}

.btn-agregar:hover {
  background: linear-gradient(135deg, #219a52, #1e8747);
  transform: translateY(-2px);
}

.btn-agregar:disabled {
  background: #95a5a6;
  cursor: not-allowed;
  transform: none;
}

.btn-login-comprar {
  background: #3498db;
  color: white;
  border: none;
  padding: 12px 0px;
  border-radius: 8px;
  cursor: pointer;
  font-family: "Varela Round", sans-serif;
  font-size: 0.85em;
  text-decoration: none;
  display: inline-block;
  width: 100%;
  text-align: center;
  transition: all 0.3s ease;
  z-index: 10;
  position: relative;
}

.btn-login-comprar:hover {
  background: #2980b9;
  transform: translateY(-2px);
}

/* BADGES PARA PRODUCTOS */
.producto-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #27ae60;
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.7em;
  font-weight: bold;
  z-index: 5;
}

.badge-oferta {
  background: #e74c3c;
}

.badge-nuevo {
  background: #3498db;
}

/* ANIMACIONES ADICIONALES */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================================================= */
/* ALERTAS ANIMADAS MEJORADAS */
/* ========================================================================= */

.alerta-flotante {
  position: fixed;
  top: 20px;
  right: 20px;
  min-width: 300px;
  max-width: 500px;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 15px;
  transform: translateX(400px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}

.alerta-flotante.mostrar {
  transform: translateX(0);
  opacity: 1;
}

.alerta-flotante.ocultar {
  transform: translateX(400px);
  opacity: 0;
}

.alerta-flotante.success {
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  color: white;
  border-left: 5px solid #219a52;
}

.alerta-flotante.error {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
  border-left: 5px solid #b03a2e;
}

.alerta-flotante.warning {
  background: linear-gradient(135deg, #f39c12, #e67e22);
  color: white;
  border-left: 5px solid #d35400;
}

.alerta-flotante.info {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  border-left: 5px solid #2471a3;
}

.alerta-icono {
  font-size: 1.5em;
  flex-shrink: 0;
}

.alerta-contenido {
  flex-grow: 1;
}

.alerta-titulo {
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 1.1em;
}

.alerta-mensaje {
  font-size: 0.95em;
  line-height: 1.4;
}

.alerta-progreso {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background: rgba(255,255,255,0.5);
  border-radius: 0 0 12px 12px;
  width: 100%;
  transform-origin: left;
  animation: progreso 5s linear forwards;
}

@keyframes progreso {
  from { transform: scaleX(1); }
  to { transform: scaleX(0); }
}

/* Efectos de vibración para errores importantes */
@keyframes vibrar {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-3px); }
  75% { transform: translateX(3px); }
}

.alerta-flotante.error.mostrar {
  animation: vibrar 0.3s ease-in-out;
}

/* ========================================================================= */
/* MENÚ FULL-SCREEN PARA MÓVIL */
/* ========================================================================= */

.menu-hamburger {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5em;
  padding: 15px;
  cursor: pointer;
  margin-right: 10px;
}

.menu-fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #16366d 0%, #0b1c38 100%);
  z-index: 9999;
  display: none;
  flex-direction: column;
  overflow-y: auto;
}

.menu-fullscreen.active {
  display: flex;
}

.close-menu {
  align-self: flex-end;
  background: none;
  border: none;
  color: white;
  font-size: 2em;
  padding: 20px;
  cursor: pointer;
  transition: color 0.3s;
}

.close-menu:hover {
  color: #0545da;
}

.menu-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.fullscreen-logo {
  text-align: center;
  margin-bottom: 20px;
}

.fullscreen-logo img {
  max-width: 200px;
  height: auto;
  filter: brightness(0) invert(1);
}

.fullscreen-search {
  display: flex;
  margin: 20px 0;
  background: white;
  border-radius: 25px;
  padding: 5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.search-input-full {
  flex: 1;
  border: none;
  background: none;
  padding: 15px 20px;
  font-size: 1.1em;
  outline: none;
  font-family: "Varela Round", sans-serif;
}

.search-btn-full {
  background: #0545da;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  color: white;
  cursor: pointer;
  transition: background 0.3s;
}

.search-btn-full:hover {
  background: #033099;
}

.fullscreen-nav {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 20px 0;
}

.nav-item {
  color: white;
  text-decoration: none;
  font-size: 1.2em;
  padding: 18px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s;
  border-radius: 8px;
}

.nav-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.nav-item i:first-child {
  margin-right: 12px;
  width: 20px;
  text-align: center;
}

.accordion-arrow {
  transition: transform 0.3s ease;
  font-size: 0.9em;
}

.nav-submenu {
  display: none;
  padding-left: 20px;
  background: rgba(11, 28, 56, 0.5);
  border-radius: 8px;
  margin: 5px 0;
}

.nav-submenu.active {
  display: flex;
  flex-direction: column;
}

.nav-submenu a {
  color: #e0e0e0;
  text-decoration: none;
  padding: 15px 20px;
  font-size: 1.1em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  transition: all 0.3s;
}

.nav-submenu a:last-child {
  border-bottom: none;
}

.nav-submenu a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  padding-left: 25px;
}

.nav-submenu a i {
  margin-right: 12px;
  width: 20px;
  text-align: center;
}

.contact-info {
  margin-top: 30px;
  color: white;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 25px;
}

.contact-info h4 {
  margin-bottom: 15px;
  color: #0545da;
  font-size: 1.2em;
}

.contact-info p {
  margin: 12px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1em;
}

.fullscreen-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.fullscreen-social a {
  color: white;
  font-size: 1.8em;
  transition: all 0.3s;
}

.fullscreen-social a:hover {
  transform: translateY(-3px);
}

.fullscreen-social .fa-square-facebook:hover {
  color: #0545da;
}

.fullscreen-social .fa-instagram:hover {
  color: #ff0095;
}

/* ========================================================================= */
/* FOOTER */
/* ========================================================================= */

footer {
  background-color: #16366d;
  justify-content: space-around;
  display: flex;
  flex-wrap: nowrap;
}

.socialmedia {
  display: flex;
  padding-top: 25px;
  padding-bottom: 25px;
  padding-right: 25px;
}

.facebook {
  margin-right: 15px;
}

.icono-social {
  font-size: 3em;
  margin-right: 15px;
  transition: color 0.3s;
}

.fa-square-facebook {
  margin-left: 20px;
  color: #ffffff;
  transition: 0.3s;
}

.fa-square-facebook:hover {
  transition: 0.3s;
  color: #0545da;
  filter: drop-shadow(0 0 5px rgb(250, 250, 250));
}

.fa-instagram {
  color: #ffffff;
  transition: 0.3s;
}

.fa-instagram:hover {
  transition: 0.3s;
  color: #ff0095;
  filter: drop-shadow(0 0 5px rgb(250, 250, 250));
}

.Secciones {
  display: flex;
  justify-content: center;
}

.Secciones ul {
  padding-left: 0px;
}

.Secciones ul li {
  margin-bottom: 10px;
  list-style: none;
}

.Secciones ul li h4 {
  margin-right: 8px;
  margin-left: 20px;
  color: white;
}

.Secciones ul li a {
  margin-right: 8px;
  margin-left: 8px;
  color: white;
  transition: 0.5s;
  text-decoration: none;
}

.Secciones ul li a:hover {
  margin-left: 0px;
  margin-right: 0px;
  padding: 8px;
  color: grey;
  transition: 0.5s;
  border-radius: 10px;
  background-color: #0b1c38;
}

.copyright {
  color: white;
}

/* ========================================================================= */
/* CARRUSEL DE BANNERS */
/* ========================================================================= */

.carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.slides {
  display: flex;
  animation: slide 12s infinite;
}

.slide {
  width: 100%;
  flex-shrink: 0;
}

.slide img {
  width: 100%;
  display: block;
}

@keyframes slide {
  0% { transform: translateX(0); }
  30% { transform: translateX(0); }
  33% { transform: translateX(-100%); }
  63% { transform: translateX(-100%); }
  66% { transform: translateX(-200%); }
  96% { transform: translateX(-200%); }
  100% { transform: translateX(0); }
}

/* ========================================================================= */
/* RESPONSIVE DESIGN */
/* ========================================================================= */

@media screen and (max-width: 768px) {
  html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  /* BARRA SUPERIOR */
  .barraup {
    flex-direction: column;
    align-items: center;
    padding-bottom: 10px;
  }

  nav img {
    margin: 10px auto;
    width: 150px;
    height: 60px;
  }

  .buscador {
    margin-top: 5px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .barra_busqueda {
    width: 70%;
    margin-right: 5px;
  }

  .boton_busca {
    margin-right: 0;
  }

  .carro {
    position: absolute;
    top: 15px;
    right: 15px;
    margin-top: 0;
  }

  /* BARRA DE NAVEGACIÓN */
  .barnav {
    display: none;
    width: 100%;
    box-sizing: border-box;
    padding: 0 10px;
  }

  .user-cart-container {
    position: absolute;
    top: 15px;
    right: 125px;
    margin: 0;
    gap: 10px;
  }

  .user-icon, .carro {
    margin: 0;
  }

  .user-icon i, .carro i {
    font-size: 1.5em;
    display: none;
  }

  .menu {
    justify-content: flex-start;
    min-width: auto;
  }

  .submenu {
    position: static;
    min-width: 100%;
    border-radius: 0;
  }

  .dropdown:hover > .submenu {
    display: none;
  }

  .subderecha {
    top: auto;
    left: auto;
  }

  .Back {
    display: none;
  }

  /* PRODUCTOS */
  main {
    padding: 10px;
  }

  .productlist {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
    justify-content: flex-start;
  }

  .animexpo {
    margin: 10px 0;
    width: 65%;
    max-width: 300px;
    height: auto;
    transition: 0.3s;
  }

  .ofertas .animexpo {
    flex-direction: column;
    align-items: center;
    margin: 10px auto;
  }

  #termo, #calefon {
    width: 100%;
    height: auto;
    max-width: 160px;
  }

  #calefon {
    margin-top: 1em;
  }

  .animexpo:hover {
    transform: none;
  }

  /* CARRUSEL CON FLECHAS RESPONSIVE */
  .carrusel-container {
    padding: 0 35px;
  }

  .carrusel-flecha {
    width: 35px;
    height: 35px;
    font-size: 1em;
  }

  .contenedor-carrusel .producto-dinamico {
    min-width: calc(50% - 15px);
    max-width: calc(50% - 15px);
  }

  /* ALERTAS RESPONSIVE */
  .alerta-flotante {
    min-width: 280px;
    max-width: calc(100vw - 40px);
    right: 20px;
    left: 20px;
    transform: translateY(-100px);
  }

  .alerta-flotante.mostrar {
    transform: translateY(0);
  }

  .alerta-flotante.ocultar {
    transform: translateY(-100px);
  }

  /* FOOTER */
  footer {
    flex-direction: column;
    align-items: center;
    padding: 15px 0;
  }

  .socialmedia {
    padding: 10px 0;
    justify-content: center;
  }

  .facebook, .instagram {
    margin: 0 10px;
  }

  .fa-square-facebook, .fa-instagram {
    margin-left: 0;
  }

  .Secciones {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .Secciones ul {
    margin-bottom: 20px;
    text-align: center;
  }

  .Secciones ul li h4 {
    margin: 0 0 10px 0;
  }

  .copyright {
    text-align: center;
    margin-top: 15px;
  }

  /* MENÚ HAMBURGUESA */
  .menu-hamburger {
    display: block;
    order: 1;
    margin: 0;
  }

  .navbar .menu {
    display: none;
  }

  .buscador {
    display: none;
  }

  .barraup {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    position: relative;
  }

  nav img {
    margin: 0;
    width: 140px;
    height: 55px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .carro {
    margin: 0;
    order: 3;
  }

  .back {
    display: none;
  }
}

/* RESPONSIVE ADICIONAL PARA CARRUSEL */
@media (max-width: 1200px) {
  .contenedor-carrusel .producto-dinamico {
    min-width: calc(25% - 20px);
    max-width: calc(25% - 20px);
  }

  .carrusel-container {
    padding: 0 45px;
  }

  .carrusel-flecha {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 992px) {
  .contenedor-carrusel .producto-dinamico {
    min-width: calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
  }

  .carrusel-container {
    padding: 0 40px;
  }

  .carrusel-flecha {
    width: 40px;
    height: 40px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .contenedor-carrusel .producto-dinamico {
    min-width: calc(100% - 10px);
    max-width: calc(100% - 10px);
  }

  .carrusel-container {
    padding: 0 30px;
  }

  .carrusel-flecha {
    width: 30px;
    height: 30px;
    font-size: 0.9em;
  }

  .user-cart-container {
    gap: 12px;
  }

  .favoritos-icon i,
  .user-icon i,
  .carro i {
    font-size: 1.5em;
  }

  .contador-favoritos,
  .contador-carrito {
    font-size: 0.6em;
    padding: 1px 5px;
    top: -6px;
    right: -6px;
    min-width: 16px;
  }

  .btn-favorito {
    width: 32px;
    height: 32px;
    padding: 5px;
  }

  .corazon-favorito {
    font-size: 1em;
  }
}

/* Para tablets más grandes */
@media screen and (max-width: 1024px) and (min-width: 769px) {
  .menu-hamburger {
    display: none;
  }
}

/* Para desktop */
@media screen and (min-width: 769px) {
  .menu-fullscreen {
    display: none !important;
  }

  .menu-hamburger {
    display: none;
  }
}