easyorders 0.1.15 → 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.
Files changed (43) hide show
  1. package/dist/template/theme/config.json +45 -27
  2. package/dist/template/theme/home-sections/Tilted-Scrolling-Marque/config.json +107 -0
  3. package/dist/template/theme/home-sections/Tilted-Scrolling-Marque/template.liquid +171 -0
  4. package/dist/template/theme/home-sections/category-mosaic/config.json +125 -40
  5. package/dist/template/theme/home-sections/category-mosaic/template.liquid +170 -155
  6. package/dist/template/theme/home-sections/different-hero/config.json +199 -0
  7. package/dist/template/theme/home-sections/different-hero/template.liquid +219 -0
  8. package/dist/template/theme/home-sections/editorial-feature/config.json +93 -67
  9. package/dist/template/theme/home-sections/editorial-feature/template.liquid +154 -153
  10. package/dist/template/theme/home-sections/newsletter-luxe/config.json +86 -60
  11. package/dist/template/theme/home-sections/newsletter-luxe/template.liquid +150 -144
  12. package/dist/template/theme/home-sections/runway-hero/config.json +148 -91
  13. package/dist/template/theme/home-sections/runway-hero/template.liquid +189 -159
  14. package/dist/template/theme/home-sections/shop-the-look/config.json +167 -75
  15. package/dist/template/theme/home-sections/shop-the-look/template.liquid +326 -304
  16. package/dist/template/theme/home-sections/slider-before-after/config.json +213 -0
  17. package/dist/template/theme/home-sections/slider-before-after/template.liquid +336 -0
  18. package/dist/template/theme/home-sections/test-hero-allbird/config.json +130 -0
  19. package/dist/template/theme/home-sections/test-hero-allbird/template.liquid +149 -0
  20. package/dist/template/theme/home-sections/trust-promise/config.json +121 -47
  21. package/dist/template/theme/home-sections/trust-promise/template.liquid +34 -11
  22. package/dist/template/theme/home-sections/zoom-parallax/config.json +48 -0
  23. package/dist/template/theme/home-sections/zoom-parallax/template.liquid +135 -0
  24. package/dist/template/theme/product-data-schema.json +27 -0
  25. package/dist/template/theme/schema.json +114 -129
  26. package/dist/template/theme/script.js +694 -185
  27. package/dist/template/theme/sections/categories.liquid +20 -4
  28. package/dist/template/theme/sections/featured-products.liquid +65 -32
  29. package/dist/template/theme/sections/fixed-buy-button.liquid +6 -1
  30. package/dist/template/theme/sections/footer.liquid +90 -91
  31. package/dist/template/theme/sections/gallery.liquid +37 -33
  32. package/dist/template/theme/sections/header.liquid +105 -25
  33. package/dist/template/theme/sections/home-products-grid.liquid +68 -10
  34. package/dist/template/theme/sections/list-products.liquid +73 -30
  35. package/dist/template/theme/sections/order-invoice.liquid +39 -91
  36. package/dist/template/theme/sections/product-description.liquid +18 -8
  37. package/dist/template/theme/sections/product-details.liquid +9 -24
  38. package/dist/template/theme/sections/products-grid.liquid +102 -54
  39. package/dist/template/theme/sections/related-products.liquid +124 -60
  40. package/dist/template/theme/sections/reviews.liquid +43 -28
  41. package/dist/template/theme/style.css +2283 -589
  42. package/dist/template/theme/theme-data.json +25 -8
  43. package/package.json +1 -1
