       /* Estilos generales */
       body {
           font-family: Arial, sans-serif;
       }

       .cart-container {
           display: none;
           /* Panel oculto por defecto */
           position: fixed;
           top: 0;
           right: 0;
           width: 280px;
           background-color: white;
           /*background-color: rgba(255, 255, 255, 0.99);*/
           /* Transparencia agregada */
           border-left: 1px solid #ccc;
           height: 100%;
           overflow-y: auto;
           /* display: flex; */
           flex-direction: column;
           z-index: 1000;
       }

       .cart-panel {
           padding: 20px;
           display: flex;
           flex-direction: column;
           flex: 1;
           /* Para que ocupe todo el espacio disponible */
       }

       .cart-header {
           display: flex;
           justify-content: space-between;
           align-items: center;
           padding: 10px;
       }

       .cart-header h2 {
           margin: 0;
           font-size: 18px;
       }

       .cart-header .cart-icon {
           font-size: 24px;
           margin-right: 10px;
       }

       /* Estilos del carrito */
       .cart-item {
           display: flex;
           align-items: center;
           margin-bottom: 10px;
           border-bottom: 1px solid #ddd;
       }

       .cart-item img {
           width: 50px;
           height: 50px;
           margin-right: 10px;
       }

       .cart-item-info {
           display: flex;
           justify-content: space-between;
           align-items: center;
           width: 100%;
       }

       .cart-item-details {
           display: flex;
           flex-direction: column;
       }

       .cart-item h4 {
           margin: 0;
           font-size: 18px;
           margin-bottom: 5px;
           /* Espacio entre el nombre y el precio */
       }

       .cart-item-price {
           margin: 0;
           font-weight: bold;
           padding: 1px;
       }

       .cart-item-quantity {
           margin: 0;
           padding: 1px;
       }

       .cart-item-controls {
           display: flex;
           align-items: center;
           margin-top: 5px;
           /* Espacio entre la cantidad y los controles */
       }

       .cart-item-delete {
           cursor: pointer;
           color: #f00;
           font-size: 20px;
           margin-left: 10px;
       }

       .cart-item-quantity-input {
        text-align: center;
        width: 40px;
       }

       .cart-item-info {
           display: flex;
           justify-content: space-between;
           align-items: center;
           width: 100%;
       }

       .cart-total {
           margin-top: 20px;
           margin-bottom: 10px;
           font-weight: bold;
       }

       /* Estilos para el botón de cierre */
       .close-button {
           cursor: pointer;
           align-self: flex-end;
           font-size: 24px;
           margin-top: -2px;
           /* Mover la X hacia la esquina superior derecha */
       }

       .cart-icon {
           font-size: 24px;
           align-self: flex-start;
           /* Mover el icono a la esquina superior izquierda */
       }

       /* Estilos para el botón de mostrar carrito */
       .cart-toggle-button {
           position: fixed;
           top: 10px;
           right: 10px;
           background-color: #4CAF50;
           color: white;
           border: none;
           padding: 10px 20px;
           text-align: center;
           text-decoration: none;
           display: inline-block;
           font-size: 16px;
           cursor: pointer;
       }

       .confirm-button {
           margin-top: auto;
           /* Centrar el botón al final del panel */
           padding: 10px 30px;
           background-color: #007bff;
           color: white;
           border: none;
           cursor: pointer;
           text-align: center;
           text-decoration: none;
           font-size: 16px;
           border-radius: 5px;
           width: 200px;
           /* Ancho del botón */
           /*align-self: center;*/
           align-self: flex-end;
           /* Centrar horizontalmente */
           margin-top: 10px;
           flex: 1;


       }

       .total-cart {
        margin-bottom: 10px; /* Espacio entre el total y el botón */
    }