create-brainerce-store 1.51.0 → 1.52.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 (170) hide show
  1. package/README.md +72 -0
  2. package/dist/index.js +9 -68
  3. package/messages/en.json +32 -0
  4. package/messages/he.json +32 -0
  5. package/package.json +1 -1
  6. package/templates/nextjs/base/.claude/commands/design.md +9 -0
  7. package/templates/nextjs/base/AI-GUIDE.md +52 -3
  8. package/templates/nextjs/base/CLAUDE.md +10 -0
  9. package/templates/nextjs/base/package.json.ejs +52 -39
  10. package/templates/nextjs/base/src/app/globals.css +36 -30
  11. package/templates/nextjs/base/src/components/checkout/payment-step.tsx +14 -10
  12. package/templates/nextjs/base/src/components/ui/accordion.tsx +53 -0
  13. package/templates/nextjs/base/src/components/ui/badge.tsx +32 -0
  14. package/templates/nextjs/base/src/components/ui/button.tsx +49 -0
  15. package/templates/nextjs/base/src/components/ui/card.tsx +55 -0
  16. package/templates/nextjs/base/src/components/ui/checkbox.tsx +28 -0
  17. package/templates/nextjs/base/src/components/ui/dialog.tsx +107 -0
  18. package/templates/nextjs/base/src/components/ui/input.tsx +22 -0
  19. package/templates/nextjs/base/src/components/ui/label.tsx +21 -0
  20. package/templates/nextjs/base/src/components/ui/radio-group.tsx +38 -0
  21. package/templates/nextjs/base/src/components/ui/select.tsx +153 -0
  22. package/templates/nextjs/base/src/components/ui/separator.tsx +26 -0
  23. package/templates/nextjs/base/src/components/ui/sheet.tsx +125 -0
  24. package/templates/nextjs/base/src/components/ui/skeleton.tsx +7 -0
  25. package/templates/nextjs/base/src/components/ui/tabs.tsx +55 -0
  26. package/templates/nextjs/base/src/components/ui/textarea.tsx +21 -0
  27. package/templates/nextjs/base/src/components/ui/tooltip.tsx +32 -0
  28. package/templates/nextjs/base/src/ui/cart/cart-bundle-offer.tsx +17 -11
  29. package/templates/nextjs/base/src/ui/cart/cart-item.tsx +2 -8
  30. package/templates/nextjs/base/src/ui/cart/cart-nudges.tsx +28 -39
  31. package/templates/nextjs/base/src/ui/cart/cart-summary.tsx +3 -1
  32. package/templates/nextjs/base/src/ui/cart/cart-upgrade-banner.tsx +8 -23
  33. package/templates/nextjs/base/src/ui/cart/cart-view.tsx +18 -27
  34. package/templates/nextjs/base/src/ui/cart/coupon-input.tsx +10 -21
  35. package/templates/nextjs/base/src/ui/cart/free-shipping-bar.tsx +2 -3
  36. package/templates/nextjs/base/src/ui/cart/reservation-countdown.tsx +95 -103
  37. package/templates/nextjs/base/src/ui/home/hero-section.tsx +4 -6
  38. package/templates/nextjs/base/src/ui/layout/announcement-bar.tsx.ejs +116 -125
  39. package/templates/nextjs/base/src/ui/layout/faq-section.tsx.ejs +90 -103
  40. package/templates/nextjs/base/src/ui/layout/header-account.tsx +2 -17
  41. package/templates/nextjs/base/src/ui/layout/language-switcher.tsx.ejs +80 -70
  42. package/templates/nextjs/base/src/ui/layout/site-footer.tsx.ejs +144 -164
  43. package/templates/nextjs/base/src/ui/layout/site-header.tsx.ejs +152 -182
  44. package/templates/nextjs/base/src/ui/product/customization-fields.tsx +456 -444
  45. package/templates/nextjs/base/src/ui/product/discount-badge.tsx +18 -22
  46. package/templates/nextjs/base/src/ui/product/frequently-bought-together.tsx +15 -27
  47. package/templates/nextjs/base/src/ui/product/modifier-group-selector.tsx +206 -175
  48. package/templates/nextjs/base/src/ui/product/price-display.tsx +3 -2
  49. package/templates/nextjs/base/src/ui/product/product-card.tsx +238 -271
  50. package/templates/nextjs/base/src/ui/product/product-client-section.tsx +455 -470
  51. package/templates/nextjs/base/src/ui/product/product-listing.tsx +96 -79
  52. package/templates/nextjs/base/src/ui/product/recommendation-section.tsx +102 -107
  53. package/templates/nextjs/base/src/ui/product/review-form.tsx +44 -43
  54. package/templates/nextjs/{designs/passepartout → base/src}/ui/product/reviews-section.tsx.ejs +108 -96
  55. package/templates/nextjs/base/src/ui/product/stock-badge.tsx +61 -63
  56. package/templates/nextjs/base/tailwind.config.ts +69 -42
  57. package/templates/nextjs/designs/{passepartout → atelier}/app-overlay/layout.tsx.ejs +23 -25
  58. package/templates/nextjs/designs/atelier/globals.css +396 -0
  59. package/templates/nextjs/designs/atelier/messages-patch/en.json +99 -0
  60. package/templates/nextjs/designs/atelier/messages-patch/he.json +99 -0
  61. package/templates/nextjs/designs/{passepartout → atelier}/ui/cart/cart-bundle-offer.tsx +110 -111
  62. package/templates/nextjs/designs/atelier/ui/cart/cart-drawer.tsx +163 -0
  63. package/templates/nextjs/designs/atelier/ui/cart/cart-item.tsx +140 -0
  64. package/templates/nextjs/designs/atelier/ui/cart/cart-nudges.tsx +34 -0
  65. package/templates/nextjs/designs/atelier/ui/cart/cart-summary.tsx +107 -0
  66. package/templates/nextjs/designs/{passepartout → atelier}/ui/cart/cart-upgrade-banner.tsx +123 -141
  67. package/templates/nextjs/designs/atelier/ui/cart/cart-view.tsx +147 -0
  68. package/templates/nextjs/designs/atelier/ui/cart/coupon-input.tsx +142 -0
  69. package/templates/nextjs/designs/{passepartout → atelier}/ui/cart/free-shipping-bar.tsx +77 -62
  70. package/templates/nextjs/designs/{passepartout → atelier}/ui/cart/reservation-countdown.tsx +89 -103
  71. package/templates/nextjs/designs/atelier/ui/home/benefits-band.tsx +34 -0
  72. package/templates/nextjs/designs/atelier/ui/home/category-tiles.tsx +148 -0
  73. package/templates/nextjs/designs/atelier/ui/home/discount-banner-strip.tsx +27 -0
  74. package/templates/nextjs/designs/atelier/ui/home/editorial-band.tsx +73 -0
  75. package/templates/nextjs/designs/atelier/ui/home/featured-products-section.tsx +36 -0
  76. package/templates/nextjs/designs/atelier/ui/home/hero-section.tsx +148 -0
  77. package/templates/nextjs/designs/atelier/ui/home/home-client.tsx +54 -0
  78. package/templates/nextjs/designs/atelier/ui/home/newsletter-section.tsx +78 -0
  79. package/templates/nextjs/designs/atelier/ui/home/testimonials-band.tsx +46 -0
  80. package/templates/nextjs/designs/atelier/ui/layout/announcement-bar.tsx +118 -0
  81. package/templates/nextjs/designs/atelier/ui/layout/faq-section.tsx +96 -0
  82. package/templates/nextjs/designs/atelier/ui/layout/header-account.tsx +36 -0
  83. package/templates/nextjs/designs/atelier/ui/layout/header-cart.tsx +36 -0
  84. package/templates/nextjs/designs/atelier/ui/layout/language-switcher.tsx.ejs +137 -0
  85. package/templates/nextjs/designs/atelier/ui/layout/nav-url.ts +14 -0
  86. package/templates/nextjs/designs/atelier/ui/layout/rich-text-block.tsx +34 -0
  87. package/templates/nextjs/designs/atelier/ui/layout/site-footer.tsx.ejs +141 -0
  88. package/templates/nextjs/designs/atelier/ui/layout/site-header.tsx.ejs +138 -0
  89. package/templates/nextjs/designs/atelier/ui/product/customization-fields.tsx +466 -0
  90. package/templates/nextjs/designs/{passepartout → atelier}/ui/product/discount-badge.tsx +17 -22
  91. package/templates/nextjs/designs/{passepartout → atelier}/ui/product/frequently-bought-together.tsx +196 -205
  92. package/templates/nextjs/designs/atelier/ui/product/modifier-group-selector.tsx +193 -0
  93. package/templates/nextjs/designs/atelier/ui/product/price-display.tsx +69 -0
  94. package/templates/nextjs/designs/atelier/ui/product/product-card.tsx +260 -0
  95. package/templates/nextjs/designs/atelier/ui/product/product-client-section.tsx +471 -0
  96. package/templates/nextjs/designs/atelier/ui/product/product-grid.tsx +47 -0
  97. package/templates/nextjs/designs/atelier/ui/product/product-listing.tsx +260 -0
  98. package/templates/nextjs/designs/atelier/ui/product/recommendation-section.tsx +95 -0
  99. package/templates/nextjs/designs/{passepartout → atelier}/ui/product/review-form.tsx +267 -294
  100. package/templates/nextjs/designs/atelier/ui/product/reviews-section.tsx.ejs +148 -0
  101. package/templates/nextjs/designs/atelier/ui/product/stock-badge.tsx +66 -0
  102. package/templates/nextjs/designs/atelier/ui/product/variant-selector.tsx +206 -0
  103. package/templates/nextjs/designs/atelier/ui/shared/cdn-image.tsx +29 -0
  104. package/templates/nextjs/designs/{passepartout → atelier}/ui/shared/fly-to-cart.ts +86 -85
  105. package/templates/nextjs/designs/atelier/ui/shared/icons.tsx +269 -0
  106. package/templates/nextjs/designs/atelier/ui/shared/loading-spinner.tsx +64 -0
  107. package/templates/nextjs/designs/atelier/ui/shared/reveal.tsx +71 -0
  108. package/templates/nextjs/designs/atelier/ui/shared/select-menu.tsx +125 -0
  109. package/templates/nextjs/themes/luxury/globals.css +405 -399
  110. package/templates/nextjs/themes/minimal/globals.css +36 -30
  111. package/templates/nextjs/themes/playful/globals.css +406 -400
  112. package/templates/nextjs/ui-canvas/cart/cart-bundle-offer.tsx +2 -0
  113. package/templates/nextjs/ui-canvas/cart/cart-item.tsx +2 -0
  114. package/templates/nextjs/ui-canvas/cart/cart-nudges.tsx +2 -0
  115. package/templates/nextjs/ui-canvas/cart/cart-summary.tsx +2 -0
  116. package/templates/nextjs/ui-canvas/cart/cart-upgrade-banner.tsx +2 -0
  117. package/templates/nextjs/ui-canvas/cart/cart-view.tsx +2 -2
  118. package/templates/nextjs/ui-canvas/cart/coupon-input.tsx +2 -0
  119. package/templates/nextjs/ui-canvas/cart/free-shipping-bar.tsx +2 -0
  120. package/templates/nextjs/ui-canvas/cart/reservation-countdown.tsx +2 -0
  121. package/templates/nextjs/ui-canvas/home/discount-banner-strip.tsx +1 -1
  122. package/templates/nextjs/ui-canvas/home/featured-products-section.tsx +1 -1
  123. package/templates/nextjs/ui-canvas/home/hero-section.tsx +1 -1
  124. package/templates/nextjs/ui-canvas/home/home-client.tsx +1 -1
  125. package/templates/nextjs/ui-canvas/layout/announcement-bar.tsx.ejs +1 -1
  126. package/templates/nextjs/ui-canvas/layout/faq-section.tsx.ejs +2 -2
  127. package/templates/nextjs/ui-canvas/layout/header-account.tsx +1 -1
  128. package/templates/nextjs/ui-canvas/layout/language-switcher.tsx.ejs +2 -0
  129. package/templates/nextjs/ui-canvas/layout/rich-text-block.tsx.ejs +2 -0
  130. package/templates/nextjs/ui-canvas/layout/site-footer.tsx.ejs +2 -2
  131. package/templates/nextjs/ui-canvas/layout/site-header.tsx.ejs +2 -2
  132. package/templates/nextjs/ui-canvas/product/customization-fields.tsx +2 -0
  133. package/templates/nextjs/ui-canvas/product/discount-badge.tsx +2 -0
  134. package/templates/nextjs/ui-canvas/product/frequently-bought-together.tsx +2 -0
  135. package/templates/nextjs/ui-canvas/product/modifier-group-selector.tsx +2 -0
  136. package/templates/nextjs/ui-canvas/product/price-display.tsx +2 -0
  137. package/templates/nextjs/ui-canvas/product/product-card.tsx +1 -1
  138. package/templates/nextjs/ui-canvas/product/product-client-section.tsx +1 -1
  139. package/templates/nextjs/ui-canvas/product/product-grid.tsx +1 -1
  140. package/templates/nextjs/ui-canvas/product/product-listing.tsx +1 -1
  141. package/templates/nextjs/ui-canvas/product/recommendation-section.tsx +4 -0
  142. package/templates/nextjs/ui-canvas/product/review-form.tsx +29 -32
  143. package/templates/nextjs/ui-canvas/product/{reviews-section.tsx → reviews-section.tsx.ejs} +26 -8
  144. package/templates/nextjs/ui-canvas/product/stock-badge.tsx +2 -0
  145. package/templates/nextjs/ui-canvas/product/variant-selector.tsx +2 -0
  146. package/templates/nextjs/ui-canvas/shared/cdn-image.tsx +2 -0
  147. package/templates/nextjs/ui-canvas/shared/loading-spinner.tsx +2 -0
  148. package/templates/nextjs/base/src/ui/product/reviews-section.tsx +0 -85
  149. package/templates/nextjs/designs/passepartout/globals.css +0 -412
  150. package/templates/nextjs/designs/passepartout/messages-patch/en.json +0 -87
  151. package/templates/nextjs/designs/passepartout/messages-patch/he.json +0 -87
  152. package/templates/nextjs/designs/passepartout/ui/cart/cart-nudges.tsx +0 -39
  153. package/templates/nextjs/designs/passepartout/ui/cart/cart-view.tsx +0 -149
  154. package/templates/nextjs/designs/passepartout/ui/home/home-client.tsx +0 -401
  155. package/templates/nextjs/designs/passepartout/ui/layout/announcement-bar.tsx +0 -139
  156. package/templates/nextjs/designs/passepartout/ui/layout/cart-link.tsx +0 -45
  157. package/templates/nextjs/designs/passepartout/ui/layout/faq-section.tsx +0 -103
  158. package/templates/nextjs/designs/passepartout/ui/layout/site-footer.tsx +0 -159
  159. package/templates/nextjs/designs/passepartout/ui/layout/site-header.tsx.ejs +0 -155
  160. package/templates/nextjs/designs/passepartout/ui/layout/trust-icons.tsx +0 -60
  161. package/templates/nextjs/designs/passepartout/ui/layout/whatsapp-button.tsx +0 -34
  162. package/templates/nextjs/designs/passepartout/ui/product/price-display.tsx +0 -111
  163. package/templates/nextjs/designs/passepartout/ui/product/product-card.tsx +0 -265
  164. package/templates/nextjs/designs/passepartout/ui/product/product-client-section.tsx +0 -667
  165. package/templates/nextjs/designs/passepartout/ui/product/product-grid.tsx +0 -35
  166. package/templates/nextjs/designs/passepartout/ui/product/product-listing.tsx +0 -427
  167. package/templates/nextjs/designs/passepartout/ui/product/recommendation-section.tsx +0 -113
  168. package/templates/nextjs/designs/passepartout/ui/product/stock-badge.tsx +0 -52
  169. package/templates/nextjs/designs/passepartout/ui/product/variant-selector.tsx +0 -307
  170. package/templates/nextjs/designs/passepartout/ui/shared/loading-spinner.tsx +0 -33
