CozyCoCart — "Cozy" means comfortable and "Cart" refers to your online shopping basket. Together, it reflects a seamless, user-friendly, and cozy shopping experience. This lightweight eCommerce platform is developed using HTML, CSS, and Vanilla JavaScript, focused on learning and implementing data manipulation and LocalStorage CRUD operations.
- 🛒 Add products to cart
- ✏️ Update product quantity
- 💾 Persistent data storage using LocalStorage
- 🔐 Login and Sign Up (simulated auth via LocalStorage)
- 🔍 Product search functionality
- 👨💼 Admin dashboard to manage products
- 💸 eWallet option for payment
- 🔄 Real-time DOM updates
- 📱 Fully responsive design
- HTML5
- CSS3 (UI Design)
- JavaScript (ES6+)
- LocalStorage for data persistence
- FontAwesome Icons
cozycocart/
├── css/ # Styling files
├── img/ # Image assets
├── js/ # JavaScript logic
├── admin.html # Admin dashboard
├── basket-page.html # Payment page (user info + eWallet)
├── category-page.html # Categories listing
├── homepage.html # Main landing page
├── index.html # Entry point or login/signup redirect
├── product-info.html # Product detail view
├── received-items.html # Orders, Cart, eWallet, Profile
└── readme.md # Project documentation
-
DOM Manipulation
-
Event Listeners
-
LocalStorage CRUD:
- Create – Add new products, users, cart items
- Read – Retrieve data for users, cart, and products
- Update – Modify eWallet balance, quantities, etc.
- Delete – Admin product removal or item clearing
-
Data structures: Arrays, Objects, JSON
-
Auth simulation with LocalStorage
- Clone the Repository
git clone https://github.com/yourusername/cozycocart.git
cd cozycocart- Run Locally
Just open index.html in your browser, or use a live server extension for better routing.
- Explore Pages
index.html: Redirect to login/signuphomepage.html: View featured productsbasket-page.html: Payment page (user info + eWallet)product-info.html: Product detailscategory-page.html: Categoriesreceived-items.html: Orders, Cart, eWallet, and Profileadmin.html: Admin dashboard
Created with 🤍 by the three founders of CozyCoCart.
This project is open-sourced under the MIT License.















