/* Corrección para mostrar el carrito en dispositivos móviles */

/* IMPORTANTE: Sobrescribir la regla que oculta el carrito */
.header-cart {
  display: block !important;
}

/* Para pantallas menores a 768px */
@media screen and (max-width: 768px) {
  .header-cart .header-cart-canvas {
    width: 100% !important;
    max-width: 400px !important;
  }
  
  /* Asegurar que el carrito se muestre */
  .header-cart {
    display: block !important;
  }
}

/* Para pantallas menores a 576px */
@media screen and (max-width: 576px) {
  header.header-main .container-fluid .header-right li {
    margin-right: 0.4rem;
  }
  
  .header-cart .head-icon i.iconoir-simple-cart {
    font-size: 22px;
  }
  
  .header-cart .head-icon .badge-notification {
    font-size: 0.7rem !important;
  }
  
  .header-cart .header-cart-canvas {
    width: 100% !important;
    max-width: 320px !important;
    right: 0 !important;
  }
  
  /* Asegurar que el carrito se muestre */
  .header-cart {
    display: block !important;
  }
}

/* Para pantallas menores a 480px - MANTENER EL CARRITO VISIBLE */
@media screen and (max-width: 480px) {
  /* REGLA MÁS ESPECÍFICA para sobrescribir la regla compilada */
  header.header-main .container-fluid .header-right .header-cart {
    display: block !important;
  }
  
  /* Reducir el espaciado entre elementos del header */
  header.header-main .header-right li {
    margin-right: 0.3rem !important;
  }
  
  /* Reducir el tamaño del ícono del carrito pero mantenerlo visible */
  .header-cart .head-icon {
    padding: 0;
  }
  
  .header-cart .head-icon i.iconoir-simple-cart {
    font-size: 20px !important;
  }
  
  /* Reducir el tamaño del badge de notificación */
  .header-cart .head-icon .badge-notification {
    font-size: 0.6rem !important;
    padding: 0.2rem 0.4rem !important;
  }
  
  /* Asegurar que el canvas del carrito se muestre bien en móviles */
  .header-cart .header-cart-canvas {
    width: 100% !important;
    max-width: 350px !important;
    right: 0 !important;
  }
  
  /* Solo ocultar header-apps si existe */
  .header-apps {
    display: none !important;
  }
}

/* Para pantallas muy pequeñas (menores a 380px) */
@media screen and (max-width: 380px) {
  header.header-main .header-right li {
    margin-right: 0.2rem !important;
  }
  
  .header-cart .head-icon i.iconoir-simple-cart {
    font-size: 18px !important;
  }
  
  .header-cart .head-icon .badge-notification {
    font-size: 0.55rem !important;
    padding: 0.15rem 0.3rem !important;
  }
  
  .header-cart .header-cart-canvas {
    width: 100% !important;
    max-width: 300px !important;
  }
  
  /* Asegurar que el carrito se muestre en pantallas muy pequeñas */
  header.header-main .container-fluid .header-right .header-cart {
    display: block !important;
  }
}
