/*
 * Walbre commerce mobile polish.
 * 表示補正のみ。WooCommerceの商品・在庫・注文・決済ロジックには触れない。
 */

body.woocommerce,
body.woocommerce-page {
  overflow-x: hidden;
}

body.woocommerce img,
body.woocommerce-page img {
  max-width: 100%;
  height: auto;
}

/*
 * v1.0.30 commerce display guard
 * PC版の /shop/ でもWooCommerce標準表示へ戻らないように、商品一覧の見た目だけを補正。
 * 商品・在庫・注文・決済ロジックには触れない。
 */
body.woocommerce,
body.woocommerce-page {
  background: #f7f5ee;
  color: #1f241d;
}

body.woocommerce .site-main,
body.woocommerce-page .site-main,
body.woocommerce main,
body.woocommerce-page main {
  overflow-x: hidden;
}

body.woocommerce .woocommerce-products-header,
body.woocommerce-page .woocommerce-products-header {
  margin: 0 0 28px;
}

body.woocommerce .woocommerce-products-header__title,
body.woocommerce-page .woocommerce-products-header__title,
body.woocommerce .entry-title,
body.woocommerce-page .entry-title {
  color: #063f2d;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-size: clamp(34px, 5vw, 70px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: .08em;
  word-break: keep-all;
  text-wrap: balance;
}

body.woocommerce .woocommerce-result-count,
body.woocommerce-page .woocommerce-result-count {
  float: none !important;
  margin: 0 0 18px !important;
  color: #6b6d66;
  font-size: 14px;
}

body.woocommerce .woocommerce-ordering,
body.woocommerce-page .woocommerce-ordering {
  float: none !important;
  margin: 0 0 30px !important;
}

body.woocommerce .woocommerce-ordering select,
body.woocommerce-page .woocommerce-ordering select {
  min-height: 48px;
  min-width: min(100%, 320px);
  padding: 0 18px;
  border: 1px solid rgba(185,155,82,.36);
  border-radius: 999px;
  background: #fffdf7;
  color: #164532;
  font: inherit;
}

body.woocommerce ul.products,
body.woocommerce-page ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(20px, 3vw, 34px) !important;
  width: 100% !important;
  margin: 28px 0 0 !important;
  padding: 0 !important;
}

body.woocommerce ul.products::before,
body.woocommerce ul.products::after,
body.woocommerce-page ul.products::before,
body.woocommerce-page ul.products::after {
  display: none !important;
  content: none !important;
}

body.woocommerce ul.products li.product,
body.woocommerce-page ul.products li.product {
  position: relative;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  float: none !important;
  clear: none !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: clamp(18px, 2.3vw, 26px) !important;
  overflow: hidden;
  border: 1px solid rgba(185,155,82,.28);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 10%, rgba(242,214,132,.22), transparent 9rem),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,250,235,.94));
  box-shadow: 0 22px 54px rgba(18, 45, 31, .08);
  text-align: center;
}

body.woocommerce ul.products li.product .woocommerce-loop-product__link,
body.woocommerce-page ul.products li.product .woocommerce-loop-product__link {
  display: flex !important;
  flex: 1 1 auto;
  flex-direction: column !important;
  align-items: center !important;
  color: inherit !important;
  text-decoration: none !important;
}

body.woocommerce ul.products li.product a img,
body.woocommerce-page ul.products li.product a img {
  display: block !important;
  width: min(100%, 260px) !important;
  max-width: 100% !important;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  margin: 0 auto 18px !important;
  padding: 20px;
  border: 1px solid rgba(6, 63, 45, .07);
  border-radius: 24px;
  background: #fff;
}

