create-brainerce-store 1.61.0 → 1.63.0

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 (196) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +71 -71
  3. package/dist/index.js +10 -2
  4. package/messages/en.json +502 -502
  5. package/messages/he.json +502 -502
  6. package/package.json +1 -1
  7. package/templates/nextjs/base/.claude/commands/design.md +60 -60
  8. package/templates/nextjs/base/.env.local.ejs +24 -24
  9. package/templates/nextjs/base/.eslintrc.json +57 -57
  10. package/templates/nextjs/base/.mcp.json +8 -8
  11. package/templates/nextjs/base/AI-GUIDE.md +174 -174
  12. package/templates/nextjs/base/TRANSLATIONS.md +200 -200
  13. package/templates/nextjs/base/package.json.ejs +52 -52
  14. package/templates/nextjs/base/src/app/blog/[slug]/page.tsx.ejs +262 -262
  15. package/templates/nextjs/base/src/app/blog/page.tsx.ejs +276 -276
  16. package/templates/nextjs/base/src/app/cart/page.tsx +7 -7
  17. package/templates/nextjs/base/src/app/category/[slug]/page.tsx +106 -106
  18. package/templates/nextjs/base/src/app/checkout/page.tsx +12 -0
  19. package/templates/nextjs/base/src/app/globals.css +36 -36
  20. package/templates/nextjs/base/src/app/indexnow-key.txt/route.ts +26 -26
  21. package/templates/nextjs/base/src/app/layout.tsx.ejs +10 -0
  22. package/templates/nextjs/base/src/app/llms.txt/route.ts +44 -44
  23. package/templates/nextjs/base/src/app/order-confirmation/page.tsx +295 -278
  24. package/templates/nextjs/base/src/app/order-status/page.tsx +121 -121
  25. package/templates/nextjs/base/src/app/page.tsx +64 -64
  26. package/templates/nextjs/base/src/app/products/[slug]/page.tsx +175 -175
  27. package/templates/nextjs/base/src/app/products/page.tsx +19 -19
  28. package/templates/nextjs/base/src/components/account/order-history.tsx +385 -385
  29. package/templates/nextjs/base/src/components/brainerce-bot.tsx +70 -70
  30. package/templates/nextjs/base/src/components/checkout/checkout-form.tsx +612 -564
  31. package/templates/nextjs/base/src/components/checkout/custom-fields-step.tsx +292 -292
  32. package/templates/nextjs/base/src/components/checkout/date-picker.tsx +309 -309
  33. package/templates/nextjs/base/src/components/checkout/datetime-picker.tsx +144 -144
  34. package/templates/nextjs/base/src/components/checkout/order-bump-card.tsx +242 -242
  35. package/templates/nextjs/base/src/components/checkout/pickup-step.tsx +198 -198
  36. package/templates/nextjs/base/src/components/checkout/shipping-step.tsx +125 -125
  37. package/templates/nextjs/base/src/components/checkout/tax-display.tsx +74 -74
  38. package/templates/nextjs/base/src/components/seo/article-json-ld.tsx +59 -59
  39. package/templates/nextjs/base/src/components/seo/breadcrumbs.tsx +37 -37
  40. package/templates/nextjs/base/src/components/seo/category-json-ld.tsx +61 -61
  41. package/templates/nextjs/base/src/components/seo/organization-json-ld.tsx +97 -97
  42. package/templates/nextjs/base/src/components/seo/product-json-ld.tsx +179 -179
  43. package/templates/nextjs/base/src/components/tracking-bootstrap.tsx +62 -0
  44. package/templates/nextjs/base/src/components/ui/accordion.tsx +53 -53
  45. package/templates/nextjs/base/src/components/ui/badge.tsx +32 -32
  46. package/templates/nextjs/base/src/components/ui/button.tsx +49 -49
  47. package/templates/nextjs/base/src/components/ui/card.tsx +55 -55
  48. package/templates/nextjs/base/src/components/ui/checkbox.tsx +28 -28
  49. package/templates/nextjs/base/src/components/ui/dialog.tsx +107 -107
  50. package/templates/nextjs/base/src/components/ui/input.tsx +22 -22
  51. package/templates/nextjs/base/src/components/ui/label.tsx +21 -21
  52. package/templates/nextjs/base/src/components/ui/radio-group.tsx +38 -38
  53. package/templates/nextjs/base/src/components/ui/select.tsx +153 -153
  54. package/templates/nextjs/base/src/components/ui/separator.tsx +26 -26
  55. package/templates/nextjs/base/src/components/ui/sheet.tsx +125 -125
  56. package/templates/nextjs/base/src/components/ui/skeleton.tsx +7 -7
  57. package/templates/nextjs/base/src/components/ui/tabs.tsx +55 -55
  58. package/templates/nextjs/base/src/components/ui/textarea.tsx +21 -21
  59. package/templates/nextjs/base/src/components/ui/tooltip.tsx +32 -32
  60. package/templates/nextjs/base/src/core/hooks/use-cart-page.ts +58 -58
  61. package/templates/nextjs/base/src/core/hooks/use-home-data.ts +51 -51
  62. package/templates/nextjs/base/src/core/hooks/use-product-listing.ts +295 -295
  63. package/templates/nextjs/base/src/core/hooks/use-product-page.ts +20 -2
  64. package/templates/nextjs/base/src/core/lib/image-hosts.ts +7 -7
  65. package/templates/nextjs/base/src/core/lib/product-options.ts +121 -121
  66. package/templates/nextjs/base/src/core/lib/resolve-currency.ts +20 -20
  67. package/templates/nextjs/base/src/core/lib/safe-redirect.ts +38 -38
  68. package/templates/nextjs/base/src/core/lib/seo.ts +46 -46
  69. package/templates/nextjs/base/src/core/lib/store-info.ts +9 -0
  70. package/templates/nextjs/base/src/core/lib/tracking.ts +171 -0
  71. package/templates/nextjs/base/src/core/lib/use-currency.ts +19 -19
  72. package/templates/nextjs/base/src/core/lib/utils.ts +21 -21
  73. package/templates/nextjs/base/src/middleware.ts.ejs +54 -2
  74. package/templates/nextjs/base/src/ui/cart/cart-bundle-offer.tsx +117 -117
  75. package/templates/nextjs/base/src/ui/cart/cart-item.tsx +146 -146
  76. package/templates/nextjs/base/src/ui/cart/cart-nudges.tsx +28 -28
  77. package/templates/nextjs/base/src/ui/cart/cart-summary.tsx +110 -110
  78. package/templates/nextjs/base/src/ui/cart/cart-upgrade-banner.tsx +126 -126
  79. package/templates/nextjs/base/src/ui/cart/cart-view.tsx +140 -140
  80. package/templates/nextjs/base/src/ui/cart/coupon-input.tsx +134 -134
  81. package/templates/nextjs/base/src/ui/cart/free-shipping-bar.tsx +61 -61
  82. package/templates/nextjs/base/src/ui/cart/reservation-countdown.tsx +95 -95
  83. package/templates/nextjs/base/src/ui/home/discount-banner-strip.tsx +20 -20
  84. package/templates/nextjs/base/src/ui/home/featured-products-section.tsx +24 -24
  85. package/templates/nextjs/base/src/ui/home/hero-section.tsx +27 -27
  86. package/templates/nextjs/base/src/ui/home/home-client.tsx +29 -29
  87. package/templates/nextjs/base/src/ui/layout/announcement-bar.tsx.ejs +116 -116
  88. package/templates/nextjs/base/src/ui/layout/faq-section.tsx.ejs +90 -90
  89. package/templates/nextjs/base/src/ui/layout/header-account.tsx +40 -40
  90. package/templates/nextjs/base/src/ui/layout/language-switcher.tsx.ejs +80 -80
  91. package/templates/nextjs/base/src/ui/layout/site-footer.tsx.ejs +144 -144
  92. package/templates/nextjs/base/src/ui/layout/site-header.tsx.ejs +152 -152
  93. package/templates/nextjs/base/src/ui/product/customization-fields.tsx +457 -457
  94. package/templates/nextjs/base/src/ui/product/discount-badge.tsx +18 -18
  95. package/templates/nextjs/base/src/ui/product/frequently-bought-together.tsx +191 -191
  96. package/templates/nextjs/base/src/ui/product/modifier-group-selector.tsx +206 -206
  97. package/templates/nextjs/base/src/ui/product/price-display.tsx +62 -62
  98. package/templates/nextjs/base/src/ui/product/product-card.tsx +7 -2
  99. package/templates/nextjs/base/src/ui/product/product-client-section.tsx +455 -455
  100. package/templates/nextjs/base/src/ui/product/product-listing.tsx +446 -446
  101. package/templates/nextjs/base/src/ui/product/recommendation-section.tsx +102 -102
  102. package/templates/nextjs/base/src/ui/product/review-form.tsx +294 -294
  103. package/templates/nextjs/base/src/ui/product/reviews-section.tsx.ejs +108 -108
  104. package/templates/nextjs/base/src/ui/product/stock-badge.tsx +61 -61
  105. package/templates/nextjs/base/src/ui/product/variant-selector.tsx +291 -291
  106. package/templates/nextjs/base/src/ui/shared/cdn-image.tsx +26 -26
  107. package/templates/nextjs/base/tailwind.config.ts +69 -69
  108. package/templates/nextjs/designs/atelier/app-overlay/layout.tsx.ejs +10 -0
  109. package/templates/nextjs/designs/atelier/globals.css +402 -402
  110. package/templates/nextjs/designs/atelier/messages-patch/en.json +100 -100
  111. package/templates/nextjs/designs/atelier/messages-patch/he.json +100 -100
  112. package/templates/nextjs/designs/atelier/ui/cart/cart-bundle-offer.tsx +110 -110
  113. package/templates/nextjs/designs/atelier/ui/cart/cart-drawer.tsx +163 -163
  114. package/templates/nextjs/designs/atelier/ui/cart/cart-item.tsx +140 -140
  115. package/templates/nextjs/designs/atelier/ui/cart/cart-nudges.tsx +34 -34
  116. package/templates/nextjs/designs/atelier/ui/cart/cart-summary.tsx +107 -107
  117. package/templates/nextjs/designs/atelier/ui/cart/cart-upgrade-banner.tsx +123 -123
  118. package/templates/nextjs/designs/atelier/ui/cart/cart-view.tsx +147 -147
  119. package/templates/nextjs/designs/atelier/ui/cart/coupon-input.tsx +142 -142
  120. package/templates/nextjs/designs/atelier/ui/cart/free-shipping-bar.tsx +77 -77
  121. package/templates/nextjs/designs/atelier/ui/cart/reservation-countdown.tsx +89 -89
  122. package/templates/nextjs/designs/atelier/ui/home/benefits-band.tsx +34 -34
  123. package/templates/nextjs/designs/atelier/ui/home/category-tiles.tsx +151 -151
  124. package/templates/nextjs/designs/atelier/ui/home/discount-banner-strip.tsx +27 -27
  125. package/templates/nextjs/designs/atelier/ui/home/editorial-band.tsx +75 -75
  126. package/templates/nextjs/designs/atelier/ui/home/featured-products-section.tsx +36 -36
  127. package/templates/nextjs/designs/atelier/ui/home/hero-section.tsx +174 -174
  128. package/templates/nextjs/designs/atelier/ui/home/home-client.tsx +54 -54
  129. package/templates/nextjs/designs/atelier/ui/home/newsletter-section.tsx +78 -78
  130. package/templates/nextjs/designs/atelier/ui/home/testimonials-band.tsx +46 -46
  131. package/templates/nextjs/designs/atelier/ui/layout/announcement-bar.tsx +118 -118
  132. package/templates/nextjs/designs/atelier/ui/layout/faq-section.tsx +96 -96
  133. package/templates/nextjs/designs/atelier/ui/layout/header-account.tsx +36 -36
  134. package/templates/nextjs/designs/atelier/ui/layout/header-cart.tsx +36 -36
  135. package/templates/nextjs/designs/atelier/ui/layout/language-switcher.tsx.ejs +137 -137
  136. package/templates/nextjs/designs/atelier/ui/layout/nav-url.ts +14 -14
  137. package/templates/nextjs/designs/atelier/ui/layout/rich-text-block.tsx +34 -34
  138. package/templates/nextjs/designs/atelier/ui/layout/site-footer.tsx.ejs +141 -141
  139. package/templates/nextjs/designs/atelier/ui/layout/site-header.tsx.ejs +138 -138
  140. package/templates/nextjs/designs/atelier/ui/product/customization-fields.tsx +466 -466
  141. package/templates/nextjs/designs/atelier/ui/product/discount-badge.tsx +17 -17
  142. package/templates/nextjs/designs/atelier/ui/product/frequently-bought-together.tsx +196 -196
  143. package/templates/nextjs/designs/atelier/ui/product/modifier-group-selector.tsx +193 -193
  144. package/templates/nextjs/designs/atelier/ui/product/price-display.tsx +69 -69
  145. package/templates/nextjs/designs/atelier/ui/product/product-card.tsx +13 -11
  146. package/templates/nextjs/designs/atelier/ui/product/product-client-section.tsx +477 -477
  147. package/templates/nextjs/designs/atelier/ui/product/product-grid.tsx +42 -42
  148. package/templates/nextjs/designs/atelier/ui/product/product-listing.tsx +260 -260
  149. package/templates/nextjs/designs/atelier/ui/product/recommendation-section.tsx +95 -95
  150. package/templates/nextjs/designs/atelier/ui/product/review-form.tsx +267 -267
  151. package/templates/nextjs/designs/atelier/ui/product/reviews-section.tsx.ejs +148 -148
  152. package/templates/nextjs/designs/atelier/ui/product/stock-badge.tsx +66 -66
  153. package/templates/nextjs/designs/atelier/ui/product/variant-selector.tsx +206 -206
  154. package/templates/nextjs/designs/atelier/ui/shared/cdn-image.tsx +29 -29
  155. package/templates/nextjs/designs/atelier/ui/shared/fly-to-cart.ts +86 -86
  156. package/templates/nextjs/designs/atelier/ui/shared/icons.tsx +276 -276
  157. package/templates/nextjs/designs/atelier/ui/shared/loading-spinner.tsx +63 -63
  158. package/templates/nextjs/designs/atelier/ui/shared/reveal.tsx +71 -71
  159. package/templates/nextjs/designs/atelier/ui/shared/select-menu.tsx +125 -125
  160. package/templates/nextjs/ui-canvas/cart/cart-bundle-offer.tsx +89 -89
  161. package/templates/nextjs/ui-canvas/cart/cart-item.tsx +123 -123
  162. package/templates/nextjs/ui-canvas/cart/cart-nudges.tsx +27 -27
  163. package/templates/nextjs/ui-canvas/cart/cart-summary.tsx +99 -99
  164. package/templates/nextjs/ui-canvas/cart/cart-upgrade-banner.tsx +105 -105
  165. package/templates/nextjs/ui-canvas/cart/cart-view.tsx +106 -106
  166. package/templates/nextjs/ui-canvas/cart/coupon-input.tsx +119 -119
  167. package/templates/nextjs/ui-canvas/cart/free-shipping-bar.tsx +54 -54
  168. package/templates/nextjs/ui-canvas/cart/reservation-countdown.tsx +81 -81
  169. package/templates/nextjs/ui-canvas/home/discount-banner-strip.tsx +19 -19
  170. package/templates/nextjs/ui-canvas/home/featured-products-section.tsx +23 -23
  171. package/templates/nextjs/ui-canvas/home/hero-section.tsx +21 -21
  172. package/templates/nextjs/ui-canvas/home/home-client.tsx +26 -26
  173. package/templates/nextjs/ui-canvas/layout/announcement-bar.tsx.ejs +101 -101
  174. package/templates/nextjs/ui-canvas/layout/faq-section.tsx.ejs +71 -71
  175. package/templates/nextjs/ui-canvas/layout/header-account.tsx +31 -31
  176. package/templates/nextjs/ui-canvas/layout/language-switcher.tsx.ejs +76 -76
  177. package/templates/nextjs/ui-canvas/layout/rich-text-block.tsx.ejs +36 -36
  178. package/templates/nextjs/ui-canvas/layout/site-footer.tsx.ejs +82 -82
  179. package/templates/nextjs/ui-canvas/layout/site-header.tsx.ejs +119 -119
  180. package/templates/nextjs/ui-canvas/product/customization-fields.tsx +445 -445
  181. package/templates/nextjs/ui-canvas/product/discount-badge.tsx +19 -19
  182. package/templates/nextjs/ui-canvas/product/frequently-bought-together.tsx +168 -168
  183. package/templates/nextjs/ui-canvas/product/modifier-group-selector.tsx +165 -165
  184. package/templates/nextjs/ui-canvas/product/price-display.tsx +52 -52
  185. package/templates/nextjs/ui-canvas/product/product-card.tsx +7 -2
  186. package/templates/nextjs/ui-canvas/product/product-client-section.tsx +352 -352
  187. package/templates/nextjs/ui-canvas/product/product-grid.tsx +27 -27
  188. package/templates/nextjs/ui-canvas/product/product-listing.tsx +224 -224
  189. package/templates/nextjs/ui-canvas/product/recommendation-section.tsx +99 -99
  190. package/templates/nextjs/ui-canvas/product/review-form.tsx +266 -266
  191. package/templates/nextjs/ui-canvas/product/reviews-section.tsx.ejs +96 -96
  192. package/templates/nextjs/ui-canvas/product/stock-badge.tsx +45 -45
  193. package/templates/nextjs/ui-canvas/product/variant-selector.tsx +212 -212
  194. package/templates/nextjs/ui-canvas/shared/cdn-image.tsx +31 -31
  195. package/templates/nextjs/ui-canvas/shared/loading-spinner.tsx +27 -27
  196. package/templates/nextjs/base/tsconfig.tsbuildinfo +0 -1