@@ -1,42 +1,69 @@
1
- import type { Config } from 'tailwindcss';
2
-
3
- const config: Config = {
4
- content: ['./src/**/*.{js,ts,jsx,tsx,mdx}'],
5
- theme: {
6
- extend: {
7
- colors: {
8
- primary: 'hsl(var(--primary))',
9
- 'primary-foreground': 'hsl(var(--primary-foreground))',
10
- secondary: 'hsl(var(--secondary))',
11
- 'secondary-foreground': 'hsl(var(--secondary-foreground))',
12
- background: 'hsl(var(--background))',
13
- foreground: 'hsl(var(--foreground))',
14
- muted: 'hsl(var(--muted))',
15
- 'muted-foreground': 'hsl(var(--muted-foreground))',
16
- border: 'hsl(var(--border))',
17
- destructive: 'hsl(var(--destructive))',
18
- 'destructive-foreground': 'hsl(var(--destructive-foreground))',
19
- accent: 'hsl(var(--accent))',
20
- 'accent-foreground': 'hsl(var(--accent-foreground))',
21
- // Extended tokens used by design packs (defined in their globals.css).
22
- // Harmless when a design doesn't set the CSS variables — the classes
23
- // simply aren't used by the base ui.
24
- surface: 'hsl(var(--surface))',
25
- plinth: 'hsl(var(--plinth))',
26
- },
27
- fontFamily: {
28
- // Design packs set --font-sans / --font-serif via next/font variables
29
- // in app/layout.tsx; the fallbacks keep font-sans/font-serif usable
30
- // even when a layout doesn't define them.
31
- sans: ['var(--font-sans)', 'ui-sans-serif', 'system-ui', 'sans-serif'],
32
- serif: ['var(--font-serif)', 'ui-serif', 'Georgia', 'serif'],
33
- },
34
- borderRadius: {
35
- DEFAULT: 'var(--radius)',
36
- },
37
- },
38
- },
39
- plugins: [],
40
- };
41
-
42
- export default config;
1
+ import type { Config } from 'tailwindcss';
2
+ import tailwindcssAnimate from 'tailwindcss-animate';
3
+
4
+ const config: Config = {
5
+ darkMode: ['class'],
6
+ content: ['./src/**/*.{js,ts,jsx,tsx,mdx}'],
7
+ theme: {
8
+ extend: {
9
+ colors: {
10
+ primary: 'hsl(var(--primary))',
11
+ 'primary-foreground': 'hsl(var(--primary-foreground))',
12
+ secondary: 'hsl(var(--secondary))',
13
+ 'secondary-foreground': 'hsl(var(--secondary-foreground))',
14
+ background: 'hsl(var(--background))',
15
+ foreground: 'hsl(var(--foreground))',
16
+ muted: 'hsl(var(--muted))',
17
+ 'muted-foreground': 'hsl(var(--muted-foreground))',
18
+ border: 'hsl(var(--border))',
19
+ input: 'hsl(var(--input))',
20
+ ring: 'hsl(var(--ring))',
21
+ destructive: 'hsl(var(--destructive))',
22
+ 'destructive-foreground': 'hsl(var(--destructive-foreground))',
23
+ accent: 'hsl(var(--accent))',
24
+ 'accent-foreground': 'hsl(var(--accent-foreground))',
25
+ card: 'hsl(var(--card))',
26
+ 'card-foreground': 'hsl(var(--card-foreground))',
27
+ popover: 'hsl(var(--popover))',
28
+ 'popover-foreground': 'hsl(var(--popover-foreground))',
29
+ // Extended tokens used by design packs (defined in their globals.css).
30
+ // Harmless when a design doesn't set the CSS variables — the classes
31
+ // simply aren't used by the base ui.
32
+ surface: 'hsl(var(--surface))',
33
+ plinth: 'hsl(var(--plinth))',
34
+ },
35
+ fontFamily: {
36
+ // Design packs set --font-sans / --font-serif via next/font variables
37
+ // in app/layout.tsx; the fallbacks keep font-sans/font-serif usable
38
+ // even when a layout doesn't define them.
39
+ sans: ['var(--font-sans)', 'ui-sans-serif', 'system-ui', 'sans-serif'],
40
+ serif: ['var(--font-serif)', 'ui-serif', 'Georgia', 'serif'],
41
+ },
42
+ borderRadius: {
43
+ // shadcn/ui convention: every radius derives from the --radius token,
44
+ // so `rounded`, `rounded-md`, `rounded-lg` all follow the theme.
45
+ DEFAULT: 'var(--radius)',
46
+ lg: 'var(--radius)',
47
+ md: 'calc(var(--radius) - 2px)',
48
+ sm: 'calc(var(--radius) - 4px)',
49
+ },
50
+ keyframes: {
51
+ 'accordion-down': {
52
+ from: { height: '0' },
53
+ to: { height: 'var(--radix-accordion-content-height)' },
54
+ },
55
+ 'accordion-up': {
56
+ from: { height: 'var(--radix-accordion-content-height)' },
57
+ to: { height: '0' },
58
+ },
59
+ },
60
+ animation: {
61
+ 'accordion-down': 'accordion-down 0.2s ease-out',
62
+ 'accordion-up': 'accordion-up 0.2s ease-out',
63
+ },
64
+ },
65
+ },
66
+ plugins: [tailwindcssAnimate],
67
+ };
68
+
69
+ export default config;
@@ -5,25 +5,26 @@ import { StoreProvider } from '@/core/providers/store-provider';
5
5
  import { AnnouncementBar } from '@/ui/layout/announcement-bar';
