Spaces:
Running
Running
| ```html | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Product - ShopFusion Glow</title> | |
| <link rel="icon" type="image/x-icon" href="/static/favicon.ico"> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <script src="https://unpkg.com/feather-icons"></script> | |
| <style> | |
| .glass-card { | |
| backdrop-filter: blur(16px) saturate(180%); | |
| -webkit-backdrop-filter: blur(16px) saturate(180%); | |
| background-color: rgba(255, 255, 255, 0.15); | |
| border-radius: 12px; | |
| border: 1px solid rgba(255, 255, 255, 0.125); | |
| } | |
| .gradient-bg { | |
| background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%); | |
| } | |
| </style> | |
| </head> | |
| <body class="min-h-screen gradient-bg text-gray-800"> | |
| <div class="container mx-auto px-4 py-8"> | |
| <header class="flex justify-between items-center mb-8"> | |
| <a href="/products.html" class="flex items-center space-x-2"> | |
| <div class="w-10 h-10 rounded-full bg-white/20 flex items-center justify-center"> | |
| <i data-feather="arrow-left" class="text-white"></i> | |
| </div> | |
| <h1 class="text-2xl font-bold text-white">Product Details</h1> | |
| </a> | |
| <div class="flex items-center space-x-4"> | |
| <a href="/wishlist.html" class="text-white"> | |
| <i data-feather="heart"></i> | |
| </a> | |
| <a href="/cart.html" class="relative"> | |
| <i data-feather="shopping-cart" class="text-white"></i> | |
| <span class="absolute -top-2 -right-2 bg-white text-blue-600 text-xs font-bold rounded-full w-5 h-5 flex items-center justify-center">3</span> | |
| </a> | |
| </div> | |
| </header> | |
| <div class="glass-card p-4 rounded-xl mb-6"> | |
| <div class="h-64 bg-white/10 rounded-lg mb-4"></div> | |
| <div class="flex justify-between items-start mb-2"> | |
| <h2 class="text-white font-bold text-xl">Premium Headphones</h2> | |
| <span class="bg-white/10 text-white px-3 py-1 rounded-full text-sm">In Stock</span> | |
| </div> | |
| <div class="flex items-center mb-4"> | |
| <div class="flex text-yellow-300"> | |
| <i data-feather="star" class="w-4 h-4 fill-current"></i> | |
| <i data-feather="star" class="w-4 h-4 fill-current"></i> | |
| <i data-feather="star" class="w-4 h-4 fill-current"></i> | |
| <i data-feather="star" class="w-4 h-4 fill-current"></i> | |
| <i data-feather="star" class="w-4 h-4"></i> | |
| </div> | |
| <span class="text-white/70 text-sm ml-2">(42 reviews)</span> | |
| </div> | |
| <p class="text-white/80 mb-6">Noise-cancelling wireless headphones with premium sound quality and 30-hour battery life. Perfect for music lovers and professionals alike.</p> | |
| <div class="mb-6"> | |
| <h3 class="text-white font-bold mb-2">Features:</h3> | |
| <ul class="text-white/70 space-y-2"> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="w-4 h-4 mr-2 text-green-300"></i> | |
| Active Noise Cancellation | |
| </li> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="w-4 h-4 mr-2 text-green-300"></i> | |
| 30-hour battery life | |
| </li> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="w-4 h-4 mr-2 text-green-300"></i> | |
| Bluetooth 5.0 | |
| </li> | |
| <li class="flex items-center"> | |
| <i data-feather="check" class="w-4 h-4 mr-2 text-green-300"></i> | |
| Touch controls | |
| </li> | |
| </ul> | |
| </div> | |
| <div class="flex justify-between items-center mb-6"> | |
| <div> | |
| <span class="text-white/70 text-sm">Price</span> | |
| <div class="flex items-baseline"> | |
| <span class="text-white font-bold text-2xl">$199.99</span> | |
| <span class="text-white/50 text-sm ml-2 line-through">$249.99</span> | |
| </div> | |
| </div> | |
| <div class="flex items-center space-x-2"> | |
| <button class="text-white w-8 h-8 rounded-full bg-white/20 flex items-center justify-center"> | |
| - | |
| </button> | |
| <span class="text-white">1</span> | |
| <button class="text-white w-8 h-8 rounded-full bg-white/20 flex items-center justify-center"> | |
| + | |
| </button> | |
| </div> | |
| </div> | |
| <div class="flex space-x-4"> | |
| <a href="/cart.html" class="flex-1 bg-white text-blue-600 py-3 rounded-full font-bold text-center hover:bg-gray-100 transition"> | |
| Add to Cart | |
| </a> | |
| <a href="/checkout.html" class="flex-1 glass-card py-3 text-white rounded-full font-bold text-center hover:bg-white/10 transition"> | |
| Buy Now | |
| </a> | |
| </div> | |
| </div> | |
| <div class="glass-card p-4 rounded-xl mb-6"> | |
| <h3 class="text-white font-bold mb-4">Product QR Code</h3> | |
| <div class="flex justify-center"> | |
| <div class="bg-white p-4 rounded-lg"> | |
| <div class="grid grid-cols-4 gap-1 w-32 h-32"> | |
| <div class="bg-black"></div><div class="bg-black"></div><div class="bg-black"></div><div class="bg-black"></div> | |
| <div class="bg-black"></div><div class=" |