@@ -1,402 +1,402 @@
1
- @tailwind base;
2
- @tailwind components;
3
- @tailwind utilities;
4
-
5
- /* ---------------------------------------------------------------------------
6
- Design system — "Atelier" (premium modern handcrafted-goods commerce)
7
- Palette (5 total): warm white / warm ink / deep forest / warm sand (2 tints)
8
- + functional destructive. Tokens only — never raw colors in components.
9
- --------------------------------------------------------------------------- */
10
-
11
- @layer base {
12
- :root {
13
- --background: 40 33% 98%; /* warm white */
14
- --foreground: 30 12% 13%; /* warm ink */
15
- --primary: 163 34% 21%; /* deep forest */
16
- --primary-foreground: 40 33% 98%;
17
- --secondary: 40 28% 94%; /* warm sand */
18
- --secondary-foreground: 30 12% 13%;
19
- --muted: 40 28% 94%;
20
- --muted-foreground: 30 8% 40%;
21
- --accent: 40 24% 89%; /* deeper sand (hover) */
22
- --accent-foreground: 30 12% 13%;
23
- --destructive: 0 60% 44%;
24
- --destructive-foreground: 40 33% 98%;
25
- --border: 38 18% 86%;
26
- --radius: 0.75rem;
27
- }
28
-
29
- * {
30
- @apply border-border;
31
- }
32
-
33
- html {
34
- scroll-behavior: smooth;
35
- }
36
-
37
- @media (prefers-reduced-motion: reduce) {
38
- html {
39
- scroll-behavior: auto;
40
- }
41
- }
42
-
43
- body {
44
- @apply bg-background text-foreground antialiased;
45
- font-size: 1rem;
46
- line-height: 1.6;
47
- }
48
-
49
- h1,
50
- h2,
51
- h3,
52
- .font-display {
53
- font-family: var(--font-serif), ui-serif, Georgia, serif;
54
- @apply text-balance font-medium;
55
- line-height: 1.2;
56
- }
57
-
58
- ::selection {
59
- @apply bg-primary text-primary-foreground;
60
- }
61
-
62
- :focus-visible {
63
- @apply outline-none ring-2 ring-primary ring-offset-2 ring-offset-background;
64
- }
65
- }
66
-
67
- @layer components {
68
- /* Layout rhythm */
69
- /* Page container — near-full-bleed like the reference DTC sites (Mejuri /
70
- Missoma): generous gutters instead of a narrow boxed column, capped only
71
- on ultra-wide screens so lines never run away. */
72
- .container-page {
73
- @apply mx-auto w-full max-w-[105rem] px-4 sm:px-6 lg:px-10;
74
- }
75
- /* Contained variant for transactional / reading pages (cart, PDP) where
76
- very long lines hurt more than the full-bleed look helps. */
77
- .container-narrow {
78
- @apply mx-auto w-full max-w-7xl px-4 sm:px-6 lg:px-8;
79
- }
80
- .section-pad {
81
- @apply py-14 sm:py-16 lg:py-20;
82
- }
83
-
84
- /* Small caps-like label (caption size — tracking OK for Hebrew at this size) */
85
- .eyebrow {
86
- @apply mb-3 block text-xs font-semibold uppercase tracking-widest text-primary;
87
- }
88
-
89
- /* Buttons */
90
- .btn {
91
- @apply inline-flex select-none items-center justify-center gap-2 whitespace-nowrap rounded-full text-sm font-semibold transition-colors duration-200 disabled:pointer-events-none disabled:opacity-50;
92
- }
93
- .btn-primary {
94
- @apply btn bg-primary text-primary-foreground hover:bg-primary/90 shadow-[0_10px_28px_-10px_hsl(var(--primary)/0.55)] transition-[transform,box-shadow,background-color] hover:-translate-y-0.5 hover:shadow-[0_14px_34px_-10px_hsl(var(--primary)/0.6)];
95
- }
96
- .btn-outline {
97
- @apply btn border border-foreground/20 bg-transparent text-foreground hover:border-foreground hover:bg-foreground hover:text-background;
98
- }
99
- .btn-soft {
100
- @apply btn bg-secondary text-secondary-foreground hover:bg-accent;
101
- }
102
- .btn-ghost {
103
- @apply btn text-foreground hover:bg-secondary;
104
- }
105
- .btn-md {
106
- @apply h-11 px-6;
107
- }
108
- .btn-lg {
109
- @apply h-12 px-8 text-base;
110
- }
111
- .btn-sm {
112
- @apply h-9 px-4 text-sm;
113
- }
114
-
115
- /* Cards — oversized corners + forest-tinted lift on hover */
116
- .card {
117
- @apply rounded-2xl border bg-background shadow-sm;
118
- }
119
- .card-hover {
120
- @apply transition-[transform,box-shadow] duration-300 hover:-translate-y-1 hover:shadow-[0_20px_45px_-18px_hsl(var(--primary)/0.35)];
121
- }
122
-
123
- /* Glassy surface (token-blended, no raw colors) */
124
- .glass {
125
- @apply rounded-2xl border border-background/60 bg-background/75 shadow-lg backdrop-blur-md;
126
- }
127
-
128
- /* Badges / pills */
129
- .badge {
130
- @apply inline-flex items-center gap-1 rounded-full px-2.5 py-0.5 text-xs font-semibold;
131
- }
132
- .badge-primary {
133
- @apply badge bg-primary text-primary-foreground;
134
- }
135
- .badge-soft {
136
- @apply badge bg-secondary text-secondary-foreground;
137
- }
138
- .badge-destructive {
139
- @apply badge bg-destructive/10 text-destructive;
140
- }
141
-
142
- /* Form controls */
143
- .input {
144
- @apply h-11 w-full rounded-lg border bg-background px-3.5 text-sm text-foreground placeholder:text-muted-foreground focus-visible:ring-2 focus-visible:ring-primary;
145
- }
146
- .select {
147
- @apply h-10 rounded-full border bg-background pe-8 ps-4 text-sm font-medium text-foreground;
148
- appearance: none;
149
- background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23413b35' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
150
- background-repeat: no-repeat;
151
- background-position: right 0.75rem center;
152
- }
153
- [dir='rtl'] .select {
154
- background-position: left 0.75rem center;
155
- }
156
-
157
- /* Product description prose (merchant HTML) */
158
- .prose-store {
159
- @apply text-[0.95rem] leading-7 text-muted-foreground;
160
- }
161
- .prose-store p {
162
- @apply mb-3;
163
- }
164
- .prose-store strong {
165
- @apply font-semibold text-foreground;
166
- }
167
- .prose-store ul {
168
- @apply mb-3 list-disc ps-5;
169
- }
170
- .prose-store ol {
171
- @apply mb-3 list-decimal ps-5;
172
- }
173
- .prose-store a {
174
- @apply text-primary underline underline-offset-2;
175
- }
176
- .prose-store h1,
177
- .prose-store h2,
178
- .prose-store h3 {
179
- @apply mb-2 mt-4 text-foreground;
180
- }
181
- }
182
-
183
- @layer utilities {
184
- /* Flip directional glyphs (arrows) so they point with the reading direction */
185
- [dir='rtl'] .rtl-flip {
186
- transform: scaleX(-1);
187
- }
188
-
189
- /* --- Atmosphere washes: soft blends of the SAME tokens (forest + sand) --- */
190
- .wash-hero {
191
- background:
192
- radial-gradient(52rem 32rem at 85% -10%, hsl(var(--primary) / 0.1), transparent 60%),
193
- radial-gradient(46rem 30rem at 8% 108%, hsl(var(--primary) / 0.08), transparent 55%),
194
- linear-gradient(180deg, hsl(var(--secondary) / 0.85), hsl(var(--background)));
195
- }
196
- [dir='rtl'] .wash-hero {
197
- background:
198
- radial-gradient(52rem 32rem at 15% -10%, hsl(var(--primary) / 0.1), transparent 60%),
199
- radial-gradient(46rem 30rem at 92% 108%, hsl(var(--primary) / 0.08), transparent 55%),
200
- linear-gradient(180deg, hsl(var(--secondary) / 0.85), hsl(var(--background)));
201
- }
202
- .wash-sand {
203
- background: linear-gradient(
204
- 180deg,
205
- hsl(var(--background)),
206
- hsl(var(--secondary) / 0.9) 30%,
207
- hsl(var(--secondary) / 0.9) 70%,
208
- hsl(var(--background))
209
- );
210
- }
211
- .wash-forest {
212
- background:
213
- radial-gradient(40rem 24rem at 20% 0%, hsl(var(--primary-foreground) / 0.12), transparent 60%),
214
- linear-gradient(160deg, hsl(var(--primary)), hsl(163 40% 15%));
215
- }
216
-
217
- /* Soft blurred glow blob (decorative, sits behind content) */
218
- .glow-blob {
219
- position: absolute;
220
- border-radius: 9999px;
221
- background: hsl(var(--primary) / 0.16);
222
- filter: blur(64px);
223
- pointer-events: none;
224
- }
225
-
226
- /* Marquee band — duplicated track scrolls seamlessly; guarded below */
227
- .marquee {
228
- overflow: hidden;
229
- white-space: nowrap;
230
- }
231
- .marquee-track {
232
- display: inline-flex;
233
- align-items: center;
234
- min-width: 200%;
235
- }
236
-
237
- /* Single orchestrated reveal — guarded for reduced motion */
238
- .reveal {
239
- opacity: 1;
240
- }
241
- @media (prefers-reduced-motion: no-preference) {
242
- .reveal {
243
- animation: reveal-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
244
- }
245
- .reveal-delay-1 {
246
- animation-delay: 0.12s;
247
- }
248
- .reveal-delay-2 {
249
- animation-delay: 0.24s;
250
- }
251
- .reveal-delay-3 {
252
- animation-delay: 0.36s;
253
- }
254
- .img-zoom {
255
- transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
256
- }
257
- .group:hover .img-zoom {
258
- transform: scale(1.045);
259
- }
260
- .spin {
261
- animation: spinner 0.8s linear infinite;
262
- }
263
-
264
- /* Gentle floating — hero cards & chips */
265
- .float-slow {
266
- animation: float-y 7s ease-in-out infinite;
267
- }
268
- .float-slower {
269
- animation: float-y 9s ease-in-out 1.2s infinite;
270
- }
271
- .blob-drift {
272
- animation: blob-drift 14s ease-in-out infinite alternate;
273
- }
274
-
275
- /* Scroll reveals (driven by the <Reveal> island adding .is-visible) */
276
- .reveal-scroll {
277
- opacity: 0;
278
- transform: translateY(28px);
279
- transition:
280
- opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
281
- transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
282
- }
283
- .reveal-scroll.is-visible {
284
- opacity: 1;
285
- transform: translateY(0);
286
- }
287
-
288
- .marquee-track {
289
- animation: marquee-ltr 32s linear infinite;
290
- }
291
- [dir='rtl'] .marquee-track {
292
- animation-name: marquee-rtl;
293
- }
294
- }
295
-
296
- @keyframes reveal-up {
297
- from {
298
- opacity: 0;
299
- transform: translateY(16px);
300
- }
301
- to {
302
- opacity: 1;
303
- transform: translateY(0);
304
- }
305
- }
306
-
307
- @keyframes spinner {
308
- to {
309
- transform: rotate(360deg);
310
- }
311
- }
312
-
313
- @keyframes float-y {
314
- 0%,
315
- 100% {
316
- transform: translateY(0) rotate(var(--float-rotate, 0deg));
317
- }
318
- 50% {
319
- transform: translateY(-12px) rotate(var(--float-rotate, 0deg));
320
- }
321
- }
322
-
323
- @keyframes blob-drift {
324
- from {
325
- transform: translate(0, 0) scale(1);
326
- }
327
- to {
328
- transform: translate(3rem, -2rem) scale(1.15);
329
- }
330
- }
331
-
332
- @keyframes marquee-ltr {
333
- to {
334
- transform: translateX(-50%);
335
- }
336
- }
337
- @keyframes marquee-rtl {
338
- to {
339
- transform: translateX(50%);
340
- }
341
- }
342
- }
343
-
344
- /* Cart bump — the landing pad reacts when a flown item arrives */
345
- @media (prefers-reduced-motion: no-preference) {
346
- @keyframes cart-bump {
347
- 30% { transform: scale(1.3); }
348
- 60% { transform: scale(0.92); }
349
- }
350
- .cart-bump { animation: cart-bump 0.45s cubic-bezier(0.22, 1, 0.36, 1); }
351
- }
352
-
353
- /* Full-page loader — a soft pulsing core inside a thin rotating ring
354
- (Atelier's breathing mark). No iconography, so it fits any store niche.
355
- Static ring + core under reduced motion; the spin/breathe are additive. */
356
- .loader-ring {
357
- position: relative;
358
- display: flex;
359
- height: 3.5rem;
360
- width: 3.5rem;
361
- align-items: center;
362
- justify-content: center;
363
- border-radius: 9999px;
364
- border: 1px solid hsl(var(--primary) / 0.15);
365
- }
366
- .loader-ring::before {
367
- content: '';
368
- position: absolute;
369
- inset: -1px;
370
- border-radius: 9999px;
371
- border: 1.5px solid transparent;
372
- border-top-color: hsl(var(--primary) / 0.9);
373
- }
374
- .loader-ring-core {
375
- height: 0.6rem;
376
- width: 0.6rem;
377
- border-radius: 9999px;
378
- background: hsl(var(--primary));
379
- box-shadow: 0 0 12px hsl(var(--primary) / 0.4);
380
- }
381
- @media (prefers-reduced-motion: no-preference) {
382
- .loader-ring::before {
383
- animation: ring-spin 1.4s linear infinite;
384
- }
385
- .loader-ring-core {
386
- animation: ring-breathe 2s ease-in-out infinite;
387
- }
388
- .loader-text {
389
- animation: loader-breathe 2.2s ease-in-out infinite;
390
- }
391
- @keyframes ring-spin {
392
- to { transform: rotate(360deg); }
393
- }
394
- @keyframes ring-breathe {
395
- 0%, 100% { opacity: 0.45; transform: scale(0.85); }
396
- 50% { opacity: 1; transform: scale(1); }
397
- }
398
- @keyframes loader-breathe {
399
- 0%, 100% { opacity: 0.55; }
400
- 50% { opacity: 1; }
401
- }
402
- }
1
+ @tailwind base;
2
+ @tailwind components;
3
+ @tailwind utilities;
4
+
5
+ /* ---------------------------------------------------------------------------
6
+ Design system — "Atelier" (premium modern handcrafted-goods commerce)
7
+ Palette (5 total): warm white / warm ink / deep forest / warm sand (2 tints)
8
+ + functional destructive. Tokens only — never raw colors in components.
9
+ --------------------------------------------------------------------------- */
10
+
11
+ @layer base {
12
+ :root {
13
+ --background: 40 33% 98%; /* warm white */
14
+ --foreground: 30 12% 13%; /* warm ink */
15
+ --primary: 163 34% 21%; /* deep forest */
16
+ --primary-foreground: 40 33% 98%;
17
+ --secondary: 40 28% 94%; /* warm sand */
18
+ --secondary-foreground: 30 12% 13%;
19
+ --muted: 40 28% 94%;
20
+ --muted-foreground: 30 8% 40%;
21
+ --accent: 40 24% 89%; /* deeper sand (hover) */
22
+ --accent-foreground: 30 12% 13%;
23
+ --destructive: 0 60% 44%;
24
+ --destructive-foreground: 40 33% 98%;
25
+ --border: 38 18% 86%;
26
+ --radius: 0.75rem;
27
+ }
28
+
29
+ * {
30
+ @apply border-border;
31
+ }
32
+
33
+ html {
34
+ scroll-behavior: smooth;
35
+ }
36
+
37
+ @media (prefers-reduced-motion: reduce) {
38
+ html {
39
+ scroll-behavior: auto;
40
+ }
41
+ }
42
+
43
+ body {
44
+ @apply bg-background text-foreground antialiased;
45
+ font-size: 1rem;
46
+ line-height: 1.6;
47
+ }
48
+
49
+ h1,
50
+ h2,
51
+ h3,
52
+ .font-display {
53
+ font-family: var(--font-serif), ui-serif, Georgia, serif;
54
+ @apply text-balance font-medium;
55
+ line-height: 1.2;
56
+ }
57
+
58
+ ::selection {
59
+ @apply bg-primary text-primary-foreground;
60
+ }
61
+
62
+ :focus-visible {
63
+ @apply outline-none ring-2 ring-primary ring-offset-2 ring-offset-background;
64
+ }
65
+ }
66
+
67
+ @layer components {
68
+ /* Layout rhythm */
69
+ /* Page container — near-full-bleed like the reference DTC sites (Mejuri /
70
+ Missoma): generous gutters instead of a narrow boxed column, capped only
71
+ on ultra-wide screens so lines never run away. */
72
+ .container-page {
73
+ @apply mx-auto w-full max-w-[105rem] px-4 sm:px-6 lg:px-10;
74
+ }
75
+ /* Contained variant for transactional / reading pages (cart, PDP) where
76
+ very long lines hurt more than the full-bleed look helps. */
77
+ .container-narrow {
78
+ @apply mx-auto w-full max-w-7xl px-4 sm:px-6 lg:px-8;
79
+ }
80
+ .section-pad {
81
+ @apply py-14 sm:py-16 lg:py-20;
82
+ }
83
+
84
+ /* Small caps-like label (caption size — tracking OK for Hebrew at this size) */
85
+ .eyebrow {
86
+ @apply mb-3 block text-xs font-semibold uppercase tracking-widest text-primary;
87
+ }
88
+
89
+ /* Buttons */
90
+ .btn {
91
+ @apply inline-flex select-none items-center justify-center gap-2 whitespace-nowrap rounded-full text-sm font-semibold transition-colors duration-200 disabled:pointer-events-none disabled:opacity-50;
92
+ }
93
+ .btn-primary {
94
+ @apply btn bg-primary text-primary-foreground hover:bg-primary/90 shadow-[0_10px_28px_-10px_hsl(var(--primary)/0.55)] transition-[transform,box-shadow,background-color] hover:-translate-y-0.5 hover:shadow-[0_14px_34px_-10px_hsl(var(--primary)/0.6)];
95
+ }
96
+ .btn-outline {
97
+ @apply btn border border-foreground/20 bg-transparent text-foreground hover:border-foreground hover:bg-foreground hover:text-background;
98
+ }
99
+ .btn-soft {
100
+ @apply btn bg-secondary text-secondary-foreground hover:bg-accent;
101
+ }
102
+ .btn-ghost {
103
+ @apply btn text-foreground hover:bg-secondary;
104
+ }
105
+ .btn-md {
106
+ @apply h-11 px-6;
107
+ }
108
+ .btn-lg {
109
+ @apply h-12 px-8 text-base;
110
+ }
111
+ .btn-sm {
112
+ @apply h-9 px-4 text-sm;
113
+ }
114
+
115
+ /* Cards — oversized corners + forest-tinted lift on hover */
116
+ .card {
117
+ @apply rounded-2xl border bg-background shadow-sm;
118
+ }
119
+ .card-hover {
120
+ @apply transition-[transform,box-shadow] duration-300 hover:-translate-y-1 hover:shadow-[0_20px_45px_-18px_hsl(var(--primary)/0.35)];
121
+ }
122
+
123
+ /* Glassy surface (token-blended, no raw colors) */
124
+ .glass {
125
+ @apply rounded-2xl border border-background/60 bg-background/75 shadow-lg backdrop-blur-md;
126
+ }
127
+
128
+ /* Badges / pills */
129
+ .badge {
130
+ @apply inline-flex items-center gap-1 rounded-full px-2.5 py-0.5 text-xs font-semibold;
131
+ }
132
+ .badge-primary {
133
+ @apply badge bg-primary text-primary-foreground;
134
+ }
135
+ .badge-soft {
136
+ @apply badge bg-secondary text-secondary-foreground;
137
+ }
138
+ .badge-destructive {
139
+ @apply badge bg-destructive/10 text-destructive;
140
+ }
141
+
142
+ /* Form controls */
143
+ .input {
144
+ @apply h-11 w-full rounded-lg border bg-background px-3.5 text-sm text-foreground placeholder:text-muted-foreground focus-visible:ring-2 focus-visible:ring-primary;
145
+ }
146
+ .select {
147
+ @apply h-10 rounded-full border bg-background pe-8 ps-4 text-sm font-medium text-foreground;
148
+ appearance: none;
149
+ background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23413b35' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
150
+ background-repeat: no-repeat;
151
+ background-position: right 0.75rem center;
152
+ }
153
+ [dir='rtl'] .select {
154
+ background-position: left 0.75rem center;
155
+ }
156
+
157
+ /* Product description prose (merchant HTML) */
158
+ .prose-store {
159
+ @apply text-[0.95rem] leading-7 text-muted-foreground;
160
+ }
161
+ .prose-store p {
162
+ @apply mb-3;
163
+ }
164
+ .prose-store strong {
165
+ @apply font-semibold text-foreground;
166
+ }
167
+ .prose-store ul {
168
+ @apply mb-3 list-disc ps-5;
169
+ }
170
+ .prose-store ol {
171
+ @apply mb-3 list-decimal ps-5;
172
+ }
173
+ .prose-store a {
174
+ @apply text-primary underline underline-offset-2;
175
+ }
176
+ .prose-store h1,
177
+ .prose-store h2,
178
+ .prose-store h3 {
179
+ @apply mb-2 mt-4 text-foreground;
180
+ }
181
+ }
182
+
183
+ @layer utilities {
184
+ /* Flip directional glyphs (arrows) so they point with the reading direction */
185
+ [dir='rtl'] .rtl-flip {
186
+ transform: scaleX(-1);
187
+ }
188
+
189
+ /* --- Atmosphere washes: soft blends of the SAME tokens (forest + sand) --- */
190
+ .wash-hero {
191
+ background:
192
+ radial-gradient(52rem 32rem at 85% -10%, hsl(var(--primary) / 0.1), transparent 60%),
193
+ radial-gradient(46rem 30rem at 8% 108%, hsl(var(--primary) / 0.08), transparent 55%),
194
+ linear-gradient(180deg, hsl(var(--secondary) / 0.85), hsl(var(--background)));
195
+ }
196
+ [dir='rtl'] .wash-hero {
197
+ background:
198
+ radial-gradient(52rem 32rem at 15% -10%, hsl(var(--primary) / 0.1), transparent 60%),
199
+ radial-gradient(46rem 30rem at 92% 108%, hsl(var(--primary) / 0.08), transparent 55%),
200
+ linear-gradient(180deg, hsl(var(--secondary) / 0.85), hsl(var(--background)));
201
+ }
202
+ .wash-sand {
203
+ background: linear-gradient(
204
+ 180deg,
205
+ hsl(var(--background)),
206
+ hsl(var(--secondary) / 0.9) 30%,
207
+ hsl(var(--secondary) / 0.9) 70%,
208
+ hsl(var(--background))
209
+ );
210
+ }
211
+ .wash-forest {
212
+ background:
213
+ radial-gradient(40rem 24rem at 20% 0%, hsl(var(--primary-foreground) / 0.12), transparent 60%),
214
+ linear-gradient(160deg, hsl(var(--primary)), hsl(163 40% 15%));
215
+ }
216
+
217
+ /* Soft blurred glow blob (decorative, sits behind content) */
218
+ .glow-blob {
219
+ position: absolute;
220
+ border-radius: 9999px;
221
+ background: hsl(var(--primary) / 0.16);
222
+ filter: blur(64px);
223
+ pointer-events: none;
224
+ }
225
+
226
+ /* Marquee band — duplicated track scrolls seamlessly; guarded below */
227
+ .marquee {
228
+ overflow: hidden;
229
+ white-space: nowrap;
230
+ }
231
+ .marquee-track {
232
+ display: inline-flex;
233
+ align-items: center;
234
+ min-width: 200%;
235
+ }
236
+
237
+ /* Single orchestrated reveal — guarded for reduced motion */
238
+ .reveal {
239
+ opacity: 1;
240
+ }
241
+ @media (prefers-reduced-motion: no-preference) {
242
+ .reveal {
243
+ animation: reveal-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
244
+ }
245
+ .reveal-delay-1 {
246
+ animation-delay: 0.12s;
247
+ }
248
+ .reveal-delay-2 {
249
+ animation-delay: 0.24s;
250
+ }
251
+ .reveal-delay-3 {
252
+ animation-delay: 0.36s;
253
+ }
254
+ .img-zoom {
255
+ transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
256
+ }
257
+ .group:hover .img-zoom {
258
+ transform: scale(1.045);
259
+ }
260
+ .spin {
261
+ animation: spinner 0.8s linear infinite;
262
+ }
263
+
264
+ /* Gentle floating — hero cards & chips */
265
+ .float-slow {
266
+ animation: float-y 7s ease-in-out infinite;
267
+ }
268
+ .float-slower {
269
+ animation: float-y 9s ease-in-out 1.2s infinite;
270
+ }
271
+ .blob-drift {
272
+ animation: blob-drift 14s ease-in-out infinite alternate;
273
+ }
274
+
275
+ /* Scroll reveals (driven by the <Reveal> island adding .is-visible) */
276
+ .reveal-scroll {
277
+ opacity: 0;
278
+ transform: translateY(28px);
279
+ transition:
280
+ opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
281
+ transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
282
+ }
283
+ .reveal-scroll.is-visible {
284
+ opacity: 1;
285
+ transform: translateY(0);
286
+ }
287
+
288
+ .marquee-track {
289
+ animation: marquee-ltr 32s linear infinite;
290
+ }
291
+ [dir='rtl'] .marquee-track {
292
+ animation-name: marquee-rtl;
293
+ }
294
+ }
295
+
296
+ @keyframes reveal-up {
297
+ from {
298
+ opacity: 0;
299
+ transform: translateY(16px);
300
+ }
301
+ to {
302
+ opacity: 1;
303
+ transform: translateY(0);
304
+ }
305
+ }
306
+
307
+ @keyframes spinner {
308
+ to {
309
+ transform: rotate(360deg);
310
+ }
311
+ }
312
+
313
+ @keyframes float-y {
314
+ 0%,
315
+ 100% {
316
+ transform: translateY(0) rotate(var(--float-rotate, 0deg));
317
+ }
318
+ 50% {
319
+ transform: translateY(-12px) rotate(var(--float-rotate, 0deg));
320
+ }
321
+ }
322
+
323
+ @keyframes blob-drift {
324
+ from {
325
+ transform: translate(0, 0) scale(1);
326
+ }
327
+ to {
328
+ transform: translate(3rem, -2rem) scale(1.15);
329
+ }
330
+ }
331
+
332
+ @keyframes marquee-ltr {
333
+ to {
334
+ transform: translateX(-50%);
335
+ }
336
+ }
337
+ @keyframes marquee-rtl {
338
+ to {
339
+ transform: translateX(50%);
340
+ }
341
+ }
342
+ }
343
+
344
+ /* Cart bump — the landing pad reacts when a flown item arrives */
345
+ @media (prefers-reduced-motion: no-preference) {
346
+ @keyframes cart-bump {
347
+ 30% { transform: scale(1.3); }
348
+ 60% { transform: scale(0.92); }
349
+ }
350
+ .cart-bump { animation: cart-bump 0.45s cubic-bezier(0.22, 1, 0.36, 1); }
351
+ }
352
+
353
+ /* Full-page loader — a soft pulsing core inside a thin rotating ring
354
+ (Atelier's breathing mark). No iconography, so it fits any store niche.
355
+ Static ring + core under reduced motion; the spin/breathe are additive. */
356
+ .loader-ring {
357
+ position: relative;
358
+ display: flex;
359
+ height: 3.5rem;
360
+ width: 3.5rem;
361
+ align-items: center;
362
+ justify-content: center;
363
+ border-radius: 9999px;
364
+ border: 1px solid hsl(var(--primary) / 0.15);
365
+ }
366
+ .loader-ring::before {
367
+ content: '';
368
+ position: absolute;
369
+ inset: -1px;
370
+ border-radius: 9999px;
371
+ border: 1.5px solid transparent;
372
+ border-top-color: hsl(var(--primary) / 0.9);
373
+ }
374
+ .loader-ring-core {
375
+ height: 0.6rem;
376
+ width: 0.6rem;
377
+ border-radius: 9999px;
378
+ background: hsl(var(--primary));
379
+ box-shadow: 0 0 12px hsl(var(--primary) / 0.4);
380
+ }
381
+ @media (prefers-reduced-motion: no-preference) {
382
+ .loader-ring::before {
383
+ animation: ring-spin 1.4s linear infinite;
384
+ }
385
+ .loader-ring-core {
386
+ animation: ring-breathe 2s ease-in-out infinite;
387
+ }
388
+ .loader-text {
389
+ animation: loader-breathe 2.2s ease-in-out infinite;
390
+ }
391
+ @keyframes ring-spin {
392
+ to { transform: rotate(360deg); }
393
+ }
394
+ @keyframes ring-breathe {
395
+ 0%, 100% { opacity: 0.45; transform: scale(0.85); }
396
+ 50% { opacity: 1; transform: scale(1); }
397
+ }
398
+ @keyframes loader-breathe {
399
+ 0%, 100% { opacity: 0.55; }
400
+ 50% { opacity: 1; }
401
+ }
402
+ }