-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcart.html
More file actions
247 lines (231 loc) · 13.7 KB
/
Copy pathcart.html
File metadata and controls
247 lines (231 loc) · 13.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Shopping Cart | LASKA</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Inter:wght@300;400;600;700;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body class="bg-gray-50">
<header class="main-header sticky-header header-with-top">
<div class="container">
<nav class="navbar">
<a class="navbar-brand company-logo" href="index.html">LASKA</a>
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="newarrivals.html">New Arrivals</a>
</li>
<li class="nav-item">
<a class="nav-link" href="collection.html">Collection</a>
</li>
<li class="nav-item">
<a class="nav-link" href="accessories.html">Accessories</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li>
</ul>
<div class="header-icons">
<button class="text-xl text-gray-800 hover:text-black transition" aria-label="Search">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="w-5 h-5">
<circle cx="11" cy="11" r="8"></circle>
<path d="m21 21-4.3-4.3"></path>
</svg>
</button>
<a href="cart.html" aria-label="Shopping Cart" class="text-xl text-gray-800 hover:text-black transition cart-icon">
🛒
<span class="cart-count">3</span>
</a>
</div>
<button id="menu-toggle" class="menu-toggle" aria-expanded="false" aria-controls="mobile-nav">
☰
</button>
</nav>
</div>
<nav id="mobile-nav" aria-label="Mobile navigation">
<div class="flex flex-col">
<a href="index.html" class="mobile-nav-link">Home</a>
<a href="newarrivals.html" class="mobile-nav-link">New Arrivals</a>
<a href="collection.html" class="mobile-nav-link">Collection</a>
<a href="accessories.html" class="mobile-nav-link">Accessories</a>
<a href="contact.html" class="mobile-nav-link">Contact</a>
<a href="cart.html" class="mobile-nav-link active">Shopping Cart</a>
</div>
</nav>
</header>
<main>
<!-- Breadcrumb -->
<section class="breadcrumb">
<div class="breadcrumb-container">
<div class="breadcrumb-links">
<a href="index.html">Home</a>
<span>/</span>
<span>Shopping Cart</span>
</div>
</div>
</section>
<!-- Cart Section -->
<section class="cart-section">
<div class="container">
<h1 class="cart-title">Shopping Cart</h1>
<div class="cart-container">
<!-- Cart Items -->
<div class="cart-items-container">
<div class="cart-items">
<!-- Cart Item 1 -->
<div class="cart-item">
<img src="https://static.zara.net/assets/public/4042/568f/cc4647a68f29/7694d8ac9a49/01255531800-p/01255531800-p.jpg?ts=1763111046084&w=404"
alt="High-Waisted Satin Effect Pants" class="item-image"
onerror="this.onerror=null; this.src='https://placehold.co/300x400/c4a78a/1a1a1a?text=Product+Image'">
<div class="item-details">
<h3 class="item-name">High-Waisted Satin Effect Pants</h3>
<p class="item-price">$79.90</p>
<div class="item-options">
<span class="item-option">Color: Black</span>
<span class="item-option">Size: M</span>
</div>
<div class="item-controls">
<div class="quantity-control">
<button class="quantity-btn minus-btn">-</button>
<input type="text" class="quantity-input" value="1" readonly>
<button class="quantity-btn plus-btn">+</button>
</div>
<button class="remove-btn">Remove</button>
</div>
</div>
</div>
<!-- Cart Item 2 -->
<div class="cart-item">
<img src="https://static.zara.net/assets/public/ee65/4759/82064ecfadec/f5c443306887/03431636800-p/03431636800-p.jpg?ts=1763111046687&w=404"
alt="High Neck T-Shirt" class="item-image"
onerror="this.onerror=null; this.src='https://placehold.co/300x400/c4a78a/1a1a1a?text=Product+Image'">
<div class="item-details">
<h3 class="item-name">High Neck T-Shirt</h3>
<p class="item-price">$29.90</p>
<div class="item-options">
<span class="item-option">Color: White</span>
<span class="item-option">Size: S</span>
</div>
<div class="item-controls">
<div class="quantity-control">
<button class="quantity-btn minus-btn">-</button>
<input type="text" class="quantity-input" value="2" readonly>
<button class="quantity-btn plus-btn">+</button>
</div>
<button class="remove-btn">Remove</button>
</div>
</div>
</div>
<!-- Cart Item 3 -->
<div class="cart-item">
<img src="https://static.zara.net/assets/public/cf28/b932/83484411919b/dbd022bfa6f2/03152134800-p/03152134800-p.jpg?ts=1763111046272&w=404"
alt="Contrast Bow Bustier Top" class="item-image"
onerror="this.onerror=null; this.src='https://placehold.co/300x400/c4a78a/1a1a1a?text=Product+Image'">
<div class="item-details">
<h3 class="item-name">Contrast Bow Bustier Top</h3>
<p class="item-price">$49.90</p>
<div class="item-options">
<span class="item-option">Color: Beige</span>
<span class="item-option">Size: M</span>
</div>
<div class="item-controls">
<div class="quantity-control">
<button class="quantity-btn minus-btn">-</button>
<input type="text" class="quantity-input" value="1" readonly>
<button class="quantity-btn plus-btn">+</button>
</div>
<button class="remove-btn">Remove</button>
</div>
</div>
</div>
</div>
</div>
<!-- Order Summary -->
<div class="order-summary">
<h2 class="summary-title">Order Summary</h2>
<div class="summary-row">
<span>Subtotal (3 items)</span>
<span>$159.70</span>
</div>
<div class="summary-row">
<span>Shipping</span>
<span>$9.95</span>
</div>
<div class="summary-row">
<span>Tax</span>
<span>$14.36</span>
</div>
<div class="summary-row summary-total">
<span>Total</span>
<span>$184.01</span>
</div>
<button class="checkout-btn">Proceed to Checkout</button>
<a href="collection.html" class="continue-shopping">Continue Shopping</a>
</div>
</div>
</div>
</section>
<!-- Recently Viewed -->
<section class="recently-viewed">
<h2 class="recently-viewed-title">You Might Also Like</h2>
<div class="product-grid">
<!-- Product 1 -->
<div class="product-card">
<img src="https://static.zara.net/assets/public/75a7/5550/361f46b992ac/a19723ae0dd1/04764223702-a1/04764223702-a1.jpg?ts=1763119823393&w=516"
alt="Cropped Cashmere Knit" class="product-image">
<div class="product-info">
<h3 class="product-name">Cropped Cashmere Knit</h3>
<p class="product-price">$159.90</p>
<a href="#" class="product-btn">Add to Cart</a>
</div>
</div>
<!-- Product 2 -->
<div class="product-card">
<img src="https://static.zara.net/assets/public/d7b0/002a/c63c421cbf5f/16097c53ca3e/05320725721-a4/05320725721-a4.jpg?ts=1763123453436&w=516"
alt="Textured Tulle Gown" class="product-image"
onerror="this.onerror=null; this.src='https://placehold.co/400x533/c4a78a/1a1a1a?text=Evening+Gown'">
<div class="product-info">
<h3 class="product-name">Textured Tulle Gown</h3>
<p class="product-price">$399.90</p>
<a href="#" class="product-btn">Add to Cart</a>
</div>
</div>
<!-- Product 3 -->
<div class="product-card">
<img src="https://static.zara.net/assets/public/8b3c/e9f2/fb3544c4a539/ecbf8a1492b8/04661185251-a1/04661185251-a1.jpg?ts=1763122331116&w=516"
alt="Double-Breasted Linen Trench" class="product-image"
onerror="this.onerror=null; this.src='https://placehold.co/400x533/c4a78a/1a1a1a?text=Trench+Coat'">
<div class="product-info">
<h3 class="product-name">Double-Breasted Linen Trench</h3>
<p class="product-price">$249.90</p>
<a href="#" class="product-btn">Add to Cart</a>
</div>
</div>
<!-- Product 4 -->
<div class="product-card">
<img src="https://static.zara.net/assets/public/15bf/7dab/cb3e4f0e906d/55385b604b52/T9483175915-p/T9483175915-p.jpg?ts=1763025792153&w=404"
alt="Ribbed Funnel Neck Top" class="product-image"
onerror="this.onerror=null; this.src='https://placehold.co/400x533/c4a78a/1a1a1a?text=High-Neck+Top'">
<div class="product-info">
<h3 class="product-name">Ribbed Funnel Neck Top</h3>
<p class="product-price">$59.90</p>
<a href="#" class="product-btn">Add to Cart</a>
</div>
</div>
</div>
</section>
</main>
<footer class="main-footer bg-gray-900 text-white text-center py-10 px-4">
<p class="text-xs uppercase tracking-widest mb-1">LASKA ATELIER | Founded 2025</p>
<p class="text-2xl font-bold tracking-widest mb-4 font-header">LADYCHKA THE FOUNDER</p>
<p class="text-sm max-w-xl mx-auto mb-6">Sign up for exclusive access to pre-sales and events. We honor minimalism, quality, and sustainable design.</p>
<p class="text-xs text-gray-400">© 2025 LASKA FASHION. All rights reserved. | <a href="#privacy" class="hover:text-white transition">Terms & Conditions</a></p>
</footer>
<script src="script.js"></script>
</body>
</html>