Shopping Cart Component
A responsive shopping cart component designed for an e-commerce platform, featuring a 3D design style and a pastel color scheme. It is equipped with multiple interactive elements such as product listings, quantities, and a checkout button, supporting dark theme.
HTML Code
<div class="min-h-screen bg-white dark:bg-gray-800 transition-all p-6 rounded-lg shadow-lg transform hover:scale-105 ease-in-out duration-300">
<h2 class="text-2xl font-semibold text-gray-800 dark:text-gray-100 text-center">Shopping Cart</h2>
<div class="mt-4">
<div class="space-y-4">
<div class="flex items-center justify-between p-4 bg-gray-100 dark:bg-gray-700 rounded-lg shadow-md">
<img src="https://picsum.photos/80/80" alt="Product Image" class="rounded-lg shadow-lg" />
<div class="flex-1 mx-4">
<h3 class="text-lg font-medium text-gray-900 dark:text-gray-200">Product Title</h3>
<p class="text-sm text-gray-600 dark:text-gray-300">$19.99</p>
</div>
<div class="flex items-center">
<button class="px-3 py-1 text-sm bg-blue-500 text-white rounded hover:bg-blue-600 dark:bg-blue-700 dark:hover:bg-blue-800 ease-in-out duration-200">+</button>
<span class="mx-2 text-gray-800 dark:text-gray-100">1</span>
<button class="px-3 py-1 text-sm bg-red-500 text-white rounded hover:bg-red-600 dark:bg-red-700 dark:hover:bg-red-800 ease-in-out duration-200">-</button>
</div>
</div>
<div class="flex items-center justify-between p-4 bg-gray-100 dark:bg-gray-700 rounded-lg shadow-md">
<img src="https://picsum.photos/80/80?random=1" alt="Product Image" class="rounded-lg shadow-lg" />
<div class="flex-1 mx-4">
<h3 class="text-lg font-medium text-gray-900 dark:text-gray-200">Another Product</h3>
<p class="text-sm text-gray-600 dark:text-gray-300">$29.99</p>
</div>
<div class="flex items-center">
<button class="px-3 py-1 text-sm bg-blue-500 text-white rounded hover:bg-blue-600 dark:bg-blue-700 dark:hover:bg-blue-800 ease-in-out duration-200">+</button>
<span class="mx-2 text-gray-800 dark:text-gray-100">1</span>
<button class="px-3 py-1 text-sm bg-red-500 text-white rounded hover:bg-red-600 dark:bg-red-700 dark:hover:bg-red-800 ease-in-out duration-200">-</button>
</div>
</div>
</div>
<div class="mt-6 flex justify-between items-center p-4 bg-gray-200 dark:bg-gray-700 rounded-lg shadow-lg">
<span class="text-xl font-semibold text-gray-800 dark:text-gray-100">Total</span>
<span class="text-xl font-semibold text-gray-800 dark:text-gray-100">$49.98</span>
</div>
<div class="mt-4">
<button class="w-full bg-green-500 text-white text-lg font-semibold rounded-lg py-2 hover:bg-green-600 dark:bg-green-700 dark:hover:bg-green-800 transition duration-200">
Checkout
</button>
</div>
</div>
</div>
Related Components
Shopping Cart Component
A 3D designed shopping cart component with responsive effects and dark theme support using Tailwind CSS.
Shopping Cart Component
A responsive shopping cart component with a skeuomorphic design, featuring dark theme support and random placeholder images.
Shopping Cart Component
Shopping Cart Component with Material Design, Monochromatic color scheme, and Moderate complexity for E-commerce. Responsive design with dark theme support using Tailwind CSS.