6
6
  import { SiteHeader } from '@/ui/layout/site-header';
7
7
  import { SiteFooter } from '@/ui/layout/site-footer';
8
- import { WhatsAppButton } from '@/ui/layout/whatsapp-button';
8
+ import { CartDrawer } from '@/ui/cart/cart-drawer';
9
9
  import { BrainerceBotWidget } from '@/components/brainerce-bot';
10
10
  import { getServerClient, fetchStoreInfo } from '@/core/lib/brainerce';
11
11
  import { getDirection, supportedLocales } from '@/i18n';
12
12
  import { getNonce } from '@/core/lib/nonce';
13
13
  import '../globals.css';
14
14
 
15
- // פספרטו · Passe-Partout: print serif for titles, an invisible sans for
16
- // everything else. Both faces carry Hebrew + Latin subsets.
17
- const serif = Frank_Ruhl_Libre({
18
- weight: ['300', '400', '500'],
19
- subsets: ['hebrew', 'latin'],
20
- variable: '--font-serif',
21
- });
15
+ // Atelier: Assistant (clean Hebrew grotesque) for body, Frank Ruhl Libre
16
+ // (Hebrew serif — the gallery voice) for display. Exposed as CSS variables
17
+ // consumed by tailwind's font-sans / font-serif and the h1-h3 base styles.
22
18
  const sans = Assistant({
23
- weight: ['300', '400', '600'],
24
19
  subsets: ['hebrew', 'latin'],
20
+ weight: ['400', '500', '600', '700'],
25
21
  variable: '--font-sans',
26
22
  });