@@ -1,159 +1,189 @@
1
- <section
2
- class="runway-hero runway-hero--{{ section_data.alignment | default: 'center' }}"
3
- style="
4
- --runway-text: {{ section_data.text_color | default: '#FAF7F2' }};
5
- --runway-accent: {{ section_data.accent_color | default: '#C9A962' }};
6
- --runway-overlay: {{ section_data.overlay_strength | default: 42 | divided_by: 100.0 }};
7
- --runway-min-h: {% if section_data.min_height == 'compact' %}52vh{% elsif section_data.min_height == 'screen' %}92vh{% else %}72vh{% endif %};
8
- {% if section_data.image != blank %}background-image: url('{{ section_data.image }}');{% endif %}
9
- "
10
- >
11
- <div class="runway-hero__overlay" aria-hidden="true"></div>
12
- <div class="runway-hero__inner">
13
- {% if section_data.kicker != blank %}
14
- <p class="runway-hero__kicker">{{ section_data.kicker }}</p>
15
- {% endif %}
16
- {% if section_data.headline != blank %}
17
- <h1 class="runway-hero__title">{{ section_data.headline }}</h1>
18
- {% endif %}
19
- {% if section_data.subheadline != blank %}
20
- <p class="runway-hero__lede">{{ section_data.subheadline }}</p>
21
- {% endif %}
22
- <div class="runway-hero__actions">
23
- {% if section_data.primary_label != blank %}
24
- <a
25
- class="runway-hero__btn runway-hero__btn--primary"
26
- href="{% if section_data.primary_category_id != blank %}#{% else %}/products{% endif %}"
27
- {% if section_data.primary_category_id != blank %}
28
- data-eo-hs-cta="1"
29
- data-eo-hs-cta-entity="categories"
30
- data-eo-hs-cta-id="{{ section_data.primary_category_id }}"
31
- {% endif %}
32
- >
33
- {{ section_data.primary_label }}
34
- </a>
35
- {% endif %}
36
- {% if section_data.secondary_label != blank %}
37
- <a
38
- class="runway-hero__btn runway-hero__btn--ghost"
39
- href="#"
40
- {% if section_data.secondary_page_id != blank %}
41
- data-eo-hs-cta="1"
42
- data-eo-hs-cta-entity="pages"
43
- data-eo-hs-cta-id="{{ section_data.secondary_page_id }}"
44
- {% endif %}
45
- >
46
- {{ section_data.secondary_label }}
47
- </a>
48
- {% endif %}
49
- </div>
50
- </div>
51
- </section>
52
-
53
- <style>
54
- .runway-hero {
55
- position: relative;
56
- isolation: isolate;
57
- min-height: var(--runway-min-h, 72vh);
58
- display: flex;
59
- align-items: center;
60
- justify-content: center;
61
- padding: clamp(2rem, 6vw, 5rem) 1.5rem;
62
- background-color: #141218;
63
- background-size: cover;
64
- background-position: center;
65
- color: var(--runway-text, #faf7f2);
66
- text-align: center;
67
- }
68
- .runway-hero--left {
69
- text-align: left;
70
- justify-content: flex-start;
71
- }
72
- .runway-hero__overlay {
73
- position: absolute;
74
- inset: 0;
75
- z-index: 0;
76
- background: linear-gradient(
77
- 105deg,
78
- rgba(8, 6, 10, calc(var(--runway-overlay, 0.45) + 0.12)) 0%,
79
- rgba(8, 6, 10, var(--runway-overlay, 0.45)) 45%,
80
- rgba(8, 6, 10, calc(var(--runway-overlay, 0.45) * 0.55)) 100%
81
- );
82
- }
83
- .runway-hero__inner {
84
- position: relative;
85
- z-index: 1;
86
- max-width: 40rem;
87
- display: flex;
88
- flex-direction: column;
89
- gap: 1rem;
90
- }
91
- .runway-hero--left .runway-hero__inner {
92
- margin-right: auto;
93
- }
94
- .runway-hero__kicker {
95
- margin: 0;
96
- font-size: 0.75rem;
97
- letter-spacing: 0.35em;
98
- text-transform: uppercase;
99
- color: var(--runway-accent, #c9a962);
100
- font-weight: 600;
101
- }
102
- .runway-hero__title {
103
- margin: 0;
104
- font-family: ui-serif, Georgia, Cambria, 'Times New Roman', Times, serif;
105
- font-weight: 500;
106
- font-size: clamp(2.25rem, 6vw, 3.75rem);
107
- line-height: 1.05;
108
- }
109
- .runway-hero__lede {
110
- margin: 0;
111
- font-size: clamp(1rem, 2.2vw, 1.2rem);
112
- line-height: 1.65;
113
- opacity: 0.92;
114
- max-width: 36rem;
115
- }
116
- .runway-hero--left .runway-hero__lede {
117
- margin-left: 0;
118
- }
119
- .runway-hero__actions {
120
- display: flex;
121
- flex-wrap: wrap;
122
- gap: 0.75rem;
123
- margin-top: 0.5rem;
124
- justify-content: center;
125
- }
126
- .runway-hero--left .runway-hero__actions {
127
- justify-content: flex-start;
128
- }
129
- .runway-hero__btn {
130
- display: inline-flex;
131
- align-items: center;
132
- justify-content: center;
133
- padding: 0.85rem 1.75rem;
134
- font-size: 0.8rem;
135
- font-weight: 600;
136
- letter-spacing: 0.12em;
137
- text-transform: uppercase;
138
- text-decoration: none;
139
- border-radius: 999px;
140
- transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
141
- }
142
- .runway-hero__btn--primary {
143
- background: var(--runway-accent, #c9a962);
144
- color: #141218;
145
- box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
146
- }
147
- .runway-hero__btn--primary:hover {
148
- transform: translateY(-1px);
149
- box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
150
- }
151
- .runway-hero__btn--ghost {
152
- border: 1px solid rgba(255, 255, 255, 0.45);
153
- color: inherit;
154
- background: rgba(255, 255, 255, 0.04);
155
- }
156
- .runway-hero__btn--ghost:hover {
157
- background: rgba(255, 255, 255, 0.1);
158
- }
159
- </style>
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 %}
15
+ <section
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 %}
18
+ style="
19
+ --runway-text: {{ section_data.text_color | default: '#FAF7F2' }};
20
+ --runway-accent: {{ section_data.accent_color | default: '#C9A962' }};
21
+ --runway-overlay: {{ section_data.overlay_strength | default: 42 | divided_by: 100.0 }};
22
+ --runway-min-h: {{ runway_mh }}vh;
23
+ {% if section_data.image != blank %}background-image: url('{{ section_data.image }}');{% endif %}
24
+ "
25
+ >
26
+ <div class="runway-hero__overlay" aria-hidden="true"></div>
27
+ <div class="runway-hero__inner">
28
+ {% if section_data.kicker != blank %}
29
+ <p class="runway-hero__kicker ab-anim-el">{{ section_data.kicker }}</p>
30
+ {% endif %}
31
+ {% if section_data.headline != blank %}
32
+ <h1 class="runway-hero__title ab-anim-el">{{ section_data.headline }}</h1>
33
+ {% endif %}
34
+ {% if section_data.subheadline != blank %}
35
+ <p class="runway-hero__lede ab-anim-el">{{ section_data.subheadline }}</p>
36
+ {% endif %}
37
+ <div class="runway-hero__actions ab-anim-el">
38
+ {% if section_data.primary_label != blank %}
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 %}
57
+ {% endif %}
58
+
59
+ {% if section_data.secondary_label != blank %}
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 %}
78
+ {% endif %}
79
+ </div>
80
+ </div>
81
+ </section>
82
+
83
+ <style>
84
+ .runway-hero {
85
+ position: relative;
86
+ isolation: isolate;
87
+ min-height: var(--runway-min-h, 72vh);
88
+ display: flex;
89
+ align-items: center;
90
+ justify-content: center;
91
+ padding: clamp(2rem, 6vw, 5rem) 1.5rem;
92
+ background-color: #141218;
93
+ background-size: cover;
94
+ background-position: center;
95
+ color: var(--runway-text, #faf7f2);
96
+ text-align: center;margin-bottom: 15px;
97
+ }
98
+ .runway-hero--left {
99
+ text-align: left;
100
+ justify-content: flex-start;
101
+ }
102
+ .runway-hero__overlay {
103
+ position: absolute;
104
+ inset: 0;
105
+ z-index: 0;
106
+ background: linear-gradient(
107
+ 105deg,
108
+ rgba(8, 6, 10, calc(var(--runway-overlay, 0.45) + 0.12)) 0%,
109
+ rgba(8, 6, 10, var(--runway-overlay, 0.45)) 45%,
110
+ rgba(8, 6, 10, calc(var(--runway-overlay, 0.45) * 0.55)) 100%
111
+ );
112
+ }
113
+ .runway-hero__inner {
114
+ position: relative;
115
+ z-index: 1;
116
+ max-width: 40rem;
117
+ display: flex;
118
+ flex-direction: column;
119
+ gap: 1rem;
120
+ }
121
+ .runway-hero--left .runway-hero__inner {
122
+ margin-right: auto;
123
+ }
124
+ .runway-hero__kicker {
125
+ margin: 0;
126
+ font-size: 0.75rem;
127
+ letter-spacing: 0.35em;
128
+ text-transform: uppercase;
129
+ color: var(--runway-accent, #c9a962);
130
+ font-weight: 600;
131
+ }
132
+ .runway-hero__title {
133
+ margin: 0;
134
+ font-family: ui-serif, Georgia, Cambria, 'Times New Roman', Times, serif;
135
+ font-weight: 500;
136
+ font-size: clamp(2.25rem, 6vw, 3.75rem);
137
+ line-height: 1.05;
138
+ }
139
+ .runway-hero__lede {
140
+ margin: 0;
141
+ font-size: clamp(1rem, 2.2vw, 1.2rem);
142
+ line-height: 1.65;
143
+ opacity: 0.92;
144
+ max-width: 36rem;
145
+ }
146
+ .runway-hero--left .runway-hero__lede {
147
+ margin-left: 0;
148
+ }
149
+ .runway-hero__actions {
150
+ display: flex;
151
+ flex-wrap: wrap;
152
+ gap: 0.75rem;
153
+ margin-top: 0.5rem;
154
+ justify-content: center;
155
+ }
156
+ .runway-hero--left .runway-hero__actions {
157
+ justify-content: flex-start;
158
+ }
159
+ .runway-hero__btn {
160
+ display: inline-flex;
161
+ align-items: center;
162
+ justify-content: center;
163
+ padding: 0.85rem 1.75rem;
164
+ font-size: 0.8rem;
165
+ font-weight: 600;
166
+ letter-spacing: 0.12em;
167
+ text-transform: uppercase;
168
+ text-decoration: none;
169
+ border-radius: 999px;
170
+ transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
171
+ }
172
+ .runway-hero__btn--primary {
173
+ background: var(--runway-accent, #c9a962);
174
+ color: #141218;
175
+ box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
176
+ }
177
+ .runway-hero__btn--primary:hover {
178
+ transform: translateY(-1px);
179
+ box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
180
+ }
181
+ .runway-hero__btn--ghost {
182
+ border: 1px solid rgba(255, 255, 255, 0.45);
183
+ color: inherit;
184
+ background: rgba(255, 255, 255, 0.04);
185
+ }
186
+ .runway-hero__btn--ghost:hover {
187
+ background: rgba(255, 255, 255, 0.1);
188
+ }
189
+ </style>
@@ -1,75 +1,167 @@
1
- {
2
- "icon": "https://api.iconify.design/lucide:shirt.svg",
3
- "label": "Shop the look",
4
- "section_schema": [
5
- {
6
- "name": "eyebrow",
7
- "type": "string",
8
- "default": "Styling room",
9
- "description": "Label above the section title"
10
- },
11
- {
12
- "name": "title",
13
- "type": "string",
14
- "default": "Shop the look",
15
- "description": "Section heading"
16
- },
17
- {
18
- "name": "subtitle",
19
- "type": "string",
20
- "default": "One outfit, every piece linked—build yours in a single pass.",
21
- "description": "Intro line beside the hero look"
22
- },
23
- {
24
- "name": "look_image",
25
- "type": "image",
26
- "default": "",
27
- "description": "Main outfit or editorial image"
28
- },
29
- {
30
- "name": "look_title",
31
- "type": "string",
32
- "default": "City nights",
33
- "description": "Title on the hero card"
34
- },
35
- {
36
- "name": "look_caption",
37
- "type": "string",
38
- "default": "Layered wool, soft leather, and a hint of shine.",
39
- "description": "Short caption under the title"
40
- },
41
- {
42
- "name": "look_url",
43
- "type": "string",
44
- "default": "/products",
45
- "description": "Link for the full look CTA"
46
- },
47
- {
48
- "name": "look_cta_label",
49
- "type": "string",
50
- "default": "Shop full look",
51
- "description": "Hero card button label"
52
- },
53
- {
54
- "name": "accent_color",
55
- "type": "color",
56
- "default": "#C9A962",
57
- "description": "Accent for labels and buttons"
58
- },
59
- {
60
- "name": "surface",
61
- "type": "select",
62
- "default": "cream",
63
- "description": "Background style",
64
- "options": [
65
- { "label": "Warm cream", "value": "cream" },
66
- { "label": "Soft charcoal", "value": "charcoal" }
67
- ]
68
- },
69
- {
70
- "name": "pick_product_ids",
71
- "type": "product_multi_select",
72
- "description": "Products to show beside the hero (search and reorder in the picker)"
73
- }
74
- ]
75
- }
1
+ {
2
+ "icon": "https://files.easy-orders.net/1778106825738601358.png",
3
+ "label": "Shop the look",
4
+ "section_schema": [
5
+ {
6
+ "name": "eyebrow",
7
+ "type": "string",
8
+ "default": "Styling room",
9
+ "description": "Label above the section title"
10
+ },
11
+ {
12
+ "name": "title",
13
+ "type": "string",
14
+ "default": "Shop the look",
15
+ "description": "Section heading"
16
+ },
17
+ {
18
+ "name": "subtitle",
19
+ "type": "string",
20
+ "default": "One outfit, every piece linked—build yours in a single pass.",
21
+ "description": "Intro line beside the hero look"
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
+ },
71
+ {
72
+ "name": "look_image",
73
+ "type": "image",
74
+ "default": "",
75
+ "description": "Main outfit or editorial image"
76
+ },
77
+ {
78
+ "name": "look_title",
79
+ "type": "string",
80
+ "default": "City nights",
81
+ "description": "Title on the hero card"
82
+ },
83
+ {
84
+ "name": "look_caption",
85
+ "type": "string",
86
+ "default": "Layered wool, soft leather, and a hint of shine.",
87
+ "description": "Short caption under the title"
88
+ },
89
+ {
90
+ "name": "look_url",
91
+ "type": "string",
92
+ "default": "/products",
93
+ "description": "Link for the full look CTA"
94
+ },
95
+ {
96
+ "name": "look_cta_label",
97
+ "type": "string",
98
+ "default": "Shop full look",
99
+ "description": "Hero card button label"
100
+ },
101
+ {
102
+ "name": "accent_color",
103
+ "type": "color",
104
+ "default": "#C9A962",
105
+ "description": "Accent for labels and buttons"
106
+ },
107
+ {
108
+ "name": "surface",
109
+ "type": "select",
110
+ "default": "cream",
111
+ "description": "Background style",
112
+ "options": [
113
+ { "label": "Warm cream", "value": "cream" },
114
+ { "label": "Soft charcoal", "value": "charcoal" }
115
+ ]
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
+ },
141
+ {
142
+ "name": "pick_product_ids",
143
+ "type": "product_multi_select",
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
+ ]
165
+ }
166
+ ]
167
+ }