-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproduct.html
More file actions
95 lines (87 loc) · 4.15 KB
/
Copy pathproduct.html
File metadata and controls
95 lines (87 loc) · 4.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ceremonial Grade Matcha | Kyoto Mist</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="nav-container">
<nav class="nav-left">
<a href="index.html">Webshop</a>
<a href="#">Everyday Rituals</a>
<a href="#">About Us</a>
</nav>
<a href="index.html" class="brand serif">KYOTO MIST</a>
<div class="nav-right">
<svg onclick="toggleCart()" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M6 2L3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4z"></path><line x1="3" y1="6" x2="21" y2="6"></line><path d="M16 10a4 4 0 0 1-8 0"></path></svg>
</div>
</div>
</header>
<div class="product-detail-container">
<div class="pd-image">
<img class="product-img-large" src="https://images.unsplash.com/photo-1563822249548-9a72b6353cd1?q=80&w=1000" alt="Matcha Detail">
</div>
<div class="pd-info product-info">
<div style="max-width: 500px;">
<span class="pd-price" style="float: right;">
<p>$39.00 USD</p>
</span>
<h1 class="pd-title serif">Ceremonial Grade <br>Matcha Tin</h1>
<p style="font-style: italic; margin-bottom: 1rem; color: #444;">Daily wellness for your skin and soul.</p>
<p class="pd-desc">
Harvested in the first flush of spring, our ceremonial grade matcha offers a smooth, creamy texture with no bitterness. Packed with antioxidants to provide calm energy throughout your day.
<br><br>
94% Organic - 100% Natural from Uji.
</p>
<button class="add-to-cart-btn" onclick="addToCart('Ceremonial Grade Matcha', 39.00)">Add to Cart — $39.00</button>
<div class="accordion">
<div class="accordion-item">
<div class="accordion-header" onclick="toggleAccordion(this)">
<span>Description</span>
<span>+</span>
</div>
<div class="accordion-content">
<p>Net weight: 30g (Approx. 15 servings).<br>Notes: Umami, Sweet Grass, Creamy.<br>Ideally used for Koicha (thick tea) or Usucha (thin tea).</p>
</div>
</div>
<div class="accordion-item">
<div class="accordion-header" onclick="toggleAccordion(this)">
<span>Ingredients</span>
<span>+</span>
</div>
<div class="accordion-content">
<p>100% Pure Japanese Green Tea Powder (Camellia Sinensis).<br>Origin: Uji, Kyoto Prefecture.</p>
</div>
</div>
<div class="accordion-item">
<div class="accordion-header" onclick="toggleAccordion(this)">
<span>Shipping</span>
<span>+</span>
</div>
<div class="accordion-content">
<p>Free shipping on orders over $50.<br>Standard delivery: 3-5 business days.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<footer>
<div class="footer-top">
<div class="newsletter">
<h3 class="serif">KYOTO MIST</h3>
<p>Modern rituals for a balanced life.</p>
</div>
</div>
<div style="border-top: 1px solid #ddd; padding-top: 2rem; font-size: 0.8rem;">
<span>© 2025 KYOTO MIST</span>
</div>
</footer>
<div id="cart-drawer-placeholder"></div>
<script src="script.js"></script>
<script src="script-product-simple.js"></script>
</body>
</html>