<!DOCTYPE html>
<html lang="en-US">
  <head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <title>Housewares + Kitchenware Store | Williams Sonoma </title>
    <meta name="apple-itunes-app" content="app-id=1499531240, affiliate-data=ct=[SB_download_v1]&amp;pt=[346764], app-argument=https://www.williams-sonoma.com/?cm_ven=smartbanner&amp;cm_pla=mobileweb&amp;cm_cat=viewapp&amp;cm_ite=banner"><meta name="description" content="Shop premium kitchenware and housewares at Williams Sonoma - in-stores and online. Explore our curated selection of gourmet food, top quality cookware, and more for your culinary adventures."><meta name="robots" content="index,follow"><meta name="google-site-verification" content="aVsvQnG-txdAPBY9PsJ2RuetV2DdMJfxZA0hcTxQnAM"><link rel="stylesheet" href="/.static/dist/css/global/ws/global-ws-d23353424e5cc40755d6a70575a7cef2d84738e8.css"><link rel="preconnect" href="https://fonts.gstatic.com"><link rel="preconnect" href="https://assets.wsimgs.com"><link rel="preconnect" href="https://dpm.demdex.net"><link rel="stylesheet" href="/.static/dist/css/content/ws/content-ws-eb482c8371364be7ca830481a7ee2c7a94c3e2d7.css"><link rel="canonical" href="https://www.williams-sonoma.com/" id="pageCanonicalLink">
    <script type="text/javascript" src="https://www.williams-sonoma.com/assets/70cba84887964e4229a6706cc40426c997881c2ddc3"  ></script><script>
      function governor() {
        let items = {}; // all event handlers and data by name

        // Get and possibly create a handler/data object
        function getItem(type) {
          return (
            items[type] ||
            (items[type] = { callbacks: [], once: [], current: null })
          );
        }

        return {
          // register a handler, sending current state if we have it
          onChange: function (type, handler) {
            var item = getItem(type);
            item.callbacks.push(handler);
            if (item.current !== null) {
              try {
                handler(item.current);
              } catch (e) {
                //ignore error
              }
            }
          },

          once: function (type, handler) {
            var item = getItem(type);
            if (item.current !== null) {
              try {
                handler(item.current);
              } catch (e) {
                //ignore error
              }
            } else {
              item.once.push(handler);
            }
          },

          // unregister a handler
          remove: function (type, handler) {
            var e = getItem(type).callbacks,
              i = e.indexOf(handler);
            if (i > -1) e.splice(i, 1);
          },

          // invoke all handlers registered
          change: function (type, state) {
            var item = getItem(type);
            item.current = state;
            item.callbacks.forEach(function (f) {
              try {
                f(state);
              } catch (e) {
                //do nothing
              }
            });
            // invoke all once handlers
            item.once.forEach(function (f) {
              try {
                f(state);
              } catch (e) {
                //do nothing
              }
            });
            item.once = [];
          },
          
          get: function (type) {
           return getItem(type).current;
          },

          has: function (type) {
           return getItem(type).current !== null;
          },
        };
      }

      window.WSI = window.WSI || {};
      WSI.state = governor();
      const LOCAL_STORAGE_KEY = "currentZipCodeInfo";
      const AKAMAI_COOKIE_NAME = "WSGEO";
      const STORE_COOKIE_NAME = "WSIRetailStore";
      const STORE_USER_AGENT_IDENTIFIER = "WSI/1.0";
      const CURRENT_URL = "current-url";
      let locationDetails;

      function getCookieValue(cookieName) {
        const cookieList = decodeURIComponent(document.cookie).split(";");
        let i = 0;

        for (; i < cookieList.length; i++) {
          const c = cookieList[i].trim();
          if (c.indexOf(cookieName) === 0) {
            return c.substr(cookieName.length + 1);
          }
        }
        return null;
      }

      // check if user has it in local-storage
      if (window.localStorage) {
        var lsLocation = JSON.parse(
          window.localStorage.getItem(LOCAL_STORAGE_KEY)
        );
        if (lsLocation && lsLocation.zipCode) {
          locationDetails =
            "US|" +
            lsLocation.state +
            "|" +
            lsLocation.zipCode +
            "|" +
            lsLocation.latlng.lat +
            "|" +
            lsLocation.latlng.lng;
        }
      }
      //check in cookie
      if (!locationDetails) {
        locationDetails = getCookieValue(AKAMAI_COOKIE_NAME);
      }
      if (locationDetails) {
        WSI.state.change(LOCAL_STORAGE_KEY, locationDetails);
      }
      // check user's country
      if (locationDetails) {
        const country = locationDetails.split("|")[0];
        const isInternationalRequest = country.toLowerCase() !== "us";
        WSI.state.change("isInternationalRequest", isInternationalRequest);
      }

      WSI.state.change(CURRENT_URL, window.location.href);

      //check if the request is coming from a store.
      const ua = window.navigator.userAgent;
      const isStoreBrowser = ua.indexOf(STORE_USER_AGENT_IDENTIFIER) >= 0;
      const hasStoreCookie = getCookieValue(STORE_COOKIE_NAME);
      const isRetailRequest = !!(isStoreBrowser || hasStoreCookie);
      WSI.state.change("isRetailRequest", isRetailRequest);
      // this is required for loading third party scripts in vue components
      WSI.appGlobal = {
        assetUris: {
          scripts: "https://www.williams-sonoma.com/.static/",
        },
        isBrowseMode: "1",
        staticPrefix: "202615/85348392/",
      };
      WSI.brand = {     // Used by Adobe Target and Analytics
        concept: "ws",
        subBrand: "-WS",
      };
      WSI.experiments = {     // Used by Adobe Target and Analytics
        // eslint-disable-next-line
        testKitchen: '{}',  // Single quotes because value contains double quotes
      };
    </script>
    <script>
      document.addEventListener("DOMContentLoaded", function () {
        // Check if the user is on the home page
        if (window.location.pathname === "/") {
            document.body.classList.add("home-page");
        }

        if (window?.__HEADER__INITIAL__STATE__?.header?.config?.removeRakutenPopup) {
          import('https://www.williams-sonoma.com/.static/202615/85348392/js/thirdParty/removeRakutenPopUp.js')
          .then(({ observeDOMForRakuten }) => {
            observeDOMForRakuten();
          });
        }
      });
    </script>
    <script src="https://www.williams-sonoma.com/.static/202615/85348392/dist/external/external.bbeb5f70.js"></script>
    <script
      src="https://www.williams-sonoma.com/.static/202615/85348392/dist/external/common.bbeb5f70.js"
      defer
    ></script>
    <script src="https://www.williams-sonoma.com/.static/202615/85348392/null.js"></script>
    <script src="https://www.williams-sonoma.com/.static/null.js"></script>
    <script src="https://www.williams-sonoma.com/.static/202615/85348392/null.js"></script>
    <link
      rel="shortcut icon"
      type="image/x-icon"
      href="https://www.williams-sonoma.com/.static/202615/85348392/img/favicons/ws.ico"
    />
    <script>
      var regEx = new RegExp("Trident|MSIE");
      if (regEx.test(window.navigator.userAgent)) {
        var ieScript = document.createElement("script");
        ieScript.src =
        "https://www.williams-sonoma.com/.static/202615/85348392/js/IEOverlay/IEOverlay.js";
        document.getElementsByTagName("head")[0].appendChild(ieScript);
      }
      // For Accessibility with keyboard users.
      // Sending focus to breadcrumb or main content when user clicks on Skip To Content Link
      const setFocusToMainContent = (() => {
        const homePageElement = document.querySelector("#homepage");
        const mainContentWrapper = document.querySelector("#app");
        const contentAppElement = document.querySelector("#content-app");
        if (homePageElement) {
          homePageElement.setAttribute("tabindex", "-1");
          homePageElement?.focus();
        } else if (mainContentWrapper) {
          mainContentWrapper.setAttribute("tabindex", "-1");
          mainContentWrapper?.focus();
        } else if (contentAppElement) {
          contentAppElement.setAttribute("tabindex", "-1");
          contentAppElement?.focus();
        }
      })
    </script>
    <!-- For Accessibility with iOS mobile browser 200% zoom users -->
    <!-- This function will only when the browser is zoomed to 200% on mobile view -->
    <script>
      function isMobile() {
        return /Mobi|Android|iPhone/i.test(navigator.userAgent);
      }
      function isSafari() {
        return /^((?!chrome|android).)*safari/i.test(navigator.userAgent);
      }
      function getZoomLevel() {
        return Math.round((window.outerWidth / window.innerWidth) * 100) / 100;
      }
      function isZooming() {
        if (!isMobile()) {
          document?.body?.classList?.remove("zoomLevel2X");
          return;
        }
        var zoomLevel;
        if (window.visualViewport && window.visualViewport.scale) {
          zoomLevel = window.visualViewport.scale;
        } else {
          zoomLevel = isSafari() ? getZoomLevel() : window.devicePixelRatio;
        }
        var zoomLevel2X = 2;
        document?.body?.classList[
          zoomLevel >= zoomLevel2X ? "add" : "remove"
        ]("zoomLevel2X");
      }
      if (window.visualViewport) {
        window.visualViewport.addEventListener("resize", isZooming);
      } else {
        window.addEventListener("resize", isZooming);
      }
      isZooming();
    </script>
    <script type="text/javascript">
      function blockCookiesUntilConsent() {
        const originalCookieDescriptor = Object.getOwnPropertyDescriptor(Document.prototype, 'cookie') || Object.getOwnPropertyDescriptor(HTMLDocument.prototype, 'cookie'); 

        Object.defineProperty(document, 'cookie', {
          get: function() {
            return originalCookieDescriptor.get.call(this);
          },
          set: function(value) {
            //essential cookies as determined by OneTrust from configuration
            const essentialCookies = "utag_main,OptanonConsent,SameSite,OptanonAlertBoxClosed,sessionid,_cc,mboxEdgeCluster,fpcid,BIGipServerx,_cid_cc,test,_cfuvid,__cf_bm";
            const cookieName = value.split('=')[0].trim();

            if (window.Optanon && window.OptanonActiveGroups) {
              return originalCookieDescriptor.set.call(this, value);
            } else if (essentialCookies.includes(cookieName)) {
              return originalCookieDescriptor.set.call(this, value);
            } else {
              return;
            }
          },
          configurable: true
        });
      }

      var isInBrowseMode = 
        "[object Object]" &&
        "1" === '1';
      if (isInBrowseMode) {
        blockCookiesUntilConsent();
      }

      function OptanonWrapper() { 
        if (window.Optanon && window.OptanonActiveGroups) {
          const originalCookieDescriptor = Object.getOwnPropertyDescriptor(Document.prototype, 'cookie') || Object.getOwnPropertyDescriptor(HTMLDocument.prototype, 'cookie');
          Object.defineProperty(document, 'cookie', originalCookieDescriptor);
        }

        Optanon.GetDomainData().Groups.forEach(group => {
            if (!OptanonActiveGroups.includes(group.CustomGroupId)) {
                group.Cookies.forEach(cookie => {
                  const name = cookie.Name;
                  const domainName = window.location.hostname;
                  const domainShortName = '.' + domainName.split('.').slice(1).join('.');
                  document.cookie = name+'=; Max-Age=-99999999; Path=/;Domain='+ domainName;
                  document.cookie = name+'=; Max-Age=-99999999; Path=/;';
                  document.cookie = name+'=; Max-Age=-99999999; Path=/;Domain='+ domainShortName;
                  pathArray = window.location.pathname.split('/');

                  pathArray.forEach((segment, idx, arr) => {
                    if (segment) {
                      const currentPath = arr.slice(0, idx + 1).join('/');
                      document.cookie = name+'=; Max-Age=-99999999; Path=' + currentPath + ';Domain='+ domainName;
                      document.cookie = name+'=; Max-Age=-99999999; Path=' + currentPath + ';';
                      document.cookie = name+'=; Max-Age=-99999999; Path=' + currentPath + ';Domain='+ domainShortName;

                      document.cookie = name+'=; Max-Age=-99999999; Path=' + currentPath + '/;Domain='+ domainName;
                      document.cookie = name+'=; Max-Age=-99999999; Path=' + currentPath + '/;';
                      document.cookie = name+'=; Max-Age=-99999999; Path=' + currentPath + '/;Domain='+ domainShortName;
                    }
                  });
            });
        }});
        
        if (Optanon.isAlertBoxClosed()) {
          document.dispatchEvent(new Event("oneTrustClosed"));
        }
      }
    </script>
    <!-- For Accessibility with iOS mobile browser 200% zoom users -->
    <style>
      .zoomLevel2X {
        #app {
          overflow-x: hidden;
          [data-style="registry-landing-page"] [data-style="registry-top-cta-container"] {
            margin-top: 100px;
          }
          [data-style="swatch-group-container"] [data-style="thumb-swatch-container"] [data-style="attribute-image-name"] [data-style="swatch-fabric"] {
            overflow-wrap: break-word;
          }
          [data-style="swatches-family"] [data-style="swatches-product-cell"] {
            overflow-wrap: anywhere;
          }
          .tabsWidget .css-wqc452 {
            min-width: 100%;
          }
          #shop-GR {
            .super-cat-container .supercat-content [data-style=grid].container .grid-item .category-link {
              flex-direction: column;
              align-items: center;
            }
            .super-cat-container .supercat-content [data-style=grid].container .grid-item .category-link .category-name {
              padding: 0 !important;
            }
          }
          .pip-main-container [data-style="product-details-product-price-below-product-tile"] [data-style="product-pricing-price-display"] {
            display: flex;
            flex-wrap: wrap;
          }
          .pip-main-container .price-under-title .product-pricing .product-price>ul {
            display: flex;
            flex-wrap: wrap;
          }
          .pip-main-container .purchasing-container .pip-river-container .add-to-cart-container .atc-container .flex {
            flex-direction: column;
            gap: 1rem;
          }
          .design-platform .space-y-md #accountLoginButton {
            white-space: nowrap;
          }
          .design-platform [data-style="credit-card-resent-confirmation-email"]>div {
            flex-wrap: wrap;
            margin-top: 6rem;
          }
          [data-style="credit-card"] .flex-grow > .flex {
            flex-direction: column;
          }
        }
        .with-mobile-utility-nav.mobileNavigation {
          max-width: 100%;
        } 
        .mobileNavigation .mobile-utility-nav ul#topOfNav li a .mobile-utility-nav-top-link-text {
          font-size: 0.4375rem;
        }
        .drawer-component-container {
          max-width: 100%;
        }
        button[data-test-id="flyout-tray-toggle"] {
          max-width: 100%;
        }
        img[data-style="icon-chevron-down"].icon-chevron-down {
          width: 0.6875rem;
        }
        [data-test-id="swatch-basket-heading"].heading-sub-secondary {
          font-size: 0.625rem !important;
        }
        [data-style="swatch-basket-container"] [data-style="swatches-my-selected-swatches"] .flex {
          display: flex;
          flex-direction: column; 
          gap: 0.625rem;
        }
        [data-style="swatches-my-selected-swatches"] {
            min-height: 8.4rem !important;
        }
        [data-style="swatch-basket-container"] [data-style="swatches-my-selected-swatches"]
          button[data-test-id="flyout-tray-toggle"] {
          display: flex;          
          flex-direction: row;
        }
        [data-test-id="mobile-order-free-swatches-button"] {
          min-width: 90%;
        }
        [data-details] .mobileNavigation #nav-main .nav-menu > li.active .pop-out-menu div > h3 {
          max-width: 100%;
          font-size: 0.625rem;
          width: auto !important;
        }
        [data-details] .mobileNavigation #nav-main .nav-menu > li.active .pop-out-menu div > h3 a {
          max-width: 133px;
          font-size: 0.625rem;
        }
        [data-details] .mobileNavigation #nav-main .nav-menu>li.active .pop-out-menu div>h3.open+ul a {
          padding-right: 1rem;
          max-width: 8.125rem;
        }
        .mobileNavigation #nav-main .nav-menu>li.active .pop-out-menu div>h3.open a.clickable-category-header-link::before {
          font-size: 0.6875rem;
        }
        .mobileNavigation [id=bottomNav] li a {
          font-size: 0.6875rem;
        }
        [data-details] .mobileNavigation.with-mobile-utility-nav {
          overflow-x: auto;
        }

        .sort-filter.sort-inline-facet-inline-filter {
          [data-style="sort-by"] select {
            width: 100%;
          }
        }
        #design-professionals {
          .w-max {
            width: auto;
          }
        } 
        
        .zip-code-container  {
          display: flex;
          flex-direction: column;
        }
        .product-discovery .shop_facets .accordion-item.shipping-label.availability-group .accordion-content .availability-facets-subgroup button.update-zip-code  {
          Width:100%;
        }
        .facets {
          max-width: 100%;
          margin-left: -1.125rem;
        }
          
        [data-test-id="progress-percentage"] {
          font-size: 1.25rem;
        }
        [data-test-id="progress-threshold"] .float-right {
          margin-left: 7.1875rem;
          margin-right: 1.25rem; 
        }
        [data-style="rewards-carousel"] .grid.place-content-center div {
          font-size: 0.75rem;
        }
        
        .wrap-my-store-search .zipcode-search {
          display: flex;
          flex-direction: column;
        }
        .wrap-my-store-search .zipcode-search .wrap-zip-search-button button {
          width: 100%;
          margin-left: 0px;
        }
        
        .product-discovery [data-style="sub-category-template"] .container  {
          display: flex;
          flex-direction: column;
        }
         
        div[data-style="email-display"] {
          display: flex;
          flex-direction: column;
        }
        [data-test-id="account-title-info"] {
          overflow: visible;
          white-space: normal;
          text-overflow: initial;
          width: 100%;
        } 
        [data-style="password-display"] {
          flex-direction: column;
        }
        
        .aside-navigation-container.new-page-container .responsive-content.responsive-content-page.pages.the-key-rewards .desktopContentWrapper .key-rewards-hero .section.imagerollover.cc-mobile-only {
          height: 150%;
        }
        .content-mfe.USA .aside-navigation-container.new-page-container .responsive-content.responsive-content-page.pages.the-key-rewards .desktopContentWrapper .key-rewards-hero .section.text h1 {
          font-size: 1rem !important; 
          margin-top: 1.4375rem !important;   
        }
        .content-mfe.USA .aside-navigation-container.new-page-container .responsive-content.responsive-content-page.pages.the-key-rewards .desktopContentWrapper .key-rewards-hero .section.text a {
          margin-top: 1.25rem !important;
        }
        #favorite-brand  {
          margin-top: 3.9375rem;
        }
  
        [data-style="add-on-items-group-add-on-items-item"] {
          display: flex;
          flex-direction: column;
        }
        [data-style="below-buy-box-product-smart-container-item-content-container"] {
        display: flex;
        flex-direction: column;
        }
        .design-platform[data-style=address-book] .btn-primary {
          white-space: nowrap;
          font-size: 0.625rem;
        }
        .design-platform[data-style=credit-card] .btn-primary {
          white-space: nowrap;
        }
        #favorites-page .favorites-list-container [data-style="grid"] {
          display: flex;
          flex-direction: column;
        }
        .design-platform [data-style=customizable-guided-accordion] [data-style=accordion-item-trigger] {
          pointer-events: auto;
        }
        .design-platform [data-style=accordion-item-heading] {
          margin-top: 5px;
        }
        
        [data-test-id="progress-percentage"] {
          font-size: 1.25rem;
        }
        [data-test-id="progress-threshold"] .float-right {
          margin-left: 7.1875rem;
          margin-right: 1.25rem;
        }
        [data-style="rewards-carousel"] .grid.place-content-center div {
          font-size: 0.75rem;
        }
        .product-discovery .slider-container .slider-input-display-container  {
          display: flex;
          flex-direction:column;
          gap: 0.5rem;
        }
        .product-discovery .side-nav .shop_facets .facet-selections-done .cta {
          width:100%;
        }
        [data-style="ship-to-customer-enhanced-main-content-wrapper-selected"]>div {
          display: flex;
          flex-direction: column;
        }
        [data-style="ship-to-store-ship-to-store-full-component-root"]>div>div:nth-child(2)>div {
          display: flex;
          flex-direction:column;
        }
        
        #favorites-page {
          .favorites-signin, .favorites-flyout {
            min-height: auto;
          }
        } 
        [data-style="barcode"] > div {
          margin-top: 6px;
        }
        .share-cta-container button {
          min-width: 100%;
        }
        #options-bar > div:nth-child(2) .btn-primary {
          min-width: 20%;
        }
        .design-platform .btn-conversion {
          min-height: 2.5rem;   
          padding: 1px;
        }
        #registry-list-page [data-style="dashboard"] > div > div:nth-child(2) > div:nth-child(2) .heading-secondary {
          height: 70px;
        }
        #registry-list-page [data-style="options-bar"] [id="options-bar"] > div:nth-child(2) .btn-secondary {
          font-size: 11px;
        }
        [data-style="grid-view-list"] {
          display: flex;
          flex-direction: column;
        }
        [data-style="evergreen-footer"] {
          .w-80 {
            p.text-sm {
              margin-left: 58px;
              max-width: 215px;
            }
          }
        }
        [id="registry-list-page"] .design-platform [data-style="dashboard"] > div > div:nth-child(2) > div:nth-child(2) > div:nth-child(4) > div > div:nth-child(2) {
          font-size: 11px;
        }

        [data-style="customer-drawer"] [data-test-id="drawer-container"] {
        width: 100%;
        }
        [data-style="credit-card-add-card"] .flex {
            flex-direction: column ;
            gap: 1rem;
        }
        .design-platform .order-2 {
          max-width: 100%;
        }
        [data-style="vue-component-ecom-drawer"] > div > div { 
          max-height: fit-content; 
        }
        #update-name-address-form .w-full {
          flex-direction: column-reverse;
          align-items: end;
          gap: 1rem;
        }
        #PT {
          max-width: 100%;
          [data-style="footer-sections"] .footer-menu{
            min-width: 11rem;
          }
          [data-style="footer-sections"] [data-style="mobile-email-sign-up"]{
            max-width: 100%;
          }
          [data-style="footer-sections"] [data-style="mobile-email-sign-up"] .email-container {
            flex-wrap: wrap;
            justify-content: start;
          }
          [data-style="footer-sections"] .financial-incentive-terms-container p {
            max-width: 75%;
          }
          [data-style="footer-sections"] .social-icons .footer-legal {
            display: flex;
            text-align: center;
          }
          [data-style="footer-sections"] .social-icons .footer-legal .text {
            max-width: 75%;
          }
          header #mobileDDHeader .header-icons .icon-cart .header-icon.cart svg {
            width: 15px;
            margin-left: -30px;
            height: 17px;
          }
        }
        #WE {
          [data-test-id="positioned-header-icon-search-span"] {
              width: 14px;
              height: 20px;
              padding: 0px;
          }
          [id=mobileDDHeader] .header-icons [id=logo-group] {
            width:35vw;
          }
          [id=mobileDDHeader] .header-icons .icon-cart.icon-cart a { 
            justify-content: start; 
          }
          [data-style="footer-sections"] .social-icons{
            min-width: 12.875rem;
          }
          [data-style="footer-sections"] [data-style="mobile-footer-links"] {
            max-width: 100%;
          }
        }
        [data-style="footer"] [data-style="footer-sections"] {
          flex-direction: row;
        }
        [data-style="footer"] [data-style="footer-sections"] [data-style="footer-menu"] {
          max-width: 100%;
          min-width: unset;
        }
        [data-style="footer"] [data-style="footer-sections"] [data-style="mobile-email-sign-up"] {
          max-width: 100%
        }
        [data-style="footer"] [data-style="footer-sections"] [data-style="mobile-footer-links"] {
          max-width: 80%;
          padding-left: 10px;
          padding-right: 10px;
          line-break: anywhere;
        }
        [data-style="footer"] [data-style="footer-sections"] .social-icons{
          margin: 0;
        }
        [data-style="footer"] [data-style="footer-sections"] .social-icons [data-style="financial-incentives"] {
          min-width: auto;
        }
        div[data-test-id="delivery-steps"].items-center {
          align-items: start;
        }
        div[data-test-id="order-header"].text-light {
          display: flex;
          flex-direction: column;
        }
        div[data-test-id="order-header-item"].flex {
          display: flex;
          flex-direction: row;
        }
        div[data-test-id="order-header-item"] {
          display: flex;
          flex-direction: row;
          padding-left: 0px;
          margin-left: 0px;
        }
        .drawer-component-container .drawer-component-header .design-platform [data-style="guest-account-info-flyout-header"] [data-style="guest-account-info-flyout-create-account-wrapper"]>button {
          font-size: 0.5rem;
        }
        [data-style="footer"] [data-style="footer-sections"] .social-icons{
          margin-top: 1.5rem;
          width: 90vw;
          padding: 10px 0;
          min-width: auto;
        }
        [data-style="footer"] [data-style="footer-sections"] [data-style="mobile-email-sign-up"] .email-container{
          flex-direction: column;
          gap: 0.5rem;
        }
        [data-style="footer"] [data-style="footer-sections"] [data-style="mobile-email-sign-up"] .email-container>input{
          padding-top: 5px;
          margin-top: 1rem;
          padding-bottom: 5px;
        }
        :has(header#MG) footer [data-style="footer-sections"] .social-icons{
          margin: 0;
          width: 90vw;
          padding: 10px 0;
          min-width: auto;
        }
        div[data-test-id="page-selector-container"] {
          width:auto;
        }
        #filter-options-bar {
          display: flex;
          flex-direction: column;
        }
        div[data-test-id="sortby-filter"][data-style="sortBy"] {
          width: 100%;
        }
        div[data-test-id="viewby-filter"][data-style="viewBy"] {
          width: 100%;
        }
        [data-style="redesigned-gift-card"] > .flex {
          flex-direction: column;
        }
        .heading-display {
          font-size: 1rem;
        }
      }
    </style>
  </head>

  <body>
    <a href="#app" onclick="setFocusToMainContent()" class="showonfocus">Skip to Content</a>
    <header id="WS" data-component="Global-Header" data-test-id="Global-header"><!--[--><!--[--><div class="gdpr-banner"><p>Welcome! This site is for informational purposes only in your region. Ordering is not available, and other capabilities have been removed.</p></div><!----><div data-style="seo-schema-tags"></div><!----><!----><div class="mobile-header-wrapper" data-test-id="mobile-header-wrapper"><section id="top-promo" data-test-id="top-promo-bar" class=""><!----><!----><!----><!----><div style="display:none;"><div data-style="ecm-content-slot" class="ecm-content-slot mobile-wide-banner-1 m"><div data-component="Global-EcmPromo" class="promo"><div class="promo-content"><div class="responsive-content responsive-content-block mobile-wide-banner-1m promo" location="mobile-wide-banner-1/m" data-style="content" data-component="Global-EcmPromo"><div id="mobile-wide-banner-1/m-container" data-test="ecm-content-container"><div></div></div><div class="ecm-content-script-container"></div><div class="ecm-content-style-container"></div></div></div></div></div><div data-style="ecm-content-slot" class="ecm-content-slot mobile-wide-banner-2 m"><div data-component="Global-EcmPromo" class="promo"><div class="promo-content"><div class="responsive-content responsive-content-block mobile-wide-banner-2m promo" location="mobile-wide-banner-2/m" data-style="content" data-component="Global-EcmPromo"><div id="mobile-wide-banner-2/m-container" data-test="ecm-content-container"><div></div></div><div class="ecm-content-script-container"></div><div class="ecm-content-style-container"></div></div></div></div></div><div data-style="ecm-content-slot" class="ecm-content-slot mobile-wide-banner-3 m"><div data-component="Global-EcmPromo" class="promo"><div class="promo-content"><div class="responsive-content responsive-content-block mobile-wide-banner-3m promo" location="mobile-wide-banner-3/m" data-style="content" data-component="Global-EcmPromo"><div id="mobile-wide-banner-3/m-container" data-test="ecm-content-container"><div></div></div><div class="ecm-content-script-container"></div><div class="ecm-content-style-container"></div></div></div></div></div><div data-style="ecm-content-slot" class="ecm-content-slot mobile-wide-banner-4 m"><div data-component="Global-EcmPromo" class="promo"><div class="promo-content"><div class="responsive-content responsive-content-block mobile-wide-banner-4m promo" location="mobile-wide-banner-4/m" data-style="content" data-component="Global-EcmPromo"><div id="mobile-wide-banner-4/m-container" data-test="ecm-content-container"><div></div></div><div class="ecm-content-script-container"></div><div class="ecm-content-style-container"></div></div></div></div></div></div></section><section id="cross-brand-bar" data-test-id="cross-brand-bar" class=""><div class="separated-lists"><ul data-style="brands-list" class="brands-list" data-component="Global-header-BrandsList"><!----><!--[--><li class="sub-brand selected wsk"><a href="/?cm_ven=CrossBrandReferral&amp;cm_cat=WS&amp;cm_pla=Header&amp;cm_ite=Link" target="_self" referrerpolicy="no-referrer-when-downgrade">Williams Sonoma <!----></a><!----></li><li class="sub-brand wshome"><a href="/pages/williams-sonoma-home/?cm_ven=CrossBrandReferral&amp;cm_cat=WS&amp;cm_pla=Header&amp;cm_ite=Link" target="_self" referrerpolicy="no-referrer-when-downgrade">Williams Sonoma Home <!----></a><!----></li><li class=""><a href="https://www.potterybarn.com/?cm_ven=CrossBrandReferral&amp;cm_cat=WS&amp;cm_pla=Header&amp;cm_ite=Link" target="_blank" referrerpolicy="no-referrer-when-downgrade">Pottery Barn <!----></a><!----></li><li class="pk"><a href="https://www.potterybarnkids.com/?cm_ven=CrossBrandReferral&amp;cm_cat=WS&amp;cm_pla=Header&amp;cm_ite=Link" target="_blank" referrerpolicy="no-referrer-when-downgrade">Pottery Barn Kids <!----></a><!----></li><li class="pt"><a href="https://www.pbteen.com/?cm_ven=CrossBrandReferral&amp;cm_cat=WS&amp;cm_pla=Header&amp;cm_ite=Link" target="_blank" referrerpolicy="no-referrer-when-downgrade">Pottery Barn Teen <!----></a><!----></li><li class=""><a href="https://www.westelm.com/?cm_ven=CrossBrandReferral&amp;cm_cat=WS&amp;cm_pla=Header&amp;cm_ite=Link" target="_blank" referrerpolicy="no-referrer-when-downgrade">West Elm <!----></a><!----></li><li class=""><a href="https://www.rejuvenation.com/?cm_ven=CrossBrandReferral&amp;cm_cat=WS&amp;cm_pla=Header&amp;cm_ite=Link" target="_blank" referrerpolicy="no-referrer-when-downgrade">Rejuvenation <!----></a><!----></li><li class=""><a href="https://www.markandgraham.com/?cm_ven=CrossBrandReferral&amp;cm_cat=WS&amp;cm_pla=Header&amp;cm_ite=Link" target="_blank" referrerpolicy="no-referrer-when-downgrade">Mark &amp; Graham <!----></a><!----></li><li class=""><a href="https://www.greenrow.com/?cm_ven=CrossBrandReferral&amp;cm_cat=WS&amp;cm_pla=Header&amp;cm_ite=Link" target="_blank" referrerpolicy="no-referrer-when-downgrade">GreenRow <!----></a><!----></li><!--]--></ul><div data-style="ccpa-header-button" class="ccpa-opt-out-button-container HOM" data-component="Global-header-CCPAHeaderButton"><a class="ccpa-opt-out-button" href="/customer-service/legal-statement.html#do-not-sell" target="_blank">Do Not Sell My Personal Information</a></div><div class="aside-container"><!----><!----><div data-style="list-aside" data-component="Global-header-ListAside" class="HOM"><ul class="list-aside-nav"><!--[--><!--]--><!----></ul></div></div><!----></div></section><section id="bottom-promo" class=""><!----><!----><div data-style="ecm-content-slot" class="ecm-content-slot global-wide-banner-bottom-3" style=""><div data-component="Global-EcmPromo" class="promo"><div class="promo-content"><div class="responsive-content responsive-content-block global-wide-banner-bottom-3 promo" location="global-wide-banner-bottom-3" data-style="content" data-component="Global-EcmPromo"><div id="global-wide-banner-bottom-3-container" data-test="ecm-content-container"><div></div></div><div class="ecm-content-script-container"></div><div class="ecm-content-style-container"></div></div></div></div></div><!----><!----></section></div><div class="sticky-header"><header class="main-container HOM" role="presentation"><!--[--><div class="my-store-position"><!----><section id="sub-brand-bar" class=""><div class="separated-lists"><!----><div data-style="action-link-list" class="linklist-separated-lists separated-lists top-nav-a11y" data-testid="Global-action-link-list"><ul id="nav-user-links" data-component="Global-header-ActionLinkList" data-test-id="Global-header-ActionLinkList"><li class="hidden" data-test-id="retail-store-session-hidden-placeholder"></li><!--[--><!--]--><li class="top-nav-accessibility undefined cart-button"><a class="view-cart"><!----><!----><span></span><span class="cart-count"></span></a><!----><!----></li><!----></ul><!----></div></div></section></div><div data-style="brand-logo" id="logo-group" data-component="Global-header-BrandLogo"><a href="/" data-params="{&quot;cm_type&quot;: &quot;gnav&quot;}"><img src="https://www.williams-sonoma.com/netstorage/images/logo/WS_horizontal.svg" alt="Williams Sonoma"><!----></a></div><!--[--><!----><section data-style="search-bar" id="header-search-form" class="hide-on-mediumBreakPoint" style=""><div data-component="Global-header-SearchBar" class="global-header-search"><div class="HOM searchbar-bg-shade"></div><div class=""><!----><form id="search-form" method="GET" action="/search/results.html"><input type="search" id="search-field" name="words" aria-label="search" placeholder="Search" value="" autocorrect="off" autocomplete="off" role="combobox" aria-haspopup="listbox" aria-controls="typeAhead" aria-expanded="false" aria-activedescendant="" class=""><!----><button aria-label="search" type="submit" class=""><span><svg viewBox='0 0 21 20' role='img' version='1.1' aria-labelledby='title' class='icon-search' > <title id='title'>search</title> <desc>Click to search for products.</desc> <g stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' transform='translate(-99.000000, -120.000000)' > <g transform='translate(99.000000, 119.000000)'> <g transform='translate(0.000000, 0.681600)'> <g></g> <path d='M8.4307,1.7187 C4.5537,1.7187 1.4007,4.8717 1.4007,8.7487 C1.4007,12.6247 4.5537,15.7787 8.4307,15.7787 C12.3067,15.7787 15.4597,12.6247 15.4597,8.7487 C15.4597,4.8717 12.3067,1.7187 8.4307,1.7187 M8.4307,17.1787 C3.7827,17.1787 -0.0003,13.3977 -0.0003,8.7487 C-0.0003,4.1007 3.7827,0.3187 8.4307,0.3187 C13.0787,0.3187 16.8607,4.1007 16.8607,8.7487 C16.8607,13.3977 13.0787,17.1787 8.4307,17.1787' class='search-btn-fill-color' fill='#fff' ></path> </g> <polygon class='search-btn-fill-color' fill='#fff' points='19.793 20.6816 13.6 15.0496 14.541 14.0146 20.734 19.6466' ></polygon> </g> </g> </svg></span></button></form></div><div class="hide type-ahead-container"><div data-style="visual-type-ahead" class="visual-type-ahead type-ahead-search-results hide top-search-vta"><div class="c-horizontal-line"></div><!----><ul id="typeAhead" class="search-suggestions type-ahead"><!----><!--[--><!--]--><!----></ul><span class="sr-only" role="alert"></span><!----><!----></div><div class="shader mobile-auto-suggest" style="display:none;"></div></div></div></section><!--]--><!--]--></header><header data-details="close" role="presentation"><div class="mobile-header-container"><div id="mobileDDHeader" class="HOD sticky-mobile-header bottom-shadow"><button type="button" id="menu-icon" aria-label="show site navigation" data-test-id="Global-header-mobile-hamburger-icon" aria-expanded="false" class="link"><!----><div><svg width='25px' height='21px' viewBox='0 0 25 21' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'><title>WS/Iconography/Header/hamburger</title><g id='V3-Final' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'><g id='WS/Iconography/Header/hamburger' transform='translate(0.000000, -2.000000)' fill='#050708' fill-rule='nonzero'><g transform='translate(0.000000, 2.000000)' id='Shape'><polygon points='0 11.25 25 11.25 25 9.375 0 9.375'></polygon><polygon points='0 20.625 25 20.625 25 18.75 0 18.75'></polygon><polygon points='0 1.87499995 25 1.87499995 25 0 0 0'></polygon></g></g></g></svg></div></button><div data-style="mobile-header-icon" class="header-icons" data-test-id="Global-header-mobile-header-icon"><div data-style="brand-logo" id="logo-group" data-component="Global-header-BrandLogo"><a href="/" data-params="{&quot;cm_type&quot;: &quot;gnav&quot;}"><img src="https://www.williams-sonoma.com/netstorage/images/logo/WS_horizontal.svg" alt="Williams Sonoma"><!----></a></div><!----><!--[--><div class="icon-container"><a aria-label="favorites" class="header-icon favorites" href="/stores/?cm_type=gnav&amp;cm_sp=HeaderLinks-_-Stores-_-Mobile"><span></span></a><!----></div><!----><div class="icon-search"><span><svg width='23px' height='23px' viewBox='0 0 23 23' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'><title>WS/Iconography/Header/search</title><defs><polygon id='path-1' points='0 0 23 0 23 23 0 23'></polygon></defs><g id='V3-Final' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'><g id='WS/Iconography/Header/search' transform='translate(-1.000000, -1.000000)'><g transform='translate(1.000000, 1.000000)' id='Group-3'><mask id='mask-2' fill='white'><use xlink:href='#path-1'></use></mask><g id='Clip-2'></g><path d='M9.47715554,16.3744894 C5.66643933,16.3675811 2.58253765,13.2694433 2.58896771,9.45422507 C2.59587792,5.63900681 5.69035981,2.55146175 9.50107602,2.55789941 C11.3240925,2.56113336 13.0707474,3.28604325 14.3615332,4.5746696 C15.6711794,5.86145374 16.399834,7.62767321 16.3782136,9.46481778 C16.3791336,11.2978174 15.6541591,13.056668 14.3615332,14.3554265 C13.0725875,15.6615539 11.3107522,16.3896876 9.47715554,16.3744894 M22.6177784,20.8229676 L16.9776056,15.1756708 C20.1272885,11.0067481 19.3052521,5.07022427 15.1412488,1.91635963 C13.501316,0.674709652 11.501656,0.00184221065 9.44587492,0 C4.22431049,0.00460552663 -0.00409408188,4.245835 -0.000416408595,9.47264718 C0.00188603772,11.9785142 0.996425929,14.3807569 2.76470129,16.1534241 C6.09792796,19.5011814 11.3898738,19.8654786 15.149069,17.0054465 L20.8214424,22.6214257 C21.0624872,22.8669003 21.3918538,23.0036844 21.7354807,23.0000726 C22.0781876,22.9976972 22.4057141,22.8618342 22.649979,22.6214257 C23.1293086,22.1129756 23.1150483,21.3143773 22.6177784,20.8229676' id='Fill-1' fill='#010101' mask='url(#mask-2)'></path></g></g></g></svg></span></div><!--]--><!----></div></div></div><div class="HOD"><!--[--><!----><section data-style="search-bar" id="header-search-form" class="hide-on-mediumBreakPoint" style=""><div data-component="Global-header-SearchBar" class="global-header-search"><div class="HOM searchbar-bg-shade"></div><div class=""><!----><form id="search-form" method="GET" action="/search/results.html"><input type="search" id="search-field" name="words" aria-label="search" placeholder="Search" value="" autocorrect="off" autocomplete="off" role="combobox" aria-haspopup="listbox" aria-controls="typeAhead" aria-expanded="false" aria-activedescendant="" class=""><!----><button aria-label="search" type="submit" class=""><span><svg viewBox='0 0 21 20' role='img' version='1.1' aria-labelledby='title' class='icon-search' > <title id='title'>search</title> <desc>Click to search for products.</desc> <g stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' transform='translate(-99.000000, -120.000000)' > <g transform='translate(99.000000, 119.000000)'> <g transform='translate(0.000000, 0.681600)'> <g></g> <path d='M8.4307,1.7187 C4.5537,1.7187 1.4007,4.8717 1.4007,8.7487 C1.4007,12.6247 4.5537,15.7787 8.4307,15.7787 C12.3067,15.7787 15.4597,12.6247 15.4597,8.7487 C15.4597,4.8717 12.3067,1.7187 8.4307,1.7187 M8.4307,17.1787 C3.7827,17.1787 -0.0003,13.3977 -0.0003,8.7487 C-0.0003,4.1007 3.7827,0.3187 8.4307,0.3187 C13.0787,0.3187 16.8607,4.1007 16.8607,8.7487 C16.8607,13.3977 13.0787,17.1787 8.4307,17.1787' class='search-btn-fill-color' fill='#fff' ></path> </g> <polygon class='search-btn-fill-color' fill='#fff' points='19.793 20.6816 13.6 15.0496 14.541 14.0146 20.734 19.6466' ></polygon> </g> </g> </svg></span></button></form></div><div class="hide type-ahead-container"><div data-style="visual-type-ahead" class="visual-type-ahead type-ahead-search-results hide top-search-vta"><div class="c-horizontal-line"></div><!----><ul id="typeAhead" class="search-suggestions type-ahead"><!----><!--[--><!--]--><!----></ul><span class="sr-only" role="alert"></span><!----><!----></div><div class="shader mobile-auto-suggest" style="display:none;"></div></div></div></section><!--]--></div><!----><div data-test-id="Global-header-mobile-navigation" class="mobileNavigation"><div><div data-style="ecm-content-slot" class="ecm-content-slot mobile-global-nav-top m" style="display:none;"><div data-component="Global-EcmPromo" class="promo"><div class="promo-content"><div class="responsive-content responsive-content-block mobile-global-nav-topm promo" location="mobile-global-nav-top/m" data-style="content" data-component="Global-EcmPromo"><div id="mobile-global-nav-top/m-container" data-test="ecm-content-container"><div></div></div><div class="ecm-content-script-container"></div><div class="ecm-content-style-container"></div></div></div></div></div><!----><nav id="nav-secondary-container" class="HOM" aria-label="secondary"><div data-style="secondary-nav"><section id="nav-secondary"><ul><!--[--><!--[--><li><!----><!----><!----><!----></li><!--]--><!--[--><li><a href="/shop/holidays/mothers-day/" class="" data-params="{}">Mother's Day</a><!----><!----><!--[--><!----><!--]--></li><!--]--><!--[--><li><a href="/recipe/" class="" data-params="{&quot;cm_type&quot;: &quot;gnav&quot;}">Recipes & Menus</a><button type="button" aria-label="Recipes &amp; Menus Menu" aria-expanded="false" class="drop-down-icon"><span data-style="svg-icon" class="icon_svg" data-component="Global-SVGIcon"><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><svg viewBox="0 0 25 25" class="icon-dropdown" height="7" width="7"><title>Dropdown</title><path fill="currentColor" fill-rule="evenodd" d="M12.333 20.833-.167 4.167h25z"></path></svg><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></span></button><!----><!--[--><!----><!--]--></li><!--]--><!--[--><li><a href="/pages/williams-sonoma/brands-a-to-z/" class="" data-params="{}">Brands</a><button type="button" aria-label="Brands Menu" aria-expanded="false" class="drop-down-icon"><span data-style="svg-icon" class="icon_svg" data-component="Global-SVGIcon"><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><svg viewBox="0 0 25 25" class="icon-dropdown" height="7" width="7"><title>Dropdown</title><path fill="currentColor" fill-rule="evenodd" d="M12.333 20.833-.167 4.167h25z"></path></svg><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></span></button><!----><!--[--><!----><!--]--></li><!--]--><!--[--><li><a href="/pages/williams-sonoma/collaborations/" class="" data-params="{}">Collaborations</a><button type="button" aria-label="Collaborations Menu" aria-expanded="false" class="drop-down-icon"><span data-style="svg-icon" class="icon_svg" data-component="Global-SVGIcon"><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----><svg viewBox="0 0 25 25" class="icon-dropdown" height="7" width="7"><title>Dropdown</title><path fill="currentColor" fill-rule="evenodd" d="M12.333 20.833-.167 4.167h25z"></path></svg><!----><!----><!----><!----><!----><!----><!----><!----><!----><!----></span></button><!----><!--[--><!----><!--]--></li><!--]--><!--[--><li><a href="/pages/williams-sonoma-home" class="" data-params="{}">Williams Sonoma Home</a><!----><!----><!----></li><!--]--><!--]--></ul><div data-style="ecm-content-slot" class="ecm-content-slot secondary-nav-banner-1"><div data-component="Global-EcmPromo" class="promo"><div class="promo-content"><div class="responsive-content responsive-content-block secondary-nav-banner-1 promo" location="secondary-nav-banner-1" data-style="content" data-component="Global-EcmPromo"><div id="secondary-nav-banner-1-container" data-test="ecm-content-container"><div></div></div><div class="ecm-content-script-container"></div><div class="ecm-content-style-container"></div></div></div></div></div><div data-style="ecm-content-slot" class="ecm-content-slot secondary-nav-banner-b2b"><div data-component="Global-EcmPromo" class="promo"><div class="promo-content"><div class="responsive-content responsive-content-block secondary-nav-banner-b2b promo" location="secondary-nav-banner-b2b" data-style="content" data-component="Global-EcmPromo"><div id="secondary-nav-banner-b2b-container" data-test="ecm-content-container"><div></div></div><div class="ecm-content-script-container"></div><div class="ecm-content-style-container"></div></div></div></div></div><div data-style="ecm-content-slot" class="ecm-content-slot kids-secondary-nav-banner-1"><div data-component="Global-EcmPromo" class="promo"><div class="promo-content"><div class="responsive-content responsive-content-block kids-secondary-nav-banner-1 promo" location="kids-secondary-nav-banner-1" data-style="content" data-component="Global-EcmPromo"><div id="kids-secondary-nav-banner-1-container" data-test="ecm-content-container"><div></div></div><div class="ecm-content-script-container"></div><div class="ecm-content-style-container"></div></div></div></div></div></section></div></nav><div data-style="ecm-content-slot" class="ecm-content-slot mobile-global-nav-middle m" style="display:none;"><div data-component="Global-EcmPromo" class="promo"><div class="promo-content"><div class="responsive-content responsive-content-block mobile-global-nav-middlem promo" location="mobile-global-nav-middle/m" data-style="content" data-component="Global-EcmPromo"><div id="mobile-global-nav-middle/m-container" data-test="ecm-content-container"><div></div></div><div class="ecm-content-script-container"></div><div class="ecm-content-style-container"></div></div></div></div></div><div class="my-store-mobile-container"><!----></div></div><nav id="nav-main" aria-label="primary" class=""><div data-style="ecm-content-slot" class="ecm-content-slot mobile-global-nav-top-b2b" style="display:none;"><div data-component="Global-EcmPromo" class="promo"><div class="promo-content"><div class="responsive-content responsive-content-block mobile-global-nav-top-b2b promo" location="mobile-global-nav-top-b2b" data-style="content" data-component="Global-EcmPromo"><div id="mobile-global-nav-top-b2b-container" data-test="ecm-content-container"><div></div></div><div class="ecm-content-script-container"></div><div class="ecm-content-style-container"></div></div></div></div></div><!----><ul data-style="primary-nav" id role aria-labelledby class="nav-menu WS" data-component="Global-header-PrimaryNav" data-test-id="global-header-primary-nav"><li class="site-link-title HOD WS" data-test-id="site-link-title"><a href="/?cm_sp=tnav-_-williams-sonoma-_-tab" class="">Williams Sonoma</a></li><!--[--><li class="new" data-params="{&quot;cm_type&quot;: &quot;gnav&quot;}"><!--[--><!----><a href="javascript:void(0)" data-params="{&quot;cm_type&quot;: &quot;gnav&quot;}" class="new" data-test-id="static-top-nav-url-link">New</a><!--]--></li><li class="" data-params="{&quot;cm_type&quot;: &quot;gnav&quot;}"><!--[--><!----><a href="javascript:void(0)" data-params="{&quot;cm_type&quot;: &quot;gnav&quot;}" class="" data-test-id="static-top-nav-url-link">Cookware</a><!--]--></li><li class="" data-params="{&quot;cm_type&quot;: &quot;gnav&quot;}"><!--[--><!----><a href="javascript:void(0)" data-params="{&quot;cm_type&quot;: &quot;gnav&quot;}" class="" data-test-id="static-top-nav-url-link">Cooks' Tools</a><!--]--></li><li class="" data-params="{&quot;cm_type&quot;: &quot;gnav&quot;}"><!--[--><!----><a href="javascript:void(0)" data-params="{&quot;cm_type&quot;: &quot;gnav&quot;}" class="" data-test-id="static-top-nav-url-link">Cutlery</a><!--]--></li><li class="" data-params="{&quot;cm_type&quot;: &quot;gnav&quot;}"><!--[--><!----><a href="javascript:void(0)" data-params="{&quot;cm_type&quot;: &quot;gnav&quot;}" class="" data-test-id="static-top-nav-url-link">Electrics</a><!--]--></li><li class="" data-params="{&quot;cm_type&quot;: &quot;gnav&quot;}"><!--[--><!----><a href="javascript:void(0)" data-params="{&quot;cm_type&quot;: &quot;gnav&quot;}" class="" data-test-id="static-top-nav-url-link">Bakeware</a><!--]--></li><li class="" data-params="{&quot;cm_type&quot;: &quot;gnav&quot;}"><!--[--><!----><a href="javascript:void(0)" data-params="{&quot;cm_type&quot;: &quot;gnav&quot;}" class="" data-test-id="static-top-nav-url-link">Food</a><!--]--></li><li class="" data-params="{&quot;cm_type&quot;: &quot;gnav&quot;}"><!--[--><!----><a href="javascript:void(0)" data-params="{&quot;cm_type&quot;: &quot;gnav&quot;}" class="" data-test-id="static-top-nav-url-link">Tabletop & Bar</a><!--]--></li><li class="" data-params="{&quot;cm_type&quot;: &quot;gnav&quot;}"><!--[--><!----><a href="javascript:void(0)" data-params="{&quot;cm_type&quot;: &quot;gnav&quot;}" class="" data-test-id="static-top-nav-url-link">Home Essentials</a><!--]--></li><li class="" data-params="{&quot;cm_type&quot;: &quot;gnav&quot;}"><!--[--><!----><a href="javascript:void(0)" data-params="{&quot;cm_type&quot;: &quot;gnav&quot;}" class="" data-test-id="static-top-nav-url-link">Outdoor & Garden</a><!--]--></li><li class="" data-params="{&quot;cm_type&quot;: &quot;gnav&quot;}"><!--[--><!----><a href="javascript:void(0)" data-params="{&quot;cm_type&quot;: &quot;gnav&quot;}" class="" data-test-id="static-top-nav-url-link">Furniture</a><!--]--></li><li class="holidays" data-params="{&quot;cm_type&quot;: &quot;gnav&quot;}"><!--[--><!----><a href="/shop/holidays/" data-params="{&quot;cm_type&quot;: &quot;gnav&quot;}" class="holidays" data-test-id="static-top-nav-url-link"></a><!--]--></li><li class="gifts" data-params="{&quot;cm_type&quot;: &quot;gnav&quot;}"><!--[--><!----><a href="/shop/gifts/" data-params="{&quot;cm_type&quot;: &quot;gnav&quot;}" class="gifts" data-test-id="static-top-nav-url-link"></a><!--]--></li><li class="sale" data-params="{&quot;cm_type&quot;: &quot;gnav&quot;}"><!--[--><!----><a href="javascript:void(0)" data-params="{&quot;cm_type&quot;: &quot;gnav&quot;}" class="sale" data-test-id="static-top-nav-url-link">Sale</a><!--]--></li><!--]--></ul><!--[--><!--]--></nav><!----><div data-style="ecm-content-slot" class="ecm-content-slot mobile-global-nav-bottom m" style="display:none;"><div data-component="Global-EcmPromo" class="promo"><div class="promo-content"><div class="responsive-content responsive-content-block mobile-global-nav-bottomm promo" location="mobile-global-nav-bottom/m" data-style="content" data-component="Global-EcmPromo"><div id="mobile-global-nav-bottom/m-container" data-test="ecm-content-container"><div></div></div><div class="ecm-content-script-container"></div><div class="ecm-content-style-container"></div></div></div></div></div><div data-style="ecm-content-slot" class="ecm-content-slot mobile-global-nav-bottom-b2b" style="display:none;"><div data-component="Global-EcmPromo" class="promo"><div class="promo-content"><div class="responsive-content responsive-content-block mobile-global-nav-bottom-b2b promo" location="mobile-global-nav-bottom-b2b" data-style="content" data-component="Global-EcmPromo"><div id="mobile-global-nav-bottom-b2b-container" data-test="ecm-content-container"><div></div></div><div class="ecm-content-script-container"></div><div class="ecm-content-style-container"></div></div></div></div></div><!----></div><!----></header></div><div class="sticky-header-spacer"></div><!----><!----><!----><div data-style="ecm-content-slot" class="ecm-content-slot global-ticker-2" style="display:none;"><div data-component="Global-EcmPromo" class="promo"><div class="promo-content"><div class="responsive-content responsive-content-block global-ticker-2 promo" location="global-ticker-2" data-style="content" data-component="Global-EcmPromo"><div id="global-ticker-2-container" data-test="ecm-content-container"><div></div></div><div class="ecm-content-script-container"></div><div class="ecm-content-style-container"></div></div></div></div></div><div data-style="ecm-content-slot" class="ecm-content-slot global-ticker-3" style=""><div data-component="Global-EcmPromo" class="promo"><div class="promo-content"><div class="responsive-content responsive-content-block global-ticker-3 promo" location="global-ticker-3" data-style="content" data-component="Global-EcmPromo"><div id="global-ticker-3-container" data-test="ecm-content-container"><div><div class="cq-ecm-pages desktop-banners">  
</div></div></div><div class="ecm-content-script-container"></div><div class="ecm-content-style-container"></div></div></div></div></div><div data-style="ecm-content-slot" class="ecm-content-slot global-ticker-4" style=""><div data-component="Global-EcmPromo" class="promo"><div class="promo-content"><div class="responsive-content responsive-content-block global-ticker-4 promo" location="global-ticker-4" data-style="content" data-component="Global-EcmPromo"><div id="global-ticker-4-container" data-test="ecm-content-container"><div></div></div><div class="ecm-content-script-container"></div><div class="ecm-content-style-container"></div></div></div></div></div><div data-style="ecm-content-slot" class="ecm-content-slot mobile-global-ticker-1 m" style="display:none;"><div data-component="Global-EcmPromo" class="promo"><div class="promo-content"><div class="responsive-content responsive-content-block mobile-global-ticker-1m promo" location="mobile-global-ticker-1/m" data-style="content" data-component="Global-EcmPromo"><div id="mobile-global-ticker-1/m-container" data-test="ecm-content-container"><div></div></div><div class="ecm-content-script-container"></div><div class="ecm-content-style-container"></div></div></div></div></div><div data-style="ecm-content-slot" class="ecm-content-slot mobile-global-ticker-2 m" style="display:none;"><div data-component="Global-EcmPromo" class="promo"><div class="promo-content"><div class="responsive-content responsive-content-block mobile-global-ticker-2m promo" location="mobile-global-ticker-2/m" data-style="content" data-component="Global-EcmPromo"><div id="mobile-global-ticker-2/m-container" data-test="ecm-content-container"><div></div></div><div class="ecm-content-script-container"></div><div class="ecm-content-style-container"></div></div></div></div></div><div data-style="ecm-content-slot" class="ecm-content-slot mobile-global-ticker-3 m" style="display:none;"><div data-component="Global-EcmPromo" class="promo"><div class="promo-content"><div class="responsive-content responsive-content-block mobile-global-ticker-3m promo" location="mobile-global-ticker-3/m" data-style="content" data-component="Global-EcmPromo"><div id="mobile-global-ticker-3/m-container" data-test="ecm-content-container"><div></div></div><div class="ecm-content-script-container"></div><div class="ecm-content-style-container"></div></div></div></div></div><div data-style="ecm-content-slot" class="ecm-content-slot mobile-global-ticker-4 m" style="display:none;"><div data-component="Global-EcmPromo" class="promo"><div class="promo-content"><div class="responsive-content responsive-content-block mobile-global-ticker-4m promo" location="mobile-global-ticker-4/m" data-style="content" data-component="Global-EcmPromo"><div id="mobile-global-ticker-4/m-container" data-test="ecm-content-container"><div></div></div><div class="ecm-content-script-container"></div><div class="ecm-content-style-container"></div></div></div></div></div><!----><!--[--><!----><!--]--><!----><!----><!--[--><div data-style="recently-viewed-flyout" class="recently-viewed-flyout grid-recommendations-wrapper"><div data-style="drawer" class="drawer-component flyout" data-test-id="drawer-component" isresponsive="false" style="display:none;"><button class="drawer-component-scrim" style=""></button><div class="drawer-component-container" style="" drawer-direction="left" role="dialog" tabindex="0"><div class="design-platform"><button type="button" data-test-id="drawer-component-close-button" class="cursor-pointer mr-1 mt-1 p-2 absolute top-1 right-1" aria-label="Close Overlay" tabindex="0"><svg width="14" height="14" xmlns="http://www.w3.org/2000/svg"><g fill="currentColor" fill-rule="nonzero"><path d="M13.368 12.741l-.715.716L2.565 3.369.632 1.436 1.347.72z"></path><path d="M1.41 13.385l-.707-.707L12.724.658l.707.706z"></path></g></svg></button></div><div class="drawer-component-header"><!--[--><!--]--></div><div class="drawer-component-content"><!--[--><div class="recently-viewed-flyout-content flyout-content"><div data-style="recently-viewed-tab" class="recently-viewed-tab loading-spinner" data-test-id="recently-viewed-tab"><!----><!----></div></div><!--]--></div><div class="drawer-component-footer"><!--[--><!--]--></div></div></div></div><div data-style="recommendations-fly-out" class="grid-recommendations-wrapper"><div data-style="drawer" class="drawer-component flyout" data-test-id="drawer-component" isresponsive="false" style="display:none;"><button class="drawer-component-scrim" style=""></button><div class="drawer-component-container" style="" drawer-direction="right" role="dialog" tabindex="0"><div class="design-platform"><button type="button" data-test-id="drawer-component-close-button" class="cursor-pointer mr-1 mt-1 p-2 absolute top-1 right-1" aria-label="Close Overlay" tabindex="0"><svg width="14" height="14" xmlns="http://www.w3.org/2000/svg"><g fill="currentColor" fill-rule="nonzero"><path d="M13.368 12.741l-.715.716L2.565 3.369.632 1.436 1.347.72z"></path><path d="M1.41 13.385l-.707-.707L12.724.658l.707.706z"></path></g></svg></button></div><div class="drawer-component-header"><!--[--><button class="mobile-back-button"></button><!--]--></div><div class="drawer-component-content"><!--[--><!--]--></div><div class="drawer-component-footer"><!--[--><!--]--></div></div></div></div><!--]--><div class="recommendation-favorite-flyout"><div class="vue-component-ecom-flyout favorite-flyout" data-style="recommendation-flyout" data-test-id="product-flyout-component"><!----></div></div><!----><!--]--><!----><!--]--></header><script>window.__HEADER__INITIAL__STATE__={"header":{"cartQuantity":0,"concept":"WS","ecmPromos":[],"favoritedRecommendationItem":null,"applicationUri":"https:\u002F\u002Fwww.williams-sonoma.com\u002F","activeTargetTests":{},"governorState":{},"myStore":{"storeZipCodeInfo":"","currentZipCodeInfo":"","isFlyoutOpen":false,"selectedStore":null,"storeList":[]},"postalCodeFromLatLng":"","placements":{},"shippingCountry":{"countryCode":""},"activeTests":{},"pznTriggeredCampaign":{"id":"","name":"","products":[],"hasFetched":false,"hasFetchedWithUserToken":false},"currencyData":{"selectedCountry":"US","selectedCurrency":"USD","exchangeRate":1,"factor":1},"market":"US","tabsData":{},"topLevelTabs":"","ssrEcmContentData":{"global-wide-banner-1\u002F":[{"type":"ecmMetadata","data":{"ecmMetadata":[{"contentLocation":"global-wide-banner-1\u002F","inheritable":true,"pagePosition":0,"columnSpan":0}]}},{"type":"CONTENT","data":{"CONTENT":"\u003Cbody class=\"cq-ecm-pages desktop-banners\"\u003E  \n\u003C\u002Fbody\u003E"}}],"global-wide-banner-3\u002F":[{"type":"ecmMetadata","data":{"ecmMetadata":[{"contentLocation":"global-wide-banner-3\u002F","inheritable":true,"pagePosition":0,"columnSpan":0}]}},{"type":"CONTENT","data":{"CONTENT":"\u003Cbody class=\"cq-ecm-pages desktop-banners\"\u003E  \n\u003C\u002Fbody\u003E"}}],"global-ticker-3\u002F":[{"type":"ecmMetadata","data":{"ecmMetadata":[{"contentLocation":"global-ticker-3\u002F","inheritable":true,"pagePosition":0,"columnSpan":0}]}},{"type":"CONTENT","data":{"CONTENT":"\u003Cbody class=\"cq-ecm-pages desktop-banners\"\u003E  \n\u003C\u002Fbody\u003E"}}],"global-wide-banner-bottom-1\u002F":[{"type":"ecmMetadata","data":{"ecmMetadata":[{"contentLocation":"global-wide-banner-bottom-1\u002F","inheritable":true,"pagePosition":0,"columnSpan":0}]}},{"type":"CONTENT","data":{"CONTENT":"\u003Cbody class=\"cq-ecm-pages desktop-banners\"\u003E \n \u003Cdiv id=\"\" class=\" parsys_column wsi-colctrl-lt2a global-split-banner\"\u003E \n  \u003Cdiv class=\"parsys_column wsi-colctrl-lt2a-c0 \"\u003E \n   \u003Cdiv class=\"flipper common-slideshow section\"\u003E \n    \u003Cdiv class=\"arrows\"\u003E \n    \u003C\u002Fdiv\u003E \n    \u003Cdiv id=\"common-slideshow130655820\" class=\"slideshow\n         &amp;nbsp \n        no-infinite-scroll\n        \" data-slideshow=\"{ autoplay:true,\n                autopause:false, delay:6000,\n                duration:850, transition:'fade',\n                repeat:'loop', easing:dojo.fx.easing.cubicInOut\n                 }\"\u003E \n     \u003Cdiv class=\"slide \" style=\"display: none; opacity: 1; \"\u003E \n      \u003Cdiv class=\"s1b\"\u003E \n       \u003Cdiv id=\"text712550239\" class=\"text section  \"\u003E \n        \u003Cp\u003E\u003Cspan class=\"font-roboto-normal\"\u003E\u003Cspan class=\"size-four\"\u003EFree Shipping on Cookware, Electrics, Cutlery &amp; More.&nbsp;\u003Ca "}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","httpUrlQueryParameters":{"cm_re":"sitewidebanner-_-default-_-global_free_shipping_tiptop"},"url":"\u002Fshop\u002Fsale-special-offer\u002Ffree-shipping\u002F"}},{"type":"CONTENT","data":{"CONTENT":" target=\"_self\" rel=\"noopener noreferrer\"\u003E\u003Cspan class=\"font-roboto-normal\"\u003E\u003Cb\u003ESHOP NOW\u003C\u002Fb\u003E →\u003C\u002Fspan\u003E\u003C\u002Fa\u003E\u003C\u002Fspan\u003E\u003C\u002Fspan\u003E\u003C\u002Fp\u003E \n       \u003C\u002Fdiv\u003E \n      \u003C\u002Fdiv\u003E \n     \u003C\u002Fdiv\u003E \n     \u003Cdiv class=\"slide \" style=\"display: none; opacity: 1; \"\u003E \n      \u003Cdiv class=\"s1b\"\u003E \n       \u003Cdiv id=\"text-910819147\" class=\"text section  \"\u003E \n        \u003Cp\u003E\u003Cspan class=\"font-roboto-normal\"\u003E\u003Cspan class=\"size-four\"\u003ESee if you’re pre-approved – Earn 10% in rewards&sup1; today with a Williams Sonoma Visa.&nbsp;\u003Ca "}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","httpUrlQueryParameters":{"userAction":"LearnMore","fromPageLoc":"TippyTop","fromPageType":"Homepage"},"url":"\u002Fccvalueprop\u002F"}},{"type":"CONTENT","data":{"CONTENT":" target=\"_self\" rel=\"noopener noreferrer\"\u003E\u003Cb\u003ELEARN MORE\u003C\u002Fb\u003E →\u003C\u002Fa\u003E\u003C\u002Fspan\u003E\u003C\u002Fspan\u003E\u003C\u002Fp\u003E \n       \u003C\u002Fdiv\u003E \n      \u003C\u002Fdiv\u003E \n     \u003C\u002Fdiv\u003E \n     \u003Cdiv class=\"slide \" style=\"display: none; opacity: 1; \"\u003E \n      \u003Cdiv class=\"s1b\"\u003E \n       \u003Cdiv id=\"text919273232\" class=\"text section  \"\u003E \n        \u003Cp\u003E\u003Cspan class=\"font-roboto-normal\"\u003E\u003Cspan class=\"size-four\"\u003EWilliams Sonoma Reserve - Enjoy free shipping on eligible purchases*.&nbsp;\u003Ca "}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","httpUrlQueryParameters":{"cm_re":"sitewidebanner-_-default-_-global_ws_reserve_tiptop"},"url":"\u002Fcustomer-service\u002Freserve\u002F"}},{"type":"CONTENT","data":{"CONTENT":" target=\"_self\" rel=\"noopener noreferrer\"\u003E\u003Cspan class=\"font-roboto-normal\"\u003E\u003Cb\u003EJOIN NOW\u003C\u002Fb\u003E →\u003C\u002Fspan\u003E\u003C\u002Fa\u003E\u003C\u002Fspan\u003E\u003C\u002Fspan\u003E\u003C\u002Fp\u003E \n       \u003C\u002Fdiv\u003E \n      \u003C\u002Fdiv\u003E \n     \u003C\u002Fdiv\u003E \n     \u003Cul class=\"positioners  hidden\"\u003E \n      \u003Cli class=\"gotoSlide\"\u003E•\u003C\u002Fli\u003E \n      \u003Cli class=\"gotoSlide\"\u003E•\u003C\u002Fli\u003E \n      \u003Cli class=\"gotoSlide\"\u003E•\u003C\u002Fli\u003E \n     \u003C\u002Ful\u003E \n     \u003Cul class=\"controls\"\u003E \n      \u003Cli class=\"rewind\"\u003EGo to First Slide\u003C\u002Fli\u003E \n      \u003Cli class=\"prev\"\u003EPrevious Slide\u003C\u002Fli\u003E \n      \u003Cli class=\"pause\"\u003EPause\u003C\u002Fli\u003E \n      \u003Cli class=\"play\"\u003EPlay\u003C\u002Fli\u003E \n      \u003Cli class=\"next\"\u003ENext Slide\u003C\u002Fli\u003E \n      \u003Cli class=\"fastForward\"\u003EGo to Last Slide\u003C\u002Fli\u003E \n     \u003C\u002Ful\u003E \n    \u003C\u002Fdiv\u003E \n   \u003C\u002Fdiv\u003E \n  \u003C\u002Fdiv\u003E \n  \u003Cdiv class=\"parsys_column wsi-colctrl-lt2a-c1  \"\u003E \n   \u003Cdiv id=\"customjscontent941386955\" class=\"customJSContent-details  \"\u003E \n    \u003Cdl class=\"customjscontent-details\"\u003E \n     \u003Cdd class=\"customjscontent-description\"\u003E \n     \u003C\u002Fdd\u003E \n     \u003Cdd class=\"customjscontent-description\"\u003E \n      \u003Cdiv class=\"dropdown\"\u003E \n       \u003Cbutton id=\"globalBtoBDropdownButton\" class=\"dropbtn\"\u003EEvents &amp; Services\u003C\u002Fbutton\u003E \n       \u003Cdiv id=\"globalDropdownBtoB\" class=\"dropdown-content\"\u003E \n        \u003Ca class=\"events-dropdown\"\u003EEvents\u003C\u002Fa\u003E \n        \u003Ca "}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","httpUrlQueryParameters":{"cm_type":"gnav"},"url":"\u002Fpages\u002Fvirtual-events-and-in-store-classes\u002Fin-store-events\u002F"}},{"type":"CONTENT","data":{"CONTENT":"\u003EIn-Store Events\u003C\u002Fa\u003E \n        \u003Ca "}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","httpUrlQueryParameters":{"cm_type":"gnav"},"url":"\u002Fpages\u002Fvirtual-events-and-in-store-classes\u002Fskills-series\u002F"}},{"type":"CONTENT","data":{"CONTENT":"\u003ESkills Series\u003C\u002Fa\u003E \n        \u003Ca "}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","httpUrlQueryParameters":{"cm_type":"gnav"},"url":"\u002Fpages\u002Fvirtual-events-and-in-store-classes\u002Fbook-tours\u002F"}},{"type":"CONTENT","data":{"CONTENT":"\u003EBook Tours\u003C\u002Fa\u003E \n        \u003Ca "}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","httpUrlQueryParameters":{"cm_type":"gnav"},"url":"\u002Fpages\u002Fvirtual-events-and-in-store-classes\u002Fvirtual-events\u002F"}},{"type":"CONTENT","data":{"CONTENT":"\u003EVirtual Events\u003C\u002Fa\u003E \n        \u003Ca "}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","httpUrlQueryParameters":{"cm_type":"gnav"},"url":"\u002Fpages\u002Fvirtual-events-and-in-store-classes\u002Fprivate-events\u002F"}},{"type":"CONTENT","data":{"CONTENT":"\u003EPrivate Events\u003C\u002Fa\u003E \n        \u003Ca class=\"services-dropdown\"\u003EServices\u003C\u002Fa\u003E \n        \u003Ca "}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","httpUrlQueryParameters":{"cm_type":"gnav"},"url":"\u002Fpages\u002Fwilliams-sonoma\u002Fdesign-services\u002F"}},{"type":"CONTENT","data":{"CONTENT":"\u003EFree Kitchen Design Services\u003C\u002Fa\u003E \n        \u003Ca "}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","httpUrlQueryParameters":{"cm_type":"gnav"},"url":"\u002Fappointments\u002Fregistry-virtual-choice\u002F"}},{"type":"CONTENT","data":{"CONTENT":"\u003EFree Registry Services\u003C\u002Fa\u003E \n        \u003Ca "}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","httpUrlQueryParameters":{"cm_type":"gnav"},"url":"\u002Fpages\u002Fwilliams-sonoma\u002Fb2b\u002Foverview\u002F"}},{"type":"CONTENT","data":{"CONTENT":"\u003EFree Trade Services\u003C\u002Fa\u003E \n        \u003Ca "}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","httpUrlQueryParameters":{"cm_type":"gnav"},"url":"\u002Fpages\u002Fwilliams-sonoma\u002Fcutlery\u002F3-ways-to-sharpen-knives\u002F"}},{"type":"CONTENT","data":{"CONTENT":"\u003EKnife Sharpening: In-Store &amp; Online\u003C\u002Fa\u003E \n       \u003C\u002Fdiv\u003E \n      \u003C\u002Fdiv\u003E \n     \u003C\u002Fdd\u003E \n    \u003C\u002Fdl\u003E \n   \u003C\u002Fdiv\u003E \n  \u003C\u002Fdiv\u003E \n \u003C\u002Fdiv\u003E \n \u003Cdiv style=\"clear:both\"\u003E\u003C\u002Fdiv\u003E  \n\u003C\u002Fbody\u003E"}}],"global-ticker-1\u002F":[{"type":"ecmMetadata","data":{"ecmMetadata":[{"contentLocation":"global-ticker-1\u002F","inheritable":false,"pagePosition":0,"columnSpan":0}]}},{"type":"CONTENT","data":{"CONTENT":"\u003Cbody class=\"cq-ecm-pages desktop-banners\"\u003E  \n\u003C\u002Fbody\u003E"}}],"global-wide-banner-bottom-2\u002F":[{"type":"ecmMetadata","data":{"ecmMetadata":[{"contentLocation":"global-wide-banner-bottom-2\u002F","inheritable":true,"pagePosition":0,"columnSpan":0}]}},{"type":"CONTENT","data":{"CONTENT":"\u003Cbody class=\"cq-ecm-pages desktop-banners\"\u003E \n \u003Cdiv id=\"\" class=\" parsys_column wsi-colctrl-lt2a global-split-banner\"\u003E \n  \u003Cdiv class=\"parsys_column wsi-colctrl-lt2a-c0 \"\u003E \n   \u003Cdiv class=\"flipper common-slideshow section\"\u003E \n    \u003Cdiv class=\"arrows\"\u003E \n    \u003C\u002Fdiv\u003E \n    \u003Cdiv id=\"common-slideshow-811058212\" class=\"slideshow\n         &amp;nbsp \n        no-infinite-scroll\n        \" data-slideshow=\"{ autoplay:true,\n                autopause:false, delay:4000,\n                duration:850, transition:'fade',\n                repeat:'loop', easing:dojo.fx.easing.cubicInOut\n                 }\"\u003E \n     \u003Cdiv class=\"slide \" style=\"display: none; opacity: 1; \"\u003E \n      \u003Cdiv class=\"s1b\"\u003E \n       \u003Cdiv id=\"text-1193442341\" class=\"text section  \"\u003E \n        \u003Cp\u003E\u003Cspan class=\"font-twelve\"\u003E\u003Cspan class=\"size-four\"\u003EUNLIMITED FLAT RATE DELIVERY - Furnish every room for one low rate, starting at $179.&nbsp;\u003Cb\u003E\u003Ca data-overlay=\"{id: 'Overlay_2097968759_1711741956162', classname: '', mask: true, loadingThrobber: false, fixedScroll: true, destroyOnHide: true, preventCache: false}\" data-overlaydata=\"{}\" class=\"overlayTrigger\" "}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fpages\u002Foverlay\u002Fwsh-white-glove-delivery-overlay\u002F"}},{"type":"CONTENT","data":{"CONTENT":"\u003ELEARN MORE →\u003C\u002Fa\u003E\u003C\u002Fb\u003E\u003C\u002Fspan\u003E\u003C\u002Fspan\u003E\u003C\u002Fp\u003E \n       \u003C\u002Fdiv\u003E \n      \u003C\u002Fdiv\u003E \n     \u003C\u002Fdiv\u003E \n     \u003Cdiv class=\"slide \" style=\"display: none; opacity: 1; \"\u003E \n      \u003Cdiv class=\"s1b\"\u003E \n       \u003Cdiv id=\"text-1291173937\" class=\"text section  \"\u003E \n        \u003Cp\u003E\u003Cspan class=\"font-roboto-normal\"\u003E\u003Cspan class=\"size-four\"\u003ESee if you’re pre-approved – Earn 10% in rewards&sup1; today with a Williams Sonoma credit card. &nbsp;\u003Ca "}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","httpUrlQueryParameters":{"userAction":"LearnMore","fromPageLoc":"TippyTop","fromPageType":"Homepage"},"url":"\u002Fccvalueprop\u002F"}},{"type":"CONTENT","data":{"CONTENT":" target=\"_self\" rel=\"noopener noreferrer\"\u003E\u003Cb\u003ELEARN MORE\u003C\u002Fb\u003E →\u003C\u002Fa\u003E\u003C\u002Fspan\u003E\u003C\u002Fspan\u003E\u003C\u002Fp\u003E \n       \u003C\u002Fdiv\u003E \n      \u003C\u002Fdiv\u003E \n     \u003C\u002Fdiv\u003E \n     \u003Cdiv class=\"slide \" style=\"display: none; opacity: 1; \"\u003E \n      \u003Cdiv class=\"s1b\"\u003E \n       \u003Cdiv id=\"text1398240837\" class=\"text section  \"\u003E \n        \u003Cp\u003E\u003Cspan class=\"font-twelve\"\u003E\u003Cspan class=\"size-four\"\u003EConnect one-on-one with our expert designers for help. &nbsp;\u003Ca "}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","httpUrlQueryParameters":{"cm_re":"sitewidebanner-_-default-_-global_design_services_tiptop"},"url":"\u002Fpages\u002Fws-home\u002Fdesign-services\u002F"}},{"type":"CONTENT","data":{"CONTENT":" target=\"_self\" rel=\"noopener noreferrer\"\u003E\u003Cb\u003ELEARN MORE →\u003C\u002Fb\u003E\u003C\u002Fa\u003E\u003C\u002Fspan\u003E\u003C\u002Fspan\u003E\u003C\u002Fp\u003E \n       \u003C\u002Fdiv\u003E \n      \u003C\u002Fdiv\u003E \n     \u003C\u002Fdiv\u003E \n     \u003Cdiv class=\"slide \" style=\"display: none; opacity: 1; \"\u003E \n      \u003Cdiv class=\"s1b\"\u003E \n       \u003Cdiv id=\"text-512007296\" class=\"text section  \"\u003E \n        \u003Cp\u003E\u003Cspan class=\"font-twelve\"\u003E\u003Cspan class=\"size-four\"\u003EWilliams Sonoma Reserve - Enjoy free shipping on eligible purchases*.&nbsp;\u003Ca "}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","httpUrlQueryParameters":{"cm_re":"sitewidebanner-_-default-_-global_ws_reserve_tiptop"},"url":"\u002Fcustomer-service\u002Freserve\u002F"}},{"type":"CONTENT","data":{"CONTENT":" target=\"_self\" rel=\"noopener noreferrer\"\u003E\u003Cb\u003EJOIN NOW →\u003C\u002Fb\u003E\u003C\u002Fa\u003E\u003C\u002Fspan\u003E\u003C\u002Fspan\u003E\u003C\u002Fp\u003E \n       \u003C\u002Fdiv\u003E \n      \u003C\u002Fdiv\u003E \n     \u003C\u002Fdiv\u003E \n     \u003Cul class=\"positioners  hidden\"\u003E \n      \u003Cli class=\"gotoSlide\"\u003E•\u003C\u002Fli\u003E \n      \u003Cli class=\"gotoSlide\"\u003E•\u003C\u002Fli\u003E \n      \u003Cli class=\"gotoSlide\"\u003E•\u003C\u002Fli\u003E \n      \u003Cli class=\"gotoSlide\"\u003E•\u003C\u002Fli\u003E \n     \u003C\u002Ful\u003E \n     \u003Cul class=\"controls\"\u003E \n      \u003Cli class=\"rewind\"\u003EGo to First Slide\u003C\u002Fli\u003E \n      \u003Cli class=\"prev\"\u003EPrevious Slide\u003C\u002Fli\u003E \n      \u003Cli class=\"pause\"\u003EPause\u003C\u002Fli\u003E \n      \u003Cli class=\"play\"\u003EPlay\u003C\u002Fli\u003E \n      \u003Cli class=\"next\"\u003ENext Slide\u003C\u002Fli\u003E \n      \u003Cli class=\"fastForward\"\u003EGo to Last Slide\u003C\u002Fli\u003E \n     \u003C\u002Ful\u003E \n    \u003C\u002Fdiv\u003E \n   \u003C\u002Fdiv\u003E \n  \u003C\u002Fdiv\u003E \n  \u003Cdiv class=\"parsys_column wsi-colctrl-lt2a-c1  \"\u003E\u003C\u002Fdiv\u003E \n \u003C\u002Fdiv\u003E \n \u003Cdiv style=\"clear:both\"\u003E\u003C\u002Fdiv\u003E  \n\u003C\u002Fbody\u003E"}}]},"displaySignInPrompt":false,"config":{"productFinderTool":{"isEnabled":true,"linkText":"Cross Brand Product Finder"},"socialSignIn":{"enabled":false,"mobileDefaultWidth":"","desktopDefaultWidth":"","rewardsSsiMobileDefaultWidth":315,"rewardsSsiDesktopDefaultWidth":300,"registryPopoutSsiBtnDesktopDefaultWidth":257,"devicePayloadFetchTimeoutInMs":3000,"primaryMessage":"Please wait for a few seconds while we verify the security of your connection...","authErrorMessage":"An error has occurred. Please try \u003Ca href='{targetUrl}' class='whitespace-nowrap decoration-solid font-bold'\u003Elogging in again\u003C\u002Fa\u003E.","errorMessageTimeoutInMs":3000,"emailInputLabelSocialSignIn":"Enter Email","lookupAccountButtonSocialSignIn":"Continue with Email","signInButtonText":"Sign In With Email","signupForEmailCheckboxText":"Sign up for emails","socialTerms":"By signing in or creating an account, you agree to our\u003Cbr\u002F\u003E\u003Ca href='\u002Fm\u002Fcustomer-service\u002Fterms.html' target='_blank' class='whitespace-nowrap'\u003ETerms & Conditions\u003C\u002Fa\u003E and \u003Ca href='\u002Fm\u002Fcustomer-service\u002Fprivacy-policy.html' target='_blank' class='whitespace-nowrap text-blue-600'\u003EPrivacy Policy\u003C\u002Fa\u003E.","socialTermsMobile":"By signing in or creating an account, you agree to our \u003Ca href='\u002Fm\u002Fcustomer-service\u002Fterms.html' target='_blank' class='whitespace-nowrap hover:underline'\u003ETerms & Conditions\u003C\u002Fa\u003E and \u003Ca href='\u002Fm\u002Fcustomer-service\u002Fprivacy-policy.html' target='_blank' class='whitespace-nowrap text-blue-600 hover:underline'\u003EPrivacy Policy\u003C\u002Fa\u003E.","signupForEmailText":"By checking the box, you are providing your consent to Williams-Sonoma Canada, Inc. doing business as Pottery Barn, PBTeen, Pottery Barn Kids, Williams Sonoma, Williams Sonoma Home, and West Elm on behalf of itself and its affiliates, including Williams-Sonoma, Inc. to send electronic messages to your email or similar account about updates on future events and promotions relating to WSI Brands, our affiliates and our Select Partners. You may also receive tailored ads on social media and other websites. You can withdraw your consent at any time by \u003Ca href='\u002Fcustomer-service\u002Femail-us\u002F' class='whitespace-nowrap'\u003EContacting Us\u003C\u002Fa\u003E. We will treat the information you provide in accordance with our \u003Ca href='\u002Fm\u002Fcustomer-service\u002Fprivacy-policy.html' class='whitespace-nowrap'\u003EPrivacy Policy\u003C\u002Fa\u003E.","nonceConfig":{"expiryBufferInMs":60000,"expiresInDefault":900,"errorMessages":{"fetchNonceFailure":"","refreshFailure":""}},"globalPrivacyStatementStyles":{"textAlign":"center","marginTop":"0.5rem"},"providers":{"apple":{"isEnabled":false,"clientId":"com.wsgc.shop.ws.social.signIn.service","adgCallbackEndpoint":"","buttonText":"","successMessage":"","errorMessages":{"initFailure":"","sdkLoadFailure":"","sdkNotLoaded":"","missingNonce":"","fetchNonceFailure":""},"hideMyEmailModalContent":{"title":"Note on Hiding Your Email","buttonLabel":"I UNDERSTAND","description1":"You chose to hide your email when you created an account with Apple.","description2":"Your order history, KeyRewards, addresses, payment methods, design boards, care center contacts, and more are associated with an Apple-generated email.","description3":"If you had an existing account, hiding your email created a new account."}},"google":{"gsiClientUrl":"https:\u002F\u002Faccounts.google.com\u002Fgsi\u002Fclient","isEnabled":false,"clientId":"357883124899-mpijao3s3rafp63l4ovkoo17qb6rcjif.apps.googleusercontent.com","buttonText":"","googleClientId":"","adgCallbackEndpoint":"","prompt":"","theme":"","size":"","text":"","shape":"","type":"","logoAlignment":"","successMessage":"","errorMessages":{"gsiInitFailure":"","gsiLoadFailure":"","gsiNotLoaded":"","missingNonce":"","renderFailure":""}}}},"accountProtection":{"kasada":{"isEnabled":false,"script":"","urlRulesForEnablements":{"all":{"exclusionList":[],"inclusionList":[]},"desktop":{"exclusionList":[],"inclusionList":[]},"mobile":{"exclusionList":[],"inclusionList":[]}}},"deviceFingerprint":{"providers":[{"isEnabled":true,"name":"ping","sdkUrl":"https:\u002F\u002Fapps.pingone.com\u002Fsignals\u002Fweb-sdk\u002F5.3.7\u002Fsignals-sdk.js"},{"isEnabled":true,"name":"accertify","sdkUrl":"https:\u002F\u002Fprod.accdab.net\u002Fcdn\u002Fcs\u002FoNRYDvWIZ54YD4kEZFClVdprh0M.js"}],"responseTimeOutInMs":"1000"},"atoChallengeConfig":{"isEnabled":true,"headerMessage":"Enter one-time verification code","subHeaderMessage":"To ensure a secure sign in, enter the one-time verification code we sent to: ","enterOtpHeaderMessage":"Enter One-Time Code","verifyButtonText":"CONTINUE","resendOtpMessage":"Your code will expire in 15 minutes. Didn't receive a code? Wait a few minutes and ","resendOtpButtonText":"Resend Code.","brandLogoUrl":"https:\u002F\u002Fwww.williams-sonoma.com\u002Fnetstorage\u002Fimages\u002Fcustomer-mfe\u002Fimg\u002FWS_Logo.svg","returnToPreviousText":"Return to Previous Page","inputError":"Please enter your valid one-time code","resendOtpSuccessMessage":"We’ve sent you a new code. It may take a few minutes to get it.","requestFailureError":"Something went wrong. Please try again later.","otpRequestLimitExceededError":"You’ve reached the limit for resending the code. Try again in 15 minutes.","codeVerifyCodeExpiredError":"The code you entered has expired. Please resend code and try again.","codeVerifyTooManyFailedError":"Too many failed attempts. Please resend code and trying again.","resendCodeAccountLockedError":"Too many incorrect OTP attempts. Please try again after 15 minutes with a new OTP.","orText":"Or","checkoutAsGuestText":"You can check out as a guest and verify an account after.","guestCheckoutButtonText":"GUEST CHECKOUT"},"isEnabledForCreateAccount":true},"actionLinks":{"hideMyAccount":true,"actionLinkList":[],"cart":{}},"registryBadge":{"enabled":false,"skuSearchLimit":99,"registryDetailsExpiryInHours":24},"analytics":{"conceptName":"williamssonoma","env":"prod","isPageInitTrackingEnabled":true},"asideLinks":{"asideLinkList":[],"i18n":{"link":"\u002Finternational\u002FcountryDetails-mfe.html","shippingCountryEnabled":false}},"bingMaps":{"autoSuggestURL":"https:\u002F\u002Fdev.virtualearth.net\u002FREST\u002Fv1\u002FAutosuggest","key":"AhNl-6fbu4gIAsvdmpNinrQaqjhkaaNDvvuKagqvG5D0fkymrd4gRKXLAwXOEneX","maxAutoSuggestResults":5,"path":"https:\u002F\u002Fwww.bing.com\u002Fmaps\u002Fsdkrelease\u002Fmapcontrol?"},"brandLogo":{"alt_text":"Williams Sonoma","breakpoints":[],"img_brand_statement":"","img_link":"https:\u002F\u002Fwww.williams-sonoma.com\u002Fnetstorage\u002Fimages\u002Flogo\u002FWS_horizontal.svg","link":"\u002F?cm_type=gnav","loadFromNetStorage":false,"netStoragePath":""},"browseMode":[{"key":"actionLinks","override":{"hideMyAccount":true,"actionLinkList":[],"cart":{}}},{"key":"crossBrandBar","override":{"excludedBrands":["Business to Business"]}},{"key":"globalDesignChat","override":{"isMobileEnabled":false,"isDesktopEnabled":false}},{"key":"mobileBottomLinks","override":{"bottomLinks":[{"text":"Recipes","link":"\u002Frecipe","hasIcon":true,"SVGIcon":"ws-recipes"},{"text":"About Us","link":"\u002Fcustomer-service\u002Fabout-us.html","hasIcon":true,"SVGIcon":"ws-about-us"},{"text":"My Design Projects","link":"\u002Fmy-design-projects\u002F","hasIcon":false,"SVGIcon":"my-design-projects","onlyOnSubBrands":["WSH"]}]}},{"key":"mobileHeader","override":{"firstHeaderIcon":"search","icons":{"favorites":false,"close":true,"closeSvg":"mobile-header-close","hamburgerSVG":"\u003Csvg width='25px' height='21px' viewBox='0 0 25 21' version='1.1' xmlns='http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg' xmlns:xlink='http:\u002F\u002Fwww.w3.org\u002F1999\u002Fxlink'\u003E\u003Ctitle\u003EWS\u002FIconography\u002FHeader\u002Fhamburger\u003C\u002Ftitle\u003E\u003Cg id='V3-Final' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'\u003E\u003Cg id='WS\u002FIconography\u002FHeader\u002Fhamburger' transform='translate(0.000000, -2.000000)' fill='#050708' fill-rule='nonzero'\u003E\u003Cg transform='translate(0.000000, 2.000000)' id='Shape'\u003E\u003Cpolygon points='0 11.25 25 11.25 25 9.375 0 9.375'\u003E\u003C\u002Fpolygon\u003E\u003Cpolygon points='0 20.625 25 20.625 25 18.75 0 18.75'\u003E\u003C\u002Fpolygon\u003E\u003Cpolygon points='0 1.87499995 25 1.87499995 25 0 0 0'\u003E\u003C\u002Fpolygon\u003E\u003C\u002Fg\u003E\u003C\u002Fg\u003E\u003C\u002Fg\u003E\u003C\u002Fsvg\u003E","searchSVG":"\u003Csvg width='23px' height='23px' viewBox='0 0 23 23' version='1.1' xmlns='http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg' xmlns:xlink='http:\u002F\u002Fwww.w3.org\u002F1999\u002Fxlink'\u003E\u003Ctitle\u003EWS\u002FIconography\u002FHeader\u002Fsearch\u003C\u002Ftitle\u003E\u003Cdefs\u003E\u003Cpolygon id='path-1' points='0 0 23 0 23 23 0 23'\u003E\u003C\u002Fpolygon\u003E\u003C\u002Fdefs\u003E\u003Cg id='V3-Final' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'\u003E\u003Cg id='WS\u002FIconography\u002FHeader\u002Fsearch' transform='translate(-1.000000, -1.000000)'\u003E\u003Cg transform='translate(1.000000, 1.000000)' id='Group-3'\u003E\u003Cmask id='mask-2' fill='white'\u003E\u003Cuse xlink:href='#path-1'\u003E\u003C\u002Fuse\u003E\u003C\u002Fmask\u003E\u003Cg id='Clip-2'\u003E\u003C\u002Fg\u003E\u003Cpath d='M9.47715554,16.3744894 C5.66643933,16.3675811 2.58253765,13.2694433 2.58896771,9.45422507 C2.59587792,5.63900681 5.69035981,2.55146175 9.50107602,2.55789941 C11.3240925,2.56113336 13.0707474,3.28604325 14.3615332,4.5746696 C15.6711794,5.86145374 16.399834,7.62767321 16.3782136,9.46481778 C16.3791336,11.2978174 15.6541591,13.056668 14.3615332,14.3554265 C13.0725875,15.6615539 11.3107522,16.3896876 9.47715554,16.3744894 M22.6177784,20.8229676 L16.9776056,15.1756708 C20.1272885,11.0067481 19.3052521,5.07022427 15.1412488,1.91635963 C13.501316,0.674709652 11.501656,0.00184221065 9.44587492,0 C4.22431049,0.00460552663 -0.00409408188,4.245835 -0.000416408595,9.47264718 C0.00188603772,11.9785142 0.996425929,14.3807569 2.76470129,16.1534241 C6.09792796,19.5011814 11.3898738,19.8654786 15.149069,17.0054465 L20.8214424,22.6214257 C21.0624872,22.8669003 21.3918538,23.0036844 21.7354807,23.0000726 C22.0781876,22.9976972 22.4057141,22.8618342 22.649979,22.6214257 C23.1293086,22.1129756 23.1150483,21.3143773 22.6177784,20.8229676' id='Fill-1' fill='#010101' mask='url(#mask-2)'\u003E\u003C\u002Fpath\u003E\u003C\u002Fg\u003E\u003C\u002Fg\u003E\u003C\u002Fg\u003E\u003C\u002Fsvg\u003E"},"isCartDisabled":true,"stickySortFilterEnabled":false,"displaySitewideBannerWhenSearchOverlayOpen":false,"displayCrossBrandNavigationWhenSearchOverlayOpen":false}},{"key":"marketingOverlay","override":{"desktopOverlayDisabled":true,"mobileOverlayEnabled":false}},{"key":"mobileTopLinks","override":{"mobileUtilityNav":{"abTestConfig":{"ABTest":"headerMobileUtilityNav","activeVariant":"variantUtilityNav","enabled":false},"isEnabled":false},"topLinks":{"favorites":{"isEnabled":false,"link":"\u002Ffavorites\u002F?cm_type=lnav","mobileUtilityNavText":"Favorites","mobileUtilityNavIcon":"https:\u002F\u002Fassets.wsimgs.com\u002Fwsimgs\u002Frk\u002Fimages\u002Fdp\u002Fecm\u002F202502\u002F0309\u002F001\u002F001.svg","SVGIcon":"https:\u002F\u002Fassets.wsimgs.com\u002Fwsimgs\u002Frk\u002Fimages\u002Fdp\u002Fecm\u002F202502\u002F0309\u002F001\u002F001.svg"},"links":[],"myAccount":{"isEnabled":false,"link":{"signedIn":"\u002Faccount\u002F?cm_type=lnav","signedOut":"\u002Faccount\u002Flogin.html?cm_type=lnav"},"isMobileUtilityNavCustomLoggedInGreeting":true,"mobileUtilityNavText":"Account","mobileUtilityNavIcon":"https:\u002F\u002Fassets.wsimgs.com\u002Fwsimgs\u002Fab\u002Fimages\u002Fdp\u002Fecm\u002F202502\u002F0309\u002F001\u002F002.svg","SVGIcon":"https:\u002F\u002Fassets.wsimgs.com\u002Fwsimgs\u002Fab\u002Fimages\u002Fdp\u002Fecm\u002F202502\u002F0309\u002F001\u002F002.svg","text":"Sign In"},"myStore":{"isEnabled":false,"mobileUtilityNavText":"Stores","mobileUtilityNavIcon":"https:\u002F\u002Fassets.wsimgs.com\u002Fwsimgs\u002Fab\u002Fimages\u002Fdp\u002Fecm\u002F202502\u002F1493\u002F001\u002F001.svg","SVGIcon":"https:\u002F\u002Fassets.wsimgs.com\u002Fwsimgs\u002Fab\u002Fimages\u002Fdp\u002Fecm\u002F202502\u002F1493\u002F001\u002F001.svg"}}}},{"key":"mobileNavItems","override":{"excludedCategories":["Contract Grade","Entertaining & Design Inspiration","Free Design Services","Ideas & Inspiration","Williams Sonoma Wine Shop","Design Resources","Wedding Registry","Baby Registry","Stores"]}},{"key":"secondaryNavBar","override":{"excludedCategories":["Entertaining & Design Inspiration","Williams Sonoma Wine Shop","Design Resources","Wedding Registry"]}},{"key":"myStore","override":{"enabled":false}},{"key":"blockedEcmContent","override":["global-wide-banner-1","global-wide-banner-2","global-wide-banner-3","global-wide-banner-4","global-wide-banner-bottom-1","global-wide-banner-bottom-2","global-wide-banner-bottom-4","global-ticker-3-container","global-ticker-1"]},{"key":"gdprBanner","override":{"isEnabled":true,"message":"Welcome! This site is for informational purposes only in your region. Ordering is not available, and other capabilities have been removed."}},{"key":"internationalVisitorRedirect","override":{"enabled":false}},{"key":"oneTrust","override":{"isEnabled":true,"id":"01982f20-d9fb-7007-961d-587f82e63c39"}}],"ccpa":{"doNotSellMyPersonalInformationLink":"\u002Fcustomer-service\u002Flegal-statement.html#do-not-sell","hideCCPA":false},"clickableCategoryHeaders":{"cchDisplayNewArrow":true,"cchMobileNav":true,"cchNavigationTest":{"ABTest":"headerCCHNavigation","cchRefCatMap":[],"cchVariation":"cchON","isAbTestEnabled":false},"enabled":true},"constructor":{"abTestConfig":{"ABTest":"searchEngineExperiment","control":"treatmentSearchEngineBrDefault","enabled":false,"variant":"treatmentSearchEngineConstructor"},"enabled":true,"key":"key_PysinTjKriGSD1Zl","productCount":"6","suggestionTrackingEnabled":true},"cookies":{"international":"INTERNATIONAL","internationalCountryName":"INTL_COUNTRY_NAME","REG_STS_COOKIENAME":""},"crossBrandBar":{"brandBarOrder":[{"brand_name":"Williams Sonoma","target":"_self","class":"sub-brand selected wsk","link":"\u002F?cm_ven=CrossBrandReferral&cm_cat=WS&cm_pla=Header&cm_ite=Link"},{"brand_name":"Williams Sonoma Home","target":"_self","class":"sub-brand wshome","link":"\u002Fpages\u002Fwilliams-sonoma-home\u002F?cm_ven=CrossBrandReferral&cm_cat=WS&cm_pla=Header&cm_ite=Link"},{"brand_name":"Pottery Barn","link":"https:\u002F\u002Fwww.potterybarn.com\u002F?cm_ven=CrossBrandReferral&cm_cat=WS&cm_pla=Header&cm_ite=Link"},{"brand_name":"Pottery Barn Kids","class":"pk","link":"https:\u002F\u002Fwww.potterybarnkids.com\u002F?cm_ven=CrossBrandReferral&cm_cat=WS&cm_pla=Header&cm_ite=Link"},{"brand_name":"Pottery Barn Teen","class":"pt","link":"https:\u002F\u002Fwww.pbteen.com\u002F?cm_ven=CrossBrandReferral&cm_cat=WS&cm_pla=Header&cm_ite=Link"},{"brand_name":"West Elm","link":"https:\u002F\u002Fwww.westelm.com\u002F?cm_ven=CrossBrandReferral&cm_cat=WS&cm_pla=Header&cm_ite=Link"},{"brand_name":"Rejuvenation","link":"https:\u002F\u002Fwww.rejuvenation.com\u002F?cm_ven=CrossBrandReferral&cm_cat=WS&cm_pla=Header&cm_ite=Link"},{"brand_name":"Mark & Graham","link":"https:\u002F\u002Fwww.markandgraham.com\u002F?cm_ven=CrossBrandReferral&cm_cat=WS&cm_pla=Header&cm_ite=Link"},{"brand_name":"GreenRow","link":"https:\u002F\u002Fwww.greenrow.com\u002F?cm_ven=CrossBrandReferral&cm_cat=WS&cm_pla=Header&cm_ite=Link"}],"mobileBrandBarOrder":[{"brand_name":"Williams Sonoma Home","link":"https:\u002F\u002Fwww.williams-sonoma.com\u002Fm\u002Fpages\u002Fwilliams-sonoma-home\u002F?cm_ven=CrossBrandReferral&cm_cat=WS&cm_pla=Header&cm_ite=Link","target":"_self"},{"brand_name":"Business to Business","link":"\u002Fpages\u002Fwilliams-sonoma\u002Fb2b\u002Foverview\u002F?cm_ven=CrossBrandReferral&cm_cat=WS&cm_pla=Header&cm_ite=Link","target":"_self"},{"brand_name":"Pottery Barn","link":"https:\u002F\u002Fwww.potterybarn.com\u002Fm\u002F?cm_ven=CrossBrandReferral&cm_cat=WS&cm_pla=Header&cm_ite=Link"},{"brand_name":"Pottery Barn Teen","link":"https:\u002F\u002Fwww.pbteen.com\u002Fm\u002F?cm_ven=CrossBrandReferral&cm_cat=WS&cm_pla=Header&cm_ite=Link"},{"brand_name":"Pottery Barn Kids","link":"https:\u002F\u002Fwww.potterybarnkids.com\u002Fm\u002F?cm_ven=CrossBrandReferral&cm_cat=WS&cm_pla=Header&cm_ite=Link"},{"brand_name":"West Elm","link":"https:\u002F\u002Fwww.westelm.com\u002Fm\u002F?cm_ven=CrossBrandReferral&cm_cat=WS&cm_pla=Header&cm_ite=Link"},{"brand_name":"Rejuvenation","link":"https:\u002F\u002Fwww.rejuvenation.com\u002F?cm_ven=CrossBrandReferral&cm_cat=WS&cm_pla=Header&cm_ite=Link"},{"brand_name":"Mark & Graham","link":"https:\u002F\u002Fwww.markandgraham.com\u002Fm\u002F?cm_ven=CrossBrandReferral&cm_cat=WS&cm_pla=Header&cm_ite=Link"},{"brand_name":"GreenRow","link":"https:\u002F\u002Fwww.greenrow.com\u002F?cm_ven=CrossBrandReferral&cm_cat=WS&cm_pla=Header&cm_ite=Link"}]},"ecm":{"ecmContentSlotsToFetchServerSide":["global-ticker-1","global-ticker-2","global-ticker-3","global-ticker-4","global-wide-banner-1","global-wide-banner-2","global-wide-banner-3","global-wide-banner-4","global-wide-banner-bottom-1","global-wide-banner-bottom-2","global-wide-banner-bottom-3","global-wide-banner-bottom-4"]},"emailOverlaySuppressionForPaths":{"paths":["\u002F","\u002Fabout-us\u002F","\u002Faccount\u002F","\u002Fadmin\u002F","\u002Fappointments\u002F","\u002Fcheckout\u002F","\u002Fcheckout\u002Forder-confirmation\u002F","\u002Fcustomer-service\u002F","\u002Ffavorites\u002F","\u002Fpages\u002F","\u002Fproducts\u002F","\u002Frecipe\u002F","\u002Fregistry\u002F","\u002Fsearch\u002F","\u002Fshop\u002F","\u002Fshoppingcart\u002F","\u002Fstores\u002F","\u002Ftrade-signin\u002F"]},"favorites":{"Favorite":"Favorite","Favorites":"Favorites","favorite":"favorite","favorites":"favorites"},"findAStore":{"ecmPromos":["stores"],"hasSpotlight":"","linkText":"come visit us","locateNearestStore":true,"storeLinks":[{"heading":"Design Services","links":[{"link":"\u002Fpages\u002Fwilliams-sonoma\u002Fdesign-services\u002F","text":"Learn More"},{"link":"\u002Fappointments\u002Fvirtual-choice\u002F","text":"Request an Appointment"}]},{"heading":"Stores","links":[{"link":"\u002Fstores\u002F","text":"Locate a Store"}]},{"heading":"Events & Classes","links":[{"link":"\u002Fpages\u002Fvirtual-events-and-in-store-classes\u002Fvirtual-events","text":"Virtual Events"},{"link":"\u002Fpages\u002Fvirtual-events-and-in-store-classes\u002Fin-store-events","text":"In-Store Events"}]}],"text":"See what's happening at your local store"},"globalDesignChat":{"isMobileEnabled":false,"isDesktopEnabled":false},"googleMaps":{"clientId":"gme-williamssonomainc1","path":"https:\u002F\u002Fmaps.googleapis.com\u002Fmaps\u002Fapi\u002Fjs"},"headerV2":{"isEnabled":false},"hideNavMenuClass":false,"internationalShippingMsgBlock":{"enabled":true},"internationalVisitorRedirect":{"enabled":false},"isPrimaryNavSSREnabled":true,"isPrimaryNavSSREnabledNonBot":true,"ecmLoadDelayMs":5000,"isSecondaryNavSSREnabled":true,"isSecondaryNavSSREnabledNonBot":true,"isZipCodeDeliveryCookieCheckOn":false,"joinEmailCampaign":{"catalogSignUpCheckBoxText":"Yes, I want to receive catalogs, too!","desktop":{"isEnabled":true},"ecmEmailOverlay":false,"emailCampaignDescription":"","emailCampaignLogo":"","emailCampaignLogoClassName":"","emailIntroText":true,"emailOptOutConsent":{"desktop":{"enable":null,"legaleseMessage":null},"mobile":{"enable":null,"legaleseMessage":null}},"emailSignUpIntroText":"Enter your zip code to hear about events and sales near you","enableCRE":false,"enableCampaignFormBottom":false,"enableCampaignFormBottomButtonText":"","enableEmailCampaignHeader":false,"finalThankYouImgEnabled":false,"finalThankYouImgSrc":"https:\u002F\u002Fassets.wsimgs.com\u002Fwsimgs\u002Fab\u002Fimages\u002Fi\u002F202041\u002F0001\u002Fimages\u002Fcommon\u002Fimg-mugs.png","financialIncentiveTerms":"California residents: can see \u003Ca href='\u002Fabout-us\u002Fprivacy-policy.html#financial-incentives' target='_blank'\u003EFinancial Incentive Terms\u003C\u002Fa\u003E for terms and can request \u003Ca href='\u002Fabout-us\u002Fprivacy-policy.html#do-not-sell' target='_blank'\u003EDo Not Sell My Info\u003C\u002Fa\u003E. Please visit our \u003Ca href='\u002Fcustomer-service\u002Flegal-statement.html#privacy' target='_blank'\u003EPrivacy Policy\u003C\u002Fa\u003E to learn how we use your information.","financialIncentiveTerms_default":"","img_link":"https:\u002F\u002Fassets.wsimgs.com\u002Fwsimgs\u002Frk\u002Fimages\u002Fdp\u002Fecm\u002F202344\u002F0304\u002F001\u002F001.jpg","isEmailSignUpSuccessLegalDisclaimerBottom":false,"isPTAgeGateEnabled":false,"isWeDefaultSelected":false,"isWeEmailSignupEnabledOnWeKids":false,"isWeKidsDefaultSelected":false,"isWeKidsEmailSignupEnabledOnWe":false,"mobile":{"isEnabled":true},"mobile_email_placeholder_text":"Enter your email *","mobile_header_confirm_text":"Thanks for Signing Up!","mobile_header_text":"Don't miss out on great deals, free shipping, recipes and more.","more_options_thank_you_img_link":"","showAdditionalThankYouLogo":false,"showCampaignDescription":false,"showCatalogRequestLink":false,"showEmailMePostalCode":true,"showFamilyBrandsSignUpForm":true,"showMobileAgeSelector":false,"showThankYouAfterEmailInput":false,"showVisitOtherBrands":true,"show_actions":true,"show_age_selector":false,"show_catalog":true,"show_email_capture_overlay":false,"show_more_options":true,"show_no_thanks":true,"show_phone_number":true,"show_sticky_minimized":false,"state_list":[{"value":"","label":"State"},{"value":"AL","label":"Alabama"},{"value":"AK","label":"Alaska"},{"value":"AS","label":"American Samoa"},{"value":"AZ","label":"Arizona"},{"value":"AR","label":"Arkansas"},{"value":"AA","label":"Armed Forces Americas"},{"value":"AE","label":"Armed Forces Europe"},{"value":"AP","label":"Armed Forces Pacific"},{"value":"CA","label":"California"},{"value":"CO","label":"Colorado"},{"value":"CT","label":"Connecticut"},{"value":"DE","label":"Delaware"},{"value":"DC","label":"District Of Columbia"},{"value":"FM","label":"Federated States Of Micronesia"},{"value":"FL","label":"Florida"},{"value":"GA","label":"Georgia"},{"value":"GU","label":"Guam"},{"value":"HI","label":"Hawaii"},{"value":"ID","label":"Idaho"},{"value":"IL","label":"Illinois"},{"value":"IN","label":"Indiana"},{"value":"IA","label":"Iowa"},{"value":"KS","label":"Kansas"},{"value":"KY","label":"Kentucky"},{"value":"LA","label":"Louisiana"},{"value":"ME","label":"Maine"},{"value":"MH","label":"Marshall Islands"},{"value":"MD","label":"Maryland"},{"value":"MA","label":"Massachusetts"},{"value":"MI","label":"Michigan"},{"value":"MN","label":"Minnesota"},{"value":"MS","label":"Mississippi"},{"value":"MO","label":"Missouri"},{"value":"MT","label":"Montana"},{"value":"NE","label":"Nebraska"},{"value":"NV","label":"Nevada"},{"value":"NH","label":"New Hampshire"},{"value":"NJ","label":"New Jersey"},{"value":"NM","label":"New Mexico"},{"value":"NY","label":"New York"},{"value":"NC","label":"North Carolina"},{"value":"ND","label":"North Dakota"},{"value":"MP","label":"Northern Mariana Islands"},{"value":"OH","label":"Ohio"},{"value":"OK","label":"Oklahoma"},{"value":"OR","label":"Oregon"},{"value":"PW","label":"Palau"},{"value":"PA","label":"Pennsylvania"},{"value":"PR","label":"Puerto Rico"},{"value":"RI","label":"Rhode Island"},{"value":"SC","label":"South Carolina"},{"value":"SD","label":"South Dakota"},{"value":"TN","label":"Tennessee"},{"value":"TX","label":"Texas"},{"value":"UT","label":"Utah"},{"value":"VT","label":"Vermont"},{"value":"VI","label":"Virgin Islands"},{"value":"VA","label":"Virginia"},{"value":"WA","label":"Washington"},{"value":"WV","label":"West Virginia"},{"value":"WI","label":"Wisconsin"},{"value":"WY","label":"Wyoming"}],"submitNowDynamicButtonId":false,"suppressionDurationInDays":30,"thank_you_final_header":"","thank_you_final_header_text":"","thank_you_header_text":"","thank_you_img_link":"https:\u002F\u002Fassets.wsimgs.com\u002Fwsimgs\u002Fab\u002Fimages\u002Fi\u002F202041\u002F0001\u002Fimages\u002Fcommon\u002Fhdr-youre-on-the-list.png","thank_you_img_link_default":"","thank_you_note":"","weKidsNotificationText":"","weNotificationText":"","we_title":false,"welcome_header_text":"","welcome_subtext":""},"keyRewardsSitewideVisibility":{"availableBalanceThreshold":5,"desktop":{"KeyRewardsBanner":{"impressionStrategy":"view","isEnabled":false,"keyRewardsNotification":{"context":"rewards#","pageArea":"navigation","placement":"banner"},"link":{"href":"\u002Faccount\u002Fkeyrewards.html"},"message":"You have # in Key Rewards to spend!"},"KeyRewardsNavigationCTA":{"impressionStrategy":"hover","isEnabled":false,"keyRewardsNotification":{"context":"rewards#","pageArea":"navigation","placement":"account-menu"},"link":{"href":"\u002Faccount\u002Fkeyrewards.html","text":"View Your Key Rewards!"}},"accountIconNotificationBadge":{"isEnabled":false},"isEnabled":false},"mobile":{"KeyRewardsNavigationCTA":{"impressionStrategy":"click","isEnabled":false,"keyRewardsNotification":{"context":"rewards#","pageArea":"navigation","placement":"mobile-menu"},"link":{"href":"\u002Faccount\u002Fkeyrewards.html","text":"Your Key Rewards"}},"isEnabled":false,"notificationBadge":{"isEnabled":false}}},"latLangSessionAttributesEnabled":false,"longConceptName":"Williams Sonoma","maps":{"provider":"Bing"},"marketingOverlay":{"desktopOverlayDisabled":true,"mobileOverlayEnabled":false},"mobileBottomLinks":{"bottomLinks":[{"text":"Recipes","link":"\u002Frecipe","hasIcon":true,"SVGIcon":"ws-recipes"},{"text":"About Us","link":"\u002Fcustomer-service\u002Fabout-us.html","hasIcon":true,"SVGIcon":"ws-about-us"},{"text":"My Design Projects","link":"\u002Fmy-design-projects\u002F","hasIcon":false,"SVGIcon":"my-design-projects","onlyOnSubBrands":["WSH"]}]},"mobileHeader":{"firstHeaderIcon":"search","icons":{"favorites":false,"close":true,"closeSvg":"mobile-header-close","hamburgerSVG":"\u003Csvg width='25px' height='21px' viewBox='0 0 25 21' version='1.1' xmlns='http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg' xmlns:xlink='http:\u002F\u002Fwww.w3.org\u002F1999\u002Fxlink'\u003E\u003Ctitle\u003EWS\u002FIconography\u002FHeader\u002Fhamburger\u003C\u002Ftitle\u003E\u003Cg id='V3-Final' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'\u003E\u003Cg id='WS\u002FIconography\u002FHeader\u002Fhamburger' transform='translate(0.000000, -2.000000)' fill='#050708' fill-rule='nonzero'\u003E\u003Cg transform='translate(0.000000, 2.000000)' id='Shape'\u003E\u003Cpolygon points='0 11.25 25 11.25 25 9.375 0 9.375'\u003E\u003C\u002Fpolygon\u003E\u003Cpolygon points='0 20.625 25 20.625 25 18.75 0 18.75'\u003E\u003C\u002Fpolygon\u003E\u003Cpolygon points='0 1.87499995 25 1.87499995 25 0 0 0'\u003E\u003C\u002Fpolygon\u003E\u003C\u002Fg\u003E\u003C\u002Fg\u003E\u003C\u002Fg\u003E\u003C\u002Fsvg\u003E","searchSVG":"\u003Csvg width='23px' height='23px' viewBox='0 0 23 23' version='1.1' xmlns='http:\u002F\u002Fwww.w3.org\u002F2000\u002Fsvg' xmlns:xlink='http:\u002F\u002Fwww.w3.org\u002F1999\u002Fxlink'\u003E\u003Ctitle\u003EWS\u002FIconography\u002FHeader\u002Fsearch\u003C\u002Ftitle\u003E\u003Cdefs\u003E\u003Cpolygon id='path-1' points='0 0 23 0 23 23 0 23'\u003E\u003C\u002Fpolygon\u003E\u003C\u002Fdefs\u003E\u003Cg id='V3-Final' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'\u003E\u003Cg id='WS\u002FIconography\u002FHeader\u002Fsearch' transform='translate(-1.000000, -1.000000)'\u003E\u003Cg transform='translate(1.000000, 1.000000)' id='Group-3'\u003E\u003Cmask id='mask-2' fill='white'\u003E\u003Cuse xlink:href='#path-1'\u003E\u003C\u002Fuse\u003E\u003C\u002Fmask\u003E\u003Cg id='Clip-2'\u003E\u003C\u002Fg\u003E\u003Cpath d='M9.47715554,16.3744894 C5.66643933,16.3675811 2.58253765,13.2694433 2.58896771,9.45422507 C2.59587792,5.63900681 5.69035981,2.55146175 9.50107602,2.55789941 C11.3240925,2.56113336 13.0707474,3.28604325 14.3615332,4.5746696 C15.6711794,5.86145374 16.399834,7.62767321 16.3782136,9.46481778 C16.3791336,11.2978174 15.6541591,13.056668 14.3615332,14.3554265 C13.0725875,15.6615539 11.3107522,16.3896876 9.47715554,16.3744894 M22.6177784,20.8229676 L16.9776056,15.1756708 C20.1272885,11.0067481 19.3052521,5.07022427 15.1412488,1.91635963 C13.501316,0.674709652 11.501656,0.00184221065 9.44587492,0 C4.22431049,0.00460552663 -0.00409408188,4.245835 -0.000416408595,9.47264718 C0.00188603772,11.9785142 0.996425929,14.3807569 2.76470129,16.1534241 C6.09792796,19.5011814 11.3898738,19.8654786 15.149069,17.0054465 L20.8214424,22.6214257 C21.0624872,22.8669003 21.3918538,23.0036844 21.7354807,23.0000726 C22.0781876,22.9976972 22.4057141,22.8618342 22.649979,22.6214257 C23.1293086,22.1129756 23.1150483,21.3143773 22.6177784,20.8229676' id='Fill-1' fill='#010101' mask='url(#mask-2)'\u003E\u003C\u002Fpath\u003E\u003C\u002Fg\u003E\u003C\u002Fg\u003E\u003C\u002Fg\u003E\u003C\u002Fsvg\u003E"},"isCartDisabled":true,"stickySortFilterEnabled":false,"displaySitewideBannerWhenSearchOverlayOpen":false,"displayCrossBrandNavigationWhenSearchOverlayOpen":false},"mobileSiteLinks":{"enabled":false},"mobileTabbedNav":{"abTestConfig":{"ABTest":"headerMobileTabbedNav","activeVariant":"variantMobileTabbedNav","isEnabled":false},"defaultTab":"williams-sonoma","isEnabled":false,"rememberLastActiveTab":{"daysToRemember":30,"isEnabled":false},"tabs":["williams-sonoma","williams-sonoma-home"]},"mobileTopLinks":{"mobileUtilityNav":{"abTestConfig":{"ABTest":"headerMobileUtilityNav","activeVariant":"variantUtilityNav","enabled":false},"isEnabled":false},"topLinks":{"favorites":{"isEnabled":false,"link":"\u002Ffavorites\u002F?cm_type=lnav","mobileUtilityNavText":"Favorites","mobileUtilityNavIcon":"https:\u002F\u002Fassets.wsimgs.com\u002Fwsimgs\u002Frk\u002Fimages\u002Fdp\u002Fecm\u002F202502\u002F0309\u002F001\u002F001.svg","SVGIcon":"https:\u002F\u002Fassets.wsimgs.com\u002Fwsimgs\u002Frk\u002Fimages\u002Fdp\u002Fecm\u002F202502\u002F0309\u002F001\u002F001.svg"},"links":[],"myAccount":{"isEnabled":false,"link":{"signedIn":"\u002Faccount\u002F?cm_type=lnav","signedOut":"\u002Faccount\u002Flogin.html?cm_type=lnav"},"isMobileUtilityNavCustomLoggedInGreeting":true,"mobileUtilityNavText":"Account","mobileUtilityNavIcon":"https:\u002F\u002Fassets.wsimgs.com\u002Fwsimgs\u002Fab\u002Fimages\u002Fdp\u002Fecm\u002F202502\u002F0309\u002F001\u002F002.svg","SVGIcon":"https:\u002F\u002Fassets.wsimgs.com\u002Fwsimgs\u002Fab\u002Fimages\u002Fdp\u002Fecm\u002F202502\u002F0309\u002F001\u002F002.svg","text":"Sign In"},"myStore":{"isEnabled":false,"mobileUtilityNavText":"Stores","mobileUtilityNavIcon":"https:\u002F\u002Fassets.wsimgs.com\u002Fwsimgs\u002Fab\u002Fimages\u002Fdp\u002Fecm\u002F202502\u002F1493\u002F001\u002F001.svg","SVGIcon":"https:\u002F\u002Fassets.wsimgs.com\u002Fwsimgs\u002Fab\u002Fimages\u002Fdp\u002Fecm\u002F202502\u002F1493\u002F001\u002F001.svg"}}},"mpulse":{"mpulseKey":"G3KQ4-BNXLJ-Y2SGH-WLEVH-9JGSD"},"myAccount":{"SVGIcon":"","disablePersistCookie":true,"displayName":false,"displaySubMenu":true,"enableLogoutAPI":true,"img_link":"","isLogInV2ApiEnabled":true,"link":"\u002Faccount\u002F?cm_type=gnav&cm_sp=HeaderLinks-_-SearchBox-_-MyAccount","enableKeyRewardsFeature":false,"keyRewardsStates":[{"type":"default","text":"Key Rewards","link":"\u002Fpages\u002Fthe-key-rewards\u002F?cm_sp=accountflyout-_-default-_-keyrewards-join"},{"type":"fallback","text":"Key Rewards","link":"\u002Fpages\u002Fthe-key-rewards\u002F?cm_sp=accountflyout-_-default-_-keyrewards-fallback"},{"type":"manage","text":"Manage Key Rewards","link":"\u002Faccount\u002Fkeyrewards.html?cm_sp=accountflyout-_-default-_-keyrewards-earn"},{"type":"redeem","text":"Manage Key Rewards","link":"\u002Faccount\u002Fkeyrewards.html?cm_sp=accountflyout-_-default-_-keyrewards-redeem"}],"link_list":{"signedIn":[{"text":"Update Account","link":"\u002Faccount\u002Fupdateaccount.html?cm_type=gnav"},{"text":"B2B Member Sign-In","link":"\u002Faccount\u002Flogin.html?cm_sp=B2B-_-accountdropdown-_-B2BSignIn"},{"text":"Track Order","link":"\u002Fcustomer-service\u002Forder-shipment-tracking\u002F?cm_type=gnav"},{"text":"View My Rewards","link":"\u002Faccount\u002Fkeyrewards.html?cm_type=gnav"},{"text":"Cross Brand Product Finder","link":"\u002Fproduct-finder\u002Fsearch\u002F?isLandingPage=true"},{"text":"Key Rewards","link":"\u002Faccount\u002Fkeyrewards.html?cm_type=gnav"},{"text":"Williams Sonoma Credit Card","link":"\u002Fccvalueprop\u002F?fromPageType=Account&userAction=learnmore&cm_sp=gnav"},{"text":"Registry","link":"\u002Fregistry\u002F?cm_type=gnav"},{"text":"Gift Center","link":"\u002Faccount\u002Fgiftcenter\u002F?cm_sp=account-_-accountForYou-_-giftCenterLink"},{"text":"Favorites","link":"\u002Ffavorites\u002F?cm_type=gnav"},{"text":"My Design Project","link":"\u002Fpages\u002Fws-home\u002Fdesign-services\u002F?cm_type=gnav"},{"text":"Sign Out","link":"\u002Faccount\u002Fnot-me.html","class":"separator-below"}],"signedOut":[{"text":"Sign In","link":"\u002Faccount\u002F?cm_type=gnav&cm_sp=HeaderLinks-_-SearchBox-_-MyAccount","class":"sign-in","buttonClass":"button cta"},{"text":"Create an Account","link":"\u002Faccount\u002F?cm_type=gnav&cm_sp=HeaderLinks-_-SearchBox-_-CreateAccount","class":"separator-below"},{"text":"B2B Member Sign-In","link":"\u002Faccount\u002Flogin.html?cm_sp=B2B-_-accountdropdown-_-B2BSignIn"},{"text":"Track Order","link":"\u002Fcustomer-service\u002Forder-shipment-tracking","imageUrl":"\u002Fwsimgs\u002Fab\u002Fimages\u002Fi\u002F202003\u002F0008\u002Fimages\u002Fnav\u002Fheader\u002Fcredit-icon.png","class":"separator-below"},{"text":"View My Rewards","link":"\u002Faccount\u002Fkeyrewards.html?cm_type=gnav"},{"text":"Key Rewards","link":"\u002Faccount\u002Fkeyrewards.html?cm_type=gnav"},{"text":"Williams Sonoma Credit Card","link":"\u002Fccvalueprop\u002F?fromPageType=Account&userAction=learnmore&cm_sp=gnav"},{"text":"Registry","link":"\u002Fregistry\u002F?cm_type=gnav"},{"text":"Favorites","link":"\u002Ffavorites\u002F?cm_type=gnav"}]},"loadFromNetStorage":false,"text":{"signedIn":"My Account","signedOut":"Account"},"userNameCookie":"UI_USERNAME_COOKIE","userPersistCookie":"WSMX_PERSIST_COOKIE"},"profile":{"isUiUserNameCookieEnabled":true,"profileSummaryLocalStorageExpiryInHours":60},"myStore":{"enabled":false},"navBar":{"showLeftNavHeaders":false,"showLinksIfHasGlobalOrNavLink":true},"personalization":{"CRE_MODE_COOKIE":"CreMode","CRE_PLACEMENTS":"CrePlacements","CRE_SERVER":"\u002F\u002Fmatch.collectandgather.com","CRE_STATE_COOKIE":"CreState","LOOKUP_URL":"\u002Fpersonalization\u002Flookup\u002Fv2\u002F","P13N_CONTENT_URL":"\u002Fpersonalization\u002F","PROFILE_COOKIE_LIST":["CoreID6","wsiakid","svi_dec"]},"pixlee":{"apiKey":"5h0WYvBaJ3Ib21kYmVjT","isEnabled":false},"postalCodeOptimization":{"enabled":true,"placeHolderMsg":"Enter City, State, or ZIP","regexFormat":"^[0-9]{5}$","enableAccountProfile":true,"ttl":0},"pricing":{"defaultLabels":{"clearance":"Clearance","discount":"Our Price","discountPercentage":"[disc_percentage]","regular":"Sugg. Price","sale":"Sale","special":"Our Price"},"mdmLabels":{"clearance":"Clearance","sale":"Sale","discount":"Our Price","discountPercentage":"[disc_percentage]","regular":"Sugg. Price"},"showDiscountPercentage":false,"showMdmPriceLabels":false,"showPriceTypeBetweenPriceRanges":true,"showSaleLabel":true},"primaryNavBar":{"mobileNavItems":[{"path":"shop\u002Fnew","class":"","text":"New"},{"path":"shop\u002Fcookware","class":""},{"path":"shop\u002Fcooks-tools","class":""},{"path":"shop\u002Fcutlery","class":""},{"path":"shop\u002Felectrics","class":""},{"path":"shop\u002Fbakeware","class":""},{"path":"shop\u002Ffood","class":""},{"path":"shop\u002Ftabletop-glassware-bar","class":""},{"path":"shop\u002Fhomekeeping","class":"","text":"Home Essentials"},{"path":"shop\u002Foutdoor","class":""},{"path":"shop\u002Fgifts","class":""},{"path":"shop\u002Fsale-special-offer","class":""},{"path":"shop\u002Fholidays","class":"","text":"Holidays","tabs":["williams-sonoma"]},{"url":"\u002Frecipe\u002F?cm_type=gnav","class":"recipe-inspiration","id":"inspiration","text":"Recipes & Menus","custom":true,"tabs":["williams-sonoma"],"categories":[{"name":"Recipes & Cooking Ideas","path":"recipe\u002F?cm_type=gnav","class":"no-arrow","displayColumn":"A"},{"name":"This Season","path":"","displayColumn":"B","items":[{"path":"recipe","name":"Cooking & Baking"},{"path":"pages\u002Fwilliams-sonoma\u002Fin-season-now","name":"Seasonal Produce"},{"path":"pages\u002Fwilliams-sonoma\u002Frecipes\u002Fdrinks","name":"Drinks"},{"path":"pages\u002Fwilliams-sonoma\u002Fthe-art-of-entertaining\u002Ffood-entertaining-trends","name":"Food & Entertaining Trends"},{"path":"pages\u002Fwilliams-sonoma\u002Foutdoor\u002Fplan-the-perfect-barbeque","name":"Plan the Perfect Barbecue"},{"path":"pages\u002Fwilliams-sonoma\u002Ffood\u002Famerican-steakhouse","name":"American Steakhouse"},{"path":"shop\u002Ffood\u002Fglobal-cuisines","name":"Global Cuisines"},{"path":"shop\u002Fbakeware\u002Fbakeware-bread-shop","name":"The Bread Shop"}]},{"name":"Recipes by Course","path":"","displayColumn":"C","items":[{"path":"recipe\u002Fappetizers","name":"Appetizers"},{"path":"recipe\u002Fsoups","name":"Soups"},{"path":"recipe\u002Fsalads","name":"Salads"},{"path":"recipe\u002Fmain-courses\u002Fpasta-rice-and-grains","name":"Pasta, Rice & Grains"},{"path":"recipe\u002Fmain-courses\u002Fvegetables","name":"Vegetables"},{"path":"recipe\u002Fmain-courses\u002Fseafood","name":"Seafood"},{"path":"recipe\u002Fmain-courses\u002Fpoultry-and-game","name":"Chicken & Poultry"},{"path":"recipe\u002Fmain-courses\u002Fpork","name":"Pork"},{"path":"recipe\u002Fmain-courses\u002Fbeef-and-veal","name":"Beef"},{"path":"recipe\u002Fdesserts\u002F","name":"Dessert"}]},{"name":"Menus","path":"","displayColumn":"D","items":[{"path":"recipe\u002Fmenu\u002Fmothers-day-dinner","name":"Mother's Day Menu"},{"path":"recipe\u002Fmenu\u002Ffathers-day-david-nayfeld","name":"David Nayfeld Father's Day Menu"},{"path":"recipe\u002Fmenu\u002Fsheet-pan-dinners","name":"Sheet Pan Dinners"},{"path":"recipe\u002Fmenu\u002Falfresco","name":"Alfreso Favorites"},{"path":"recipe\u002Fmenu\u002Fbest-grilling-recipes","name":"Ultimate Summer Grilling Menu"},{"path":"pages\u002Frecipe\u002Fcollections\u002F","name":"Recipe Collections"}]},{"name":"Featured Chefs & Celebrities","path":"","displayColumn":"E","items":[{"path":"pages\u002Fina-garten\u002F","name":"Ina Garten"},{"path":"shop\u002Fcookware\u002Ftucci-greenpan\u002F","name":"Stanley Tucci"},{"path":"shop\u002Ffood\u002Ftrisha-yearwood\u002F","name":"Trisha Yearwood"},{"path":"pages\u002Fwilliams-sonoma\u002Fcollaborations\u002Ftyler-florence\u002F","name":"Tyler Florence"},{"path":"pages\u002Frecipe\u002Fws-chefs\u002F2021-williams-sonoma-chefs-collective","name":"Chefs' Collective"},{"path":"pages\u002Ftest-kitchen","name":"Williams Sonoma Test Kitchen"}]}]},{"url":"\u002Fm\u002Fpages\u002Fwilliams-sonoma\u002Fbrands-a-to-z","class":"no-arrow","text":"Brands","tabs":["williams-sonoma"]},{"url":"\u002Fm\u002Fpages\u002Fwilliams-sonoma\u002Fcollaborations\u002F?cm_type=lnav","class":"collaborations","text":"Collaborations","custom":true,"tabs":["williams-sonoma"],"categories":[{"path":"shop\u002Ftabletop-glassware-bar\u002Fws-aerin","name":"AERIN","displayColumn":"A"},{"path":"shop\u002Ffood\u002Fbridgerton","name":"Bridgerton","displayColumn":"A"},{"path":"shop\u002Ffood\u002Ffood-casamigos","name":"Casamigos","displayColumn":"A"},{"path":"shop\u002Foutdoor\u002Fjeff-leatham\u002F?cm_re=shopbanner-_-default-_-shop_collabs_jeff_leatham","name":"Jeff Leatham","displayColumn":"A"},{"path":"shop\u002Ftabletop-glassware-bar\u002Fmarlo-thomas","name":"Marlo Thomas","displayColumn":"A"},{"path":"shop\u002Ffood\u002Fmorimoto","name":"Masaharu Morimoto","displayColumn":"A"},{"path":"shop\u002Ftabletop-glassware-bar\u002Fws-morris-co","name":"Morris & Co.","displayColumn":"A"},{"path":"shop\u002Fcookware\u002Ftucci-greenpan","name":"Stanley Tucci","displayColumn":"A"},{"path":"shop\u002Ffood\u002Ftrisha-yearwood","name":"Trisha Yearwood","displayColumn":"A"},{"path":"shop\u002Ffood\u002Fwoodford-reserve","name":"Woodford Reserve","displayColumn":"A"},{"path":"pages\u002Fwilliams-sonoma\u002Fcollaborations","name":"All Collaborations","displayColumn":"A"}]},{"url":"\u002Fm\u002Fpages\u002Fwilliams-sonoma\u002Fsustainability","class":"no-arrow","text":"Sustainability","tabs":["williams-sonoma"]},{"url":"\u002Fshop\u002Fnew\u002Fcommercial-grade","class":"commercial-grade","id":"commercial-grade","text":"Commercial Grade","tabs":["williams-sonoma"],"custom":true,"categories":[{"path":"shop\u002Fnew\u002Fcommercial-grade-all","name":"All Commercial Grade","displayColumn":"A"},{"path":"shop\u002Fnew\u002Fcommercial-grade-cookware","name":"Cookware","displayColumn":"A"},{"path":"shop\u002Fnew\u002Fbakeware-commercial-grade","name":"Bakeware","displayColumn":"A"},{"path":"shop\u002Fnew\u002Fcutlery-commercial-grade","name":"Cutlery","displayColumn":"A"},{"path":"shop\u002Fnew\u002Fcommercial-grade-electrics","name":"Electrics","displayColumn":"A"},{"path":"shop\u002Fnew\u002Fcommercial-grade-tabletop","name":"Dinnerware","displayColumn":"A"},{"path":"shop\u002Fnew\u002Fcommercial-grade-drinkware","name":"Drinkware","displayColumn":"A"},{"path":"shop\u002Fnew\u002Fcommercial-grade-serveware","name":"Serveware","displayColumn":"A"},{"path":"shop\u002Fnew\u002Fcommercial-grade-home-essentials","name":"Home Essentials","displayColumn":"A"},{"name":"Business to Business","path":"","displayColumn":"B","items":[{"path":"m\u002Fpages\u002Fwilliams-sonoma\u002Fb2b\u002Foverview","name":"Overview"},{"path":"m\u002Fshop\u002Fgifts\u002Fbusiness-gifts\u002F?cm_type=gnav&originsc=gifts&availability=bopis","name":"Corporate Gifting"}]}]}],"topNavItems":[{"path":"shop\u002Fnew","class":"new","hasSpotlight":true,"text":"New"},{"path":"shop\u002Fcookware","class":"","hasSpotlight":true,"text":"Cookware"},{"path":"shop\u002Fcooks-tools","class":"","hasSpotlight":true,"text":"Cooks' Tools"},{"path":"shop\u002Fcutlery","class":"","hasSpotlight":true,"text":"Cutlery"},{"path":"shop\u002Felectrics","class":"","hasSpotlight":true,"text":"Electrics"},{"path":"shop\u002Fbakeware","class":"","hasSpotlight":true,"text":"Bakeware"},{"path":"shop\u002Ffood","class":"","hasSpotlight":true,"text":"Food"},{"path":"shop\u002Ftabletop-glassware-bar","class":"","hasSpotlight":true,"text":"Tabletop & Bar"},{"path":"shop\u002Fhomekeeping","class":"","hasSpotlight":true,"text":"Home Essentials"},{"path":"shop\u002Foutdoor","class":"","hasSpotlight":true,"text":"Outdoor & Garden"},{"path":"shop\u002Fhome-furniture","class":"","hasSpotlight":true,"text":"Furniture"},{"path":"shop\u002Fholidays","class":"holidays","id":"holidays","type":"supercat","name":"Holidays","url":"\u002Fshop\u002Fholidays\u002F?cm_type=gnav","popOut":true,"hasSpotlight":true},{"path":"shop\u002Fgifts","class":"gifts","id":"gifts","type":"supercat","name":"Gifts","url":"\u002Fshop\u002Fgifts\u002F?cm_type=gnav","popOut":true,"hasSpotlight":true},{"path":"shop\u002Fsale-special-offer","class":"sale","hasSpotlight":true,"text":"Sale"}]},"productCarousel":{"arrowsInside":true,"ratingEnabled":false,"verticalRviArrowsInside":true},"promotionVisibility":{"additionalMessagePip":"price_with_offer","additionalMessageThumbnail":"price_with_offer","backOffInterval":10,"cutOffPercent":1,"eligibilityExcludeNLA":false,"enabled":true,"ineligibleLocations":{"pipEnabled":false,"recommendationEnabled":false,"shopEnabled":false},"ineligiblePipDisplayMessageCount":1,"ineligibleThumbnailDisplayMessageCount":1,"lazyLoadEnabled":false,"locations":{"pipEnabled":true,"recommendationEnabled":true,"shopEnabled":true},"pipDisplayMessageCount":1,"retryMax":5,"thumbnailDisplayMessageCount":1,"visibilitySkuCount":100},"pznTriggeredCampaigns":{"ABTest":{"activeVariant":"skutriggeredenabled","enabled":false,"name":"headershopskutriggeredcarousel"},"api":{"bearerToken":"","hostName":"","loadSpotjsWithNpm":false,"logLevel":1,"mockUserToken":"","timeoutSeconds":60,"useEmptyMockData":false,"useMockData":false},"campaigns":[{"campaignId":"sku_bis","name":"Back in Stock","notificationEnabled":false,"mobileNotificationEnabled":false},{"campaignId":"sku_noc","name":"Now on Clearance","notificationEnabled":false,"mobileNotificationEnabled":false},{"campaignId":"sku_nos","name":"Now on Sale","notificationEnabled":false,"mobileNotificationEnabled":false}],"enabled":false,"img":{"imgSuffix":"t.jpg","imgUrlBase":"https:\u002F\u002Fwww.williams-sonoma.com\u002Fwsimgs\u002Frk\u002Fimages\u002Fdp\u002F"},"mobileABTest":{"activeVariant":"skutriggeredenabledmobile","enabled":false,"name":"headerskutriggeredcarouselmobile"},"mobileEnabled":false},"quickCart":{"savedCartCookie":"WS_SAVEDCART","sessionCartCookie":"SESSIONCART"},"recentlyViewedItems":{"count":"10","enabled":true,"hasSeeMoreIcon":true,"hideOnDesktop":false,"hideOnMobile":false,"imgUrlBase":"https:\u002F\u002Fassets.wsimgs.com\u002Fwsimgs\u002Frk\u002Fimages\u002Fdp\u002F","itemType":"Group","numItemsVisible":4,"showBestSellers":false,"showSeeMoreLink":true,"template":"rvi-similarity","cmSrc":"RVI"},"recommendation":{"isCrossSessionRviEnabled":true,"isRecsEnabled":true,"resetCarouselTimeout":200,"showSeeMoreLink":false,"thirdPartyRecommendation":{"thirdPartyProviderId":"constructor","constructor":{"enabled":true,"key":"key_PysinTjKriGSD1Zl","isMobileEnabled":true,"isDesktopEnabled":true,"options":{"placementsToRequest":["alernative_items_ces","complementary_llm","also-in-the-collection"],"maxNumResults":20},"ABTest":{"name":"productsRecsThirdPartyCombinedProduct","activeVariant":"constructor","enabled":true}},"useCommonThirdPartyService":false},"wsiRecs":{"breakpoints":{"large":{"itemsToShow":4,"itemsToSlide":4},"medium":{"itemsToShow":4,"itemsToSlide":4},"small":{"itemsToShow":3,"itemsToSlide":3},"xSmall":{"itemsToShow":2.5,"itemsToSlide":2}},"disableDiacritic":false,"favorite":{"buttonTextFavorited":"Add to Favorites","buttonTextUnfavorited":"Add to Favorites","isEnabled":true},"flyout":{"durationInSeconds":4,"isEnabled":true,"position":"right-top","style":"large"},"recsHostUrl":"\u002Fsvc\u002Frecommendation\u002Fv2\u002F","variant":"Default"}},"passwordPolicyV2":{"enabled":true,"passwordStrengthMeterConfig":{"passwordMaxLength":64}},"registryPopOut":{"findRegistryButtonText":"","findRegistryHeading":"","getStartedButtonText":"","isManageLinksLinkYourStoreEnabled":true,"isManageLinksTopPicsEnabled":true,"manageLinksLinkYourStore":"","manageLinksManageMyRegistry":"","manageLinksTopPics":"","manageMyRegistryHeading":"","registryHomeText":"","persistentLogin":{"checkboxLabel":"Keep me signed in","enabled":true,"securityText":"Selecting this option will keep you logged-in on this device. To keep your account secure, use this option only on your personal devices"},"signInText":"","loginV2Enabled":false,"loginV3Enabled":true},"rtcGeoLocationConfig":{"isEnabled":true},"retailStoreConfig":{"retailStoreBannerMessage":"Thank you for placing an order with your local store. Store associate, please close all browser windows to initiate a new RTC session.","storeCookieName":"WSIRetailStore","storeSessionEndedCookieName":"WSIRetailStoreEnded"},"removeRakutenPopup":false,"searchBar":{"urlRulesForEnablements":{"mobile":{"inclusionList":["\u002F","\u002Fm\u002F","\u002Fsearch\u002F","\u002Fpages\u002F"],"exclusionList":["\u002Faccount\u002F*","\u002Fabout-us\u002F*","\u002Fcheckout\u002F*","\u002Fshoppingcart\u002F*","\u002Fshop\u002F","\u002Fproducts\u002F","\u002Fm\u002Faccount\u002F*","\u002Fm\u002Fabout-us\u002F*","\u002Fm\u002Fcheckout\u002F*","m\u002Fshoppingcart\u002F*","\u002Fadmin\u002F*","\u002Fregistry\u002F","\u002Fregistry\u002Fmanage-registry.html","\u002Fregistry\u002Fslqpcrbf8h\u002Fmanage.html","\u002Fregistry\u002Fslqpcrbf8h\u002Fregistry-list.html","\u002Fregistry\u002Fslqpcrbf8h\u002Fgift-tracker.html","\u002Fregistry\u002Fslqpcrbf8h\u002Fregistry-checklist.html"]}},"placeholder":"Search","placeholderV2":"What can we help you find?","recentlySearchedMaxSize":10,"searchBarDisplayEnabled":true,"searchDesktopSVG":"","showToggle":false},"searchFlyout":{"drawerDirection":"","enabled":false,"loadFromNetStorage":false,"maxProductsVisible":4,"maxSuggestionsVisible":4,"placeholder":"","searchHeaderImage":"","sitsInlineWith":"","template":"","timeout":10000,"title":""},"secondaryNavBar":{"categories":[{"id":"chat","path":"","url":"","class":"","name":"AI Sous Chef"},{"path":"shop\u002Fholidays\u002Fmothers-day\u002F","url":"\u002Fshop\u002Fholidays\u002Fmothers-day\u002F","type":"supercat","class":"","name":"Mother's Day","popOut":false,"hasSpotlight":false},{"path":"","id":"recipe","type":"","name":"Recipes & Menus","url":"\u002Frecipe\u002F?cm_type=gnav","custom":true,"categories":[{"name":"","path":"","displayColumn":"A","items":[{"path":"recipe\u002Fsearch","name":"Recipe Search"},{"path":"account\u002Frecipe-box","name":"Recipe Box"},{"path":"search\u002Fresults.html?words=our_catalogx_sum1_26&activeTab=recipes","name":"Catalog Recipes"},{"path":"shop\u002Fcooks-tools\u002Fbooks-view-all","name":"Cookbooks"}]},{"name":"Recipes by Course","path":"","displayColumn":"A","items":[{"path":"recipe\u002Fappetizers","name":"Appetizers"},{"path":"recipe\u002Fsoups","name":"Soups"},{"path":"recipe\u002Fsalads","name":"Salads"},{"path":"recipe\u002Fmain-courses\u002Fpasta-rice-and-grains","name":"Pasta, Rice & Grains"},{"path":"recipe\u002Fmain-courses\u002Fvegetables","name":"Vegetables"},{"path":"recipe\u002Fmain-courses\u002Fseafood","name":"Seafood"},{"path":"recipe\u002Fmain-courses\u002Fpoultry-and-game","name":"Chicken & Poultry"},{"path":"recipe\u002Fmain-courses\u002Fpork","name":"Pork"},{"path":"recipe\u002Fmain-courses\u002Fbeef-and-veal","name":"Beef"},{"path":"recipe\u002Fdesserts\u002F","name":"Dessert"}]},{"name":"This Season","path":"","displayColumn":"B","items":[{"path":"recipe","name":"Cooking & Baking"},{"path":"pages\u002Fwilliams-sonoma\u002Fin-season-now","name":"Seasonal Produce"},{"path":"pages\u002Fwilliams-sonoma\u002Frecipes\u002Fdrinks","name":"Drinks"},{"path":"pages\u002Fwilliams-sonoma\u002Fthe-art-of-entertaining\u002Ffood-entertaining-trends","name":"Food & Entertaining Trends"},{"path":"pages\u002Fwilliams-sonoma\u002Foutdoor\u002Fplan-the-perfect-barbeque","name":"Plan the Perfect Barbecue"},{"path":"pages\u002Fwilliams-sonoma\u002Ffood\u002Famerican-steakhouse","name":"American Steakhouse"},{"path":"shop\u002Ffood\u002Fglobal-cuisines","name":"Global Cuisines"},{"path":"shop\u002Fbakeware\u002Fbakeware-bread-shop","name":"The Bread Shop"}]},{"name":"Menus","path":"","displayColumn":"B","items":[{"path":"recipe\u002Fmenu\u002Fmothers-day-dinner","name":"Mother's Day Menu"},{"path":"recipe\u002Fmenu\u002Ffathers-day-david-nayfeld","name":"David Nayfeld Father's Day Menu"},{"path":"recipe\u002Fmenu\u002Fsheet-pan-dinners","name":"Sheet Pan Dinners"},{"path":"recipe\u002Fmenu\u002Falfresco","name":"Alfreso Favorites"},{"path":"recipe\u002Fmenu\u002Fbest-grilling-recipes","name":"Ultimate Summer Grilling Menu"},{"path":"pages\u002Frecipe\u002Fcollections\u002F","name":"Recipe Collections"}]},{"name":"Featured Chefs & Celebrities","path":"","displayColumn":"C","items":[{"path":"pages\u002Fina-garten\u002F","name":"Ina Garten"},{"path":"shop\u002Fcookware\u002Ftucci-greenpan\u002F","name":"Stanley Tucci"},{"path":"shop\u002Ffood\u002Ftrisha-yearwood\u002F","name":"Trisha Yearwood"},{"path":"pages\u002Fwilliams-sonoma\u002Fcollaborations\u002Ftyler-florence\u002F","name":"Tyler Florence"},{"path":"pages\u002Frecipe\u002Fws-chefs\u002F2021-williams-sonoma-chefs-collective","name":"Chefs' Collective"},{"path":"pages\u002Ftest-kitchen","name":"Williams Sonoma Test Kitchen"}]}],"popOut":true,"hasSpotlight":true,"ecmPromos":["recipes"]},{"path":"","id":"brands","type":"","name":"Brands","url":"\u002Fpages\u002Fwilliams-sonoma\u002Fbrands-a-to-z\u002F","class":"brands","custom":true,"popOut":true,"hasSpotlight":true,"ecmPromos":["brands"],"categories":[{"name":"Brands","path":"","displayColumn":"A","items":[{"path":"shop\u002Fbrand-shop\u002Fwilliams-sonoma","name":"Williams Sonoma"},{"path":"shop\u002Fbrand-shop\u002Fall-clad","name":"All-Clad"},{"path":"shop\u002Felectrics\u002Felectrics-breville","name":"Breville"},{"path":"shop\u002Fbrand-shop\u002Fcuisinart","name":"Cuisinart"},{"path":"shop\u002Fbrand-shop\u002Fgreenpan","name":"GreenPan"},{"path":"shop\u002Fhomekeeping\u002Fhold-everything-brand","name":"Hold Everything"},{"path":"shop\u002Felectrics\u002Felectrics-jura","name":"JURA"},{"path":"shop\u002Fbrand-shop\u002Fle-creuset","name":"Le Creuset"},{"path":"shop\u002Ftabletop-glassware-bar\u002Ftabletop-glass-schott-zwiesel","name":"Schott Zwiesel"},{"path":"shop\u002Fcutlery\u002Fzwilling-henckels-knives","name":"Zwilling"},{"path":"pages\u002Fwilliams-sonoma\u002Fbrands-a-to-z","name":"Shop All Brands"}]}]},{"path":"","id":"collaborations","type":"","name":"Collaborations","url":"\u002Fpages\u002Fwilliams-sonoma\u002Fcollaborations\u002F","custom":true,"popOut":true,"hasSpotlight":true,"ecmPromos":["wsk-collaborations"],"categories":[{"name":"Collaborations","path":"","displayColumn":"A","items":[{"path":"shop\u002Ftabletop-glassware-bar\u002Fws-aerin","name":"AERIN"},{"path":"shop\u002Ffood\u002Fbridgerton","name":"Bridgerton"},{"path":"shop\u002Ffood\u002Ffood-casamigos","name":"Casamigos"},{"path":"shop\u002Foutdoor\u002Fjeff-leatham\u002F?cm_re=shopbanner-_-default-_-shop_collabs_jeff_leatham","name":"Jeff Leatham"},{"path":"shop\u002Ftabletop-glassware-bar\u002Fmarlo-thomas","name":"Marlo Thomas"},{"path":"shop\u002Ffood\u002Fmorimoto","name":"Masaharu Morimoto"},{"path":"shop\u002Ftabletop-glassware-bar\u002Fws-morris-co","name":"Morris & Co."},{"path":"shop\u002Fcookware\u002Ftucci-greenpan","name":"Stanley Tucci"},{"path":"shop\u002Ffood\u002Ftrisha-yearwood","name":"Trisha Yearwood"},{"path":"shop\u002Ffood\u002Fwoodford-reserve","name":"Woodford Reserve"},{"path":"pages\u002Fwilliams-sonoma\u002Fcollaborations","name":"All Collaborations"}]}]},{"path":"","id":"WSH","type":"","name":"Williams Sonoma Home","url":"\u002Fpages\u002Fwilliams-sonoma-home","class":"wsh","custom":false,"popOut":false,"hasSpotlight":false,"ecmPromos":[]}],"registryLinkRedirection":{"enabled":true,"redirectUrl":"\u002Fregistry\u002Fmanage-registry.html","linkFilterId":"registry"}},"seoSchemaMarkup":{"addressCountry":"United States","description":"","email":"","enabled":true,"image":"https:\u002F\u002Fassets.wsimgs.com\u002Fwsimgs\u002Frk\u002Fimages\u002Fi\u002F202225\u002F0008\u002Fimages\u002Fcommon\u002Flogo.svg","sameAs":["https:\u002F\u002Fwww.twitter.com\u002FWilliamsSonoma","https:\u002F\u002Fwww.facebook.com\u002FWilliamsSonoma","https:\u002F\u002Fwww.youtube.com\u002Fchannel\u002FUChicngiolLIoVDy2fjUgQzA?sub_confirmation=1","https:\u002F\u002Fwww.instagram.com\u002FWilliamsSonoma","https:\u002F\u002Fpinterest.com\u002FWilliamsSonoma","https:\u002F\u002Fen.wikipedia.org\u002Fwiki\u002FWilliams_Sonoma","https:\u002F\u002Fwww.tiktok.com\u002F@williamssonoma"],"telephone":"+1-877-812-6235"},"shouldShowSubcatImgs":false,"showSimpleHeader":false,"showTopNavArrows":{"enabled":true},"plccPlacement":{"isEnabled":false,"slotName":""},"signInPrompt":{"ABTest":"headerSignInPrompt","activeVariant":"active","desktop":{"content":"\u003Cspan\u003EView your rewards, save your favorites, and checkout faster. \u003Ca href='\u002Faccount\u002Flogin.html'\u003EOr create an account.\u003C\u002Fa\u003E\u003C\u002Fspan\u003E","isEnabled":true,"title":"Sign in for the best experience"},"displayOnPage":2,"exclusionList":["\u002Faccount","\u002Fcheckout"],"isEnabled":true,"mobile":{"content":"\u003Cspan\u003EView your rewards, save your favorites, and checkout faster.\u003C\u002Fspan\u003E","enableCloseIcon":true,"isEnabled":true,"title":""},"overlayDuration":"8","registeredUsersOnly":true,"signInLink":{"isEnabled":true,"linkUrl":"\u002Faccount\u002Flogin.html","text":"Sign In"}},"signedOutButtonLabel":"SIGN OUT","simpleHeaderMenu":{"enableMobileExploreButton":false,"exploreMenuName":"","navMenuName":"","showMobileExploreMenu":false},"smartBanner":{"appStoreId":"","isEnabled":false},"stickyHeaderHeights":{"desktop":0,"mobile":212},"subBrandBarSticky":true,"subBrandMarketingOverlay":{"contactUsUrl":"","doNotSellLink":"","emailTriggerUrl":"","fieldHint":"","financialIncentivesTermsLink":"","flatFileServiceVersion":"","isOverrideMarketingOverlayContent":"","mktgMsgContentTypeOnEmailSignup":"","mktgMsgContentTypeOnSmsOptIn":"","mktgMsgContentTypeOnThankYouView":"","mobileOverlayPosition":"","overlayEmailTitle":"","overlayMobileTitle":"","overlayThankYouTitle":"","privacyPolicyLink":"","signupFormField":"","termsPolicyUrl":"","twoStepsMobileOverlayEnabled":false},"subBrandOverrides":{"GR":{"asideLinks":{"asideLinkList":[]},"brand_name":"","ccpa":{"hideCCPA":true},"crossBrandBar":{"brandBarOrder":[],"mobileBrandBarOrder":[]},"myAccount":{"SVGIcon":"","displaySubMenu":false,"link":"","link_list":{"signedIn":[],"signedOut":[]},"text":{"signedIn":"","signedOut":""}},"primaryNavBar":{"mobileNavItems":[],"topNavItems":[]},"searchBar":{"placeholder":"","showToggle":false}},"MT":{"actionLinks":{"actionLinkList":[],"cart":{"SVGIcon":"","hideCount":false,"link":"","loadingImage":"","text":""}},"asideLinks":{"asideLinkList":[]},"brandLogo":{"link":""},"ccpa":{"hideCCPA":false},"crossBrandBar":{"brandBarOrder":[],"mobileBrandBarOrder":[]},"myAccount":{"SVGIcon":"","link":"","link_list":{"signedIn":[],"signedOut":[]},"text":{"signedIn":"","signedOut":""}},"primaryNavBar":{"mobileNavItems":[],"topNavItems":[]},"searchBar":{"placeholder":"","showToggle":false},"secondaryNavBar":{"categories":[]}},"PBA":{"brand_name":""},"PBB":{"brandLogo":{"img_link":"","link":""},"brand_name":"","crossBrandBar":{"brandBarOrder":[],"mobileBrandBarOrder":[]}},"PBD":{"brandLogo":{"link":""},"brand_name":"","crossBrandBar":{"brandBarOrder":[],"mobileBrandBarOrder":[]}},"WEK":{"asideLinks":{"asideLinkList":[],"i18n":{"link":""}},"brandLogo":{"link":""},"brand_name":"","crossBrandBar":{"brandBarOrder":[],"mobileBrandBarOrder":[]},"mobileHeader":{"firstHeaderIcon":"","icons":{"accountSVG":"","cartSVG":"","cartWithWrapperSVG":"","close":false,"closeSvg":"","favorites":false,"favoritesHeaderIconEnabled":false,"favoritesSVG":"","findStoreSVG":"","hamburgerSVG":"","searchHeaderIconEnabled":false,"searchSVG":"","storesSVG":""},"secondHeaderIcon":"","stickySortFilterEnabled":false},"mobileTopLinks":{"mobileUtilityNav":{"abTestConfig":{"ABTest":"headerMobileUtilityNav","activeVariant":"variantUtilityNav","enabled":false},"isEnabled":false},"topLinks":{"favorites":{"SVGIcon":"","isEnabled":false,"link":"","mobileUtilityNavIcon":"","mobileUtilityNavText":""},"links":[],"myAccount":{"SVGIcon":"","isEnabled":false,"isMobileUtilityNavCustomLoggedInGreeting":false,"link":{"signedIn":"","signedOut":""},"mobileUtilityNavText":"","text":""},"myStore":{"isEnabled":false,"mobileUtilityNavText":""}}},"myStore":{"enabled":false},"navBar":{"enabled":false},"primaryNavBar":{"mobileNavItems":[],"topNavItems":[]},"searchBar":{"enabled":false,"placeholder":"","showToggle":false}},"WSH":{"brandLogo":{"alt_text":"Williams Sonoma Home","breakpoints":["xs","sm","md"],"img_link":"https:\u002F\u002Fwww.williams-sonoma.com\u002Fnetstorage\u002Fimages\u002Flogo\u002Fwsh_horizontal.svg","link":"\u002Fpages\u002Fwilliams-sonoma-home\u002F?cm_type=gnav"},"crossBrandBar":{"brandBarOrder":[{"brand_name":"Williams Sonoma","target":"_self","class":"sub-brand wsk","link":"\u002F?cm_ven=CrossBrandReferral&cm_cat=WSH&cm_pla=Header&cm_ite=Link"},{"brand_name":"Williams Sonoma Home","target":"_self","class":"sub-brand selected wsh","link":"\u002Fpages\u002Fwilliams-sonoma-home\u002F?cm_ven=CrossBrandReferral&cm_cat=WSH&cm_pla=Header&cm_ite=Link"},{"brand_name":"Williams Sonoma Business to Business","target":"_self","class":"sub-brand wsb2b","link":"\u002Fpages\u002Fwilliams-sonoma\u002Fb2b\u002Foverview\u002F?cm_ven=CrossBrandReferral&cm_cat=WSH&cm_pla=Header&cm_ite=Link"},{"brand_name":"Pottery Barn","link":"https:\u002F\u002Fwww.potterybarn.com\u002F?cm_ven=CrossBrandReferral&cm_cat=WSH&cm_pla=Header&cm_ite=Link"},{"brand_name":"Pottery Barn Kids","class":"pk","link":"https:\u002F\u002Fwww.potterybarnkids.com\u002F?cm_ven=CrossBrandReferral&cm_cat=WSH&cm_pla=Header&cm_ite=Link"},{"brand_name":"Pottery Barn Teen","class":"pt","link":"https:\u002F\u002Fwww.pbteen.com\u002F?cm_ven=CrossBrandReferral&cm_cat=WSH&cm_pla=Header&cm_ite=Link"},{"brand_name":"West Elm","link":"https:\u002F\u002Fwww.westelm.com\u002F?cm_ven=CrossBrandReferral&cm_cat=WSH&cm_pla=Header&cm_ite=Link"},{"brand_name":"Rejuvenation","link":"https:\u002F\u002Fwww.rejuvenation.com\u002F?cm_ven=CrossBrandReferral&cm_cat=WSH&cm_pla=Header&cm_ite=Link"},{"brand_name":"Mark & Graham","link":"https:\u002F\u002Fwww.markandgraham.com\u002F?cm_ven=CrossBrandReferral&cm_cat=WSH&cm_pla=Header&cm_ite=Link"},{"brand_name":"GreenRow","link":"https:\u002F\u002Fwww.greenrow.com\u002F?cm_ven=CrossBrandReferral&cm_cat=WSH&cm_pla=Header&cm_ite=Link"}],"mobileBrandBarOrder":[{"brand_name":"Williams Sonoma","link":"https:\u002F\u002Fwww.williams-sonoma.com\u002Fm\u002F?cm_ven=CrossBrandReferral&cm_cat=WSH&cm_pla=Header&cm_ite=Link","isMobile":true,"target":"_self"},{"brand_name":"Business to Business","link":"\u002Fpages\u002Fwilliams-sonoma\u002Fb2b\u002Foverview\u002F?cm_ven=CrossBrandReferral&cm_cat=WSH&cm_pla=Header&cm_ite=Link","target":"_self"},{"brand_name":"Pottery Barn","link":"https:\u002F\u002Fwww.potterybarn.com\u002Fm\u002F?cm_ven=CrossBrandReferral&cm_cat=WSH&cm_pla=Header&cm_ite=Link"},{"brand_name":"Pottery Barn Teen","link":"https:\u002F\u002Fwww.pbteen.com\u002Fm\u002F?cm_ven=CrossBrandReferral&cm_cat=WSH&cm_pla=Header&cm_ite=Link"},{"brand_name":"Pottery Barn Kids","link":"https:\u002F\u002Fwww.potterybarnkids.com\u002Fm\u002F?cm_ven=CrossBrandReferral&cm_cat=WSH&cm_pla=Header&cm_ite=Link"},{"brand_name":"West Elm","link":"https:\u002F\u002Fwww.westelm.com\u002Fm\u002F?cm_ven=CrossBrandReferral&cm_cat=WSH&cm_pla=Header&cm_ite=Link"},{"brand_name":"Rejuvenation","link":"https:\u002F\u002Fwww.rejuvenation.com\u002F?cm_ven=CrossBrandReferral&cm_cat=WSH&cm_pla=Header&cm_ite=Link"},{"brand_name":"Mark & Graham","link":"https:\u002F\u002Fwww.markandgraham.com\u002Fm\u002F?cm_ven=CrossBrandReferral&cm_cat=WSH&cm_pla=Header&cm_ite=Link"},{"brand_name":"GreenRow","link":"https:\u002F\u002Fwww.greenrow.com\u002F?cm_ven=CrossBrandReferral&cm_cat=WSH&cm_pla=Header&cm_ite=Link"}]},"mobileTopLinks":{"mobileUtilityNav":{"abTestConfig":{"ABTest":"headerMobileUtilityNav","activeVariant":"variantUtilityNav","enabled":false},"isEnabled":true},"topLinks":{"favorites":{"SVGIcon":"https:\u002F\u002Fassets.wsimgs.com\u002Fwsimgs\u002Frk\u002Fimages\u002Fdp\u002Fecm\u002F202502\u002F0309\u002F001\u002F001.svg","isEnabled":true,"link":"\u002Ffavorites\u002F?cm_type=lnav","mobileUtilityNavIcon":"https:\u002F\u002Fassets.wsimgs.com\u002Fwsimgs\u002Frk\u002Fimages\u002Fdp\u002Fecm\u002F202502\u002F0309\u002F001\u002F001.svg","mobileUtilityNavText":"Favorites"},"links":[{"disabled":true,"link":"","rviLabels":["Recently Viewed"],"mobileUtilityNavIcon":"","SVGIcon":"","text":"Recently Viewed","ABTest":"headershoprvimobile","ABTestEnabled":false,"activeVariant":"active"},{"link":"\u002Fcustomer-service\u002Forder-shipment-tracking\u002F","mobileUtilityNavIcon":"https:\u002F\u002Fassets.wsimgs.com\u002Fwsimgs\u002Frk\u002Fimages\u002Fdp\u002Fecm\u002F202502\u002F0307\u002F001\u002F001.svg","mobileUtilityNavText":"Track Order","SVGIcon":"https:\u002F\u002Fassets.wsimgs.com\u002Fwsimgs\u002Frk\u002Fimages\u002Fdp\u002Fecm\u002F202502\u002F0307\u002F001\u002F001.svg","text":"Track Your Order"},{"link":"\u002Fregistry\u002F","mobileUtilityNavIcon":"https:\u002F\u002Fassets.wsimgs.com\u002Fwsimgs\u002Fab\u002Fimages\u002Fdp\u002Fecm\u002F202502\u002F2439\u002F001\u002F001.sv","mobileUtilityNavText":"Registry","SVGIcon":"https:\u002F\u002Fassets.wsimgs.com\u002Fwsimgs\u002Fab\u002Fimages\u002Fdp\u002Fecm\u002F202502\u002F2439\u002F001\u002F001.svg","text":"WEDDING REGISTRY"}],"myAccount":{"SVGIcon":"account-pb","isEnabled":true,"isMobileUtilityNavCustomLoggedInGreeting":true,"link":{"signedIn":"\u002Faccount\u002F?cm_type=lnav","signedOut":"\u002Faccount\u002Flogin.html?cm_type=lnav"},"mobileUtilityNavIcon":"account-pb","mobileUtilityNavText":"Account","text":"Sign In"},"myStore":{"isEnabled":false,"mobileUtilityNavText":"My Store"}}},"myStore":{"enabled":false},"primaryNavBar":{"mobileNavItems":[{"path":"shop\u002Fhome-new","class":""},{"path":"shop\u002Fhome-furniture","class":""},{"path":"shop\u002Fhome-outdoor","class":""},{"path":"shop\u002Fhome-bedding","class":""},{"path":"shop\u002Fhome-bath","class":""},{"path":"shop\u002Fhome-rugs","class":""},{"path":"shop\u002Fhome-lighting","class":""},{"path":"shop\u002Fhome-decor","class":""},{"path":"shop\u002Fhome-pillows-throws","class":""},{"path":"shop\u002Fhome-sale","class":""},{"path":"shop\u002Fhome-gifts","class":""},{"path":"shop\u002Fhome-gifts\u002Fhome-gifts-free-shipping","class":"no-arrow","text":"Free Shipping","tabs":["williams-sonoma-home"]},{"path":"shop\u002Fhome-new\u002Fin-stock-and-ready-to-ship","class":"","text":"In Stock & Ready to Ship","tabs":["williams-sonoma-home"]},{"url":"\u002Fm\u002Fpages\u002Fws-home\u002Fshop-by-room\u002Fliving-room\u002F?cm_type=lnav","class":"no-arrow","text":"Shop Rooms","tabs":["williams-sonoma-home"]},{"url":"\u002Fm\u002Fpages\u002Fws-home\u002Fcollaborations\u002F?cm_type=lnav","class":"no-arrow","text":"Collaborations","tabs":["williams-sonoma-home"]},{"url":"\u002Fm\u002Fpages\u002Fwilliams-sonoma\u002Fsustainability","class":"no-arrow","text":"Sustainability","tabs":["williams-sonoma-home"]}],"topNavItems":[{"path":"shop\u002Fhome-new","class":"home-new","hasSpotlight":true,"text":"New"},{"path":"shop\u002Fhome-furniture","class":"","hasSpotlight":true,"text":"Furniture"},{"path":"shop\u002Fhome-outdoor","class":"","hasSpotlight":true,"text":"Outdoor"},{"path":"shop\u002Fhome-bedding","class":"","hasSpotlight":true,"text":"Bedding"},{"path":"shop\u002Fhome-bath","class":"","hasSpotlight":true,"text":"Bath"},{"path":"shop\u002Fhome-rugs","class":"","hasSpotlight":true,"text":"Rugs"},{"path":"shop\u002Fhome-lighting","class":"","hasSpotlight":true,"text":"Lighting"},{"path":"shop\u002Fhome-decor","class":"","hasSpotlight":true,"text":"Art & Décor"},{"path":"shop\u002Fhome-pillows-throws","class":"","hasSpotlight":true,"text":"Pillows & Throws"},{"path":"shop\u002Fhome-gifts","id":"home-gifts","type":"supercat","name":"Gifts","url":"\u002Fshop\u002Fhome-gifts\u002F?cm_type=gnav","popOut":true,"hasSpotlight":true},{"path":"shop\u002Fhome-sale","class":"sale","hasSpotlight":true,"text":"Sale"},{"path":"","class":"","url":"\u002F","hasSpotlight":false,"text":"Kitchen","custom":false}]},"secondaryNavBar":{"categories":[{"path":"","id":"design-inspiration","type":"","name":"Ideas & Inspiration","url":"","custom":true,"categories":[{"name":"Shop by Room","path":"","displayColumn":"A","items":[{"path":"pages\u002Fws-home\u002Fshop-by-room\u002Fliving-room","name":"Living Room"},{"path":"pages\u002Fws-home\u002Fshop-by-room\u002Fdining-room","name":"Dining Room"},{"path":"pages\u002Fws-home\u002Fshop-by-room\u002Foutdoor","name":"Outdoor"},{"path":"pages\u002Fws-home\u002Fshop-by-room\u002Fkitchen","name":"Kitchen"},{"path":"pages\u002Fws-home\u002Fshop-by-room\u002Fbedroom","name":"Bedroom"},{"path":"pages\u002Fws-home\u002Fshop-by-room\u002Fentryway","name":"Entryway"},{"path":"pages\u002Fws-home\u002Fshop-by-room\u002Fhome-office","name":"Home Office"}]},{"name":"Design Inspiration","path":"","displayColumn":"B","items":[{"path":"pages\u002Fws-home\u002Fdesign-inspiration\u002Fdesign-inspiration\u002Fnew-blue-and-white","name":"Blue and White"},{"path":"pages\u002Fws-home\u002Fdesign-inspiration\u002Fdesign-inspiration\u002Fwoven-textures","name":"Woven Textures"},{"path":"pages\u002Fws-home\u002Fdesign-inspiration\u002Fdesign-inspiration\u002Fbotanical-elements","name":"Botanical Elements"},{"path":"pages\u002Fws-home\u002Fdesign-inspiration\u002Fdesign-inspiration\u002Fshades-of-spice","name":"Earth Tones"},{"path":"pages\u002Fwilliams-sonoma\u002Fthe-art-of-entertaining\u002Fdesign-inspiration\u002Fbeauty-of-brass","name":"Beauty of Brass"},{"path":"pages\u002Fws-home\u002Fdesign-inspiration\u002Fpillow-pairings","name":"Pillow Pairings"}]},{"name":"Design Resources","path":"","displayColumn":"B","items":[{"path":"pages\u002Fws-home\u002Froom-planner","name":"Room Planner - Design Online"},{"path":"pages\u002Fws-home\u002Fdesign-services\u002F?cm_type=gnav","name":"Free Design Services"}]},{"name":"Style Guides","path":"","displayColumn":"C","items":[{"path":"pages\u002Fws-home\u002Fbedding\u002Fall-white-bedding","name":"How to Style Timeless White Bedding"},{"path":"pages\u002Fws-home\u002Fdecor\u002Fgallery\u002F","name":"Tips for Creating a Gallery Wall"},{"path":"pages\u002Fws-home\u002Ffurniture\u002Fconsole\u002F","name":"How to Style a Console"},{"path":"pages\u002Fws-home\u002Fdesign-inspiration\u002Fhow-to-style-a-shelf\u002F","name":"How to Style a Shelf"},{"path":"pages\u002Fws-home\u002Fdesign-inspiration\u002Fhow-to-style-a-coffee-table\u002F","name":"How to Style a Coffee Table"},{"path":"pages\u002Fws-home\u002Fdesign-inspiration\u002Fhow-to-decorate-with-color\u002F","name":"Tips for Decorating With Color"}]},{"name":"Buying Guides","path":"","displayColumn":"C","items":[{"path":"shop\u002Fhome-furniture\u002Fchoosing-a-dining-table","name":"Dining Table Guide"},{"path":"pages\u002Fws-home\u002Ffurniture\u002Fsofa-buying-guide","name":"Sofa Buying Guide"},{"path":"pages\u002Fws-home\u002Frugs\u002Frug-buying-guide\u002F","name":"Rug Buying Guide"},{"path":"shop\u002Fhome-lighting\u002Flighting-buying-guide\u002F","name":"Lighting Buying Guide"}]},{"name":"Featured","path":"","displayColumn":"D","items":[{"path":"pages\u002Fws-home\u002Fecatalog\u002Fwsh-ecatalog-spring4-2026","name":"The Spring Lookbook"},{"path":"pages\u002Fws-home\u002Flookbook","name":"The Outdoor Lookbook"},{"path":"pages\u002Fws-home\u002Fdesign-inspiration\u002Fdesign-inspiration\u002Fchambers-collections","name":"Chambers® Collections"},{"path":"shop\u002Fdesign-inspiration\u002Fguide-to-new-home\u002F","name":"A Warm Welcome - Guide to a New Home"},{"path":"pages\u002Fws-home\u002Fdesign-inspiration\u002Finvisible-rules-of-beautiful-rooms\u002F","name":"Stylists' Tips"}]},{"name":"Home Tours","path":"","displayColumn":"D","items":[{"path":"shop\u002Fdesign-inspiration\u002Fjosh-young","name":"Josh Young Home Tour"},{"path":"shop\u002Fdesign-inspiration\u002Fgray-malin","name":"Gray Malin Getaway Home"},{"path":"shop\u002Fdesign-inspiration\u002Ftayshia-adams-home-tour","name":"Tayshia Adams Home Tour"}]}],"popOut":true,"hasSpotlight":true,"ecmPromos":["design-inspiration"]},{"path":"pages\u002Fws-home\u002Fcollaborations","id":"collaborations","type":"","name":"Collaborations","url":"\u002Fpages\u002Fws-home\u002Fcollaborations\u002F","popOut":true,"hasSpotlight":true,"custom":true,"ecmPromos":["wsh-collaborations"],"categories":[{"name":"WSH Collaborations & Partnerships","path":"","displayColumn":"A","items":[{"path":"shop\u002Fhome-decor\u002Faerin-shop","name":"AERIN"},{"path":"shop\u002Fdesign-inspiration\u002Fthe-george","name":"THE GEORGE"},{"path":"shop\u002Fdesign-inspiration\u002Fgray-malin","name":"Gray Malin"},{"path":"shop\u002Fdesign-inspiration\u002Fjosh-young","name":"Josh Young"},{"path":"shop\u002Fhome-bath\u002Fwsh-morris-co","name":"Morris & Co."},{"path":"shop\u002Fhome-pillows-throws\u002Fscalamandre-collection-shop","name":"Scalamandré"},{"path":"shop\u002Fhome-decor\u002Fwsh-sheila-bridges","name":"Sheila Bridges"},{"path":"pages\u002Fws-home\u002Fcollaborations","name":"Shop Collaborations"}]}]},{"path":"pages\u002Fws-home\u002Fdesign-services","id":"free-design-services","type":"","name":"Free Design Services","url":"\u002Fpages\u002Fws-home\u002Fdesign-services\u002F?cm_type=gnav","popOut":true,"hasSpotlight":true,"ecmPromos":["wsh-services"],"custom":true,"categories":[{"name":"Services","path":"","displayColumn":"A","items":[{"path":"pages\u002Fws-home\u002Fdesign-services","name":"Book a Free Home Design Appointment"},{"path":"pages\u002Fws-home\u002Froom-planner","name":"Room Planner – Design Online"},{"path":"appointments\u002Fregistry-virtual-choice","name":"Book a Free Registry Appointment"},{"path":"pages\u002Fwilliams-sonoma\u002Fb2b\u002Foverview","name":"Book a Free Trade Appointment"}]}]},{"path":"","id":"home-contract-grade","type":"","name":"Contract Grade","custom":true,"popOut":true,"hasSpotlight":true,"class":"home-contract-grade","ecmPromos":["home-contract-grade"],"categories":[{"name":"Contract Grade","path":"","displayColumn":"A","items":[{"path":"shop\u002Fhome-furniture\u002Fwsh-all-contract-grade-furniture","name":"All Contract Grade"},{"path":"shop\u002Fhome-furniture\u002Fwsh-contract-grade-sectionals","name":"Sectionals"},{"path":"shop\u002Fhome-furniture\u002Fwsh-contract-grade-sofas","name":"Sofas"},{"path":"shop\u002Fhome-furniture\u002Fwsh-contract-grade-lounge-chairs","name":"Lounge Chairs"},{"path":"shop\u002Fhome-furniture\u002Fwsh-side-tables-consoles","name":"Side Tables & Consoles"},{"path":"shop\u002Fhome-furniture\u002Fwsh-contract-grade-dining-tables","name":"Dining Tables"},{"path":"shop\u002Fhome-furniture\u002Fwsh-contract-grade-dining-chairs","name":"Dining Chairs & Banquettes"},{"path":"shop\u002Fhome-furniture\u002Fwsh-contract-grade-stools","name":"Bar & Counter Stools"},{"path":"shop\u002Fhome-furniture\u002Fwsh-contract-grade-bedroom","name":"Bedroom"},{"path":"shop\u002Fhome-furniture\u002Fwsh-contract-grade-office","name":"Office"},{"path":"shop\u002Fhome-furniture\u002Fwsh-contract-grade-outdoor","name":"Outdoor"},{"path":"shop\u002Fhome-furniture\u002Fwsh-contract-grade-lighting","name":"Lighting"},{"path":"shop\u002Fhome-furniture\u002Fwsh-contract-grade-rug","name":"Rugs"}]},{"name":"Commercial Grade","path":"","url":"","displayColumn":"B","items":[{"path":"shop\u002Fnew\u002Fcommercial-grade-all","name":"All Commercial Grade"},{"path":"shop\u002Fnew\u002Fcommercial-grade-cookware","name":"Cookware"},{"path":"shop\u002Fnew\u002Fbakeware-commercial-grade","name":"Bakeware"},{"path":"shop\u002Fnew\u002Fcutlery-commercial-grade","name":"Cutlery"},{"path":"shop\u002Fnew\u002Fcommercial-grade-electrics","name":"Electrics"},{"path":"shop\u002Fnew\u002Fcommercial-grade-tabletop","name":"Dinnerware"},{"path":"shop\u002Fnew\u002Fcommercial-grade-drinkware","name":"Drinkware"},{"path":"shop\u002Fnew\u002Fcommercial-grade-serveware","name":"Serveware"},{"path":"shop\u002Fnew\u002Fcommercial-grade-home-essentials","name":"Home Essentials"}]},{"name":"Business to Business","path":"","displayColumn":"C","items":[{"path":"pages\u002Fwilliams-sonoma\u002Fb2b\u002Foverview","name":"Overview"},{"path":"shop\u002Fgifts\u002Fbusiness-gifts","name":"Corporate Gifting"}]}]},{"path":"","id":"registry","type":"","name":"Wedding Registry","url":"\u002Fregistry\u002F?cm_type=gnav","custom":true,"popOut":true,"hasSpotlight":true,"class":"registry","ecmPromos":["registry"],"categories":[{"name":"Create Registry","path":"registry\u002Fcreate-registry-sign-in.html?cm_type=gnav","url":"","displayColumn":"A"},{"name":"Find A Registry","path":"registry\u002Ffind-registry.html","url":"","displayColumn":"A"},{"name":"Manage My Registry","path":"registry\u002Fmanage-registry.html?cm_type=gnav","url":"","displayColumn":"A"},{"name":"Registry Home","path":"registry\u002F","url":"","displayColumn":"A"},{"name":"REGISTRY TIPS","path":"","displayColumn":"B","items":[{"path":"shop\u002Fregistry\u002Fregistry-favorites\u002F","name":"Top 100 Registry Essentials"},{"path":"pages\u002Fregistry\u002Freal-wedding-registries","name":"Real Wedding Registries"},{"path":"pages\u002Fregistry\u002Fthe-expert-edit","name":"The Expert Edit"},{"path":"pages\u002Fregistry\u002Fquick-start-registries\u002F","name":"Quick-Start Registries"},{"path":"shop\u002Fgifts\u002Fgifts-wedding\u002F","name":"Most-Loved Gifts"},{"path":"shop\u002Fregistry\u002Fluxe-gifts","name":"Luxe Gifts"},{"path":"pages\u002Fregistry\u002Flets-plan-together","name":"Private Registry Events"},{"isExternal":true,"link":"https:\u002F\u002Fwww.williams-sonoma.com\u002Fnetstorage\u002Fpdf\u002Fws-wedding-registry-checklist-2026.pdf","name":"Registry Checklist"}]},{"name":"REGISTRY BY CATEGORY","path":"","displayColumn":"C","items":[{"path":"shop\u002Fregistry\u002Fregistry-cookware\u002F","name":"Cookware"},{"path":"shop\u002Fregistry\u002Fregistry-electrics\u002F","name":"Electrics"},{"path":"shop\u002Fregistry\u002Fregistry-bakeware\u002F","name":"Bakeware"},{"path":"shop\u002Fregistry\u002Fregistry-tabletop-bar\u002F","name":"Tabletop"},{"path":"shop\u002Fregistry\u002Fregistry-serveware","name":"Serveware"},{"path":"shop\u002Fregistry\u002Fregistry-glassware","name":"Glassware & Bar"},{"path":"shop\u002Fregistry\u002Fregistry-cutlery\u002F","name":"Cutlery"},{"path":"shop\u002Fregistry\u002Fregistry-outdoor\u002F","name":"Outdoor"},{"path":"shop\u002Fregistry\u002Fregistry-cooks-tools\u002F","name":"Cooks' Tools"},{"path":"shop\u002Fregistry\u002Fregistry-storage-organization\u002F","name":"Storage & Organization"},{"path":"shop\u002Fregistry\u002Fregistry-bedding-bath\u002F","name":"Bedding & Bath"},{"path":"shop\u002Fregistry\u002Fregistry-decor\u002F","name":"Décor"}]},{"name":"TOP BRANDS","path":"","displayColumn":"D","items":[{"path":"shop\u002Fbrand-shop\u002Fall-clad\u002F","name":"All-Clad"},{"path":"shop\u002Felectrics\u002Felectrics-breville\u002F","name":"Breville"},{"path":"shop\u002Fbrand-shop\u002Fcuisinart","name":"Cuisinart"},{"path":"shop\u002Fbrand-shop\u002Fgreenpan\u002F","name":"GreenPan"},{"path":"shop\u002Felectrics\u002Felectrics-kitchenaid\u002F","name":"KitchenAid"},{"path":"shop\u002Fbrand-shop\u002Fle-creuset\u002F","name":"Le Creuset"},{"path":"shop\u002Fcutlery\u002Fknives-shun\u002F","name":"Shun"},{"path":"shop\u002Fbrand-shop\u002Fwilliams-sonoma\u002F","name":"Williams Sonoma"}]}]}]}}},"subBrandSearchEnabled":false,"subBrands":{"brands":[{"brand_name":"Williams Sonoma","id":"WS","link":"\u002F?cm_sp=tnav-_-williams-sonoma-_-tab","conceptName":"Williams Sonoma","default":true},{"brand_name":"Williams Sonoma Home","id":"WSH","link":"\u002Fpages\u002Fwilliams-sonoma-home\u002F?cm_sp=tnav-_-williams-sonoma-home-_-tab","conceptName":"Williams Sonoma Home","urlParamValue":"williams-sonoma-home"},{"brand_name":"Hold Everything","id":"HE","link":"\u002Fshop\u002Fhomekeeping\u002Fhold-everything\u002F?cm_sp=tnav-_-hold-everything-_-tab","conceptName":"Hold Everything"}],"show_sub_brands_links":false,"subBrandSearchEnabled":true},"suppressEmailOverlayIfUserLoggedIn":true,"emailOverlayWithDelay":{"enabled":false,"triggerAfterMs":2000,"triggerAfterPageViews":2,"abTest":{"name":"headerEmailOverlayWithDelay","enabled":false,"activeVariant":"showEmailOverlayWithDelay"}},"useLegacyEcmSolution":false,"userLocationDetails":{"deliveryLocationTimeout":3000,"isEnabled":true,"storeRadius":25,"enableInventoryTransitEndpoint":true},"viewMoreRecommendations":{"count":"20","drawerDirection":"right","enabled":true,"fallbackPlacementMessage":{"enabled":true,"message":"You don't have any recently viewed items. Here are some of our bestsellers!"},"imgUrlBase":"https:\u002F\u002Fassets.wsimgs.com\u002Fwsimgs\u002Frk\u002Fimages\u002Fdp\u002Fwcm\u002F","inlineRecommendations":{"ABTest":{"enable":true,"name":"shopInlineSeeMoreLikeThis"},"breakpoints":{"large":{"itemsToShow":4,"itemsToSlide":4},"medium":{"itemsToShow":4,"itemsToSlide":4},"small":{"itemsToShow":3,"itemsToSlide":3},"xSmall":{"itemsToShow":2.5,"itemsToSlide":2}},"count":"20","desktop":true,"maskUrl":{"enable":false,"hostUrl":"https:\u002F\u002Fwww.williams-sonoma.com\u002Fsvc\u002Frecommendation\u002Fv2\u002F"},"mobile":true},"itemType":"Group","pricing":{"defaultLabels":{"clearance":"","discount":"","discountPercentage":"","regular":"","sale":"","special":""},"mdmLabels":{"clearance":"","sale":"","discount":"","discountPercentage":"","regular":""},"showDiscountPercentage":false,"showMdmPriceLabels":false,"showPriceTypeBetweenPriceRanges":false,"hideSalesUnderPercent":0,"showSaleLabel":false},"template":"rvi-similarity","timeout":10000,"title":"More Items Like This"},"vta":{"allowThumbImageAttrField":false,"maxProductsVisible":4,"maxSuggestionsMobile":5,"maxSuggestionsVisible":10,"resultsUrl":"\u002Fsearch\u002Fresults.html?words=","showScroller":false,"topProductsTitle":"Top Products From Your Search","topSearchVta":{"abTestConfig":{"activeVariant":"showtopsearchvta","isEnabled":false,"name":"headertopsearchvta"},"clearRecentSearches":{"isEnabled":true,"title":"Clear Recent Searches"},"isEnabled":true,"popularSearches":{"abTestConfig":{"activeVariant":"showtopsearchvtapopular","isEnabled":false,"name":"headertopsearchvtapopular"},"isEnabled":true,"maxRetries":3,"maxVisible":{"desktop":6,"mobile":3},"title":"POPULAR SEARCHES","url":"https:\u002F\u002Fwww.williams-sonoma.com\u002Fnetstorage\u002Fpopular-search-terms\u002Fws-popular-search-terms"},"productSuggestions":{"maxVisible":6,"showScroller":false,"title":"PRODUCT SUGGESTIONS"},"recentSearches":{"isEnabled":true,"maxVisible":{"desktop":6,"mobile":3},"title":"RECENT SEARCHES"},"rvi":{"abTestConfig":{"activeVariant":"showtopsearchvtarvi","isEnabled":false,"name":"headertopsearchvtarvi"},"enabled":true,"isFavoriteEnabled":false,"itemsPerRow":4,"maxVisible":8,"mobile":{"abTestConfig":{"activeVariant":"showtopsearchvtarviformobile","isEnabled":false,"name":"headertopsearchvtarviformobile"},"enabled":true},"pageType":"VTARVI","showProductName":false,"showProductPricing":false,"showSeeMoreLink":false,"title":"Recently Viewed"},"searchSuggestions":{"maxVisible":5,"title":"SEARCH SUGGESTIONS"}}},"wcmImagePath":{"path":"https:\u002F\u002Fassets.wsimgs.com\u002Fwsimgs\u002Fab\u002Fimages\u002Fwcm\u002F"},"accessibilityContentConfig":{"accountMenuLabelForMobile":"Account Menu"},"languageSelector":{"allLanguages":[]},"static":{"AccountFlyoutPrimarySection":{"defaultStoreText":"Select A Store","myStoreTitle":"My Store"},"AccountInfoFlyoutHeader":{"defaultLoginGreeting":"Hello","defaultGuestGreeting":"Account"},"emailSmsCaptureForm":{"emailSignupLabel":"getEmailLabel","emailSignupAriaLabel":"Email address","phoneSignupLabel":"getPhoneNoLabel","phoneNumberOptional":"Phone number optional"},"globalLocationEdit":{"zipErrorMessage":"The location you specified seems to be incorrect. Please enter a valid input.","enterCityStateZip":"Enter City, State, or ZIP","placeholderMessage":"Enter City, State, or ZIP","updateButtonLabel":"Update"},"internationalShippingMsgBlock":{"someItemsNotEligible":"Some items in this category are not eligible for international shipping.","needAssistance":"If you need assistance, please view our \u003Ca href=\"{url}\"\u003Econtact information\u003C\u002Fa\u003E","learnMore":"Learn more"},"internationalWelcomeMat":{"goingGlobalTitle":"Going Global - Available in over 60 countries","intlShippingInfo":"We now offer international shipping through global provider, Borderfree. As you shop, you will see prices in your selected currency. You can change where you would like to ship your items in the top right corner of our website.","learnMoreOrders":"To learn more about international shipping, please visit our International Orders page.","currentShippingTo":"You are currently shipping to","pleaseNote":"PLEASE NOTE:","intlShippingEligibility":"Some items are not eligible for international shipping. Please look for eligibility notifications on our product pages, or view our guidelines to see which items are \u003Ca href=]\"{url}\"\u003Eineligible\u003C\u002Fa\u003E.","shipToOutsideUs":"All international orders must have a ship-to destination outside of the United States. We cannot support customers with international billing addresses shipping to U.S. addresses.","freeShippingInfo":"Free Shipping promotions cannot be applied to International Orders.","orderTotalInfo":"You can view your complete order total, including shipping fees, custom tariffs and taxes, during checkout.","noShippingQuebec":"*We are sorry that we no longer ship to the Province of Quebec, Canada.","continueShopping":"Continue Shopping","changeCountry":"change","internationalOrders":"International Orders","page":"page.","currency":"Currency","in":"in","countryAndCurrency":"{countryCode} in {currencyCode} Currency"},"JoinEmailCampaign":{"closeButtonTitle":"Close","closeButtonOffscreenText":"Close","stayInTouch":"STAY IN TOUCH","requiredInformation":"Required Information","birthdayLabel":"Enter Your Birthday:","monthPlaceholder":"Month","dayPlaceholder":"Day","yearPlaceholder":"Year","submitButtonText":"Submit","emailOptOutLabel":"","ccpaTextInfo":"Financial Incentive Terms","thankYouMessage":"Thank you for signing up!","mobileHeaderConfirmText":"Thank you for signing up!","welcomeHeaderText":"Welcome","welcomeSubtext":"Join our email list to receive updates.","emailCampaignHeader":"Stay in Touch","enterYourBirthday":"Enter Your Birthday:","submit":"Submit","noThanks":"No, Thanks","thankYouFinalHeader":"Thank You!","thankYouFinalHeaderText":"Your submission has been received.","startShopping":"Start Shopping","wantEvenMoreInspiration":"Want even more inspiration?","requestCatalog":"Request our catalog.","emailInvalid":"Enter a valid email","catalogSignupCheckbox":"Sign me up for the catalog.","zipCode":"Zip Code:","fullName":"Full Name*","address":"Address*","address2Optional":"Address 2 (optional)","city":"City*","state":"State*","zip":"Zip*","joinVipList":"Join our VIP list for inspiration, new arrivals & more.","submitNow":"Submit Now","catalogSignup":"Sign up to get emails from our family of brands","readyToSave":"Ready to save 15%? Click to sign up.","emailPlaceholder":"Enter your email address","phoneNumberPlaceholder":"Enter your phone number","mobileNumberInfo":"Enter your mobile number and select to receive automated marketing text messages about new items, great savings and more.","smsOptIn":"I want to receive SMS updates about new items.","westElmInfo":"West Elm offers modern furniture and home decor featuring inspiring designs and colors.","forQuestions":"For questions, Please","contactUs":"contact us","terms":"Terms","emailSubmitted":"Email Submitted","visit":"Visit","visitToSignUpFor":"Visit {brand} to sign up for","visitToSignUpForA":"Visit {brand} to sign up for a","andToSignUpForA":"and {brand} to sign up for a","catalogs":"catalogs","catalog":"catalog","emails":"emails","and":"and","signUpEmails":"to sign up for emails","financialIncentiveTerms1":"California residents: can see","financialIncentiveTerms2":"Financial Incentive Terms","financialIncentiveTerms3":"for terms and can request","financialIncentiveTerms4":"Do Not Sell My Info","financialIncentiveTerms5":"Please visit our","financialIncentiveTerms6":"privacy policy","financialIncentiveTerms7":"to learn how we use your information.","financialIncentiveTerms":"California residents: can see Financial Incentive Terms for terms and can request Do Not Sell My Info. Please visit our privacy policy to learn how we use your information.","signUpNow":"Sign Up Now","signUp":"sign","minimize":"Minimize","cancel":"Cancel","enterMobileNumber":"Enter mobile number (Optional)","enterYourEmailAddress":"Enter your email address"},"MobileHeaderIcon":{"closeLabel":"close site navigation","favoritesLabel":"favorites","storesLabel":"stores","searchLabel":"search","shoppingCartLabel":"shopping cart"},"mobileSiteLinks":{"shopOurBrands":"Shop Our Brands"},"MobileTopLinks":{"accountText":"Sign In","keyRewardsNavigationCtaText":"View Your Key Rewards!","key_rewards_navigation_cta_text":"View Your Key Rewards!"},"PositionedHeaderIcon":{"ariaLabelAccount":"account","ariaLabelFavorites":"favorites","ariaLabelSearch":"search","ariaLabelStores":"stores"},"recentlyViewedFlyout":{"bestSellers":"Best Sellers"},"RecentlyViewedTab":{"recentlyViewed":"Recently Viewed","skuTriggered":"SKU Triggered"},"RecentlyViewedTypeAheadTabs":{"searchSuggestions":"Search Suggestions","recentlyViewed":"Recently Viewed","close":"Close","closeSuggestions":"Close Suggestions"},"SearchBar":{"searchAriaLabel":"search","searchIconTitle":"search","searchIconDesc":"Click to search for products.","searchPlaceholder":"Recherche..."},"VisualTypeAhead":{"clearRecentSearches":"Clear","clearRecentSearchesAriaLabel":"Clear Recent Searches","available":" Available"},"ActionLinkList":{"keyRewardsNavigationCtaText":"Key Rewards","menuLabel":" Menu","cartImageAlt":"cart image","key_rewards_navigation_cta_text":"Key Rewards"},"findAStore":{"nearestStore":"Nearest Store","store":"Store","openTodayFrom":"Open Today From"},"MyAccount":{"keyRewards":"Key Rewards","menu":"Menu","key_rewards":"Key Rewards"},"ProductCell":{"seeMoreLikeThis":"See More Like This"},"QuickCart":{"cartHeader":"cart"},"RegistryPopOut":{"required":"Required","findRegistryHeading":"Find a Registry","findRegistryButtonText":"Find Registry","manageMyRegistryHeading":"Manage My Registry","signInText":"Sign in to your account","getStartedButtonText":"Get Started","manageLinksTopPics":"Top Registry Picks","manageLinksManageMyRegistry":"Manage My Registry","manageLinksLinkYourStore":"Link Your Store","createRegistryHeading":"Create a Registry","forgotPasswordText":"Forgot your Password?","firstName":"First Name","lastName":"Last Name","email":"Email","firstNameRequired":"Please enter a first name.","firstNameInvalid":"First name should only contain letters, numbers and spaces.","lastNameRequired":"Please enter a last name.","lastNameInvalid":"Last name should only contain letters, numbers and spaces.","lastNameLength":"Please enter at least the first two letters of the last name.","emailRequired":"Please enter an email address.","emailInvalid":"Please enter a valid email address.","password":"Password","passwordRequired":"Your password must be between 8 and 25 characters.","passwordLength":"The password must be between 8 and 25 characters.","keepMeSignedInLabel":"Keep me signed in","persistentLoginSecurityText":"Security text related to persistent login"},"SearchBarInFlyout":{"searchButtonLabel":"search","searchIconTitle":"search","searchIconDesc":"Click to search for products."},"SearchFlyoutLogo":{"altFlyoutHeaderIcon":"flyout-header-icon"},"SimpleHeader":{"searchButtonLabel":"search","shopNavButtonLabel":"Shop","exploreButtonLabel":"Explore","searchIconDescription":"Click to search for products."},"DrawerComponent":{"closeOverlay":"Close Overlay"},"KeyRewardsNavigationCTA":{"keyRewardsLinkText":"Key Rewards","key_rewards_link_text":"Key Rewards"},"MyStore":{"mobileUtilityNavText":"My Store"},"myStoreCurrentStoreHours":{"storeStatusClosed":"Closed","storeStatusOpensTomorrow":"Opens Tomorrow","storeStatusOpensToday":"Opens Today","storeStatusOpenToday":"Open Today"},"MyStoreDrawer":{"myStoreTitle":"My Store,","searchLabel":"Search","storeLocator":"STORE LOCATOR"},"myStoreModule":{"chooseStore":"Choose Store","loadingMyStore":"... Loading My Store"},"SVGIcon":{"trackYourOrder":"Track Your Order","clickToTrackYourOrder":"Click to track your order.","registry":"Registry","favorites":"Favorites","clickToViewYourFavoriteProducts":"Click to view your favorite products.","cart":"Cart","recentlyViewed":"Recently Viewed","account":"Account","giftCard":"Gift Card","buyOnlinePickUpInStore":"Buy Online Pick Up In Store","cookingClasses":"Cooking Classes","aboutUs":"About Us","callUs":"Call Us","page1":"Page 1","keyRewards":"Key Rewards","customerService":"Customer Service","dropdown":"Dropdown","backArrow":"Back arrow","clickToViewYourCart":"Click to view your cart","rigthArrow":"Right Arrow","key_rewards":"Key Rewards"},"LanguageSelector":{"languageReference":"Language Preference","english":"English","french":"French"},"FindAStore":{"nearestStore":"Nearest Store","store":"Store","openTodayFrom":"Open Today From"},"MyStoreCurrentStoreHours":{"storeStatusClosed":"Closed","storeStatusOpensTomorrow":"Opens Tomorrow","storeStatusOpensToday":"Opens Today","storeStatusOpenToday":"Open Today"},"MyStoreModule":{"chooseStore":"Choose Store","loadingMyStore":"... Loading My Store"},"CCPAHeaderButton":{"doNotSellMyPersonalInformation":"Do Not Sell My Personal Information"},"EmailSignUp":{"signUp":"Sign Up","footerEmailSignUpText":"Sign Up Now","submitEmailAddressAlt":"Submit email address","enterYourMobileNumber":"Enter your mobile number (Optional)","enterMobileNumber":"Enter mobile number (Optional)","enterEmailAddress":"Enter your email address*","required":"required","mobileNumber":"Mobile Number","submit":"Submit"},"ShippingCountry":{"shipTo":"Ship To"},"shippingCountrySelector":{"loading":"Loading..."},"ShippingCountrySelector":{"loading":"Loading..."}},"_DEV_COMMENT_brConfigKey":"this key value should match the corresponding key in Shop MFE src\u002Fclient\u002Futil\u002Fconstants.js BR_LOCALSTORAGE_KEY","brLocalStorageKey":"BR_CONFIG","brandPhoneNumber":{"contactNumber":"1.877.812.6235"},"breakpoints":{},"catTreeLocalStorageKey":"categoryData","rewardsDpConfig":{"enabled":false},"creditCardServiceProviderName":"COF","deeplinking":{"isEnabled":true},"ecmPlacements":{"DesktopPlacements":["global-wide-banner-1","global-wide-banner-2","global-wide-banner-3","global-wide-banner-4","global-ticker-1","global-ticker-2","global-ticker-3","global-ticker-4","footer-legal","spotlight-stores","secondary-nav-banner-1","email-overlay-copy","email-overlay-copy-legal","email-overlay-copy-confirm"],"MobilePlacements":["mobile-wide-banner-1","mobile-wide-banner-2","mobile-wide-banner-3","mobile-wide-banner-4","mobile-global-ticker-1","mobile-global-ticker-2","mobile-global-ticker-3","mobile-global-ticker-4","mobile-global-nav-top","mobile-global-nav-middle","mobile-global-nav-bottom","email-overlay-copy-m","email-overlay-copy-confirm-m"],"_DesktopPlacements":"Array of xbrand supported site-wide ECM placements for desktop","_MobilePlacements":"Array of xbrand supported site-wide ECM placements for mobile","isPathSpecificPromo":false},"home":{"statusWidget":{"deliveryEstimationExpirationInDays":30,"isEnabledNativeApp":false}},"hostName":"www.williams-sonoma.com","countrySelector":{"isEnabled":true},"i18n":{"countryDetailsEndpoint":"\u002Finternational\u002FcountryDetails-mfe.html","hasShippingCountryInFooter":true,"shippingCountryEnabled":true},"isCatalogMicroServiceEnabled":true,"linkParameters":{"redirectTrackingUrlMatchString":"OLDLINK","parametersToRemove":["cm_re","cm_sp","cm_src","cm_type","originsc","recstrat","tabnav","podId","strategyId"],"parametersToReport":["cm_re","cm_sp","cm_src","cm_type","originsc","position","pkey","recstrat","tabnav","podId","strategyId"]},"enableUrlParameters":true,"mobileSearchBarToggle":{"isToggleActive":true},"navLinksPathInNewTab":"","pingOneSignals":{"isEnabled":true},"accertify":{"isEnabled":false},"beddingVisualizer":{"beddingVisualiserLink":"","isHideShareButton":false,"isHideAddToWishlistButton":false},"salesforceGeoLocation":{"isEnabled":false,"storeModeDeeplinkPath":"\u002Fstores?storeId"},"updateNativeApp":{"lowestSupportedVersion":"15.18.0","lowestSupportedVersioniOS":"16.4.1","unsupportediOSVersions":[]},"footerSMSCapture":{"isEnabled":true,"smsDisclaimer":"Enter your mobile number to receive marketing text messages. You understand that consent is not required to make a purchase. Message and data rates may apply. Message frequency varies. Wireless carriers are not liable for delayed or undelivered messages. Text HELP for help and STOP to cancel. For questions, please \u003Ca href='\u002Fcustomer-service\u002Femail-us\u002F' target='_blank'\u003Econtact us\u003C\u002Fa\u003E. \u003Ca href='\u002Fabout-us\u002Fterms.html' target='_blank'\u003ETerms\u003C\u002Fa\u003E.","signUpButton":"Sign Up Now"},"mobileFooterSignupV2":{"isEnabled":true,"thanksForSigningUpText":"Thanks for signing up!","emailSmsConfirmationText":"Now you'll always be in the loop on all the latest trends, styles and collabs.","startShoppingText":"START SHOPPING"},"blockedEcmContent":["global-wide-banner-1","global-wide-banner-2","global-wide-banner-3","global-wide-banner-4","global-wide-banner-bottom-1","global-wide-banner-bottom-2","global-wide-banner-bottom-4","global-ticker-3-container","global-ticker-1"],"gdprBanner":{"isEnabled":true,"message":"Welcome! This site is for informational purposes only in your region. Ordering is not available, and other capabilities have been removed."},"oneTrust":{"isEnabled":true,"id":"01982f20-d9fb-7007-961d-587f82e63c39"}},"url":"\u002Fheader-WS","subBrand":"WS","assetUris":{"static":"https:\u002F\u002Fwww.williams-sonoma.com\u002F.static\u002F","scripts":"https:\u002F\u002Fwww.williams-sonoma.com\u002F.static\u002F","images":"https:\u002F\u002Fassets.wsimgs.com\u002Fwsimgs\u002Frk\u002Fimages\u002Fdp\u002F","ecmImages":"https:\u002F\u002Fassets.wsimgs.com\u002Fwsimgs\u002Frk\u002Fimages\u002Fdp\u002F"},"catGenerationId":"326041640","activeProperties":{"isBrowseMode":"1","isMobile":"0","isSeoBot":"0"},"clientApplicationUri":"https:\u002F\u002Fwww.williams-sonoma.com\u002F","isBrowseMode":true,"locale":{"primaryLang":null,"secondaryLang":null,"altLangs":null,"timeZone":null,"currency":null,"localeString":"undefined"}}}</script><script src="/.static/202615/85348392/dist/header/header.da087122.js" defer ></script>
<script src="/.static/202615/85348392/dist/header/header-lazy-components.da087122.js" defer ></script>

    <script defer src="/.static/content/content.a1359ba8.js"></script><div id="content-app" data-style="app" class="homepage ecom-app-content ecm-content-page" role="main"><div class="content-mfe USA WS WS" data-style="router-view"><div class="/"><div data-test-id="aside-navigation-container" class="aside-navigation-container new-page-container"><!--[--><div class="responsive-content responsive-content-page loadingPageContent MFE-HOMEPAGE" data-style="content-page"><span> <link rel="preload" as="script" href="https://www.williams-sonoma.com/assets/70cba84887964e4229a6706cc40426c997881c2ddc3"/><link rel="preload" as="image" href="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202616/0841/001/003.jpg"> <link rel="preload" as="image" href="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202616/2239/001/001.jpg"> <link rel="preload" as="image" href="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202616/2239/001/015.jpg"> <link rel="preload" as="image" href="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202614/3233/001/002.jpg"> <link rel="preload" as="image" href="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202616/2239/001/003.jpg"></span><div class="desktopContentWrapper"><div data-test="ecm-content-desktop-container"><div class="ecm-content-wrapper" data-style="ecm-content-wrapper"><div data-page-title="041826 Desktop Homepage" class="cq-ecm-pages responsive-homepage conversion-1680"><div class="section video vimeo-video-thumbnail ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile" id="video725627572"><div class="videoThumbnail modal"><div class="thumbnailContent"></div><div class="modalHook" id="id1776381238867"><div class="responsive-video-wrapper"><!--[--><div style="opacity:1;pointer-events:auto;transition:opacity 0.5s ease-in-out;" class="responsiveVideo"><img src="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202616/0841/001/004.jpg" alt="https://player.vimeo.com/video/1182771500?h=da3f2fdd20&amp;autoplay=true&amp;byline=0&amp;title=0&amp;loop=true&amp;autopause=false&amp;muted=1&amp;controls=0" class="video-thumbnail" fetchpriority="high"></div><div style="opacity:0;pointer-events:none;transition:opacity 0.5s ease-in-out;" class="responsiveVideo" data-style="vimeo-video"></div><a href="https://www.williams-sonoma.com/shop/electrics/breville-mixed-metals/?cm_re=hphero-_-default-_-shop_breville_mixed_metals" style="display:block;position:absolute;top:0;left:0;width:100%;height:100%;z-index:1;" aria-label="Vimeo video link" class="vimeo-video-link"></a><!--]--></div></div></div></div><div id="imagerollover769413693" class="section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile padding-l"><a href="https://www.williams-sonoma.com/shop/electrics/breville-mixed-metals/?cm_re=hphero-_-default-_-shop_breville_kelly_wearstler" target="_self"><img fetchpriority="high" alt="Meet Kelly Wearstler" title="Meet Kelly Wearstler" src="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202616/0841/001/003.jpg" height="1339" width="3360"></a></div><div id="imagerollover-78312402" class="section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile padding-s"><a href="https://www.williams-sonoma.com/shop/sale-special-offer/premier-cookware/?cm_re=hpbanner1-_-default-_-shop_cookware_event" target="_self"><img fetchpriority="high" alt="Spring Cookware Event" title="Spring Cookware Event" src="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202616/2239/001/001.jpg" height="216" width="3360"></a></div><div id="imagerollover-191789269" class="section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile padding-s"><a href="https://www.williams-sonoma.com/shop/sale-special-offer/hestan+premier-view-all/brand-attr-m-brands-ff0013fe5f-1/?cm_re=hpbanner1-_-default-_-shop_hestan_promo" target="_self"><img fetchpriority="high" alt="Shop Hestan Cookware" title="Shop Hestan Cookware" src="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202616/2239/001/015.jpg" height="1600" width="3360"></a></div><div id="imagerollover-1823371462" class="section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile module-inset-hero-image padding-s"><img src="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202614/3233/001/002.jpg" loading="lazy" height="60" width="3104"></div><div id="slider-1549450797" class="slider section horizontal   no-infinite-scroll vue-ecm-slider four-across-slider ecm-component-wrapper ecm-slider-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile" data-scroller="{duration:350, pageSize:1, easing:dojo.fx.easing.cubicInOut}"><!--[--><section tabindex="0" class="hooper ecm-slider-component slider section horizontal   no-infinite-scroll vue-ecm-slider four-across-slider ecm-component-wrapper ecm-slider-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile" data-style="ecm-slider" id="ecm-slider-data-slider-1549450797"><div class="hooper-list"><ul class="hooper-track" style="transform: translate(0px, 0);"><li class="hooper-slide is-active" style="width: 25%" aria-hidden="false"><a href="https://www.williams-sonoma.com/shop/sale-special-offer/offers-le-creuset-cookware/?cm_re=hpbanner1-_-default-_-shop_le_creuset_promo" target="_self"><img src="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202616/2239/001/003.jpg" loading="lazy" alt="Shop Le Creuset Cookware" title="Shop Le Creuset Cookware" height="1156" width="740"></a></li><li class="hooper-slide is-active" style="width: 25%" aria-hidden="false"><a href="https://www.williams-sonoma.com/shop/sale-special-offer/greenpan-+premier-cookware/brand-attr-m-brands-ff000516feu~21225f-1/?cm_re=hpbanner2-_-default-_-shop_tucci_promo" target="_self"><img src="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202616/2239/001/004.jpg" loading="lazy" alt="Shop Greenpan™ Stanley Tucci™ Cookware" title="Shop Greenpan™ Stanley Tucci™ Cookware" height="1192" width="740"></a></li><li class="hooper-slide is-active" style="width: 25%" aria-hidden="false"><a href="https://www.williams-sonoma.com/shop/sale-special-offer/offers-all-clad-cookware/?cm_re=hpbanner1-_-default-_-shop_ac_copper_core" target="_self"><img src="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202616/0841/001/002.jpg" loading="lazy" alt="Shop All-Clad Cookware" title="Shop All-Clad Cookware" height="1108" width="740"></a></li><li class="hooper-slide is-active" style="width: 25%" aria-hidden="false"><a href="https://www.williams-sonoma.com/shop/sale-special-offer/offers-staub-cookware/?cm_re=hpbanner1-_-default-_-shop_staub_cookware_promo" target="_self"><img src="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202616/2239/001/011.jpg" loading="lazy" alt="Shop Staub Cookware" title="Shop Staub Cookware" height="1156" width="740"></a></li><li class="hooper-slide is-next" style="width: 25%" aria-hidden="true"><a href="https://www.williams-sonoma.com/shop/sale-special-offer/hestan+premier-view-all/brand-attr-m-brands-ff0013fe5f-1/?cm_re=hpbanner1-_-default-_-shop_hestan_promo" target="_self"><img src="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202616/2239/001/005.jpg" loading="lazy" alt="Shop Hestan Cookware" title="Shop Hestan Cookware" height="1156" width="740"></a></li><li class="hooper-slide" style="width: 25%" aria-hidden="true"><a href="https://www.williams-sonoma.com/shop/sale-special-offer/scanpan-+premier-cookware/brand-attr-m-brands-ff0001020304050615feae5f-1/?cm_re=hpbanner1-_-default-_-shop_scanpan_promo" target="_self"><img src="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202614/3233/001/019.jpg" loading="lazy" alt="Shop SCANPAN Cookware" title="Shop SCANPAN Cookware" height="1156" width="740"></a></li><li class="hooper-slide" style="width: 25%" aria-hidden="true"><a href="https://www.williams-sonoma.com/shop/sale-special-offer/offers-ws-cookware/?cm_re=hpbanner1-_-default-_-shop_ws_cookware_promo" target="_self"><img src="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202616/0841/001/001.jpg" loading="lazy" alt="Shop Williams Sonoma Cookware" title="Shop Williams Sonoma Cookware" height="1192" width="740"></a></li><li class="hooper-slide" style="width: 25%" aria-hidden="true"><a href="https://www.williams-sonoma.com/shop/sale-special-offer/lodge+premier-cookware/brand-attr-m-brands-ff0012fe5f-1/?cm_re=hpbanner1-_-default-_-shop_lodge_promo" target="_self"><img src="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202616/2718/001/003.jpg" loading="lazy" alt="Shop Lodge Cookware" title="Shop Lodge Cookware" height="1192" width="740"></a></li><li class="hooper-slide" style="width: 25%" aria-hidden="true"><a href="https://www.williams-sonoma.com/shop/sale-special-offer/offers-le-creuset-cookware/?cm_re=hpbanner1-_-default-_-shop_le_creuset_promo" target="_self"><img src="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202614/3305/001/005.jpg" loading="lazy" alt="Shop Le Creuset" title="Shop Le Creuset" height="1156" width="740"></a></li></ul><!--[--><!----><div class="hooper-navigation"><button class="hooper-prev" type="button"><svg class="icon icon-arrowLeft" viewBox="0 0 24 24" width="24px" height="24px"><title>Arrow Left</title><path d="M0 0h24v24H0z" fill="none"></path><path d="M15.41 16.59L10.83 12l4.58-4.59L14 6l-6 6 6 6 1.41-1.41z"></path></svg></button><button class="hooper-next" type="button"><svg class="icon icon-arrowRight" viewBox="0 0 24 24" width="24px" height="24px"><title>Arrow Right</title><path d="M0 0h24v24H0z" fill="none"></path><path d="M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"></path></svg></button></div><!--]--><div class="hooper-liveregion hooper-sr-only" .aria-live="polite" .aria-atomic="true">Item 1 of 9</div></div></section><!--]--></div><div id="mbox1307404504" class="padding-l ecm-component-wrapper ecm-mbox-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile"><div class="mboxDefault"></div><noscript id="content-script-0" data-tag-name="script" type="text/javascript">&quot;\n mboxCreate(\&quot;#mbox1307404504\&quot;,&#39;&#39;);\n\n &quot;</noscript></div><div class="ecm-component-wrapper ecm-column-control responsive-devicetype-desktop responsive-devicetype-not-mobile parsys_column wsi-colctrl-lt3a flex-col-ctrl padding-l"><div class="parsys_column wsi-colctrl-lt3a-c0"><div id="imagerollover1980197988" class="section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile"><a href="https://www.williams-sonoma.com/pages/williams-sonoma/tabletop-bar/set-your-table/?cm_re=hpbanner2-_-default-_-shop_table_setting_inspo" target="_self"><img src="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202616/1457/001/001.jpg" loading="lazy" alt="Shop Table Setting Inspiration" title="Shop Table Setting Inspiration" height="340" width="1528"></a></div><div id="imagerollover-82960694" class="section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile"><a href="https://www.williams-sonoma.com/shop/tabletop-glassware-bar/tabletop-dinnerware-sets/sanderson-country-woodland/?cm_re=hpbanner3-_-default-_-shop_tabletop_sanderson" target="_self"><img src="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202616/1457/001/002.jpg" loading="lazy" alt="Shop Sanderson Collection" title="Shop Sanderson Collection" height="1536" width="1528"></a></div></div><div class="parsys_column wsi-colctrl-lt3a-c1"><div id="imagerollover1239929481" class="section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile padding-s"><a href="https://www.williams-sonoma.com/shop/tabletop-glassware-bar/tabletop-dinnerware-sets/famille-rose/?cm_re=hpbanner2-_-default-_-shop_famille_rose" target="_self"><img src="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202614/2079/001/009.jpg" loading="lazy" alt="Shop Famille Rose Collection" title="Shop Famille Rose Collection" height="914" width="740"></a></div><div id="imagerollover1068154575" class="section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile"><a href="https://www.williams-sonoma.com/shop/tabletop-glassware-bar/aerin-meadow-lace+ws-aerin/collection-m-collection-ff0001020304060d1efe2020-1/?cm_re=shopbanner-_-default-_-dinnerware_collections_aerin_meadow_lace" target="_self"><img src="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202616/2718/001/004.jpg" loading="lazy" alt="Shop AERIN Collection" title="Shop AERIN Collection" height="914" width="740"></a></div></div><div class="parsys_column wsi-colctrl-lt3a-c2"><div id="imagerollover1125412877" class="section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile padding-s"><a href="https://www.williams-sonoma.com/shop/tabletop-glassware-bar/tabletop-dinnerware-sets/limone-dinnerware/?cm_re=hpbanner3-_-default-_-shop_limone_collection" target="_self"><img src="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202616/2718/001/005.jpg" loading="lazy" alt="Shop Limone Collection" title="Shop Limone Collection" height="914" width="740"></a></div><div id="imagerollover1039525424" class="section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile"><a href="https://www.williams-sonoma.com/shop/tabletop-glassware-bar/tabletop-dinnerware-sets/bordalo-pinheiro/?cm_re=hpbanner2-_-default-_-shop_bordallo_pinheiro" target="_self"><img src="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202614/2079/001/005.jpg" loading="lazy" alt="Shop Bordallo Pinheiro Collection" title="Shop Bordallo Pinheiro Collection" height="914" width="740"></a></div></div></div><div style="clear:both;"></div><div id="imagerollover62867211" class="section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile"><a href="https://www.williams-sonoma.com/products/delonghi-primadonna-aromatic-fully-automatic-espresso-machine/?cm_re=hpbanner4-_-default-_-shop_delonghi_primadonna" target="_self"><img src="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202616/2718/001/006.jpg" loading="lazy" alt="Shop De&#39;Longhi PrimaDonna Fully Automatic Espresso Machine" title="Shop De&#39;Longhi PrimaDonna Fully Automatic Espresso Machine" height="618" width="3360"></a></div><div id="imagerollover-1038282245" class="section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile padding-s"><a href="https://www.williams-sonoma.com/shop/electrics/espresso-makers/?cm_re=hpbanner4-_-default-_-shop_espresso_machines" target="_self"><img src="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202616/2239/001/014.jpg" loading="lazy" alt="Shop Espresso Machines" title="Shop Espresso Machines" height="982" width="3360"></a></div><div id="imagerollover369282464" class="section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile module-inset-hero-image padding-s"><img src="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202614/3233/001/004.jpg" loading="lazy" height="60" width="3104"></div><div id="slider1500397573" class="slider section horizontal   no-infinite-scroll vue-ecm-slider four-across-slider ecm-component-wrapper ecm-slider-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile" data-scroller="{duration:350, pageSize:1, easing:dojo.fx.easing.cubicInOut}"><!--[--><section tabindex="0" class="hooper ecm-slider-component slider section horizontal   no-infinite-scroll vue-ecm-slider four-across-slider ecm-component-wrapper ecm-slider-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile" data-style="ecm-slider" id="ecm-slider-data-slider1500397573"><div class="hooper-list"><ul class="hooper-track" style="transform: translate(0px, 0);"><li class="hooper-slide is-active" style="width: 25%" aria-hidden="false"><a href="https://www.williams-sonoma.com/products/philips-8000-cafe-aromis-fully-automatic-espresso-machine/?cm_re=hpbanner4-_-default-_-shop_philips_aromis" target="_self"><img src="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202616/2239/001/002.jpg" loading="lazy" alt="Shop Philips 8000 Cafe Aromis Fully Automatic Espresso Machine" title="Shop Philips 8000 Cafe Aromis Fully Automatic Espresso Machine" height="1113" width="740"></a></li><li class="hooper-slide is-active" style="width: 25%" aria-hidden="false"><a href="https://www.williams-sonoma.com/shop/sale-special-offer/nespresso+premier-electrics/brand-attr-m-brands-ff0016fe5f-1/?cm_re=hpbanner4-_-default-_-shop_nespresso_electrics" target="_self"><img src="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202615/0696/001/001.jpg" loading="lazy" alt="Shop Nespresso" title="Shop Nespresso" height="1156" width="740"></a></li><li class="hooper-slide is-active" style="width: 25%" aria-hidden="false"><a href="https://www.williams-sonoma.com/products/breville-oracle-dual-boiler-espresso-machine/?cm_re=hpbanner4-_-default-_-shop_breville_oracle_dual_boiler" target="_self"><img src="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202616/2239/001/006.jpg" loading="lazy" alt="Shop Breville Oracle Dual Boiler in Sea Salt" title="Shop Breville Oracle Dual Boiler in Sea Salt" height="1113" width="740"></a></li><li class="hooper-slide is-active" style="width: 25%" aria-hidden="false"><a href="https://www.williams-sonoma.com/products/fellow-series-1-espresso-machine/?cm_re=hpbanner3-_-default-_-shop_fellow_series_1" target="_self"><img src="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202614/3233/001/010.jpg" loading="lazy" alt="Shop Fellow" title="Shop Fellow" height="1113" width="740"></a></li><li class="hooper-slide is-next" style="width: 25%" aria-hidden="true"><a href="https://www.williams-sonoma.com/products/philips-baristina-plus-espresso-machine/?cm_re=hpbanner3-_-default-_-shop_philips_baristina_plus" target="_self"><img src="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202616/2257/001/001.jpg" loading="lazy" alt="Shop Philips Baristina Plus Espresso Machine" title="Shop Philips Baristina Plus Espresso Machine" height="1113" width="740"></a></li><li class="hooper-slide" style="width: 25%" aria-hidden="true"><a href="https://www.williams-sonoma.com/shop/sale-special-offer/offers-cuisinart/?cm_re=hpbanner4-_-default-_-shop_cuisinart_electrics" target="_self"><img src="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202614/3233/001/009.jpg" loading="lazy" alt="Shop Cuisinart Electrics" title="Shop Cuisinart Electrics" height="1108" width="740"></a></li><li class="hooper-slide" style="width: 25%" aria-hidden="true"><a href="https://www.williams-sonoma.com/products/nespresso-vertuo-up-espresso-machine-breville/?cm_re=hpbanner3-_-default-_-shop_nespresso_vertuo_up" target="_self"><img src="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202614/3233/001/007.jpg" loading="lazy" alt="Shop Nespresso Espresso Machines" title="Shop Nespresso Espresso Machines" height="1113" width="740"></a></li></ul><!--[--><!----><div class="hooper-navigation"><button class="hooper-prev" type="button"><svg class="icon icon-arrowLeft" viewBox="0 0 24 24" width="24px" height="24px"><title>Arrow Left</title><path d="M0 0h24v24H0z" fill="none"></path><path d="M15.41 16.59L10.83 12l4.58-4.59L14 6l-6 6 6 6 1.41-1.41z"></path></svg></button><button class="hooper-next" type="button"><svg class="icon icon-arrowRight" viewBox="0 0 24 24" width="24px" height="24px"><title>Arrow Right</title><path d="M0 0h24v24H0z" fill="none"></path><path d="M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"></path></svg></button></div><!--]--><div class="hooper-liveregion hooper-sr-only" .aria-live="polite" .aria-atomic="true">Item 1 of 7</div></div></section><!--]--></div><div id="mbox2023111639" class="padding-l ecm-component-wrapper ecm-mbox-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile"><div class="mboxDefault"></div><noscript id="content-script-1" data-tag-name="script" type="text/javascript">&quot;\n mboxCreate(\&quot;#mbox2023111639\&quot;,&#39;&#39;);\n\n &quot;</noscript></div><div id="imagerollover-55432972" class="section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile"><a href="https://www.williams-sonoma.com/shop/electrics/countertop-ovens+toasters+countertop-oven-accessories+electrics-breville/producttype-m-product-type-ff000b101823283a4149fe20202020-3/?cm_re=hpbanner4-_-default-_-shop_breville_ovens" target="_self"><img src="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202614/3233/001/025.jpg" loading="lazy" alt="Shop Breville Ovens" title="Shop Breville Ovens" height="1600" width="3360"></a></div><div id="imagerollover-1796901899" class="section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile padding-l"><a href="https://www.williams-sonoma.com/pages/virtual-events-and-in-store-classes/skills-series/?cm_re=hpbanner4-_-default-_-shop_skill_series" target="_self"><img src="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202615/2157/001/001.jpg" loading="lazy" alt="Williams Sonoma Test Kitchen Skill Series" title="Williams Sonoma Test Kitchen Skill Series" height="308" width="3360"></a></div><div id="imagerollover-179763658" class="section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile module-inset-hero-image padding-s"><img src="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202614/3305/001/001.jpg" loading="lazy" height="60" width="3104"></div><div class="ecm-component-wrapper ecm-column-control responsive-devicetype-desktop responsive-devicetype-not-mobile parsys_column wsi-colctrl-lt2a padding-l"><div class="parsys_column wsi-colctrl-lt2a-c0"><div id="imagerollover1760581661" class="section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile"><a href="https://www.williams-sonoma.com/shop/electrics/electrics-kitchenaid/?cm_re=hpbanner5-_-default-_-shop_kitchenaid" target="_self"><img src="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202614/3305/001/013.jpg" loading="lazy" alt="Shop KitchenAid® Stand Mixers &amp; Attachments" title="Shop KitchenAid® Stand Mixers &amp; Attachments" height="1868" width="1528"></a></div></div><div class="parsys_column wsi-colctrl-lt2a-c1"><div id="imagerollover1760581685" class="section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile"><a href="https://www.williams-sonoma.com/shop/bakeware/bakeware-williams-sonoma/?cm_re=hpbanner5-_-default-_-shop_ws_bakeware" target="_self"><img src="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202614/3247/001/002.jpg" loading="lazy" alt="Shop Williams Sonoma Bakeware" title="Shop Williams Sonoma Bakeware" height="1868" width="1528"></a></div></div></div><div style="clear:both;"></div><div id="imagerollover-958539567" class="section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile padding-l"><a href="https://www.williams-sonoma.com/shop/food/oakville-grocery/?cm_re=hphero-_-default-_-shop_oakville_grocery" target="_self"><img src="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202616/0841/001/005.jpg" loading="lazy" alt="Shop Oakville Grocery" title="Shop Oakville Grocery" height="1600" width="3360"></a></div><div id="imagerollover424712579" class="section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile module-inset-hero-image padding-s"><img src="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202614/3233/001/001.jpg" loading="lazy" height="60" width="3104"></div><div class="ecm-component-wrapper ecm-column-control responsive-devicetype-desktop responsive-devicetype-not-mobile parsys_column wsi-colctrl-lt4a padding-l"><div class="parsys_column wsi-colctrl-lt4a-c0"><div id="imagerollover1361064332" class="section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile"><a href="https://www.williams-sonoma.com/shop/cutlery/knives-shun-featured/?cm_re=hpbanner6-_-default-_-shop_shun_promo" target="_self"><img src="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202614/3233/001/015.jpg" loading="lazy" alt="Shop Shun Cutlery" title="Shop Shun Cutlery" height="1108" width="740"></a></div></div><div class="parsys_column wsi-colctrl-lt4a-c1"><div id="imagerollover-1884130179" class="section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile"><a href="https://www.williams-sonoma.com/shop/cutlery/knives-global-featured/?cm_re=hpbanner6-_-default-_-shop_global_cutlery_promo" target="_self"><img src="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202614/3233/001/028.jpg" loading="lazy" alt="Shop Global Cutlery" title="Shop Global Cutlery" height="1156" width="740"></a></div></div><div class="parsys_column wsi-colctrl-lt4a-c2"><div id="imagerollover-150891385" class="section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile"><a href="https://www.williams-sonoma.com/shop/cutlery/knives-zwilling-featured/?cm_re=hpbanner2-_-default-_-shop_zwilling_promo" target="_self"><img src="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202614/3233/001/016.jpg" loading="lazy" alt="Shop Zwilling Cutlery" title="Shop Zwilling Cutlery" height="1107" width="740"></a></div></div><div class="parsys_column wsi-colctrl-lt4a-c3"><div id="imagerollover328846992" class="section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile"><a href="https://www.williams-sonoma.com/shop/cutlery/wusthof-specialty/?cm_re=hpbanner6-_-default-_-shop_wusthof_cutlery" target="_self"><img src="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202614/3233/001/020.jpg" loading="lazy" alt="Shop Wusthof Cutlery" title="Shop Wusthof Cutlery" height="1156" width="740"></a></div></div></div><div style="clear:both;"></div><div id="imagerollover1618288314" class="section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile padding-s"><a href="https://www.williams-sonoma.com/shop/outdoor/?cm_re=hpbanner6-_-default-_-shop_outdoor" target="_self"><img src="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202616/2239/001/016.jpg" loading="lazy" alt="Shop Outdoor" title="Shop Outdoor" height="1600" width="3360"></a></div><div id="slider545942170" class="slider section horizontal   no-infinite-scroll vue-ecm-slider four-across-slider ecm-component-wrapper ecm-slider-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile" data-scroller="{duration:350, pageSize:1, easing:dojo.fx.easing.cubicInOut}"><!--[--><section tabindex="0" class="hooper ecm-slider-component slider section horizontal   no-infinite-scroll vue-ecm-slider four-across-slider ecm-component-wrapper ecm-slider-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile" data-style="ecm-slider" id="ecm-slider-data-slider545942170"><div class="hooper-list"><ul class="hooper-track" style="transform: translate(0px, 0);"><li class="hooper-slide is-active" style="width: 25%" aria-hidden="false"><a href="https://www.williams-sonoma.com/shop/electrics/pizza-ovens/?cm_re=hpbanner7-_-default-_-shop_ooni" target="_self"><img src="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202616/2718/001/001.jpg" loading="lazy" alt="Shop Ooni" title="Shop Ooni" height="1030" width="740"></a></li><li class="hooper-slide is-active" style="width: 25%" aria-hidden="false"><a href="https://www.williams-sonoma.com/shop/outdoor/outdoor-cookware/?cm_re=hpbanner8-_-default-_-shop_outdoor_cookware" target="_self"><img src="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202614/3305/001/012.jpg" loading="lazy" alt="Shop Outdoor Cookware" title="Shop Outdoor Cookware" height="993" width="740"></a></li><li class="hooper-slide is-active" style="width: 25%" aria-hidden="false"><a href="https://www.williams-sonoma.com/shop/outdoor/outdoor-grill-tools-accessories/?cm_re=hpbanner8-_-default-_-shop_grill_bbq_tools" target="_self"><img src="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202614/3305/001/003.jpg" loading="lazy" alt="Shop Grill Tools" title="Shop Grill Tools" height="993" width="740"></a></li><li class="hooper-slide is-active" style="width: 25%" aria-hidden="false"><a href="https://www.williams-sonoma.com/shop/food/meat/?cm_re=hpbanner8-_-default-_-shop_food_delivered" target="_self"><img src="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202614/3305/001/006.jpg" loading="lazy" alt="Shop Meats" title="Shop Meats" height="994" width="740"></a></li><li class="hooper-slide is-next" style="width: 25%" aria-hidden="true"><a href="https://www.williams-sonoma.com/shop/food/bbq---grilling-sauces+seasonings---rubs+food-all-pantry/producttype-m-product-type-ff000102060f15222d343cfe2026202020262020-2/?cm_re=hpbanner8-_-default-_-shop_bbq_rubs_seasonings" target="_self"><img src="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202614/3305/001/007.jpg" loading="lazy" alt="Shop BBQ Sauces and Rubs" title="Shop BBQ Sauces and Rubs" height="993" width="740"></a></li></ul><!--[--><!----><div class="hooper-navigation"><button class="hooper-prev" type="button"><svg class="icon icon-arrowLeft" viewBox="0 0 24 24" width="24px" height="24px"><title>Arrow Left</title><path d="M0 0h24v24H0z" fill="none"></path><path d="M15.41 16.59L10.83 12l4.58-4.59L14 6l-6 6 6 6 1.41-1.41z"></path></svg></button><button class="hooper-next" type="button"><svg class="icon icon-arrowRight" viewBox="0 0 24 24" width="24px" height="24px"><title>Arrow Right</title><path d="M0 0h24v24H0z" fill="none"></path><path d="M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z"></path></svg></button></div><!--]--><div class="hooper-liveregion hooper-sr-only" .aria-live="polite" .aria-atomic="true">Item 1 of 5</div></div></section><!--]--></div><div id="mbox-2024781753" class="padding-l ecm-component-wrapper ecm-mbox-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile"><div class="mboxDefault"></div><noscript id="content-script-2" data-tag-name="script" type="text/javascript">&quot;\n mboxCreate(\&quot;#mbox-2024781753\&quot;,&#39;&#39;);\n\n &quot;</noscript></div><div id="imagerollover-1012400070" class="section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile module-inset-hero-image padding-s"><img src="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202612/2213/001/002.jpg" loading="lazy" height="60" width="3104"></div><div class="ecm-component-wrapper ecm-column-control responsive-devicetype-desktop responsive-devicetype-not-mobile parsys_column wsi-colctrl-lt3a padding-l"><div class="parsys_column wsi-colctrl-lt3a-c0"><div id="imagerollover-1051585704" class="section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile"><a href="https://www.williams-sonoma.com/shop/holidays/mothers-day/?cm_re=hpbanner7-_-default-_-shop_mothers_day" target="_self"><img src="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202616/2239/001/009.jpg" loading="lazy" alt="Shop Mother&#39;s Day" title="Shop Mother&#39;s Day" height="1322" width="1003"></a></div></div><div class="parsys_column wsi-colctrl-lt3a-c1"><div id="imagerollover1760581533" class="section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile"><a href="https://www.williams-sonoma.com/shop/holidays/patriotic/?cm_re=hpbanner7-_-default-_-shop_fourth_july" target="_self"><img src="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202616/2239/001/012.jpg" loading="lazy" alt="Shop Fourth of July" title="Shop Fourth of July" height="1322" width="1003"></a></div></div><div class="parsys_column wsi-colctrl-lt3a-c2"><div id="imagerollover1760581535" class="section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile"><a href="https://www.williams-sonoma.com/shop/holidays/fathers-day/?cm_re=hpbanner7-_-default-_-shop_fathers_day" target="_self"><img src="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202616/2239/001/013.jpg" loading="lazy" alt="Shop Father&#39;s Day" title="Shop Father&#39;s Day" height="1322" width="1003"></a></div></div></div><div style="clear:both;"></div><div id="mbox-298438906" class="hp-content-zone-registry-feature ecm-component-wrapper ecm-mbox-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile"><div class="mboxDefault"></div><noscript id="content-script-3" data-tag-name="script" type="text/javascript">&quot;\n mboxCreate(\&quot;#mbox-298438906\&quot;,&#39;&#39;);\n\n &quot;</noscript></div><div id="mbox-843705176" class="padding-l ecm-component-wrapper ecm-mbox-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile"><div class="mboxDefault"></div><noscript id="content-script-4" data-tag-name="script" type="text/javascript">&quot;\n mboxCreate(\&quot;#mbox-843705176\&quot;,&#39;&#39;);\n\n &quot;</noscript></div><div id="imagerollover149676077" class="section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile module-inset-hero-image padding-s"><a href="https://www.williams-sonoma.com/pages/mywilliamssonoma.html" target="_self"><img src="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202529/1036/061/936.jpg" loading="lazy" alt="The Instagram Shop" title="The Instagram Shop" height="61" width="3104"></a></div><div id="vuereference-386966091 " class="section vuereference padding-60 ecm-component-wrapper ecm-vue-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile"><div class="vue-reference-component Curalate" data-name="Curalate" data-props="[{&quot;attributeName&quot;:&quot;uniqueLabel&quot;,&quot;attributeValue&quot;:&quot;main_page&quot;}]"><div data-style="vue-component-wrapper" class="vueComponentWrapper"><span uniqueusername uniquelabel="main_page" ismobileview="false" style="display:none;"> Curalate is not enabled! </span></div></div></div><div id="vuereference-1670179083 " class="section vuereference padding-60 ecm-component-wrapper ecm-vue-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile"><div class="vue-reference-component WsiRecs" data-name="WsiRecs" data-props="[{&quot;attributeName&quot;:&quot;pageTypeName&quot;,&quot;attributeValue&quot;:&quot;HPTRENDING&quot;}]"><div data-style="vue-component-wrapper" class="vueComponentWrapper"><!----></div></div></div><div id="vuereference-782307409 " class="section vuereference padding-60 ecm-component-wrapper ecm-vue-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile"><div class="vue-reference-component WsiRecs" data-name="WsiRecs" data-props="[{&quot;attributeName&quot;:&quot;pageTypeName&quot;,&quot;attributeValue&quot;:&quot;HPRVI&quot;}]"><div data-style="vue-component-wrapper" class="vueComponentWrapper"><!----></div></div></div><div id="mbox-1107957017" class="ecm-component-wrapper ecm-mbox-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile"><div class="mboxDefault"><div id="imagerollover-947847372" class="section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile module-inset-hero-image padding-s"><img src="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202529/1036/028/621.jpg" loading="lazy" height="61" width="3104"></div><div class="ecm-component-wrapper ecm-column-control responsive-devicetype-desktop responsive-devicetype-not-mobile parsys_column wsi-colctrl-lt8a padding-l"><div class="parsys_column wsi-colctrl-lt8a-c0"><div id="imagerollover-1106989083" class="section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile"><a href="https://www.williams-sonoma.com/pages/williams-sonoma-home/?cm_ven=crossbrandreferral&amp;cm_cat=WS_&amp;cm_pla=xbrandevent&amp;cm_ite=evergreenfooter" target="_blank"><img src="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202550/2823/001/006.jpg" loading="lazy" alt="WSH" title="WSH" height="433" width="346"></a></div></div><div class="parsys_column wsi-colctrl-lt8a-c1"><div id="imagerollover1286923075" class="section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile"><a href="https://www.potterybarn.com/?cm_ven=crossbrandreferral&amp;cm_cat=WS_&amp;cm_pla=xbrandevent&amp;cm_ite=evergreenfooter" target="_blank"><img src="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202550/2823/001/005.jpg" loading="lazy" alt="PB" title="PB" height="433" width="346"></a></div></div><div class="parsys_column wsi-colctrl-lt8a-c2"><div id="imagerollover562301163" class="section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile"><a href="https://www.potterybarnkids.com/?cm_ven=crossbrandreferral&amp;cm_cat=WS_&amp;cm_pla=xbrandevent&amp;cm_ite=evergreenfooter" target="_blank"><img src="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202550/2823/001/001.jpg" loading="lazy" alt="PBK" title="PBK" height="433" width="346"></a></div></div><div class="parsys_column wsi-colctrl-lt8a-c3"><div id="imagerollover-374415619" class="section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile"><a href="https://www.pbteen.com/?cm_ven=crossbrandreferral&amp;cm_cat=WS_&amp;cm_pla=xbrandevent&amp;cm_ite=evergreenfooter" target="_blank"><img src="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202550/2823/001/004.jpg" loading="lazy" alt="PT" title="PT" height="433" width="346"></a></div></div><div class="parsys_column wsi-colctrl-lt8a-c4"><div id="imagerollover193221779" class="section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile"><a href="https://www.westelm.com/?cm_ven=crossbrandreferral&amp;cm_cat=WS_&amp;cm_pla=xbrandevent&amp;cm_ite=evergreenfooter" target="_blank"><img src="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202550/2823/001/003.jpg" loading="lazy" alt="WE" title="WE" height="433" width="346"></a></div></div><div class="parsys_column wsi-colctrl-lt8a-c5"><div id="imagerollover-1756605859" class="section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile"><a href="https://www.markandgraham.com/?cm_ven=crossbrandreferral&amp;cm_cat=WS_&amp;cm_pla=xbrandevent&amp;cm_ite=evergreenfooter" target="_blank"><img src="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202550/2823/001/007.jpg" loading="lazy" alt="Mark &amp; Graham" title="Mark &amp; Graham" height="433" width="346"></a></div></div><div class="parsys_column wsi-colctrl-lt8a-c6"><div id="imagerollover-1525901341" class="section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile"><a href="https://www.rejuvenation.com/?cm_ven=crossbrandreferral&amp;cm_cat=WS_&amp;cm_pla=xbrandevent&amp;cm_ite=evergreenfooter" target="_blank"><img src="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202550/2823/001/002.jpg" loading="lazy" alt="Rejuvenation" title="Rejuvenation" height="433" width="346"></a></div></div><div class="parsys_column wsi-colctrl-lt8a-c7"><div id="imagerollover2026668813" class="section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile"><a href="https://www.greenrow.com/?cm_ven=crossbrandreferral&amp;cm_cat=WS_&amp;cm_pla=xbrandevent&amp;cm_ite=evergreenfooter" target="_blank"><img src="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202550/2823/001/008.jpg" loading="lazy" alt="GreenRow &gt;" title="GreenRow &gt;" height="433" width="346"></a></div></div></div><div style="clear:both;"></div></div><noscript id="content-script-5" data-tag-name="script" type="text/javascript">&quot;\n mboxCreate(\&quot;#mbox-1107957017\&quot;,&#39;&#39;);\n\n &quot;</noscript></div><div id="text-296213528" class="text section hp-content-zone-pzn-product-recs ecm-component-wrapper ecm-text-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile"></div></div></div><!----></div></div><div class="mobileContentWrapper" style="display:none;"><div><div class="ecm-content-wrapper" data-style="ecm-content-wrapper"><div data-page-title="041826 Mobile Homepage" class="cq-ecm-pages responsive-homepage"><div id="mbox732171364" class="padding-s ecm-component-wrapper ecm-mbox-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile"><div class="mboxDefault"></div><noscript id="content-script-0" data-tag-name="script" type="text/javascript">&quot;\n mboxCreate(\&quot;#mbox732171364\&quot;,&#39;&#39;);\n\n &quot;</noscript></div><div class="section video vimeo-video-thumbnail mobile-video-13-17-aspect-ratio ecm-component-wrapper ecm-image-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile" id="video-1109793000"><div class="videoThumbnail modal"><div class="thumbnailContent"></div><div class="modalHook" id="id1776381298791"><div class="responsive-video-wrapper"><!--[--><div style="opacity:1;pointer-events:auto;transition:opacity 0.5s ease-in-out;" class="responsiveVideo"><img src="https://assets.wsimgs.com/wsimgs/rk/images/dp/ecm/202616/0825/001/005.jpg" alt="https://player.vimeo.com/video/1182771501?h=98c8b39d86&amp;autoplay=true&amp;byline=0&amp;title=0&amp;loop=true&amp;autopause=false&amp;muted=1&amp;controls=0" class="video-thumbnail" fetchpriority="high"></div><div style="opacity:0;pointer-events:none;transition:opacity 0.5s ease-in-out;" class="responsiveVideo" data-style="vimeo-video"></div><a href="https://www.williams-sonoma.com/shop/electrics/breville-mixed-metals/?cm_re=hphero-_-default-_-shop_breville_mixed_metals" style="display:block;position:absolute;top:0;left:0;width:100%;height:100%;z-index:1;" aria-label="Vimeo video link" class="vimeo-video-link"></a><!--]--></div></div></div></div><div id="imagerollover-509941881" class="section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile padding-l"><a href="https://www.williams-sonoma.com/shop/electrics/breville-mixed-metals/?cm_re=hphero-_-default-_-shop_breville_kelly_wearstler" target="_self"><!----></a></div><div id="imagerollover-2047701779" class="section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile padding-m"><a href="https://www.williams-sonoma.com/shop/sale-special-offer/premier-cookware/?cm_re=hpbanner1-_-default-_-shop_cookware_event" target="_self"><!----></a></div><div id="imagerollover644393829" class="section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile padding-m"><a href="https://www.williams-sonoma.com/shop/sale-special-offer/hestan+premier-view-all/brand-attr-m-brands-ff0013fe5f-1/?cm_re=hpbanner1-_-default-_-shop_hestan_promo" target="_self"><!----></a></div><div id="imagerollover-1176428935" class="section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile padding-s module-inset-hero-image"><!----></div><div id="slider-244199361" class="slider section horizontal   vue-ecm-slider no-infinite-scroll sm-one-half-slider padding-l ecm-component-wrapper ecm-slider-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile" data-scroller="{duration:350, pageSize:1, easing:dojo.fx.easing.cubicInOut}"><!--[--><!----><!--]--></div><div id="imagerollover2054111348" class="section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile"><a href="https://www.williams-sonoma.com/pages/williams-sonoma/tabletop-bar/set-your-table/?cm_re=hpbanner2-_-default-_-shop_table_setting_inspo" target="_self"><!----></a></div><div id="imagerollover-1717890845" class="section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile padding-m"><a href="https://www.williams-sonoma.com/shop/tabletop-glassware-bar/tabletop-dinnerware-sets/sanderson-country-woodland/?cm_re=hpbanner3-_-default-_-shop_tabletop_sanderson" target="_self"><!----></a></div><div class="ecm-component-wrapper ecm-column-control responsive-devicetype-not-desktop responsive-devicetype-mobile parsys_column wsi-colctrl-lt2a col-ctrl-nowrap padding-l"><div class="parsys_column wsi-colctrl-lt2a-c0"><div id="imagerollover1499079594" class="section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile padding-m"><a href="https://www.williams-sonoma.com/shop/tabletop-glassware-bar/tabletop-dinnerware-sets/famille-rose/?cm_re=hpbanner2-_-default-_-shop_famille_rose" target="_self"><!----></a></div><div id="imagerollover1732925402" class="section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile"><a href="https://www.williams-sonoma.com/shop/tabletop-glassware-bar/aerin-meadow-lace+ws-aerin/collection-m-collection-ff0001020304060d1efe2020-1/?cm_re=shopbanner-_-default-_-dinnerware_collections_aerin_meadow_lace" target="_self"><!----></a></div></div><div class="parsys_column wsi-colctrl-lt2a-c1"><div id="imagerollover-427872853" class="section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile padding-m"><a href="https://www.williams-sonoma.com/shop/tabletop-glassware-bar/tabletop-dinnerware-sets/limone-dinnerware/?cm_re=hpbanner3-_-default-_-shop_limone_collection" target="_self"><!----></a></div><div id="imagerollover-902336138" class="section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile"><a href="https://www.williams-sonoma.com/shop/tabletop-glassware-bar/tabletop-dinnerware-sets/bordalo-pinheiro/?cm_re=hpbanner2-_-default-_-shop_bordallo_pinheiro" target="_self"><!----></a></div></div></div><div style="clear:both;"></div><div id="imagerollover552433949" class="section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile"><a href="https://www.williams-sonoma.com/products/delonghi-primadonna-aromatic-fully-automatic-espresso-machine/?cm_re=hpbanner4-_-default-_-shop_delonghi_primadonna" target="_self"><!----></a></div><div id="imagerollover-1191242213" class="section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile padding-m"><a href="https://www.williams-sonoma.com/shop/electrics/espresso-makers/?cm_re=hpbanner4-_-default-_-shop_espresso_machines" target="_self"><!----></a></div><div id="slider-578249258" class="slider section horizontal   vue-ecm-slider no-infinite-scroll sm-one-half-slider padding-l ecm-component-wrapper ecm-slider-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile" data-scroller="{duration:350, pageSize:1, easing:dojo.fx.easing.cubicInOut}"><!--[--><!----><!--]--></div><div id="imagerollover-1903457339" class="section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile"><a href="https://www.williams-sonoma.com/shop/electrics/countertop-ovens+toasters+countertop-oven-accessories+electrics-breville/producttype-m-product-type-ff000b101823283a4149fe20202020-3/?cm_re=hpbanner4-_-default-_-shop_breville_ovens" target="_self"><!----></a></div><div id="imagerollover-1860144727" class="section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile padding-l"><a href="https://www.williams-sonoma.com/pages/virtual-events-and-in-store-classes/skills-series/?cm_re=hpbanner4-_-default-_-shop_skill_series" target="_self"><!----></a></div><div id="imagerollover1739634683" class="section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile module-inset-hero-image padding-s"><!----></div><div id="imagerollover1777330495" class="section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile padding-m module-inset-hero-image"><a href="https://www.williams-sonoma.com/shop/electrics/electrics-kitchenaid/?cm_re=hpbanner5-_-default-_-shop_kitchenaid" target="_self"><!----></a></div><div id="imagerollover-1657147960" class="section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile module-inset-hero-image padding-l"><a href="https://www.williams-sonoma.com/shop/bakeware/bakeware-williams-sonoma/?cm_re=hpbanner5-_-default-_-shop_ws_bakeware" target="_self"><!----></a></div><div id="imagerollover-427872903" class="section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile padding-l"><a href="https://www.williams-sonoma.com/shop/food/oakville-grocery/?cm_re=hphero-_-default-_-shop_oakville_grocery" target="_self"><!----></a></div><div id="imagerollover-356845913" class="section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile padding-s module-inset-hero-image"><!----></div><div id="slider-1799623746" class="slider section horizontal   vue-ecm-slider no-infinite-scroll sm-one-half-slider padding-l ecm-component-wrapper ecm-slider-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile" data-scroller="{duration:350, pageSize:1, easing:dojo.fx.easing.cubicInOut}"><!--[--><!----><!--]--></div><div id="imagerollover-1914871751" class="section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile padding-m"><a href="https://www.williams-sonoma.com/shop/outdoor/?cm_re=hpbanner6-_-default-_-shop_outdoor" target="_self"><!----></a></div><div id="slider-240466886" class="slider section horizontal   vue-ecm-slider no-infinite-scroll sm-one-half-slider padding-l ecm-component-wrapper ecm-slider-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile" data-scroller="{duration:350, pageSize:1, easing:dojo.fx.easing.cubicInOut}"><!--[--><!----><!--]--></div><div id="imagerollover1057237217" class="section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile padding-s module-inset-hero-image"><!----></div><div id="slider-1898267776" class="slider section horizontal   vue-ecm-slider no-infinite-scroll sm-one-half-slider padding-l ecm-component-wrapper ecm-slider-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile" data-scroller="{duration:350, pageSize:1, easing:dojo.fx.easing.cubicInOut}"><!--[--><!----><!--]--></div><div id="mbox735429590" class="hp-content-zone-registry-feature ecm-component-wrapper ecm-mbox-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile"><div class="mboxDefault"></div><noscript id="content-script-1" data-tag-name="script" type="text/javascript">&quot;\n mboxCreate(\&quot;#mbox735429590\&quot;,&#39;&#39;);\n\n &quot;</noscript></div><div id="imagerollover-1970952009" class="section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile module-inset-hero-image padding-s"><a href="https://www.williams-sonoma.com/pages/mywilliamssonoma.html" target="_self"><!----></a></div><div id="vuereference-2073716294 " class="section vuereference padding-l ecm-component-wrapper ecm-vue-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile"><div class="vue-reference-component Curalate" data-name="Curalate" data-props="[{&quot;attributeName&quot;:&quot;uniqueLabel&quot;,&quot;attributeValue&quot;:&quot;main_page&quot;}]"><div data-style="vue-component-wrapper" class="vueComponentWrapper"><span uniqueusername uniquelabel="main_page" ismobileview="false" style="display:none;"> Curalate is not enabled! </span></div></div></div><div id="vuereference-644649178 " class="section vuereference padding-l ecm-component-wrapper ecm-vue-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile"><div class="vue-reference-component WsiRecs" data-name="WsiRecs" data-props="[{&quot;attributeName&quot;:&quot;pageTypeName&quot;,&quot;attributeValue&quot;:&quot;HPTRENDING&quot;}]"><div data-style="vue-component-wrapper" class="vueComponentWrapper"><!----></div></div></div><div id="vuereference-1188133629 " class="section vuereference padding-l ecm-component-wrapper ecm-vue-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile"><div class="vue-reference-component WsiRecs" data-name="WsiRecs" data-props="[{&quot;attributeName&quot;:&quot;pageTypeName&quot;,&quot;attributeValue&quot;:&quot;HPRVI&quot;}]"><div data-style="vue-component-wrapper" class="vueComponentWrapper"><!----></div></div></div><div id="imagerollover-1743867630" class="section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile module-inset-hero-image padding-s"><!----></div><div id="slider1282002112" class="slider section horizontal   vue-ecm-slider sm-one-half-slider no-infinite-scroll padding-l ecm-component-wrapper ecm-slider-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile" data-scroller="{duration:350, pageSize:1, easing:dojo.fx.easing.cubicInOut}"><!--[--><!----><!--]--></div><div id="text-200335284" class="text section hp-content-zone-pzn-product-recs ecm-component-wrapper ecm-text-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile"></div></div></div></div></div><div class="ecm-content-script-container"></div><div class="ecm-content-style-container"></div></div><!----><!----><!----><!--]--><!----></div><div data-test-id="design-platform-catchall" class="hide mb-0 mb-1 mb-2 mb-3 mb-4 mb-5 mt-0 mt-1 mt-2 mt-3 mt-4 mt-5 $
    ml-0 ml-1 ml-2 ml-3 ml-4 ml-5 mr-0 mr-1 mr-2 mr-3 mr-4 mr-5 m-0 m-1 m-2 m-3 m-4 m-5
    pb-0 pb-1 pb-2 pb-3 pb-4 pb-5 pt-0 pt-1 pt-2 pt-3 pt-4 pt-5
        pl-0 pl-1 pl-2 pl-3 pl-4 pl-5 pr-0 pr-1 pr-2 pr-3 pr-4 pr-5 p-0 p-1 p-2 p-3 p-4 p-5"></div></div><div data-style="ecm-content-for-header" style="display:none;"><!--[--><div class="responsive-content responsive-content-block global-wide-banner-bottom-1" location="global-wide-banner-bottom-1" data-style="content"><div id="global-wide-banner-bottom-1-container" data-test="ecm-content-container"><div><div class="cq-ecm-pages desktop-banners"> 
 <div id="" class=" parsys_column wsi-colctrl-lt2a global-split-banner"> 
  <div class="parsys_column wsi-colctrl-lt2a-c0 "> 
   <div class="flipper common-slideshow section"> 
    <div class="arrows"> 
    </div> 
    <div id="common-slideshow130655820" class="slideshow
         &amp;nbsp 
        no-infinite-scroll
        " data-slideshow="{ autoplay:true,
                autopause:false, delay:6000,
                duration:850, transition:'fade',
                repeat:'loop', easing:dojo.fx.easing.cubicInOut
                 }"> 
     <div class="slide " style="display: none; opacity: 1; "> 
      <div class="s1b"> 
       <div id="text712550239" class="text section  "> 
        <p><span class="font-roboto-normal"><span class="size-four">Free Shipping on Cookware, Electrics, Cutlery &amp; More.&nbsp;<a href="https://www.williams-sonoma.com/shop/sale-special-offer/free-shipping/?cm_re=sitewidebanner-_-default-_-global_free_shipping_tiptop" target="_self" rel="noopener noreferrer"><span class="font-roboto-normal"><b>SHOP NOW</b> →</span></a></span></span></p> 
       </div> 
      </div> 
     </div> 
     <div class="slide " style="display: none; opacity: 1; "> 
      <div class="s1b"> 
       <div id="text-910819147" class="text section  "> 
        <p><span class="font-roboto-normal"><span class="size-four">See if you’re pre-approved – Earn 10% in rewards&sup1; today with a Williams Sonoma Visa.&nbsp;<a href="https://www.williams-sonoma.com/ccvalueprop/?fromPageType=Homepage&amp;userAction=LearnMore&amp;fromPageLoc=TippyTop" target="_self" rel="noopener noreferrer"><b>LEARN MORE</b> →</a></span></span></p> 
       </div> 
      </div> 
     </div> 
     <div class="slide " style="display: none; opacity: 1; "> 
      <div class="s1b"> 
       <div id="text919273232" class="text section  "> 
        <p><span class="font-roboto-normal"><span class="size-four">Williams Sonoma Reserve - Enjoy free shipping on eligible purchases*.&nbsp;<a href="https://www.williams-sonoma.com/customer-service/reserve/?cm_re=sitewidebanner-_-default-_-global_ws_reserve_tiptop" target="_self" rel="noopener noreferrer"><span class="font-roboto-normal"><b>JOIN NOW</b> →</span></a></span></span></p> 
       </div> 
      </div> 
     </div> 
     <ul class="positioners  hidden"> 
      <li class="gotoSlide">•</li> 
      <li class="gotoSlide">•</li> 
      <li class="gotoSlide">•</li> 
     </ul> 
     <ul class="controls"> 
      <li class="rewind">Go to First Slide</li> 
      <li class="prev">Previous Slide</li> 
      <li class="pause">Pause</li> 
      <li class="play">Play</li> 
      <li class="next">Next Slide</li> 
      <li class="fastForward">Go to Last Slide</li> 
     </ul> 
    </div> 
   </div> 
  </div> 
  <div class="parsys_column wsi-colctrl-lt2a-c1  "> 
   <div id="customjscontent941386955" class="customJSContent-details  "> 
    <dl class="customjscontent-details"> 
     <dd class="customjscontent-description"> 
     </dd> 
     <dd class="customjscontent-description"> 
      <div class="dropdown"> 
       <button id="globalBtoBDropdownButton" class="dropbtn">Events &amp; Services</button> 
       <div id="globalDropdownBtoB" class="dropdown-content"> 
        <a class="events-dropdown">Events</a> 
        <a href="https://www.williams-sonoma.com/pages/virtual-events-and-in-store-classes/in-store-events/?cm_type=gnav">In-Store Events</a> 
        <a href="https://www.williams-sonoma.com/pages/virtual-events-and-in-store-classes/skills-series/?cm_type=gnav">Skills Series</a> 
        <a href="https://www.williams-sonoma.com/pages/virtual-events-and-in-store-classes/book-tours/?cm_type=gnav">Book Tours</a> 
        <a href="https://www.williams-sonoma.com/pages/virtual-events-and-in-store-classes/virtual-events/?cm_type=gnav">Virtual Events</a> 
        <a href="https://www.williams-sonoma.com/pages/virtual-events-and-in-store-classes/private-events/?cm_type=gnav">Private Events</a> 
        <a class="services-dropdown">Services</a> 
        <a href="https://www.williams-sonoma.com/pages/williams-sonoma/design-services/?cm_type=gnav">Free Kitchen Design Services</a> 
        <a href="https://www.williams-sonoma.com/appointments/registry-virtual-choice/?cm_type=gnav">Free Registry Services</a> 
        <a href="https://www.williams-sonoma.com/pages/williams-sonoma/b2b/overview/?cm_type=gnav">Free Trade Services</a> 
        <a href="https://www.williams-sonoma.com/pages/williams-sonoma/cutlery/3-ways-to-sharpen-knives/?cm_type=gnav">Knife Sharpening: In-Store &amp; Online</a> 
       </div> 
      </div> 
     </dd> 
    </dl> 
   </div> 
  </div> 
 </div> 
 <div style="clear:both"></div>  
</div></div></div><div class="ecm-content-script-container"></div><div class="ecm-content-style-container"></div></div><!--]--></div></div></div><script>window.__INITIAL_STATE__={"content":{"activeTests":{},"activeProperties":{"isBrowseMode":"1","isMobile":"0","isSeoBot":"0"},"applicationUri":"https:\u002F\u002Frk-internal-www.williams-sonoma.com\u002F","clientApplicationUri":"https:\u002F\u002Fwww.williams-sonoma.com\u002F","assetUris":{"static":"https:\u002F\u002Fwww.williams-sonoma.com\u002F.static\u002F","scripts":"https:\u002F\u002Fwww.williams-sonoma.com\u002F.static\u002F","images":"https:\u002F\u002Fassets.wsimgs.com\u002Fwsimgs\u002Frk\u002Fimages\u002Fdp\u002F","ecmImages":"https:\u002F\u002Fassets.wsimgs.com\u002Fwsimgs\u002Frk\u002Fimages\u002Fdp\u002F"},"concept":"WS","market":"US","analytics":{"countryCode":"US","currencyCode":"USD","market":"USA"},"url":"\u002F","config":{"browseMode":[{"key":"curalate","override":{"isEnabled":false}}],"assets":{"content-ws.css":"dist\u002Fcss\u002Fcontent\u002Fws\u002Fcontent-ws-eb482c8371364be7ca830481a7ee2c7a94c3e2d7.css"},"useEcmMetaData":true,"applyMetaData":true,"homepageMetaData":{"title":"Housewares + Kitchenware Store | Williams Sonoma","description":"Shop premium kitchenware and housewares at Williams Sonoma - in-stores and online. Explore our curated selection of gourmet food, top quality cookware, and more for your culinary adventures.","robots":"index,follow"},"metaTags":[{"name":"google-site-verification","content":"aVsvQnG-txdAPBY9PsJ2RuetV2DdMJfxZA0hcTxQnAM"}],"designChat":{"enabled":false,"ctaEligible":true,"contactPoint":"williams-sonoma-wismo","copy":{"label":"","title":"Chat","url":"#","position":"right"},"iOSChatUrl":"https:\u002F\u002Fbcrw.apple.com\u002Fmessages\u002Fapi\u002Fmessageprofiles\u002Fredirecthelper?service=iMessage&recipient=urn:biz:1401900c-d63a-4184-a804-3a480c4ddfbd2","nonIosSmsLink":"sms:+14153294069","mobileAbTestEnabled":false,"abTestEnabled":false,"isAgentAvailabilityCheckDisabled":true,"vendorUrl":"https:\u002F\u002Fwestelm.quiq-api.com\u002Fapp\u002Fwebchat\u002Findex.js","forceQueryParamEnabled":false,"isWismoChatEnabled":true,"isQuiqV2VersionEnabled":true,"quiqV2src":"https:\u002F\u002Fwsi.quiq-api.com\u002Fapp\u002Fchat-ui\u002Findex.js","quiqV2PageConfigurationId":"williams-sonoma-cs","isEnabledForRTCUser":false,"clickToOpenChat":{"hideDesignChatOnPages":[]}},"asideNavigation":[{"navigationTree":"recipes","title":"Recipes","titleUrl":"\u002Frecipe\u002F","isAccordion":false,"shouldRenderOnMobile":false,"path":"\u002Fpages\u002Ftips-and-ideas\u002F","excludedChildPaths":["juicing-101-how-to-make-fresh-healthy-juices-at-home","our-most-searched-kitchen-innovations"],"navItems":[{"navItems":[{"url":"\u002Frecipe\u002Fsearch\u002F?cm_type=lnav","label":"Recipe Search"},{"url":"\u002Faccount\u002Frecipe-box\u002F?cm_type=lnav","label":"Recipe Box"},{"url":"\u002Fsearch\u002Fresults.html?words=our_catalogx_sum1_26&activeTab=recipes","label":"Catalog Recipes"},{"url":"\u002Fshop\u002Fcooks-tools\u002Fbooks-view-all","label":"Cookbooks"}]},{"label":"Recipes by Course","navItems":[{"url":"\u002Frecipe\u002Fappetizers\u002F?cm_type=lnav","label":"Appetizers"},{"url":"\u002Frecipe\u002Fsoups\u002F?cm_type=lnav","label":"Soups"},{"url":"\u002Frecipe\u002Fsalads\u002F?cm_type=lnav","label":"Salads"},{"url":"\u002Frecipe\u002Fmain-courses\u002Fpasta-rice-and-grains\u002F?cm_type=lnav","label":"Pasta, Rice & Grains"},{"url":"\u002Frecipe\u002Fmain-courses\u002Fvegetables\u002F?cm_type=lnav","label":"Vegetables"},{"url":"\u002Frecipe\u002Fmain-courses\u002Fseafood\u002F?cm_type=lnav","label":"Seafood"},{"url":"\u002Frecipe\u002Fmain-courses\u002Fpoultry-and-game\u002F?cm_type=lnav","label":"Chicken & Poultry"},{"url":"\u002Frecipe\u002Fmain-courses\u002Fpork\u002F?cm_type=lnav","label":"Pork"},{"url":"\u002Frecipe\u002Fmain-courses\u002Fbeef-and-veal\u002F?cm_type=lnav","label":"Beef"},{"url":"\u002Frecipe\u002Fdesserts\u002F?cm_type=lnav","label":"Desserts"}]},{"label":"This Season","navItems":[{"url":"\u002Frecipe","label":"Cooking & Baking"},{"url":"\u002Fpages\u002Fwilliams-sonoma\u002Fin-season-now","label":"Seasonal Produce"},{"url":"\u002Fpages\u002Fwilliams-sonoma\u002Frecipes\u002Fdrinks","label":"Drinks"},{"url":"\u002Fpages\u002Fwilliams-sonoma\u002Fthe-art-of-entertaining\u002Ffood-entertaining-trends","label":"Food & Entertaining Trends"},{"url":"\u002Fpages\u002Fwilliams-sonoma\u002Foutdoor\u002Fplan-the-perfect-barbeque","label":"Plan the Perfect Barbecue"},{"url":"\u002Fpages\u002Fwilliams-sonoma\u002Ffood\u002Famerican-steakhouse","label":"American Steakhouse"},{"url":"\u002Fshop\u002Ffood\u002Fglobal-cuisines","label":"Global Cuisines"},{"url":"\u002Fshop\u002Fbakeware\u002Fbakeware-bread-shop","label":"The Bread Shop"}]},{"label":"Menus","navItems":[{"url":"\u002Frecipe\u002Fmenu\u002Fmothers-day-dinner","label":"Mother's Day Menu"},{"url":"\u002Frecipe\u002Fmenu\u002Ffathers-day-david-nayfeld","label":"David Nayfeld Father's Day Menu"},{"url":"\u002Frecipe\u002Fmenu\u002Fsheet-pan-dinners","label":"Sheet Pan Dinners"},{"url":"\u002Frecipe\u002Fmenu\u002Falfresco","label":"Alfreso Favorites"},{"url":"\u002Frecipe\u002Fmenu\u002Fbest-grilling-recipes","label":"Ultimate Summer Grilling Menu"},{"url":"\u002Fpages\u002Frecipe\u002Fcollections","label":"Recipe Collections"}]},{"label":"Featured Chefs & Celebrities","navItems":[{"url":"\u002Fpages\u002Fina-garten\u002F","label":"Ina Garten"},{"url":"\u002Fshop\u002Fcookware\u002Ftucci-greenpan\u002F?cm_type=lnav","label":"Stanley Tucci"},{"url":"\u002Fshop\u002Ffood\u002Ftrisha-yearwood\u002F","label":"Trisha Yearwood"},{"url":"\u002Fpages\u002Fwilliams-sonoma\u002Fcollaborations\u002Ftyler-florence\u002F","label":"Tyler Florence"},{"url":"\u002Fpages\u002Fws-chefs-collective\u002F?cm_type=lnav","label":"Chefs' Collective"},{"url":"\u002Fpages\u002Ftest-kitchen\u002F?cm_type=lnav","label":"Williams Sonoma Test Kitchen"}]},{"label":"Williams Sonoma Wine Shop","navItems":[{"url":"https:\u002F\u002Fwww.williams-sonomawine.com\u002Fstore\u002F","label":"Bottle Shop"},{"url":"https:\u002F\u002Fwww.williams-sonomawine.com\u002Fclub\u002F","label":"Wine Club"},{"url":"https:\u002F\u002Fpersonalize.williams-sonoma.com\u002F","label":"Personalized Wine"}]},{"label":"Resources","navItems":[{"url":"\u002Fshop\u002Fcutlery\u002Fknife-skills-guide\u002F?cm_type=lnav","label":"Knife Skills Guide"},{"url":"\u002Fpages\u002Frecipe\u002Fguide-to-apples.html?cm_type=lnav","label":"Guide to Apples"},{"url":"\u002Fshop\u002Ffood\u002Fguide-to-cheese\u002F?cm_type=lnav","label":"Guide to Cheese"},{"url":"\u002Fpages\u002Frecipe\u002Fguide-to-chocolate\u002F?cm_type=lnav","label":"Guide to Chocolate"},{"url":"\u002Frecipe\u002Ftip\u002Fall-about-eggs.html?cm_type=lnav","label":"Guide to Eggs"},{"url":"\u002Fpages\u002Frecipe\u002Fguide-to-lemons\u002F?cm_type=lnav","label":"Guide to Lemons"},{"url":"\u002Fpages\u002Fguide-to-olive-oil.html?cm_type=lnav","label":"Guide to Olive Oil"},{"url":"\u002Fpages\u002Fpasta-primer.html?cm_type=lnav","label":"Guide to Pasta"},{"url":"\u002Fpages\u002Fguide-to-pie.html?cm_type=lnav","label":"Guide to Pie"},{"url":"\u002Fpages\u002Fguide-to-tea.html?cm_type=lnav","label":"Guide to Tea"},{"url":"\u002Fpages\u002Fguide-to-wine-varietals.html?cm_type=lnav","label":"Guide to Wine"},{"url":"\u002Fpages\u002Ftips-and-ideas\u002Fjuicing-101-how-to-make-fresh-healthy-juices-at-home\u002F?cm_type=lnav","label":"Juicing 101"}]}]},{"navigationTree":"customerservice","title":"Customer Service","titleUrl":"\u002Fcustomer-service\u002F","isAccordion":true,"shouldRenderOnMobile":false,"label":"","path":"\u002Fcustomer-service","excludedChildPaths":[],"navItems":[{"label":"Track Your Order","navItems":[{"url":"\u002Fcustomer-service\u002Forder-shipment-tracking\u002F?cm_type=lnav","label":"Order Tracking"},{"url":"\u002Fcustomer-service\u002Fintl-order-tracking\u002F?cm_type=lnav","label":"International Order Tracking"}]},{"url":"\u002Faccount\u002F?cm_type=lnav","label":"My Account"},{"label":"Shipping & Returns","navItems":[{"url":"\u002Fcustomer-service\u002Fshipping-info.html?cm_type=lnav","label":"Shipping Info"},{"url":"\u002Fcustomer-service\u002Freturn\u002F?cm_type=lnav","label":"Returns"},{"url":"\u002Fcustomer-service\u002Freturns-and-exceptions.html?cm_type=lnav","label":"International Returns & Exceptions"}]},{"url":"\u002Fcustomer-service\u002Fprice-matching-policy.html?cm_type=lnav","label":"Price Match Policy"},{"label":"Credit Card Rewards","navItems":[{"url":"\u002Fccvalueprop\u002F?fromPageType=Site&userAction=LearnMore&fromPageLoc=CustomerService","label":"Williams Sonoma Key Rewards Credit Card"},{"url":"\u002Fpages\u002Fthe-key-rewards\u002F?cm_type=lnav","label":"The Key Rewards"}]},{"label":"Reserve Membership","navItems":[{"url":"\u002Fcustomer-service\u002Freserve\u002F?cm_type=lnav","label":"Reserve FAQs"},{"url":"\u002Fcustomer-service\u002Freserve\u002Fterms-and-conditions\u002F?cm_type=lnav","label":"Terms & Conditions"}]},{"url":"\u002Fcustomer-service\u002Fbuy-online-pick-up-in-store\u002F?cm_type=lnav","label":"Buy Online Pick Up In Store"},{"label":"Help Topics","navItems":[{"url":"\u002Fcustomer-service\u002Ffaq\u002F?cm_type=lnav","label":"General"},{"url":"\u002Fcustomer-service\u002Fregistry-faq.html?cm_type=lnav","label":"Registry"},{"url":"\u002Fcustomer-service\u002Fca-right-to-know\u002F?cm_type=lnav","label":"State Disclosures"},{"url":"\u002Fcustomer-service\u002Fintl-faq.html?cm_type=lnav","label":"International"},{"url":"\u002Fcustomer-service\u002Fassembly-instructions-product-manuals\u002F?cm_type=lnav","label":"Assembly Instructions"},{"url":"\u002Fcustomer-service\u002Fallstate-protection-plans\u002F?cm_type=lnav","label":"Allstate Protection Plan"}]},{"label":"Gift Services","navItems":[{"url":"\u002Fcustomer-service\u002Fgift-services\u002F?cm_type=lnav","label":"Gift Services"},{"url":"\u002Fcustomer-service\u002Fgift-services\u002Fgift-card-landing.html?cm_type=lnav","label":"Gift Cards"}]},{"url":"\u002Fshop\u002Fhome-furniture\u002Finterior-design-services\u002F?cm_type=lnav","label":"Free Design Services"},{"label":"Catalog & Email Settings","navItems":[{"url":"\u002Fcustomer-service\u002Fcatalog-request\u002F?cm_type=lnav","label":"Catalog Request"},{"url":"\u002Fcustomer-service\u002Fmailing-options\u002F?cm_type=lnav","label":"Catalog Mailing Options"},{"url":"\u002Fcustomer-service\u002Faddress-change\u002F?cm_type=lnav","label":"Catalog Address Change"},{"url":"\u002Fcustomer-service\u002Fecatalog.html?cm_type=ecatalog","label":"Williams Sonoma eCatalog"},{"url":"\u002Fcustomer-service\u002Femail-list\u002F?cm_type=lnav","label":"Join Our Email List"},{"url":"\u002Fcustomer-service\u002Femail-preferences\u002F?cm_type=lnav","label":"Manage Email Settings"}]},{"label":"Stores","navItems":[{"url":"\u002Fstores\u002F?cm_type=lnav","label":"Find a Store"},{"url":"\u002Fpages\u002Fvirtual-events-and-in-store-classes\u002Fin-store-events\u002F?cm_type=lnav","label":"In-Store Events"}]},{"url":"\u002Fcustomer-service\u002Femail-us\u002F?cm_type=lnav","label":"Contact Us"},{"label":"About Us","navItems":[{"url":"\u002Fcustomer-service\u002Fchuck-williams.html?cm_type=lnav","label":"Chuck Williams"},{"url":"\u002Fcustomer-service\u002Foriginal-sonoma-store.html?cm_type=lnav","label":"Our Original Sonoma Store"},{"url":"\u002Fcustomer-service\u002Fcareers.html?cm_type=lnav","label":"Careers"}]},{"label":"B2B Programs & Offers","navItems":[{"url":"\u002Fpages\u002Fwilliams-sonoma\u002Fb2b\u002Foverview\u002F?cm_type=lnav","label":"B2B Overview"},{"url":"\u002Ftrade-programs\u002Fchefs\u002Flanding.html?cm_type=lnav","label":"For Professional Chefs"},{"url":"\u002Fpages\u002Fwilliams-sonoma\u002Fb2b\u002Fcorporate-gifting\u002F?cm_type=lnav","label":"Corporate Gifting"},{"url":"\u002Fcustomer-service\u002Ffine-print.html?cm_type=lnav","label":"Fine Print"}]}]}],"assetsUrl":"https:\u002F\u002Fqark-images.wsimgs.com\u002Fwsimgs\u002Fqark\u002Fimages\u002Fdp\u002F","brand":"WS","currencyData":{"exchangeRate":1,"factor":1,"quoteId":1,"selectedCountry":"US","selectedCurrency":"USD"},"pricing":{"defaultLabels":{"clearance":"Clearance","discount":"Our Price","discountPercentage":"[disc_percentage]","regular":"Sugg. Price","sale":"Sale","special":"Our Price"},"mdmLabels":{"clearance":"Clearance","sale":"Sale","discount":"Our Price","discountPercentage":"[disc_percentage]","regular":"Sugg. Price"},"hideSalesUnderPercent":5,"showDiscountPercentage":false,"showMdmPriceLabels":true,"showPriceTypeBetweenPriceRanges":true,"showSaleLabel":true},"productCarousel":{"arrowsInside":true,"ratingEnabled":false,"verticalRviArrowsInside":false},"promotionVisibility":{"enabled":true,"ineligibleLocations":{"pipEnabled":false,"recommendationEnabled":false,"shopEnabled":false},"locations":{"pipEnabled":true,"recommendationEnabled":true,"shopEnabled":true},"additionalMessagePip":"price_with_offer","additionalMessageThumbnail":"price_with_offer","backOffInterval":10,"cutOffPercent":1,"eligibilityExcludeNLA":false,"ineligiblePipDisplayMessageCount":1,"ineligibleThumbnailDisplayMessageCount":1,"lazyLoadEnabled":false,"pipDisplayMessageCount":1,"retryMax":5,"thumbnailDisplayMessageCount":1,"visibilitySkuCount":100},"scrollToTop":{"desktop":{"isEnabled":true},"mobile":{"isEnabled":false}},"recommendation":{"common":{"isCrossSessionRviEnabled":true,"isRecsEnabled":true,"showSeeMoreLink":false,"wsiRecs":{"breakpoints":{"large":{"itemsToShow":4,"itemsToSlide":4},"medium":{"itemsToShow":4,"itemsToSlide":4},"small":{"itemsToShow":3,"itemsToSlide":3},"xSmall":{"itemsToShow":2.5,"itemsToSlide":2}},"recsHostUrl":"\u002Fsvc\u002Frecommendation\u002Fv2\u002F","favorite":{"buttonTextFavorited":"Add to Favorites","buttonTextUnfavorited":"Add to Favorites","isEnabled":true},"flyout":{"isEnabled":true,"durationInSeconds":4,"position":"right-top","style":"large"},"flags":{"isEnabled":true,"overrides":{"bestseller":{"isEnabled":true,"displayText":"","placement":"onImage"},"freeship":{"isEnabled":false,"placement":"belowProductPrice"}}}}},"commonThirdPartyRecommendation":{"constructor":{"key":"key_PysinTjKriGSD1Zl","podMapping":{"home-page":["home_page-desktop_trending","home_page-mobile_trending"]}}},"hpTrending":{"thirdPartyRecommendation":{"thirdPartyProviderId":"constructor","constructor":{"enabled":true,"isMobileEnabled":true,"isDesktopEnabled":true,"options":{"placementsToRequest":["home-page"],"maxNumResults":20},"ABTest":{"name":"contentRecommendationsHPTRENDING","activeVariant":"constructor","enabled":true}},"useCommonThirdPartyService":false},"showProductName":true,"showProductPricing":false,"showSeeMoreLink":true},"hp":{"showProductName":true,"showProductPricing":false}},"recommendationProductFlags":{"organic":{"displayText":"Best Seller","location":"onImage"}},"curalate":{"cmSrc":"hp_ugc","hostUrl":"https:\u002F\u002Fapi-2.curalate.com\u002Fv1\u002Fmedia\u002F","vendorDataSourceId":"JIFDZrBxfvocGDxJ","isEnabled":true,"uploaderText":"","showUploaderAbove":false,"hideUploaderWithNoContent":true,"headerText":"","useImageAsHeader":false,"headerAltText":"","headerImage":"https:\u002F\u002Fassets.wsimgs.com\u002Fwsimgs\u002Fab\u002Fimages\u002Fdp\u002Fecm\u002F202402\u002F1140\u002F001\u002F001.png","setHeaderTitleClickable":false,"subheadingText":"","showSubheading":false,"galleryLink":"\u002Fpages\u002Fmywilliamssonoma.html","brandHandle":"williams-sonoma","limit":12,"sort":"Optimized","uploaderAsset":" https:\u002F\u002Fassets.wsimgs.com\u002Fwsimgs\u002Frk\u002Fimages\u002Fi\u002F202048\u002F0003\u002Fimages\u002Fcommon\u002Fcuralate\u002FWS_pip_uploader_block.png ","scriptUrl":"https:\u002F\u002Fcdn.curalate.com\u002Fsites\u002Fwswilliamssonoma-d4zud2\u002Fsite\u002Flatest\u002Fsite.min.js","carouselSettings":{"defaultItemsToShow":3,"mobileCenterMode":false,"mobileInitialSlide":0,"mobileShowArrows":false,"showArrows":true,"breakpoints":{"small":{"itemsToShow":2.5},"medium":{"itemsToShow":4},"large":{"itemsToShow":4}}}},"cookies":{"international":"INTERNATIONAL","userNameCookie":"UI_USERNAME_COOKIE","loginCookie":"isLoginSuccessAnalyticsEventLogged"},"longConceptName":"Williams Sonoma","pixlee":{"apiKey":"5h0WYvBaJ3Ib21kYmVjT","carouselWidgetId":12628973,"galleryWidgetId":12629500,"isCarouselEnabled":true,"isGalleryEnabled":true},"social":{"facebook":{"appId":"200288196663029","fbLikeButtonEnabled":true},"pinterest":{"pinterestEnabled":true}},"smartBanner":{"isEnabled":true,"appStoreId":"1499531240"},"subBrands":{"brands":[{"brand_name":"Williams Sonoma","id":"WS","link":"\u002F?cm_sp=tnav-_-williams-sonoma-_-tab","conceptName":"Williams Sonoma","default":true,"brSearchAttribute":"Williams Sonoma","brFacetId":"spiritType|multi-select|Brand","urlParamKey":"sbkey"},{"brand_name":"Williams Sonoma Home","id":"WSH","link":"\u002Fpages\u002Fwilliams-sonoma-home\u002F?cm_sp=tnav-_-williams-sonoma-home-_-tab","conceptName":"Williams Sonoma Home","pages":["pages\u002Fwilliams-sonoma-home\u002F","m\u002Fpages\u002Fwilliams-sonoma-home\u002F","pages\u002Fwsh-design-services.html","customer-service\u002Fabout-us-wsh.html","customer-service\u002Fto-the-trade.html","request-swatches.html","customer-service\u002Fecatalog-wsh.html","\u002Fm\u002Fpages\u002Fecatalog-wsh.html","ecatalog-wshome","pages\u002Fhome-premier-event\u002Findex.html","pages\u002Fmywilliamssonoma-home.html","pages\u002Fdesign-inspiration","pages\u002Frobin-sleep-system","pages\u002Fws-home\u002Fdesign-school\u002Fincorporate-colors-into-your-home","pages\u002Fws-home\u002Fpillows-throws\u002Foutdoor-pillows","pages\u002Fhome-product-compare.html","shop-by-room-2","home-design-services-form","pages\u002Fws-home","pages\u002Fcurated-dining-set","pages\u002Fws-home\u002Fpartners\u002Frobert-lydia-mondavi","pages\u002Fbuild-the-perfect-bed","pages\u002Fsofa-buying-guide","pages\u002Fchoosing-a-dining-table","pages\u002FswatchTool.html"]}],"show_sub_brands_links":true,"subBrandSearchEnabled":true,"brSubBrandSearchFilterEnabled":false,"displayCTAforSubBrand":false,"persistMainBrandExperience":true},"customPageNotFound":{"enabled":true,"enableForced500TestStaticPage":true,"cta":{"label":"Shop Williams Sonoma","url":"shop\u002Fnew\u002Fnew-view-all\u002F"},"displayStaticMessage":"Sorry, looks like you've requested a page that does not exist or a link that is no longer available. Check that you haven't misspelled something in the domain name, and try again.","metadata":{"title":"404 - Page Not Found","description":"Page not found.","keywords":"404 page-not-found","robots":"noindex, nofollow"}},"videoSchemaIsEnabled":true,"ecm":{"headerEcmContentSlotsToFetchServerSide":{"desktop":["global-wide-banner-bottom-1"],"mobile":[]}},"aiFinder":[{"id":"espresso-finder","hostPages":["\u002Fshop\u002Felectrics\u002Fespresso-makers\u002F","\u002Fshop\u002Felectrics\u002Fcoffee-makers\u002F","\u002Fshop\u002Felectrics\u002Fcoffee-espresso-view-all\u002F"],"enabled":true,"pathMappingKey":"group","mock":false,"debugInfo":false,"apiBaseURL":"https:\u002F\u002Fai-services.wsgc.com\u002Fguided-experience","targetResultPage":{"reload":false,"URI":""},"convSearchTest":{"enabled":false,"abTest":{"enabled":false,"nameId":"productsSearchConvSearch","variationIdForTestGroup":"ConvSearchTest"}},"picturesInRow":3,"productGridConfiguration":3,"hintsBelowTextArea":true,"updateBottomButtonsStyles":true,"productComparison":{"enabled":true,"modalTitle":"Product Comparison","maxCompares":3,"compareButtonText":"Compare Items","compareItemsMessage":"Choose 2 or more products to compare","selectorButtonText":"Compare","selectorSelectedText":"Selected","serviceTimeout":10000,"defaultFeatureValue":"-","truthyFeatureValue":"Yes","showFavorites":true,"errorMessage":"This brew's not quite done. Please try again.","noImageText":"Error Loading Product","showProductPricing":true},"textareaMaxLength":500,"quizLaunchImageLocation":"subcat-shop-wide-banner-below-bc-5","textConstants":{"cta":{"back":"Back","backIcon":"ChevronLeftIcon","viewResult":"View Results","next":"Next","skip":"Skip","close":"Close","backTo":"","modifyAnswers":"Modify Answers","refresh":"Refresh"},"headerTitle":"Find the Right Coffee or Espresso Machine","loadingTitle":["Brewing up your perfect cup...","Still roasting the best options...","Almost there - adding the final crema!"],"overview":"Overview","recommendations":{"title":"Recommendations","resultsText":"results"},"required":"(required)","defaultPlaceholder":"Type here...","requiredAnswerErrorMessage":"Some required questions remain unanswered","noResultsMessage":"No matches yet! Refine your search, and let’s try again.","getConfigDataErrorMessage":"Something went wrong."}},{"id":"cutlery-finder","hostPages":["\u002Fshop\u002Fcutlery\u002Fall-cutlery\u002F"],"enabled":true,"pathMappingKey":"group","mock":false,"debugInfo":false,"apiBaseURL":"https:\u002F\u002Fai-services.wsgc.com\u002Fguided-experience","targetResultPage":{"reload":false,"URI":""},"convSearchTest":{"enabled":false,"abTest":{"enabled":false,"nameId":"productsSearchConvSearch","variationIdForTestGroup":"ConvSearchTest"}},"picturesInRow":3,"productGridConfiguration":3,"hintsBelowTextArea":true,"updateBottomButtonsStyles":true,"productComparison":{"enabled":false,"modalTitle":"Product Comparison","maxCompares":3,"compareButtonText":"Compare Items","compareItemsMessage":"Choose 2 or more products to compare","selectorButtonText":"Compare","selectorSelectedText":"Selected","serviceTimeout":10000,"defaultFeatureValue":"-","truthyFeatureValue":"Yes","showFavorites":true,"errorMessage":"Please try again.","noImageText":"Error Loading Product","showProductPricing":true},"textConstants":{"cta":{"back":"Back","backIcon":"ChevronLeftIcon","viewResult":"View Results","next":"Next","skip":"Skip","close":"Close","backTo":"","modifyAnswers":"Modify Answers","refresh":"Refresh"},"headerTitle":"Find the Right Knife for You","loadingTitle":["We are gathering your results...","Just a moment while we find your best match..."],"overview":"Overview","recommendations":{"title":"Recommendations","resultsText":"results"},"required":"(required)","defaultPlaceholder":"Type here...","requiredAnswerErrorMessage":"Some required questions remain unanswered","noResultsMessage":"No matches yet! Refine your search, and let’s try again.","getConfigDataErrorMessage":"Something went wrong."},"textareaMaxLength":500,"quizLaunchImageLocation":"subcat-shop-wide-banner-below-bc-5"},{"id":"bakeware-finder","hostPages":["\u002Fshop\u002Fbakeware\u002Fview-all-bakeware\u002F","\u002Fshop\u002Fbakeware\u002Fbakeware-sets\u002F","\u002Fshop\u002Fbakeware\u002Fcake-pans\u002F","\u002Fshop\u002Fbakeware\u002Fbread-pans-loaf-pans\u002F","\u002Fshop\u002Fbakeware\u002Fsheet-pans-cookie-sheets\u002F","\u002Fshop\u002Fbakeware\u002Fcupcake-muffin-pans\u002F","\u002Fshop\u002Fbakeware\u002Fcasseroles\u002F"],"enabled":true,"pathMappingKey":"group","mock":false,"debugInfo":false,"apiBaseURL":"https:\u002F\u002Fai-services.wsgc.com\u002Fguided-experience","targetResultPage":{"reload":false,"URI":""},"convSearchTest":{"enabled":false,"abTest":{"enabled":false,"nameId":"productsSearchConvSearch","variationIdForTestGroup":"ConvSearchTest"}},"picturesInRow":3,"productGridConfiguration":3,"hintsBelowTextArea":true,"updateBottomButtonsStyles":true,"productComparison":{"enabled":false,"modalTitle":"Compare Products","maxCompares":3,"compareButtonText":"Compare Items","compareItemsMessage":"Choose 2 or more products to compare","selectorButtonText":"Compare","selectorSelectedText":"Compare","serviceTimeout":10000,"defaultFeatureValue":"-","truthyFeatureValue":"Yes","showFavorites":true,"errorMessage":"Please try again.","noImageText":"Error Loading Product","showProductPricing":true},"textConstants":{"cta":{"back":"Back","backIcon":"ChevronLeftIcon","viewResult":"View Results","next":"Next","skip":"Skip","close":"Close","backTo":"","modifyAnswers":"Modify Answers","refresh":"Refresh"},"headerTitle":"Find the Right Bakeware for You","loadingTitle":["We are gathering your results...","Just a moment while we find your best match..."],"overview":"Overview","recommendations":{"title":"Recommendations","resultsText":"results"},"required":"(required)","defaultPlaceholder":"Type here...","requiredAnswerErrorMessage":"Some required questions remain unanswered","noResultsMessage":"No matches yet! Refine your search, and let’s try again.","getConfigDataErrorMessage":"Something went wrong."}},{"id":"cookware-finder","hostPages":["\u002Fshop\u002Fcookware\u002Fstovetop-view-all\u002F","\u002Fshop\u002Fcookware\u002Fcookware-sets\u002F","\u002Fshop\u002Fcookware\u002Ffry-pans-skillets\u002F","\u002Fshop\u002Fcookware\u002Fsaute-pans\u002F","\u002Fshop\u002Fcookware\u002Fsaucepans-sauciers\u002F","\u002Fshop\u002Fcookware\u002Fdutch-ovens-braisers\u002F"],"enabled":true,"mock":false,"debugInfo":false,"apiBaseURL":"https:\u002F\u002Fai-services.wsgc.com\u002Fguided-experience","targetResultPage":{"reload":false,"URI":""},"convSearchTest":{"enabled":false,"abTest":{"enabled":false,"nameId":"productsSearchConvSearch","variationIdForTestGroup":"ConvSearchTest"}},"picturesInRow":3,"productGridConfiguration":3,"hintsBelowTextArea":true,"updateBottomButtonsStyles":true,"productComparison":{"enabled":false,"modalTitle":"Compare Products","maxCompares":3,"compareButtonText":"Compare Items","compareItemsMessage":"Choose 2 or more products to compare","selectorButtonText":"Compare","selectorSelectedText":"Compare","serviceTimeout":10000,"defaultFeatureValue":"-","truthyFeatureValue":"Yes","showFavorites":true,"errorMessage":"Please try again.","noImageText":"Error Loading Product","showProductPricing":true},"textConstants":{"cta":{"back":"Back","backIcon":"ChevronLeftIcon","viewResult":"View Results","next":"Next","skip":"Skip","close":"Close","backTo":"","modifyAnswers":"Modify Answers","refresh":"Refresh"},"headerTitle":"Find the Right Cookware for You","loadingTitle":["We are gathering your results...","Just a moment while we find your best match..."],"overview":"Overview","recommendations":{"title":"Recommendations","resultsText":"results"},"required":"(required)","defaultPlaceholder":"Type here...","requiredAnswerErrorMessage":"Some required questions remain unanswered","noResultsMessage":"No matches yet! Refine your search, and let’s try again.","getConfigDataErrorMessage":"Something went wrong."}}],"linkParameters":{"parametersToRemove":["cm_re","cm_sp","cm_src","cm_type","originsc","tabnav","position","recstrat","podId","strategyId"],"parametersToReport":["cm_re","cm_sp","cm_src","cm_type","originsc","tabnav","position","recstrat","podId","strategyId"]},"globalContentForHeaderConfig":{"enableUrlParameters":false,"linkParameters":{"parametersToRemove":["cm_re","cm_sp","cm_src","cm_type","originsc","recstrat","tabnav"],"parametersToReport":["cm_re","cm_sp","cm_src","cm_type","originsc","position","pkey","recstrat","tabnav"],"exclusionList":["\u002Fm"]},"mfeName":"Global-Header","renderInAnotherPlaceOnThePage":false}},"catGenerationId":"326041640","headers":{},"contentHeaders":{},"subBrand":"WS","subBrandConceptName":"Williams Sonoma","ecmContent":{"desktop":[{"type":"ecmMetadata","data":{"ecmMetadata":"StandardContentMetadata [uri=us\u002F041826-Desktop-Homepage.html, containerUri=null, keywords=null, title=041826 Desktop Homepage, description=null, language=en-us, countryGroup=US, selectors=null, deviceTypes=[DESKTOP], contentTags=[], locale=null, publishedDate=Thu Apr 16 23:13:12 UTC 2026, ecomActivationTime=Sat Apr 18 03:55:00 UTC 2026, ecomDeactivationTime=null, variants=null, ecomContentLocations=null, contentType=null, approved=true, metrics=null, styleInfo=StyleInfo [customCSSClass=conversion-1680], expirationTime=Sun Apr 19 03:55:00 UTC 2026, ecmType=null, ecmContentClassification=null, ecmType=null, siteTemplate=null, canonicalURL=null, templateName=responsive-homepage, responsive=RESPONSIVE, navigationInfo=null]"}},{"type":"CONTENT","data":{"CONTENT":"\u003Cbody class=\"cq-ecm-pages responsive-homepage\"\u003E \n \u003Cdiv class=\"section video vimeo-video-thumbnail ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile\" id=\"video725627572\"\u003E\n   "}},{"type":"ecm.displayVideo","data":{"isOverlay":true,"videoProvider":"vimeo","loopVideo":true,"videoId":"1182771500?h=da3f2fdd20","overlayLinkId":"id1776381238867","destinationUrl":"\u002Fshop\u002Felectrics\u002Fbreville-mixed-metals\u002F?cm_re=hphero-_-default-_-shop_breville_mixed_metals","CONTENT":[{"type":"CONTENT","data":{"CONTENT":"\n  \u003Ca href=\"#id1776381238867\" data-overlay=\"{id: 'id1776381238867', classname: '', mask: true, loadingThrobber: true, fixedScroll: true, destroyOnHide: true, preventCache: true}\" data-overlaydata=\"{}\" class=\"video-thumbnail-wrapper overlayTrigger\"\u003E \u003Cimg class=\" video-thumbnail \" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202616\u002F0841\u002F001\u002F004.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"1600\" width=\"3360\" \u002F\u003E \u003C\u002Fa\u003E"}}],"macroType":"ecm.displayVideo","displaySocialIcons":false,"autoplay":true,"showControls":true}},{"type":"CONTENT","data":{"CONTENT":" \n \u003C\u002Fdiv\u003E \n \u003Cdiv id=\"imagerollover769413693\" class=\"section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile padding-l \"\u003E \n  \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Felectrics\u002Fbreville-mixed-metals\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hphero-_-default-_-shop_breville_kelly_wearstler\" target=\"_self\"\u003E \u003Cimg alt=\"Meet Kelly Wearstler\" class=\"  \" title=\"Meet Kelly Wearstler\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202616\u002F0841\u002F001\u002F003.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"1339\" width=\"3360\" \u002F\u003E \u003C\u002Fa\u003E \n \u003C\u002Fdiv\u003E \n \u003Cdiv id=\"imagerollover-78312402\" class=\"section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile padding-s \"\u003E \n  \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Fsale-special-offer\u002Fpremier-cookware\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner1-_-default-_-shop_cookware_event\" target=\"_self\"\u003E \u003Cimg alt=\"Spring Cookware Event\" class=\"  \" title=\"Spring Cookware Event\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202616\u002F2239\u002F001\u002F001.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"216\" width=\"3360\" \u002F\u003E \u003C\u002Fa\u003E \n \u003C\u002Fdiv\u003E \n \u003Cdiv id=\"imagerollover-191789269\" class=\"section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile padding-s \"\u003E \n  \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Fsale-special-offer\u002Fhestan+premier-view-all\u002Fbrand-attr-m-brands-ff0013fe5f-1\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner1-_-default-_-shop_hestan_promo\" target=\"_self\"\u003E \u003Cimg alt=\"Shop Hestan Cookware\" class=\"  \" title=\"Shop Hestan Cookware\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202616\u002F2239\u002F001\u002F015.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"1600\" width=\"3360\" \u002F\u003E \u003C\u002Fa\u003E \n \u003C\u002Fdiv\u003E \n \u003Cdiv id=\"imagerollover-1823371462\" class=\"section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile module-inset-hero-image padding-s \"\u003E \n  \u003Cimg class=\"  \" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202614\u002F3233\u002F001\u002F002.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"60\" width=\"3104\" \u002F\u003E \n \u003C\u002Fdiv\u003E \n \u003Cdiv id=\"slider-1549450797\" class=\"slider section scroller-container horizontal &amp;nbsp no-infinite-scroll vue-ecm-slider four-across-slider ecm-component-wrapper ecm-slider-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile\" data-scroller=\"{duration:350, pageSize:1, easing:dojo.fx.easing.cubicInOut}\"\u003E \n  \u003Cdiv class=\"disabled btn-prev control\" data-cmp-hook-carousel=\"previous\"\u003E \n   \u003Ca href=\"#\"\u003EScroll to Previous Item\u003C\u002Fa\u003E \n  \u003C\u002Fdiv\u003E \n  \u003Cdiv class=\"scroller\"\u003E \n   \u003Cul class=\"cmp-carousel__content panel\"\u003E \n    \u003Cli class=\"imagerollover\"\u003E \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Fsale-special-offer\u002Foffers-le-creuset-cookware\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner1-_-default-_-shop_le_creuset_promo\" target=\"_self\"\u003E \u003Cimg alt=\"Shop Le Creuset Cookware\" class=\"  \" title=\"Shop Le Creuset Cookware\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202616\u002F2239\u002F001\u002F003.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"1156\" width=\"740\" \u002F\u003E \u003C\u002Fa\u003E \u003C\u002Fli\u003E \n    \u003Cli class=\"imagerollover\"\u003E \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Fsale-special-offer\u002Fgreenpan-+premier-cookware\u002Fbrand-attr-m-brands-ff000516feu~21225f-1\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner2-_-default-_-shop_tucci_promo\" target=\"_self\"\u003E \u003Cimg alt=\"Shop Greenpan™ Stanley Tucci™ Cookware\" class=\"  \" title=\"Shop Greenpan™ Stanley Tucci™ Cookware\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202616\u002F2239\u002F001\u002F004.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"1192\" width=\"740\" \u002F\u003E \u003C\u002Fa\u003E \u003C\u002Fli\u003E \n    \u003Cli class=\"imagerollover\"\u003E \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Fsale-special-offer\u002Foffers-all-clad-cookware\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner1-_-default-_-shop_ac_copper_core\" target=\"_self\"\u003E \u003Cimg alt=\"Shop All-Clad Cookware\" class=\"  \" title=\"Shop All-Clad Cookware\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202616\u002F0841\u002F001\u002F002.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"1108\" width=\"740\" \u002F\u003E \u003C\u002Fa\u003E \u003C\u002Fli\u003E \n    \u003Cli class=\"imagerollover\"\u003E \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Fsale-special-offer\u002Foffers-staub-cookware\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner1-_-default-_-shop_staub_cookware_promo\" target=\"_self\"\u003E \u003Cimg alt=\"Shop Staub Cookware\" class=\"  \" title=\"Shop Staub Cookware\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202616\u002F2239\u002F001\u002F011.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"1156\" width=\"740\" \u002F\u003E \u003C\u002Fa\u003E \u003C\u002Fli\u003E \n    \u003Cli class=\"imagerollover\"\u003E \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Fsale-special-offer\u002Fhestan+premier-view-all\u002Fbrand-attr-m-brands-ff0013fe5f-1\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner1-_-default-_-shop_hestan_promo\" target=\"_self\"\u003E \u003Cimg alt=\"Shop Hestan Cookware\" class=\"  \" title=\"Shop Hestan Cookware\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202616\u002F2239\u002F001\u002F005.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"1156\" width=\"740\" \u002F\u003E \u003C\u002Fa\u003E \u003C\u002Fli\u003E \n    \u003Cli class=\"imagerollover\"\u003E \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Fsale-special-offer\u002Fscanpan-+premier-cookware\u002Fbrand-attr-m-brands-ff0001020304050615feae5f-1\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner1-_-default-_-shop_scanpan_promo\" target=\"_self\"\u003E \u003Cimg alt=\"Shop SCANPAN Cookware\" class=\"  \" title=\"Shop SCANPAN Cookware\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202614\u002F3233\u002F001\u002F019.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"1156\" width=\"740\" \u002F\u003E \u003C\u002Fa\u003E \u003C\u002Fli\u003E \n    \u003Cli class=\"imagerollover\"\u003E \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Fsale-special-offer\u002Foffers-ws-cookware\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner1-_-default-_-shop_ws_cookware_promo\" target=\"_self\"\u003E \u003Cimg alt=\"Shop Williams Sonoma Cookware\" class=\"  \" title=\"Shop Williams Sonoma Cookware\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202616\u002F0841\u002F001\u002F001.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"1192\" width=\"740\" \u002F\u003E \u003C\u002Fa\u003E \u003C\u002Fli\u003E \n    \u003Cli class=\"imagerollover\"\u003E \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Fsale-special-offer\u002Flodge+premier-cookware\u002Fbrand-attr-m-brands-ff0012fe5f-1\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner1-_-default-_-shop_lodge_promo\" target=\"_self\"\u003E \u003Cimg alt=\"Shop Lodge Cookware\" class=\"  \" title=\"Shop Lodge Cookware\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202616\u002F2718\u002F001\u002F003.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"1192\" width=\"740\" \u002F\u003E \u003C\u002Fa\u003E \u003C\u002Fli\u003E \n    \u003Cli class=\"imagerollover\"\u003E \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Fsale-special-offer\u002Foffers-le-creuset-cookware\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner1-_-default-_-shop_le_creuset_promo\" target=\"_self\"\u003E \u003Cimg alt=\"Shop Le Creuset\" class=\"  \" title=\"Shop Le Creuset\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202614\u002F3305\u002F001\u002F005.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"1156\" width=\"740\" \u002F\u003E \u003C\u002Fa\u003E \u003C\u002Fli\u003E \n   \u003C\u002Ful\u003E \n  \u003C\u002Fdiv\u003E \n  \u003Cdiv class=\"btn-next control\" data-cmp-hook-carousel=\"next\"\u003E \n   \u003Ca href=\"#\"\u003EScroll to Next Item\u003C\u002Fa\u003E \n  \u003C\u002Fdiv\u003E \n \u003C\u002Fdiv\u003E \n \u003Cdiv id=\"mbox1307404504\" class=\"padding-l ecm-component-wrapper ecm-mbox-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile\"\u003E \n  \u003Cdiv class=\"mboxDefault\"\u003E \n  \u003C\u002Fdiv\u003E \n  \u003Cscript type=\"text\u002Fjavascript\"\u003E\n                mboxCreate('');\n\n        \u003C\u002Fscript\u003E \n \u003C\u002Fdiv\u003E \n \u003Cdiv id=\"\" class=\"ecm-component-wrapper ecm-column-control responsive-devicetype-desktop responsive-devicetype-not-mobile parsys_column wsi-colctrl-lt3a flex-col-ctrl padding-l\"\u003E \n  \u003Cdiv class=\"parsys_column wsi-colctrl-lt3a-c0 \"\u003E \n   \u003Cdiv id=\"imagerollover1980197988\" class=\"section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile  \"\u003E \n    \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fpages\u002Fwilliams-sonoma\u002Ftabletop-bar\u002Fset-your-table\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner2-_-default-_-shop_table_setting_inspo\" target=\"_self\"\u003E \u003Cimg alt=\"Shop Table Setting Inspiration\" class=\"  \" title=\"Shop Table Setting Inspiration\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202616\u002F1457\u002F001\u002F001.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"340\" width=\"1528\" \u002F\u003E \u003C\u002Fa\u003E \n   \u003C\u002Fdiv\u003E \n   \u003Cdiv id=\"imagerollover-82960694\" class=\"section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile  \"\u003E \n    \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Ftabletop-glassware-bar\u002Ftabletop-dinnerware-sets\u002Fsanderson-country-woodland\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner3-_-default-_-shop_tabletop_sanderson\" target=\"_self\"\u003E \u003Cimg alt=\"Shop Sanderson Collection\" class=\"  \" title=\"Shop Sanderson Collection\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202616\u002F1457\u002F001\u002F002.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"1536\" width=\"1528\" \u002F\u003E \u003C\u002Fa\u003E \n   \u003C\u002Fdiv\u003E \n  \u003C\u002Fdiv\u003E \n  \u003Cdiv class=\"parsys_column wsi-colctrl-lt3a-c1  \"\u003E \n   \u003Cdiv id=\"imagerollover1239929481\" class=\"section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile padding-s \"\u003E \n    \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Ftabletop-glassware-bar\u002Ftabletop-dinnerware-sets\u002Ffamille-rose\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner2-_-default-_-shop_famille_rose\" target=\"_self\"\u003E \u003Cimg alt=\"Shop Famille Rose Collection\" class=\"  \" title=\"Shop Famille Rose Collection\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202614\u002F2079\u002F001\u002F009.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"914\" width=\"740\" \u002F\u003E \u003C\u002Fa\u003E \n   \u003C\u002Fdiv\u003E \n   \u003Cdiv id=\"imagerollover1068154575\" class=\"section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile  \"\u003E \n    \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Ftabletop-glassware-bar\u002Faerin-meadow-lace+ws-aerin\u002Fcollection-m-collection-ff0001020304060d1efe2020-1\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=shopbanner-_-default-_-dinnerware_collections_aerin_meadow_lace\" target=\"_self\"\u003E \u003Cimg alt=\"Shop AERIN Collection\" class=\"  \" title=\"Shop AERIN Collection\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202616\u002F2718\u002F001\u002F004.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"914\" width=\"740\" \u002F\u003E \u003C\u002Fa\u003E \n   \u003C\u002Fdiv\u003E \n  \u003C\u002Fdiv\u003E \n  \u003Cdiv class=\"parsys_column wsi-colctrl-lt3a-c2  \"\u003E \n   \u003Cdiv id=\"imagerollover1125412877\" class=\"section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile padding-s \"\u003E \n    \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Ftabletop-glassware-bar\u002Ftabletop-dinnerware-sets\u002Flimone-dinnerware\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner3-_-default-_-shop_limone_collection\" target=\"_self\"\u003E \u003Cimg alt=\"Shop Limone Collection\" class=\"  \" title=\"Shop Limone Collection\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202616\u002F2718\u002F001\u002F005.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"914\" width=\"740\" \u002F\u003E \u003C\u002Fa\u003E \n   \u003C\u002Fdiv\u003E \n   \u003Cdiv id=\"imagerollover1039525424\" class=\"section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile  \"\u003E \n    \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Ftabletop-glassware-bar\u002Ftabletop-dinnerware-sets\u002Fbordalo-pinheiro\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner2-_-default-_-shop_bordallo_pinheiro\" target=\"_self\"\u003E \u003Cimg alt=\"Shop Bordallo Pinheiro Collection\" class=\"  \" title=\"Shop Bordallo Pinheiro Collection\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202614\u002F2079\u002F001\u002F005.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"914\" width=\"740\" \u002F\u003E \u003C\u002Fa\u003E \n   \u003C\u002Fdiv\u003E \n  \u003C\u002Fdiv\u003E \n \u003C\u002Fdiv\u003E \n \u003Cdiv style=\"clear:both\"\u003E\u003C\u002Fdiv\u003E \n \u003Cdiv id=\"imagerollover62867211\" class=\"section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile  \"\u003E \n  \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fproducts\u002Fdelonghi-primadonna-aromatic-fully-automatic-espresso-machine\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner4-_-default-_-shop_delonghi_primadonna\" target=\"_self\"\u003E \u003Cimg alt=\"Shop De'Longhi PrimaDonna Fully Automatic Espresso Machine\" class=\"  \" title=\"Shop De'Longhi PrimaDonna Fully Automatic Espresso Machine\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202616\u002F2718\u002F001\u002F006.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"618\" width=\"3360\" \u002F\u003E \u003C\u002Fa\u003E \n \u003C\u002Fdiv\u003E \n \u003Cdiv id=\"imagerollover-1038282245\" class=\"section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile padding-s \"\u003E \n  \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Felectrics\u002Fespresso-makers\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner4-_-default-_-shop_espresso_machines\" target=\"_self\"\u003E \u003Cimg alt=\"Shop Espresso Machines\" class=\"  \" title=\"Shop Espresso Machines\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202616\u002F2239\u002F001\u002F014.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"982\" width=\"3360\" \u002F\u003E \u003C\u002Fa\u003E \n \u003C\u002Fdiv\u003E \n \u003Cdiv id=\"imagerollover369282464\" class=\"section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile module-inset-hero-image padding-s \"\u003E \n  \u003Cimg class=\"  \" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202614\u002F3233\u002F001\u002F004.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"60\" width=\"3104\" \u002F\u003E \n \u003C\u002Fdiv\u003E \n \u003Cdiv id=\"slider1500397573\" class=\"slider section scroller-container horizontal &amp;nbsp no-infinite-scroll vue-ecm-slider four-across-slider ecm-component-wrapper ecm-slider-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile\" data-scroller=\"{duration:350, pageSize:1, easing:dojo.fx.easing.cubicInOut}\"\u003E \n  \u003Cdiv class=\"disabled btn-prev control\" data-cmp-hook-carousel=\"previous\"\u003E \n   \u003Ca href=\"#\"\u003EScroll to Previous Item\u003C\u002Fa\u003E \n  \u003C\u002Fdiv\u003E \n  \u003Cdiv class=\"scroller\"\u003E \n   \u003Cul class=\"cmp-carousel__content panel\"\u003E \n    \u003Cli class=\"imagerollover\"\u003E \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fproducts\u002Fphilips-8000-cafe-aromis-fully-automatic-espresso-machine\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner4-_-default-_-shop_philips_aromis\" target=\"_self\"\u003E \u003Cimg alt=\"Shop Philips 8000 Cafe Aromis Fully Automatic Espresso Machine\" class=\"  \" title=\"Shop Philips 8000 Cafe Aromis Fully Automatic Espresso Machine\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202616\u002F2239\u002F001\u002F002.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"1113\" width=\"740\" \u002F\u003E \u003C\u002Fa\u003E \u003C\u002Fli\u003E \n    \u003Cli class=\"imagerollover\"\u003E \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Fsale-special-offer\u002Fnespresso+premier-electrics\u002Fbrand-attr-m-brands-ff0016fe5f-1\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner4-_-default-_-shop_nespresso_electrics\" target=\"_self\"\u003E \u003Cimg alt=\"Shop Nespresso\" class=\"  \" title=\"Shop Nespresso\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202615\u002F0696\u002F001\u002F001.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"1156\" width=\"740\" \u002F\u003E \u003C\u002Fa\u003E \u003C\u002Fli\u003E \n    \u003Cli class=\"imagerollover\"\u003E \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fproducts\u002Fbreville-oracle-dual-boiler-espresso-machine\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner4-_-default-_-shop_breville_oracle_dual_boiler\" target=\"_self\"\u003E \u003Cimg alt=\"Shop Breville Oracle Dual Boiler in Sea Salt\" class=\"  \" title=\"Shop Breville Oracle Dual Boiler in Sea Salt\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202616\u002F2239\u002F001\u002F006.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"1113\" width=\"740\" \u002F\u003E \u003C\u002Fa\u003E \u003C\u002Fli\u003E \n    \u003Cli class=\"imagerollover\"\u003E \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fproducts\u002Ffellow-series-1-espresso-machine\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner3-_-default-_-shop_fellow_series_1\" target=\"_self\"\u003E \u003Cimg alt=\"Shop Fellow\" class=\"  \" title=\"Shop Fellow\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202614\u002F3233\u002F001\u002F010.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"1113\" width=\"740\" \u002F\u003E \u003C\u002Fa\u003E \u003C\u002Fli\u003E \n    \u003Cli class=\"imagerollover\"\u003E \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fproducts\u002Fphilips-baristina-plus-espresso-machine\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner3-_-default-_-shop_philips_baristina_plus\" target=\"_self\"\u003E \u003Cimg alt=\"Shop Philips Baristina Plus Espresso Machine\" class=\"  \" title=\"Shop Philips Baristina Plus Espresso Machine\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202616\u002F2257\u002F001\u002F001.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"1113\" width=\"740\" \u002F\u003E \u003C\u002Fa\u003E \u003C\u002Fli\u003E \n    \u003Cli class=\"imagerollover\"\u003E \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Fsale-special-offer\u002Foffers-cuisinart\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner4-_-default-_-shop_cuisinart_electrics\" target=\"_self\"\u003E \u003Cimg alt=\"Shop Cuisinart Electrics\" class=\"  \" title=\"Shop Cuisinart Electrics\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202614\u002F3233\u002F001\u002F009.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"1108\" width=\"740\" \u002F\u003E \u003C\u002Fa\u003E \u003C\u002Fli\u003E \n    \u003Cli class=\"imagerollover\"\u003E \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fproducts\u002Fnespresso-vertuo-up-espresso-machine-breville\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner3-_-default-_-shop_nespresso_vertuo_up\" target=\"_self\"\u003E \u003Cimg alt=\"Shop Nespresso Espresso Machines\" class=\"  \" title=\"Shop Nespresso Espresso Machines\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202614\u002F3233\u002F001\u002F007.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"1113\" width=\"740\" \u002F\u003E \u003C\u002Fa\u003E \u003C\u002Fli\u003E \n   \u003C\u002Ful\u003E \n  \u003C\u002Fdiv\u003E \n  \u003Cdiv class=\"btn-next control\" data-cmp-hook-carousel=\"next\"\u003E \n   \u003Ca href=\"#\"\u003EScroll to Next Item\u003C\u002Fa\u003E \n  \u003C\u002Fdiv\u003E \n \u003C\u002Fdiv\u003E \n \u003Cdiv id=\"mbox2023111639\" class=\"padding-l ecm-component-wrapper ecm-mbox-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile\"\u003E \n  \u003Cdiv class=\"mboxDefault\"\u003E \n  \u003C\u002Fdiv\u003E \n  \u003Cscript type=\"text\u002Fjavascript\"\u003E\n                mboxCreate('');\n\n        \u003C\u002Fscript\u003E \n \u003C\u002Fdiv\u003E \n \u003Cdiv id=\"imagerollover-55432972\" class=\"section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile  \"\u003E \n  \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Felectrics\u002Fcountertop-ovens+toasters+countertop-oven-accessories+electrics-breville\u002Fproducttype-m-product-type-ff000b101823283a4149fe20202020-3\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner4-_-default-_-shop_breville_ovens\" target=\"_self\"\u003E \u003Cimg alt=\"Shop Breville Ovens\" class=\"  \" title=\"Shop Breville Ovens\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202614\u002F3233\u002F001\u002F025.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"1600\" width=\"3360\" \u002F\u003E \u003C\u002Fa\u003E \n \u003C\u002Fdiv\u003E \n \u003Cdiv id=\"imagerollover-1796901899\" class=\"section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile padding-l \"\u003E \n  \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fpages\u002Fvirtual-events-and-in-store-classes\u002Fskills-series\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner4-_-default-_-shop_skill_series\" target=\"_self\"\u003E \u003Cimg alt=\"Williams Sonoma Test Kitchen Skill Series\" class=\"  \" title=\"Williams Sonoma Test Kitchen Skill Series\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202615\u002F2157\u002F001\u002F001.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"308\" width=\"3360\" \u002F\u003E \u003C\u002Fa\u003E \n \u003C\u002Fdiv\u003E \n \u003Cdiv id=\"imagerollover-179763658\" class=\"section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile module-inset-hero-image padding-s \"\u003E \n  \u003Cimg class=\"  \" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202614\u002F3305\u002F001\u002F001.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"60\" width=\"3104\" \u002F\u003E \n \u003C\u002Fdiv\u003E \n \u003Cdiv id=\"\" class=\"ecm-component-wrapper ecm-column-control responsive-devicetype-desktop responsive-devicetype-not-mobile parsys_column wsi-colctrl-lt2a padding-l\"\u003E \n  \u003Cdiv class=\"parsys_column wsi-colctrl-lt2a-c0 \"\u003E \n   \u003Cdiv id=\"imagerollover1760581661\" class=\"section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile  \"\u003E \n    \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Felectrics\u002Felectrics-kitchenaid\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner5-_-default-_-shop_kitchenaid\" target=\"_self\"\u003E \u003Cimg alt=\"Shop KitchenAid&reg; Stand Mixers &amp; Attachments\" class=\"  \" title=\"Shop KitchenAid&reg; Stand Mixers &amp; Attachments\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202614\u002F3305\u002F001\u002F013.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"1868\" width=\"1528\" \u002F\u003E \u003C\u002Fa\u003E \n   \u003C\u002Fdiv\u003E \n  \u003C\u002Fdiv\u003E \n  \u003Cdiv class=\"parsys_column wsi-colctrl-lt2a-c1  \"\u003E \n   \u003Cdiv id=\"imagerollover1760581685\" class=\"section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile  \"\u003E \n    \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Fbakeware\u002Fbakeware-williams-sonoma\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner5-_-default-_-shop_ws_bakeware\" target=\"_self\"\u003E \u003Cimg alt=\"Shop Williams Sonoma Bakeware\" class=\"  \" title=\"Shop Williams Sonoma Bakeware\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202614\u002F3247\u002F001\u002F002.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"1868\" width=\"1528\" \u002F\u003E \u003C\u002Fa\u003E \n   \u003C\u002Fdiv\u003E \n  \u003C\u002Fdiv\u003E \n \u003C\u002Fdiv\u003E \n \u003Cdiv style=\"clear:both\"\u003E\u003C\u002Fdiv\u003E \n \u003Cdiv id=\"imagerollover-958539567\" class=\"section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile padding-l \"\u003E \n  \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Ffood\u002Foakville-grocery\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hphero-_-default-_-shop_oakville_grocery\" target=\"_self\"\u003E \u003Cimg alt=\"Shop Oakville Grocery\" class=\"  \" title=\"Shop Oakville Grocery\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202616\u002F0841\u002F001\u002F005.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"1600\" width=\"3360\" \u002F\u003E \u003C\u002Fa\u003E \n \u003C\u002Fdiv\u003E \n \u003Cdiv id=\"imagerollover424712579\" class=\"section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile module-inset-hero-image padding-s \"\u003E \n  \u003Cimg class=\"  \" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202614\u002F3233\u002F001\u002F001.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"60\" width=\"3104\" \u002F\u003E \n \u003C\u002Fdiv\u003E \n \u003Cdiv id=\"\" class=\"ecm-component-wrapper ecm-column-control responsive-devicetype-desktop responsive-devicetype-not-mobile parsys_column wsi-colctrl-lt4a padding-l\"\u003E \n  \u003Cdiv class=\"parsys_column wsi-colctrl-lt4a-c0 \"\u003E \n   \u003Cdiv id=\"imagerollover1361064332\" class=\"section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile  \"\u003E \n    \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Fcutlery\u002Fknives-shun-featured\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner6-_-default-_-shop_shun_promo\" target=\"_self\"\u003E \u003Cimg alt=\"Shop Shun Cutlery\" class=\"  \" title=\"Shop Shun Cutlery\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202614\u002F3233\u002F001\u002F015.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"1108\" width=\"740\" \u002F\u003E \u003C\u002Fa\u003E \n   \u003C\u002Fdiv\u003E \n  \u003C\u002Fdiv\u003E \n  \u003Cdiv class=\"parsys_column wsi-colctrl-lt4a-c1  \"\u003E \n   \u003Cdiv id=\"imagerollover-1884130179\" class=\"section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile  \"\u003E \n    \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Fcutlery\u002Fknives-global-featured\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner6-_-default-_-shop_global_cutlery_promo\" target=\"_self\"\u003E \u003Cimg alt=\"Shop Global Cutlery\" class=\"  \" title=\"Shop Global Cutlery\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202614\u002F3233\u002F001\u002F028.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"1156\" width=\"740\" \u002F\u003E \u003C\u002Fa\u003E \n   \u003C\u002Fdiv\u003E \n  \u003C\u002Fdiv\u003E \n  \u003Cdiv class=\"parsys_column wsi-colctrl-lt4a-c2  \"\u003E \n   \u003Cdiv id=\"imagerollover-150891385\" class=\"section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile  \"\u003E \n    \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Fcutlery\u002Fknives-zwilling-featured\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner2-_-default-_-shop_zwilling_promo\" target=\"_self\"\u003E \u003Cimg alt=\"Shop Zwilling Cutlery\" class=\"  \" title=\"Shop Zwilling Cutlery\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202614\u002F3233\u002F001\u002F016.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"1107\" width=\"740\" \u002F\u003E \u003C\u002Fa\u003E \n   \u003C\u002Fdiv\u003E \n  \u003C\u002Fdiv\u003E \n  \u003Cdiv class=\"parsys_column wsi-colctrl-lt4a-c3  \"\u003E \n   \u003Cdiv id=\"imagerollover328846992\" class=\"section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile  \"\u003E \n    \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Fcutlery\u002Fwusthof-specialty\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner6-_-default-_-shop_wusthof_cutlery\" target=\"_self\"\u003E \u003Cimg alt=\"Shop Wusthof Cutlery\" class=\"  \" title=\"Shop Wusthof Cutlery\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202614\u002F3233\u002F001\u002F020.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"1156\" width=\"740\" \u002F\u003E \u003C\u002Fa\u003E \n   \u003C\u002Fdiv\u003E \n  \u003C\u002Fdiv\u003E \n \u003C\u002Fdiv\u003E \n \u003Cdiv style=\"clear:both\"\u003E\u003C\u002Fdiv\u003E \n \u003Cdiv id=\"imagerollover1618288314\" class=\"section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile padding-s \"\u003E \n  \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Foutdoor\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner6-_-default-_-shop_outdoor\" target=\"_self\"\u003E \u003Cimg alt=\"Shop Outdoor\" class=\"  \" title=\"Shop Outdoor\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202616\u002F2239\u002F001\u002F016.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"1600\" width=\"3360\" \u002F\u003E \u003C\u002Fa\u003E \n \u003C\u002Fdiv\u003E \n \u003Cdiv id=\"slider545942170\" class=\"slider section scroller-container horizontal &amp;nbsp no-infinite-scroll vue-ecm-slider four-across-slider ecm-component-wrapper ecm-slider-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile\" data-scroller=\"{duration:350, pageSize:1, easing:dojo.fx.easing.cubicInOut}\"\u003E \n  \u003Cdiv class=\"disabled btn-prev control\" data-cmp-hook-carousel=\"previous\"\u003E \n   \u003Ca href=\"#\"\u003EScroll to Previous Item\u003C\u002Fa\u003E \n  \u003C\u002Fdiv\u003E \n  \u003Cdiv class=\"scroller\"\u003E \n   \u003Cul class=\"cmp-carousel__content panel\"\u003E \n    \u003Cli class=\"imagerollover\"\u003E \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Felectrics\u002Fpizza-ovens\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner7-_-default-_-shop_ooni\" target=\"_self\"\u003E \u003Cimg alt=\"Shop Ooni\" class=\"  \" title=\"Shop Ooni\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202616\u002F2718\u002F001\u002F001.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"1030\" width=\"740\" \u002F\u003E \u003C\u002Fa\u003E \u003C\u002Fli\u003E \n    \u003Cli class=\"imagerollover\"\u003E \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Foutdoor\u002Foutdoor-cookware\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner8-_-default-_-shop_outdoor_cookware\" target=\"_self\"\u003E \u003Cimg alt=\"Shop Outdoor Cookware\" class=\"  \" title=\"Shop Outdoor Cookware\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202614\u002F3305\u002F001\u002F012.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"993\" width=\"740\" \u002F\u003E \u003C\u002Fa\u003E \u003C\u002Fli\u003E \n    \u003Cli class=\"imagerollover\"\u003E \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Foutdoor\u002Foutdoor-grill-tools-accessories\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner8-_-default-_-shop_grill_bbq_tools\" target=\"_self\"\u003E \u003Cimg alt=\"Shop Grill Tools\" class=\"  \" title=\"Shop Grill Tools\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202614\u002F3305\u002F001\u002F003.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"993\" width=\"740\" \u002F\u003E \u003C\u002Fa\u003E \u003C\u002Fli\u003E \n    \u003Cli class=\"imagerollover\"\u003E \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Ffood\u002Fmeat\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner8-_-default-_-shop_food_delivered\" target=\"_self\"\u003E \u003Cimg alt=\"Shop Meats\" class=\"  \" title=\"Shop Meats\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202614\u002F3305\u002F001\u002F006.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"994\" width=\"740\" \u002F\u003E \u003C\u002Fa\u003E \u003C\u002Fli\u003E \n    \u003Cli class=\"imagerollover\"\u003E \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Ffood\u002Fbbq---grilling-sauces+seasonings---rubs+food-all-pantry\u002Fproducttype-m-product-type-ff000102060f15222d343cfe2026202020262020-2\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner8-_-default-_-shop_bbq_rubs_seasonings\" target=\"_self\"\u003E \u003Cimg alt=\"Shop BBQ Sauces and Rubs\" class=\"  \" title=\"Shop BBQ Sauces and Rubs\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202614\u002F3305\u002F001\u002F007.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"993\" width=\"740\" \u002F\u003E \u003C\u002Fa\u003E \u003C\u002Fli\u003E \n   \u003C\u002Ful\u003E \n  \u003C\u002Fdiv\u003E \n  \u003Cdiv class=\"btn-next control\" data-cmp-hook-carousel=\"next\"\u003E \n   \u003Ca href=\"#\"\u003EScroll to Next Item\u003C\u002Fa\u003E \n  \u003C\u002Fdiv\u003E \n \u003C\u002Fdiv\u003E \n \u003Cdiv id=\"mbox-2024781753\" class=\"padding-l ecm-component-wrapper ecm-mbox-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile\"\u003E \n  \u003Cdiv class=\"mboxDefault\"\u003E \n  \u003C\u002Fdiv\u003E \n  \u003Cscript type=\"text\u002Fjavascript\"\u003E\n                mboxCreate('');\n\n        \u003C\u002Fscript\u003E \n \u003C\u002Fdiv\u003E \n \u003Cdiv id=\"imagerollover-1012400070\" class=\"section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile module-inset-hero-image padding-s \"\u003E \n  \u003Cimg class=\"  \" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202612\u002F2213\u002F001\u002F002.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"60\" width=\"3104\" \u002F\u003E \n \u003C\u002Fdiv\u003E \n \u003Cdiv id=\"\" class=\"ecm-component-wrapper ecm-column-control responsive-devicetype-desktop responsive-devicetype-not-mobile parsys_column wsi-colctrl-lt3a padding-l\"\u003E \n  \u003Cdiv class=\"parsys_column wsi-colctrl-lt3a-c0 \"\u003E \n   \u003Cdiv id=\"imagerollover-1051585704\" class=\"section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile  \"\u003E \n    \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Fholidays\u002Fmothers-day\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner7-_-default-_-shop_mothers_day\" target=\"_self\"\u003E \u003Cimg alt=\"Shop Mother's Day\" class=\"  \" title=\"Shop Mother's Day\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202616\u002F2239\u002F001\u002F009.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"1322\" width=\"1003\" \u002F\u003E \u003C\u002Fa\u003E \n   \u003C\u002Fdiv\u003E \n  \u003C\u002Fdiv\u003E \n  \u003Cdiv class=\"parsys_column wsi-colctrl-lt3a-c1  \"\u003E \n   \u003Cdiv id=\"imagerollover1760581533\" class=\"section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile  \"\u003E \n    \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Fholidays\u002Fpatriotic\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner7-_-default-_-shop_fourth_july\" target=\"_self\"\u003E \u003Cimg alt=\"Shop Fourth of July\" class=\"  \" title=\"Shop Fourth of July\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202616\u002F2239\u002F001\u002F012.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"1322\" width=\"1003\" \u002F\u003E \u003C\u002Fa\u003E \n   \u003C\u002Fdiv\u003E \n  \u003C\u002Fdiv\u003E \n  \u003Cdiv class=\"parsys_column wsi-colctrl-lt3a-c2  \"\u003E \n   \u003Cdiv id=\"imagerollover1760581535\" class=\"section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile  \"\u003E \n    \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Fholidays\u002Ffathers-day\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner7-_-default-_-shop_fathers_day\" target=\"_self\"\u003E \u003Cimg alt=\"Shop Father's Day\" class=\"  \" title=\"Shop Father's Day\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202616\u002F2239\u002F001\u002F013.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"1322\" width=\"1003\" \u002F\u003E \u003C\u002Fa\u003E \n   \u003C\u002Fdiv\u003E \n  \u003C\u002Fdiv\u003E \n \u003C\u002Fdiv\u003E \n \u003Cdiv style=\"clear:both\"\u003E\u003C\u002Fdiv\u003E \n \u003Cdiv id=\"mbox-298438906\" class=\"hp-content-zone-registry-feature ecm-component-wrapper ecm-mbox-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile\"\u003E \n  \u003Cdiv class=\"mboxDefault\"\u003E \n  \u003C\u002Fdiv\u003E \n  \u003Cscript type=\"text\u002Fjavascript\"\u003E\n                mboxCreate('');\n\n        \u003C\u002Fscript\u003E \n \u003C\u002Fdiv\u003E \n \u003Cdiv id=\"mbox-843705176\" class=\"padding-l ecm-component-wrapper ecm-mbox-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile\"\u003E \n  \u003Cdiv class=\"mboxDefault\"\u003E \n  \u003C\u002Fdiv\u003E \n  \u003Cscript type=\"text\u002Fjavascript\"\u003E\n                mboxCreate('');\n\n        \u003C\u002Fscript\u003E \n \u003C\u002Fdiv\u003E \n \u003Cdiv id=\"imagerollover149676077\" class=\"section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile module-inset-hero-image padding-s \"\u003E \n  \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fpages\u002Fmywilliamssonoma.html"}},{"type":"CONTENT","data":{"CONTENT":"\" target=\"_self\"\u003E \u003Cimg alt=\"The Instagram Shop\" class=\"  \" title=\"The Instagram Shop\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202529\u002F1036\u002F061\u002F936.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"61\" width=\"3104\" \u002F\u003E \u003C\u002Fa\u003E \n \u003C\u002Fdiv\u003E \n \u003Cdiv id=\"vuereference-386966091 \" class=\"section vuereference padding-60 ecm-component-wrapper ecm-vue-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile\"\u003E\n   "}},{"type":"ecm.vue","data":{"name":"Curalate","uniqueLabel":"main_page","CONTENT":"","macroType":"ecm.vue"}},{"type":"CONTENT","data":{"CONTENT":" \n \u003C\u002Fdiv\u003E \n \u003Cdiv id=\"vuereference-1670179083 \" class=\"section vuereference padding-60 ecm-component-wrapper ecm-vue-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile\"\u003E\n   "}},{"type":"ecm.vue","data":{"pageTypeName":"HPTRENDING","name":"WsiRecs","CONTENT":"","macroType":"ecm.vue"}},{"type":"CONTENT","data":{"CONTENT":" \n \u003C\u002Fdiv\u003E \n \u003Cdiv id=\"vuereference-782307409 \" class=\"section vuereference padding-60 ecm-component-wrapper ecm-vue-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile\"\u003E\n   "}},{"type":"ecm.vue","data":{"pageTypeName":"HPRVI","name":"WsiRecs","CONTENT":"","macroType":"ecm.vue"}},{"type":"CONTENT","data":{"CONTENT":" \n \u003C\u002Fdiv\u003E \n \u003Cdiv id=\"mbox-1107957017\" class=\" ecm-component-wrapper ecm-mbox-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile\"\u003E \n  \u003Cdiv class=\"mboxDefault\"\u003E \n   \u003Cdiv id=\"imagerollover-947847372\" class=\"section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile module-inset-hero-image padding-s \"\u003E \n    \u003Cimg class=\"  \" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202529\u002F1036\u002F028\u002F621.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"61\" width=\"3104\" \u002F\u003E \n   \u003C\u002Fdiv\u003E \n   \u003Cdiv id=\"\" class=\"ecm-component-wrapper ecm-column-control responsive-devicetype-desktop responsive-devicetype-not-mobile parsys_column wsi-colctrl-lt8a padding-l\"\u003E \n    \u003Cdiv class=\"parsys_column wsi-colctrl-lt8a-c0 \"\u003E \n     \u003Cdiv id=\"imagerollover-1106989083\" class=\"section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile  \"\u003E \n      \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fpages\u002Fwilliams-sonoma-home\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_ven=crossbrandreferral&amp;cm_cat=WS_&amp;cm_pla=xbrandevent&amp;cm_ite=evergreenfooter\" target=\"_blank\"\u003E \u003Cimg alt=\"WSH\" class=\"  \" title=\"WSH\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202550\u002F2823\u002F001\u002F006.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"433\" width=\"346\" \u002F\u003E \u003C\u002Fa\u003E \n     \u003C\u002Fdiv\u003E \n    \u003C\u002Fdiv\u003E \n    \u003Cdiv class=\"parsys_column wsi-colctrl-lt8a-c1  \"\u003E \n     \u003Cdiv id=\"imagerollover1286923075\" class=\"section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile  \"\u003E \n      \u003Ca href=\"https:\u002F\u002Fwww.potterybarn.com\u002F?cm_ven=crossbrandreferral&amp;cm_cat=WS_&amp;cm_pla=xbrandevent&amp;cm_ite=evergreenfooter\" target=\"_blank\"\u003E \u003Cimg alt=\"PB\" class=\"  \" title=\"PB\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202550\u002F2823\u002F001\u002F005.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"433\" width=\"346\" \u002F\u003E \u003C\u002Fa\u003E \n     \u003C\u002Fdiv\u003E \n    \u003C\u002Fdiv\u003E \n    \u003Cdiv class=\"parsys_column wsi-colctrl-lt8a-c2  \"\u003E \n     \u003Cdiv id=\"imagerollover562301163\" class=\"section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile  \"\u003E \n      \u003Ca href=\"https:\u002F\u002Fwww.potterybarnkids.com\u002F?cm_ven=crossbrandreferral&amp;cm_cat=WS_&amp;cm_pla=xbrandevent&amp;cm_ite=evergreenfooter\" target=\"_blank\"\u003E \u003Cimg alt=\"PBK\" class=\"  \" title=\"PBK\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202550\u002F2823\u002F001\u002F001.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"433\" width=\"346\" \u002F\u003E \u003C\u002Fa\u003E \n     \u003C\u002Fdiv\u003E \n    \u003C\u002Fdiv\u003E \n    \u003Cdiv class=\"parsys_column wsi-colctrl-lt8a-c3  \"\u003E \n     \u003Cdiv id=\"imagerollover-374415619\" class=\"section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile  \"\u003E \n      \u003Ca href=\"https:\u002F\u002Fwww.pbteen.com\u002F?cm_ven=crossbrandreferral&amp;cm_cat=WS_&amp;cm_pla=xbrandevent&amp;cm_ite=evergreenfooter\" target=\"_blank\"\u003E \u003Cimg alt=\"PT\" class=\"  \" title=\"PT\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202550\u002F2823\u002F001\u002F004.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"433\" width=\"346\" \u002F\u003E \u003C\u002Fa\u003E \n     \u003C\u002Fdiv\u003E \n    \u003C\u002Fdiv\u003E \n    \u003Cdiv class=\"parsys_column wsi-colctrl-lt8a-c4  \"\u003E \n     \u003Cdiv id=\"imagerollover193221779\" class=\"section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile  \"\u003E \n      \u003Ca href=\"https:\u002F\u002Fwww.westelm.com\u002F?cm_ven=crossbrandreferral&amp;cm_cat=WS_&amp;cm_pla=xbrandevent&amp;cm_ite=evergreenfooter\" target=\"_blank\"\u003E \u003Cimg alt=\"WE\" class=\"  \" title=\"WE\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202550\u002F2823\u002F001\u002F003.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"433\" width=\"346\" \u002F\u003E \u003C\u002Fa\u003E \n     \u003C\u002Fdiv\u003E \n    \u003C\u002Fdiv\u003E \n    \u003Cdiv class=\"parsys_column wsi-colctrl-lt8a-c5  \"\u003E \n     \u003Cdiv id=\"imagerollover-1756605859\" class=\"section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile  \"\u003E \n      \u003Ca href=\"https:\u002F\u002Fwww.markandgraham.com\u002F?cm_ven=crossbrandreferral&amp;cm_cat=WS_&amp;cm_pla=xbrandevent&amp;cm_ite=evergreenfooter\" target=\"_blank\"\u003E \u003Cimg alt=\"Mark &amp; Graham\" class=\"  \" title=\"Mark &amp; Graham\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202550\u002F2823\u002F001\u002F007.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"433\" width=\"346\" \u002F\u003E \u003C\u002Fa\u003E \n     \u003C\u002Fdiv\u003E \n    \u003C\u002Fdiv\u003E \n    \u003Cdiv class=\"parsys_column wsi-colctrl-lt8a-c6  \"\u003E \n     \u003Cdiv id=\"imagerollover-1525901341\" class=\"section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile  \"\u003E \n      \u003Ca href=\"https:\u002F\u002Fwww.rejuvenation.com\u002F?cm_ven=crossbrandreferral&amp;cm_cat=WS_&amp;cm_pla=xbrandevent&amp;cm_ite=evergreenfooter\" target=\"_blank\"\u003E \u003Cimg alt=\"Rejuvenation\" class=\"  \" title=\"Rejuvenation\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202550\u002F2823\u002F001\u002F002.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"433\" width=\"346\" \u002F\u003E \u003C\u002Fa\u003E \n     \u003C\u002Fdiv\u003E \n    \u003C\u002Fdiv\u003E \n    \u003Cdiv class=\"parsys_column wsi-colctrl-lt8a-c7  \"\u003E \n     \u003Cdiv id=\"imagerollover2026668813\" class=\"section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile  \"\u003E \n      \u003Ca href=\"https:\u002F\u002Fwww.greenrow.com\u002F?cm_ven=crossbrandreferral&amp;cm_cat=WS_&amp;cm_pla=xbrandevent&amp;cm_ite=evergreenfooter\" target=\"_blank\"\u003E \u003Cimg alt=\"GreenRow &gt;\" class=\"  \" title=\"GreenRow &gt;\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202550\u002F2823\u002F001\u002F008.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"433\" width=\"346\" \u002F\u003E \u003C\u002Fa\u003E \n     \u003C\u002Fdiv\u003E \n    \u003C\u002Fdiv\u003E \n   \u003C\u002Fdiv\u003E \n   \u003Cdiv style=\"clear:both\"\u003E\u003C\u002Fdiv\u003E \n  \u003C\u002Fdiv\u003E \n  \u003Cscript type=\"text\u002Fjavascript\"\u003E\n                mboxCreate('');\n\n        \u003C\u002Fscript\u003E \n \u003C\u002Fdiv\u003E \n \u003Cdiv id=\"text-296213528\" class=\"text section hp-content-zone-pzn-product-recs ecm-component-wrapper ecm-text-wrapper responsive-devicetype-desktop responsive-devicetype-not-mobile\"\u003E \n \u003C\u002Fdiv\u003E  \n\u003C\u002Fbody\u003E"}}],"mobile":[{"type":"ecmMetadata","data":{"ecmMetadata":"StandardContentMetadata [uri=us\u002F041826-Mobile-Homepage.html, containerUri=null, keywords=null, title=041826 Mobile Homepage, description=null, language=en-us, countryGroup=US, selectors=null, deviceTypes=[MOBILE], contentTags=[], locale=null, publishedDate=Thu Apr 16 23:14:07 UTC 2026, ecomActivationTime=Sat Apr 18 03:55:00 UTC 2026, ecomDeactivationTime=null, variants=null, ecomContentLocations=null, contentType=null, approved=true, metrics=null, styleInfo=null, expirationTime=Mon Apr 20 03:55:00 UTC 2026, ecmType=null, ecmContentClassification=null, ecmType=null, siteTemplate=null, canonicalURL=null, templateName=responsive-homepage, responsive=RESPONSIVE, navigationInfo=null]"}},{"type":"CONTENT","data":{"CONTENT":"\u003Cbody class=\"cq-ecm-pages responsive-homepage\"\u003E \n \u003Cdiv id=\"mbox732171364\" class=\"padding-s ecm-component-wrapper ecm-mbox-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile\"\u003E \n  \u003Cdiv class=\"mboxDefault\"\u003E \n  \u003C\u002Fdiv\u003E \n  \u003Cscript type=\"text\u002Fjavascript\"\u003E\n                mboxCreate('');\n\n        \u003C\u002Fscript\u003E \n \u003C\u002Fdiv\u003E \n \u003Cdiv class=\"section video vimeo-video-thumbnail mobile-video-13-17-aspect-ratio ecm-component-wrapper ecm-image-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile\" id=\"video-1109793000\"\u003E\n   "}},{"type":"ecm.displayVideo","data":{"isOverlay":true,"videoProvider":"vimeo","loopVideo":true,"videoId":"1182771501?h=98c8b39d86","overlayLinkId":"id1776381298791","destinationUrl":"\u002Fshop\u002Felectrics\u002Fbreville-mixed-metals\u002F?cm_re=hphero-_-default-_-shop_breville_mixed_metals","CONTENT":[{"type":"CONTENT","data":{"CONTENT":"\n  \u003Ca href=\"#id1776381298791\" data-overlay=\"{id: 'id1776381298791', classname: '', mask: true, loadingThrobber: true, fixedScroll: true, destroyOnHide: true, preventCache: true}\" data-overlaydata=\"{}\" class=\"video-thumbnail-wrapper overlayTrigger\"\u003E \u003Cimg class=\" video-thumbnail \" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202616\u002F0825\u002F001\u002F005.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"1000\" width=\"768\" \u002F\u003E \u003C\u002Fa\u003E"}}],"macroType":"ecm.displayVideo","displaySocialIcons":false,"autoplay":true,"showControls":true}},{"type":"CONTENT","data":{"CONTENT":" \n \u003C\u002Fdiv\u003E \n \u003Cdiv id=\"imagerollover-509941881\" class=\"section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile padding-l \"\u003E \n  \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Felectrics\u002Fbreville-mixed-metals\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hphero-_-default-_-shop_breville_kelly_wearstler\" target=\"_self\"\u003E \u003Cimg alt=\"Meet Kelly Wearstler\" class=\"  \" title=\"Meet Kelly Wearstler\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202616\u002F0825\u002F001\u002F003.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"1582\" width=\"768\" \u002F\u003E \u003C\u002Fa\u003E \n \u003C\u002Fdiv\u003E \n \u003Cdiv id=\"imagerollover-2047701779\" class=\"section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile padding-m \"\u003E \n  \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Fsale-special-offer\u002Fpremier-cookware\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner1-_-default-_-shop_cookware_event\" target=\"_self\"\u003E \u003Cimg alt=\"Shop Spring Cookware Event\" class=\"  \" title=\"Shop Spring Cookware Event\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202616\u002F2271\u002F001\u002F001.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"408\" width=\"768\" \u002F\u003E \u003C\u002Fa\u003E \n \u003C\u002Fdiv\u003E \n \u003Cdiv id=\"imagerollover644393829\" class=\"section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile padding-m \"\u003E \n  \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Fsale-special-offer\u002Fhestan+premier-view-all\u002Fbrand-attr-m-brands-ff0013fe5f-1\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner1-_-default-_-shop_hestan_promo\" target=\"_self\"\u003E \u003Cimg alt=\"Shop Hestan Cookware\" class=\"  \" title=\"Shop Hestan Cookware\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202616\u002F2271\u002F001\u002F016.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"1001\" width=\"768\" \u002F\u003E \u003C\u002Fa\u003E \n \u003C\u002Fdiv\u003E \n \u003Cdiv id=\"imagerollover-1176428935\" class=\"section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile padding-s module-inset-hero-image \"\u003E \n  \u003Cimg alt=\"More Great Deals on Cookware + Free Shipping\" class=\"  \" title=\"More Great Deals on Cookware + Free Shipping\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202614\u002F3300\u002F001\u002F001.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"104\" width=\"688\" \u002F\u003E \n \u003C\u002Fdiv\u003E \n \u003Cdiv id=\"slider-244199361\" class=\"slider section scroller-container horizontal &amp;nbsp vue-ecm-slider no-infinite-scroll sm-one-half-slider padding-l ecm-component-wrapper ecm-slider-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile\" data-scroller=\"{duration:350, pageSize:1, easing:dojo.fx.easing.cubicInOut}\"\u003E \n  \u003Cdiv class=\"disabled btn-prev control\" data-cmp-hook-carousel=\"previous\"\u003E \n   \u003Ca href=\"#\"\u003EScroll to Previous Item\u003C\u002Fa\u003E \n  \u003C\u002Fdiv\u003E \n  \u003Cdiv class=\"scroller\"\u003E \n   \u003Cul class=\"cmp-carousel__content panel\"\u003E \n    \u003Cli class=\"imagerollover\"\u003E \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Fsale-special-offer\u002Foffers-le-creuset-cookware\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner1-_-default-_-shop_le_creuset_promo\" target=\"_self\"\u003E \u003Cimg alt=\"Shop Le Creuset Cookware\" class=\"  \" title=\"Shop Le Creuset Cookware\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202616\u002F2271\u002F001\u002F006.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"833\" width=\"448\" \u002F\u003E \u003C\u002Fa\u003E \u003C\u002Fli\u003E \n    \u003Cli class=\"imagerollover\"\u003E \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Fsale-special-offer\u002Fgreenpan-+premier-cookware\u002Fbrand-attr-m-brands-ff000516feu~21225f-1\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner2-_-default-_-shop_tucci_promo\" target=\"_self\"\u003E \u003Cimg alt=\"Shop GreenPan™ Stanley Tucci™\" class=\"  \" title=\"Shop GreenPan™ Stanley Tucci™\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202616\u002F2271\u002F001\u002F007.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"833\" width=\"448\" \u002F\u003E \u003C\u002Fa\u003E \u003C\u002Fli\u003E \n    \u003Cli class=\"imagerollover\"\u003E \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Fsale-special-offer\u002Foffers-all-clad-cookware\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner1-_-default-_-shop_ac_copper_core\" target=\"_self\"\u003E \u003Cimg alt=\"Shop All-Clad Cookware\" class=\"  \" title=\"Shop All-Clad Cookware\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202616\u002F2271\u002F001\u002F012.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"833\" width=\"448\" \u002F\u003E \u003C\u002Fa\u003E \u003C\u002Fli\u003E \n    \u003Cli class=\"imagerollover\"\u003E \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Fsale-special-offer\u002Foffers-staub-cookware\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner1-_-default-_-shop_staub_cookware_promo\" target=\"_self\"\u003E \u003Cimg alt=\"Shop Staub\" class=\"  \" title=\"Shop Staub\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202616\u002F2271\u002F001\u002F015.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"833\" width=\"448\" \u002F\u003E \u003C\u002Fa\u003E \u003C\u002Fli\u003E \n    \u003Cli class=\"imagerollover\"\u003E \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Fsale-special-offer\u002Fhestan+premier-view-all\u002Fbrand-attr-m-brands-ff0013fe5f-1\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner1-_-default-_-shop_hestan_promo\" target=\"_self\"\u003E \u003Cimg alt=\"Shop Hestan Cookware\" class=\"  \" title=\"Shop Hestan Cookware\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202616\u002F2271\u002F001\u002F009.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"833\" width=\"448\" \u002F\u003E \u003C\u002Fa\u003E \u003C\u002Fli\u003E \n    \u003Cli class=\"imagerollover\"\u003E \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Fsale-special-offer\u002Fscanpan-+premier-cookware\u002Fbrand-attr-m-brands-ff0001020304050615feae5f-1\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner1-_-default-_-shop_scanpan_promo\" target=\"_self\"\u003E \u003Cimg alt=\"Shop SCANPAN&reg;\" class=\"  \" title=\"Shop SCANPAN&reg;\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202614\u002F3225\u002F001\u002F012.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"833\" width=\"448\" \u002F\u003E \u003C\u002Fa\u003E \u003C\u002Fli\u003E \n    \u003Cli class=\"imagerollover\"\u003E \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Fsale-special-offer\u002Foffers-ws-cookware\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner1-_-default-_-shop_ws_cookware_promo\" target=\"_self\"\u003E \u003Cimg alt=\"Shop Williams Sonoma Cookware\" class=\"  \" title=\"Shop Williams Sonoma Cookware\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202614\u002F3225\u002F001\u002F004.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"833\" width=\"448\" \u002F\u003E \u003C\u002Fa\u003E \u003C\u002Fli\u003E \n    \u003Cli class=\"imagerollover\"\u003E \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Fsale-special-offer\u002Flodge+premier-cookware\u002Fbrand-attr-m-brands-ff0012fe5f-1\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner1-_-default-_-shop_lodge_promo\" target=\"_self\"\u003E \u003Cimg alt=\"Shop Lodge\" class=\"  \" title=\"Shop Lodge\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202616\u002F2717\u002F001\u002F003.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"833\" width=\"448\" \u002F\u003E \u003C\u002Fa\u003E \u003C\u002Fli\u003E \n    \u003Cli class=\"imagerollover\"\u003E \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Fsale-special-offer\u002Foffers-le-creuset-cookware\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner1-_-default-_-shop_le_creuset_promo\" target=\"_self\"\u003E \u003Cimg alt=\"Shop Le Creuset Cookware\" class=\"  \" title=\"Shop Le Creuset Cookware\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202614\u002F3300\u002F001\u002F007.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"833\" width=\"448\" \u002F\u003E \u003C\u002Fa\u003E \u003C\u002Fli\u003E \n   \u003C\u002Ful\u003E \n  \u003C\u002Fdiv\u003E \n  \u003Cdiv class=\"btn-next control\" data-cmp-hook-carousel=\"next\"\u003E \n   \u003Ca href=\"#\"\u003EScroll to Next Item\u003C\u002Fa\u003E \n  \u003C\u002Fdiv\u003E \n \u003C\u002Fdiv\u003E \n \u003Cdiv id=\"imagerollover2054111348\" class=\"section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile  \"\u003E \n  \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fpages\u002Fwilliams-sonoma\u002Ftabletop-bar\u002Fset-your-table\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner2-_-default-_-shop_table_setting_inspo\" target=\"_self\"\u003E \u003Cimg alt=\"Shop Table Setting Inspirations\" class=\"  \" title=\"Shop Table Setting Inspirations\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202616\u002F1462\u002F001\u002F001.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"206\" width=\"768\" \u002F\u003E \u003C\u002Fa\u003E \n \u003C\u002Fdiv\u003E \n \u003Cdiv id=\"imagerollover-1717890845\" class=\"section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile padding-m \"\u003E \n  \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Ftabletop-glassware-bar\u002Ftabletop-dinnerware-sets\u002Fsanderson-country-woodland\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner3-_-default-_-shop_tabletop_sanderson\" target=\"_self\"\u003E \u003Cimg alt=\"Shop Sanderson Country Woodland Collection\" class=\"  \" title=\"Shop Sanderson Country Woodland Collection\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202616\u002F1462\u002F001\u002F002.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"904\" width=\"768\" \u002F\u003E \u003C\u002Fa\u003E \n \u003C\u002Fdiv\u003E \n \u003Cdiv id=\"\" class=\"ecm-component-wrapper ecm-column-control responsive-devicetype-not-desktop responsive-devicetype-mobile parsys_column wsi-colctrl-lt2a col-ctrl-nowrap padding-l\"\u003E \n  \u003Cdiv class=\"parsys_column wsi-colctrl-lt2a-c0 \"\u003E \n   \u003Cdiv id=\"imagerollover1499079594\" class=\"section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile padding-m \"\u003E \n    \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Ftabletop-glassware-bar\u002Ftabletop-dinnerware-sets\u002Ffamille-rose\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner2-_-default-_-shop_famille_rose\" target=\"_self\"\u003E \u003Cimg alt=\"Shop Famille Rose Collection\" class=\"  \" title=\"Shop Famille Rose Collection\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202614\u002F2092\u002F001\u002F006.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"463\" width=\"328\" \u002F\u003E \u003C\u002Fa\u003E \n   \u003C\u002Fdiv\u003E \n   \u003Cdiv id=\"imagerollover1732925402\" class=\"section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile  \"\u003E \n    \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Ftabletop-glassware-bar\u002Faerin-meadow-lace+ws-aerin\u002Fcollection-m-collection-ff0001020304060d1efe2020-1\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=shopbanner-_-default-_-dinnerware_collections_aerin_meadow_lace\" target=\"_self\"\u003E \u003Cimg alt=\"Shop AERIN Meadow Lace Collection\" class=\"  \" title=\"Shop AERIN Meadow Lace Collection\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202614\u002F2677\u002F001\u002F003.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"499\" width=\"328\" \u002F\u003E \u003C\u002Fa\u003E \n   \u003C\u002Fdiv\u003E \n  \u003C\u002Fdiv\u003E \n  \u003Cdiv class=\"parsys_column wsi-colctrl-lt2a-c1  \"\u003E \n   \u003Cdiv id=\"imagerollover-427872853\" class=\"section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile padding-m \"\u003E \n    \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Ftabletop-glassware-bar\u002Ftabletop-dinnerware-sets\u002Flimone-dinnerware\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner3-_-default-_-shop_limone_collection\" target=\"_self\"\u003E \u003Cimg alt=\"Shop Limone Collection\" class=\"  \" title=\"Shop Limone Collection\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202616\u002F2717\u002F001\u002F001.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"463\" width=\"328\" \u002F\u003E \u003C\u002Fa\u003E \n   \u003C\u002Fdiv\u003E \n   \u003Cdiv id=\"imagerollover-902336138\" class=\"section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile  \"\u003E \n    \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Ftabletop-glassware-bar\u002Ftabletop-dinnerware-sets\u002Fbordalo-pinheiro\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner2-_-default-_-shop_bordallo_pinheiro\" target=\"_self\"\u003E \u003Cimg alt=\"Shop Bordallo Pinheiro Collection\" class=\"  \" title=\"Shop Bordallo Pinheiro Collection\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202614\u002F2092\u002F001\u002F005.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"499\" width=\"328\" \u002F\u003E \u003C\u002Fa\u003E \n   \u003C\u002Fdiv\u003E \n  \u003C\u002Fdiv\u003E \n \u003C\u002Fdiv\u003E \n \u003Cdiv style=\"clear:both\"\u003E\u003C\u002Fdiv\u003E \n \u003Cdiv id=\"imagerollover552433949\" class=\"section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile  \"\u003E \n  \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fproducts\u002Fdelonghi-primadonna-aromatic-fully-automatic-espresso-machine\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner4-_-default-_-shop_delonghi_primadonna\" target=\"_self\"\u003E \u003Cimg alt=\"Shop De'Longhi PrimaDonna Aromatic Fully Automatic Espresso Machine\" class=\"  \" title=\"Shop De'Longhi PrimaDonna Aromatic Fully Automatic Espresso Machine\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202616\u002F2271\u002F001\u002F002.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"342\" width=\"768\" \u002F\u003E \u003C\u002Fa\u003E \n \u003C\u002Fdiv\u003E \n \u003Cdiv id=\"imagerollover-1191242213\" class=\"section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile padding-m \"\u003E \n  \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Felectrics\u002Fespresso-makers\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner4-_-default-_-shop_espresso_machines\" target=\"_self\"\u003E \u003Cimg alt=\"Shop Espresso Machines\" class=\"  \" title=\"Shop Espresso Machines\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202616\u002F2271\u002F001\u002F014.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"658\" width=\"768\" \u002F\u003E \u003C\u002Fa\u003E \n \u003C\u002Fdiv\u003E \n \u003Cdiv id=\"slider-578249258\" class=\"slider section scroller-container horizontal &amp;nbsp vue-ecm-slider no-infinite-scroll sm-one-half-slider padding-l ecm-component-wrapper ecm-slider-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile\" data-scroller=\"{duration:350, pageSize:1, easing:dojo.fx.easing.cubicInOut}\"\u003E \n  \u003Cdiv class=\"disabled btn-prev control\" data-cmp-hook-carousel=\"previous\"\u003E \n   \u003Ca href=\"#\"\u003EScroll to Previous Item\u003C\u002Fa\u003E \n  \u003C\u002Fdiv\u003E \n  \u003Cdiv class=\"scroller\"\u003E \n   \u003Cul class=\"cmp-carousel__content panel\"\u003E \n    \u003Cli class=\"imagerollover\"\u003E \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fproducts\u002Fphilips-8000-cafe-aromis-fully-automatic-espresso-machine\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner4-_-default-_-shop_philips_aromis\" target=\"_self\"\u003E \u003Cimg alt=\"Philips Caf&eacute; Aromis 8000 Series Fully Automatic Espresso Machine\" class=\"  \" title=\"Philips Caf&eacute; Aromis 8000 Series Fully Automatic Espresso Machine\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202616\u002F2271\u002F001\u002F004.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"875\" width=\"448\" \u002F\u003E \u003C\u002Fa\u003E \u003C\u002Fli\u003E \n    \u003Cli class=\"imagerollover\"\u003E \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Fsale-special-offer\u002Fnespresso+premier-electrics\u002Fbrand-attr-m-brands-ff0016fe5f-1\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner4-_-default-_-shop_nespresso_electrics\" target=\"_self\"\u003E \u003Cimg alt=\"Shop Nespresso Machines\" class=\"  \" title=\"Shop Nespresso Machines\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202615\u002F0703\u002F001\u002F003.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"875\" width=\"448\" \u002F\u003E \u003C\u002Fa\u003E \u003C\u002Fli\u003E \n    \u003Cli class=\"imagerollover\"\u003E \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fproducts\u002Fbreville-oracle-dual-boiler-espresso-machine\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner4-_-default-_-shop_breville_oracle_dual_boiler\" target=\"_self\"\u003E \u003Cimg alt=\"Shop Breville Oracle&reg; Dual Boiler Espresso Machine\" class=\"  \" title=\"Shop Breville Oracle&reg; Dual Boiler Espresso Machine\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202616\u002F2271\u002F001\u002F008.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"875\" width=\"448\" \u002F\u003E \u003C\u002Fa\u003E \u003C\u002Fli\u003E \n    \u003Cli class=\"imagerollover\"\u003E \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fproducts\u002Ffellow-series-1-espresso-machine\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner3-_-default-_-shop_fellow_series_1\" target=\"_self\"\u003E \u003Cimg alt=\"Fellow Series 1 Espresso Machine, Sesame with Maple Wood Handle\" class=\"  \" title=\"Fellow Series 1 Espresso Machine, Sesame with Maple Wood Handle\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202614\u002F1435\u002F001\u002F009.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"752\" width=\"448\" \u002F\u003E \u003C\u002Fa\u003E \u003C\u002Fli\u003E \n    \u003Cli class=\"imagerollover\"\u003E \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fproducts\u002Fphilips-baristina-plus-espresso-machine\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner3-_-default-_-shop_philips_baristina_plus\" target=\"_self\"\u003E \u003Cimg alt=\"Philips Baristina Plus Stainless Steel Espresso Machine\" class=\"  \" title=\"Philips Baristina Plus Stainless Steel Espresso Machine\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202614\u002F1435\u002F001\u002F006.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"710\" width=\"448\" \u002F\u003E \u003C\u002Fa\u003E \u003C\u002Fli\u003E \n    \u003Cli class=\"imagerollover\"\u003E \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Fsale-special-offer\u002Foffers-cuisinart\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner4-_-default-_-shop_cuisinart_electrics\" target=\"_self\"\u003E \u003Cimg alt=\"Shop Cuisinart Electrics\" class=\"  \" title=\"Shop Cuisinart Electrics\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202614\u002F3225\u002F001\u002F007.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"791\" width=\"448\" \u002F\u003E \u003C\u002Fa\u003E \u003C\u002Fli\u003E \n    \u003Cli class=\"imagerollover\"\u003E \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fproducts\u002Fjura-c9-fully-automatic-espresso-machine\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner3-_-default-_-shop_jura_c9\" target=\"_self\"\u003E \u003Cimg alt=\"JURA C9 Fully Automatic Espresso Machine, Piano White\" class=\"  \" title=\"JURA C9 Fully Automatic Espresso Machine, Piano White\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202614\u002F1435\u002F001\u002F004.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"752\" width=\"448\" \u002F\u003E \u003C\u002Fa\u003E \u003C\u002Fli\u003E \n    \u003Cli class=\"imagerollover\"\u003E \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fproducts\u002Fnespresso-vertuo-up-espresso-machine-breville\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner3-_-default-_-shop_nespresso_vertuo_up\" target=\"_self\"\u003E \u003Cimg alt=\"Nespresso Vertuo Up Espresso Machine by Breville, Ink Black\" class=\"  \" title=\"Nespresso Vertuo Up Espresso Machine by Breville, Ink Black\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202614\u002F1435\u002F001\u002F007.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"710\" width=\"448\" \u002F\u003E \u003C\u002Fa\u003E \u003C\u002Fli\u003E \n   \u003C\u002Ful\u003E \n  \u003C\u002Fdiv\u003E \n  \u003Cdiv class=\"btn-next control\" data-cmp-hook-carousel=\"next\"\u003E \n   \u003Ca href=\"#\"\u003EScroll to Next Item\u003C\u002Fa\u003E \n  \u003C\u002Fdiv\u003E \n \u003C\u002Fdiv\u003E \n \u003Cdiv id=\"imagerollover-1903457339\" class=\"section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile  \"\u003E \n  \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Felectrics\u002Fcountertop-ovens+toasters+countertop-oven-accessories+electrics-breville\u002Fproducttype-m-product-type-ff000b101823283a4149fe20202020-3\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner4-_-default-_-shop_breville_ovens\" target=\"_self\"\u003E \u003Cimg alt=\"Shop Breville Ovens\" class=\"  \" title=\"Shop Breville Ovens\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202614\u002F1435\u002F001\u002F020.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"1001\" width=\"768\" \u002F\u003E \u003C\u002Fa\u003E \n \u003C\u002Fdiv\u003E \n \u003Cdiv id=\"imagerollover-1860144727\" class=\"section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile padding-l \"\u003E \n  \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fpages\u002Fvirtual-events-and-in-store-classes\u002Fskills-series\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner4-_-default-_-shop_skill_series\" target=\"_self\"\u003E \u003Cimg alt=\"Williams Sonoma Test Kitchen Skill Series. Reserve Your Spot\" class=\"  \" title=\"Williams Sonoma Test Kitchen Skill Series. Reserve Your Spot\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202614\u002F1435\u002F001\u002F003.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"320\" width=\"768\" \u002F\u003E \u003C\u002Fa\u003E \n \u003C\u002Fdiv\u003E \n \u003Cdiv id=\"imagerollover1739634683\" class=\"section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile module-inset-hero-image padding-s \"\u003E \n  \u003Cimg alt=\"A Taste of Spring\" class=\"  \" title=\"A Taste of Spring\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202614\u002F3300\u002F001\u002F002.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"156\" width=\"688\" \u002F\u003E \n \u003C\u002Fdiv\u003E \n \u003Cdiv id=\"imagerollover1777330495\" class=\"section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile padding-m module-inset-hero-image \"\u003E \n  \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Felectrics\u002Felectrics-kitchenaid\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner5-_-default-_-shop_kitchenaid\" target=\"_self\"\u003E \u003Cimg alt=\"Shop KitchenAid&reg; Electrics\" class=\"  \" title=\"Shop KitchenAid&reg; Electrics\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202614\u002F3300\u002F001\u002F011.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"912\" width=\"688\" \u002F\u003E \u003C\u002Fa\u003E \n \u003C\u002Fdiv\u003E \n \u003Cdiv id=\"imagerollover-1657147960\" class=\"section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile module-inset-hero-image padding-l \"\u003E \n  \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Fbakeware\u002Fbakeware-williams-sonoma\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner5-_-default-_-shop_ws_bakeware\" target=\"_self\"\u003E \u003Cimg alt=\"Williams Sonoma Bakeware\" class=\"  \" title=\"Williams Sonoma Bakeware\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202614\u002F3225\u002F001\u002F022.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"912\" width=\"688\" \u002F\u003E \u003C\u002Fa\u003E \n \u003C\u002Fdiv\u003E \n \u003Cdiv id=\"imagerollover-427872903\" class=\"section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile padding-l \"\u003E \n  \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Ffood\u002Foakville-grocery\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hphero-_-default-_-shop_oakville_grocery\" target=\"_self\"\u003E \u003Cimg alt=\"Shop Oakville Grocery\" class=\"  \" title=\"Shop Oakville Grocery\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202616\u002F0825\u002F001\u002F004.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"1000\" width=\"768\" \u002F\u003E \u003C\u002Fa\u003E \n \u003C\u002Fdiv\u003E \n \u003Cdiv id=\"imagerollover-356845913\" class=\"section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile padding-s module-inset-hero-image \"\u003E \n  \u003Cimg alt=\"Sharp Savings on Cutlery + Free Shipping\" class=\"  \" title=\"Sharp Savings on Cutlery + Free Shipping\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202614\u002F3225\u002F001\u002F002.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"104\" width=\"688\" \u002F\u003E \n \u003C\u002Fdiv\u003E \n \u003Cdiv id=\"slider-1799623746\" class=\"slider section scroller-container horizontal &amp;nbsp vue-ecm-slider no-infinite-scroll sm-one-half-slider padding-l ecm-component-wrapper ecm-slider-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile\" data-scroller=\"{duration:350, pageSize:1, easing:dojo.fx.easing.cubicInOut}\"\u003E \n  \u003Cdiv class=\"disabled btn-prev control\" data-cmp-hook-carousel=\"previous\"\u003E \n   \u003Ca href=\"#\"\u003EScroll to Previous Item\u003C\u002Fa\u003E \n  \u003C\u002Fdiv\u003E \n  \u003Cdiv class=\"scroller\"\u003E \n   \u003Cul class=\"cmp-carousel__content panel\"\u003E \n    \u003Cli class=\"imagerollover\"\u003E \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Fcutlery\u002Fknives-shun-featured\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner6-_-default-_-shop_shun_promo\" target=\"_self\"\u003E \u003Cimg alt=\"Shop Shun Cutlery\" class=\"  \" title=\"Shop Shun Cutlery\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202614\u002F3259\u002F001\u002F001.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"791\" width=\"448\" \u002F\u003E \u003C\u002Fa\u003E \u003C\u002Fli\u003E \n    \u003Cli class=\"imagerollover\"\u003E \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Fcutlery\u002Fknives-global-featured\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner6-_-default-_-shop_global_cutlery_promo\" target=\"_self\"\u003E \u003Cimg alt=\"Shop Global Cutlery\" class=\"  \" title=\"Shop Global Cutlery\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202614\u002F3225\u002F001\u002F019.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"791\" width=\"448\" \u002F\u003E \u003C\u002Fa\u003E \u003C\u002Fli\u003E \n    \u003Cli class=\"imagerollover\"\u003E \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Fcutlery\u002Fknives-zwilling-featured\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner2-_-default-_-shop_zwilling_promo\" target=\"_self\"\u003E \u003Cimg alt=\"Shop Zwilling Cutlery\" class=\"  \" title=\"Shop Zwilling Cutlery\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202614\u002F3225\u002F001\u002F010.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"791\" width=\"448\" \u002F\u003E \u003C\u002Fa\u003E \u003C\u002Fli\u003E \n    \u003Cli class=\"imagerollover\"\u003E \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Fcutlery\u002Fwusthof-specialty\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner6-_-default-_-shop_wusthof_cutlery\" target=\"_self\"\u003E \u003Cimg alt=\"Shop W&Uuml;STHOF Cutlery\" class=\"  \" title=\"Shop W&Uuml;STHOF Cutlery\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202614\u002F3225\u002F001\u002F018.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"791\" width=\"448\" \u002F\u003E \u003C\u002Fa\u003E \u003C\u002Fli\u003E \n   \u003C\u002Ful\u003E \n  \u003C\u002Fdiv\u003E \n  \u003Cdiv class=\"btn-next control\" data-cmp-hook-carousel=\"next\"\u003E \n   \u003Ca href=\"#\"\u003EScroll to Next Item\u003C\u002Fa\u003E \n  \u003C\u002Fdiv\u003E \n \u003C\u002Fdiv\u003E \n \u003Cdiv id=\"imagerollover-1914871751\" class=\"section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile padding-m \"\u003E \n  \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Foutdoor\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner6-_-default-_-shop_outdoor\" target=\"_self\"\u003E \u003Cimg alt=\"Shop Outdoor\" class=\"  \" title=\"Shop Outdoor\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202616\u002F2271\u002F001\u002F017.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"1000\" width=\"768\" \u002F\u003E \u003C\u002Fa\u003E \n \u003C\u002Fdiv\u003E \n \u003Cdiv id=\"slider-240466886\" class=\"slider section scroller-container horizontal &amp;nbsp vue-ecm-slider no-infinite-scroll sm-one-half-slider padding-l ecm-component-wrapper ecm-slider-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile\" data-scroller=\"{duration:350, pageSize:1, easing:dojo.fx.easing.cubicInOut}\"\u003E \n  \u003Cdiv class=\"disabled btn-prev control\" data-cmp-hook-carousel=\"previous\"\u003E \n   \u003Ca href=\"#\"\u003EScroll to Previous Item\u003C\u002Fa\u003E \n  \u003C\u002Fdiv\u003E \n  \u003Cdiv class=\"scroller\"\u003E \n   \u003Cul class=\"cmp-carousel__content panel\"\u003E \n    \u003Cli class=\"imagerollover\"\u003E \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Felectrics\u002Fpizza-ovens\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner7-_-default-_-shop_ooni\" target=\"_self\"\u003E \u003Cimg alt=\"Shop Pizza Ovens\" class=\"  \" title=\"Shop Pizza Ovens\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202616\u002F2717\u002F001\u002F002.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"612\" width=\"448\" \u002F\u003E \u003C\u002Fa\u003E \u003C\u002Fli\u003E \n    \u003Cli class=\"imagerollover\"\u003E \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Foutdoor\u002Foutdoor-cookware\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner8-_-default-_-shop_outdoor_cookware\" target=\"_self\"\u003E \u003Cimg alt=\"Shop Outdoor Cookware\" class=\"  \" title=\"Shop Outdoor Cookware\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202614\u002F2092\u002F001\u002F016.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"612\" width=\"448\" \u002F\u003E \u003C\u002Fa\u003E \u003C\u002Fli\u003E \n    \u003Cli class=\"imagerollover\"\u003E \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Foutdoor\u002Foutdoor-grill-tools-accessories\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner8-_-default-_-shop_grill_bbq_tools\" target=\"_self\"\u003E \u003Cimg alt=\"Shop Grill &amp; BBQ Tools\" class=\"  \" title=\"Shop Grill &amp; BBQ Tools\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202614\u002F2092\u002F001\u002F004.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"612\" width=\"448\" \u002F\u003E \u003C\u002Fa\u003E \u003C\u002Fli\u003E \n    \u003Cli class=\"imagerollover\"\u003E \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Ffood\u002Fmeat\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner8-_-default-_-shop_food_delivered\" target=\"_self\"\u003E \u003Cimg alt=\"Shop Delivered Meats\" class=\"  \" title=\"Shop Delivered Meats\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202614\u002F2124\u002F001\u002F001.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"612\" width=\"448\" \u002F\u003E \u003C\u002Fa\u003E \u003C\u002Fli\u003E \n    \u003Cli class=\"imagerollover\"\u003E \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Ffood\u002Fbbq---grilling-sauces+seasonings---rubs+food-all-pantry\u002Fproducttype-m-product-type-ff000102060f15222d343cfe2026202020262020-2\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner8-_-default-_-shop_bbq_rubs_seasonings\" target=\"_self\"\u003E \u003Cimg alt=\"Shop BBQ Rubs &amp; Sauces\" class=\"  \" title=\"Shop BBQ Rubs &amp; Sauces\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202614\u002F2092\u002F001\u002F009.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"612\" width=\"448\" \u002F\u003E \u003C\u002Fa\u003E \u003C\u002Fli\u003E \n   \u003C\u002Ful\u003E \n  \u003C\u002Fdiv\u003E \n  \u003Cdiv class=\"btn-next control\" data-cmp-hook-carousel=\"next\"\u003E \n   \u003Ca href=\"#\"\u003EScroll to Next Item\u003C\u002Fa\u003E \n  \u003C\u002Fdiv\u003E \n \u003C\u002Fdiv\u003E \n \u003Cdiv id=\"imagerollover1057237217\" class=\"section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile padding-s module-inset-hero-image \"\u003E \n  \u003Cimg alt=\"Celebrate Every Occasion\" class=\"  \" title=\"Celebrate Every Occasion\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202612\u002F2240\u002F001\u002F002.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"104\" width=\"688\" \u002F\u003E \n \u003C\u002Fdiv\u003E \n \u003Cdiv id=\"slider-1898267776\" class=\"slider section scroller-container horizontal &amp;nbsp vue-ecm-slider no-infinite-scroll sm-one-half-slider padding-l ecm-component-wrapper ecm-slider-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile\" data-scroller=\"{duration:350, pageSize:1, easing:dojo.fx.easing.cubicInOut}\"\u003E \n  \u003Cdiv class=\"disabled btn-prev control\" data-cmp-hook-carousel=\"previous\"\u003E \n   \u003Ca href=\"#\"\u003EScroll to Previous Item\u003C\u002Fa\u003E \n  \u003C\u002Fdiv\u003E \n  \u003Cdiv class=\"scroller\"\u003E \n   \u003Cul class=\"cmp-carousel__content panel\"\u003E \n    \u003Cli class=\"imagerollover\"\u003E \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Fholidays\u002Fmothers-day\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner7-_-default-_-shop_mothers_day\" target=\"_self\"\u003E \u003Cimg alt=\"Shop Mother's Day\" class=\"  \" title=\"Shop Mother's Day\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202616\u002F2271\u002F001\u002F005.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"612\" width=\"448\" \u002F\u003E \u003C\u002Fa\u003E \u003C\u002Fli\u003E \n    \u003Cli class=\"imagerollover\"\u003E \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Fholidays\u002Fpatriotic\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner7-_-default-_-shop_fourth_july\" target=\"_self\"\u003E \u003Cimg alt=\"Shop 4th of July\" class=\"  \" title=\"Shop 4th of July\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202616\u002F2271\u002F001\u002F010.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"612\" width=\"448\" \u002F\u003E \u003C\u002Fa\u003E \u003C\u002Fli\u003E \n    \u003Cli class=\"imagerollover\"\u003E \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fshop\u002Fholidays\u002Ffathers-day\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_re=hpbanner7-_-default-_-shop_fathers_day\" target=\"_self\"\u003E \u003Cimg alt=\"Shop Father's Day\" class=\"  \" title=\"Shop Father's Day\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202616\u002F2271\u002F001\u002F011.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"612\" width=\"448\" \u002F\u003E \u003C\u002Fa\u003E \u003C\u002Fli\u003E \n   \u003C\u002Ful\u003E \n  \u003C\u002Fdiv\u003E \n  \u003Cdiv class=\"btn-next control\" data-cmp-hook-carousel=\"next\"\u003E \n   \u003Ca href=\"#\"\u003EScroll to Next Item\u003C\u002Fa\u003E \n  \u003C\u002Fdiv\u003E \n \u003C\u002Fdiv\u003E \n \u003Cdiv id=\"mbox735429590\" class=\"hp-content-zone-registry-feature ecm-component-wrapper ecm-mbox-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile\"\u003E \n  \u003Cdiv class=\"mboxDefault\"\u003E \n  \u003C\u002Fdiv\u003E \n  \u003Cscript type=\"text\u002Fjavascript\"\u003E\n                mboxCreate('');\n\n        \u003C\u002Fscript\u003E \n \u003C\u002Fdiv\u003E \n \u003Cdiv id=\"imagerollover-1970952009\" class=\"section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile module-inset-hero-image padding-s \"\u003E \n  \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fpages\u002Fmywilliamssonoma.html"}},{"type":"CONTENT","data":{"CONTENT":"\" target=\"_self\"\u003E \u003Cimg alt=\"See More Inspirations\" class=\"  \" title=\"See More Inspirations\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202529\u002F1036\u002F060\u002F476.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"217\" width=\"696\" \u002F\u003E \u003C\u002Fa\u003E \n \u003C\u002Fdiv\u003E \n \u003Cdiv id=\"vuereference-2073716294 \" class=\"section vuereference padding-l ecm-component-wrapper ecm-vue-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile\"\u003E\n   "}},{"type":"ecm.vue","data":{"name":"Curalate","uniqueLabel":"main_page","CONTENT":"","macroType":"ecm.vue"}},{"type":"CONTENT","data":{"CONTENT":" \n \u003C\u002Fdiv\u003E \n \u003Cdiv id=\"vuereference-644649178 \" class=\"section vuereference padding-l ecm-component-wrapper ecm-vue-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile\"\u003E\n   "}},{"type":"ecm.vue","data":{"pageTypeName":"HPTRENDING","name":"WsiRecs","CONTENT":"","macroType":"ecm.vue"}},{"type":"CONTENT","data":{"CONTENT":" \n \u003C\u002Fdiv\u003E \n \u003Cdiv id=\"vuereference-1188133629 \" class=\"section vuereference padding-l ecm-component-wrapper ecm-vue-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile\"\u003E\n   "}},{"type":"ecm.vue","data":{"pageTypeName":"HPRVI","name":"WsiRecs","CONTENT":"","macroType":"ecm.vue"}},{"type":"CONTENT","data":{"CONTENT":" \n \u003C\u002Fdiv\u003E \n \u003Cdiv id=\"imagerollover-1743867630\" class=\"section imagerollover ecm-component-wrapper ecm-image-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile module-inset-hero-image padding-s \"\u003E \n  \u003Cimg alt=\"Discover Our Family of Brands &gt;\" class=\"  \" title=\"Discover Our Family of Brands &gt;\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202529\u002F1036\u002F019\u002F384.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"157\" width=\"688\" \u002F\u003E \n \u003C\u002Fdiv\u003E \n \u003Cdiv id=\"slider1282002112\" class=\"slider section scroller-container horizontal &amp;nbsp vue-ecm-slider sm-one-half-slider no-infinite-scroll padding-l ecm-component-wrapper ecm-slider-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile\" data-scroller=\"{duration:350, pageSize:1, easing:dojo.fx.easing.cubicInOut}\"\u003E \n  \u003Cdiv class=\"disabled btn-prev control\" data-cmp-hook-carousel=\"previous\"\u003E \n   \u003Ca href=\"#\"\u003EScroll to Previous Item\u003C\u002Fa\u003E \n  \u003C\u002Fdiv\u003E \n  \u003Cdiv class=\"scroller\"\u003E \n   \u003Cul class=\"cmp-carousel__content panel\"\u003E \n    \u003Cli class=\"imagerollover\"\u003E \u003Ca href=\""}},{"type":"wsgc.contextualappurl","data":{"macroType":"wsgc.contextualappurl","url":"\u002Fpages\u002Fwilliams-sonoma-home\u002F"}},{"type":"CONTENT","data":{"CONTENT":"?cm_ven=crossbrandreferral&amp;cm_cat=WS_&amp;cm_pla=xbrandevent&amp;cm_ite=evergreenfooter\" target=\"_blank\"\u003E \u003Cimg alt=\"Williams Sonoma Home &gt;\" class=\"  \" title=\"Williams Sonoma Home &gt;\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202550\u002F2826\u002F001\u002F006.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"560\" width=\"448\" \u002F\u003E \u003C\u002Fa\u003E \u003C\u002Fli\u003E \n    \u003Cli class=\"imagerollover\"\u003E \u003Ca href=\"https:\u002F\u002Fwww.potterybarnkids.com\u002F?cm_ven=crossbrandreferral&amp;cm_cat=WS_&amp;cm_pla=xbrandevent&amp;cm_ite=evergreenfooter\" target=\"_blank\"\u003E \u003Cimg alt=\"Pottery Barn &gt;\" class=\"  \" title=\"Pottery Barn &gt;\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202550\u002F2826\u002F001\u002F004.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"560\" width=\"448\" \u002F\u003E \u003C\u002Fa\u003E \u003C\u002Fli\u003E \n    \u003Cli class=\"imagerollover\"\u003E \u003Ca href=\"https:\u002F\u002Fwww.potterybarnkids.com\u002F?cm_ven=crossbrandreferral&amp;cm_cat=WS_&amp;cm_pla=xbrandevent&amp;cm_ite=evergreenfooter\" target=\"_blank\"\u003E \u003Cimg alt=\"Pottery Barn Kids &gt;\" class=\"  \" title=\"Pottery Barn Kids &gt;\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202550\u002F2826\u002F001\u002F001.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"560\" width=\"448\" \u002F\u003E \u003C\u002Fa\u003E \u003C\u002Fli\u003E \n    \u003Cli class=\"imagerollover\"\u003E \u003Ca href=\"https:\u002F\u002Fwww.pbteen.com\u002F?cm_ven=crossbrandreferral&amp;cm_cat=WS_&amp;cm_pla=xbrandevent&amp;cm_ite=evergreenfooter\" target=\"_blank\"\u003E \u003Cimg alt=\"Pottery Barn Teen &gt;\" class=\"  \" title=\"Pottery Barn Teen &gt;\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202550\u002F2826\u002F001\u002F005.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"560\" width=\"448\" \u002F\u003E \u003C\u002Fa\u003E \u003C\u002Fli\u003E \n    \u003Cli class=\"imagerollover\"\u003E \u003Ca href=\"https:\u002F\u002Fwww.westelm.com\u002F?cm_ven=crossbrandreferral&amp;cm_cat=WS_&amp;cm_pla=xbrandevent&amp;cm_ite=evergreenfooter\" target=\"_blank\"\u003E \u003Cimg alt=\"West Elm &gt;\" class=\"  \" title=\"West Elm &gt;\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202550\u002F2826\u002F001\u002F003.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"560\" width=\"448\" \u002F\u003E \u003C\u002Fa\u003E \u003C\u002Fli\u003E \n    \u003Cli class=\"imagerollover\"\u003E \u003Ca href=\"https:\u002F\u002Fwww.markandgraham.com\u002F?cm_ven=crossbrandreferral&amp;cm_cat=WS_&amp;cm_pla=xbrandevent&amp;cm_ite=evergreenfooter\" target=\"_blank\"\u003E \u003Cimg alt=\"Mark and Graham &gt;\" class=\"  \" title=\"Mark and Graham &gt;\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202550\u002F2826\u002F001\u002F007.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"560\" width=\"448\" \u002F\u003E \u003C\u002Fa\u003E \u003C\u002Fli\u003E \n    \u003Cli class=\"imagerollover\"\u003E \u003Ca href=\"https:\u002F\u002Fwww.rejuvenation.com\u002F?cm_ven=crossbrandreferral&amp;cm_cat=WS_&amp;cm_pla=xbrandevent&amp;cm_ite=evergreenfooter\" target=\"_blank\"\u003E \u003Cimg alt=\"Rejuvenation &gt;\" class=\"  \" title=\"Rejuvenation &gt;\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202550\u002F2826\u002F001\u002F002.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"560\" width=\"448\" \u002F\u003E \u003C\u002Fa\u003E \u003C\u002Fli\u003E \n    \u003Cli class=\"imagerollover\"\u003E \u003Ca href=\"https:\u002F\u002Fwww.greenrow.com\u002F?cm_ven=crossbrandreferral&amp;cm_cat=WS_&amp;cm_pla=xbrandevent&amp;cm_ite=evergreenfooter\" target=\"_blank\"\u003E \u003Cimg alt=\"GreenRow &gt;\" class=\"  \" title=\"GreenRow &gt;\" src=\""}},{"type":"wsgc.ecmasseturl","data":{"macroType":"wsgc.ecmasseturl","url":"ecm\u002F202550\u002F2826\u002F001\u002F008.jpg"}},{"type":"CONTENT","data":{"CONTENT":"\" height=\"560\" width=\"448\" \u002F\u003E \u003C\u002Fa\u003E \u003C\u002Fli\u003E \n   \u003C\u002Ful\u003E \n  \u003C\u002Fdiv\u003E \n  \u003Cdiv class=\"btn-next control\" data-cmp-hook-carousel=\"next\"\u003E \n   \u003Ca href=\"#\"\u003EScroll to Next Item\u003C\u002Fa\u003E \n  \u003C\u002Fdiv\u003E \n \u003C\u002Fdiv\u003E \n \u003Cdiv id=\"text-200335284\" class=\"text section hp-content-zone-pzn-product-recs ecm-component-wrapper ecm-text-wrapper responsive-devicetype-not-desktop responsive-devicetype-mobile\"\u003E \n \u003C\u002Fdiv\u003E  \n\u003C\u002Fbody\u003E"}}]},"maxContentAge":1800,"ssrContentConfig":{"enabledForBot":false,"enabledForNonBot":true,"ssrAllPages":{"enabled":false,"excludeURLFromSSR":[]},"ssrSomePages":{"enabled":true,"includeURLForSSR":["\u002F"]}},"enableUrlParameters":false}}</script>
    <footer data-component="Global-Footer" data-style="footer"><!--[--><div id="design-chat" class="design-platform design-chat" data-style="design-chat" data-component="DesignChat" data-test-id="design-chat" style="display:none;"></div><section data-style="footer-sections" data-component="Global-footer-FooterSections" class="global-footer-container"><!--[--><!--[--><!--[--><ul data-style="footer-menu" class="footer-menu"><!--[--><!--[--><li><!--[--><h3 class="footer-heading">Our Company</h3><!--]--><!----></li><!--]--><!--[--><li><!--[--><a href="/customer-service/about-us.html?cm_type=fnav" class="footer-link">Our Story</a><!--]--><!----></li><!--]--><!--[--><li><!--[--><a href="https://www.williams-sonomainc.com" class="footer-link">Williams-Sonoma Inc.</a><!--]--><!----></li><!--]--><!--[--><li><!--[--><a href="/customer-service/careers.html?cm_type=fnav" class="footer-link">Careers</a><!--]--><!----></li><!--]--><!--]--></ul><!--]--><!----><!----><div class="social-icons"><!----><div data-style="email-sign-up" id="footer-email-sign-up"><!----><!----><!----><!----></div><!----><div data-style="ccpa-header-button" class="ccpa-opt-out-button-container HOM" data-component="Global-header-CCPAHeaderButton"><a class="ccpa-opt-out-button" href="/about-us/privacy-policy.html#do-not-sell" target="_blank">Do Not Sell My Personal Information</a></div><!----><div style="text-align:center;"><!----></div><!----><div class="footer-legal"><div class="text section"><p> <a target="_blank"></a> </p></div></div></div><!--]--><!--]--></section><div><ul class="copyright"><!--[--><li><span class="copyright-info">© 2026 Williams-Sonoma Inc., All Rights Reserved</span><!----></li><li><a href="/customer-service/legal-statement.html#terms">Terms &amp; Conditions <span class="last-updated"></span></a><span> | </span></li><li><a href="/customer-service/legal-statement.html#access">Accessibility <span class="last-updated"></span></a><span> | </span></li><li><a href="/netstorage/eu_privacy_policy_9_2025.html">Privacy Policy <span class="last-updated"></span></a><span> | </span></li><li><a href="/netstorage/eu_privacy_policy_9_2025.html#cookie-policy">Cookie Policy <span class="last-updated"></span></a><span> | </span></li><li><a href="/about-us/privacy-policy.html#do-not-sell">Do Not Sell or Share My Personal Information <span class="last-updated"></span></a><span> | </span></li><li><a href="/customer-service/safety-recalls">Safety Recalls <span class="last-updated"></span></a><span> | </span></li><li><a href="/customer-service/ca-right-to-know">State Disclosures <span class="last-updated"></span></a><!----></li><!--]--></ul><!----></div><!--]--></footer><script>window.__FOOTER__INITIAL__STATE__={"footer":{"concept":"WS","config":{"browseMode":[{"key":"commonDesignChat","override":{"enabled":false}},{"key":"copyrights","override":{"copy_list":[{"text":"© 2026 Williams-Sonoma Inc., All Rights Reserved","secondary_text":"","link":""},{"text":"Terms & Conditions","secondary_text":"","link":"\u002Fcustomer-service\u002Flegal-statement.html#terms"},{"text":"Accessibility","secondary_text":"","link":"\u002Fcustomer-service\u002Flegal-statement.html#access"},{"text":"Privacy Policy","secondary_text":"","link":"\u002Fnetstorage\u002Feu_privacy_policy_9_2025.html"},{"text":"Cookie Policy","secondary_text":"","link":"\u002Fnetstorage\u002Feu_privacy_policy_9_2025.html#cookie-policy"},{"text":"Do Not Sell or Share My Personal Information","secondary_text":"","link":"\u002Fabout-us\u002Fprivacy-policy.html#do-not-sell"},{"text":"Safety Recalls","secondary_text":"","link":"\u002Fcustomer-service\u002Fsafety-recalls"},{"text":"State Disclosures","secondary_text":"","link":"\u002Fcustomer-service\u002Fca-right-to-know"}]}},{"key":"emailSignup","override":{"sign_up":false}},{"key":"financialIncentives","override":{}},{"key":"footerLinks","override":{"footer_links":[{"column":[{"text":"Our Company","link":"","type":"header"},{"text":"Our Story","link":"\u002Fcustomer-service\u002Fabout-us.html?cm_type=fnav"},{"text":"Williams-Sonoma Inc.","link":"https:\u002F\u002Fwww.williams-sonomainc.com"},{"text":"Careers","link":"\u002Fcustomer-service\u002Fcareers.html?cm_type=fnav"}]}],"footer_legal":{},"mobile_footer_links":[{"text":"© 2026 Williams-Sonoma Inc., All Rights Reserved"},{"text":"Terms & Conditions","link":"\u002Fcustomer-service\u002Flegal-statement.html#terms"},{"text":"Accessibility","link":"\u002Fcustomer-service\u002Flegal-statement.html#access"},{"text":"Privacy Policy","link":"\u002Fnetstorage\u002Feu_privacy_policy_9_2025.html"},{"text":"Cookie Policy","link":"\u002Fnetstorage\u002Feu_privacy_policy_9_2025.html#cookie-policy"},{"text":"Do Not Sell or Share My Personal Information","link":"\u002Fabout-us\u002Fprivacy-policy.html#do-not-sell"},{"text":"Safety Recalls","link":"\u002Fm\u002Fcustomer-service\u002Fsafety-recalls\u002F?cm_type=fnav&custSvsId=shippingInfo"},{"text":"State Disclosures","link":"\u002Fm\u002Fcustomer-service\u002Fca-right-to-know\u002F?cm_type=fnav"}],"mobile_footer_menu":[{"column":[{"text":"Our Company","link":"","type":"header"},{"text":"Our Story","link":"\u002Fm\u002Fcustomer-service\u002Fabout-us.html?cm_type=fnav"},{"text":"Williams-Sonoma Inc.","link":"https:\u002F\u002Fwww.williams-sonomainc.com"},{"text":"Careers","link":"\u002Fcustomer-service\u002Fcareers.html?cm_type=fnav"}]}],"blog_data":{"icon":"ws-blog","link":""}}},{"key":"mobileEmailSignUp","override":{"enabled":false}},{"key":"socialIcons","override":{"desktop_display_enabled":false,"mobile_display_enabled":false}}],"cookies":{"international":"INTERNATIONAL","internationalCountryName":"INTL_COUNTRY_NAME","REG_STS_COOKIENAME":""},"personalization":{"enabled":false},"profile":{"isUiUserNameCookieEnabled":true},"commonDesignChat":{"enabled":false},"appStoreBadge":{"mobile_app_store_enabled":false,"mobile_app_store_url":"https:\u002F\u002Fapps.apple.com\u002Fus\u002Fapp\u002Fwilliams-sonoma\u002Fid1499531240","mobile_type":"iPhone"},"brandLogo":{"alt_text":"","img_link":"","link":"","loadFromNetStorage":false,"netStoragePath":""},"copyrights":{"copy_list":[{"text":"© 2026 Williams-Sonoma Inc., All Rights Reserved","secondary_text":"","link":""},{"text":"Terms & Conditions","secondary_text":"","link":"\u002Fcustomer-service\u002Flegal-statement.html#terms"},{"text":"Accessibility","secondary_text":"","link":"\u002Fcustomer-service\u002Flegal-statement.html#access"},{"text":"Privacy Policy","secondary_text":"","link":"\u002Fnetstorage\u002Feu_privacy_policy_9_2025.html"},{"text":"Cookie Policy","secondary_text":"","link":"\u002Fnetstorage\u002Feu_privacy_policy_9_2025.html#cookie-policy"},{"text":"Do Not Sell or Share My Personal Information","secondary_text":"","link":"\u002Fabout-us\u002Fprivacy-policy.html#do-not-sell"},{"text":"Safety Recalls","secondary_text":"","link":"\u002Fcustomer-service\u002Fsafety-recalls"},{"text":"State Disclosures","secondary_text":"","link":"\u002Fcustomer-service\u002Fca-right-to-know"}]},"emailSignup":{"sign_up":false},"favorites":{"Favorite":"Favorite","Favorites":"Favorites","favorite":"favorite","favorites":"favorites"},"financialIncentives":{},"footerLinks":{"footer_links":[{"column":[{"text":"Our Company","link":"","type":"header"},{"text":"Our Story","link":"\u002Fcustomer-service\u002Fabout-us.html?cm_type=fnav"},{"text":"Williams-Sonoma Inc.","link":"https:\u002F\u002Fwww.williams-sonomainc.com"},{"text":"Careers","link":"\u002Fcustomer-service\u002Fcareers.html?cm_type=fnav"}]}],"footer_legal":{},"mobile_footer_links":[{"text":"© 2026 Williams-Sonoma Inc., All Rights Reserved"},{"text":"Terms & Conditions","link":"\u002Fcustomer-service\u002Flegal-statement.html#terms"},{"text":"Accessibility","link":"\u002Fcustomer-service\u002Flegal-statement.html#access"},{"text":"Privacy Policy","link":"\u002Fnetstorage\u002Feu_privacy_policy_9_2025.html"},{"text":"Cookie Policy","link":"\u002Fnetstorage\u002Feu_privacy_policy_9_2025.html#cookie-policy"},{"text":"Do Not Sell or Share My Personal Information","link":"\u002Fabout-us\u002Fprivacy-policy.html#do-not-sell"},{"text":"Safety Recalls","link":"\u002Fm\u002Fcustomer-service\u002Fsafety-recalls\u002F?cm_type=fnav&custSvsId=shippingInfo"},{"text":"State Disclosures","link":"\u002Fm\u002Fcustomer-service\u002Fca-right-to-know\u002F?cm_type=fnav"}],"mobile_footer_menu":[{"column":[{"text":"Our Company","link":"","type":"header"},{"text":"Our Story","link":"\u002Fm\u002Fcustomer-service\u002Fabout-us.html?cm_type=fnav"},{"text":"Williams-Sonoma Inc.","link":"https:\u002F\u002Fwww.williams-sonomainc.com"},{"text":"Careers","link":"\u002Fcustomer-service\u002Fcareers.html?cm_type=fnav"}]}],"blog_data":{"icon":"ws-blog","link":""}},"footerV2":{"isEnabled":false},"isCustomFooterEnabled":false,"mobileEmailSignUp":{"enabled":false},"playStoreBadge":{"mobile_app_store_enabled":null,"mobile_app_store_url":null,"mobile_type":null},"socialIcons":{"desktop_display_enabled":false,"mobile_display_enabled":false},"subBrandOverrides":{"MB":{"emailSignup":{"sign_up_copy":null},"footerLinks":{"footer_links":null},"socialIcons":{"icon_color":null,"icons_list":null}},"MT":{"footerLinks":{"footer_links":[]},"socialIcons":{"icon_color":"","icons_list":[]}},"WEK":{"footerLinks":{"footer_links":[],"mobile_footer_menu":[]}}},"subBrands":{"brands":[],"show_sub_brands_links":false,"subBrandSearchEnabled":false},"tabBar":{"extendedOrderV2":[],"extendedOrderV2Enabled":false,"extendedTabBarEnabled":true,"extendedOrder":["home","shop","recipe","registry","account","cart"],"extendedOrderHistory":["home","shop","recipe","registry","orderHistory","cart"],"extendedOrderHistoryEnabled":true,"items":{"account":{"activeImageName":"Account_Active","inactiveImageName":"Account_Inactive","title":"ACCOUNT"},"cart":{"activeImageName":"Bag_Active","inactiveImageName":"Bag_Inactive","title":"CART"},"home":{"activeImageName":"Home_Active","inactiveImageName":"Home_Inactive","title":"HOME"},"orderHistory":{"activeImageName":"Orders_Active","inactiveImageName":"Orders_Inactive","title":"ORDERS"},"recipe":{"activeImageName":"Recipe_Active","inactiveImageName":"Recipe_Inactive","title":"RECIPE"},"registry":{"activeImageName":"Registry_Active","inactiveImageName":"Registry_Inactive","title":"REGISTRY"},"shop":{"activeImageName":"Shop_Active","inactiveImageName":"Shop_Inactive","title":"SHOP"},"wishlist":{"activeImageName":"","inactiveImageName":"","title":""},"designTools":{"activeImageName":"","inactiveImageName":"","title":""}},"order":["home","shop","recipe","registry","cart"]},"static":{"AppStoreBadge":{"altText":"App Store","ariaLabel":"App Store"},"ClosestStoreWidget":{"yourLocalStore":"Your Local Store","storeLocator":"Store Locator"},"Copyright":{"copyrightNotice":"© {{ year }} Williams-Sonoma Inc., All Rights Reserved"},"Feedback":{"siteFeedback":"Site Feedback","giveUsFeedback":"Give Us Feedback","customerFeedback":"Customer Feedback","tellUsWhatYouThink":"Tell us what you think."},"FooterLinks":{"followUs":"Follow Us"},"WSCreditCard":{"imageAltText":"Carte Williams Sonoma Visa"},"CCPAHeaderButton":{"doNotSellMyPersonalInformation":"Do Not Sell My Personal Information"},"EmailSignUp":{"signUp":"Sign Up","footerEmailSignUpText":"Sign Up Now","submitEmailAddressAlt":"Submit email address","enterYourMobileNumber":"Enter your mobile number (Optional)","enterMobileNumber":"Enter mobile number (Optional)","enterEmailAddress":"Enter your email address*","required":"required","mobileNumber":"Mobile Number","submit":"Submit"},"ShippingCountry":{"shipTo":"Ship To"},"shippingCountrySelector":{"loading":"Loading..."},"ShippingCountrySelector":{"loading":"Loading..."}},"_DEV_COMMENT_brConfigKey":"this key value should match the corresponding key in Shop MFE src\u002Fclient\u002Futil\u002Fconstants.js BR_LOCALSTORAGE_KEY","brLocalStorageKey":"BR_CONFIG","brandPhoneNumber":{"contactNumber":"1.877.812.6235"},"breakpoints":{},"catTreeLocalStorageKey":"categoryData","rewardsDpConfig":{"enabled":false},"creditCardServiceProviderName":"COF","deeplinking":{"isEnabled":true},"ecmPlacements":{"DesktopPlacements":["global-wide-banner-1","global-wide-banner-2","global-wide-banner-3","global-wide-banner-4","global-ticker-1","global-ticker-2","global-ticker-3","global-ticker-4","footer-legal","spotlight-stores","secondary-nav-banner-1","email-overlay-copy","email-overlay-copy-legal","email-overlay-copy-confirm"],"MobilePlacements":["mobile-wide-banner-1","mobile-wide-banner-2","mobile-wide-banner-3","mobile-wide-banner-4","mobile-global-ticker-1","mobile-global-ticker-2","mobile-global-ticker-3","mobile-global-ticker-4","mobile-global-nav-top","mobile-global-nav-middle","mobile-global-nav-bottom","email-overlay-copy-m","email-overlay-copy-confirm-m"],"_DesktopPlacements":"Array of xbrand supported site-wide ECM placements for desktop","_MobilePlacements":"Array of xbrand supported site-wide ECM placements for mobile","isPathSpecificPromo":false},"home":{"statusWidget":{"deliveryEstimationExpirationInDays":30,"isEnabledNativeApp":false}},"hostName":"www.williams-sonoma.com","countrySelector":{"isEnabled":true},"i18n":{"countryDetailsEndpoint":"\u002Finternational\u002FcountryDetails-mfe.html","hasShippingCountryInFooter":true,"shippingCountryEnabled":true},"isCatalogMicroServiceEnabled":true,"linkParameters":{"redirectTrackingUrlMatchString":"OLDLINK","parametersToRemove":["cm_re","cm_sp","cm_src","cm_type","originsc","recstrat","tabnav","podId","strategyId"],"parametersToReport":["cm_re","cm_sp","cm_src","cm_type","originsc","position","pkey","recstrat","tabnav","podId","strategyId"]},"enableUrlParameters":true,"longConceptName":"Williams Sonoma","mobileSearchBarToggle":{"isToggleActive":true},"navLinksPathInNewTab":"","pingOneSignals":{"isEnabled":true},"accertify":{"isEnabled":false},"beddingVisualizer":{"beddingVisualiserLink":"","isHideShareButton":false,"isHideAddToWishlistButton":false},"salesforceGeoLocation":{"isEnabled":false,"storeModeDeeplinkPath":"\u002Fstores?storeId"},"updateNativeApp":{"lowestSupportedVersion":"15.18.0","lowestSupportedVersioniOS":"16.4.1","unsupportediOSVersions":[]},"footerSMSCapture":{"isEnabled":true,"smsDisclaimer":"Enter your mobile number to receive marketing text messages. You understand that consent is not required to make a purchase. Message and data rates may apply. Message frequency varies. Wireless carriers are not liable for delayed or undelivered messages. Text HELP for help and STOP to cancel. For questions, please \u003Ca href='\u002Fcustomer-service\u002Femail-us\u002F' target='_blank'\u003Econtact us\u003C\u002Fa\u003E. \u003Ca href='\u002Fabout-us\u002Fterms.html' target='_blank'\u003ETerms\u003C\u002Fa\u003E.","signUpButton":"Sign Up Now"},"mobileFooterSignupV2":{"isEnabled":true,"thanksForSigningUpText":"Thanks for signing up!","emailSmsConfirmationText":"Now you'll always be in the loop on all the latest trends, styles and collabs.","startShoppingText":"START SHOPPING"}},"url":"\u002Ffooter-WS","activeProperties":{"isBrowseMode":"1","isMobile":"0","isSeoBot":"0"},"subBrand":"WS","isBrowseMode":true,"locale":{"primaryLang":null,"secondaryLang":null,"altLangs":null,"timeZone":null,"currency":null,"localeString":"undefined"}}}</script><script src="/.static/202615/85348392/dist/footer/footer.b03e39fe.js" defer ></script>


    <!--Minification cannot be done on these js files.-->
    <script>
      const isBrowseMode = 
        "[object Object]" &&
        "1" === '1';
      if (!isBrowseMode) {
        const mpulseScriptEl = document.createElement("script");
        mpulseScriptEl.src = "https://www.williams-sonoma.com/.static/202615/85348392/js/thirdParty/mpulse-tagger.js";
        mpulseScriptEl.defer = true;
        document.body.appendChild(mpulseScriptEl);

        const opinionLabScriptEl = document.createElement("script");
        opinionLabScriptEl.src = "https://www.williams-sonoma.com/.static/202615/85348392/js/thirdParty/opinionlab.js";
        document.body.appendChild(opinionLabScriptEl);
      }
    </script>
  <script type="text/javascript"  src="/2bc8TPFKYUXAZuD1bq1J/aNihDNEzka3E2p3DDu/IllgMkk7BQ/WVk/AOkpYDBAC"></script><script type="text/javascript"  src="/2bc8TPFKYUXAZuD1bq1J/pNihDNEzka3E/XkZqMkk7BQ/Kz8/0M2w3MA4PAg?v=1553300b-8cfa-e2ab-8b65-51b7990e0216" defer></script></body>
</html>
