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,304 +1,326 @@
1
- <section
2
- class="shop-the-look shop-the-look--{{ section_data.surface | default: 'cream' }}"
3
- style="--stl-accent: {{ section_data.accent_color | default: '#C9A962' }};"
4
- >
5
- <header class="shop-the-look__head">
6
- {% if section_data.eyebrow != blank %}
7
- <p class="shop-the-look__eyebrow">{{ section_data.eyebrow }}</p>
8
- {% endif %}
9
- {% if section_data.title != blank %}
10
- <h2 class="shop-the-look__title">{{ section_data.title }}</h2>
11
- {% endif %}
12
- {% if section_data.subtitle != blank %}
13
- <p class="shop-the-look__subtitle">{{ section_data.subtitle }}</p>
14
- {% endif %}
15
- </header>
16
-
17
- <div class="shop-the-look__layout">
18
- <a class="shop-the-look__hero" href="{{ section_data.look_url | default: '/products' }}">
19
- <div class="shop-the-look__hero-visual">
20
- {% if section_data.look_image != blank %}
21
- <img
22
- class="shop-the-look__hero-img"
23
- src="{{ section_data.look_image }}"
24
- alt="{{ section_data.look_title | default: 'Look' }}"
25
- loading="lazy"
26
- width="900"
27
- height="1120"
28
- >
29
- {% else %}
30
- <div class="shop-the-look__hero-placeholder" aria-hidden="true"></div>
31
- {% endif %}
32
- <div class="shop-the-look__hero-shade" aria-hidden="true"></div>
33
- </div>
34
- <div class="shop-the-look__hero-copy">
35
- {% if section_data.look_title != blank %}
36
- <span class="shop-the-look__hero-title">{{ section_data.look_title }}</span>
37
- {% endif %}
38
- {% if section_data.look_caption != blank %}
39
- <span class="shop-the-look__hero-caption">{{ section_data.look_caption }}</span>
40
- {% endif %}
41
- {% if section_data.look_cta_label != blank %}
42
- <span class="shop-the-look__hero-cta">{{ section_data.look_cta_label }}</span>
43
- {% endif %}
44
- </div>
45
- </a>
46
-
47
- <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 %}"
49
- data-eo-hs-entity="products"
50
- data-eo-hs-ids="{{ section_data.pick_product_ids | join: ',' | strip }}"
51
- >
52
- <div class="shop-the-look__picks-inner" data-eo-hs-mount>
53
- {% if section_data.pick_product_ids and section_data.pick_product_ids.size > 0 %}
54
- {% for id in section_data.pick_product_ids %}
55
- <div class="eo-hs-skeleton eo-hs-skeleton--product" aria-hidden="true"></div>
56
- {% endfor %}
57
- {% else %}
58
- <p class="shop-the-look__picks-empty">Add products in the section settings to list pieces from this look.</p>
59
- {% endif %}
60
- </div>
61
- </div>
62
- </div>
63
- </section>
64
-
65
- <style>
66
- .shop-the-look {
67
- padding: clamp(2.5rem, 5vw, 4rem) 1.25rem;
68
- }
69
- .shop-the-look--cream {
70
- background: #f3efe8;
71
- color: #1c1a17;
72
- }
73
- .shop-the-look--charcoal {
74
- background: #1e1c24;
75
- color: #f4eee6;
76
- }
77
- .shop-the-look__head {
78
- max-width: 40rem;
79
- margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
80
- }
81
- .shop-the-look__eyebrow {
82
- margin: 0 0 0.4rem;
83
- font-size: 0.7rem;
84
- font-weight: 600;
85
- letter-spacing: 0.28em;
86
- text-transform: uppercase;
87
- color: var(--stl-accent, #c9a962);
88
- }
89
- .shop-the-look__title {
90
- margin: 0 0 0.5rem;
91
- font-family: ui-serif, Georgia, Cambria, 'Times New Roman', Times, serif;
92
- font-weight: 500;
93
- font-size: clamp(1.75rem, 4vw, 2.35rem);
94
- line-height: 1.15;
95
- }
96
- .shop-the-look__subtitle {
97
- margin: 0;
98
- font-size: 1rem;
99
- line-height: 1.65;
100
- opacity: 0.82;
101
- }
102
- .shop-the-look__layout {
103
- max-width: 1160px;
104
- margin: 0 auto;
105
- display: grid;
106
- gap: clamp(1.25rem, 3vw, 2rem);
107
- align-items: stretch;
108
- }
109
- @media (min-width: 960px) {
110
- .shop-the-look__layout {
111
- grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
112
- }
113
- }
114
- .shop-the-look__hero {
115
- position: relative;
116
- display: block;
117
- border-radius: 8px;
118
- overflow: hidden;
119
- text-decoration: none;
120
- color: inherit;
121
- min-height: clamp(300px, 52vh, 540px);
122
- box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
123
- transition: transform 0.25s ease, box-shadow 0.25s ease;
124
- }
125
- .shop-the-look--charcoal .shop-the-look__hero {
126
- box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
127
- }
128
- .shop-the-look__hero:hover {
129
- transform: translateY(-3px);
130
- box-shadow: 0 32px 72px rgba(0, 0, 0, 0.18);
131
- }
132
- .shop-the-look__hero-visual {
133
- position: absolute;
134
- inset: 0;
135
- }
136
- .shop-the-look__hero-img {
137
- width: 100%;
138
- height: 100%;
139
- object-fit: cover;
140
- display: block;
141
- }
142
- .shop-the-look__hero-placeholder {
143
- width: 100%;
144
- height: 100%;
145
- background: linear-gradient(135deg, #c4bbb0, #8a8278);
146
- }
147
- .shop-the-look--charcoal .shop-the-look__hero-placeholder {
148
- background: linear-gradient(135deg, #3d3848, #1a1820);
149
- }
150
- .shop-the-look__hero-shade {
151
- position: absolute;
152
- inset: 0;
153
- background: linear-gradient(to top, rgba(12, 10, 14, 0.88) 0%, transparent 55%);
154
- pointer-events: none;
155
- }
156
- .shop-the-look__hero-copy {
157
- position: relative;
158
- z-index: 1;
159
- padding: clamp(1.25rem, 3vw, 2rem);
160
- display: flex;
161
- flex-direction: column;
162
- gap: 0.35rem;
163
- align-items: flex-start;
164
- justify-content: flex-end;
165
- min-height: 100%;
166
- color: #faf7f2;
167
- }
168
- .shop-the-look__hero-title {
169
- font-family: ui-serif, Georgia, Cambria, 'Times New Roman', Times, serif;
170
- font-size: clamp(1.35rem, 3vw, 1.85rem);
171
- font-weight: 500;
172
- }
173
- .shop-the-look__hero-caption {
174
- font-size: 0.92rem;
175
- line-height: 1.5;
176
- opacity: 0.88;
177
- max-width: 26rem;
178
- }
179
- .shop-the-look__hero-cta {
180
- margin-top: 0.5rem;
181
- display: inline-flex;
182
- padding: 0.55rem 1.2rem;
183
- border-radius: 999px;
184
- font-size: 0.68rem;
185
- font-weight: 700;
186
- letter-spacing: 0.14em;
187
- text-transform: uppercase;
188
- background: var(--stl-accent, #c9a962);
189
- color: #141218;
190
- }
191
- .shop-the-look__picks {
192
- min-width: 0;
193
- }
194
- .shop-the-look__picks-empty {
195
- margin: 0;
196
- font-size: 0.88rem;
197
- line-height: 1.5;
198
- opacity: 0.75;
199
- padding: 0.5rem 0;
200
- }
201
- .shop-the-look__picks-inner {
202
- display: flex;
203
- flex-direction: column;
204
- gap: 0.85rem;
205
- }
206
- .shop-the-look__picks-inner.eo-hs-loading {
207
- opacity: 0.85;
208
- }
209
- @media (max-width: 959px) {
210
- .shop-the-look__picks-inner {
211
- flex-flow: row nowrap;
212
- overflow-x: auto;
213
- padding-bottom: 0.35rem;
214
- scroll-snap-type: x mandatory;
215
- -webkit-overflow-scrolling: touch;
216
- }
217
- .shop-the-look__picks-inner .eo-hs-card--product {
218
- flex: 0 0 min(220px, 72vw);
219
- scroll-snap-align: start;
220
- }
221
- }
222
- .shop-the-look__picks-inner .eo-hs-skeleton--product {
223
- min-height: 96px;
224
- border-radius: 8px;
225
- background: linear-gradient(110deg, #ece8e2 8%, #f5f2ee 18%, #ece8e2 33%);
226
- background-size: 200% 100%;
227
- animation: shop-the-look-shimmer 1.2s ease-in-out infinite;
228
- }
229
- .shop-the-look--charcoal .shop-the-look__picks-inner .eo-hs-skeleton--product {
230
- background: linear-gradient(110deg, #2a2630 8%, #3a3540 18%, #2a2630 33%);
231
- background-size: 200% 100%;
232
- }
233
- .shop-the-look__picks-inner .eo-hs-card--product {
234
- display: flex;
235
- flex-direction: row;
236
- align-items: center;
237
- gap: 0.85rem;
238
- text-decoration: none;
239
- color: inherit;
240
- padding: 0.65rem;
241
- border-radius: 8px;
242
- background: rgba(255, 255, 255, 0.55);
243
- border: 1px solid rgba(28, 26, 23, 0.06);
244
- transition: background 0.2s ease, transform 0.2s ease;
245
- }
246
- .shop-the-look--charcoal .shop-the-look__picks-inner .eo-hs-card--product {
247
- background: rgba(255, 255, 255, 0.05);
248
- border-color: rgba(255, 255, 255, 0.08);
249
- }
250
- .shop-the-look__picks-inner .eo-hs-card--product:hover {
251
- background: rgba(255, 255, 255, 0.85);
252
- transform: translateX(2px);
253
- }
254
- .shop-the-look--charcoal .shop-the-look__picks-inner .eo-hs-card--product:hover {
255
- background: rgba(255, 255, 255, 0.1);
256
- }
257
- .shop-the-look__picks-inner .eo-hs-card--product .eo-hs-card__media {
258
- flex-shrink: 0;
259
- width: 76px;
260
- height: 96px;
261
- border-radius: 4px;
262
- overflow: hidden;
263
- aspect-ratio: unset;
264
- }
265
- .shop-the-look__picks-inner .eo-hs-card--product .eo-hs-card__media--empty {
266
- min-height: 96px;
267
- background: #ddd8d0;
268
- }
269
- .shop-the-look--charcoal .shop-the-look__picks-inner .eo-hs-card--product .eo-hs-card__media--empty {
270
- background: #2a2630;
271
- }
272
- .shop-the-look__picks-inner .eo-hs-card--product .eo-hs-card__body {
273
- display: flex;
274
- flex-direction: column;
275
- gap: 0.2rem;
276
- min-width: 0;
277
- padding: 0;
278
- }
279
- .shop-the-look__picks-inner .eo-hs-card--product .eo-hs-card__title {
280
- font-size: 0.9rem;
281
- font-weight: 600;
282
- line-height: 1.35;
283
- }
284
- .shop-the-look__picks-inner .eo-hs-card--product .eo-hs-card__meta {
285
- font-size: 0.82rem;
286
- opacity: 0.75;
287
- letter-spacing: 0.03em;
288
- }
289
- .shop-the-look__picks .eo-hs-error {
290
- margin: 0;
291
- font-size: 0.86rem;
292
- color: #8b3225;
293
- text-align: center;
294
- padding: 0.5rem 0;
295
- }
296
- @keyframes shop-the-look-shimmer {
297
- 0% {
298
- background-position: 100% 0;
299
- }
300
- 100% {
301
- background-position: -100% 0;
302
- }
303
- }
304
- </style>
1
+ <section
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
+ "
17
+ >
18
+ <header class="shop-the-look__head ab-anim-el">
19
+ {% if section_data.eyebrow != blank %}
20
+ <p class="shop-the-look__eyebrow">{{ section_data.eyebrow }}</p>
21
+ {% endif %}
22
+ {% if section_data.title != blank %}
23
+ <h2 class="shop-the-look__title">{{ section_data.title }}</h2>
24
+ {% endif %}
25
+ {% if section_data.subtitle != blank %}
26
+ <p class="shop-the-look__subtitle">{{ section_data.subtitle }}</p>
27
+ {% endif %}
28
+ </header>
29
+
30
+ <div class="shop-the-look__layout">
31
+ <a class="shop-the-look__hero ab-anim-el" href="{{ section_data.look_url | default: '/products' }}">
32
+ <div class="shop-the-look__hero-visual">
33
+ {% if section_data.look_image != blank %}
34
+ <img
35
+ class="shop-the-look__hero-img"
36
+ src="{{ section_data.look_image }}"
37
+ alt="{{ section_data.look_title | default: 'Look' }}"
38
+ loading="lazy"
39
+ width="900"
40
+ height="1120"
41
+ >
42
+ {% else %}
43
+ <div class="shop-the-look__hero-placeholder" aria-hidden="true"></div>
44
+ {% endif %}
45
+ <div class="shop-the-look__hero-shade" aria-hidden="true"></div>
46
+ </div>
47
+ <div class="shop-the-look__hero-copy">
48
+ {% if section_data.look_title != blank %}
49
+ <span class="shop-the-look__hero-title">{{ section_data.look_title }}</span>
50
+ {% endif %}
51
+ {% if section_data.look_caption != blank %}
52
+ <span class="shop-the-look__hero-caption">{{ section_data.look_caption }}</span>
53
+ {% endif %}
54
+ {% if section_data.look_cta_label != blank %}
55
+ <span class="shop-the-look__hero-cta">{{ section_data.look_cta_label }}</span>
56
+ {% endif %}
57
+ </div>
58
+ </a>
59
+
60
+ <div
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 %}"
62
+ data-eo-hs-entity="products"
63
+ data-eo-hs-ids="{{ section_data.pick_product_ids | join: ',' | strip }}"
64
+ data-eo-hs-currency="{{ currency }}"
65
+ >
66
+ <div class="shop-the-look__picks-inner" data-eo-hs-mount>
67
+ {% if section_data.pick_product_ids and section_data.pick_product_ids.size > 0 %}
68
+ {% for id in section_data.pick_product_ids %}
69
+ <div class="eo-hs-skeleton eo-hs-skeleton--product" aria-hidden="true"></div>
70
+ {% endfor %}
71
+ {% else %}
72
+ <p class="shop-the-look__picks-empty">Add products in the section settings to list pieces from this look.</p>
73
+ {% endif %}
74
+ </div>
75
+ </div>
76
+ </div>
77
+ </section>
78
+
79
+ <style>
80
+ .shop-the-look {
81
+ padding: clamp(2.5rem, 5vw, 4rem) 1.25rem;
82
+ }
83
+ .shop-the-look--cream {
84
+ background: #f3efe8;
85
+ margin-block: 15px;
86
+ color: #1c1a17;
87
+ }
88
+ .shop-the-look--charcoal {
89
+ background: #1e1c24;
90
+ color: #f4eee6;
91
+ }
92
+ .shop-the-look__head {
93
+ max-width: 1160px;
94
+ margin: 0 auto 30px;
95
+ }
96
+ .shop-the-look__eyebrow {
97
+ margin: 0 0 0.4rem;
98
+ font-size: 0.7rem;
99
+ font-weight: 600;
100
+ letter-spacing: 0.28em;
101
+ text-transform: uppercase;
102
+ color: var(--stl-accent, #c9a962);
103
+ }
104
+ .shop-the-look__title {
105
+ margin: 0 0 0.5rem;
106
+ font-family: ui-serif, Georgia, Cambria, 'Times New Roman', Times, serif;
107
+ font-weight: var(--stl-head-title-weight, 500);
108
+ font-size: clamp(1.25rem, 3vw, var(--stl-head-title-size, 38px));
109
+ line-height: 1.15;
110
+ color: var(--stl-head-title-color, inherit);
111
+ }
112
+ .shop-the-look__subtitle {
113
+ margin: 0;
114
+ font-size: var(--stl-head-subtitle-size, 16px);
115
+ font-weight: var(--stl-head-subtitle-weight, 400);
116
+ line-height: 1.65;
117
+ opacity: var(--stl-head-subtitle-opacity, 0.82);
118
+ color: var(--stl-head-subtitle-color, inherit);
119
+ }
120
+ .shop-the-look__layout {
121
+ max-width: 1160px;
122
+ margin: 0 auto;
123
+ display: grid;
124
+ gap: clamp(1.25rem, 3vw, 2rem);
125
+ align-items: stretch;
126
+ }
127
+ @media (min-width: 960px) {
128
+ .shop-the-look__layout {
129
+ grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
130
+ }
131
+ }
132
+ .shop-the-look__hero {
133
+ position: relative;
134
+ display: block;
135
+ border-radius: 8px;
136
+ overflow: hidden;
137
+ text-decoration: none;
138
+ color: inherit;
139
+ min-height: clamp(300px, 60vh, 540px);
140
+ transition: transform 0.25s ease, box-shadow 0.25s ease;
141
+ }
142
+ .shop-the-look--charcoal .shop-the-look__hero {
143
+ box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
144
+ }
145
+ .shop-the-look__hero:hover {
146
+ transform: translateY(-3px);
147
+ box-shadow: 0 32px 72px rgba(0, 0, 0, 0.18);
148
+ }
149
+ .shop-the-look__hero-visual {
150
+ position: absolute;
151
+ inset: 0;
152
+ }
153
+ .shop-the-look__hero-img {
154
+ width: 100%;
155
+ height: 100%;
156
+ object-fit: cover;
157
+ display: block;
158
+ }
159
+ .shop-the-look__hero-placeholder {
160
+ width: 100%;
161
+ height: 100%;
162
+ background: linear-gradient(135deg, #c4bbb0, #8a8278);
163
+ }
164
+ .shop-the-look--charcoal .shop-the-look__hero-placeholder {
165
+ background: linear-gradient(135deg, #3d3848, #1a1820);
166
+ }
167
+ .shop-the-look__hero-shade {
168
+ position: absolute;
169
+ inset: 0;
170
+ background: linear-gradient(to top, rgba(12, 10, 14, 0.88) 0%, transparent 55%);
171
+ pointer-events: none;
172
+ }
173
+ .shop-the-look__hero-copy {
174
+ position: relative;
175
+ z-index: 1;
176
+ padding: clamp(1.25rem, 3vw, 2rem);
177
+ display: flex;
178
+ flex-direction: column;
179
+ gap: 0.35rem;
180
+ align-items: flex-start;
181
+ justify-content: flex-end;
182
+ min-height: 100%;
183
+ color: #faf7f2;
184
+ }
185
+ .shop-the-look__hero-title {
186
+ font-family: ui-serif, Georgia, Cambria, 'Times New Roman', Times, serif;
187
+ font-size: clamp(1.35rem, 3vw, 1.85rem);
188
+ font-weight: 500;
189
+ }
190
+ .shop-the-look__hero-caption {
191
+ font-size: 0.92rem;
192
+ line-height: 1.5;
193
+ opacity: 0.88;
194
+ max-width: 26rem;
195
+ }
196
+ .shop-the-look__hero-cta {
197
+ margin-top: 0.5rem;
198
+ display: inline-flex;
199
+ padding: 0.55rem 1.2rem;
200
+ border-radius: 999px;
201
+ font-size: 0.68rem;
202
+ font-weight: 700;
203
+ letter-spacing: 0.14em;
204
+ text-transform: uppercase;
205
+ background: var(--stl-accent, #c9a962);
206
+ color: #141218;
207
+ }
208
+ .shop-the-look__picks {
209
+ min-width: 0;
210
+ }
211
+ .shop-the-look__picks-empty {
212
+ margin: 0;
213
+ font-size: 0.88rem;
214
+ line-height: 1.5;
215
+ opacity: 0.75;
216
+ padding: 0.5rem 0;
217
+ }
218
+ .shop-the-look__picks-inner {
219
+ display: flex;
220
+ flex-direction: column;
221
+ gap: 0.85rem;
222
+ }
223
+ .shop-the-look__picks-inner.eo-hs-loading {
224
+ opacity: 0.85;
225
+ }
226
+ @media (max-width: 959px) {
227
+ .shop-the-look__picks-inner {
228
+ overflow-x: auto;
229
+ padding-bottom: 0.35rem;
230
+ scroll-snap-type: x mandatory;
231
+ -webkit-overflow-scrolling: touch;
232
+ }
233
+ .shop-the-look__picks-inner .eo-hs-card--product {
234
+ flex: 0 0 min(140px, 72vw);
235
+ scroll-snap-align: start;
236
+ }
237
+ }
238
+ .shop-the-look__picks-inner .eo-hs-skeleton--product {
239
+ min-height: 96px;
240
+ border-radius: 8px;
241
+ background: linear-gradient(110deg, #ece8e2 8%, #f5f2ee 18%, #ece8e2 33%);
242
+ background-size: 200% 100%;
243
+ animation: shop-the-look-shimmer 1.2s ease-in-out infinite;
244
+ }
245
+ .shop-the-look--charcoal .shop-the-look__picks-inner .eo-hs-skeleton--product {
246
+ background: linear-gradient(110deg, #2a2630 8%, #3a3540 18%, #2a2630 33%);
247
+ background-size: 200% 100%;
248
+ }
249
+ .shop-the-look__picks-inner .eo-hs-card--product {
250
+ display: flex;
251
+ flex-direction: row;
252
+ align-items: center;
253
+ gap: 0.85rem;
254
+ text-decoration: none;
255
+ color: inherit;
256
+ padding: 0.65rem;
257
+ border-radius: 8px;
258
+ background: var(--stl-card-bg, rgba(255, 255, 255, 0.55));
259
+ border: 1px solid rgba(28, 26, 23, 0.06);
260
+ transition: background 0.2s ease, transform 0.2s ease;
261
+ }
262
+ .shop-the-look--charcoal .shop-the-look__picks-inner .eo-hs-card--product {
263
+ background: rgba(255, 255, 255, 0.05);
264
+ border-color: rgba(255, 255, 255, 0.08);
265
+ }
266
+ .shop-the-look__picks-inner .eo-hs-card--product:hover {
267
+ background: rgba(255, 255, 255, 0.85);
268
+ transform: translateX(2px);
269
+ }
270
+ .shop-the-look--charcoal .shop-the-look__picks-inner .eo-hs-card--product:hover {
271
+ background: rgba(255, 255, 255, 0.1);
272
+ }
273
+ .shop-the-look__picks-inner .eo-hs-card--product .eo-hs-card__media {
274
+ flex-shrink: 0;
275
+ width: 76px;
276
+ height: 96px;
277
+ border-radius: 4px;
278
+ overflow: hidden;
279
+ aspect-ratio: unset;
280
+ }
281
+ .shop-the-look__picks-inner .eo-hs-card--product .eo-hs-card__media--empty {
282
+ min-height: 96px;
283
+ background: #ddd8d0;
284
+ }
285
+ .shop-the-look--charcoal .shop-the-look__picks-inner .eo-hs-card--product .eo-hs-card__media--empty {
286
+ background: #2a2630;
287
+ }
288
+ .shop-the-look__picks-inner .eo-hs-card--product .eo-hs-card__body {
289
+ display: flex;
290
+ flex-direction: column;
291
+ gap: 0.2rem;
292
+ min-width: 0;
293
+ padding: 0;
294
+ }
295
+ .shop-the-look__picks-inner .eo-hs-card--product .eo-hs-card__title {
296
+ font-size: 0.9rem;
297
+ font-weight: 600;
298
+ line-height: 1.35;
299
+ color: var(--stl-card-title, inherit);
300
+ }
301
+ .shop-the-look__picks-inner .eo-hs-card--product .eo-hs-card__meta {
302
+ font-size: 0.82rem;
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);
310
+ }
311
+ .shop-the-look__picks .eo-hs-error {
312
+ margin: 0;
313
+ font-size: 0.86rem;
314
+ color: #8b3225;
315
+ text-align: center;
316
+ padding: 0.5rem 0;
317
+ }
318
+ @keyframes shop-the-look-shimmer {
319
+ 0% {
320
+ background-position: 100% 0;
321
+ }
322
+ 100% {
323
+ background-position: -100% 0;
324
+ }
325
+ }
326
+ </style>