/* Estilos para el panel lateral del carrito */
.cart-panel {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: #fff;
    box-shadow: -4px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 999;
    padding: 20px;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h4 {
    margin: 0;
}

.cart-header button {
    background-color: #f44336;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.cart-body {
    margin-top: 20px;
    max-height: calc(100% - 60px);
    overflow-y: auto;
}

/* Mostrar el panel */
.cart-panel.show {
    right: 0;
}

#cartToggle {
    cursor: pointer;
}
