-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
3868 lines (3460 loc) · 150 KB
/
Copy pathindex.html
File metadata and controls
3868 lines (3460 loc) · 150 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
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Auto-deploy test - GitHub → Netlify integration - Updated 9/30/2025 -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Best Fishing Line 2025 | Top Rated Bass, Saltwater & Trolling Lines | Cast N Lines</title>
<meta name="description" content="🎣 #1 Fishing Line Reviews & Deals! Expert-tested bass, saltwater, trolling lines. Compare top brands: Seaguar, Berkley, PowerPro. Free shipping on orders $25+. Updated daily!" />
<link rel="icon" href="assets/favicon.png" />
<!-- Enhanced SEO Meta Tags -->
<meta name="keywords" content="fishing line, best fishing line 2025, bass fishing line, saltwater fishing line, fluorocarbon line, braided line, monofilament line, trolling line, fishing line reviews, Seaguar, Berkley, PowerPro, fishing line test, line strength, fishing gear" />
<meta name="robots" content="index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1" />
<meta name="author" content="Cast N Lines" />
<link rel="canonical" href="https://castnlines.com/" />
<!-- Open Graph Enhanced -->
<meta property="og:title" content="Best Fishing Line 2025 | Expert Reviews & Top Deals | Cast N Lines" />
<meta property="og:description" content="🎣 #1 Source for fishing line reviews! Expert-tested bass, saltwater & trolling lines. Compare top brands with real performance data." />
<meta property="og:image" content="https://castnlines.com/assets/logo.png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://castnlines.com/" />
<meta property="og:site_name" content="Cast N Lines" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Best Fishing Line 2025 | Expert Reviews & Deals" />
<meta name="twitter:description" content="🎣 Expert-tested fishing line reviews. Compare top bass, saltwater & trolling lines." />
<meta name="twitter:image" content="https://castnlines.com/assets/logo.png" />
<!-- Additional SEO -->
<meta name="theme-color" content="#007bbf" />
<meta name="format-detection" content="telephone=no" />
<link rel="alternate" type="application/rss+xml" title="Cast N Lines Fishing Line Reviews" href="https://castnlines.com/feed.xml" />
<!-- Google Analytics 4 - LIVE TRACKING ACTIVE -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-P059XWJDL6"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-P059XWJDL6', {
send_page_view: true,
anonymize_ip: true,
cookie_flags: 'SameSite=None;Secure'
});
// Enhanced Affiliate Link Tracking
function trackAffiliateClick(retailer, product) {
gtag('event', 'affiliate_click', {
event_category: 'affiliate',
event_label: retailer + ' - ' + product,
value: 1
});
}
// Track scroll depth for engagement
let maxScroll = 0;
window.addEventListener('scroll', function() {
let scrollPercent = Math.round((window.scrollY / (document.body.scrollHeight - window.innerHeight)) * 100);
if (scrollPercent > maxScroll) {
maxScroll = scrollPercent;
if (scrollPercent >= 25 && scrollPercent < 50) {
gtag('event', 'scroll_depth', { event_category: 'engagement', event_label: '25%' });
} else if (scrollPercent >= 50 && scrollPercent < 75) {
gtag('event', 'scroll_depth', { event_category: 'engagement', event_label: '50%' });
} else if (scrollPercent >= 75) {
gtag('event', 'scroll_depth', { event_category: 'engagement', event_label: '75%' });
}
}
});
</script>
<!-- Enhanced SEO and Social Media Meta Tags -->
<meta name="keywords" content="fishing line, bass fishing, saltwater fishing, trolling line, crab rope, fishing gear, monofilament, fluorocarbon, braided line, fishing equipment" />
<meta name="author" content="Cast N Lines" />
<meta name="robots" content="index, follow" />
<meta property="og:url" content="https://castnlines.com" />
<meta property="og:site_name" content="Cast N Lines" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Cast N Lines – Ultimate Fishing Line Hub" />
<meta name="twitter:description" content="Your complete fishing line destination! Every type for every angler." />
<meta name="twitter:image" content="assets/logo.png" />
<!-- Structured Data for Rich Snippets -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"name": "Cast N Lines",
"url": "https://castnlines.com",
"description": "Ultimate fishing line hub with bass, saltwater, trolling, and crabbing equipment",
"potentialAction": {
"@type": "SearchAction",
"target": "https://castnlines.com/?search={search_term_string}",
"query-input": "required name=search_term_string"
}
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Store",
"name": "Cast N Lines",
"description": "Complete fishing line destination with affiliate products from top brands",
"url": "https://castnlines.com",
"logo": "https://castnlines.com/assets/logo.png",
"sameAs": [
"https://github.com/tcasten/castnlines.com"
],
"hasOfferCatalog": {
"@type": "OfferCatalog",
"name": "Fishing Lines & Equipment",
"itemListElement": [
{
"@type": "Offer",
"itemOffered": {
"@type": "Product",
"name": "Berkley Trilene XL Monofilament",
"category": "Fishing Line"
}
},
{
"@type": "Offer",
"itemOffered": {
"@type": "Product",
"name": "Seaguar InvizX Fluorocarbon",
"category": "Fishing Line"
}
}
]
}
}
</script>
<!-- Enhanced SEO Schema Markup -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "What is the best fishing line for bass?",
"acceptedAnswer": {
"@type": "Answer",
"text": "The best fishing line for bass depends on conditions. For clear water, use 12-15lb Seaguar fluorocarbon. For heavy cover, use 15-20lb fluorocarbon or 30lb braid with fluoro leader. For topwater, use 12-15lb monofilament."
}
},
{
"@type": "Question",
"name": "What pound test line for saltwater fishing?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Saltwater fishing line should be 20-30lb for surf fishing, 15-25lb fluorocarbon for inshore clear water, and 30-80lb for offshore trolling. Always use a heavier leader than your main line."
}
},
{
"@type": "Question",
"name": "How often should I change fishing line?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Replace monofilament every 6-12 months, fluorocarbon annually, and braided line every 2-3 years. Saltwater fishing requires more frequent replacement due to salt corrosion."
}
}
]
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "Home",
"item": "https://castnlines.com"
},
{
"@type": "ListItem",
"position": 2,
"name": "Freshwater Lines",
"item": "https://castnlines.com#freshwater-lines"
},
{
"@type": "ListItem",
"position": 3,
"name": "Saltwater Lines",
"item": "https://castnlines.com#saltwater-lines"
}
]
}
</script>
<!-- Product Review Schema for Top Products -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Product",
"name": "Seaguar Tattletale Fluorocarbon Line",
"description": "Premium fluorocarbon fishing line with superior invisibility and strength for bass and saltwater fishing",
"brand": {
"@type": "Brand",
"name": "Seaguar"
},
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "4.8",
"reviewCount": "1247"
},
"offers": {
"@type": "Offer",
"url": "https://amzn.to/3BbQrYx",
"priceCurrency": "USD",
"price": "24.99",
"availability": "https://schema.org/InStock",
"seller": {
"@type": "Organization",
"name": "Amazon"
}
},
"review": {
"@type": "Review",
"reviewRating": {
"@type": "Rating",
"ratingValue": "5",
"bestRating": "5"
},
"author": {
"@type": "Person",
"name": "Cast N Lines"
},
"reviewBody": "Exceptional fluorocarbon line with incredible invisibility underwater. Perfect for finicky bass in clear water conditions."
}
}
</script>
<!-- Enhanced SEO Schema for Fishing Line Authority -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": ["WebSite", "CollectionPage"],
"name": "Cast N Lines - Best Fishing Line Reviews 2025",
"alternateName": "Cast N Lines Fishing Line Hub",
"url": "https://castnlines.com",
"description": "Expert reviews and comparisons of the best fishing lines for bass, saltwater, and trolling. Updated daily with real performance tests and affiliate deals.",
"keywords": "fishing line, bass fishing line, saltwater fishing line, fluorocarbon, braided line, monofilament, fishing gear reviews, line test, fishing equipment",
"inLanguage": "en-US",
"isPartOf": {
"@type": "WebSite",
"url": "https://castnlines.com"
},
"mainEntity": {
"@type": "ItemList",
"name": "Best Fishing Lines 2025",
"description": "Comprehensive collection of top-rated fishing lines tested by experts",
"numberOfItems": 36
},
"author": {
"@type": "Organization",
"name": "Cast N Lines",
"url": "https://castnlines.com",
"logo": "https://castnlines.com/assets/logo.png"
},
"publisher": {
"@type": "Organization",
"name": "Cast N Lines",
"url": "https://castnlines.com",
"logo": {
"@type": "ImageObject",
"url": "https://castnlines.com/assets/logo.png",
"width": 400,
"height": 400
}
},
"breadcrumb": {
"@type": "BreadcrumbList",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "Home",
"item": "https://castnlines.com"
},
{
"@type": "ListItem",
"position": 2,
"name": "Fishing Line Reviews",
"item": "https://castnlines.com#products"
}
]
}
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "What is the best fishing line for bass fishing?",
"acceptedAnswer": {
"@type": "Answer",
"text": "For bass fishing, fluorocarbon lines like Seaguar Tattletale (12-15lb) work best in clear water for invisibility. For heavy cover, use 15-20lb fluorocarbon or 30lb braid with a fluorocarbon leader. Monofilament (12-15lb) is ideal for topwater lures due to its stretch and floatability."
}
},
{
"@type": "Question",
"name": "What fishing line is best for saltwater?",
"acceptedAnswer": {
"@type": "Answer",
"text": "For saltwater fishing, braided line (15-20lb) with a fluorocarbon leader (20-30lb) is most effective. The braid provides strength and sensitivity while the fluorocarbon leader offers invisibility and abrasion resistance. For surf fishing, use 20-30lb monofilament main line with a 40-50lb shock leader."
}
},
{
"@type": "Question",
"name": "How often should I replace my fishing line?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Replace monofilament every 6-12 months or after 200+ hours of use. Fluorocarbon lasts 12-18 months with proper care. Braided line can last 2-3 years but replace when frayed. Saltwater fishing requires replacement twice as often due to corrosion and UV exposure."
}
}
]
}
</script>
<!-- Microsoft Clarity for Heat Maps & User Behavior - LIVE TRACKING -->
<script type="text/javascript">
(function(c,l,a,r,i,t,y){
c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)};
t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i;
y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y);
})(window, document, "clarity", "script", "tiw8jb6afj");
</script>
<!-- Premium Typography -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800;900&display=swap" rel="stylesheet">
<!-- Preload Critical Resources -->
<link rel="preload" href="assets/logo.png" as="image">
<link rel="dns-prefetch" href="//www.amazon.com">
<link rel="dns-prefetch" href="//www.basspro.com">
<link rel="dns-prefetch" href="//www.dickssportinggoods.com">
<link rel="dns-prefetch" href="//www.walmart.com">
<link rel="dns-prefetch" href="//www.ebay.com">
<link rel="dns-prefetch" href="//www.googletagmanager.com">
<link rel="dns-prefetch" href="//www.clarity.ms">
<style>
:root {
/* Premium Color Palette */
--primary: #0f172a;
--secondary: #1e40af;
--accent: #3b82f6;
--success: #10b981;
--warning: #f59e0b;
--danger: #dc2626;
--dark: #0f172a;
--light: #f8fafc;
--ocean: #1e40af;
--freshwater: #059669;
--premium-gold: #fbbf24;
--premium-teal: #0d9488;
--glass-bg: rgba(255, 255, 255, 0.1);
--glass-border: rgba(255, 255, 255, 0.2);
/* Premium Shadows */
--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
--shadow-md: 0 8px 25px rgba(0, 0, 0, 0.1);
--shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
--shadow-xl: 0 30px 60px rgba(0, 0, 0, 0.2);
/* Premium Gradients */
--gradient-ocean: linear-gradient(135deg, #0ea5e9 0%, #1e40af 50%, #1e3a8a 100%);
--gradient-success: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
--gradient-premium: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
--gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 100%);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html {
scroll-behavior: smooth;
}
body {
font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
line-height: 1.6;
color: var(--dark);
background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
overflow-x: hidden;
}
/* Premium Loading Animation */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.8; }
}
@keyframes shimmer {
0% { transform: translateX(-100%); }
100% { transform: translateX(100%); }
}
@keyframes float {
0%, 100% { transform: translateY(0px); }
50% { transform: translateY(-10px); }
}
/* Smooth Scrollbar */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
background: var(--gradient-ocean);
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: var(--primary);
}
.container { max-width: 1400px; margin: 0 auto; padding: 0 20px; }
/* Premium Breadcrumb Navigation */
.breadcrumb {
padding: 1.5rem 0;
background: rgba(255, 255, 255, 0.8);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(226, 232, 240, 0.5);
position: sticky;
top: 80px;
z-index: 50;
}
.breadcrumb-container {
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 0.9rem;
}
.breadcrumb-item {
color: var(--primary);
text-decoration: none;
font-weight: 500;
padding: 0.5rem 1rem;
border-radius: 20px;
transition: all 0.3s;
background: rgba(59, 130, 246, 0.1);
}
.breadcrumb-item:hover {
background: rgba(59, 130, 246, 0.2);
transform: translateY(-1px);
}
.breadcrumb-item.active {
background: var(--gradient-premium);
color: white;
font-weight: 600;
}
.breadcrumb-separator {
color: #64748b;
font-weight: 600;
}
/* Premium Header */
header {
background: var(--gradient-ocean);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
color: white;
padding: 1.5rem 0;
box-shadow: var(--shadow-lg);
position: sticky;
top: 0;
z-index: 1000;
border-bottom: 1px solid var(--glass-border);
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
header.scrolled {
padding: 1rem 0;
box-shadow: var(--shadow-xl);
background: rgba(15, 23, 42, 0.95);
}
.header-content {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 1rem;
}
.brand {
display: flex;
align-items: center;
gap: 12px;
font-size: 32px;
font-weight: 800;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.brand:hover {
transform: translateX(5px);
}
.logo-icon {
font-size: 2.8rem;
background: linear-gradient(135deg, #fbbf24, #f59e0b);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
filter: drop-shadow(0 2px 8px rgba(251, 191, 36, 0.4));
transition: all 0.4s ease;
}
.logo-icon:hover {
transform: scale(1.1) rotate(8deg);
filter: drop-shadow(0 4px 12px rgba(251, 191, 36, 0.6));
}
.logo-text {
background: linear-gradient(45deg, #ffffff, #93c5fd);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
line-height: 1.1;
}
.logo-subtitle {
font-size: 0.6rem;
color: rgba(255, 255, 255, 0.8);
font-weight: 500;
margin-left: -12px;
margin-top: 2px;
letter-spacing: 1.5px;
text-transform: uppercase;
opacity: 0.9;
}
nav {
display: flex;
gap: 8px;
flex-wrap: wrap;
font-size: 14px;
}
nav a {
color: white;
text-decoration: none;
font-weight: 600;
opacity: 0.9;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
padding: 12px 20px;
border-radius: 12px;
border: 1px solid transparent;
white-space: nowrap;
position: relative;
overflow: hidden;
background: var(--glass-bg);
backdrop-filter: blur(10px);
}
nav a::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: var(--gradient-premium);
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
z-index: -1;
}
nav a:hover::before {
left: 0;
}
nav a:hover {
opacity: 1;
border-color: var(--premium-gold);
transform: translateY(-3px) scale(1.05);
box-shadow: var(--shadow-md);
color: white;
}
/* Premium Hero Section */
.hero {
background: var(--gradient-ocean);
color: white;
padding: 8rem 0;
position: relative;
overflow: hidden;
min-height: 90vh;
display: flex;
align-items: center;
}
.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background:
radial-gradient(circle at 20% 80%, rgba(251, 191, 36, 0.1) 0%, transparent 50%),
radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
animation: float 6s ease-in-out infinite;
}
.hero::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 100px;
background: linear-gradient(to bottom, transparent 0%, rgba(248, 250, 252, 0.1) 100%);
}
.hero-content {
display: grid;
grid-template-columns: 2fr 1fr;
gap: 4rem;
align-items: center;
position: relative;
z-index: 1;
}
.hero h1 {
font-size: 4.5rem;
margin-bottom: 2rem;
line-height: 1.1;
font-weight: 900;
background: linear-gradient(135deg, #ffffff 0%, #fbbf24 50%, #10b981 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
animation: fadeInUp 1s ease-out;
}
.hero .subtitle {
font-size: 1.6rem;
margin-bottom: 3rem;
opacity: 0.95;
line-height: 1.5;
animation: fadeInUp 1s ease-out 0.2s both;
font-weight: 300;
}
.cta-group {
display: flex;
gap: 1rem;
flex-wrap: wrap;
margin-top: 2rem;
}
.cta-button {
display: inline-block;
background: var(--gradient-success);
color: white;
padding: 20px 40px;
border-radius: 50px;
text-decoration: none;
font-weight: 700;
font-size: 1.1rem;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
box-shadow: var(--shadow-lg);
border: 2px solid transparent;
position: relative;
overflow: hidden;
}
.cta-button::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
transition: all 0.6s;
}
.cta-button:hover::before {
left: 100%;
}
.cta-button:hover {
transform: translateY(-5px) scale(1.05);
box-shadow: var(--shadow-xl);
border-color: var(--premium-gold);
}
.cta-secondary {
background: transparent;
border-color: white;
color: white;
}
.cta-secondary:hover {
background: white;
color: var(--primary);
}
.hero-stats {
background: rgba(255,255,255,0.1);
border: 1px solid rgba(255,255,255,0.2);
border-radius: 15px;
padding: 2.5rem;
backdrop-filter: blur(10px);
}
.stat-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1.5rem;
margin-top: 1rem;
}
.stat-item {
text-align: center;
}
.stat-number {
font-size: 2.5rem;
font-weight: 900;
color: #93c5fd;
display: block;
}
.stat-label {
font-size: 0.9rem;
opacity: 0.9;
}
/* Category Navigation */
.category-nav {
background: white;
padding: 2rem 0;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
border-bottom: 1px solid #e2e8f0;
}
.category-tabs {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
gap: 1.5rem;
max-width: 1400px;
margin: 3rem auto;
padding: 2rem;
background: rgba(255, 255, 255, 0.8);
backdrop-filter: blur(20px);
border-radius: 20px;
box-shadow: var(--shadow-lg);
}
.category-tab {
background: var(--gradient-glass);
border: 2px solid rgba(255, 255, 255, 0.3);
border-radius: 16px;
padding: 2rem 1.5rem;
text-align: center;
cursor: pointer;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
text-decoration: none;
color: var(--dark);
font-weight: 700;
position: relative;
overflow: hidden;
box-shadow: var(--shadow-sm);
}
.category-tab::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: var(--gradient-ocean);
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
z-index: -1;
}
.category-tab:hover::before, .category-tab.active::before {
left: 0;
}
.category-tab:hover, .category-tab.active {
color: white;
transform: translateY(-5px) scale(1.02);
box-shadow: var(--shadow-lg);
border-color: var(--premium-gold);
}
.category-icon {
font-size: 2rem;
display: block;
margin-bottom: 0.5rem;
}
/* Main Content */
main { padding: 4rem 0; }
.section {
margin-bottom: 6rem;
}
.section-header {
text-align: center;
margin-bottom: 4rem;
}
.section-title {
font-size: 3rem;
margin-bottom: 1rem;
color: var(--primary);
font-weight: 800;
}
.section-subtitle {
font-size: 1.3rem;
color: #64748b;
max-width: 600px;
margin: 0 auto;
}
/* Product Grid */
.products-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 1.5rem;
}
.product-card {
background: rgba(255, 255, 255, 0.9);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border-radius: 20px;
overflow: hidden;
box-shadow: var(--shadow-md);
transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
border: 1px solid rgba(255, 255, 255, 0.2);
position: relative;
animation: fadeInUp 0.6s ease-out;
}
.product-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 3px;
background: var(--gradient-premium);
transform: scaleX(0);
transition: transform 0.3s ease;
}
.product-card:hover::before {
transform: scaleX(1);
}
.product-card:hover {
transform: translateY(-12px) rotateY(2deg);
box-shadow: var(--shadow-xl);
border-color: rgba(251, 191, 36, 0.3);
}
.product-badge {
position: absolute;
top: 20px;
right: 20px;
background: var(--gradient-premium);
color: white;
padding: 10px 16px;
border-radius: 25px;
font-size: 0.8rem;
font-weight: 700;
z-index: 10;
box-shadow: var(--shadow-sm);
animation: pulse 2s infinite;
border: 1px solid rgba(255, 255, 255, 0.3);
}
.product-badge.bestseller {
background: var(--gradient-success);
animation: float 3s ease-in-out infinite;
}
.product-badge.featured {
background: var(--gradient-ocean);
animation: pulse 1.5s infinite;
}
.product-image {
height: 200px;
background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
font-size: 1.2rem;
color: var(--primary);
position: relative;
overflow: hidden;
}
.product-image::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
transition: left 0.5s;
}
.product-card:hover .product-image::before {
left: 100%;
}
.product-content { padding: 1.5rem; }
.product-category {
color: var(--accent);
font-weight: 700;
font-size: 0.75rem;
text-transform: uppercase;
margin-bottom: 0.5rem;
letter-spacing: 0.5px;
}
.product-title {
font-size: 1.2rem;
font-weight: 700;
margin-bottom: 0.6rem;
color: var(--dark);
line-height: 1.3;
}
.product-price {
font-size: 1.2rem;
font-weight: 800;
color: var(--success);
margin-bottom: 1rem;
}
.product-features {
list-style: none;
margin-bottom: 1.5rem;
}
.product-features li {
padding: 4px 0;
font-size: 0.9rem;
color: #475569;
display: flex;
align-items: center;
}
.product-features li::before {
content: "✓";
color: var(--success);
font-weight: 900;