thorpz commited on
Commit
61cfbd4
·
verified ·
1 Parent(s): 7f778f3

undefined - Initial Deployment

Browse files
Files changed (6) hide show
  1. README.md +5 -3
  2. about.html +291 -0
  3. faq.html +120 -0
  4. index.html +290 -18
  5. product.html +390 -0
  6. prompts.txt +0 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Callia
3
- emoji: 📚
4
  colorFrom: blue
5
  colorTo: purple
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: callia
3
+ emoji: 🐳
4
  colorFrom: blue
5
  colorTo: purple
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
about.html ADDED
@@ -0,0 +1,291 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>ELMA | About</title>
7
+ <meta name="description" content="Discover the ancient tradition of Greek mastic gum from Chios and the story behind ELMA.">
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
10
+ <script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
11
+ <script src="https://unpkg.com/feather-icons"></script>
12
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
13
+ <style>
14
+ @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');
15
+ body {
16
+ font-family: 'Inter', sans-serif;
17
+ }
18
+ .font-serif {
19
+ font-family: 'Playfair Display', serif;
20
+ }
21
+ .about-hero {
22
+ background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('http://static.photos/travel/1200x630/7') center/cover no-repeat;
23
+ }
24
+ .history-timeline::before {
25
+ content: '';
26
+ position: absolute;
27
+ top: 0;
28
+ bottom: 0;
29
+ left: 50%;
30
+ transform: translateX(-50%);
31
+ width: 2px;
32
+ background-color: #f97316;
33
+ }
34
+ @media (max-width: 768px) {
35
+ .history-timeline::before {
36
+ left: 20px;
37
+ }
38
+ }
39
+ </style>
40
+ </head>
41
+ <body class="bg-white text-slate-700">
42
+ <!-- Navigation -->
43
+ <nav class="bg-white border-b border-gray-100 fixed w-full z-50">
44
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
45
+ <div class="flex justify-between h-16">
46
+ <div class="flex items-center">
47
+ <a href="index.html" class="flex items-center">
48
+ <span class="font-serif text-xl font-bold text-dark">Callia</span>
49
+ </a>
50
+ </div>
51
+ <div class="hidden md:flex items-center space-x-8">
52
+ <a href="index.html" class="text-dark hover:text-primary transition">Home</a>
53
+ <a href="product.html" class="text-dark hover:text-primary transition">Product</a>
54
+ <a href="about.html" class="text-dark hover:text-primary transition">About</a>
55
+ <a href="faq.html" class="text-dark hover:text-primary transition">FAQ</a>
56
+ <a href="product.html" class="bg-primary text-white px-4 py-2 rounded-full hover:bg-opacity-90 transition">Shop Now</a>
57
+ </div>
58
+ <div class="md:hidden flex items-center">
59
+ <button id="mobile-menu-button" class="text-dark">
60
+ <i data-feather="menu"></i>
61
+ </button>
62
+ </div>
63
+ </div>
64
+ </div>
65
+ <!-- Mobile menu -->
66
+ <div id="mobile-menu" class="hidden md:hidden bg-white border-t border-gray-100 py-4 px-4">
67
+ <a href="index.html" class="block py-2 text-dark hover:text-primary transition">Home</a>
68
+ <a href="product.html" class="block py-2 text-dark hover:text-primary transition">Product</a>
69
+ <a href="about.html" class="block py-2 text-dark hover:text-primary transition">About</a>
70
+ <a href="faq.html" class="block py-2 text-dark hover:text-primary transition">FAQ</a>
71
+ <a href="product.html" class="mt-2 inline-block bg-primary text-white px-4 py-2 rounded-full hover:bg-opacity-90 transition">Shop Now</a>
72
+ </div>
73
+ </nav>
74
+
75
+ <!-- Hero Section -->
76
+ <section class="about-hero text-white pt-24 pb-16 md:pt-32 md:pb-24 flex items-center">
77
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
78
+ <h1 class="font-serif text-4xl md:text-5xl font-bold mb-6" data-aos="fade-up">Our Story</h1>
79
+ <p class="text-xl max-w-2xl mx-auto" data-aos="fade-up" data-aos-delay="100">Discover the ancient tradition of Greek mastic gum from the island of Chios</p>
80
+ </div>
81
+ </section>
82
+
83
+ <!-- About Content -->
84
+ <section class="py-16 bg-white">
85
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
86
+ <div class="grid md:grid-cols-2 gap-12 items-center mb-16">
87
+ <div data-aos="fade-right">
88
+ <h2 class="font-serif text-3xl md:text-4xl font-bold text-dark mb-6">The Ancient Secret of Chios</h2>
89
+ <p class="text-slate-600 mb-4">For over 2,500 years, the unique mastic trees of Chios have produced a precious resin known as mastic gum. This natural treasure was so valued in ancient times that it was worth its weight in gold.</p>
90
+ <p class="text-slate-600 mb-4">The mastic trees grow exclusively in the southern part of Chios, where the combination of volcanic soil and Mediterranean climate creates the perfect conditions for this remarkable substance.</p>
91
+ <p class="text-slate-600">ELMA brings you this ancient wellness secret in its purest form, directly from the mastic villages of Chios where harvesting techniques have been passed down through generations.</p>
92
+ </div>
93
+ <div class="flex justify-center" data-aos="fade-left">
94
+ <img src="http://static.photos/travel/640x360/8" alt="Chios Island" class="rounded-lg shadow-xl w-full max-w-md">
95
+ </div>
96
+ </div>
97
+
98
+ <div class="grid md:grid-cols-2 gap-12 items-center mb-16">
99
+ <div class="order-2 md:order-1 flex justify-center" data-aos="fade-right">
100
+ <img src="http://static.photos/food/640x360/9" alt="Harvesting Mastic" class="rounded-lg shadow-xl w-full max-w-md">
101
+ </div>
102
+ <div class="order-1 md:order-2" data-aos="fade-left">
103
+ <h2 class="font-serif text-3xl md:text-4xl font-bold text-dark mb-6">The Harvesting Process</h2>
104
+ <p class="text-slate-600 mb-4">Mastic harvesting is a labor of love that requires precision and patience. Each summer, farmers make small incisions in the bark of the mastic trees, allowing the resin to slowly seep out.</p>
105
+ <p class="text-slate-600 mb-4">Over 15-20 days, the droplets of resin harden into "tears" which are then carefully collected by hand. This traditional method ensures the highest quality mastic while preserving the health of the trees.</p>
106
+ <p class="text-slate-600">The collected mastic is then cleaned and sorted by size and quality, with only the finest pieces selected for ELMA products.</p>
107
+ </div>
108
+ </div>
109
+ </div>
110
+ </section>
111
+
112
+ <!-- History Timeline -->
113
+ <section class="py-16 bg-gray-50">
114
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
115
+ <div class="text-center mb-16">
116
+ <h2 class="font-serif text-3xl md:text-4xl font-bold text-dark mb-4">A Journey Through Time</h2>
117
+ <p class="max-w-2xl mx-auto text-slate-600">The remarkable history of mastic gum</p>
118
+ </div>
119
+
120
+ <div class="relative history-timeline">
121
+ <!-- Timeline Item -->
122
+ <div class="mb-12 md:mb-16 relative" data-aos="fade-up">
123
+ <div class="md:flex items-center">
124
+ <div class="md:w-1/2 md:pr-12 md:text-right mb-4 md:mb-0">
125
+ <h3 class="font-serif text-xl font-bold text-dark">Ancient Times</h3>
126
+ </div>
127
+ <div class="hidden md:block w-10 h-10 rounded-full bg-primary border-4 border-white mx-auto flex-shrink-0 z-10"></div>
128
+ <div class="md:w-1/2 md:pl-12">
129
+ <p class="text-slate-600">Mastic gum was used by ancient Greeks as a chewing gum and digestive aid. Hippocrates prescribed it for various ailments.</p>
130
+ </div>
131
+ </div>
132
+ </div>
133
+
134
+ <!-- Timeline Item -->
135
+ <div class="mb-12 md:mb-16 relative" data-aos="fade-up" data-aos-delay="100">
136
+ <div class="md:flex items-center">
137
+ <div class="md:w-1/2 md:pr-12 md:text-right mb-4 md:mb-0 order-1">
138
+ <p class="text-slate-600">During the Byzantine Empire, mastic was so valuable that its theft was punishable by death. The Genoese later fortified Chios to protect their monopoly.</p>
139
+ </div>
140
+ <div class="hidden md:block w-10 h-10 rounded-full bg-primary border-4 border-white mx-auto flex-shrink-0 z-10"></div>
141
+ <div class="md:w-1/2 md:pl-12 order-3">
142
+ <h3 class="font-serif text-xl font-bold text-dark">Middle Ages</h3>
143
+ </div>
144
+ </div>
145
+ </div>
146
+
147
+ <!-- Timeline Item -->
148
+ <div class="mb-12 md:mb-16 relative" data-aos="fade-up" data-aos-delay="200">
149
+ <div class="md:flex items-center">
150
+ <div class="md:w-1/2 md:pr-12 md:text-right mb-4 md:mb-0">
151
+ <h3 class="font-serif text-xl font-bold text-dark">Ottoman Era</h3>
152
+ </div>
153
+ <div class="hidden md:block w-10 h-10 rounded-full bg-primary border-4 border-white mx-auto flex-shrink-0 z-10"></div>
154
+ <div class="md:w-1/2 md:pl-12">
155
+ <p class="text-slate-600">The Ottoman Sultans prized mastic for its flavor and medicinal properties. It became a luxury item in harems and palaces across the empire.</p>
156
+ </div>
157
+ </div>
158
+ </div>
159
+
160
+ <!-- Timeline Item -->
161
+ <div class="mb-12 md:mb-16 relative" data-aos="fade-up" data-aos-delay="300">
162
+ <div class="md:flex items-center">
163
+ <div class="md:w-1/2 md:pr-12 md:text-right mb-4 md:mb-0 order-1">
164
+ <p class="text-slate-600">Scientific studies confirm mastic's antibacterial properties and benefits for digestive health, sparking renewed global interest.</p>
165
+ </div>
166
+ <div class="hidden md:block w-10 h-10 rounded-full bg-primary border-4 border-white mx-auto flex-shrink-0 z-10"></div>
167
+ <div class="md:w-1/2 md:pl-12 order-3">
168
+ <h3 class="font-serif text-xl font-bold text-dark">Modern Rediscovery</h3>
169
+ </div>
170
+ </div>
171
+ </div>
172
+
173
+ <!-- Timeline Item -->
174
+ <div class="relative" data-aos="fade-up" data-aos-delay="400">
175
+ <div class="md:flex items-center">
176
+ <div class="md:w-1/2 md:pr-12 md:text-right mb-4 md:mb-0">
177
+ <h3 class="font-serif text-xl font-bold text-dark">Today</h3>
178
+ </div>
179
+ <div class="hidden md:block w-10 h-10 rounded-full bg-primary border-4 border-white mx-auto flex-shrink-0 z-10"></div>
180
+ <div class="md:w-1/2 md:pl-12">
181
+ <p class="text-slate-600">ELMA brings this ancient wellness secret to the modern world, connecting you directly with the traditional harvesters of Chios.</p>
182
+ </div>
183
+ </div>
184
+ </div>
185
+ </div>
186
+ </div>
187
+ </section>
188
+
189
+ <!-- Our Mission -->
190
+ <section class="py-16 bg-white">
191
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
192
+ <div class="text-center mb-16">
193
+ <h2 class="font-serif text-3xl md:text-4xl font-bold text-dark mb-4">Our Mission</h2>
194
+ <p class="max-w-2xl mx-auto text-slate-600">Why we do what we do</p>
195
+ </div>
196
+ <div class="grid md:grid-cols-3 gap-8">
197
+ <div class="bg-gray-50 p-8 rounded-xl" data-aos="fade-up">
198
+ <div class="w-12 h-12 bg-primary bg-opacity-10 rounded-full flex items-center justify-center mb-4">
199
+ <i data-feather="globe" class="text-primary"></i>
200
+ </div>
201
+ <h3 class="font-bold text-lg mb-2">Preserve Tradition</h3>
202
+ <p class="text-slate-600">We partner directly with family growers in Chios to sustain this ancient craft and support the local economy.</p>
203
+ </div>
204
+ <div class="bg-gray-50 p-8 rounded-xl" data-aos="fade-up" data-aos-delay="100">
205
+ <div class="w-12 h-12 bg-primary bg-opacity-10 rounded-full flex items-center justify-center mb-4">
206
+ <i data-feather="award" class="text-primary"></i>
207
+ </div>
208
+ <h3 class="font-bold text-lg mb-2">Ensure Quality</h3>
209
+ <p class="text-slate-600">Every piece of ELMA mastic gum is hand-selected for purity and quality, meeting the highest standards.</p>
210
+ </div>
211
+ <div class="bg-gray-50 p-8 rounded-xl" data-aos="fade-up" data-aos-delay="200">
212
+ <div class="w-12 h-12 bg-primary bg-opacity-10 rounded-full flex items-center justify-center mb-4">
213
+ <i data-feather="heart" class="text-primary"></i>
214
+ </div>
215
+ <h3 class="font-bold text-lg mb-2">Promote Wellness</h3>
216
+ <p class="text-slate-600">We're passionate about sharing the natural benefits of mastic gum with the world as a healthier alternative to conventional chewing gum.</p>
217
+ </div>
218
+ </div>
219
+ </div>
220
+ </section>
221
+
222
+ <!-- CTA Section -->
223
+ <section class="py-16 bg-primary text-white">
224
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
225
+ <h2 class="font-serif text-3xl md:text-4xl font-bold mb-6">Experience Ancient Greek Wellness</h2>
226
+ <p class="max-w-2xl mx-auto mb-8 text-primary-100">Join thousands who have discovered the benefits of authentic Chios mastic gum.</p>
227
+ <a href="product.html" class="inline-block bg-white text-primary px-8 py-3 rounded-full hover:bg-opacity-90 transition font-medium">Shop ELMA Now</a>
228
+ </div>
229
+ </section>
230
+
231
+ <!-- Footer -->
232
+ <footer class="bg-dark text-white py-12">
233
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
234
+ <div class="grid md:grid-cols-4 gap-8">
235
+ <div>
236
+ <h3 class="font-serif text-xl font-bold mb-4">Callia</h3>
237
+ <p class="text-slate-300">Authentic Greek mastic gum from the island of Chios. Natural wellness in every chew.</p>
238
+ </div>
239
+ <div>
240
+ <h4 class="font-medium mb-4">Shop</h4>
241
+ <ul class="space-y-2">
242
+ <li><a href="product.html" class="text-slate-300 hover:text-white transition">All Products</a></li>
243
+ <li><a href="product.html" class="text-slate-300 hover:text-white transition">Single Pack</a></li>
244
+ <li><a href="product.html" class="text-slate-300 hover:text-white transition">Three Pack</a></li>
245
+ <li><a href="product.html" class="text-slate-300 hover:text-white transition">Subscription</a></li>
246
+ </ul>
247
+ </div>
248
+ <div>
249
+ <h4 class="font-medium mb-4">About</h4>
250
+ <ul class="space-y-2">
251
+ <li><a href="about.html" class="text-slate-300 hover:text-white transition">Our Story</a></li>
252
+ <li><a href="about.html" class="text-slate-300 hover:text-white transition">Mastic Gum</a></li>
253
+ <li><a href="faq.html" class="text-slate-300 hover:text-white transition">FAQ</a></li>
254
+ <li><a href="#" class="text-slate-300 hover:text-white transition">Contact</a></li>
255
+ </ul>
256
+ </div>
257
+ <div>
258
+ <h4 class="font-medium mb-4">Connect</h4>
259
+ <div class="flex space-x-4">
260
+ <a href="#" class="text-slate-300 hover:text-white transition"><i data-feather="instagram"></i></a>
261
+ <a href="#" class="text-slate-300 hover:text-white transition"><i data-feather="facebook"></i></a>
262
+ <a href="#" class="text-slate-300 hover:text-white transition"><i data-feather="twitter"></i></a>
263
+ </div>
264
+ </div>
265
+ </div>
266
+ <div class="border-t border-slate-700 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center">
267
+ <p class="text-slate-400">© 2023 ELMA. All rights reserved.</p>
268
+ <div class="flex space-x-6 mt-4 md:mt-0">
269
+ <a href="#" class="text-slate-400 hover:text-white transition">Privacy Policy</a>
270
+ <a href="#" class="text-slate-400 hover:text-white transition">Terms of Service</a>
271
+ </div>
272
+ </div>
273
+ </div>
274
+ </footer>
275
+
276
+ <script>
277
+ AOS.init({
278
+ duration: 800,
279
+ easing: 'ease-in-out',
280
+ once: true
281
+ });
282
+ feather.replace();
283
+
284
+ // Mobile menu toggle
285
+ document.getElementById('mobile-menu-button').addEventListener('click', function() {
286
+ const menu = document.getElementById('mobile-menu');
287
+ menu.classList.toggle('hidden');
288
+ });
289
+ </script>
290
+ </body>
291
+ </html>
faq.html ADDED
@@ -0,0 +1,120 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>ELMA | FAQ</title>
7
+ <meta name="description" content="Frequently asked questions about ELMA's authentic Greek mastic gum from Chios.">
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
10
+ <script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
11
+ <script src="https://unpkg.com/feather-icons"></script>
12
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
13
+ <style>
14
+ @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');
15
+ body {
16
+ font-family: 'Inter', sans-serif;
17
+ }
18
+ .font-serif {
19
+ font-family: 'Playfair Display', serif;
20
+ }
21
+ .faq-item {
22
+ transition: all 0.3s ease;
23
+ }
24
+ .faq-item.active .faq-answer {
25
+ max-height: 500px;
26
+ opacity: 1;
27
+ padding-top: 1rem;
28
+ }
29
+ .faq-item.active .faq-question i {
30
+ transform: rotate(180deg);
31
+ }
32
+ .faq-answer {
33
+ max-height: 0;
34
+ opacity: 0;
35
+ overflow: hidden;
36
+ transition: all 0.3s ease;
37
+ }
38
+ </style>
39
+ </head>
40
+ <body class="bg-white text-slate-700">
41
+ <!-- Navigation -->
42
+ <nav class="bg-white border-b border-gray-100 fixed w-full z-50">
43
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
44
+ <div class="flex justify-between h-16">
45
+ <div class="flex items-center">
46
+ <a href="index.html" class="flex items-center">
47
+ <span class="font-serif text-xl font-bold text-dark">Callia</span>
48
+ </a>
49
+ </div>
50
+ <div class="hidden md:flex items-center space-x-8">
51
+ <a href="index.html" class="text-dark hover:text-primary transition">Home</a>
52
+ <a href="product.html" class="text-dark hover:text-primary transition">Product</a>
53
+ <a href="about.html" class="text-dark hover:text-primary transition">About</a>
54
+ <a href="faq.html" class="text-dark hover:text-primary transition">FAQ</a>
55
+ <a href="product.html" class="bg-primary text-white px-4 py-2 rounded-full hover:bg-opacity-90 transition">Shop Now</a>
56
+ </div>
57
+ <div class="md:hidden flex items-center">
58
+ <button id="mobile-menu-button" class="text-dark">
59
+ <i data-feather="menu"></i>
60
+ </button>
61
+ </div>
62
+ </div>
63
+ </div>
64
+ <!-- Mobile menu -->
65
+ <div id="mobile-menu" class="hidden md:hidden bg-white border-t border-gray-100 py-4 px-4">
66
+ <a href="index.html" class="block py-2 text-dark hover:text-primary transition">Home</a>
67
+ <a href="product.html" class="block py-2 text-dark hover:text-primary transition">Product</a>
68
+ <a href="about.html" class="block py-2 text-dark hover:text-primary transition">About</a>
69
+ <a href="faq.html" class="block py-2 text-dark hover:text-primary transition">FAQ</a>
70
+ <a href="product.html" class="mt-2 inline-block bg-primary text-white px-4 py-2 rounded-full hover:bg-opacity-90 transition">Shop Now</a>
71
+ </div>
72
+ </nav>
73
+
74
+ <!-- Hero Section -->
75
+ <section class="pt-24 pb-16 md:pt-32 md:pb-24 bg-gray-50">
76
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
77
+ <h1 class="font-serif text-4xl md:text-5xl font-bold text-dark mb-6" data-aos="fade-up">Frequently Asked Questions</h1>
78
+ <p class="text-lg text-slate-600 max-w-2xl mx-auto" data-aos="fade-up" data-aos-delay="100">Everything you need to know about ELMA authentic Greek mastic gum</p>
79
+ </div>
80
+ </section>
81
+
82
+ <!-- FAQ Section -->
83
+ <section class="py-16 bg-white">
84
+ <div class="max-w-3xl mx-auto px-4 sm:px-6 lg:px-8">
85
+ <div class="space-y-4">
86
+ <!-- FAQ Item -->
87
+ <div class="faq-item border-b border-gray-100 pb-4" data-aos="fade-up">
88
+ <div class="faq-question flex justify-between items-center cursor-pointer py-4">
89
+ <h3 class="font-medium text-lg">What is mastic gum?</h3>
90
+ <i data-feather="chevron-down" class="text-primary transition-transform"></i>
91
+ </div>
92
+ <div class="faq-answer text-slate-600">
93
+ <p>Mastic gum is a natural resin obtained from the mastic tree (Pistacia lentiscus), which grows exclusively on the Greek island of Chios. Unlike conventional chewing gum, mastic gum is completely natural, with no artificial ingredients. It has been used for centuries for its health benefits and unique texture.</p>
94
+ </div>
95
+ </div>
96
+
97
+ <!-- FAQ Item -->
98
+ <div class="faq-item border-b border-gray-100 pb-4" data-aos="fade-up" data-aos-delay="100">
99
+ <div class="faq-question flex justify-between items-center cursor-pointer py-4">
100
+ <h3 class="font-medium text-lg">How is ELMA mastic gum different?</h3>
101
+ <i data-feather="chevron-down" class="text-primary transition-transform"></i>
102
+ </div>
103
+ <div class="faq-answer text-slate-600">
104
+ <p class="mb-2">ELMA mastic gum differs from regular chewing gum in several ways:</p>
105
+ <ul class="space-y-2 pl-5 list-disc">
106
+ <li>100% natural with no artificial sweeteners, flavors, or preservatives</li>
107
+ <li>Lasts much longer (typically 2-3 hours per piece)</li>
108
+ <li>Offers digestive and oral health benefits</li>
109
+ <li>Has a unique, slightly pine-like flavor that develops as you chew</li>
110
+ <li>Becomes softer and more pliable with chewing, unlike conventional gum</li>
111
+ </ul>
112
+ </div>
113
+ </div>
114
+
115
+ <!-- FAQ Item -->
116
+ <div class="faq-item border-b border-gray-100 pb-4" data-aos="fade-up" data-aos-delay="200">
117
+ <div class="faq-question flex justify-between items-center cursor-pointer py-4">
118
+ <h3 class="font-medium text-lg">What
119
+ </body>
120
+ </html>
index.html CHANGED
@@ -1,19 +1,291 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  </html>
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>ELMA | Authentic Greek Mastic Gum</title>
7
+ <meta name="description" content="Premium Greek mastic gum from Chios. Natural wellness, lasting freshness, and digestive benefits in every chew.">
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
10
+ <script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
11
+ <script src="https://unpkg.com/feather-icons"></script>
12
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
13
+ <script>
14
+ tailwind.config = {
15
+ theme: {
16
+ extend: {
17
+ colors: {
18
+ primary: '#f97316',
19
+ gold: '#d4af37',
20
+ dark: '#1e293b',
21
+ }
22
+ }
23
+ }
24
+ }
25
+ </script>
26
+ <style>
27
+ @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');
28
+ body {
29
+ font-family: 'Inter', sans-serif;
30
+ }
31
+ .font-serif {
32
+ font-family: 'Playfair Display', serif;
33
+ }
34
+ .hero-bg {
35
+ background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.8) 100%), url('http://static.photos/nature/1200x630/42') center/cover no-repeat;
36
+ }
37
+ .benefit-card:hover {
38
+ transform: translateY(-5px);
39
+ box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
40
+ }
41
+ .product-card {
42
+ transition: all 0.3s ease;
43
+ }
44
+ .product-card:hover {
45
+ transform: scale(1.03);
46
+ }
47
+ </style>
48
+ </head>
49
+ <body class="bg-white text-slate-700">
50
+ <!-- Navigation -->
51
+ <nav class="bg-white border-b border-gray-100 fixed w-full z-50">
52
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
53
+ <div class="flex justify-between h-16">
54
+ <div class="flex items-center">
55
+ <a href="index.html" class="flex items-center">
56
+ <span class="font-serif text-xl font-bold text-dark">Callia</span>
57
+ </a>
58
+ </div>
59
+ <div class="hidden md:flex items-center space-x-8">
60
+ <a href="index.html" class="text-dark hover:text-primary transition">Home</a>
61
+ <a href="product.html" class="text-dark hover:text-primary transition">Product</a>
62
+ <a href="about.html" class="text-dark hover:text-primary transition">About</a>
63
+ <a href="faq.html" class="text-dark hover:text-primary transition">FAQ</a>
64
+ <a href="product.html" class="bg-primary text-white px-4 py-2 rounded-full hover:bg-opacity-90 transition">Shop Now</a>
65
+ </div>
66
+ <div class="md:hidden flex items-center">
67
+ <button id="mobile-menu-button" class="text-dark">
68
+ <i data-feather="menu"></i>
69
+ </button>
70
+ </div>
71
+ </div>
72
+ </div>
73
+ <!-- Mobile menu -->
74
+ <div id="mobile-menu" class="hidden md:hidden bg-white border-t border-gray-100 py-4 px-4">
75
+ <a href="index.html" class="block py-2 text-dark hover:text-primary transition">Home</a>
76
+ <a href="product.html" class="block py-2 text-dark hover:text-primary transition">Product</a>
77
+ <a href="about.html" class="block py-2 text-dark hover:text-primary transition">About</a>
78
+ <a href="faq.html" class="block py-2 text-dark hover:text-primary transition">FAQ</a>
79
+ <a href="product.html" class="mt-2 inline-block bg-primary text-white px-4 py-2 rounded-full hover:bg-opacity-90 transition">Shop Now</a>
80
+ </div>
81
+ </nav>
82
+
83
+ <!-- Hero Section -->
84
+ <section class="hero-bg pt-24 pb-16 md:pt-32 md:pb-24">
85
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
86
+ <div class="grid md:grid-cols-2 gap-12 items-center">
87
+ <div class="order-2 md:order-1" data-aos="fade-right">
88
+ <h1 class="font-serif text-4xl md:text-5xl font-bold text-dark mb-6">ELMA Authentic Greek Mastic Gum</h1>
89
+ <p class="text-lg text-slate-600 mb-8">Natural Wellness, Lasting Freshness from the island of Chios</p>
90
+ <div class="flex flex-col sm:flex-row gap-4">
91
+ <a href="product.html" class="bg-primary text-white px-6 py-3 rounded-full hover:bg-opacity-90 transition text-center font-medium">Shop Now</a>
92
+ <a href="#benefits" class="border border-dark text-dark px-6 py-3 rounded-full hover:bg-gray-50 transition text-center font-medium">Learn More</a>
93
+ </div>
94
+ </div>
95
+ <div class="order-1 md:order-2 flex justify-center" data-aos="fade-left">
96
+ <img src="http://static.photos/food/640x360/10" alt="ELMA Mastic Gum Tin" class="rounded-lg shadow-xl w-full max-w-md">
97
+ </div>
98
+ </div>
99
+ </div>
100
+ </section>
101
+
102
+ <!-- Benefits Section -->
103
+ <section id="benefits" class="py-16 bg-gray-50">
104
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
105
+ <div class="text-center mb-16" data-aos="fade-up">
106
+ <h2 class="font-serif text-3xl md:text-4xl font-bold text-dark mb-4">The ELMA Difference</h2>
107
+ <p class="max-w-2xl mx-auto text-slate-600">Experience the ancient wellness secret from the island of Chios</p>
108
+ </div>
109
+ <div class="grid md:grid-cols-2 lg:grid-cols-4 gap-8">
110
+ <div class="benefit-card bg-white p-6 rounded-xl shadow-sm transition duration-300" data-aos="fade-up" data-aos-delay="100">
111
+ <div class="w-12 h-12 bg-primary bg-opacity-10 rounded-full flex items-center justify-center mb-4">
112
+ <i data-feather="activity" class="text-primary"></i>
113
+ </div>
114
+ <h3 class="font-bold text-lg mb-2">Jawline Definition</h3>
115
+ <p class="text-slate-600">Naturally exercises facial muscles for a more defined appearance.</p>
116
+ </div>
117
+ <div class="benefit-card bg-white p-6 rounded-xl shadow-sm transition duration-300" data-aos="fade-up" data-aos-delay="200">
118
+ <div class="w-12 h-12 bg-primary bg-opacity-10 rounded-full flex items-center justify-center mb-4">
119
+ <i data-feather="clock" class="text-primary"></i>
120
+ </div>
121
+ <h3 class="font-bold text-lg mb-2">Long-Lasting</h3>
122
+ <p class="text-slate-600">One piece lasts for hours without losing its texture or flavor.</p>
123
+ </div>
124
+ <div class="benefit-card bg-white p-6 rounded-xl shadow-sm transition duration-300" data-aos="fade-up" data-aos-delay="300">
125
+ <div class="w-12 h-12 bg-primary bg-opacity-10 rounded-full flex items-center justify-center mb-4">
126
+ <i data-feather="heart" class="text-primary"></i>
127
+ </div>
128
+ <h3 class="font-bold text-lg mb-2">Digestive Aid</h3>
129
+ <p class="text-slate-600">Traditionally used to support gut health and digestion.</p>
130
+ </div>
131
+ <div class="benefit-card bg-white p-6 rounded-xl shadow-sm transition duration-300" data-aos="fade-up" data-aos-delay="400">
132
+ <div class="w-12 h-12 bg-primary bg-opacity-10 rounded-full flex items-center justify-center mb-4">
133
+ <i data-feather="award" class="text-primary"></i>
134
+ </div>
135
+ <h3 class="font-bold text-lg mb-2">Authentic</h3>
136
+ <p class="text-slate-600">Directly sourced from Chios, Greece, the only place where true mastic grows.</p>
137
+ </div>
138
+ </div>
139
+ </div>
140
+ </section>
141
+
142
+ <!-- Testimonials -->
143
+ <section class="py-16 bg-white">
144
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
145
+ <div class="text-center mb-12" data-aos="fade-up">
146
+ <h2 class="font-serif text-3xl md:text-4xl font-bold text-dark mb-4">Loved by Wellness Seekers</h2>
147
+ <p class="max-w-2xl mx-auto text-slate-600">What our customers say about ELMA</p>
148
+ </div>
149
+ <div class="grid md:grid-cols-3 gap-8">
150
+ <div class="bg-gray-50 p-6 rounded-xl" data-aos="fade-up" data-aos-delay="100">
151
+ <div class="flex items-center mb-4">
152
+ <div class="flex -space-x-2">
153
+ <img src="http://static.photos/people/200x200/1" alt="Customer" class="w-10 h-10 rounded-full border-2 border-white">
154
+ </div>
155
+ <div class="ml-3">
156
+ <h4 class="font-medium">Sarah K.</h4>
157
+ <div class="flex text-gold">
158
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
159
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
160
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
161
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
162
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
163
+ </div>
164
+ </div>
165
+ </div>
166
+ <p class="text-slate-600">"I've been using ELMA for 3 months now and my digestion has never been better. Plus, my jawline looks more defined!"</p>
167
+ </div>
168
+ <div class="bg-gray-50 p-6 rounded-xl" data-aos="fade-up" data-aos-delay="200">
169
+ <div class="flex items-center mb-4">
170
+ <div class="flex -space-x-2">
171
+ <img src="http://static.photos/people/200x200/2" alt="Customer" class="w-10 h-10 rounded-full border-2 border-white">
172
+ </div>
173
+ <div class="ml-3">
174
+ <h4 class="font-medium">Michael T.</h4>
175
+ <div class="flex text-gold">
176
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
177
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
178
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
179
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
180
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
181
+ </div>
182
+ </div>
183
+ </div>
184
+ <p class="text-slate-600">"As someone who chews gum constantly, ELMA is a game-changer. No artificial ingredients and it lasts for hours."</p>
185
+ </div>
186
+ <div class="bg-gray-50 p-6 rounded-xl" data-aos="fade-up" data-aos-delay="300">
187
+ <div class="flex items-center mb-4">
188
+ <div class="flex -space-x-2">
189
+ <img src="http://static.photos/people/200x200/3" alt="Customer" class="w-10 h-10 rounded-full border-2 border-white">
190
+ </div>
191
+ <div class="ml-3">
192
+ <h4 class="font-medium">Elena P.</h4>
193
+ <div class="flex text-gold">
194
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
195
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
196
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
197
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
198
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
199
+ </div>
200
+ </div>
201
+ </div>
202
+ <p class="text-slate-600">"Being Greek, I can tell this is the real deal. The quality is exceptional and brings back childhood memories."</p>
203
+ </div>
204
+ </div>
205
+ </div>
206
+ </section>
207
+
208
+ <!-- CTA Section -->
209
+ <section class="py-16 bg-primary text-white">
210
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
211
+ <h2 class="font-serif text-3xl md:text-4xl font-bold mb-6" data-aos="fade-up">Experience Ancient Greek Wellness</h2>
212
+ <p class="max-w-2xl mx-auto mb-8 text-primary-100" data-aos="fade-up" data-aos-delay="100">Join thousands who have discovered the benefits of authentic Chios mastic gum.</p>
213
+ <a href="product.html" class="inline-block bg-white text-primary px-8 py-3 rounded-full hover:bg-opacity-90 transition font-medium" data-aos="fade-up" data-aos-delay="200">Shop ELMA Now</a>
214
+ </div>
215
+ </section>
216
+
217
+ <!-- Newsletter -->
218
+ <section class="py-16 bg-white">
219
+ <div class="max-w-2xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
220
+ <div class="bg-gray-50 p-8 rounded-xl">
221
+ <h3 class="font-serif text-2xl font-bold text-dark mb-4" data-aos="fade-up">Join Our Wellness Community</h3>
222
+ <p class="text-slate-600 mb-6" data-aos="fade-up" data-aos-delay="100">Subscribe for exclusive offers and wellness tips.</p>
223
+ <form class="flex flex-col sm:flex-row gap-2" data-aos="fade-up" data-aos-delay="200">
224
+ <input type="email" placeholder="Your email address" class="flex-grow px-4 py-3 rounded-full border border-gray-300 focus:outline-none focus:ring-2 focus:ring-primary focus:border-transparent">
225
+ <button type="submit" class="bg-primary text-white px-6 py-3 rounded-full hover:bg-opacity-90 transition font-medium">Subscribe</button>
226
+ </form>
227
+ </div>
228
+ </div>
229
+ </section>
230
+
231
+ <!-- Footer -->
232
+ <footer class="bg-dark text-white py-12">
233
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
234
+ <div class="grid md:grid-cols-4 gap-8">
235
+ <div>
236
+ <h3 class="font-serif text-xl font-bold mb-4">Callia</h3>
237
+ <p class="text-slate-300">Authentic Greek mastic gum from the island of Chios. Natural wellness in every chew.</p>
238
+ </div>
239
+ <div>
240
+ <h4 class="font-medium mb-4">Shop</h4>
241
+ <ul class="space-y-2">
242
+ <li><a href="product.html" class="text-slate-300 hover:text-white transition">All Products</a></li>
243
+ <li><a href="product.html" class="text-slate-300 hover:text-white transition">Single Pack</a></li>
244
+ <li><a href="product.html" class="text-slate-300 hover:text-white transition">Three Pack</a></li>
245
+ <li><a href="product.html" class="text-slate-300 hover:text-white transition">Subscription</a></li>
246
+ </ul>
247
+ </div>
248
+ <div>
249
+ <h4 class="font-medium mb-4">About</h4>
250
+ <ul class="space-y-2">
251
+ <li><a href="about.html" class="text-slate-300 hover:text-white transition">Our Story</a></li>
252
+ <li><a href="about.html" class="text-slate-300 hover:text-white transition">Mastic Gum</a></li>
253
+ <li><a href="faq.html" class="text-slate-300 hover:text-white transition">FAQ</a></li>
254
+ <li><a href="#" class="text-slate-300 hover:text-white transition">Contact</a></li>
255
+ </ul>
256
+ </div>
257
+ <div>
258
+ <h4 class="font-medium mb-4">Connect</h4>
259
+ <div class="flex space-x-4">
260
+ <a href="#" class="text-slate-300 hover:text-white transition"><i data-feather="instagram"></i></a>
261
+ <a href="#" class="text-slate-300 hover:text-white transition"><i data-feather="facebook"></i></a>
262
+ <a href="#" class="text-slate-300 hover:text-white transition"><i data-feather="twitter"></i></a>
263
+ </div>
264
+ </div>
265
+ </div>
266
+ <div class="border-t border-slate-700 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center">
267
+ <p class="text-slate-400">© 2023 ELMA. All rights reserved.</p>
268
+ <div class="flex space-x-6 mt-4 md:mt-0">
269
+ <a href="#" class="text-slate-400 hover:text-white transition">Privacy Policy</a>
270
+ <a href="#" class="text-slate-400 hover:text-white transition">Terms of Service</a>
271
+ </div>
272
+ </div>
273
+ </div>
274
+ </footer>
275
+
276
+ <script>
277
+ AOS.init({
278
+ duration: 800,
279
+ easing: 'ease-in-out',
280
+ once: true
281
+ });
282
+ feather.replace();
283
+
284
+ // Mobile menu toggle
285
+ document.getElementById('mobile-menu-button').addEventListener('click', function() {
286
+ const menu = document.getElementById('mobile-menu');
287
+ menu.classList.toggle('hidden');
288
+ });
289
+ </script>
290
+ </body>
291
  </html>