23
+ const serif = Frank_Ruhl_Libre({
24
+ subsets: ['hebrew', 'latin'],
25
+ weight: ['400', '500', '700'],
26
+ variable: '--font-serif',
27
+ });
27
28
 
28
29
  const baseUrl = process.env.NEXT_PUBLIC_SITE_URL || 'https://example.com';
29
30
 
@@ -112,16 +113,14 @@ export default async function RootLayout({
112
113
  />
113
114
  </head>
114
115
  <body className={`${sans.variable} ${serif.variable} font-sans`}>
115
- {/* The wall has tooth — a fixed ~2% noise film above everything */}
116
- <div aria-hidden="true" className="paper-grain" />
117
116
  <StoreProvider locale={locale} initialStoreInfo={storeInfo}>
118
117
  <div className="min-h-screen flex flex-col">
119
118
  <AnnouncementBar announcements={announcements} />
120
119
  <SiteHeader header={siteHeader} storeName={<%- storeNameJs %>} />
121
120
  <main className="flex-1">{children}</main>
122
- <SiteFooter footer={siteFooter} storeName={<%- storeNameJs %>} />
121
+ <SiteFooter footer={siteFooter} storeName={<%- storeNameJs %>} locale={locale} />
123
122
  </div>
124
- <WhatsAppButton />
123
+ <CartDrawer />
125
124
  <BrainerceBotWidget />
126
125
  </StoreProvider>
127
126
  </body>
@@ -135,24 +134,25 @@ import { StoreProvider } from '@/core/providers/store-provider';
135
134
  import { AnnouncementBar } from '@/ui/layout/announcement-bar';
136
135
  import { SiteHeader } from '@/ui/layout/site-header';
137
136
  import { SiteFooter } from '@/ui/layout/site-footer';
138
- import { WhatsAppButton } from '@/ui/layout/whatsapp-button';
137
+ import { CartDrawer } from '@/ui/cart/cart-drawer';
139
138
  import { BrainerceBotWidget } from '@/components/brainerce-bot';
140
139
  import { getServerClient, fetchStoreInfo } from '@/core/lib/brainerce';
141
140
  import { getNonce } from '@/core/lib/nonce';
142
141
  import './globals.css';
143
142
 
144
- // פספרטו · Passe-Partout: print serif for titles, an invisible sans for
145
- // everything else. Both faces carry Hebrew + Latin subsets.
146
- const serif = Frank_Ruhl_Libre({
147
- weight: ['300', '400', '500'],
148
- subsets: ['hebrew', 'latin'],
149
- variable: '--font-serif',
150
- });
143
+ // Atelier: Assistant (clean Hebrew grotesque) for body, Frank Ruhl Libre
144
+ // (Hebrew serif — the gallery voice) for display. Exposed as CSS variables
145
+ // consumed by tailwind's font-sans / font-serif and the h1-h3 base styles.
151
146
  const sans = Assistant({
152
- weight: ['300', '400', '600'],
153
147
  subsets: ['hebrew', 'latin'],
148
+ weight: ['400', '500', '600', '700'],
154
149
  variable: '--font-sans',
155
150
  });
151
+ const serif = Frank_Ruhl_Libre({
152
+ subsets: ['hebrew', 'latin'],
153
+ weight: ['400', '500', '700'],
154
+ variable: '--font-serif',
155
+ });
156
156
 
157
157
  const baseUrl = process.env.NEXT_PUBLIC_SITE_URL || 'https://example.com';
158
158
 
@@ -234,8 +234,6 @@ export default async function RootLayout({
234
234
  />
235
235
  </head>
236
236
  <body className={`${sans.variable} ${serif.variable} font-sans`}>
237
- {/* The wall has tooth — a fixed ~2% noise film above everything */}
238
- <div aria-hidden="true" className="paper-grain" />
239
237
  <StoreProvider initialStoreInfo={storeInfo}>
240
238
  <div className="min-h-screen flex flex-col">
241
239
  <AnnouncementBar announcements={announcements} />
@@ -243,7 +241,7 @@ export default async function RootLayout({
243
241
  <main className="flex-1">{children}</main>
244
242
  <SiteFooter footer={siteFooter} storeName={<%- storeNameJs %>} />
245
243
  </div>
246
- <WhatsAppButton />
244
+ <CartDrawer />
247
245
  <BrainerceBotWidget />
248
246
  </StoreProvider>
249
247
  </body>
@@ -0,0 +1,396 @@
1
+ @tailwind base;
2
+ @tailwind components;
3
+ @tailwind utilities;
4
+
5
+ /* ---------------------------------------------------------------------------
6
+ Design system — "Atelier" (premium modern jewelry 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 gem orbiting a ring band (Atelier's "polishing" mark).
354
+ Static ring + gem under reduced motion; the orbit/breathe are additive. */
355
+ .loader-orbit {
356
+ position: relative;
357
+ display: flex;
358
+ height: 3.5rem;
359
+ width: 3.5rem;
360
+ align-items: center;
361
+ justify-content: center;
362
+ border-radius: 9999px;
363
+ border: 1px solid hsl(var(--primary) / 0.25);
364
+ box-shadow: inset 0 0 18px hsl(var(--primary) / 0.06);
365
+ }
366
+ .loader-orbit-dot {
367
+ position: absolute;
368
+ inset: 0;
369
+ }
370
+ .loader-orbit-dot::before {
371
+ content: '';
372
+ position: absolute;
373
+ top: -3px;
374
+ inset-inline-start: 50%;
375
+ margin-inline-start: -3.5px;
376
+ height: 7px;
377
+ width: 7px;
378
+ border-radius: 9999px;
379
+ background: hsl(var(--primary));
380
+ box-shadow: 0 0 12px hsl(var(--primary) / 0.55);
381
+ }
382
+ @media (prefers-reduced-motion: no-preference) {
383
+ .loader-orbit-dot {
384
+ animation: orbit 1.5s cubic-bezier(0.55, 0.12, 0.45, 0.88) infinite;
385
+ }
386
+ .loader-text {
387
+ animation: loader-breathe 2.2s ease-in-out infinite;
388
+ }
389
+ @keyframes orbit {
390
+ to { transform: rotate(360deg); }
391
+ }
392
+ @keyframes loader-breathe {
393
+ 0%, 100% { opacity: 0.55; }
394
+ 50% { opacity: 1; }
395
+ }
396
+ }