body.woocommerce ul.products li.product .woocommerce-loop-product__title,
body.woocommerce-page ul.products li.product .woocommerce-loop-product__title {
  display: block !important;
  margin: 0 0 10px !important;
  color: #073d2c !important;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: clamp(18px, 1.75vw, 24px) !important;
  font-weight: 800;
  line-height: 1.45 !important;
  letter-spacing: .02em;
  text-align: center;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

body.woocommerce ul.products li.product .price,
body.woocommerce-page ul.products li.product .price {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  margin: auto 0 16px !important;
  color: #a13f24 !important;
  font-family: Georgia, "Yu Mincho", serif;
  font-size: clamp(17px, 1.55vw, 22px) !important;
  font-weight: 900 !important;
  line-height: 1.3 !important;
  text-align: center;
}

body.woocommerce ul.products li.product .price .amount,
body.woocommerce-page ul.products li.product .price .amount,
body.woocommerce ul.products li.product .price bdi,
body.woocommerce-page ul.products li.product .price bdi {
  color: inherit !important;
  font-weight: inherit !important;
}

body.woocommerce ul.products li.product .button,
body.woocommerce-page ul.products li.product .button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  margin: 0 !important;
  padding: 12px 18px !important;
  border: 1px solid rgba(185,155,82,.58) !important;
  border-radius: 999px !important;
  background: linear-gradient(180deg, #0b774f, #06422f) !important;
  box-shadow: 0 12px 24px rgba(6, 63, 45, .20);
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  line-height: 1.35 !important;
  letter-spacing: .03em;
  text-align: center;
  white-space: normal;
}

body.woocommerce ul.products li.product .button::after,
body.woocommerce-page ul.products li.product .button::after {
  content: "›";
  margin-left: .65em;
  font-size: 1.25em;
  line-height: 1;
}

body.woocommerce .woocommerce-notices-wrapper,
body.woocommerce-page .woocommerce-notices-wrapper {
  max-width: 1120px;
  margin-inline: auto;
}

@media (max-width: 980px) {
  body.woocommerce ul.products,
  body.woocommerce-page ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 782px) {
  body.woocommerce .site-header,
  body.woocommerce-page .site-header {
    max-width: 100%;
  }

  body.woocommerce .site-header-logo,
  body.woocommerce-page .site-header-logo,
  body.woocommerce .navbar-brand,
  body.woocommerce-page .navbar-brand {
    max-width: calc(100vw - 82px);
    min-width: 0;
  }

  body.woocommerce .site-header-logo img,
  body.woocommerce-page .site-header-logo img,
  body.woocommerce .navbar-brand img,
  body.woocommerce-page .navbar-brand img,
  body.woocommerce .custom-logo,
  body.woocommerce-page .custom-logo {
    width: auto;
    max-width: calc(100vw - 94px);
    height: auto;
  }

  body.woocommerce .site-body,
  body.woocommerce-page .site-body,
  body.woocommerce .site-body-container,
  body.woocommerce-page .site-body-container,
  body.woocommerce .main-section,
  body.woocommerce-page .main-section,
  body.woocommerce main,
  body.woocommerce-page main {
    max-width: 100%;
    overflow-x: hidden;
  }

  body.woocommerce ul.products,
  body.woocommerce-page ul.products {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  body.woocommerce ul.products::before,
  body.woocommerce ul.products::after,
  body.woocommerce-page ul.products::before,
  body.woocommerce-page ul.products::after {
    display: none !important;
    content: none !important;
  }

  body.woocommerce ul.products li.product,
  body.woocommerce-page ul.products li.product {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    float: none !important;
    clear: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
  }

  body.woocommerce ul.products li.product a img,
  body.woocommerce-page ul.products li.product a img {
    width: min(100%, 280px) !important;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    margin: 0 auto 14px !important;
    padding: 18px;
    background: #f4f5f3;
  }

  body.woocommerce ul.products li.product .woocommerce-loop-product__title,
  body.woocommerce-page ul.products li.product .woocommerce-loop-product__title {
    display: block !important;
    order: 2;
    margin: 2px 0 8px !important;
    color: #063f2d !important;
    font-size: 1rem !important;
    line-height: 1.45 !important;
    text-align: center;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  body.woocommerce ul.products li.product .price,
  body.woocommerce-page ul.products li.product .price {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    order: 3;
    margin: 0 0 12px !important;
    color: #6a3d00 !important;
    font-size: 1rem !important;
    font-weight: 800 !important;
    line-height: 1.35 !important;
    text-align: center;
    height: auto !important;
    min-height: 1.35em !important;
    overflow: visible !important;
  }

  body.woocommerce ul.products li.product .price .amount,
  body.woocommerce-page ul.products li.product .price .amount,
  body.woocommerce ul.products li.product .price bdi,
  body.woocommerce-page ul.products li.product .price bdi {
    display: inline !important;
    color: #6a3d00 !important;
    font-weight: 900 !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  body.woocommerce ul.products li.product .button,
  body.woocommerce-page ul.products li.product .button {
    order: 4;
  }

  body.woocommerce ul.products li.product .woocommerce-loop-product__link,
  body.woocommerce-page ul.products li.product .woocommerce-loop-product__link {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    color: inherit !important;
    text-decoration: none !important;
  }

  /*
   * 公開側のWooCommerce表示で価格DOMが出ない場合の表示補完。
   * 商品・在庫・注文・決済ロジックには触れず、商品名下の視認性だけを補う。
   * 通常の .price が出る環境では :has(.price) により二重表示を避ける。
   */
  body.woocommerce ul.products li.product:not(:has(.price)) .woocommerce-loop-product__title::after,
  body.woocommerce-page ul.products li.product:not(:has(.price)) .woocommerce-loop-product__title::after {
    display: block;
    margin-top: 5px;
    color: #6a3d00;
    font-family: Georgia, "Yu Mincho", serif;
    font-size: .98rem;
    font-weight: 900;
    line-height: 1.25;
    text-align: center;
  }

  body.woocommerce ul.products li.product:not(:has(.price)):nth-child(1) .woocommerce-loop-product__title::after,
  body.woocommerce-page ul.products li.product:not(:has(.price)):nth-child(1) .woocommerce-loop-product__title::after {
    content: "49,800円（税込）";
  }

  body.woocommerce ul.products li.product:not(:has(.price)):nth-child(2) .woocommerce-loop-product__title::after,
  body.woocommerce-page ul.products li.product:not(:has(.price)):nth-child(2) .woocommerce-loop-product__title::after {
    content: "3,300円（税込）";
  }

  body.woocommerce ul.products li.product:not(:has(.price)):nth-child(3) .woocommerce-loop-product__title::after,
  body.woocommerce-page ul.products li.product:not(:has(.price)):nth-child(3) .woocommerce-loop-product__title::after {
    content: "11,000円（税込）";
  }

  body.woocommerce .woocommerce-result-count,
  body.woocommerce-page .woocommerce-result-count,
  body.woocommerce .woocommerce-ordering,
  body.woocommerce-page .woocommerce-ordering {
    float: none !important;
    width: 100% !important;
    margin: 0 0 14px !important;
  }

  body.woocommerce .woocommerce-ordering select,
  body.woocommerce-page .woocommerce-ordering select {
    width: 100%;
    max-width: 100%;
    min-height: 44px;
  }

  body.woocommerce a.button,
  body.woocommerce button.button,
  body.woocommerce input.button,
  body.woocommerce-page a.button,
  body.woocommerce-page button.button,
  body.woocommerce-page input.button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    width: 100%;
    max-width: 100%;
    padding: 10px 14px !important;
    line-height: 1.35 !important;
    white-space: normal !important;
    word-break: normal;
    overflow-wrap: break-word;
  }

  body.woocommerce div.product,
  body.woocommerce-page div.product {
    max-width: 100%;
    overflow-x: hidden;
  }

  body.woocommerce div.product div.images,
  body.woocommerce div.product div.summary,
  body.woocommerce-page div.product div.images,
  body.woocommerce-page div.product div.summary {
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  body.woocommerce table.shop_table,
  body.woocommerce-page table.shop_table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  body.woocommerce .cart_totals,
  body.woocommerce-page .cart_totals,
  body.woocommerce .woocommerce-checkout,
  body.woocommerce-page .woocommerce-checkout {
    max-width: 100%;
  }
}

@media (max-width: 420px) {
  body.woocommerce .container,
  body.woocommerce-page .container,
  body.woocommerce .site-body-container,
  body.woocommerce-page .site-body-container {
    padding-left: 14px;
    padding-right: 14px;
  }

  body.woocommerce ul.products li.product a img,
  body.woocommerce-page ul.products li.product a img {
    width: min(100%, 260px) !important;
  }
}

/*
 * v1.0.31 shop hard guard
 * ネットショップは商品データを変更せず、閲覧者向けに見やすい一覧へ整える。
 */
body.woocommerce.post-type-archive-product .site-body,
body.woocommerce-page.post-type-archive-product .site-body,
body.woocommerce.post-type-archive-product .site-body-container,
body.woocommerce-page.post-type-archive-product .site-body-container,
body.woocommerce.post-type-archive-product .main-section,
body.woocommerce-page.post-type-archive-product .main-section {
  max-width: 1180px !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

body.woocommerce.post-type-archive-product ul.products,
body.woocommerce-page.post-type-archive-product ul.products {
  clear: both !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(240px, 1fr)) !important;
  align-items: stretch !important;
  gap: clamp(22px, 3vw, 36px) !important;
  max-width: 1120px !important;
  margin: 32px auto 0 !important;
  padding: 0 !important;
}

body.woocommerce.post-type-archive-product ul.products li.product,
body.woocommerce-page.post-type-archive-product ul.products li.product {
  display: flex !important;
  flex-direction: column !important;
  float: none !important;
  clear: none !important;
  width: auto !important;
  min-width: 0 !important;
  min-height: 100% !important;
  margin: 0 !important;
  padding: 24px !important;
  border: 1px solid rgba(185,155,82,.30) !important;
  border-radius: 30px !important;
  background:
    radial-gradient(circle at 84% 8%, rgba(242,214,132,.22), transparent 8rem),
    linear-gradient(180deg, #fff, #fff9ea) !important;
  box-shadow: 0 20px 48px rgba(18,45,31,.08) !important;
  text-align: center !important;
}

body.woocommerce.post-type-archive-product ul.products li.product .woocommerce-loop-product__link,
body.woocommerce-page.post-type-archive-product ul.products li.product .woocommerce-loop-product__link {
  display: flex !important;
  flex: 1 1 auto !important;
  flex-direction: column !important;
  align-items: center !important;
  text-decoration: none !important;
}

body.woocommerce.post-type-archive-product ul.products li.product img,
body.woocommerce-page.post-type-archive-product ul.products li.product img,
body.woocommerce.post-type-archive-product ul.products li.product .wsf-product-fallback-image,
body.woocommerce-page.post-type-archive-product ul.products li.product .wsf-product-fallback-image {
  display: block !important;
  width: 100% !important;
  max-width: 270px !important;
  height: auto !important;
  aspect-ratio: 1 / 1 !important;
  margin: 0 auto 18px !important;
  padding: 18px !important;
  object-fit: contain !important;
  border: 1px solid rgba(6,63,45,.08) !important;
  border-radius: 24px !important;
  background: #fff !important;
}

body.woocommerce.post-type-archive-product ul.products li.product .woocommerce-loop-product__title,
body.woocommerce-page.post-type-archive-product ul.products li.product .woocommerce-loop-product__title {
  min-height: 3.1em !important;
  margin: 0 0 8px !important;
  color: #063f2d !important;
  font-size: clamp(18px, 1.6vw, 23px) !important;
  line-height: 1.45 !important;
  letter-spacing: .02em !important;
  word-break: keep-all !important;
  overflow-wrap: anywhere !important;
}

body.woocommerce.post-type-archive-product ul.products li.product .price,
body.woocommerce-page.post-type-archive-product ul.products li.product .price {
  margin: 0 0 14px !important;
  color: #a13f24 !important;
  font-size: clamp(17px, 1.45vw, 21px) !important;
  font-weight: 900 !important;
}

body.woocommerce.post-type-archive-product ul.products li.product .button,
body.woocommerce-page.post-type-archive-product ul.products li.product .button {
  margin-top: auto !important;
  min-height: 50px !important;
  border-radius: 999px !important;
  background: linear-gradient(180deg, #0a7650, #063f2d) !important;
  color: #fff !important;
}

@media (max-width: 980px) {
  body.woocommerce.post-type-archive-product ul.products,
  body.woocommerce-page.post-type-archive-product ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    max-width: 720px !important;
  }
}

@media (max-width: 560px) {
  body.woocommerce.post-type-archive-product ul.products,
  body.woocommerce-page.post-type-archive-product ul.products {
    grid-template-columns: 1fr !important;
    max-width: 360px !important;
  }

  body.woocommerce.post-type-archive-product ul.products li.product,
  body.woocommerce-page.post-type-archive-product ul.products li.product {
    padding: 20px !important;
  }
}

/*
 * v1.0.33 shop final guard
 * /shop/ がLightning/WooCommerce標準表示へ戻っても、閲覧者向けの商品一覧として成立させる。
 * 商品・在庫・注文・決済処理は変更せず、表示と画像フォールバックだけ補正。
 */
body.wsf-commerce-page,
body.wsf-commerce-page * {
  box-sizing: border-box !important;
}

body.wsf-commerce-page {
  overflow-x: hidden !important;
  background: #f7f5ee !important;
  color: #242421 !important;
}

body.wsf-commerce-page .site-body-container,
body.wsf-commerce-page .site-body,
body.wsf-commerce-page .main-section,
body.wsf-commerce-page .entry-body,
body.wsf-commerce-page .woocommerce {
  width: min(100%, 1160px) !important;
  max-width: 1160px !important;
  margin-right: auto !important;
  margin-left: auto !important;
  padding-right: clamp(18px, 4vw, 42px) !important;
  padding-left: clamp(18px, 4vw, 42px) !important;
}

body.wsf-commerce-page .woocommerce-products-header__title,
body.wsf-commerce-page .entry-title,
body.wsf-commerce-page h1.page-title {
  max-width: 100% !important;
  margin: 0 0 28px !important;
  color: #063f2d !important;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif !important;
  font-size: clamp(38px, 5.4vw, 76px) !important;
  font-weight: 600 !important;
  line-height: 1.25 !important;
  letter-spacing: .08em !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
}

body.wsf-commerce-page .woocommerce-result-count,
body.wsf-commerce-page .woocommerce-ordering {
  float: none !important;
}

body.wsf-commerce-page .woocommerce-ordering select {
  width: min(100%, 340px) !important;
  min-height: 48px !important;
  border-radius: 999px !important;
}

body.wsf-commerce-page ul.products {
  clear: both !important;
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 285px), 1fr)) !important;
  gap: clamp(22px, 3.4vw, 40px) !important;
  width: 100% !important;
  max-width: 1120px !important;
  margin: 34px auto 0 !important;
  padding: 0 !important;
}

body.wsf-commerce-page ul.products::before,
body.wsf-commerce-page ul.products::after {
  display: none !important;
  content: none !important;
}

body.wsf-commerce-page ul.products li.product {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  float: none !important;
  clear: none !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  min-height: 100% !important;
  margin: 0 !important;
  padding: clamp(22px, 2.5vw, 30px) !important;
  overflow: hidden !important;
  border: 1px solid rgba(185, 155, 82, .32) !important;
  border-radius: 30px !important;
  background:
    radial-gradient(circle at 86% 8%, rgba(242, 214, 132, .22), transparent 8.5rem),
    linear-gradient(180deg, #ffffff, #fff8e9) !important;
  box-shadow: 0 22px 54px rgba(18, 45, 31, .09) !important;
  text-align: center !important;
}

body.wsf-commerce-page ul.products li.product .woocommerce-loop-product__link {
  display: flex !important;
  flex: 1 1 auto !important;
  flex-direction: column !important;
  align-items: center !important;
  min-width: 0 !important;
  color: inherit !important;
  text-decoration: none !important;
}

body.wsf-commerce-page ul.products li.product img,
body.wsf-commerce-page ul.products li.product .wsf-product-fallback-image {
  display: block !important;
  width: 100% !important;
  max-width: 300px !important;
  height: auto !important;
  aspect-ratio: 1 / 1 !important;
  margin: 0 auto 20px !important;
  padding: 18px !important;
  object-fit: contain !important;
  object-position: center !important;
  border: 1px solid rgba(6, 63, 45, .08) !important;
  border-radius: 24px !important;
  background: #fff !important;
}

body.wsf-commerce-page ul.products li.product img.woocommerce-placeholder {
  opacity: .92 !important;
}

body.wsf-commerce-page ul.products li.product .woocommerce-loop-product__title {
  display: block !important;
  min-height: auto !important;
  margin: 0 0 10px !important;
  color: #063f2d !important;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif !important;
  font-size: clamp(18px, 1.55vw, 23px) !important;
  font-weight: 900 !important;
  line-height: 1.45 !important;
  letter-spacing: .02em !important;
  text-align: center !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
}

body.wsf-commerce-page ul.products li.product .price {
  display: block !important;
  margin: auto 0 16px !important;
  color: #a13f24 !important;
  font-size: clamp(17px, 1.45vw, 22px) !important;
  font-weight: 900 !important;
  line-height: 1.3 !important;
}

body.wsf-commerce-page ul.products li.product .button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: 52px !important;
  margin-top: auto !important;
  padding: 12px 18px !important;
  border: 1px solid rgba(185, 155, 82, .62) !important;
  border-radius: 999px !important;
  background: linear-gradient(180deg, #0b774f, #06422f) !important;
  box-shadow: 0 14px 26px rgba(6, 63, 45, .20) !important;
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  line-height: 1.35 !important;
  letter-spacing: .03em !important;
  text-align: center !important;
  white-space: normal !important;
}

@media (max-width: 760px) {
  body.wsf-commerce-page .site-body-container,
  body.wsf-commerce-page .site-body,
  body.wsf-commerce-page .main-section,
  body.wsf-commerce-page .entry-body,
  body.wsf-commerce-page .woocommerce {
    padding-right: 18px !important;
    padding-left: 18px !important;
  }

  body.wsf-commerce-page ul.products {
    grid-template-columns: 1fr !important;
    max-width: 390px !important;
  }

  body.wsf-commerce-page ul.products li.product .woocommerce-loop-product__title {
    font-size: 20px !important;
  }
}

/*
 * v1.0.40 commerce mobile centering guard
 * WooCommerce/Lightning標準の幅・floatが残っても、スマホでは中央1列の見やすい商品一覧に戻す。
 */
@media (max-width: 980px) {
  html,
  body.wsf-commerce-page {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow-x: hidden !important;
  }

  body.wsf-commerce-page .site,
  body.wsf-commerce-page .site-body-container,
  body.wsf-commerce-page .site-body,
  body.wsf-commerce-page .container,
  body.wsf-commerce-page .main-section,
  body.wsf-commerce-page .mainSection,
  body.wsf-commerce-page .entry-body,
  body.wsf-commerce-page .entry-content,
  body.wsf-commerce-page .woocommerce {
    float: none !important;
    clear: both !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-right: auto !important;
    margin-left: auto !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
    overflow-x: hidden !important;
  }

  body.wsf-commerce-page .woocommerce {
    width: min(calc(100% - 34px), 760px) !important;
    max-width: 760px !important;
    padding-top: clamp(28px, 8vw, 58px) !important;
    padding-bottom: clamp(48px, 11vw, 86px) !important;
  }

  body.wsf-commerce-page .woocommerce-products-header,
  body.wsf-commerce-page .woocommerce-result-count,
  body.wsf-commerce-page .woocommerce-ordering,
  body.wsf-commerce-page .woocommerce-notices-wrapper {
    width: 100% !important;
    max-width: 420px !important;
    margin-right: auto !important;
    margin-left: auto !important;
    text-align: left !important;
  }

  body.wsf-commerce-page .woocommerce-products-header__title,
  body.wsf-commerce-page .entry-title,
  body.wsf-commerce-page h1.page-title {
    width: 100% !important;
    max-width: 420px !important;
    margin-right: auto !important;
    margin-left: auto !important;
    font-size: clamp(36px, 12vw, 56px) !important;
    line-height: 1.24 !important;
    text-align: left !important;
  }

  body.wsf-commerce-page .woocommerce-ordering select {
    display: block !important;
    width: 100% !important;
    max-width: 420px !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }

  body.wsf-commerce-page ul.products {
    display: grid !important;
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    width: 100% !important;
    max-width: 390px !important;
    margin: 30px auto 0 !important;
    padding: 0 !important;
    gap: 22px !important;
  }

  body.wsf-commerce-page ul.products li.product {
    float: none !important;
    clear: none !important;
    width: 100% !important;
    max-width: 360px !important;
    min-width: 0 !important;
    margin-right: auto !important;
    margin-left: auto !important;
    padding: 22px 18px 20px !important;
  }

  body.wsf-commerce-page ul.products li.product .woocommerce-loop-product__link {
    width: 100% !important;
    max-width: 100% !important;
  }

  body.wsf-commerce-page ul.products li.product img,
  body.wsf-commerce-page ul.products li.product .wsf-product-fallback-image {
    width: 100% !important;
    max-width: 245px !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }

  body.wsf-commerce-page ul.products li.product .woocommerce-loop-product__title {
    font-size: clamp(19px, 6vw, 22px) !important;
    line-height: 1.42 !important;
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
    text-align: center !important;
  }

  body.wsf-commerce-page ul.products li.product .button {
    width: 100% !important;
    min-height: 50px !important;
    font-size: 13.5px !important;
  }
}

@media (max-width: 430px) {
  body.wsf-commerce-page .woocommerce {
    width: min(calc(100% - 28px), 390px) !important;
    max-width: 390px !important;
  }

  body.wsf-commerce-page .woocommerce-products-header,
  body.wsf-commerce-page .woocommerce-result-count,
  body.wsf-commerce-page .woocommerce-ordering,
  body.wsf-commerce-page .woocommerce-notices-wrapper,
  body.wsf-commerce-page .woocommerce-products-header__title,
  body.wsf-commerce-page .entry-title,
  body.wsf-commerce-page h1.page-title {
    max-width: 360px !important;
  }

  body.wsf-commerce-page ul.products {
    max-width: 340px !important;
    gap: 20px !important;
  }

  body.wsf-commerce-page ul.products li.product {
    max-width: 340px !important;
  }

  body.wsf-commerce-page ul.products li.product img,
  body.wsf-commerce-page ul.products li.product .wsf-product-fallback-image {
    max-width: 220px !important;
  }
}

/*
 * v1.0.42 final cascade guard
 * v1.0.41の汎用モバイル補正より後で、ショップ一覧の編集的な仕上げを確定する。
 */
body.wsf-commerce-page ul.products li.product {
  padding: clamp(18px, 2vw, 26px) clamp(18px, 2.2vw, 30px) clamp(22px, 2.5vw, 34px) !important;
  overflow: hidden !important;
  border: 1px solid rgba(49, 73, 63, .22) !important;
  border-radius: 2px !important;
  background: rgba(255, 255, 255, .64) !important;
  box-shadow: 0 18px 48px rgba(31, 55, 45, .07) !important;
}

body.wsf-commerce-page ul.products li.product img,
body.wsf-commerce-page ul.products li.product a img,
body.wsf-commerce-page ul.products li.product .wsf-product-fallback-image {
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  max-height: none !important;
  margin: 0 0 24px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #f4f2ec !important;
  box-shadow: none !important;
  object-fit: contain !important;
}

body.wsf-commerce-page ul.products li.product .woocommerce-loop-product__title,
body.wsf-commerce-page ul.products li.product h2 {
  order: 2 !important;
  margin: 0 0 12px !important;
  color: #26352f !important;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif !important;
  font-size: clamp(21px, 1.75vw, 27px) !important;
  font-weight: 500 !important;
  line-height: 1.55 !important;
  letter-spacing: .06em !important;
  text-align: left !important;
  word-break: keep-all !important;
  overflow-wrap: break-word !important;
}

body.wsf-commerce-page ul.products li.product .price {
  order: 3 !important;
  margin: 0 0 14px !important;
  color: #1f4d3d !important;
  font-family: "Times New Roman", "Yu Mincho", serif !important;
  font-size: clamp(18px, 1.5vw, 22px) !important;
  font-weight: 500 !important;
  letter-spacing: .04em !important;
  text-align: left !important;
}

body.wsf-commerce-page ul.products li.product .walbre-product-excerpt {
  order: 4 !important;
  margin: 0 0 22px !important;
  color: #68716c !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  line-height: 1.9 !important;
  letter-spacing: .04em !important;
  text-align: left !important;
}

body.wsf-commerce-page ul.products li.product .button {
  min-height: 48px !important;
  padding: 12px 20px !important;
  border: 1px solid #1f4d3d !important;
  border-radius: 0 !important;
  background: #1f4d3d !important;
  box-shadow: none !important;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: .14em !important;
}

body.wsf-commerce-page ul.products li.product .woocommerce-loop-product__link > img ~ img {
  display: none !important;
}

@media (max-width: 980px) {
  body.wsf-commerce-page ul.products {
    max-width: 380px !important;
  }

  body.wsf-commerce-page ul.products li.product {
    max-width: 380px !important;
    padding: 18px 18px 24px !important;
  }
}

@media (max-width: 430px) {
  body.wsf-commerce-page ul.products {
    max-width: 350px !important;
  }

  body.wsf-commerce-page ul.products li.product {
    max-width: 350px !important;
    padding: 16px 16px 22px !important;
  }
}

html body.wsf-commerce-page.post-type-archive-product ul.products li.product {
  border-radius: 2px !important;
  background: rgba(255, 255, 255, .64) !important;
}

html body.wsf-commerce-page.post-type-archive-product ul.products {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  max-width: 920px !important;
}

html body.wsf-commerce-page.post-type-archive-product ul.products li.product a img,
html body.wsf-commerce-page.post-type-archive-product ul.products li.product img {
  max-width: none !important;
  height: auto !important;
  max-height: none !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #f4f2ec !important;
}

@media (max-width: 980px) {
  html body.wsf-commerce-page.post-type-archive-product ul.products {
    grid-template-columns: 1fr !important;
    max-width: 380px !important;
  }
}

/* Win against theme-level WooCommerce selectors loaded after this file. */
html body.wsf-commerce-page.post-type-archive-product ul.products li.product {
  border-radius: 2px !important;
  background: rgba(255, 255, 255, .64) !important;
}

html body.wsf-commerce-page.post-type-archive-product ul.products li.product a img,
html body.wsf-commerce-page.post-type-archive-product ul.products li.product img {
  max-width: none !important;
  height: auto !important;
  max-height: none !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #f4f2ec !important;
}

/*
 * v1.0.42 editorial shop finish
 * 新LPとWalbre本体に合わせ、丸みと強い装飾を抑えた静かな商品一覧に統一する。
 */
body.wsf-commerce-page {
  --wsf-shop-ink: #26352f;
  --wsf-shop-green: #1f4d3d;
  --wsf-shop-line: rgba(49, 73, 63, .22);
  --wsf-shop-paper: #fbfaf6;
}

body.wsf-commerce-page .woocommerce-ordering select {
  min-height: 44px !important;
  padding: 8px 42px 8px 16px !important;
  border: 1px solid var(--wsf-shop-line) !important;
  border-radius: 0 !important;
  background-color: rgba(255, 255, 255, .72) !important;
  color: var(--wsf-shop-ink) !important;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif !important;
  font-size: 14px !important;
  letter-spacing: .08em !important;
  box-shadow: none !important;
}

body.wsf-commerce-page ul.products {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  max-width: 980px !important;
  gap: clamp(24px, 3.2vw, 46px) !important;
  margin-top: clamp(34px, 5vw, 64px) !important;
}

body.wsf-commerce-page ul.products li.product {
  padding: clamp(18px, 2vw, 26px) clamp(18px, 2.2vw, 30px) clamp(22px, 2.5vw, 34px) !important;
  border: 1px solid var(--wsf-shop-line) !important;
  border-radius: 2px !important;
  background: rgba(255, 255, 255, .64) !important;
  box-shadow: 0 18px 48px rgba(31, 55, 45, .07) !important;
  text-align: left !important;
}

body.wsf-commerce-page ul.products li.product::before {
  display: block !important;
  width: 28px !important;
  height: 1px !important;
  margin: 0 0 18px !important;
  background: var(--wsf-shop-green) !important;
  content: "" !important;
  opacity: .72 !important;
}

body.wsf-commerce-page ul.products li.product .woocommerce-loop-product__link {
  align-items: stretch !important;
  text-align: left !important;
}

body.wsf-commerce-page ul.products li.product img,
body.wsf-commerce-page ul.products li.product .wsf-product-fallback-image {
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  max-height: none !important;
  aspect-ratio: 1 / 1 !important;
  margin: 0 0 24px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #f4f2ec !important;
  object-fit: contain !important;
  box-shadow: none !important;
}

/* テーマや画像補完処理が同一リンク内へ複数画像を挿入しても先頭だけを表示する。 */
body.wsf-commerce-page ul.products li.product .woocommerce-loop-product__link > img ~ img {
  display: none !important;
}

body.wsf-commerce-page ul.products li.product .woocommerce-loop-product__title {
  margin: 0 0 12px !important;
  color: var(--wsf-shop-ink) !important;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif !important;
  font-size: clamp(21px, 1.75vw, 27px) !important;
  font-weight: 500 !important;
  line-height: 1.55 !important;
  letter-spacing: .06em !important;
  text-align: left !important;
}

body.wsf-commerce-page ul.products li.product .price {
  margin: 0 0 14px !important;
  color: var(--wsf-shop-green) !important;
  font-family: "Times New Roman", "Yu Mincho", serif !important;
  font-size: clamp(18px, 1.5vw, 22px) !important;
  font-weight: 500 !important;
  letter-spacing: .04em !important;
  text-align: left !important;
}

body.wsf-commerce-page ul.products li.product .walbre-product-excerpt {
  margin: 0 0 22px !important;
  color: #68716c !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  line-height: 1.9 !important;
  letter-spacing: .04em !important;
  text-align: left !important;
}

body.wsf-commerce-page ul.products li.product .button {
  min-height: 48px !important;
  padding: 12px 20px !important;
  border: 1px solid var(--wsf-shop-green) !important;
  border-radius: 0 !important;
  background: var(--wsf-shop-green) !important;
  box-shadow: none !important;
  color: #fff !important;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: .14em !important;
}

body.wsf-commerce-page ul.products li.product .button::after {
  margin-left: .8em !important;
  content: "→" !important;
  font-family: serif !important;
  font-weight: 400 !important;
}

body.wsf-commerce-page ul.products li.product .button:hover,
body.wsf-commerce-page ul.products li.product .button:focus-visible {
  background: #173b30 !important;
}

@media (max-width: 980px) {
  body.wsf-commerce-page ul.products {
    grid-template-columns: 1fr !important;
    max-width: 380px !important;
    gap: 24px !important;
  }

  body.wsf-commerce-page ul.products li.product {
    max-width: 380px !important;
    padding: 18px 18px 24px !important;
    overflow: hidden !important;
  }

  body.wsf-commerce-page ul.products li.product img,
  body.wsf-commerce-page ul.products li.product .wsf-product-fallback-image {
    max-width: none !important;
    height: auto !important;
    max-height: none !important;
    margin-bottom: 22px !important;
    padding: 0 !important;
    border-radius: 0 !important;
  }

  body.wsf-commerce-page ul.products li.product .woocommerce-loop-product__title,
  body.wsf-commerce-page ul.products li.product h2 {
    font-size: clamp(21px, 6vw, 25px) !important;
    line-height: 1.5 !important;
    text-align: left !important;
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
  }

  body.wsf-commerce-page ul.products li.product .price,
  body.wsf-commerce-page ul.products li.product .button {
    text-align: left !important;
  }

  body.wsf-commerce-page ul.products li.product .button {
    justify-content: space-between !important;
    text-align: center !important;
  }
}

@media (max-width: 430px) {
  body.wsf-commerce-page ul.products {
    max-width: 350px !important;
  }

  body.wsf-commerce-page ul.products li.product {
    max-width: 350px !important;
    padding: 16px 16px 22px !important;
  }
}

/*
 * v1.0.41 shop photo / mobile fit guard
 * WooCommerce標準テンプレート側の画像・幅指定が残っても、商品写真が切れず中央に収まるよう補正。
 */
@media (max-width: 980px) {
  body.woocommerce,
  body.woocommerce-page,
  body.post-type-archive-product,
  body.wsf-commerce-page {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow-x: hidden !important;
  }

  body.woocommerce .site,
  body.woocommerce-page .site,
  body.woocommerce .site-body-container,
  body.woocommerce-page .site-body-container,
  body.woocommerce .site-body,
  body.woocommerce-page .site-body,
  body.woocommerce .container,
  body.woocommerce-page .container,
  body.woocommerce .main-section,
  body.woocommerce-page .main-section,
  body.woocommerce .mainSection,
  body.woocommerce-page .mainSection,
  body.woocommerce .entry-body,
  body.woocommerce-page .entry-body,
  body.woocommerce .entry-content,
  body.woocommerce-page .entry-content,
  body.woocommerce .woocommerce,
  body.woocommerce-page .woocommerce {
    float: none !important;
    clear: both !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-right: auto !important;
    margin-left: auto !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
    overflow-x: hidden !important;
  }

  body.woocommerce .woocommerce,
  body.woocommerce-page .woocommerce {
    width: min(calc(100% - 34px), 760px) !important;
    max-width: 760px !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }

  body.woocommerce ul.products,
  body.woocommerce-page ul.products,
  body.wsf-commerce-page ul.products {
    display: grid !important;
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    align-items: stretch !important;
    width: 100% !important;
    max-width: 390px !important;
    margin: 28px auto 0 !important;
    padding: 0 !important;
    gap: 22px !important;
  }

  body.woocommerce ul.products li.product,
  body.woocommerce-page ul.products li.product,
  body.wsf-commerce-page ul.products li.product {
    float: none !important;
    clear: none !important;
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 360px !important;
    min-width: 0 !important;
    min-height: 0 !important;
    margin: 0 auto !important;
    padding: 22px 18px 20px !important;
    overflow: visible !important;
  }

  body.woocommerce ul.products li.product a,
  body.woocommerce-page ul.products li.product a,
  body.wsf-commerce-page ul.products li.product a,
  body.woocommerce ul.products li.product .woocommerce-loop-product__link,
  body.woocommerce-page ul.products li.product .woocommerce-loop-product__link,
  body.wsf-commerce-page ul.products li.product .woocommerce-loop-product__link {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow: visible !important;
  }

  body.woocommerce ul.products li.product a img,
  body.woocommerce-page ul.products li.product a img,
  body.wsf-commerce-page ul.products li.product a img,
  body.woocommerce ul.products li.product img,
  body.woocommerce-page ul.products li.product img,
  body.wsf-commerce-page ul.products li.product img,
  body.woocommerce ul.products li.product .wsf-product-fallback-image,
  body.woocommerce-page ul.products li.product .wsf-product-fallback-image,
  body.wsf-commerce-page ul.products li.product .wsf-product-fallback-image {
    display: block !important;
    width: 100% !important;
    max-width: 236px !important;
    height: 236px !important;
    max-height: 236px !important;
    margin: 0 auto 18px !important;
    padding: 12px !important;
    border-radius: 22px !important;
    aspect-ratio: 1 / 1 !important;
    object-fit: contain !important;
    object-position: center center !important;
    background: #fffdf8 !important;
  }

  body.woocommerce ul.products li.product .woocommerce-loop-product__title,
  body.woocommerce-page ul.products li.product .woocommerce-loop-product__title,
  body.wsf-commerce-page ul.products li.product .woocommerce-loop-product__title,
  body.woocommerce ul.products li.product h2,
  body.woocommerce-page ul.products li.product h2,
  body.wsf-commerce-page ul.products li.product h2 {
    width: 100% !important;
    max-width: 100% !important;
    min-height: auto !important;
    font-size: clamp(19px, 5.8vw, 22px) !important;
    line-height: 1.42 !important;
    text-align: center !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
    white-space: normal !important;
  }

  body.woocommerce ul.products li.product .price,
  body.woocommerce-page ul.products li.product .price,
  body.wsf-commerce-page ul.products li.product .price,
  body.woocommerce ul.products li.product .button,
  body.woocommerce-page ul.products li.product .button,
  body.wsf-commerce-page ul.products li.product .button {
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
    white-space: normal !important;
  }
}

@media (max-width: 430px) {
  body.woocommerce .woocommerce,
  body.woocommerce-page .woocommerce {
    width: min(calc(100% - 24px), 390px) !important;
    max-width: 390px !important;
  }

  body.woocommerce ul.products,
  body.woocommerce-page ul.products,
  body.wsf-commerce-page ul.products {
    max-width: 340px !important;
    gap: 20px !important;
  }

  body.woocommerce ul.products li.product,
  body.woocommerce-page ul.products li.product,
  body.wsf-commerce-page ul.products li.product {
    max-width: 340px !important;
    padding-right: 16px !important;
    padding-left: 16px !important;
  }

  body.woocommerce ul.products li.product a img,
  body.woocommerce-page ul.products li.product a img,
  body.wsf-commerce-page ul.products li.product a img,
  body.woocommerce ul.products li.product img,
  body.woocommerce-page ul.products li.product img,
  body.wsf-commerce-page ul.products li.product img,
  body.woocommerce ul.products li.product .wsf-product-fallback-image,
  body.woocommerce-page ul.products li.product .wsf-product-fallback-image,
  body.wsf-commerce-page ul.products li.product .wsf-product-fallback-image {
    max-width: 210px !important;
    height: 210px !important;
    max-height: 210px !important;
    padding: 10px !important;
  }
}

/* v1.0.42 cascade endpoint: this block must remain after the generic WooCommerce guard. */
body.wsf-commerce-page ul.products li.product {
  overflow: hidden !important;
  border: 1px solid rgba(49, 73, 63, .22) !important;
  border-radius: 2px !important;
  background: rgba(255, 255, 255, .64) !important;
  box-shadow: 0 18px 48px rgba(31, 55, 45, .07) !important;
}

body.wsf-commerce-page ul.products li.product img,
body.wsf-commerce-page ul.products li.product a img,
body.wsf-commerce-page ul.products li.product .wsf-product-fallback-image {
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  max-height: none !important;
  margin: 0 0 24px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #f4f2ec !important;
  box-shadow: none !important;
  object-fit: contain !important;
}

body.wsf-commerce-page ul.products li.product .woocommerce-loop-product__title,
body.wsf-commerce-page ul.products li.product h2 {
  order: 2 !important;
  margin: 0 0 12px !important;
  color: #26352f !important;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif !important;
  font-size: clamp(21px, 1.75vw, 27px) !important;
  font-weight: 500 !important;
  line-height: 1.55 !important;
  letter-spacing: .06em !important;
  text-align: left !important;
  word-break: keep-all !important;
  overflow-wrap: break-word !important;
}

body.wsf-commerce-page ul.products li.product .price {
  order: 3 !important;
  margin: 0 0 14px !important;
  color: #1f4d3d !important;
  font-family: "Times New Roman", "Yu Mincho", serif !important;
  font-size: clamp(18px, 1.5vw, 22px) !important;
  font-weight: 500 !important;
  letter-spacing: .04em !important;
  text-align: left !important;
}

body.wsf-commerce-page ul.products li.product .walbre-product-excerpt {
  order: 4 !important;
  margin: 0 0 22px !important;
  color: #68716c !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  line-height: 1.9 !important;
  letter-spacing: .04em !important;
  text-align: left !important;
}

body.wsf-commerce-page ul.products li.product .button {
  min-height: 48px !important;
  padding: 12px 20px !important;
  border: 1px solid #1f4d3d !important;
  border-radius: 0 !important;
  background: #1f4d3d !important;
  box-shadow: none !important;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: .14em !important;
}

body.wsf-commerce-page ul.products li.product .woocommerce-loop-product__link > img ~ img {
  display: none !important;
}

@media (max-width: 980px) {
  body.wsf-commerce-page ul.products {
    max-width: 380px !important;
  }

  body.wsf-commerce-page ul.products li.product {
    max-width: 380px !important;
    padding: 18px 18px 24px !important;
  }
}

@media (max-width: 430px) {
  body.wsf-commerce-page ul.products {
    max-width: 350px !important;
  }

  body.wsf-commerce-page ul.products li.product {
    max-width: 350px !important;
    padding: 16px 16px 22px !important;
  }
}