product.html ADDED
@@ -0,0 +1,390 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>ELMA | Product</title>
7
+ <meta name="description" content="Premium Greek mastic gum from Chios. Natural wellness, lasting freshness, and digestive benefits in every chew.">
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
10
+ <script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
11
+ <script src="https://unpkg.com/feather-icons"></script>
12
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
13
+ <style>
14
+ @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');
15
+ body {
16
+ font-family: 'Inter', sans-serif;
17
+ }
18
+ .font-serif {
19
+ font-family: 'Playfair Display', serif;
20
+ }
21
+ .product-card {
22
+ transition: all 0.3s ease;
23
+ }
24
+ .product-card:hover {
25
+ transform: translateY(-5px);
26
+ box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
27
+ }
28
+ .option-selected {
29
+ border-color: #f97316;
30
+ background-color: #fff7ed;
31
+ }
32
+ </style>
33
+ </head>
34
+ <body class="bg-white text-slate-700">
35
+ <!-- Navigation -->
36
+ <nav class="bg-white border-b border-gray-100 fixed w-full z-50">
37
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
38
+ <div class="flex justify-between h-16">
39
+ <div class="flex items-center">
40
+ <a href="index.html" class="flex items-center">
41
+ <span class="font-serif text-xl font-bold text-dark">Callia</span>
42
+ </a>
43
+ </div>
44
+ <div class="hidden md:flex items-center space-x-8">
45
+ <a href="index.html" class="text-dark hover:text-primary transition">Home</a>
46
+ <a href="product.html" class="text-dark hover:text-primary transition">Product</a>
47
+ <a href="about.html" class="text-dark hover:text-primary transition">About</a>
48
+ <a href="faq.html" class="text-dark hover:text-primary transition">FAQ</a>
49
+ <a href="product.html" class="bg-primary text-white px-4 py-2 rounded-full hover:bg-opacity-90 transition">Shop Now</a>
50
+ </div>
51
+ <div class="md:hidden flex items-center">
52
+ <button id="mobile-menu-button" class="text-dark">
53
+ <i data-feather="menu"></i>
54
+ </button>
55
+ </div>
56
+ </div>
57
+ </div>
58
+ <!-- Mobile menu -->
59
+ <div id="mobile-menu" class="hidden md:hidden bg-white border-t border-gray-100 py-4 px-4">
60
+ <a href="index.html" class="block py-2 text-dark hover:text-primary transition">Home</a>
61
+ <a href="product.html" class="block py-2 text-dark hover:text-primary transition">Product</a>
62
+ <a href="about.html" class="block py-2 text-dark hover:text-primary transition">About</a>
63
+ <a href="faq.html" class="block py-2 text-dark hover:text-primary transition">FAQ</a>
64
+ <a href="product.html" class="mt-2 inline-block bg-primary text-white px-4 py-2 rounded-full hover:bg-opacity-90 transition">Shop Now</a>
65
+ </div>
66
+ </nav>
67
+
68
+ <!-- Product Section -->
69
+ <section class="pt-24 pb-16 md:pt-32 md:pb-24">
70
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
71
+ <div class="grid md:grid-cols-2 gap-12 items-start">
72
+ <!-- Product Images -->
73
+ <div class="sticky top-24">
74
+ <div class="mb-4 rounded-lg overflow-hidden" data-aos="fade-right">
75
+ <img src="http://static.photos/food/640x360/10" alt="ELMA Mastic Gum Tin" class="w-full rounded-lg shadow-md">
76
+ </div>
77
+ <div class="grid grid-cols-4 gap-2">
78
+ <div class="border rounded-md overflow-hidden cursor-pointer">
79
+ <img src="http://static.photos/food/200x200/10" alt="ELMA Mastic Gum Tin" class="w-full">
80
+ </div>
81
+ <div class="border rounded-md overflow-hidden cursor-pointer">
82
+ <img src="http://static.photos/food/200x200/11" alt="ELMA Mastic Gum Contents" class="w-full">
83
+ </div>
84
+ <div class="border rounded-md overflow-hidden cursor-pointer">
85
+ <img src="http://static.photos/food/200x200/12" alt="ELMA Mastic Gum Package" class="w-full">
86
+ </div>
87
+ <div class="border rounded-md overflow-hidden cursor-pointer">
88
+ <img src="http://static.photos/food/200x200/13" alt="ELMA Mastic Gum Close-up" class="w-full">
89
+ </div>
90
+ </div>
91
+ </div>
92
+
93
+ <!-- Product Details -->
94
+ <div data-aos="fade-left">
95
+ <h1 class="font-serif text-3xl md:text-4xl font-bold text-dark mb-2">ELMA Authentic Greek Mastic Gum</h1>
96
+ <div class="flex items-center mb-4">
97
+ <div class="flex text-gold mr-2">
98
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
99
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
100
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
101
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
102
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
103
+ </div>
104
+ <span class="text-slate-500">48 reviews</span>
105
+ </div>
106
+ <p class="text-lg text-slate-600 mb-6">Authentic Greek mastic gum from the island of Chios. Experience natural wellness, lasting freshness, and digestive benefits in every chew.</p>
107
+
108
+ <div class="mb-8">
109
+ <h3 class="font-medium text-lg mb-2">Benefits</h3>
110
+ <ul class="space-y-2 text-slate-600">
111
+ <li class="flex items-start">
112
+ <i data-feather="check" class="w-5 h-5 text-primary mr-2 mt-0.5"></i>
113
+ <span>Supports digestive health</span>
114
+ </li>
115
+ <li class="flex items-start">
116
+ <i data-feather="check" class="w-5 h-5 text-primary mr-2 mt-0.5"></i>
117
+ <span>Naturally exercises facial muscles</span>
118
+ </li>
119
+ <li class="flex items-start">
120
+ <i data-feather="check" class="w-5 h-5 text-primary mr-2 mt-0.5"></i>
121
+ <span>Long-lasting flavor and texture</span>
122
+ </li>
123
+ <li class="flex items-start">
124
+ <i data-feather="check" class="w-5 h-5 text-primary mr-2 mt-0.5"></i>
125
+ <span>No artificial ingredients</span>
126
+ </li>
127
+ <li class="flex items-start">
128
+ <i data-feather="check" class="w-5 h-5 text-primary mr-2 mt-0.5"></i>
129
+ <span>Authentic product of Chios, Greece</span>
130
+ </li>
131
+ </ul>
132
+ </div>
133
+
134
+ <div class="mb-8">
135
+ <h3 class="font-medium text-lg mb-4">Select Option</h3>
136
+ <div class="grid grid-cols-1 sm:grid-cols-3 gap-3">
137
+ <div class="option-selector border rounded-lg p-4 cursor-pointer transition option-selected" data-option="single">
138
+ <h4 class="font-medium mb-1">Single Pack</h4>
139
+ <p class="text-slate-500 text-sm mb-2">1 tin (30 pieces)</p>
140
+ <p class="font-bold text-dark">$24.99</p>
141
+ </div>
142
+ <div class="option-selector border rounded-lg p-4 cursor-pointer transition" data-option="three">
143
+ <h4 class="font-medium mb-1">Three Pack</h4>
144
+ <p class="text-slate-500 text-sm mb-2">3 tins (90 pieces)</p>
145
+ <p class="font-bold text-dark">$64.99 <span class="text-sm font-normal text-primary">(Save 13%)</span></p>
146
+ </div>
147
+ <div class="option-selector border rounded-lg p-4 cursor-pointer transition" data-option="subscription">
148
+ <h4 class="font-medium mb-1">Subscription</h4>
149
+ <p class="text-slate-500 text-sm mb-2">Monthly delivery</p>
150
+ <p class="font-bold text-dark">$21.99/month <span class="text-sm font-normal text-primary">(Save 12%)</span></p>
151
+ </div>
152
+ </div>
153
+ </div>
154
+
155
+ <div class="flex flex-col sm:flex-row gap-4 mb-8">
156
+ <div class="flex items-center border rounded-full px-4 py-2">
157
+ <button class="text-slate-500 hover:text-primary" id="decrease-qty">
158
+ <i data-feather="minus"></i>
159
+ </button>
160
+ <input type="number" value="1" min="1" max="10" class="w-12 text-center border-0 focus:ring-0">
161
+ <button class="text-slate-500 hover:text-primary" id="increase-qty">
162
+ <i data-feather="plus"></i>
163
+ </button>
164
+ </div>
165
+ <button class="bg-primary text-white px-6 py-3 rounded-full hover:bg-opacity-90 transition flex-grow font-medium flex items-center justify-center">
166
+ <i data-feather="shopping-cart" class="w-5 h-5 mr-2"></i> Add to Cart
167
+ </button>
168
+ </div>
169
+
170
+ <div class="border-t border-gray-100 pt-6">
171
+ <h3 class="font-medium text-lg mb-4">Product Details</h3>
172
+ <div class="grid grid-cols-2 gap-4 mb-6">
173
+ <div>
174
+ <p class="text-slate-500">Weight</p>
175
+ <p class="font-medium">30g per tin</p>
176
+ </div>
177
+ <div>
178
+ <p class="text-slate-500">Contents</p>
179
+ <p class="font-medium">30 pieces</p>
180
+ </div>
181
+ <div>
182
+ <p class="text-slate-500">Origin</p>
183
+ <p class="font-medium">Chios, Greece</p>
184
+ </div>
185
+ <div>
186
+ <p class="text-slate-500">Ingredients</p>
187
+ <p class="font-medium">100% pure mastic gum</p>
188
+ </div>
189
+ </div>
190
+ <p class="text-slate-600">Each ELMA tin contains 30 pieces of premium Greek mastic gum, hand-selected from the best harvests on the island of Chios. Our mastic gum is all-natural with no additives or preservatives.</p>
191
+ </div>
192
+ </div>
193
+ </div>
194
+ </div>
195
+ </section>
196
+
197
+ <!-- Benefits Section -->
198
+ <section class="py-16 bg-gray-50">
199
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
200
+ <div class="text-center mb-16">
201
+ <h2 class="font-serif text-3xl md:text-4xl font-bold text-dark mb-4">Why Choose ELMA</h2>
202
+ <p class="max-w-2xl mx-auto text-slate-600">The premium choice for natural wellness and oral health</p>
203
+ </div>
204
+ <div class="grid md:grid-cols-3 gap-8">
205
+ <div class="bg-white p-6 rounded-xl shadow-sm" data-aos="fade-up">
206
+ <div class="w-12 h-12 bg-primary bg-opacity-10 rounded-full flex items-center justify-center mb-4">
207
+ <i data-feather="shield" class="text-primary"></i>
208
+ </div>
209
+ <h3 class="font-bold text-lg mb-2">Authentic & Pure</h3>
210
+ <p class="text-slate-600">Sourced directly from Chios, Greece, the only place where true mastic gum grows. No additives or artificial ingredients.</p>
211
+ </div>
212
+ <div class="bg-white p-6 rounded-xl shadow-sm" data-aos="fade-up" data-aos-delay="100">
213
+ <div class="w-12 h-12 bg-primary bg-opacity-10 rounded-full flex items-center justify-center mb-4">
214
+ <i data-feather="clock" class="text-primary"></i>
215
+ </div>
216
+ <h3 class="font-bold text-lg mb-2">Long-Lasting</h3>
217
+ <p class="text-slate-600">One piece of mastic gum lasts for hours without losing its texture or becoming bitter like conventional chewing gum.</p>
218
+ </div>
219
+ <div class="bg-white p-6 rounded-xl shadow-sm" data-aos="fade-up" data-aos-delay="200">
220
+ <div class="w-12 h-12 bg-primary bg-opacity-10 rounded-full flex items-center justify-center mb-4">
221
+ <i data-feather="heart" class="text-primary"></i>
222
+ </div>
223
+ <h3 class="font-bold text-lg mb-2">Wellness Benefits</h3>
224
+ <p class="text-slate-600">Traditionally used to support digestive health, oral hygiene, and even as a natural facial exercise for jawline definition.</p>
225
+ </div>
226
+ </div>
227
+ </div>
228
+ </section>
229
+
230
+ <!-- Testimonials -->
231
+ <section class="py-16 bg-white">
232
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
233
+ <div class="text-center mb-12">
234
+ <h2 class="font-serif text-3xl md:text-4xl font-bold text-dark mb-4">Customer Experiences</h2>
235
+ <p class="max-w-2xl mx-auto text-slate-600">Real results from our community</p>
236
+ </div>
237
+ <div class="grid md:grid-cols-3 gap-8">
238
+ <div class="bg-gray-50 p-6 rounded-xl" data-aos="fade-up">
239
+ <div class="flex items-center mb-4">
240
+ <div class="flex -space-x-2">
241
+ <img src="http://static.photos/people/200x200/4" alt="Customer" class="w-10 h-10 rounded-full border-2 border-white">
242
+ </div>
243
+ <div class="ml-3">
244
+ <h4 class="font-medium">Jessica R.</h4>
245
+ <div class="flex text-gold">
246
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
247
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
248
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
249
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
250
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
251
+ </div>
252
+ </div>
253
+ </div>
254
+ <p class="text-slate-600">"I've struggled with digestive issues for years. After using ELMA for just two weeks, I noticed a significant improvement. Plus, it's the only gum that doesn't give me headaches!"</p>
255
+ </div>
256
+ <div class="bg-gray-50 p-6 rounded-xl" data-aos="fade-up" data-aos-delay="100">
257
+ <div class="flex items-center mb-4">
258
+ <div class="flex -space-x-2">
259
+ <img src="http://static.photos/people/200x200/5" alt="Customer" class="w-10 h-10 rounded-full border-2 border-white">
260
+ </div>
261
+ <div class="ml-3">
262
+ <h4 class="font-medium">David L.</h4>
263
+ <div class="flex text-gold">
264
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
265
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
266
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
267
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
268
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
269
+ </div>
270
+ </div>
271
+ </div>
272
+ <p class="text-slate-600">"As a dentist, I recommend ELMA to my patients looking for a healthier alternative to conventional gum. The natural antibacterial properties are excellent for oral health."</p>
273
+ </div>
274
+ <div class="bg-gray-50 p-6 rounded-xl" data-aos="fade-up" data-aos-delay="200">
275
+ <div class="flex items-center mb-4">
276
+ <div class="flex -space-x-2">
277
+ <img src="http://static.photos/people/200x200/6" alt="Customer" class="w-10 h-10 rounded-full border-2 border-white">
278
+ </div>
279
+ <div class="ml-3">
280
+ <h4 class="font-medium">Sophia K.</h4>
281
+ <div class="flex text-gold">
282
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
283
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
284
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
285
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
286
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
287
+ </div>
288
+ </div>
289
+ </div>
290
+ <p class="text-slate-600">"I bought ELMA for the jawline benefits and wasn't disappointed. After 3 months of consistent use, my jawline is noticeably more defined. Bonus: my digestion improved too!"</p>
291
+ </div>
292
+ </div>
293
+ </div>
294
+ </section>
295
+
296
+ <!-- CTA Section -->
297
+ <section class="py-16 bg-primary text-white">
298
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
299
+ <h2 class="font-serif text-3xl md:text-4xl font-bold mb-6">Ready to Experience ELMA?</h2>
300
+ <p class="max-w-2xl mx-auto mb-8 text-primary-100">Join our community of wellness seekers and discover the ancient secret of Chios.</p>
301
+ <a href="#top" class="inline-block bg-white text-primary px-8 py-3 rounded-full hover:bg-opacity-90 transition font-medium">Add to Cart</a>
302
+ </div>
303
+ </section>
304
+
305
+ <!-- Footer -->
306
+ <footer class="bg-dark text-white py-12">
307
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
308
+ <div class="grid md:grid-cols-4 gap-8">
309
+ <div>
310
+ <h3 class="font-serif text-xl font-bold mb-4">Callia</h3>
311
+ <p class="text-slate-300">Authentic Greek mastic gum from the island of Chios. Natural wellness in every chew.</p>
312
+ </div>
313
+ <div>
314
+ <h4 class="font-medium mb-4">Shop</h4>
315
+ <ul class="space-y-2">
316
+ <li><a href="product.html" class="text-slate-300 hover:text-white transition">All Products</a></li>
317
+ <li><a href="product.html" class="text-slate-300 hover:text-white transition">Single Pack</a></li>
318
+ <li><a href="product.html" class="text-slate-300 hover:text-white transition">Three Pack</a></li>
319
+ <li><a href="product.html" class="text-slate-300 hover:text-white transition">Subscription</a></li>
320
+ </ul>
321
+ </div>
322
+ <div>
323
+ <h4 class="font-medium mb-4">About</h4>
324
+ <ul class="space-y-2">
325
+ <li><a href="about.html" class="text-slate-300 hover:text-white transition">Our Story</a></li>
326
+ <li><a href="about.html" class="text-slate-300 hover:text-white transition">Mastic Gum</a></li>
327
+ <li><a href="faq.html" class="text-slate-300 hover:text-white transition">FAQ</a></li>
328
+ <li><a href="#" class="text-slate-300 hover:text-white transition">Contact</a></li>
329
+ </ul>
330
+ </div>
331
+ <div>
332
+ <h4 class="font-medium mb-4">Connect</h4>
333
+ <div class="flex space-x-4">
334
+ <a href="#" class="text-slate-300 hover:text-white transition"><i data-feather="instagram"></i></a>
335
+ <a href="#" class="text-slate-300 hover:text-white transition"><i data-feather="facebook"></i></a>
336
+ <a href="#" class="text-slate-300 hover:text-white transition"><i data-feather="twitter"></i></a>
337
+ </div>
338
+ </div>
339
+ </div>
340
+ <div class="border-t border-slate-700 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center">
341
+ <p class="text-slate-400">© 2023 ELMA. All rights reserved.</p>
342
+ <div class="flex space-x-6 mt-4 md:mt-0">
343
+ <a href="#" class="text-slate-400 hover:text-white transition">Privacy Policy</a>
344
+ <a href="#" class="text-slate-400 hover:text-white transition">Terms of Service</a>
345
+ </div>
346
+ </div>
347
+ </div>
348
+ </footer>
349
+
350
+ <script>
351
+ AOS.init({
352
+ duration: 800,
353
+ easing: 'ease-in-out',
354
+ once: true
355
+ });
356
+ feather.replace();
357
+
358
+ // Mobile menu toggle
359
+ document.getElementById('mobile-menu-button').addEventListener('click', function() {
360
+ const menu = document.getElementById('mobile-menu');
361
+ menu.classList.toggle('hidden');
362
+ });
363
+
364
+ // Product option selection
365
+ document.querySelectorAll('.option-selector').forEach(option => {
366
+ option.addEventListener('click', function() {
367
+ document.querySelectorAll('.option-selector').forEach(el => {
368
+ el.classList.remove('option-selected');
369
+ });
370
+ this.classList.add('option-selected');
371
+ });
372
+ });
373
+
374
+ // Quantity controls
375
+ document.getElementById('increase-qty').addEventListener('click', function() {
376
+ const input = document.querySelector('input[type="number"]');
377
+ if (parseInt(input.value) < 10) {
378
+ input.value = parseInt(input.value) + 1;
379
+ }
380
+ });
381
+
382
+ document.getElementById('decrease-qty').addEventListener('click', function() {
383
+ const input = document.querySelector('input[type="number"]');
384
+ if (parseInt(input.value) > 1) {
385
+ input.value = parseInt(input.value) - 1;
386
+ }
387
+ });
388
+ </script>
389
+ </body>
390
+ </html>
prompts.txt ADDED
File without changes