easyorders 0.1.14 → 0.1.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +93 -93
- package/dist/bin/cli.js +12 -5
- package/dist/template/theme/config.json +113 -95
- package/dist/template/theme/home-sections/Tilted-Scrolling-Marque/config.json +107 -0
- package/dist/template/theme/home-sections/Tilted-Scrolling-Marque/template.liquid +171 -0
- package/dist/template/theme/home-sections/category-mosaic/config.json +89 -4
- package/dist/template/theme/home-sections/category-mosaic/template.liquid +84 -69
- package/dist/template/theme/home-sections/different-hero/config.json +199 -0
- package/dist/template/theme/home-sections/different-hero/template.liquid +219 -0
- package/dist/template/theme/home-sections/editorial-feature/config.json +27 -1
- package/dist/template/theme/home-sections/editorial-feature/template.liquid +11 -10
- package/dist/template/theme/home-sections/newsletter-luxe/config.json +28 -2
- package/dist/template/theme/home-sections/newsletter-luxe/template.liquid +19 -13
- package/dist/template/theme/home-sections/runway-hero/config.json +87 -30
- package/dist/template/theme/home-sections/runway-hero/template.liquid +59 -29
- package/dist/template/theme/home-sections/shop-the-look/config.json +93 -1
- package/dist/template/theme/home-sections/shop-the-look/template.liquid +41 -19
- package/dist/template/theme/home-sections/slider-before-after/config.json +213 -0
- package/dist/template/theme/home-sections/slider-before-after/template.liquid +336 -0
- package/dist/template/theme/home-sections/test-hero-allbird/config.json +130 -0
- package/dist/template/theme/home-sections/test-hero-allbird/template.liquid +149 -0
- package/dist/template/theme/home-sections/trust-promise/config.json +76 -2
- package/dist/template/theme/home-sections/trust-promise/template.liquid +119 -96
- package/dist/template/theme/home-sections/zoom-parallax/config.json +48 -0
- package/dist/template/theme/home-sections/zoom-parallax/template.liquid +135 -0
- package/dist/template/theme/product-data-schema.json +27 -0
- package/dist/template/theme/schema.json +136 -151
- package/dist/template/theme/script.js +1095 -586
- package/dist/template/theme/sections/breadcrumbs.liquid +17 -17
- package/dist/template/theme/sections/categories.liquid +26 -10
- package/dist/template/theme/sections/fake-counter.liquid +27 -27
- package/dist/template/theme/sections/fake-stock.liquid +6 -6
- package/dist/template/theme/sections/fake-visitor.liquid +6 -6
- package/dist/template/theme/sections/featured-products.liquid +143 -110
- package/dist/template/theme/sections/fixed-buy-button.liquid +51 -46
- package/dist/template/theme/sections/footer.liquid +128 -129
- package/dist/template/theme/sections/gallery.liquid +65 -61
- package/dist/template/theme/sections/header.liquid +232 -152
- package/dist/template/theme/sections/home-products-grid.liquid +167 -109
- package/dist/template/theme/sections/list-products.liquid +136 -93
- package/dist/template/theme/sections/order-invoice.liquid +102 -154
- package/dist/template/theme/sections/product-description.liquid +40 -30
- package/dist/template/theme/sections/product-details.liquid +48 -63
- package/dist/template/theme/sections/products-grid.liquid +134 -86
- package/dist/template/theme/sections/related-products.liquid +152 -88
- package/dist/template/theme/sections/reviews.liquid +70 -55
- package/dist/template/theme/sections/slider.liquid +43 -43
- package/dist/template/theme/sections/thanks.liquid +33 -33
- package/dist/template/theme/style.css +5617 -3923
- package/dist/template/theme/theme-data.json +26 -9
- package/package.json +40 -40
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
|
-
"icon": "https://
|
|
2
|
+
"icon": "https://files.easy-orders.net/1778106902099515265.png",
|
|
3
3
|
"label": "Runway hero",
|
|
4
4
|
"section_schema": [
|
|
5
5
|
{
|
|
6
6
|
"name": "image",
|
|
7
7
|
"type": "image",
|
|
8
8
|
"default": "",
|
|
9
|
-
"description": "Full-width background image"
|
|
9
|
+
"description": "Full-width background image URL"
|
|
10
10
|
},
|
|
11
11
|
{
|
|
12
12
|
"name": "kicker",
|
|
@@ -26,28 +26,70 @@
|
|
|
26
26
|
"default": "Silhouettes, textures, and tones curated for everyday luxury.",
|
|
27
27
|
"description": "Supporting line under the headline"
|
|
28
28
|
},
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
29
|
+
{
|
|
30
|
+
"name": "primary_label",
|
|
31
|
+
"type": "string",
|
|
32
|
+
"default": "Shop collection",
|
|
33
|
+
"description": "Primary button label"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"name": "primary_link_type",
|
|
37
|
+
"type": "select",
|
|
38
|
+
"default": "category",
|
|
39
|
+
"description": "نوع رابط الزر الأول",
|
|
40
|
+
"options": [
|
|
41
|
+
{ "label": "قسم (Category)", "value": "category" },
|
|
42
|
+
{ "label": "منتج (Product)", "value": "product" },
|
|
43
|
+
{ "label": "صفحة (Page)", "value": "page" }
|
|
44
|
+
]
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"name": "primary_category_id",
|
|
48
|
+
"type": "category_single_select",
|
|
49
|
+
"description": "اختيار القسم (لو نوع الرابط = قسم)"
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"name": "primary_product_id",
|
|
53
|
+
"type": "product_single_select",
|
|
54
|
+
"description": "اختيار المنتج (لو نوع الرابط = منتج)"
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"name": "primary_page_id",
|
|
58
|
+
"type": "page_single_select",
|
|
59
|
+
"description": "اختيار الصفحة (لو نوع الرابط = صفحة)"
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"name": "secondary_label",
|
|
63
|
+
"type": "string",
|
|
64
|
+
"default": "Lookbook",
|
|
65
|
+
"description": "Secondary button label (hidden if empty)"
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"name": "secondary_link_type",
|
|
69
|
+
"type": "select",
|
|
70
|
+
"default": "page",
|
|
71
|
+
"description": "نوع رابط الزر الثاني",
|
|
72
|
+
"options": [
|
|
73
|
+
{ "label": "قسم (Category)", "value": "category" },
|
|
74
|
+
{ "label": "منتج (Product)", "value": "product" },
|
|
75
|
+
{ "label": "صفحة (Page)", "value": "page" }
|
|
76
|
+
]
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"name": "secondary_category_id",
|
|
80
|
+
"type": "category_single_select",
|
|
81
|
+
"description": "اختيار القسم للزر الثاني"
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"name": "secondary_product_id",
|
|
85
|
+
"type": "product_single_select",
|
|
86
|
+
"description": "اختيار المنتج للزر الثاني"
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"name": "secondary_page_id",
|
|
90
|
+
"type": "page_single_select",
|
|
91
|
+
"description": "اختيار الصفحة للزر الثاني"
|
|
92
|
+
},
|
|
51
93
|
{
|
|
52
94
|
"name": "overlay_strength",
|
|
53
95
|
"type": "number",
|
|
@@ -77,14 +119,29 @@
|
|
|
77
119
|
]
|
|
78
120
|
},
|
|
79
121
|
{
|
|
80
|
-
"name": "
|
|
122
|
+
"name": "min_height_vh",
|
|
123
|
+
"type": "number",
|
|
124
|
+
"default": 72,
|
|
125
|
+
"description": "Minimum section height as % of viewport height (e.g. 72 = 72vh). Typical range 40–100."
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"name": "enable_animation",
|
|
129
|
+
"type": "boolean",
|
|
130
|
+
"default": true,
|
|
131
|
+
"description": "Enable section animation"
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"name": "animation_style",
|
|
81
135
|
"type": "select",
|
|
82
|
-
"default": "
|
|
83
|
-
"description": "
|
|
136
|
+
"default": "fade-up",
|
|
137
|
+
"description": "Animation style",
|
|
84
138
|
"options": [
|
|
85
|
-
{ "label": "
|
|
86
|
-
{ "label": "
|
|
87
|
-
{ "label": "
|
|
139
|
+
{ "label": "Fade Up", "value": "fade-up" },
|
|
140
|
+
{ "label": "Zoom In", "value": "zoom-in" },
|
|
141
|
+
{ "label": "Blur Reveal", "value": "blur-reveal" },
|
|
142
|
+
{ "label": "Slide Cascade", "value": "slide-cascade" },
|
|
143
|
+
{ "label": "Fade Right", "value": "fade-right" },
|
|
144
|
+
{ "label": "Flip Up", "value": "flip-up" }
|
|
88
145
|
]
|
|
89
146
|
}
|
|
90
147
|
]
|
|
@@ -1,50 +1,80 @@
|
|
|
1
|
+
{% assign runway_mh = section_data.min_height_vh %}
|
|
2
|
+
{% if runway_mh == blank or runway_mh == nil %}
|
|
3
|
+
{% assign runway_mh = 72 %}
|
|
4
|
+
{% if section_data.min_height == 'compact' %}
|
|
5
|
+
{% assign runway_mh = 52 %}
|
|
6
|
+
{% elsif section_data.min_height == 'screen' %}
|
|
7
|
+
{% assign runway_mh = 92 %}
|
|
8
|
+
{% elsif section_data.min_height == 'tall' %}
|
|
9
|
+
{% assign runway_mh = 72 %}
|
|
10
|
+
{% endif %}
|
|
11
|
+
{% endif %}
|
|
12
|
+
{% assign runway_mh = runway_mh | plus: 0 %}
|
|
13
|
+
{% if runway_mh < 20 %}{% assign runway_mh = 20 %}{% endif %}
|
|
14
|
+
{% if runway_mh > 100 %}{% assign runway_mh = 100 %}{% endif %}
|
|
1
15
|
<section
|
|
2
|
-
class="runway-hero runway-hero--{{ section_data.alignment | default: 'center' }}"
|
|
16
|
+
class="eo-home-section runway-hero runway-hero--{{ section_data.alignment | default: 'center' }}"
|
|
17
|
+
{% if section_data.enable_animation != false %}data-section-anim="{{ section_data.animation_style | default: 'fade-up' }}"{% endif %}
|
|
3
18
|
style="
|
|
4
19
|
--runway-text: {{ section_data.text_color | default: '#FAF7F2' }};
|
|
5
20
|
--runway-accent: {{ section_data.accent_color | default: '#C9A962' }};
|
|
6
21
|
--runway-overlay: {{ section_data.overlay_strength | default: 42 | divided_by: 100.0 }};
|
|
7
|
-
--runway-min-h: {
|
|
22
|
+
--runway-min-h: {{ runway_mh }}vh;
|
|
8
23
|
{% if section_data.image != blank %}background-image: url('{{ section_data.image }}');{% endif %}
|
|
9
24
|
"
|
|
10
25
|
>
|
|
11
26
|
<div class="runway-hero__overlay" aria-hidden="true"></div>
|
|
12
27
|
<div class="runway-hero__inner">
|
|
13
28
|
{% if section_data.kicker != blank %}
|
|
14
|
-
<p class="runway-hero__kicker">{{ section_data.kicker }}</p>
|
|
29
|
+
<p class="runway-hero__kicker ab-anim-el">{{ section_data.kicker }}</p>
|
|
15
30
|
{% endif %}
|
|
16
31
|
{% if section_data.headline != blank %}
|
|
17
|
-
<h1 class="runway-hero__title">{{ section_data.headline }}</h1>
|
|
32
|
+
<h1 class="runway-hero__title ab-anim-el">{{ section_data.headline }}</h1>
|
|
18
33
|
{% endif %}
|
|
19
34
|
{% if section_data.subheadline != blank %}
|
|
20
|
-
<p class="runway-hero__lede">{{ section_data.subheadline }}</p>
|
|
35
|
+
<p class="runway-hero__lede ab-anim-el">{{ section_data.subheadline }}</p>
|
|
21
36
|
{% endif %}
|
|
22
|
-
<div class="runway-hero__actions">
|
|
37
|
+
<div class="runway-hero__actions ab-anim-el">
|
|
23
38
|
{% if section_data.primary_label != blank %}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
39
|
+
{% assign p_type = section_data.primary_link_type | default: 'category' %}
|
|
40
|
+
{% if p_type == 'category' and section_data.primary_category_id != blank %}
|
|
41
|
+
<a class="runway-hero__btn runway-hero__btn--primary" href="#" data-eo-hs-cta="1" data-eo-hs-cta-entity="categories" data-eo-hs-cta-id="{{ section_data.primary_category_id }}">
|
|
42
|
+
{{ section_data.primary_label }}
|
|
43
|
+
</a>
|
|
44
|
+
{% elsif p_type == 'product' and section_data.primary_product_id != blank %}
|
|
45
|
+
<a class="runway-hero__btn runway-hero__btn--primary" href="#" data-eo-hs-cta="1" data-eo-hs-cta-entity="products" data-eo-hs-cta-id="{{ section_data.primary_product_id }}">
|
|
46
|
+
{{ section_data.primary_label }}
|
|
47
|
+
</a>
|
|
48
|
+
{% elsif p_type == 'page' and section_data.primary_page_id != blank %}
|
|
49
|
+
<a class="runway-hero__btn runway-hero__btn--primary" href="#" data-eo-hs-cta="1" data-eo-hs-cta-entity="pages" data-eo-hs-cta-id="{{ section_data.primary_page_id }}">
|
|
50
|
+
{{ section_data.primary_label }}
|
|
51
|
+
</a>
|
|
52
|
+
{% else %}
|
|
53
|
+
<a class="runway-hero__btn runway-hero__btn--primary" href="/products">
|
|
54
|
+
{{ section_data.primary_label }}
|
|
55
|
+
</a>
|
|
56
|
+
{% endif %}
|
|
35
57
|
{% endif %}
|
|
58
|
+
|
|
36
59
|
{% if section_data.secondary_label != blank %}
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
href="#"
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
60
|
+
{% assign s_type = section_data.secondary_link_type | default: 'page' %}
|
|
61
|
+
{% if s_type == 'category' and section_data.secondary_category_id != blank %}
|
|
62
|
+
<a class="runway-hero__btn runway-hero__btn--ghost" href="#" data-eo-hs-cta="1" data-eo-hs-cta-entity="categories" data-eo-hs-cta-id="{{ section_data.secondary_category_id }}">
|
|
63
|
+
{{ section_data.secondary_label }}
|
|
64
|
+
</a>
|
|
65
|
+
{% elsif s_type == 'product' and section_data.secondary_product_id != blank %}
|
|
66
|
+
<a class="runway-hero__btn runway-hero__btn--ghost" href="#" data-eo-hs-cta="1" data-eo-hs-cta-entity="products" data-eo-hs-cta-id="{{ section_data.secondary_product_id }}">
|
|
67
|
+
{{ section_data.secondary_label }}
|
|
68
|
+
</a>
|
|
69
|
+
{% elsif s_type == 'page' and section_data.secondary_page_id != blank %}
|
|
70
|
+
<a class="runway-hero__btn runway-hero__btn--ghost" href="#" data-eo-hs-cta="1" data-eo-hs-cta-entity="pages" data-eo-hs-cta-id="{{ section_data.secondary_page_id }}">
|
|
71
|
+
{{ section_data.secondary_label }}
|
|
72
|
+
</a>
|
|
73
|
+
{% else %}
|
|
74
|
+
<a class="runway-hero__btn runway-hero__btn--ghost" href="#">
|
|
75
|
+
{{ section_data.secondary_label }}
|
|
76
|
+
</a>
|
|
77
|
+
{% endif %}
|
|
48
78
|
{% endif %}
|
|
49
79
|
</div>
|
|
50
80
|
</div>
|
|
@@ -63,7 +93,7 @@
|
|
|
63
93
|
background-size: cover;
|
|
64
94
|
background-position: center;
|
|
65
95
|
color: var(--runway-text, #faf7f2);
|
|
66
|
-
text-align: center;
|
|
96
|
+
text-align: center;margin-bottom: 15px;
|
|
67
97
|
}
|
|
68
98
|
.runway-hero--left {
|
|
69
99
|
text-align: left;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"icon": "https://
|
|
2
|
+
"icon": "https://files.easy-orders.net/1778106825738601358.png",
|
|
3
3
|
"label": "Shop the look",
|
|
4
4
|
"section_schema": [
|
|
5
5
|
{
|
|
@@ -20,6 +20,54 @@
|
|
|
20
20
|
"default": "One outfit, every piece linked—build yours in a single pass.",
|
|
21
21
|
"description": "Intro line beside the hero look"
|
|
22
22
|
},
|
|
23
|
+
{
|
|
24
|
+
"name": "heading_title_color",
|
|
25
|
+
"type": "color",
|
|
26
|
+
"default": "",
|
|
27
|
+
"description": "Section title color (empty = inherit from theme)"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"name": "heading_title_size",
|
|
31
|
+
"type": "number",
|
|
32
|
+
"default": 38,
|
|
33
|
+
"description": "Section title size (px)"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"name": "heading_title_weight",
|
|
37
|
+
"type": "select",
|
|
38
|
+
"default": "500",
|
|
39
|
+
"description": "Section title font weight",
|
|
40
|
+
"options": [
|
|
41
|
+
{ "label": "Regular 400", "value": "400" },
|
|
42
|
+
{ "label": "Medium 500", "value": "500" },
|
|
43
|
+
{ "label": "SemiBold 600", "value": "600" },
|
|
44
|
+
{ "label": "Bold 700", "value": "700" }
|
|
45
|
+
]
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"name": "heading_subtitle_color",
|
|
49
|
+
"type": "color",
|
|
50
|
+
"default": "",
|
|
51
|
+
"description": "Section subtitle color (empty = inherit)"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"name": "heading_subtitle_size",
|
|
55
|
+
"type": "number",
|
|
56
|
+
"default": 16,
|
|
57
|
+
"description": "Section subtitle size (px)"
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"name": "heading_subtitle_weight",
|
|
61
|
+
"type": "select",
|
|
62
|
+
"default": "400",
|
|
63
|
+
"description": "Section subtitle font weight",
|
|
64
|
+
"options": [
|
|
65
|
+
{ "label": "Regular 400", "value": "400" },
|
|
66
|
+
{ "label": "Medium 500", "value": "500" },
|
|
67
|
+
{ "label": "SemiBold 600", "value": "600" },
|
|
68
|
+
{ "label": "Bold 700", "value": "700" }
|
|
69
|
+
]
|
|
70
|
+
},
|
|
23
71
|
{
|
|
24
72
|
"name": "look_image",
|
|
25
73
|
"type": "image",
|
|
@@ -66,10 +114,54 @@
|
|
|
66
114
|
{ "label": "Soft charcoal", "value": "charcoal" }
|
|
67
115
|
]
|
|
68
116
|
},
|
|
117
|
+
{
|
|
118
|
+
"name": "card_bg_color",
|
|
119
|
+
"type": "color",
|
|
120
|
+
"default": "",
|
|
121
|
+
"description": "لون خلفية كارد المنتج (فارغ = افتراضي)"
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"name": "card_title_color",
|
|
125
|
+
"type": "color",
|
|
126
|
+
"default": "",
|
|
127
|
+
"description": "لون اسم المنتج في الكارد"
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
"name": "card_price_color",
|
|
131
|
+
"type": "color",
|
|
132
|
+
"default": "",
|
|
133
|
+
"description": "لون السعر الحالي"
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"name": "card_old_price_color",
|
|
137
|
+
"type": "color",
|
|
138
|
+
"default": "",
|
|
139
|
+
"description": "لون السعر القديم (قبل الخصم)"
|
|
140
|
+
},
|
|
69
141
|
{
|
|
70
142
|
"name": "pick_product_ids",
|
|
71
143
|
"type": "product_multi_select",
|
|
72
144
|
"description": "Products to show beside the hero (search and reorder in the picker)"
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
"name": "enable_animation",
|
|
148
|
+
"type": "boolean",
|
|
149
|
+
"default": true,
|
|
150
|
+
"description": "تشغيل أنيميشن الدخول"
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
"name": "animation_style",
|
|
154
|
+
"type": "select",
|
|
155
|
+
"default": "fade-up",
|
|
156
|
+
"description": "شكل الأنيميشن",
|
|
157
|
+
"options": [
|
|
158
|
+
{ "label": "Fade Up", "value": "fade-up" },
|
|
159
|
+
{ "label": "Zoom In", "value": "zoom-in" },
|
|
160
|
+
{ "label": "Blur Reveal", "value": "blur-reveal" },
|
|
161
|
+
{ "label": "Slide Cascade", "value": "slide-cascade" },
|
|
162
|
+
{ "label": "Fade Right", "value": "fade-right" },
|
|
163
|
+
{ "label": "Flip Up", "value": "flip-up" }
|
|
164
|
+
]
|
|
73
165
|
}
|
|
74
166
|
]
|
|
75
167
|
}
|
|
@@ -1,8 +1,21 @@
|
|
|
1
1
|
<section
|
|
2
|
-
class="shop-the-look shop-the-look--{{ section_data.surface | default: 'cream' }}"
|
|
3
|
-
|
|
2
|
+
class="eo-home-section shop-the-look shop-the-look--{{ section_data.surface | default: 'cream' }}"
|
|
3
|
+
{% if section_data.enable_animation != false %}data-section-anim="{{ section_data.animation_style | default: 'fade-up' }}"{% endif %}
|
|
4
|
+
style="
|
|
5
|
+
--stl-accent: {{ section_data.accent_color | default: '#C9A962' }};
|
|
6
|
+
--stl-card-bg: {{ section_data.card_bg_color | default: '' }};
|
|
7
|
+
--stl-card-title: {{ section_data.card_title_color | default: '' }};
|
|
8
|
+
--stl-card-price: {{ section_data.card_price_color | default: '' }};
|
|
9
|
+
--stl-card-old-price: {{ section_data.card_old_price_color | default: '' }};
|
|
10
|
+
{% if section_data.heading_title_color != blank %}--stl-head-title-color: {{ section_data.heading_title_color }};{% endif %}
|
|
11
|
+
--stl-head-title-size: {{ section_data.heading_title_size | default: 38 }}px;
|
|
12
|
+
--stl-head-title-weight: {{ section_data.heading_title_weight | default: '500' }};
|
|
13
|
+
{% if section_data.heading_subtitle_color != blank %}--stl-head-subtitle-color: {{ section_data.heading_subtitle_color }};--stl-head-subtitle-opacity: 1;{% endif %}
|
|
14
|
+
--stl-head-subtitle-size: {{ section_data.heading_subtitle_size | default: 16 }}px;
|
|
15
|
+
--stl-head-subtitle-weight: {{ section_data.heading_subtitle_weight | default: '400' }};
|
|
16
|
+
"
|
|
4
17
|
>
|
|
5
|
-
<header class="shop-the-look__head">
|
|
18
|
+
<header class="shop-the-look__head ab-anim-el">
|
|
6
19
|
{% if section_data.eyebrow != blank %}
|
|
7
20
|
<p class="shop-the-look__eyebrow">{{ section_data.eyebrow }}</p>
|
|
8
21
|
{% endif %}
|
|
@@ -15,7 +28,7 @@
|
|
|
15
28
|
</header>
|
|
16
29
|
|
|
17
30
|
<div class="shop-the-look__layout">
|
|
18
|
-
<a class="shop-the-look__hero" href="{{ section_data.look_url | default: '/products' }}">
|
|
31
|
+
<a class="shop-the-look__hero ab-anim-el" href="{{ section_data.look_url | default: '/products' }}">
|
|
19
32
|
<div class="shop-the-look__hero-visual">
|
|
20
33
|
{% if section_data.look_image != blank %}
|
|
21
34
|
<img
|
|
@@ -45,9 +58,10 @@
|
|
|
45
58
|
</a>
|
|
46
59
|
|
|
47
60
|
<div
|
|
48
|
-
class="shop-the-look__picks eo-hs{% if section_data.pick_product_ids == blank or section_data.pick_product_ids.size == 0 %} eo-hs--empty{% endif %}"
|
|
61
|
+
class="shop-the-look__picks eo-hs ab-anim-el{% if section_data.pick_product_ids == blank or section_data.pick_product_ids.size == 0 %} eo-hs--empty{% endif %}"
|
|
49
62
|
data-eo-hs-entity="products"
|
|
50
63
|
data-eo-hs-ids="{{ section_data.pick_product_ids | join: ',' | strip }}"
|
|
64
|
+
data-eo-hs-currency="{{ currency }}"
|
|
51
65
|
>
|
|
52
66
|
<div class="shop-the-look__picks-inner" data-eo-hs-mount>
|
|
53
67
|
{% if section_data.pick_product_ids and section_data.pick_product_ids.size > 0 %}
|
|
@@ -68,6 +82,7 @@
|
|
|
68
82
|
}
|
|
69
83
|
.shop-the-look--cream {
|
|
70
84
|
background: #f3efe8;
|
|
85
|
+
margin-block: 15px;
|
|
71
86
|
color: #1c1a17;
|
|
72
87
|
}
|
|
73
88
|
.shop-the-look--charcoal {
|
|
@@ -75,8 +90,8 @@
|
|
|
75
90
|
color: #f4eee6;
|
|
76
91
|
}
|
|
77
92
|
.shop-the-look__head {
|
|
78
|
-
|
|
79
|
-
margin
|
|
93
|
+
max-width: 1160px;
|
|
94
|
+
margin: 0 auto 30px;
|
|
80
95
|
}
|
|
81
96
|
.shop-the-look__eyebrow {
|
|
82
97
|
margin: 0 0 0.4rem;
|
|
@@ -89,15 +104,18 @@
|
|
|
89
104
|
.shop-the-look__title {
|
|
90
105
|
margin: 0 0 0.5rem;
|
|
91
106
|
font-family: ui-serif, Georgia, Cambria, 'Times New Roman', Times, serif;
|
|
92
|
-
font-weight: 500;
|
|
93
|
-
font-size: clamp(1.
|
|
107
|
+
font-weight: var(--stl-head-title-weight, 500);
|
|
108
|
+
font-size: clamp(1.25rem, 3vw, var(--stl-head-title-size, 38px));
|
|
94
109
|
line-height: 1.15;
|
|
110
|
+
color: var(--stl-head-title-color, inherit);
|
|
95
111
|
}
|
|
96
112
|
.shop-the-look__subtitle {
|
|
97
113
|
margin: 0;
|
|
98
|
-
font-size:
|
|
114
|
+
font-size: var(--stl-head-subtitle-size, 16px);
|
|
115
|
+
font-weight: var(--stl-head-subtitle-weight, 400);
|
|
99
116
|
line-height: 1.65;
|
|
100
|
-
opacity: 0.82;
|
|
117
|
+
opacity: var(--stl-head-subtitle-opacity, 0.82);
|
|
118
|
+
color: var(--stl-head-subtitle-color, inherit);
|
|
101
119
|
}
|
|
102
120
|
.shop-the-look__layout {
|
|
103
121
|
max-width: 1160px;
|
|
@@ -118,9 +136,8 @@
|
|
|
118
136
|
overflow: hidden;
|
|
119
137
|
text-decoration: none;
|
|
120
138
|
color: inherit;
|
|
121
|
-
min-height: clamp(300px,
|
|
122
|
-
|
|
123
|
-
transition: transform 0.25s ease, box-shadow 0.25s ease;
|
|
139
|
+
min-height: clamp(300px, 60vh, 540px);
|
|
140
|
+
transition: transform 0.25s ease, box-shadow 0.25s ease;
|
|
124
141
|
}
|
|
125
142
|
.shop-the-look--charcoal .shop-the-look__hero {
|
|
126
143
|
box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
|
|
@@ -208,14 +225,13 @@
|
|
|
208
225
|
}
|
|
209
226
|
@media (max-width: 959px) {
|
|
210
227
|
.shop-the-look__picks-inner {
|
|
211
|
-
|
|
212
|
-
overflow-x: auto;
|
|
228
|
+
overflow-x: auto;
|
|
213
229
|
padding-bottom: 0.35rem;
|
|
214
230
|
scroll-snap-type: x mandatory;
|
|
215
231
|
-webkit-overflow-scrolling: touch;
|
|
216
232
|
}
|
|
217
233
|
.shop-the-look__picks-inner .eo-hs-card--product {
|
|
218
|
-
flex: 0 0 min(
|
|
234
|
+
flex: 0 0 min(140px, 72vw);
|
|
219
235
|
scroll-snap-align: start;
|
|
220
236
|
}
|
|
221
237
|
}
|
|
@@ -239,7 +255,7 @@
|
|
|
239
255
|
color: inherit;
|
|
240
256
|
padding: 0.65rem;
|
|
241
257
|
border-radius: 8px;
|
|
242
|
-
background: rgba(255, 255, 255, 0.55);
|
|
258
|
+
background: var(--stl-card-bg, rgba(255, 255, 255, 0.55));
|
|
243
259
|
border: 1px solid rgba(28, 26, 23, 0.06);
|
|
244
260
|
transition: background 0.2s ease, transform 0.2s ease;
|
|
245
261
|
}
|
|
@@ -280,11 +296,17 @@
|
|
|
280
296
|
font-size: 0.9rem;
|
|
281
297
|
font-weight: 600;
|
|
282
298
|
line-height: 1.35;
|
|
299
|
+
color: var(--stl-card-title, inherit);
|
|
283
300
|
}
|
|
284
301
|
.shop-the-look__picks-inner .eo-hs-card--product .eo-hs-card__meta {
|
|
285
302
|
font-size: 0.82rem;
|
|
286
|
-
opacity: 0.75;
|
|
287
303
|
letter-spacing: 0.03em;
|
|
304
|
+
color: var(--stl-card-price, inherit);
|
|
305
|
+
opacity: 0.85;DISPLAY: flex;
|
|
306
|
+
GAP: 8PX;
|
|
307
|
+
}
|
|
308
|
+
.shop-the-look__picks-inner .eo-hs-card--product .eo-hs-card__meta del {
|
|
309
|
+
color: var(--stl-card-old-price, inherit);
|
|
288
310
|
}
|
|
289
311
|
.shop-the-look__picks .eo-hs-error {
|
|
290
312
|
margin: 0;
|