easyorders 0.1.13 → 0.1.15

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 (40) hide show
  1. package/README.md +93 -93
  2. package/dist/bin/cli.js +12 -5
  3. package/dist/template/theme/config.json +95 -95
  4. package/dist/template/theme/home-sections/category-mosaic/config.json +40 -40
  5. package/dist/template/theme/home-sections/category-mosaic/template.liquid +155 -155
  6. package/dist/template/theme/home-sections/editorial-feature/config.json +67 -67
  7. package/dist/template/theme/home-sections/editorial-feature/template.liquid +153 -153
  8. package/dist/template/theme/home-sections/newsletter-luxe/config.json +60 -60
  9. package/dist/template/theme/home-sections/newsletter-luxe/template.liquid +144 -144
  10. package/dist/template/theme/home-sections/runway-hero/config.json +91 -91
  11. package/dist/template/theme/home-sections/runway-hero/template.liquid +159 -159
  12. package/dist/template/theme/home-sections/shop-the-look/config.json +75 -75
  13. package/dist/template/theme/home-sections/shop-the-look/template.liquid +304 -304
  14. package/dist/template/theme/home-sections/trust-promise/config.json +47 -47
  15. package/dist/template/theme/home-sections/trust-promise/template.liquid +96 -96
  16. package/dist/template/theme/schema.json +151 -151
  17. package/dist/template/theme/script.js +586 -586
  18. package/dist/template/theme/sections/breadcrumbs.liquid +17 -17
  19. package/dist/template/theme/sections/categories.liquid +9 -9
  20. package/dist/template/theme/sections/fake-counter.liquid +27 -27
  21. package/dist/template/theme/sections/fake-stock.liquid +6 -6
  22. package/dist/template/theme/sections/fake-visitor.liquid +6 -6
  23. package/dist/template/theme/sections/featured-products.liquid +110 -110
  24. package/dist/template/theme/sections/fixed-buy-button.liquid +46 -46
  25. package/dist/template/theme/sections/footer.liquid +128 -128
  26. package/dist/template/theme/sections/gallery.liquid +61 -61
  27. package/dist/template/theme/sections/header.liquid +152 -152
  28. package/dist/template/theme/sections/home-products-grid.liquid +109 -109
  29. package/dist/template/theme/sections/list-products.liquid +93 -93
  30. package/dist/template/theme/sections/order-invoice.liquid +154 -154
  31. package/dist/template/theme/sections/product-description.liquid +30 -30
  32. package/dist/template/theme/sections/product-details.liquid +63 -63
  33. package/dist/template/theme/sections/products-grid.liquid +86 -86
  34. package/dist/template/theme/sections/related-products.liquid +88 -88
  35. package/dist/template/theme/sections/reviews.liquid +55 -55
  36. package/dist/template/theme/sections/slider.liquid +43 -43
  37. package/dist/template/theme/sections/thanks.liquid +33 -33
  38. package/dist/template/theme/style.css +3923 -3923
  39. package/dist/template/theme/theme-data.json +9 -9
  40. package/package.json +40 -40
@@ -1,304 +1,304 @@
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="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>