.cart-sidebar {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  height: 100%;
  background: #fff;
  z-index: 9999;
  box-shadow: -5px 0 20px rgba(0,0,0,0.15);
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}

.cart-sidebar.active {
  right: 0;
}

.cart-sidebar-header {
  padding: 20px;
  font-weight: bold;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
}

.cart-sidebar-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.cart-item {
  display: flex;
  margin-bottom: 15px;
}

.cart-item img {
  width: 60px;
  margin-right: 10px;
}

.cart-item-title {
  font-size: 14px;
}

.cart-item-actions {
  display: flex;
  gap: 5px;
  margin-top: 5px;
}

.cart-sidebar-footer {
  border-top: 1px solid #eee;
  padding: 20px;
}
