@faststore/core 2.2.48 → 2.2.50
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.
- package/.next/BUILD_ID +1 -1
- package/.next/build-manifest.json +13 -13
- package/.next/cache/.tsbuildinfo +1 -1
- package/.next/cache/config.json +3 -3
- package/.next/cache/eslint/.cache_1gneedd +1 -1
- package/.next/cache/next-server.js.nft.json +1 -1
- package/.next/cache/webpack/client-production/0.pack +0 -0
- package/.next/cache/webpack/client-production/index.pack +0 -0
- package/.next/cache/webpack/server-production/0.pack +0 -0
- package/.next/cache/webpack/server-production/index.pack +0 -0
- package/.next/next-server.js.nft.json +1 -1
- package/.next/prerender-manifest.json +1 -1
- package/.next/react-loadable-manifest.json +1 -1
- package/.next/routes-manifest.json +1 -1
- package/.next/server/chunks/350.js +138 -37
- package/.next/server/chunks/585.js +3 -4
- package/.next/server/middleware-build-manifest.js +1 -1
- package/.next/server/middleware-react-loadable-manifest.js +1 -1
- package/.next/server/pages/404.js.nft.json +1 -1
- package/.next/server/pages/500.js.nft.json +1 -1
- package/.next/server/pages/[...slug].js.nft.json +1 -1
- package/.next/server/pages/[slug]/p.js.nft.json +1 -1
- package/.next/server/pages/_app.js.nft.json +1 -1
- package/.next/server/pages/_error.js.nft.json +1 -1
- package/.next/server/pages/account.js.nft.json +1 -1
- package/.next/server/pages/api/graphql.js +157 -39
- package/.next/server/pages/checkout.js.nft.json +1 -1
- package/.next/server/pages/en-US/404.html +2 -2
- package/.next/server/pages/en-US/500.html +2 -2
- package/.next/server/pages/en-US/account.html +2 -2
- package/.next/server/pages/en-US/checkout.html +2 -2
- package/.next/server/pages/en-US/login.html +2 -2
- package/.next/server/pages/en-US/s.html +2 -2
- package/.next/server/pages/en-US.html +2 -2
- package/.next/server/pages/index.js.nft.json +1 -1
- package/.next/server/pages/login.js.nft.json +1 -1
- package/.next/server/pages/s.js.nft.json +1 -1
- package/.next/server/pages-manifest.json +3 -3
- package/.next/static/chunks/{585.4c5d40fc6a72a611.js → 585.2d70151d75fdf960.js} +1 -1
- package/.next/static/chunks/{webpack-181f40c3719492e1.js → webpack-86d49ac4b093b8cf.js} +1 -1
- package/.next/trace +80 -80
- package/.turbo/turbo-build.log +2 -2
- package/.turbo/turbo-test.log +11 -11
- package/package.json +3 -3
- package/src/pages/api/graphql.ts +29 -2
- package/src/sdk/cart/useCheckoutButton.ts +3 -3
- package/src/server/index.ts +4 -1
- /package/.next/static/{SC1Gn_fnUQSpOMSvXEqFi → 2x1XIwoqXcK0trpOG0glK}/_buildManifest.js +0 -0
- /package/.next/static/{SC1Gn_fnUQSpOMSvXEqFi → 2x1XIwoqXcK0trpOG0glK}/_ssgManifest.js +0 -0
|
@@ -257,10 +257,85 @@ const fetchAPI = async (info, init, options) => {
|
|
|
257
257
|
};
|
|
258
258
|
//# sourceMappingURL=fetch.js.map
|
|
259
259
|
;// CONCATENATED MODULE: ../api/dist/esm/src/platforms/vtex/utils/cookies.js
|
|
260
|
-
const
|
|
261
|
-
|
|
260
|
+
const MATCH_FIRST_SET_COOKIE_KEY_VALUE = /^([^=]+)=([^;]*)/;
|
|
261
|
+
/**
|
|
262
|
+
* This function updates the ctx.storage.cookies, that is used in each request.
|
|
263
|
+
*
|
|
264
|
+
* ctx.storage.cookies is a Map<string[1], Record<string, string>[2]> where,
|
|
265
|
+
* [1] cookie key
|
|
266
|
+
* [2] {
|
|
267
|
+
* value: cookie value,
|
|
268
|
+
* setCookie: setCookie used in browser response
|
|
269
|
+
* }
|
|
270
|
+
*/
|
|
271
|
+
const updatesContextStorageCookies = (ctx, setCookieValue) => {
|
|
272
|
+
const matchCookie = setCookieValue.match(MATCH_FIRST_SET_COOKIE_KEY_VALUE);
|
|
273
|
+
if (matchCookie) {
|
|
274
|
+
const cookieKey = matchCookie[1];
|
|
275
|
+
const cookieValue = matchCookie[2];
|
|
276
|
+
ctx.storage.cookies.set(cookieKey, {
|
|
277
|
+
value: cookieValue,
|
|
278
|
+
setCookie: setCookieValue,
|
|
279
|
+
});
|
|
280
|
+
}
|
|
281
|
+
};
|
|
282
|
+
const setCookie = (ctx, headers) => {
|
|
283
|
+
headers
|
|
284
|
+
.getSetCookie()
|
|
285
|
+
.forEach((setCookieValue) => updatesContextStorageCookies(ctx, setCookieValue));
|
|
286
|
+
};
|
|
287
|
+
const getStoreCookie = (ctx) => (headers) => setCookie(ctx, headers);
|
|
288
|
+
/**
|
|
289
|
+
* This function returns a modified copy of the original cookie header (ctx.headers.cookie from the first request)
|
|
290
|
+
* with the cookie values that comes in each request (ctx.storage.cookies).
|
|
291
|
+
* If there is no cookies in storage, the ctx.headers?.cookie is used
|
|
292
|
+
*
|
|
293
|
+
* ctx.storage.cookies is a Map<string[1], Record<string, string>[2]> where,
|
|
294
|
+
* [1] cookie key
|
|
295
|
+
* [2] {
|
|
296
|
+
* value: cookie value,
|
|
297
|
+
* setCookie: setCookie used in browser response
|
|
298
|
+
* }
|
|
299
|
+
*/
|
|
300
|
+
const getUpdatedCookie = (ctx) => {
|
|
301
|
+
if (!ctx.headers?.cookie) {
|
|
302
|
+
return null;
|
|
303
|
+
}
|
|
304
|
+
const contextStorageCookies = Array.from(ctx.storage.cookies.entries());
|
|
305
|
+
if (contextStorageCookies.length === 0) {
|
|
306
|
+
return ctx.headers.cookie;
|
|
307
|
+
}
|
|
308
|
+
return contextStorageCookies.reduce((existingCookies, [storageCookieKey, { value: storageCookieValue }]) => updatesCookieValueByKey(existingCookies, storageCookieKey, storageCookieValue), ctx.headers.cookie);
|
|
309
|
+
};
|
|
310
|
+
const getWithCookie = (ctx) => function withCookie(headers) {
|
|
311
|
+
const updatedCookie = getUpdatedCookie(ctx);
|
|
312
|
+
if (!updatedCookie) {
|
|
313
|
+
return headers;
|
|
314
|
+
}
|
|
315
|
+
return {
|
|
316
|
+
...headers,
|
|
317
|
+
cookie: updatedCookie,
|
|
318
|
+
};
|
|
319
|
+
};
|
|
320
|
+
/**
|
|
321
|
+
* This function updates the cookie value based on its key
|
|
322
|
+
*
|
|
323
|
+
* const existingCookies = 'key=value1; key2=; key3=value3';
|
|
324
|
+
* const storageCookieKey = 'key2';
|
|
325
|
+
* const storageCookieValue = 'value2'
|
|
326
|
+
*
|
|
327
|
+
* updatesCookieValueByKey(existingCookies, storageCookieKey, storageCookieValue) returns 'key=value1; key2=value2; key3=value3';
|
|
328
|
+
*/
|
|
329
|
+
const updatesCookieValueByKey = (existingCookies, storageCookieKey, storageCookieValue) => {
|
|
330
|
+
const MATCH_COOKIE_KEY_VALUE = new RegExp(`(${storageCookieKey})=([^;]*)`);
|
|
331
|
+
const cookieParts = existingCookies.match(MATCH_COOKIE_KEY_VALUE);
|
|
332
|
+
// replaces original cookie with the one coming from storage
|
|
333
|
+
if (cookieParts) {
|
|
334
|
+
return existingCookies.replace(cookieParts[0], `${cookieParts[1]}=${storageCookieValue}`);
|
|
335
|
+
}
|
|
336
|
+
// add new storage cookie to the original list of cookies
|
|
337
|
+
return `${existingCookies};${storageCookieKey}=${storageCookieValue}`;
|
|
262
338
|
};
|
|
263
|
-
const getStoreCookie = (ctx) => (headers) => setCookie(headers, ctx);
|
|
264
339
|
//# sourceMappingURL=cookies.js.map
|
|
265
340
|
;// CONCATENATED MODULE: ../api/dist/esm/src/platforms/vtex/clients/commerce/index.js
|
|
266
341
|
|
|
@@ -274,9 +349,11 @@ const BASE_INIT = {
|
|
|
274
349
|
const VtexCommerce = ({ account, environment, incrementAddress }, ctx) => {
|
|
275
350
|
const base = `https://${account}.${environment}.com.br`;
|
|
276
351
|
const storeCookies = getStoreCookie(ctx);
|
|
277
|
-
const
|
|
278
|
-
|
|
279
|
-
|
|
352
|
+
const withCookie = getWithCookie(ctx);
|
|
353
|
+
// replacing www. only for testing while www.vtexfaststore.com is configured with www
|
|
354
|
+
const forwardedHost = (new Headers(ctx.headers).get('x-forwarded-host') ??
|
|
355
|
+
ctx.headers?.host ??
|
|
356
|
+
'').replace('www.', '');
|
|
280
357
|
return {
|
|
281
358
|
catalog: {
|
|
282
359
|
salesChannel: (sc) => fetchAPI(`${base}/api/catalog_system/pub/saleschannel/${sc}`, undefined, { storeCookies }),
|
|
@@ -306,10 +383,15 @@ const VtexCommerce = ({ account, environment, incrementAddress }, ctx) => {
|
|
|
306
383
|
const params = new URLSearchParams({
|
|
307
384
|
sc: salesChannel,
|
|
308
385
|
});
|
|
386
|
+
const headers = withCookie({
|
|
387
|
+
'content-type': 'application/json',
|
|
388
|
+
'X-FORWARDED-HOST': forwardedHost,
|
|
389
|
+
});
|
|
309
390
|
return fetchAPI(`${base}/api/checkout/pub/orderForms/simulation?${params.toString()}`, {
|
|
310
391
|
...BASE_INIT,
|
|
392
|
+
headers,
|
|
311
393
|
body: JSON.stringify(args),
|
|
312
|
-
});
|
|
394
|
+
}, { storeCookies });
|
|
313
395
|
},
|
|
314
396
|
shippingData: ({ id, index, deliveryMode, selectedAddresses, }, setDeliveryWindow) => {
|
|
315
397
|
const deliveryWindow = setDeliveryWindow
|
|
@@ -328,14 +410,15 @@ const VtexCommerce = ({ account, environment, incrementAddress }, ctx) => {
|
|
|
328
410
|
selectedAddresses: selectedAddresses,
|
|
329
411
|
clearAddressIfPostalCodeNotFound: incrementAddress,
|
|
330
412
|
};
|
|
413
|
+
const headers = withCookie({
|
|
414
|
+
'content-type': 'application/json',
|
|
415
|
+
'X-FORWARDED-HOST': forwardedHost,
|
|
416
|
+
});
|
|
331
417
|
return fetchAPI(`${base}/api/checkout/pub/orderForm/${id}/attachments/shippingData`, {
|
|
332
418
|
...BASE_INIT,
|
|
419
|
+
headers,
|
|
333
420
|
body: JSON.stringify(mappedBody),
|
|
334
|
-
|
|
335
|
-
'content-type': 'application/json',
|
|
336
|
-
cookie: ctx.headers.cookie,
|
|
337
|
-
},
|
|
338
|
-
});
|
|
421
|
+
}, { storeCookies });
|
|
339
422
|
},
|
|
340
423
|
orderForm: ({ id, refreshOutdatedData = true, channel = ctx.storage.channel, }) => {
|
|
341
424
|
const { salesChannel } = channel;
|
|
@@ -343,21 +426,23 @@ const VtexCommerce = ({ account, environment, incrementAddress }, ctx) => {
|
|
|
343
426
|
refreshOutdatedData: refreshOutdatedData.toString(),
|
|
344
427
|
sc: salesChannel,
|
|
345
428
|
});
|
|
346
|
-
const
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
}
|
|
355
|
-
: BASE_INIT;
|
|
356
|
-
return fetchAPI(`${base}/api/checkout/pub/orderForm/${id}?${params.toString()}`, requestInit, { storeCookies });
|
|
429
|
+
const headers = withCookie({
|
|
430
|
+
'content-type': 'application/json',
|
|
431
|
+
'X-FORWARDED-HOST': forwardedHost,
|
|
432
|
+
});
|
|
433
|
+
return fetchAPI(`${base}/api/checkout/pub/orderForm/${id}?${params.toString()}`, {
|
|
434
|
+
...BASE_INIT,
|
|
435
|
+
headers,
|
|
436
|
+
}, { storeCookies });
|
|
357
437
|
},
|
|
358
438
|
clearOrderFormMessages: ({ id }) => {
|
|
439
|
+
const headers = withCookie({
|
|
440
|
+
'content-type': 'application/json',
|
|
441
|
+
'X-FORWARDED-HOST': forwardedHost,
|
|
442
|
+
});
|
|
359
443
|
return fetchAPI(`${base}/api/checkout/pub/orderForm/${id}/messages/clear`, {
|
|
360
444
|
...BASE_INIT,
|
|
445
|
+
headers,
|
|
361
446
|
body: '{}',
|
|
362
447
|
});
|
|
363
448
|
},
|
|
@@ -366,12 +451,12 @@ const VtexCommerce = ({ account, environment, incrementAddress }, ctx) => {
|
|
|
366
451
|
allowOutdatedData,
|
|
367
452
|
sc: salesChannel,
|
|
368
453
|
});
|
|
454
|
+
const headers = withCookie({
|
|
455
|
+
'content-type': 'application/json',
|
|
456
|
+
'X-FORWARDED-HOST': forwardedHost,
|
|
457
|
+
});
|
|
369
458
|
return fetchAPI(`${base}/api/checkout/pub/orderForm/${id}/items?${params}`, {
|
|
370
|
-
headers
|
|
371
|
-
'content-type': 'application/json',
|
|
372
|
-
cookie: ctx.headers?.cookie,
|
|
373
|
-
'X-FORWARDED-HOST': forwardedHost,
|
|
374
|
-
},
|
|
459
|
+
headers,
|
|
375
460
|
body: JSON.stringify({
|
|
376
461
|
orderItems,
|
|
377
462
|
noSplitItem: !shouldSplitItem,
|
|
@@ -380,8 +465,12 @@ const VtexCommerce = ({ account, environment, incrementAddress }, ctx) => {
|
|
|
380
465
|
}, { storeCookies });
|
|
381
466
|
},
|
|
382
467
|
setCustomData: ({ id, appId, key, value, }) => {
|
|
468
|
+
const headers = withCookie({
|
|
469
|
+
'content-type': 'application/json',
|
|
470
|
+
'X-FORWARDED-HOST': forwardedHost,
|
|
471
|
+
});
|
|
383
472
|
return fetchAPI(`${base}/api/checkout/pub/orderForm/${id}/customData/${appId}/${key}`, {
|
|
384
|
-
|
|
473
|
+
headers,
|
|
385
474
|
body: JSON.stringify({ value }),
|
|
386
475
|
method: 'PUT',
|
|
387
476
|
});
|
|
@@ -395,21 +484,33 @@ const VtexCommerce = ({ account, environment, incrementAddress }, ctx) => {
|
|
|
395
484
|
? params.append('postalCode', postalCode)
|
|
396
485
|
: params.append('geoCoordinates', `${geoCoordinates?.longitude};${geoCoordinates?.latitude}`);
|
|
397
486
|
const url = `${base}/api/checkout/pub/regions/?${params.toString()}`;
|
|
398
|
-
|
|
487
|
+
const headers = withCookie({
|
|
488
|
+
'content-type': 'application/json',
|
|
489
|
+
'X-FORWARDED-HOST': forwardedHost,
|
|
490
|
+
});
|
|
491
|
+
return fetchAPI(url, {
|
|
492
|
+
headers,
|
|
493
|
+
}, { storeCookies });
|
|
399
494
|
},
|
|
400
495
|
address: async ({ postalCode, country, }) => {
|
|
401
|
-
|
|
496
|
+
const headers = withCookie({
|
|
497
|
+
'content-type': 'application/json',
|
|
498
|
+
'X-FORWARDED-HOST': forwardedHost,
|
|
499
|
+
});
|
|
500
|
+
return fetchAPI(`${base}/api/checkout/pub/postal-code/${country}/${postalCode}`, {
|
|
501
|
+
headers,
|
|
502
|
+
}, { storeCookies });
|
|
402
503
|
},
|
|
403
504
|
},
|
|
404
505
|
session: (search) => {
|
|
405
506
|
const params = new URLSearchParams(search);
|
|
406
507
|
params.set('items', 'profile.id,profile.email,profile.firstName,profile.lastName,store.channel,store.countryCode,store.cultureInfo,store.currencyCode,store.currencySymbol');
|
|
508
|
+
const headers = withCookie({
|
|
509
|
+
'content-type': 'application/json',
|
|
510
|
+
});
|
|
407
511
|
return fetchAPI(`${base}/api/sessions?${params.toString()}`, {
|
|
408
512
|
method: 'POST',
|
|
409
|
-
headers
|
|
410
|
-
'content-type': 'application/json',
|
|
411
|
-
cookie: ctx.headers.cookie,
|
|
412
|
-
},
|
|
513
|
+
headers,
|
|
413
514
|
body: '{}',
|
|
414
515
|
}, { storeCookies });
|
|
415
516
|
},
|
|
@@ -2382,7 +2483,7 @@ const getContextFactory = (options) => (ctx) => {
|
|
|
2382
2483
|
channel: ChannelMarshal.parse(options.channel),
|
|
2383
2484
|
flags: options.flags ?? {},
|
|
2384
2485
|
locale: options.locale,
|
|
2385
|
-
cookies: new
|
|
2486
|
+
cookies: new Map(),
|
|
2386
2487
|
};
|
|
2387
2488
|
ctx.clients = getClients(options, ctx);
|
|
2388
2489
|
ctx.loaders = getLoaders(options, ctx);
|
|
@@ -2722,6 +2823,20 @@ var __webpack_async_dependencies__ = __webpack_handle_async_dependencies__([_fas
|
|
|
2722
2823
|
([_faststore_api__WEBPACK_IMPORTED_MODULE_0__, _server__WEBPACK_IMPORTED_MODULE_1__] = __webpack_async_dependencies__.then ? (await __webpack_async_dependencies__)() : __webpack_async_dependencies__);
|
|
2723
2824
|
|
|
2724
2825
|
|
|
2826
|
+
/**
|
|
2827
|
+
* This function replaces the setCookie domain so that we can use localhost in dev environment.
|
|
2828
|
+
*
|
|
2829
|
+
* @param request NextApiRequest
|
|
2830
|
+
* @param setCookie setCookie string that comes from FastStore API
|
|
2831
|
+
* @returns setCookie string with it domains replace
|
|
2832
|
+
*/
|
|
2833
|
+
|
|
2834
|
+
const replaceSetCookieDomain = (request, setCookie) => {
|
|
2835
|
+
const MATCH_DOMAIN_REGEXP = /(?:^|;\s*)(?:domain=)([^;]+)/i;
|
|
2836
|
+
const faststoreAPIHostname = new URL(`https://${request.headers.host}`).hostname; // Replaces original cookie domain for FastStore API's domain hostname
|
|
2837
|
+
|
|
2838
|
+
return setCookie.replace(MATCH_DOMAIN_REGEXP, `; domain=${faststoreAPIHostname}`);
|
|
2839
|
+
};
|
|
2725
2840
|
|
|
2726
2841
|
const parseRequest = request => {
|
|
2727
2842
|
const {
|
|
@@ -2775,9 +2890,12 @@ const handler = async (request, response) => {
|
|
|
2775
2890
|
}
|
|
2776
2891
|
|
|
2777
2892
|
const cacheControl = !hasErrors && extensions.cacheControl ? (0,_faststore_api__WEBPACK_IMPORTED_MODULE_0__/* .stringifyCacheControl */ .Ve)(extensions.cacheControl) : 'no-cache, no-store';
|
|
2893
|
+
const setCookieValues = Array.from(extensions.cookies.values());
|
|
2778
2894
|
|
|
2779
|
-
if (
|
|
2780
|
-
response.setHeader('set-cookie',
|
|
2895
|
+
if (setCookieValues.length > 0 && !hasErrors) {
|
|
2896
|
+
response.setHeader('set-cookie', setCookieValues.map(({
|
|
2897
|
+
setCookie
|
|
2898
|
+
}) => false ? 0 : setCookie));
|
|
2781
2899
|
}
|
|
2782
2900
|
|
|
2783
2901
|
response.setHeader('cache-control', cacheControl);
|
|
@@ -2943,7 +3061,7 @@ const apiOptions = {
|
|
|
2943
3061
|
/***/ 5713:
|
|
2944
3062
|
/***/ ((module) => {
|
|
2945
3063
|
|
|
2946
|
-
module.exports = JSON.parse('{"u2":"@faststore/api","i8":"2.2.
|
|
3064
|
+
module.exports = JSON.parse('{"u2":"@faststore/api","i8":"2.2.49"}');
|
|
2947
3065
|
|
|
2948
3066
|
/***/ }),
|
|
2949
3067
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":1,"files":["../webpack-runtime.js","../chunks/676.js","../chunks/825.js","../chunks/183.js","../chunks/177.js","../chunks/74.js","../chunks/779.js","../chunks/988.js","../chunks/53.js","../chunks/693.js","../chunks/585.js","../chunks/854.js","../chunks/312.js","../../package.json","../../../node_modules/deepmerge/package.json","../../../node_modules/chalk/package.json","../../../node_modules/next/dist/shared/lib/head.js","../../../node_modules/next/dist/shared/lib/app-router-context.js","../../../node_modules/next/dist/shared/lib/head-manager-context.js","../../../node_modules/next/dist/shared/lib/image-blur-svg.js","../../../node_modules/next/dist/shared/lib/image-config-context.js","../../../node_modules/next/dist/shared/lib/image-config.js","../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../node_modules/next/dist/shared/lib/mitt.js","../../../node_modules/next/dist/shared/lib/router-context.js","../../../node_modules/next/dist/shared/lib/utils.js","../../../node_modules/next/dist/shared/lib/i18n/detect-domain-locale.js","../../../node_modules/next/dist/shared/lib/i18n/normalize-locale-path.js","../../../node_modules/next/dist/shared/lib/page-path/denormalize-page-path.js","../../../node_modules/next/dist/shared/lib/router/utils/add-locale.js","../../../node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js","../../../node_modules/next/dist/shared/lib/router/utils/compare-states.js","../../../node_modules/next/dist/shared/lib/router/utils/format-next-pathname-info.js","../../../node_modules/next/dist/shared/lib/router/utils/format-url.js","../../../node_modules/next/dist/shared/lib/router/utils/get-asset-path-from-route.js","../../../node_modules/next/dist/shared/lib/router/utils/get-next-pathname-info.js","../../../node_modules/next/dist/shared/lib/router/utils/is-bot.js","../../../node_modules/next/dist/shared/lib/router/utils/is-dynamic.js","../../../node_modules/next/dist/shared/lib/router/utils/parse-path.js","../../../node_modules/next/dist/shared/lib/router/utils/parse-relative-url.js","../../../node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js","../../../node_modules/next/dist/shared/lib/router/utils/querystring.js","../../../node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js","../../../node_modules/next/dist/shared/lib/router/utils/resolve-rewrites.js","../../../node_modules/next/dist/shared/lib/router/utils/route-matcher.js","../../../node_modules/next/dist/shared/lib/router/utils/route-regex.js","../../../node_modules/deepmerge/dist/cjs.js","../../../node_modules/chalk/source/index.js","../../../node_modules/next/router.js","../../../node_modules/next/package.json","../../../node_modules/chalk/source/utilities.js","../../../node_modules/next/dist/client/remove-base-path.js","../../../node_modules/chalk/source/vendor/ansi-styles/index.js","../../../node_modules/chalk/source/vendor/supports-color/index.js","../../../node_modules/next/dist/client/router.js","../../../node_modules/next/dist/client/has-base-path.js","../../../node_modules/next/dist/shared/lib/side-effect.js","../../../node_modules/next/dist/shared/lib/amp-context.js","../../../node_modules/next/dist/shared/lib/amp-mode.js","../../../node_modules/next/dist/shared/lib/page-path/normalize-path-sep.js","../../../node_modules/next/dist/shared/lib/router/utils/add-path-suffix.js","../../../node_modules/next/dist/shared/lib/router/utils/remove-path-prefix.js","../../../node_modules/next/dist/shared/lib/router/utils/path-match.js","../../../node_modules/next/dist/shared/lib/router/utils/prepare-destination.js","../../../node_modules/next/dist/shared/lib/escape-regexp.js","../../../node_modules/next/dist/shared/lib/router/router.js","../../../node_modules/next/dist/lib/is-error.js","../../../node_modules/next/dist/shared/lib/router/utils/index.js","../../../node_modules/next/dist/client/normalize-trailing-slash.js","../../../node_modules/next/dist/client/route-loader.js","../../../node_modules/next/dist/client/script.js","../../../node_modules/next/dist/client/detect-domain-locale.js","../../../node_modules/next/dist/client/add-locale.js","../../../node_modules/next/dist/client/remove-locale.js","../../../node_modules/next/dist/client/add-base-path.js","../../../node_modules/next/dist/client/trusted-types.js","../../../node_modules/next/dist/client/request-idle-callback.js","../../../node_modules/next/dist/client/head-manager.js","../../../node_modules/next/dist/client/with-router.js","../../../node_modules/@swc/helpers/lib/_extends.js","../../../node_modules/@swc/helpers/package.json","../../../node_modules/@swc/helpers/lib/_interop_require_default.js","../../../node_modules/@swc/helpers/lib/
|
|
1
|
+
{"version":1,"files":["../webpack-runtime.js","../chunks/676.js","../chunks/825.js","../chunks/183.js","../chunks/177.js","../chunks/74.js","../chunks/779.js","../chunks/988.js","../chunks/53.js","../chunks/693.js","../chunks/585.js","../chunks/854.js","../chunks/312.js","../../package.json","../../../node_modules/deepmerge/package.json","../../../node_modules/chalk/package.json","../../../node_modules/next/dist/shared/lib/head.js","../../../node_modules/next/dist/shared/lib/app-router-context.js","../../../node_modules/next/dist/shared/lib/head-manager-context.js","../../../node_modules/next/dist/shared/lib/image-blur-svg.js","../../../node_modules/next/dist/shared/lib/image-config-context.js","../../../node_modules/next/dist/shared/lib/image-config.js","../../../node_modules/next/dist/shared/lib/is-plain-object.js","../../../node_modules/next/dist/shared/lib/mitt.js","../../../node_modules/next/dist/shared/lib/router-context.js","../../../node_modules/next/dist/shared/lib/utils.js","../../../node_modules/next/dist/shared/lib/i18n/detect-domain-locale.js","../../../node_modules/next/dist/shared/lib/i18n/normalize-locale-path.js","../../../node_modules/next/dist/shared/lib/page-path/denormalize-page-path.js","../../../node_modules/next/dist/shared/lib/router/utils/add-locale.js","../../../node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js","../../../node_modules/next/dist/shared/lib/router/utils/compare-states.js","../../../node_modules/next/dist/shared/lib/router/utils/format-next-pathname-info.js","../../../node_modules/next/dist/shared/lib/router/utils/format-url.js","../../../node_modules/next/dist/shared/lib/router/utils/get-asset-path-from-route.js","../../../node_modules/next/dist/shared/lib/router/utils/get-next-pathname-info.js","../../../node_modules/next/dist/shared/lib/router/utils/is-bot.js","../../../node_modules/next/dist/shared/lib/router/utils/is-dynamic.js","../../../node_modules/next/dist/shared/lib/router/utils/parse-path.js","../../../node_modules/next/dist/shared/lib/router/utils/parse-relative-url.js","../../../node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js","../../../node_modules/next/dist/shared/lib/router/utils/querystring.js","../../../node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js","../../../node_modules/next/dist/shared/lib/router/utils/resolve-rewrites.js","../../../node_modules/next/dist/shared/lib/router/utils/route-matcher.js","../../../node_modules/next/dist/shared/lib/router/utils/route-regex.js","../../../node_modules/deepmerge/dist/cjs.js","../../../node_modules/chalk/source/index.js","../../../node_modules/next/router.js","../../../node_modules/next/package.json","../../../node_modules/chalk/source/utilities.js","../../../node_modules/next/dist/client/remove-base-path.js","../../../node_modules/chalk/source/vendor/ansi-styles/index.js","../../../node_modules/chalk/source/vendor/supports-color/index.js","../../../node_modules/next/dist/client/router.js","../../../node_modules/next/dist/client/has-base-path.js","../../../node_modules/next/dist/shared/lib/side-effect.js","../../../node_modules/next/dist/shared/lib/amp-context.js","../../../node_modules/next/dist/shared/lib/amp-mode.js","../../../node_modules/next/dist/shared/lib/page-path/normalize-path-sep.js","../../../node_modules/next/dist/shared/lib/router/utils/add-path-suffix.js","../../../node_modules/next/dist/shared/lib/router/utils/remove-path-prefix.js","../../../node_modules/next/dist/shared/lib/router/utils/path-match.js","../../../node_modules/next/dist/shared/lib/router/utils/prepare-destination.js","../../../node_modules/next/dist/shared/lib/escape-regexp.js","../../../node_modules/next/dist/shared/lib/router/router.js","../../../node_modules/next/dist/lib/is-error.js","../../../node_modules/next/dist/shared/lib/router/utils/index.js","../../../node_modules/next/dist/client/normalize-trailing-slash.js","../../../node_modules/next/dist/client/route-loader.js","../../../node_modules/next/dist/client/script.js","../../../node_modules/next/dist/client/detect-domain-locale.js","../../../node_modules/next/dist/client/add-locale.js","../../../node_modules/next/dist/client/remove-locale.js","../../../node_modules/next/dist/client/add-base-path.js","../../../node_modules/next/dist/client/trusted-types.js","../../../node_modules/next/dist/client/request-idle-callback.js","../../../node_modules/next/dist/client/head-manager.js","../../../node_modules/next/dist/client/with-router.js","../../../node_modules/@swc/helpers/lib/_extends.js","../../../node_modules/@swc/helpers/package.json","../../../node_modules/@swc/helpers/lib/_interop_require_default.js","../../../node_modules/@swc/helpers/lib/_interop_require_wildcard.js","../../../node_modules/@swc/helpers/lib/_async_to_generator.js","../../../node_modules/next/dist/shared/lib/router/utils/parse-url.js","../../../node_modules/@swc/helpers/lib/_object_without_properties_loose.js","../../../node_modules/next/dist/shared/lib/router/utils/sorted-routes.js","../../../node_modules/next/dist/compiled/path-to-regexp/index.js","../../../node_modules/next/dist/compiled/react-is/package.json","../../../node_modules/next/dist/compiled/react-is/index.js","../../../node_modules/next/dist/compiled/react-is/cjs/react-is.production.min.js","../../../node_modules/next/dist/compiled/react-is/cjs/react-is.development.js","../../../src/components/region/RegionModal/index.ts","../../../src/components/cart/CartSidebar/index.ts","../../../src/components/search/SearchDropdown/index.ts","../../../package.json"]}
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
})(window,document,'script',"dataLayer","GTM-PGHZ95N");</script><script type="text/partytown">
|
|
12
12
|
window.sendrc=function(en,ed){window.NavigationCapture&&window.NavigationCapture.sendEvent(en,ed)};
|
|
13
13
|
</script><script type="text/partytown" async="" src="https://io.vtex.com.br/rc/rc.js"></script><script type="text/partytown">f=window.vtexaf=window.vtexaf||function(){(f.q=f.q||[]).push(arguments)};f.l=+new Date</script><script type="text/partytown" async="" src="https://activity-flow.vtex.com/af/af.js"></script><script>!(function(w,p,f,c){c=w[p]=w[p]||{};c[f]=(c[f]||[])})(window,'partytown','forward');/* Partytown 0.6.4 - MIT builder.io */
|
|
14
|
-
!function(t,e,n,i,r,o,a,d,s,c,p,l){function u(){l||(l=1,"/"==(a=(o.lib||"/~partytown/")+(o.debug?"debug/":""))[0]&&(s=e.querySelectorAll('script[type="text/partytown"]'),i!=t?i.dispatchEvent(new CustomEvent("pt1",{detail:t})):(d=setTimeout(w,1e4),e.addEventListener("pt0",f),r?h(1):n.serviceWorker?n.serviceWorker.register(a+(o.swPath||"partytown-sw.js"),{scope:a}).then((function(t){t.active?h():t.installing&&t.installing.addEventListener("statechange",(function(t){"activated"==t.target.state&&h()}))}),console.error):w())))}function h(t){c=e.createElement(t?"script":"iframe"),t||(c.setAttribute("style","display:block;width:0;height:0;border:0;visibility:hidden"),c.setAttribute("aria-hidden",!0)),c.src=a+"partytown-"+(t?"atomics.js?v=0.6.4":"sandbox-sw.html?"+Date.now()),e.body.appendChild(c)}function w(t,n){for(f(),t=0;t<s.length;t++)(n=e.createElement("script")).innerHTML=s[t].innerHTML,e.head.appendChild(n);c&&c.parentNode.removeChild(c)}function f(){clearTimeout(d)}o=t.partytown||{},i==t&&(o.forward||[]).map((function(e){p=t,e.split(".").map((function(e,n,i){p=p[i[n]]=n+1<i.length?"push"==i[n+1]?[]:p[i[n]]||{}:function(){(t._ptf=t._ptf||[]).push(i,arguments)}}))})),"complete"==e.readyState?u():(t.addEventListener("DOMContentLoaded",u),t.addEventListener("load",u))}(window,document,navigator,top,window.crossOriginIsolated);document.currentScript.dataset.partytown="";</script><link rel="preload" href="/_next/static/css/5d1f64b61ea581f4.css" as="style"/><link rel="stylesheet" href="/_next/static/css/5d1f64b61ea581f4.css" data-n-g=""/><link rel="preload" href="/_next/static/css/29868543c76bc6fd.css" as="style"/><link rel="stylesheet" href="/_next/static/css/29868543c76bc6fd.css" data-n-p=""/><link rel="preload" href="/_next/static/css/df588bb98c0b0ca6.css" as="style"/><link rel="stylesheet" href="/_next/static/css/df588bb98c0b0ca6.css" data-n-p=""/><noscript data-n-css=""></noscript><script defer="" nomodule="" src="/_next/static/chunks/polyfills-c67a75d1b6f99dc8.js"></script><script src="/_next/static/chunks/webpack-
|
|
14
|
+
!function(t,e,n,i,r,o,a,d,s,c,p,l){function u(){l||(l=1,"/"==(a=(o.lib||"/~partytown/")+(o.debug?"debug/":""))[0]&&(s=e.querySelectorAll('script[type="text/partytown"]'),i!=t?i.dispatchEvent(new CustomEvent("pt1",{detail:t})):(d=setTimeout(w,1e4),e.addEventListener("pt0",f),r?h(1):n.serviceWorker?n.serviceWorker.register(a+(o.swPath||"partytown-sw.js"),{scope:a}).then((function(t){t.active?h():t.installing&&t.installing.addEventListener("statechange",(function(t){"activated"==t.target.state&&h()}))}),console.error):w())))}function h(t){c=e.createElement(t?"script":"iframe"),t||(c.setAttribute("style","display:block;width:0;height:0;border:0;visibility:hidden"),c.setAttribute("aria-hidden",!0)),c.src=a+"partytown-"+(t?"atomics.js?v=0.6.4":"sandbox-sw.html?"+Date.now()),e.body.appendChild(c)}function w(t,n){for(f(),t=0;t<s.length;t++)(n=e.createElement("script")).innerHTML=s[t].innerHTML,e.head.appendChild(n);c&&c.parentNode.removeChild(c)}function f(){clearTimeout(d)}o=t.partytown||{},i==t&&(o.forward||[]).map((function(e){p=t,e.split(".").map((function(e,n,i){p=p[i[n]]=n+1<i.length?"push"==i[n+1]?[]:p[i[n]]||{}:function(){(t._ptf=t._ptf||[]).push(i,arguments)}}))})),"complete"==e.readyState?u():(t.addEventListener("DOMContentLoaded",u),t.addEventListener("load",u))}(window,document,navigator,top,window.crossOriginIsolated);document.currentScript.dataset.partytown="";</script><link rel="preload" href="/_next/static/css/5d1f64b61ea581f4.css" as="style"/><link rel="stylesheet" href="/_next/static/css/5d1f64b61ea581f4.css" data-n-g=""/><link rel="preload" href="/_next/static/css/29868543c76bc6fd.css" as="style"/><link rel="stylesheet" href="/_next/static/css/29868543c76bc6fd.css" data-n-p=""/><link rel="preload" href="/_next/static/css/df588bb98c0b0ca6.css" as="style"/><link rel="stylesheet" href="/_next/static/css/df588bb98c0b0ca6.css" data-n-p=""/><noscript data-n-css=""></noscript><script defer="" nomodule="" src="/_next/static/chunks/polyfills-c67a75d1b6f99dc8.js"></script><script src="/_next/static/chunks/webpack-86d49ac4b093b8cf.js" defer=""></script><script src="/_next/static/chunks/framework-dfd14d7ce6600b03.js" defer=""></script><script src="/_next/static/chunks/main-e4e873ee741162eb.js" defer=""></script><script src="/_next/static/chunks/pages/_app-30b9666307e4b3b1.js" defer=""></script><script src="/_next/static/chunks/223-cb77217cce52d45c.js" defer=""></script><script src="/_next/static/chunks/469-1925f9bd1c82e92b.js" defer=""></script><script src="/_next/static/chunks/pages/404-2240f0b22db2d370.js" defer=""></script><script src="/_next/static/2x1XIwoqXcK0trpOG0glK/_buildManifest.js" defer=""></script><script src="/_next/static/2x1XIwoqXcK0trpOG0glK/_ssgManifest.js" defer=""></script></head><body class="theme"><div id="__next"><style>
|
|
15
15
|
#nprogress {
|
|
16
16
|
pointer-events: none;
|
|
17
17
|
}
|
|
@@ -78,4 +78,4 @@
|
|
|
78
78
|
transform: rotate(360deg);
|
|
79
79
|
}
|
|
80
80
|
}
|
|
81
|
-
</style><section class="section section_section__YiggP section-alert"><div role="alert" data-fs-alert="true" data-fs-alert-dismissible="true" data-fs-content="alert" data-testid="fs-alert"><svg data-fs-icon="true" data-testid="fs-icon" width="24" height="24" stroke-width="16"><use href="/icons.svg#BellRinging"></use></svg><p data-fs-alert-content="true">Get 15% off today: NEW15!</p><a data-fs-link="true" data-fs-link-variant="inline" data-fs-link-size="regular" data-testid="fs-link" data-fs-alert-link="true" href="/office" target="_self">Buy now</a><button data-fs-button="true" data-fs-button-size="small" data-fs-button-variant="tertiary" data-testid="fs-icon-button" data-fs-icon-button="true" aria-label="Close" data-fs-alert-button="true"><div data-fs-button-wrapper="true"><span data-fs-button-icon="true"><svg data-fs-icon="true" data-testid="fs-icon" width="24" height="24" stroke-width="16"><use href="/icons.svg#X"></use></svg></span></div></button></div></section><section class="section section_section__dPVmH section-navbar"><header data-fs-navbar="true" role="banner" data-fs-navbar-scroll="" data-testid="fs-navbar"><section data-fs-navbar-header="true" data-testid="fs-navbar-header"><div data-fs-navbar-row="true" data-fs-content="navbar" data-testid="fs-navbar-row"><button data-fs-button="true" data-fs-button-size="regular" data-fs-button-variant="tertiary" data-testid="fs-icon-button" data-fs-icon-button="true" aria-label="List" data-fs-navbar-button-menu="true"><div data-fs-button-wrapper="true"><span data-fs-button-icon="true"><svg data-fs-icon="true" data-testid="fs-icon" width="32" height="32" stroke-width="16"><use href="/icons.svg#List"></use></svg></span></div></button><a data-fs-link="true" data-fs-link-variant="default" data-fs-link-size="regular" data-testid="fs-link" data-fs-navbar-logo="true" title="Go To Home" href="/"><div data-fs-logo="true"><img data-fs-image="true" alt="Store logo" sizes="15vw" srcSet="https://storeframework.vtexassets.com/unsafe/68x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fab9997f4-8fd6-46f5-99d2-9d5af3ef5e34___6d75a203771d7408d8f0d1c660a076dd.png 68w, https://storeframework.vtexassets.com/unsafe/154x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fab9997f4-8fd6-46f5-99d2-9d5af3ef5e34___6d75a203771d7408d8f0d1c660a076dd.png 154w, https://storeframework.vtexassets.com/unsafe/320x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fab9997f4-8fd6-46f5-99d2-9d5af3ef5e34___6d75a203771d7408d8f0d1c660a076dd.png 320w, https://storeframework.vtexassets.com/unsafe/360x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fab9997f4-8fd6-46f5-99d2-9d5af3ef5e34___6d75a203771d7408d8f0d1c660a076dd.png 360w, https://storeframework.vtexassets.com/unsafe/540x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fab9997f4-8fd6-46f5-99d2-9d5af3ef5e34___6d75a203771d7408d8f0d1c660a076dd.png 540w, https://storeframework.vtexassets.com/unsafe/768x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fab9997f4-8fd6-46f5-99d2-9d5af3ef5e34___6d75a203771d7408d8f0d1c660a076dd.png 768w, https://storeframework.vtexassets.com/unsafe/1280x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fab9997f4-8fd6-46f5-99d2-9d5af3ef5e34___6d75a203771d7408d8f0d1c660a076dd.png 1280w, https://storeframework.vtexassets.com/unsafe/1440x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fab9997f4-8fd6-46f5-99d2-9d5af3ef5e34___6d75a203771d7408d8f0d1c660a076dd.png 1440w" src="https://storeframework.vtexassets.com/unsafe/1440x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fab9997f4-8fd6-46f5-99d2-9d5af3ef5e34___6d75a203771d7408d8f0d1c660a076dd.png" width="0" height="0" decoding="async" data-nimg="future" loading="lazy" style="color:transparent;width:100%;height:auto"/></div></a><div data-fs-search-input="true" data-fs-search-input-dropdown-visible="false" data-testid="fs-search-input"><form data-fs-search-input-field="true" data-testid="fs-search-input" role="search"><input data-fs-input="true" data-testid="fs-input" aria-label="search" data-fs-search-input-field-input="true" placeholder="Search everything at the store" value=""/><button data-fs-button="true" data-fs-button-size="small" data-fs-button-variant="tertiary" data-testid="fs-search-button" data-fs-icon-button="true" aria-label="Submit Search" type="submit"><div data-fs-button-wrapper="true"><span data-fs-button-icon="true"><svg data-fs-icon="true" data-testid="fs-icon" width="24" height="24" stroke-width="16"><use href="/icons.svg#MagnifyingGlass"></use></svg></span></div></button></form></div><div data-fs-navbar-buttons="true" data-testid="fs-navbar-buttons" data-fs-navbar-search-expanded="false"><div data-fs-search-input="true" data-fs-search-input-dropdown-visible="false" data-testid="fs-search-input"><form data-fs-search-input-field="true" data-testid="store-input-mobile" role="search"><input data-fs-input="true" data-testid="fs-input" aria-label="search" data-fs-search-input-field-input="true" placeholder="" hidden="" aria-hidden="true" value=""/><button data-fs-button="true" data-fs-button-size="small" data-fs-button-variant="tertiary" data-testid="store-input-mobile-button" data-fs-icon-button="true" aria-label="Submit Search" type="submit"><div data-fs-button-wrapper="true"><span data-fs-button-icon="true"><svg data-fs-icon="true" data-testid="fs-icon" width="24" height="24" stroke-width="16"><use href="/icons.svg#MagnifyingGlass"></use></svg></span></div></button></form></div><a data-fs-button="true" data-fs-link-button="true" data-fs-button-size="regular" data-fs-button-variant="tertiary" data-testid="fs-link-button" data-fs-button-signin-link="true" href="/login" class="text__title-mini" aria-label="User"><div data-fs-button-wrapper="true"><span data-fs-button-icon="true"><svg data-fs-icon="true" data-testid="fs-icon" width="18" height="18" stroke-width="24"><use href="/icons.svg#User"></use></svg></span><span>Sign In</span></div></a><button data-fs-button="true" data-fs-button-size="regular" data-fs-button-variant="tertiary" data-testid="cart-toggle" data-fs-icon-button="true" aria-label="Shopping Cart" data-fs-cart-toggle="true" data-items="0"><div data-fs-button-wrapper="true"><span data-fs-button-icon="true"><svg data-fs-icon="true" data-testid="fs-icon" width="32" height="32" stroke-width="16"><use href="/icons.svg#ShoppingCart"></use></svg></span><span><div data-fs-badge="true" data-fs-badge-size="small" data-fs-badge-counter="true" data-testid="fs-badge"><div data-fs-badge-wrapper="true">0</div></div></span></div></button></div></div></section><nav data-fs-navbar-links="true" data-testid="fs-navbar-links" class="hidden-mobile"><div data-fs-navbar-links-wrapper="true" data-fs-content="navbar"><button data-fs-button="true" data-fs-button-size="small" data-fs-button-variant="tertiary" data-testid="fs-button"><div data-fs-button-wrapper="true"><span data-fs-button-icon="true"><svg data-fs-icon="true" data-testid="fs-icon" width="18" height="18" stroke-width="24"><use href="/icons.svg#MapPin"></use></svg></span><span>Set Your Location</span></div></button><ul role="list" data-fs-list="true" data-testid="fs-navbar-links-list" data-fs-navbar-links-list="true"><li data-fs-navbar-links-list-item="true" data-testid="fs-navbar-links-list-item"><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="regular" data-testid="fs-link" href="/office">Office</a></li><li data-fs-navbar-links-list-item="true" data-testid="fs-navbar-links-list-item"><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="regular" data-testid="fs-link" href="/technology">Technology</a></li></ul></div></nav></header></section><section class="section section_section__RNxUN section-region-bar display-mobile"><div data-fs-region-bar="true"><button data-fs-button="true" data-fs-button-size="regular" data-fs-button-variant="tertiary" data-testid="fs-button"><div data-fs-button-wrapper="true"><span><svg data-fs-icon="true" data-testid="fs-icon" width="24" height="24" stroke-width="16" aria-label="Map Pin icon"><use href="/icons.svg#MapPin"></use></svg><span data-fs-region-bar-message="true">Set your location</span></span><span data-fs-button-icon="true"><svg data-fs-icon="true" data-testid="fs-icon" width="24" height="24" stroke-width="16" aria-label="Caret Right icon"><use href="/icons.svg#CaretRight"></use></svg></span></div></button></div></section><main><section class="section section_section__TgowL section-empty-state"><section data-fs-empty-state="true" data-fs-empty-state-variant="default" data-fs-empty-state-bkg-color="light" data-fs-content="empty-state" data-testid="fs-empty-state"><header data-fs-empty-state-title="true"><svg data-fs-icon="true" data-testid="fs-icon" width="56" height="56" stroke-width="8"><use href="/icons.svg#CircleWavyWarning"></use></svg><p>Not Found: 404</p></header><p>This app could not find url <!-- -->/404</p></section></section></main><section class="section section section_section__Ox_hX section-footer"><footer data-fs-footer="true" data-fs-footer-social="true" data-fs-footer-incentives="true" data-fs-footer-payment-methods="true"><div data-fs-content="footer"><div data-fs-incentives="true" data-fs-incentives-colored="false" data-fs-incentives-variant="horizontal"><ul role="list" data-fs-list="true" data-testid="fs-list" data-fs-content="incentives"><li role="listitem"><div data-fs-incentive="true" data-testid="store-incentive" tabindex="0"><svg data-fs-icon="true" data-testid="fs-icon" width="32" height="32" stroke-width="16" data-fs-incentive-icon="true"><use href="/icons.svg#ShieldCheck"></use></svg><div data-fs-incentive-content="true"><p data-fs-incentive-title="true"> </p><span data-fs-incentive-description="true">Trusted</span><span data-fs-incentive-description="true">by Safecon</span></div></div></li><li role="listitem"><div data-fs-incentive="true" data-testid="store-incentive" tabindex="0"><svg data-fs-icon="true" data-testid="fs-icon" width="32" height="32" stroke-width="16" data-fs-incentive-icon="true"><use href="/icons.svg#Calendar"></use></svg><div data-fs-incentive-content="true"><p data-fs-incentive-title="true"> </p><span data-fs-incentive-description="true">Free</span><span data-fs-incentive-description="true">Return</span></div></div></li><li role="listitem"><div data-fs-incentive="true" data-testid="store-incentive" tabindex="0"><svg data-fs-icon="true" data-testid="fs-icon" width="32" height="32" stroke-width="16" data-fs-incentive-icon="true"><use href="/icons.svg#Storefront"></use></svg><div data-fs-incentive-content="true"><p data-fs-incentive-title="true"> </p><span data-fs-incentive-description="true">Pickup</span><span data-fs-incentive-description="true">Options</span></div></div></li><li role="listitem"><div data-fs-incentive="true" data-testid="store-incentive" tabindex="0"><svg data-fs-icon="true" data-testid="fs-icon" width="32" height="32" stroke-width="16" data-fs-incentive-icon="true"><use href="/icons.svg#Truck"></use></svg><div data-fs-incentive-content="true"><p data-fs-incentive-title="true"> </p><span data-fs-incentive-description="true">Free</span><span data-fs-incentive-description="true">Shipping</span></div></div></li></ul></div><div data-fs-footer-navigation="true"><section data-fs-footer="true" data-fs-footer-links="true"><div class="display-mobile"><div data-fs-accordion="true" role="region" data-testid="fs-accordion"><div data-fs-accordion-item="true" data-testid="fs-accordion-item"><button data-fs-button="true" data-fs-button-size="regular" data-fs-button-variant="tertiary" data-testid="fs-accordion-button" id="button--0" data-fs-accordion-button="true" aria-expanded="false" aria-controls="panel--0"><div data-fs-button-wrapper="true"><span>Our company</span><span data-fs-button-icon="true"><svg data-fs-icon="true" data-testid="fs-icon" width="24" height="24" stroke-width="16" data-icon="collapsed"><use href="/icons.svg#PlusCircle"></use></svg></span></div></button><div id="panel--0" data-fs-accordion-panel="true" aria-labelledby="button--0" role="region" hidden="" data-testid="fs-accordion-panel"><ul role="list" data-fs-list="true" data-testid="fs-list"><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="https://starter.vtex.app">About Us</a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="https://starter.vtex.app">Our Blog</a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="https://starter.vtex.app">Stores</a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="https://starter.vtex.app">Work With Us</a></li></ul></div></div><div data-fs-accordion-item="true" data-testid="fs-accordion-item"><button data-fs-button="true" data-fs-button-size="regular" data-fs-button-variant="tertiary" data-testid="fs-accordion-button" id="button--1" data-fs-accordion-button="true" aria-expanded="false" aria-controls="panel--1"><div data-fs-button-wrapper="true"><span>Orders and Purchases</span><span data-fs-button-icon="true"><svg data-fs-icon="true" data-testid="fs-icon" width="24" height="24" stroke-width="16" data-icon="collapsed"><use href="/icons.svg#PlusCircle"></use></svg></span></div></button><div id="panel--1" data-fs-accordion-panel="true" aria-labelledby="button--1" role="region" hidden="" data-testid="fs-accordion-panel"><ul role="list" data-fs-list="true" data-testid="fs-list"><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="/">Returns and Exchanges</a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="/">Product Recall</a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="/">Gift Cards</a></li></ul></div></div><div data-fs-accordion-item="true" data-testid="fs-accordion-item"><button data-fs-button="true" data-fs-button-size="regular" data-fs-button-variant="tertiary" data-testid="fs-accordion-button" id="button--2" data-fs-accordion-button="true" aria-expanded="false" aria-controls="panel--2"><div data-fs-button-wrapper="true"><span>Support & Services</span><span data-fs-button-icon="true"><svg data-fs-icon="true" data-testid="fs-icon" width="24" height="24" stroke-width="16" data-icon="collapsed"><use href="/icons.svg#PlusCircle"></use></svg></span></div></button><div id="panel--2" data-fs-accordion-panel="true" aria-labelledby="button--2" role="region" hidden="" data-testid="fs-accordion-panel"><ul role="list" data-fs-list="true" data-testid="fs-list"><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="/">Support Center</a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="/">Support & Services</a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="/">Contact Us</a></li></ul></div></div><div data-fs-accordion-item="true" data-testid="fs-accordion-item"><button data-fs-button="true" data-fs-button-size="regular" data-fs-button-variant="tertiary" data-testid="fs-accordion-button" id="button--3" data-fs-accordion-button="true" aria-expanded="false" aria-controls="panel--3"><div data-fs-button-wrapper="true"><span>Partnerships</span><span data-fs-button-icon="true"><svg data-fs-icon="true" data-testid="fs-icon" width="24" height="24" stroke-width="16" data-icon="collapsed"><use href="/icons.svg#PlusCircle"></use></svg></span></div></button><div id="panel--3" data-fs-accordion-panel="true" aria-labelledby="button--3" role="region" hidden="" data-testid="fs-accordion-panel"><ul role="list" data-fs-list="true" data-testid="fs-list"><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="/">Affiliate Program</a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="/">Marketplace</a></li></ul></div></div></div></div><div class="hidden-mobile"><nav data-fs-footer-links-columns="true"><div><p data-fs-footer-links-title="true">Our company</p><ul role="list" data-fs-list="true" data-testid="fs-list"><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="https://starter.vtex.app">About Us</a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="https://starter.vtex.app">Our Blog</a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="https://starter.vtex.app">Stores</a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="https://starter.vtex.app">Work With Us</a></li></ul></div><div><p data-fs-footer-links-title="true">Orders and Purchases</p><ul role="list" data-fs-list="true" data-testid="fs-list"><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="/">Returns and Exchanges</a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="/">Product Recall</a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="/">Gift Cards</a></li></ul></div><div><p data-fs-footer-links-title="true">Support & Services</p><ul role="list" data-fs-list="true" data-testid="fs-list"><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="/">Support Center</a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="/">Support & Services</a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="/">Contact Us</a></li></ul></div><div><p data-fs-footer-links-title="true">Partnerships</p><ul role="list" data-fs-list="true" data-testid="fs-list"><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="/">Affiliate Program</a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="/">Marketplace</a></li></ul></div></nav></div></section><section data-fs-footer-social="true"><p data-fs-footer-social-title="true">Follow Us</p><ul role="list" data-fs-list="true" data-testid="fs-list"><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="https://www.facebook.com" title="Facebook" target="_blank" rel="noopener noreferrer"><svg data-fs-icon="true" data-testid="fs-icon" width="24" height="24" stroke-width="16"><use href="/icons.svg#Facebook"></use></svg></a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="https://www.instagram.com" title="Instagram" target="_blank" rel="noopener noreferrer"><svg data-fs-icon="true" data-testid="fs-icon" width="24" height="24" stroke-width="16"><use href="/icons.svg#Instagram"></use></svg></a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="https://www.pinterest.com" title="Pinterest" target="_blank" rel="noopener noreferrer"><svg data-fs-icon="true" data-testid="fs-icon" width="24" height="24" stroke-width="16"><use href="/icons.svg#Pinterest"></use></svg></a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="https://www.twitter.com" title="Twitter" target="_blank" rel="noopener noreferrer"><svg data-fs-icon="true" data-testid="fs-icon" width="24" height="24" stroke-width="16"><use href="/icons.svg#Twitter"></use></svg></a></li></ul></section></div><div data-fs-footer-info="true"><a data-fs-link="true" data-fs-link-variant="default" data-fs-link-size="regular" data-testid="fs-link" href="https://starter.vtex.app/" title="FastStore Starter"><div data-fs-logo="true"><img data-fs-image="true" alt="Store Logo" sizes="15vw" srcSet="https://storeframework.vtexassets.com/unsafe/68x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fec191c4a-32d8-41a9-9255-f319819bc98c___c24a66e2bef2c3f2bea07571a3636804.png 68w, https://storeframework.vtexassets.com/unsafe/154x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fec191c4a-32d8-41a9-9255-f319819bc98c___c24a66e2bef2c3f2bea07571a3636804.png 154w, https://storeframework.vtexassets.com/unsafe/320x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fec191c4a-32d8-41a9-9255-f319819bc98c___c24a66e2bef2c3f2bea07571a3636804.png 320w, https://storeframework.vtexassets.com/unsafe/360x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fec191c4a-32d8-41a9-9255-f319819bc98c___c24a66e2bef2c3f2bea07571a3636804.png 360w, https://storeframework.vtexassets.com/unsafe/540x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fec191c4a-32d8-41a9-9255-f319819bc98c___c24a66e2bef2c3f2bea07571a3636804.png 540w, https://storeframework.vtexassets.com/unsafe/768x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fec191c4a-32d8-41a9-9255-f319819bc98c___c24a66e2bef2c3f2bea07571a3636804.png 768w, https://storeframework.vtexassets.com/unsafe/1280x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fec191c4a-32d8-41a9-9255-f319819bc98c___c24a66e2bef2c3f2bea07571a3636804.png 1280w, https://storeframework.vtexassets.com/unsafe/1440x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fec191c4a-32d8-41a9-9255-f319819bc98c___c24a66e2bef2c3f2bea07571a3636804.png 1440w" src="https://storeframework.vtexassets.com/unsafe/1440x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fec191c4a-32d8-41a9-9255-f319819bc98c___c24a66e2bef2c3f2bea07571a3636804.png" width="0" height="0" decoding="async" data-nimg="future" loading="lazy" style="color:transparent;width:100%;height:auto"/></div></a><div data-fs-payment-methods="true" data-testid="fs-payment-methods"><div data-fs-payment-methods-title="true"><p>Payment Methods</p></div><ul role="list" data-fs-list="true" data-testid="fs-list" data-fs-payment-methods-flags="true"><li data-fs-payment-methods-flag="true"><svg data-fs-icon="true" data-testid="fs-icon" width="32" height="22.5" stroke-width="16"><use href="/icons.svg#Diners"></use></svg><span data-fs-sr-only="true">Diners Club</span></li><li data-fs-payment-methods-flag="true"><svg data-fs-icon="true" data-testid="fs-icon" width="32" height="22.5" stroke-width="16"><use href="/icons.svg#Visa"></use></svg><span data-fs-sr-only="true">Visa</span></li><li data-fs-payment-methods-flag="true"><svg data-fs-icon="true" data-testid="fs-icon" width="32" height="22.5" stroke-width="16"><use href="/icons.svg#Mastercard"></use></svg><span data-fs-sr-only="true">Mastercard</span></li><li data-fs-payment-methods-flag="true"><svg data-fs-icon="true" data-testid="fs-icon" width="32" height="22.5" stroke-width="16"><use href="/icons.svg#EloCard"></use></svg><span data-fs-sr-only="true">Elo Card</span></li><li data-fs-payment-methods-flag="true"><svg data-fs-icon="true" data-testid="fs-icon" width="32" height="22.5" stroke-width="16"><use href="/icons.svg#PayPal"></use></svg><span data-fs-sr-only="true">PayPal</span></li><li data-fs-payment-methods-flag="true"><svg data-fs-icon="true" data-testid="fs-icon" width="32" height="22.5" stroke-width="16"><use href="/icons.svg#GooglePay"></use></svg><span data-fs-sr-only="true">GooglePay</span></li><li data-fs-payment-methods-flag="true"><svg data-fs-icon="true" data-testid="fs-icon" width="32" height="22.5" stroke-width="16"><use href="/icons.svg#ApplePay"></use></svg><span data-fs-sr-only="true">Apple Pay</span></li></ul></div><div data-fs-footer-copyright="true" class="text__legend"><p>This website uses VTEX technology. In-store price may vary. Prices and offers are subject to change. 2023 Brandless Store. All rights reserved. Store is a trademark of Store and its affiliated companies. Mount St, 000, New York / NY - 00000.</p></div></div></div></footer></section></div><script id="__NEXT_DATA__" type="application/json">{"props":{"pageProps":{"globalSections":{"sections":[{"id":"9accea9d-6e4f-489a-a597-224237912329","name":"Alert","data":{"link":{"text":"Buy now","to":"/office"},"dismissible":true,"icon":"BellRinging","content":"Get 15% off today: NEW15!"}},{"id":"91ac1a61-9aa3-4769-8af4-c14a4b33fc92","name":"Navbar","data":{"logo":{"link":{"url":"/","title":"Go To Home"},"src":"https://storeframework.vtexassets.com/assets/vtex.file-manager-graphql/images/ab9997f4-8fd6-46f5-99d2-9d5af3ef5e34___6d75a203771d7408d8f0d1c660a076dd.png","alt":"Store logo"},"searchInput":{"sort":"score_desc"},"signInButton":{"icon":{"icon":"User","alt":"User"},"label":"Sign In","myAccountLabel":"My Account"},"cartIcon":{"icon":"ShoppingCart","alt":"Shopping Cart"},"navigation":{"regionalization":{"enabled":true,"icon":{"icon":"MapPin","alt":"MapPin"},"label":"Set Your Location"},"pageLinks":[{"text":"Office","url":"/office"},{"text":"Technology","url":"/technology"}],"menu":{"icon":{"icon":"List","alt":"List"}},"home":{"label":"Go to Home"}}}},{"id":"98a880bc-3190-448c-92fc-e49b3105de17","name":"RegionBar","data":{"icon":{"icon":"MapPin","alt":"Map Pin icon"},"label":"Set your location","editLabel":"Edit","buttonIcon":{"icon":"CaretRight","alt":"Caret Right icon"}}},{"id":"5e901790-8fbb-4a0d-a08b-67929a3b8d38","name":"CartSidebar","data":{"title":"Your Cart","alert":{"icon":{"icon":"Truck","alt":"Arrow Right icon"},"text":"Free shipping starts at $300"},"checkoutButton":{"label":"Checkout","loadingLabel":"Loading...","icon":{"icon":"ArrowRight","alt":"Arrow Right icon"}}}},{"id":"2e154ab1-0196-4479-b276-92344612b9dc","name":"RegionModal","data":{"title":"Set your location","description":"Prices, offers and availability may vary according to your location.","closeButtonAriaLabel":"Close Region Modal","inputField":{"label":"Postal Code","errorMessage":"You entered an invalid Postal Code"},"idkPostalCodeLink":{"text":"I don't know my Postal Code","icon":{"icon":"ArrowSquareOut","alt":"Arrow Square Out icon"}}}},{"id":"6894ec45-8450-4d0c-9e96-0d60f5e4f2cc","name":"Children","data":{}},{"id":"efc78f3f-215b-4a82-a369-15b80324ae35","name":"Footer","data":{"incentives":[{"title":" ","firstLineText":"Trusted","icon":"ShieldCheck","secondLineText":"by Safecon"},{"title":" ","firstLineText":"Free","icon":"Calendar","secondLineText":"Return"},{"title":" ","firstLineText":"Pickup","icon":"Storefront","secondLineText":"Options"},{"firstLineText":"Free","secondLineText":"Shipping","title":" ","icon":"Truck"}],"footerLinks":[{"items":[{"text":"About Us","url":"https://starter.vtex.app"},{"text":"Our Blog","url":"https://starter.vtex.app"},{"text":"Stores","url":"https://starter.vtex.app"},{"text":"Work With Us","url":"https://starter.vtex.app"}],"sectionTitle":"Our company"},{"items":[{"text":"Returns and Exchanges","url":"/"},{"text":"Product Recall","url":"/"},{"text":"Gift Cards","url":"/"}],"sectionTitle":"Orders and Purchases"},{"items":[{"text":"Support Center","url":"/"},{"text":"Support \u0026 Services","url":"/"},{"text":"Contact Us","url":"/"}],"sectionTitle":"Support \u0026 Services"},{"items":[{"text":"Affiliate Program","url":"/"},{"text":"Marketplace","url":"/"}],"sectionTitle":"Partnerships"}],"footerSocial":{"title":"Follow Us","socialLinks":[{"icon":{"icon":"Facebook"},"alt":"Facebook","url":"https://www.facebook.com"},{"icon":{"icon":"Instagram"},"alt":"Instagram","url":"https://www.instagram.com"},{"icon":{"icon":"Pinterest"},"alt":"Pinterest","url":"https://www.pinterest.com"},{"icon":{"icon":"Twitter"},"alt":"Twitter","url":"https://www.twitter.com"}]},"logo":{"link":{"title":"FastStore Starter","url":"https://starter.vtex.app/"},"src":"https://storeframework.vtexassets.com/assets/vtex.file-manager-graphql/images/ec191c4a-32d8-41a9-9255-f319819bc98c___c24a66e2bef2c3f2bea07571a3636804.png","alt":"Store Logo"},"acceptedPaymentMethods":{"showPaymentMethods":true,"title":"Payment Methods","paymentMethods":[{"icon":{"icon":"Diners"},"alt":"Diners Club"},{"icon":{"icon":"Visa"},"alt":"Visa"},{"icon":{"icon":"Mastercard"},"alt":"Mastercard"},{"icon":{"icon":"EloCard"},"alt":"Elo Card"},{"icon":{"icon":"PayPal"},"alt":"PayPal"},{"icon":{"icon":"GooglePay"},"alt":"GooglePay"},{"icon":{"icon":"ApplePay"},"alt":"Apple Pay"}]},"copyrightInfo":"This website uses VTEX technology. In-store price may vary. Prices and offers are subject to change. 2023 Brandless Store. All rights reserved. Store is a trademark of Store and its affiliated companies. Mount St, 000, New York / NY - 00000."}}]}},"__N_SSG":true},"page":"/404","query":{},"buildId":"SC1Gn_fnUQSpOMSvXEqFi","isFallback":false,"gsp":true,"locale":"en-US","locales":["en-US"],"defaultLocale":"en-US","scriptLoader":[]}</script></body></html>
|
|
81
|
+
</style><section class="section section_section__YiggP section-alert"><div role="alert" data-fs-alert="true" data-fs-alert-dismissible="true" data-fs-content="alert" data-testid="fs-alert"><svg data-fs-icon="true" data-testid="fs-icon" width="24" height="24" stroke-width="16"><use href="/icons.svg#BellRinging"></use></svg><p data-fs-alert-content="true">Get 15% off today: NEW15!</p><a data-fs-link="true" data-fs-link-variant="inline" data-fs-link-size="regular" data-testid="fs-link" data-fs-alert-link="true" href="/office" target="_self">Buy now</a><button data-fs-button="true" data-fs-button-size="small" data-fs-button-variant="tertiary" data-testid="fs-icon-button" data-fs-icon-button="true" aria-label="Close" data-fs-alert-button="true"><div data-fs-button-wrapper="true"><span data-fs-button-icon="true"><svg data-fs-icon="true" data-testid="fs-icon" width="24" height="24" stroke-width="16"><use href="/icons.svg#X"></use></svg></span></div></button></div></section><section class="section section_section__dPVmH section-navbar"><header data-fs-navbar="true" role="banner" data-fs-navbar-scroll="" data-testid="fs-navbar"><section data-fs-navbar-header="true" data-testid="fs-navbar-header"><div data-fs-navbar-row="true" data-fs-content="navbar" data-testid="fs-navbar-row"><button data-fs-button="true" data-fs-button-size="regular" data-fs-button-variant="tertiary" data-testid="fs-icon-button" data-fs-icon-button="true" aria-label="List" data-fs-navbar-button-menu="true"><div data-fs-button-wrapper="true"><span data-fs-button-icon="true"><svg data-fs-icon="true" data-testid="fs-icon" width="32" height="32" stroke-width="16"><use href="/icons.svg#List"></use></svg></span></div></button><a data-fs-link="true" data-fs-link-variant="default" data-fs-link-size="regular" data-testid="fs-link" data-fs-navbar-logo="true" title="Go To Home" href="/"><div data-fs-logo="true"><img data-fs-image="true" alt="Store logo" sizes="15vw" srcSet="https://storeframework.vtexassets.com/unsafe/68x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fab9997f4-8fd6-46f5-99d2-9d5af3ef5e34___6d75a203771d7408d8f0d1c660a076dd.png 68w, https://storeframework.vtexassets.com/unsafe/154x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fab9997f4-8fd6-46f5-99d2-9d5af3ef5e34___6d75a203771d7408d8f0d1c660a076dd.png 154w, https://storeframework.vtexassets.com/unsafe/320x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fab9997f4-8fd6-46f5-99d2-9d5af3ef5e34___6d75a203771d7408d8f0d1c660a076dd.png 320w, https://storeframework.vtexassets.com/unsafe/360x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fab9997f4-8fd6-46f5-99d2-9d5af3ef5e34___6d75a203771d7408d8f0d1c660a076dd.png 360w, https://storeframework.vtexassets.com/unsafe/540x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fab9997f4-8fd6-46f5-99d2-9d5af3ef5e34___6d75a203771d7408d8f0d1c660a076dd.png 540w, https://storeframework.vtexassets.com/unsafe/768x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fab9997f4-8fd6-46f5-99d2-9d5af3ef5e34___6d75a203771d7408d8f0d1c660a076dd.png 768w, https://storeframework.vtexassets.com/unsafe/1280x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fab9997f4-8fd6-46f5-99d2-9d5af3ef5e34___6d75a203771d7408d8f0d1c660a076dd.png 1280w, https://storeframework.vtexassets.com/unsafe/1440x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fab9997f4-8fd6-46f5-99d2-9d5af3ef5e34___6d75a203771d7408d8f0d1c660a076dd.png 1440w" src="https://storeframework.vtexassets.com/unsafe/1440x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fab9997f4-8fd6-46f5-99d2-9d5af3ef5e34___6d75a203771d7408d8f0d1c660a076dd.png" width="0" height="0" decoding="async" data-nimg="future" loading="lazy" style="color:transparent;width:100%;height:auto"/></div></a><div data-fs-search-input="true" data-fs-search-input-dropdown-visible="false" data-testid="fs-search-input"><form data-fs-search-input-field="true" data-testid="fs-search-input" role="search"><input data-fs-input="true" data-testid="fs-input" aria-label="search" data-fs-search-input-field-input="true" placeholder="Search everything at the store" value=""/><button data-fs-button="true" data-fs-button-size="small" data-fs-button-variant="tertiary" data-testid="fs-search-button" data-fs-icon-button="true" aria-label="Submit Search" type="submit"><div data-fs-button-wrapper="true"><span data-fs-button-icon="true"><svg data-fs-icon="true" data-testid="fs-icon" width="24" height="24" stroke-width="16"><use href="/icons.svg#MagnifyingGlass"></use></svg></span></div></button></form></div><div data-fs-navbar-buttons="true" data-testid="fs-navbar-buttons" data-fs-navbar-search-expanded="false"><div data-fs-search-input="true" data-fs-search-input-dropdown-visible="false" data-testid="fs-search-input"><form data-fs-search-input-field="true" data-testid="store-input-mobile" role="search"><input data-fs-input="true" data-testid="fs-input" aria-label="search" data-fs-search-input-field-input="true" placeholder="" hidden="" aria-hidden="true" value=""/><button data-fs-button="true" data-fs-button-size="small" data-fs-button-variant="tertiary" data-testid="store-input-mobile-button" data-fs-icon-button="true" aria-label="Submit Search" type="submit"><div data-fs-button-wrapper="true"><span data-fs-button-icon="true"><svg data-fs-icon="true" data-testid="fs-icon" width="24" height="24" stroke-width="16"><use href="/icons.svg#MagnifyingGlass"></use></svg></span></div></button></form></div><a data-fs-button="true" data-fs-link-button="true" data-fs-button-size="regular" data-fs-button-variant="tertiary" data-testid="fs-link-button" data-fs-button-signin-link="true" href="/login" class="text__title-mini" aria-label="User"><div data-fs-button-wrapper="true"><span data-fs-button-icon="true"><svg data-fs-icon="true" data-testid="fs-icon" width="18" height="18" stroke-width="24"><use href="/icons.svg#User"></use></svg></span><span>Sign In</span></div></a><button data-fs-button="true" data-fs-button-size="regular" data-fs-button-variant="tertiary" data-testid="cart-toggle" data-fs-icon-button="true" aria-label="Shopping Cart" data-fs-cart-toggle="true" data-items="0"><div data-fs-button-wrapper="true"><span data-fs-button-icon="true"><svg data-fs-icon="true" data-testid="fs-icon" width="32" height="32" stroke-width="16"><use href="/icons.svg#ShoppingCart"></use></svg></span><span><div data-fs-badge="true" data-fs-badge-size="small" data-fs-badge-counter="true" data-testid="fs-badge"><div data-fs-badge-wrapper="true">0</div></div></span></div></button></div></div></section><nav data-fs-navbar-links="true" data-testid="fs-navbar-links" class="hidden-mobile"><div data-fs-navbar-links-wrapper="true" data-fs-content="navbar"><button data-fs-button="true" data-fs-button-size="small" data-fs-button-variant="tertiary" data-testid="fs-button"><div data-fs-button-wrapper="true"><span data-fs-button-icon="true"><svg data-fs-icon="true" data-testid="fs-icon" width="18" height="18" stroke-width="24"><use href="/icons.svg#MapPin"></use></svg></span><span>Set Your Location</span></div></button><ul role="list" data-fs-list="true" data-testid="fs-navbar-links-list" data-fs-navbar-links-list="true"><li data-fs-navbar-links-list-item="true" data-testid="fs-navbar-links-list-item"><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="regular" data-testid="fs-link" href="/office">Office</a></li><li data-fs-navbar-links-list-item="true" data-testid="fs-navbar-links-list-item"><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="regular" data-testid="fs-link" href="/technology">Technology</a></li></ul></div></nav></header></section><section class="section section_section__RNxUN section-region-bar display-mobile"><div data-fs-region-bar="true"><button data-fs-button="true" data-fs-button-size="regular" data-fs-button-variant="tertiary" data-testid="fs-button"><div data-fs-button-wrapper="true"><span><svg data-fs-icon="true" data-testid="fs-icon" width="24" height="24" stroke-width="16" aria-label="Map Pin icon"><use href="/icons.svg#MapPin"></use></svg><span data-fs-region-bar-message="true">Set your location</span></span><span data-fs-button-icon="true"><svg data-fs-icon="true" data-testid="fs-icon" width="24" height="24" stroke-width="16" aria-label="Caret Right icon"><use href="/icons.svg#CaretRight"></use></svg></span></div></button></div></section><main><section class="section section_section__TgowL section-empty-state"><section data-fs-empty-state="true" data-fs-empty-state-variant="default" data-fs-empty-state-bkg-color="light" data-fs-content="empty-state" data-testid="fs-empty-state"><header data-fs-empty-state-title="true"><svg data-fs-icon="true" data-testid="fs-icon" width="56" height="56" stroke-width="8"><use href="/icons.svg#CircleWavyWarning"></use></svg><p>Not Found: 404</p></header><p>This app could not find url <!-- -->/404</p></section></section></main><section class="section section section_section__Ox_hX section-footer"><footer data-fs-footer="true" data-fs-footer-social="true" data-fs-footer-incentives="true" data-fs-footer-payment-methods="true"><div data-fs-content="footer"><div data-fs-incentives="true" data-fs-incentives-colored="false" data-fs-incentives-variant="horizontal"><ul role="list" data-fs-list="true" data-testid="fs-list" data-fs-content="incentives"><li role="listitem"><div data-fs-incentive="true" data-testid="store-incentive" tabindex="0"><svg data-fs-icon="true" data-testid="fs-icon" width="32" height="32" stroke-width="16" data-fs-incentive-icon="true"><use href="/icons.svg#ShieldCheck"></use></svg><div data-fs-incentive-content="true"><p data-fs-incentive-title="true"> </p><span data-fs-incentive-description="true">Trusted</span><span data-fs-incentive-description="true">by Safecon</span></div></div></li><li role="listitem"><div data-fs-incentive="true" data-testid="store-incentive" tabindex="0"><svg data-fs-icon="true" data-testid="fs-icon" width="32" height="32" stroke-width="16" data-fs-incentive-icon="true"><use href="/icons.svg#Calendar"></use></svg><div data-fs-incentive-content="true"><p data-fs-incentive-title="true"> </p><span data-fs-incentive-description="true">Free</span><span data-fs-incentive-description="true">Return</span></div></div></li><li role="listitem"><div data-fs-incentive="true" data-testid="store-incentive" tabindex="0"><svg data-fs-icon="true" data-testid="fs-icon" width="32" height="32" stroke-width="16" data-fs-incentive-icon="true"><use href="/icons.svg#Storefront"></use></svg><div data-fs-incentive-content="true"><p data-fs-incentive-title="true"> </p><span data-fs-incentive-description="true">Pickup</span><span data-fs-incentive-description="true">Options</span></div></div></li><li role="listitem"><div data-fs-incentive="true" data-testid="store-incentive" tabindex="0"><svg data-fs-icon="true" data-testid="fs-icon" width="32" height="32" stroke-width="16" data-fs-incentive-icon="true"><use href="/icons.svg#Truck"></use></svg><div data-fs-incentive-content="true"><p data-fs-incentive-title="true"> </p><span data-fs-incentive-description="true">Free</span><span data-fs-incentive-description="true">Shipping</span></div></div></li></ul></div><div data-fs-footer-navigation="true"><section data-fs-footer="true" data-fs-footer-links="true"><div class="display-mobile"><div data-fs-accordion="true" role="region" data-testid="fs-accordion"><div data-fs-accordion-item="true" data-testid="fs-accordion-item"><button data-fs-button="true" data-fs-button-size="regular" data-fs-button-variant="tertiary" data-testid="fs-accordion-button" id="button--0" data-fs-accordion-button="true" aria-expanded="false" aria-controls="panel--0"><div data-fs-button-wrapper="true"><span>Our company</span><span data-fs-button-icon="true"><svg data-fs-icon="true" data-testid="fs-icon" width="24" height="24" stroke-width="16" data-icon="collapsed"><use href="/icons.svg#PlusCircle"></use></svg></span></div></button><div id="panel--0" data-fs-accordion-panel="true" aria-labelledby="button--0" role="region" hidden="" data-testid="fs-accordion-panel"><ul role="list" data-fs-list="true" data-testid="fs-list"><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="https://starter.vtex.app">About Us</a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="https://starter.vtex.app">Our Blog</a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="https://starter.vtex.app">Stores</a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="https://starter.vtex.app">Work With Us</a></li></ul></div></div><div data-fs-accordion-item="true" data-testid="fs-accordion-item"><button data-fs-button="true" data-fs-button-size="regular" data-fs-button-variant="tertiary" data-testid="fs-accordion-button" id="button--1" data-fs-accordion-button="true" aria-expanded="false" aria-controls="panel--1"><div data-fs-button-wrapper="true"><span>Orders and Purchases</span><span data-fs-button-icon="true"><svg data-fs-icon="true" data-testid="fs-icon" width="24" height="24" stroke-width="16" data-icon="collapsed"><use href="/icons.svg#PlusCircle"></use></svg></span></div></button><div id="panel--1" data-fs-accordion-panel="true" aria-labelledby="button--1" role="region" hidden="" data-testid="fs-accordion-panel"><ul role="list" data-fs-list="true" data-testid="fs-list"><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="/">Returns and Exchanges</a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="/">Product Recall</a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="/">Gift Cards</a></li></ul></div></div><div data-fs-accordion-item="true" data-testid="fs-accordion-item"><button data-fs-button="true" data-fs-button-size="regular" data-fs-button-variant="tertiary" data-testid="fs-accordion-button" id="button--2" data-fs-accordion-button="true" aria-expanded="false" aria-controls="panel--2"><div data-fs-button-wrapper="true"><span>Support & Services</span><span data-fs-button-icon="true"><svg data-fs-icon="true" data-testid="fs-icon" width="24" height="24" stroke-width="16" data-icon="collapsed"><use href="/icons.svg#PlusCircle"></use></svg></span></div></button><div id="panel--2" data-fs-accordion-panel="true" aria-labelledby="button--2" role="region" hidden="" data-testid="fs-accordion-panel"><ul role="list" data-fs-list="true" data-testid="fs-list"><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="/">Support Center</a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="/">Support & Services</a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="/">Contact Us</a></li></ul></div></div><div data-fs-accordion-item="true" data-testid="fs-accordion-item"><button data-fs-button="true" data-fs-button-size="regular" data-fs-button-variant="tertiary" data-testid="fs-accordion-button" id="button--3" data-fs-accordion-button="true" aria-expanded="false" aria-controls="panel--3"><div data-fs-button-wrapper="true"><span>Partnerships</span><span data-fs-button-icon="true"><svg data-fs-icon="true" data-testid="fs-icon" width="24" height="24" stroke-width="16" data-icon="collapsed"><use href="/icons.svg#PlusCircle"></use></svg></span></div></button><div id="panel--3" data-fs-accordion-panel="true" aria-labelledby="button--3" role="region" hidden="" data-testid="fs-accordion-panel"><ul role="list" data-fs-list="true" data-testid="fs-list"><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="/">Affiliate Program</a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="/">Marketplace</a></li></ul></div></div></div></div><div class="hidden-mobile"><nav data-fs-footer-links-columns="true"><div><p data-fs-footer-links-title="true">Our company</p><ul role="list" data-fs-list="true" data-testid="fs-list"><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="https://starter.vtex.app">About Us</a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="https://starter.vtex.app">Our Blog</a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="https://starter.vtex.app">Stores</a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="https://starter.vtex.app">Work With Us</a></li></ul></div><div><p data-fs-footer-links-title="true">Orders and Purchases</p><ul role="list" data-fs-list="true" data-testid="fs-list"><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="/">Returns and Exchanges</a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="/">Product Recall</a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="/">Gift Cards</a></li></ul></div><div><p data-fs-footer-links-title="true">Support & Services</p><ul role="list" data-fs-list="true" data-testid="fs-list"><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="/">Support Center</a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="/">Support & Services</a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="/">Contact Us</a></li></ul></div><div><p data-fs-footer-links-title="true">Partnerships</p><ul role="list" data-fs-list="true" data-testid="fs-list"><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="/">Affiliate Program</a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="/">Marketplace</a></li></ul></div></nav></div></section><section data-fs-footer-social="true"><p data-fs-footer-social-title="true">Follow Us</p><ul role="list" data-fs-list="true" data-testid="fs-list"><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="https://www.facebook.com" title="Facebook" target="_blank" rel="noopener noreferrer"><svg data-fs-icon="true" data-testid="fs-icon" width="24" height="24" stroke-width="16"><use href="/icons.svg#Facebook"></use></svg></a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="https://www.instagram.com" title="Instagram" target="_blank" rel="noopener noreferrer"><svg data-fs-icon="true" data-testid="fs-icon" width="24" height="24" stroke-width="16"><use href="/icons.svg#Instagram"></use></svg></a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="https://www.pinterest.com" title="Pinterest" target="_blank" rel="noopener noreferrer"><svg data-fs-icon="true" data-testid="fs-icon" width="24" height="24" stroke-width="16"><use href="/icons.svg#Pinterest"></use></svg></a></li><li><a data-fs-link="true" data-fs-link-variant="display" data-fs-link-size="small" data-testid="fs-link" href="https://www.twitter.com" title="Twitter" target="_blank" rel="noopener noreferrer"><svg data-fs-icon="true" data-testid="fs-icon" width="24" height="24" stroke-width="16"><use href="/icons.svg#Twitter"></use></svg></a></li></ul></section></div><div data-fs-footer-info="true"><a data-fs-link="true" data-fs-link-variant="default" data-fs-link-size="regular" data-testid="fs-link" href="https://starter.vtex.app/" title="FastStore Starter"><div data-fs-logo="true"><img data-fs-image="true" alt="Store Logo" sizes="15vw" srcSet="https://storeframework.vtexassets.com/unsafe/68x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fec191c4a-32d8-41a9-9255-f319819bc98c___c24a66e2bef2c3f2bea07571a3636804.png 68w, https://storeframework.vtexassets.com/unsafe/154x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fec191c4a-32d8-41a9-9255-f319819bc98c___c24a66e2bef2c3f2bea07571a3636804.png 154w, https://storeframework.vtexassets.com/unsafe/320x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fec191c4a-32d8-41a9-9255-f319819bc98c___c24a66e2bef2c3f2bea07571a3636804.png 320w, https://storeframework.vtexassets.com/unsafe/360x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fec191c4a-32d8-41a9-9255-f319819bc98c___c24a66e2bef2c3f2bea07571a3636804.png 360w, https://storeframework.vtexassets.com/unsafe/540x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fec191c4a-32d8-41a9-9255-f319819bc98c___c24a66e2bef2c3f2bea07571a3636804.png 540w, https://storeframework.vtexassets.com/unsafe/768x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fec191c4a-32d8-41a9-9255-f319819bc98c___c24a66e2bef2c3f2bea07571a3636804.png 768w, https://storeframework.vtexassets.com/unsafe/1280x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fec191c4a-32d8-41a9-9255-f319819bc98c___c24a66e2bef2c3f2bea07571a3636804.png 1280w, https://storeframework.vtexassets.com/unsafe/1440x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fec191c4a-32d8-41a9-9255-f319819bc98c___c24a66e2bef2c3f2bea07571a3636804.png 1440w" src="https://storeframework.vtexassets.com/unsafe/1440x0/center/middle/https%3A%2F%2Fstoreframework.vtexassets.com%2Fassets%2Fvtex.file-manager-graphql%2Fimages%2Fec191c4a-32d8-41a9-9255-f319819bc98c___c24a66e2bef2c3f2bea07571a3636804.png" width="0" height="0" decoding="async" data-nimg="future" loading="lazy" style="color:transparent;width:100%;height:auto"/></div></a><div data-fs-payment-methods="true" data-testid="fs-payment-methods"><div data-fs-payment-methods-title="true"><p>Payment Methods</p></div><ul role="list" data-fs-list="true" data-testid="fs-list" data-fs-payment-methods-flags="true"><li data-fs-payment-methods-flag="true"><svg data-fs-icon="true" data-testid="fs-icon" width="32" height="22.5" stroke-width="16"><use href="/icons.svg#Diners"></use></svg><span data-fs-sr-only="true">Diners Club</span></li><li data-fs-payment-methods-flag="true"><svg data-fs-icon="true" data-testid="fs-icon" width="32" height="22.5" stroke-width="16"><use href="/icons.svg#Visa"></use></svg><span data-fs-sr-only="true">Visa</span></li><li data-fs-payment-methods-flag="true"><svg data-fs-icon="true" data-testid="fs-icon" width="32" height="22.5" stroke-width="16"><use href="/icons.svg#Mastercard"></use></svg><span data-fs-sr-only="true">Mastercard</span></li><li data-fs-payment-methods-flag="true"><svg data-fs-icon="true" data-testid="fs-icon" width="32" height="22.5" stroke-width="16"><use href="/icons.svg#EloCard"></use></svg><span data-fs-sr-only="true">Elo Card</span></li><li data-fs-payment-methods-flag="true"><svg data-fs-icon="true" data-testid="fs-icon" width="32" height="22.5" stroke-width="16"><use href="/icons.svg#PayPal"></use></svg><span data-fs-sr-only="true">PayPal</span></li><li data-fs-payment-methods-flag="true"><svg data-fs-icon="true" data-testid="fs-icon" width="32" height="22.5" stroke-width="16"><use href="/icons.svg#GooglePay"></use></svg><span data-fs-sr-only="true">GooglePay</span></li><li data-fs-payment-methods-flag="true"><svg data-fs-icon="true" data-testid="fs-icon" width="32" height="22.5" stroke-width="16"><use href="/icons.svg#ApplePay"></use></svg><span data-fs-sr-only="true">Apple Pay</span></li></ul></div><div data-fs-footer-copyright="true" class="text__legend"><p>This website uses VTEX technology. In-store price may vary. Prices and offers are subject to change. 2023 Brandless Store. All rights reserved. Store is a trademark of Store and its affiliated companies. Mount St, 000, New York / NY - 00000.</p></div></div></div></footer></section></div><script id="__NEXT_DATA__" type="application/json">{"props":{"pageProps":{"globalSections":{"sections":[{"id":"9accea9d-6e4f-489a-a597-224237912329","name":"Alert","data":{"link":{"text":"Buy now","to":"/office"},"dismissible":true,"icon":"BellRinging","content":"Get 15% off today: NEW15!"}},{"id":"91ac1a61-9aa3-4769-8af4-c14a4b33fc92","name":"Navbar","data":{"logo":{"link":{"url":"/","title":"Go To Home"},"src":"https://storeframework.vtexassets.com/assets/vtex.file-manager-graphql/images/ab9997f4-8fd6-46f5-99d2-9d5af3ef5e34___6d75a203771d7408d8f0d1c660a076dd.png","alt":"Store logo"},"searchInput":{"sort":"score_desc"},"signInButton":{"icon":{"icon":"User","alt":"User"},"label":"Sign In","myAccountLabel":"My Account"},"cartIcon":{"icon":"ShoppingCart","alt":"Shopping Cart"},"navigation":{"regionalization":{"enabled":true,"icon":{"icon":"MapPin","alt":"MapPin"},"label":"Set Your Location"},"pageLinks":[{"text":"Office","url":"/office"},{"text":"Technology","url":"/technology"}],"menu":{"icon":{"icon":"List","alt":"List"}},"home":{"label":"Go to Home"}}}},{"id":"98a880bc-3190-448c-92fc-e49b3105de17","name":"RegionBar","data":{"icon":{"icon":"MapPin","alt":"Map Pin icon"},"label":"Set your location","editLabel":"Edit","buttonIcon":{"icon":"CaretRight","alt":"Caret Right icon"}}},{"id":"5e901790-8fbb-4a0d-a08b-67929a3b8d38","name":"CartSidebar","data":{"title":"Your Cart","alert":{"icon":{"icon":"Truck","alt":"Arrow Right icon"},"text":"Free shipping starts at $300"},"checkoutButton":{"label":"Checkout","loadingLabel":"Loading...","icon":{"icon":"ArrowRight","alt":"Arrow Right icon"}}}},{"id":"2e154ab1-0196-4479-b276-92344612b9dc","name":"RegionModal","data":{"title":"Set your location","description":"Prices, offers and availability may vary according to your location.","closeButtonAriaLabel":"Close Region Modal","inputField":{"label":"Postal Code","errorMessage":"You entered an invalid Postal Code"},"idkPostalCodeLink":{"text":"I don't know my Postal Code","icon":{"icon":"ArrowSquareOut","alt":"Arrow Square Out icon"}}}},{"id":"6894ec45-8450-4d0c-9e96-0d60f5e4f2cc","name":"Children","data":{}},{"id":"efc78f3f-215b-4a82-a369-15b80324ae35","name":"Footer","data":{"incentives":[{"title":" ","firstLineText":"Trusted","icon":"ShieldCheck","secondLineText":"by Safecon"},{"title":" ","firstLineText":"Free","icon":"Calendar","secondLineText":"Return"},{"title":" ","firstLineText":"Pickup","icon":"Storefront","secondLineText":"Options"},{"firstLineText":"Free","secondLineText":"Shipping","title":" ","icon":"Truck"}],"footerLinks":[{"items":[{"text":"About Us","url":"https://starter.vtex.app"},{"text":"Our Blog","url":"https://starter.vtex.app"},{"text":"Stores","url":"https://starter.vtex.app"},{"text":"Work With Us","url":"https://starter.vtex.app"}],"sectionTitle":"Our company"},{"items":[{"text":"Returns and Exchanges","url":"/"},{"text":"Product Recall","url":"/"},{"text":"Gift Cards","url":"/"}],"sectionTitle":"Orders and Purchases"},{"items":[{"text":"Support Center","url":"/"},{"text":"Support \u0026 Services","url":"/"},{"text":"Contact Us","url":"/"}],"sectionTitle":"Support \u0026 Services"},{"items":[{"text":"Affiliate Program","url":"/"},{"text":"Marketplace","url":"/"}],"sectionTitle":"Partnerships"}],"footerSocial":{"title":"Follow Us","socialLinks":[{"icon":{"icon":"Facebook"},"alt":"Facebook","url":"https://www.facebook.com"},{"icon":{"icon":"Instagram"},"alt":"Instagram","url":"https://www.instagram.com"},{"icon":{"icon":"Pinterest"},"alt":"Pinterest","url":"https://www.pinterest.com"},{"icon":{"icon":"Twitter"},"alt":"Twitter","url":"https://www.twitter.com"}]},"logo":{"link":{"title":"FastStore Starter","url":"https://starter.vtex.app/"},"src":"https://storeframework.vtexassets.com/assets/vtex.file-manager-graphql/images/ec191c4a-32d8-41a9-9255-f319819bc98c___c24a66e2bef2c3f2bea07571a3636804.png","alt":"Store Logo"},"acceptedPaymentMethods":{"showPaymentMethods":true,"title":"Payment Methods","paymentMethods":[{"icon":{"icon":"Diners"},"alt":"Diners Club"},{"icon":{"icon":"Visa"},"alt":"Visa"},{"icon":{"icon":"Mastercard"},"alt":"Mastercard"},{"icon":{"icon":"EloCard"},"alt":"Elo Card"},{"icon":{"icon":"PayPal"},"alt":"PayPal"},{"icon":{"icon":"GooglePay"},"alt":"GooglePay"},{"icon":{"icon":"ApplePay"},"alt":"Apple Pay"}]},"copyrightInfo":"This website uses VTEX technology. In-store price may vary. Prices and offers are subject to change. 2023 Brandless Store. All rights reserved. Store is a trademark of Store and its affiliated companies. Mount St, 000, New York / NY - 00000."}}]}},"__N_SSG":true},"page":"/404","query":{},"buildId":"2x1XIwoqXcK0trpOG0glK","isFallback":false,"gsp":true,"locale":"en-US","locales":["en-US"],"defaultLocale":"en-US","scriptLoader":[]}</script></body></html>
|