/* === Snippet: mostrarCarritoEscritorio.css === */

@media (min-width: 1024px) {
  /* El contenedor principal debe permitir posicionamiento absoluto */
  .header-container {
    position: relative;
    z-index: 100; /* Asegura que esté por encima del contenido */
  }

  /* Mostrar y posicionar el carrito */
  .site-header-cart.header-cart-mobile {
    display: flex !important;
    align-items: center;
    position: absolute;
    top: 50%;
    right: 2rem; /* Separado del borde derecho */
    transform: translateY(-50%);
    z-index: 101; /* Por encima del header si fuera necesario */
  }

  .site-header-cart.header-cart-mobile a.cart-contents {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background-color: #35c2e7;
    border-radius: 50%;
    color: white;
    font-weight: bold;
    text-decoration: none;
    box-shadow: none;
    transition: transform 0.2s ease;
  }

  .site-header-cart.header-cart-mobile a.cart-contents:hover {
    transform: scale(1.08);
  }

  /* Ocultar el precio si no lo necesitás */
  .site-header-cart.header-cart-mobile a.cart-contents .amount {
    display: none !important;
  }

  /* Estilo para la burbuja de cantidad */
  .site-header-cart.header-cart-mobile .count {
    position: absolute !important;
    top: -6px;
    right: -6px;
    background-color: #ff5557 !important;
    color: #fff !important;
    font-size: 12px !important;
    font-weight: bold !important;
    height: 20px !important;
    min-width: 20px !important;
    line-height: 20px !important;
    padding: 0 6px !important;
    border-radius: 999px !important;
    text-align: center !important;
    white-space: nowrap !important;
    display: inline-block !important;
  }

  .site-header-cart.header-cart-mobile .cart-contents::before {
    color: white !important;
  }
}

.site-header-cart.header-cart-mobile span.count {
  background-color: #ff5557 !important;
}
