/*
 * THESIS: A compact contact sheet turns LUMA's edit into a shop, not a campaign poster.
 * OWN-WORLD: Warm paper, ink, graphite, Cormorant display type, Montserrat utility type, sharp edges, and hairline rules.
 * STORY: Recognize the edit, choose a category, compare real products, then enter the product page.
 * FIRST VIEWPORT: Title and one horizontal monochrome architecture crop lead into categories, sorting, and the first product row.
 * FORM: Contact Sheet Catalog, selected from candidate 6; Impeccable seed a2794c2d.
 * FINISH: unreviewed and undocumented is unfinished; this build ends with the finish review, the verdict, DESIGN.md, and every shipping raster carrying its provenance.
 */
body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) {
  --luma-ink: #0a0a0a;
  --luma-copy: #2f2f2c;
  --luma-muted: #676762;
  --luma-line: #d5d5d0;
  --luma-paper: #fafafa;
  --luma-soft: #f2f2ef;
  --luma-display: "Cormorant Garamond", Georgia, serif;
  --luma-ui: "Montserrat", Arial, sans-serif;
  background: var(--luma-paper);
  color: var(--luma-ink);
  font-family: var(--luma-ui);
}

body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) *,
body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) *::before,
body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) *::after {
  box-sizing: border-box;
}

body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) ::selection {
  background: var(--luma-ink);
  color: var(--luma-paper);
}

body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) a {
  text-underline-offset: .26em;
}

body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) :where(a, button, select, input):focus-visible {
  outline: 2px solid var(--luma-ink);
  outline-offset: 3px;
}

/* Catalog introduction and functional toolbar. */
body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) main#wp--skip-link--target {
  width: 100%;
  max-width: none;
  margin-block-start: 0;
  padding: clamp(26px, 2.8vw, 40px) clamp(20px, 6vw, 96px) clamp(80px, 9vw, 140px);
}

body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) main#wp--skip-link--target > .alignwide {
  width: 100%;
  max-width: 1440px !important;
  margin-inline: auto !important;
}

body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) main > .wp-block-breadcrumbs {
  color: var(--luma-muted);
  font-family: var(--luma-ui);
  font-size: .62rem !important;
  font-weight: 500;
  letter-spacing: .105em;
  line-height: 1.6;
  text-transform: uppercase;
}

body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) .woocommerce-breadcrumb a {
  color: var(--luma-copy);
  text-decoration: none;
}

body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) main h1.wp-block-query-title {
  max-width: 11ch;
  margin: clamp(22px, 3vw, 42px) auto 0 !important;
  color: var(--luma-ink);
  font-family: var(--luma-display);
  font-size: clamp(3.8rem, 6.4vw, 6rem);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: .9;
  text-wrap: balance;
}

.luma-shop-intro {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(460px, 1.22fr);
  grid-template-areas:
    "copy visual"
    "categories categories";
  align-items: stretch;
  column-gap: clamp(40px, 5vw, 80px);
  row-gap: clamp(18px, 1.8vw, 26px);
  width: 100%;
  max-width: 1440px;
  margin: clamp(16px, 1.8vw, 26px) auto 0;
}

.luma-shop-intro__copy {
  grid-area: copy;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 8px 0 18px;
}

body.woocommerce-shop main .luma-shop-intro h1.wp-block-query-title {
  width: 100%;
  max-width: 9ch !important;
  margin: 0 !important;
}

.luma-shop-intro__visual {
  position: relative;
  grid-area: visual;
  height: clamp(190px, 16vw, 230px);
  min-height: 0;
  align-self: start;
  margin: 0;
  overflow: hidden;
  background: #111;
  clip-path: inset(0);
}

.luma-shop-intro__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  filter: grayscale(1) contrast(1.04);
  transform: scale(1.015);
  transition: transform 900ms cubic-bezier(.16, 1, .3, 1), filter 500ms cubic-bezier(.16, 1, .3, 1);
}

.luma-shop-intro__visual:hover img {
  filter: grayscale(1) contrast(1.08);
  transform: scale(1.035);
}

.luma-shop-intro__copy > p {
  max-width: 68ch;
  margin: clamp(26px, 3vw, 40px) 0 0;
  color: var(--luma-copy);
  font-family: var(--luma-ui);
  font-size: .78rem;
  line-height: 1.75;
}

.luma-shop-categories {
  grid-area: categories;
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 36px);
  margin-top: 0;
  padding-bottom: 14px;
  overflow-x: auto;
  border-bottom: 1px solid var(--luma-line);
  scrollbar-width: thin;
  scroll-snap-type: x proximity;
}

.luma-shop-categories a {
  flex: 0 0 auto;
  padding: 7px 0;
  color: var(--luma-muted);
  font-family: var(--luma-ui);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  scroll-snap-align: start;
  transition: color 180ms ease;
}

.luma-shop-categories a:is(:hover, .is-current) {
  color: var(--luma-ink);
}

.luma-shop-categories a.is-current {
  box-shadow: inset 0 -1px 0 var(--luma-ink);
}

body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) main > .wc-block-store-notices {
  margin-bottom: 24px !important;
}

body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) main > .wc-block-store-notices:not(:has(.woocommerce-error, .woocommerce-message, .woocommerce-info)) {
  display: none;
  margin: 0 !important;
}

body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) main > .wp-block-group:has(.wp-block-woocommerce-product-results-count) {
  min-height: 52px;
  margin-top: 10px !important;
  padding: 4px 0;
  border-bottom: 1px solid var(--luma-line);
}

body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) .woocommerce-result-count {
  margin: 0;
  color: var(--luma-muted);
  font-family: var(--luma-ui);
  font-size: .64rem;
  font-weight: 500;
  letter-spacing: .08em;
  line-height: 1.5;
  text-transform: uppercase;
}

body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) .wp-block-woocommerce-catalog-sorting {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 14px;
  padding-left: 20px;
  border-left: 1px solid var(--luma-line);
}

.luma-shop-sort-label {
  color: var(--luma-muted);
  font-family: var(--luma-ui);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.4;
  text-transform: uppercase;
  white-space: nowrap;
}

body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) .woocommerce-ordering {
  min-width: 190px;
  margin: 0;
}

body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) .woocommerce-ordering select {
  min-width: 190px;
  min-height: 44px;
  margin: 0;
  padding: 0 28px 0 0;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  color: var(--luma-ink);
  font-family: var(--luma-ui);
  font-size: .68rem;
  font-weight: 500;
  line-height: 1.4;
}

/* Four-column comparison grid, with the final pair optically centered. */
body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) .wp-block-woocommerce-product-collection {
  margin-top: clamp(20px, 2vw, 30px) !important;
}

body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) .wc-block-product-template {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: clamp(40px, 5vw, 72px) clamp(14px, 2vw, 30px) !important;
}

body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) .wc-block-product {
  display: flex !important;
  min-width: 0;
  flex-direction: column;
  margin: 0 !important;
}

body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) .wc-block-product-template > .wc-block-product:nth-last-child(2):nth-child(4n + 1) {
  grid-column-start: 2;
}

body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) .wc-block-components-product-image {
  position: relative;
  order: 1;
  aspect-ratio: 4 / 5;
  margin: 0 0 18px !important;
  overflow: hidden;
  background: var(--luma-soft);
}

body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) .wc-block-components-product-image:has(a:focus-visible)::after {
  position: absolute;
  inset: 5px;
  border: 2px solid var(--luma-paper);
  outline: 2px solid var(--luma-ink);
  outline-offset: 1px;
  content: "";
  pointer-events: none;
}

body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) .wc-block-components-product-image a:focus-visible {
  outline: none;
}

body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) .wc-block-components-product-image a {
  display: block;
  width: 100%;
  height: 100%;
}

body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) .wc-block-components-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.16, 1, .3, 1), filter 300ms ease;
}

body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) .wc-block-components-product-image a:hover img {
  transform: scale(1.025);
}

body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) .wc-block-product .wp-block-post-title {
  order: 2;
  min-height: 0;
  margin: 0 0 10px !important;
  color: var(--luma-ink);
  font-family: var(--luma-display);
  font-size: clamp(1.25rem, 1.7vw, 1.65rem) !important;
  font-weight: 400;
  letter-spacing: -.018em;
  line-height: 1.08 !important;
  text-align: left !important;
  text-wrap: pretty;
}

body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) .wc-block-product .wp-block-post-title a {
  color: inherit;
  text-decoration: none;
}

body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) .wc-block-product .wp-block-woocommerce-product-price {
  order: 3;
  margin: 0 0 18px !important;
  color: var(--luma-copy);
  font-family: var(--luma-ui);
  font-size: .74rem !important;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  line-height: 1.4;
  text-align: left !important;
}

body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) .wc-block-product .wp-block-woocommerce-product-button {
  order: 4;
  width: 100%;
  margin: auto 0 0 !important;
}

/* WooCommerce adds a second “View cart” row after AJAX add-to-cart. The
 * quantity label and persistent header cart already communicate that state;
 * suppress the duplicate row so every card keeps the same action baseline. */
body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) .wc-block-product .wp-block-woocommerce-product-button > span:has(> .added_to_cart) {
  display: none !important;
}

body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) .wc-block-product .wp-block-button__link {
  display: inline-flex;
  width: 100%;
  min-height: 46px;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin: 0 !important;
  padding: 13px 0 12px;
  border: 0;
  border-top: 1px solid var(--luma-line);
  border-radius: 0;
  background: transparent;
  color: var(--luma-ink);
  font-family: var(--luma-ui);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: border-color 220ms ease, color 180ms ease, transform 120ms ease;
}

body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) .wc-block-product .wp-block-button__link:hover {
  border-top-color: var(--luma-ink);
  color: var(--luma-ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: .32em;
}

/* Keep pointer focus quiet; show keyboard focus as an editorial rule, not a box. */
body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) .wc-block-product .wp-block-button__link:focus {
  outline: none;
  box-shadow: none;
}

body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) .wc-block-product .wp-block-button__link:focus-visible {
  border-top-color: var(--luma-ink);
  outline: none;
  box-shadow: inset 0 -2px 0 var(--luma-ink);
  color: var(--luma-ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: .32em;
}

body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) .wc-block-product .wp-block-button__link:active {
  transform: translateY(1px);
}

body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) .wc-block-product .wp-block-button__link.product_type_variable {
  color: var(--luma-muted);
}

body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) .wc-block-product .wp-block-button__link.product_type_variable:is(:hover, :focus-visible) {
  color: var(--luma-ink);
}

body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) .wc-block-product .wp-block-button__link:is(.loading, .disabled) {
  border-top-color: var(--luma-line);
  color: var(--luma-muted);
  cursor: wait;
}

body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) .wc-block-product .wp-block-button__link:is(.product_type_simple, .product_type_variable):not(.loading)::after {
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
  margin-left: auto;
  background: currentColor;
  content: "";
  transition: transform 240ms cubic-bezier(.16, 1, .3, 1);
}

body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) .wc-block-product .wp-block-button__link.product_type_simple:not(.loading)::after {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M6 1v10M1 6h10' fill='none' stroke='black' stroke-width='1.2'/%3E%3C/svg%3E") center / 12px 12px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M6 1v10M1 6h10' fill='none' stroke='black' stroke-width='1.2'/%3E%3C/svg%3E") center / 12px 12px no-repeat;
}

body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) .wc-block-product .wp-block-button__link.product_type_variable:not(.loading)::after {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 12'%3E%3Cpath d='M1 6h11M8 2l4 4-4 4' fill='none' stroke='black' stroke-width='1.2' stroke-linecap='square' stroke-linejoin='miter'/%3E%3C/svg%3E") center / 14px 12px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 12'%3E%3Cpath d='M1 6h11M8 2l4 4-4 4' fill='none' stroke='black' stroke-width='1.2' stroke-linecap='square' stroke-linejoin='miter'/%3E%3C/svg%3E") center / 14px 12px no-repeat;
}

body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) .wc-block-product .wp-block-button__link.product_type_variable:not(.loading):hover::after {
  transform: translateX(2px);
}

body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) .wc-block-product .wp-block-button__link.product_type_simple.added:not(.loading)::after {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='m1.5 6.2 3 3L10.5 2.5' fill='none' stroke='black' stroke-width='1.2' stroke-linecap='square' stroke-linejoin='miter'/%3E%3C/svg%3E") center / 12px 12px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='m1.5 6.2 3 3L10.5 2.5' fill='none' stroke='black' stroke-width='1.2' stroke-linecap='square' stroke-linejoin='miter'/%3E%3C/svg%3E") center / 12px 12px no-repeat;
}

/* Remove unfinished link groups and keep the footer compact and useful. */
body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) footer.wp-block-template-part {
  margin-top: 0;
  border-top: 1px solid var(--luma-line);
  color: var(--luma-copy);
  font-family: var(--luma-ui);
}

body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) footer.wp-block-template-part > .wp-block-group {
  padding: clamp(44px, 6vw, 80px) clamp(20px, 6vw, 96px) !important;
}

body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) footer .wp-block-columns {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
}

body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) footer .wp-block-column:empty,
body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) footer .wp-block-group:has(> h2 + .wp-block-group nav[aria-label="About"]),
body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) footer .wp-block-group:has(> h2 + .wp-block-group nav[aria-label="Social media"]),
body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) footer .wp-block-navigation-item:has(> a[href="#"]) {
  display: none;
}

body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) footer .wp-block-column:last-child,
body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) footer .wp-block-column:last-child > .wp-block-group {
  flex-basis: auto !important;
}

body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) footer .wp-block-column:last-child > .wp-block-group {
  gap: 0;
}

body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) footer .custom-logo {
  width: 44px;
  height: auto;
}

body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) footer .wp-block-site-title {
  margin-top: 14px;
  font-size: .68rem !important;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}

body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) footer h2 {
  margin: 0 0 16px;
  font-family: var(--luma-ui) !important;
  font-size: .62rem !important;
  font-weight: 500 !important;
  letter-spacing: .1em;
  text-transform: uppercase;
}

body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) footer .wp-block-navigation-item__content {
  color: var(--luma-copy);
  font-size: .68rem;
  text-decoration: none;
}

body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) footer .wp-block-navigation-item__content:hover {
  color: var(--luma-ink);
  text-decoration: underline;
}

@media (max-width: 1100px) {
  body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) .wc-block-product-template {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) .wc-block-product-template > .wc-block-product:nth-last-child(2):nth-child(4n + 1) {
    grid-column-start: auto;
  }

  body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) .wc-block-product-template > .wc-block-product:last-child:nth-child(3n + 1) {
    grid-column-start: 2;
  }
}

@media (max-width: 900px) {
  .luma-shop-intro {
    grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
    column-gap: 32px;
  }

  .luma-shop-intro__visual {
    height: 190px;
    min-height: 0;
  }
}

@media (max-width: 781px) {
  body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) main#wp--skip-link--target {
    padding: 24px 20px 80px;
  }

  body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) main h1.wp-block-query-title {
    margin-top: 24px !important;
    font-size: clamp(3.5rem, 17vw, 5rem);
  }

  .luma-shop-intro {
    display: block;
    margin-bottom: 0;
  }

  .luma-shop-intro__copy {
    padding: 0;
  }

  .luma-shop-intro__visual {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
    margin: 30px 0 0;
  }

  .luma-shop-intro__visual img {
    object-position: 50% 24%;
  }

  .luma-shop-categories {
    margin-top: 30px;
  }

  .luma-shop-categories {
    margin-right: -20px;
    padding-right: 20px;
  }

  body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) main > .wp-block-group:has(.wp-block-woocommerce-product-results-count) {
    min-height: 0;
    align-items: stretch;
    gap: 12px;
    padding: 14px 0;
    flex-direction: column;
  }

  body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) .wp-block-woocommerce-catalog-sorting {
    width: 100%;
    justify-content: space-between;
  }

  body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) .woocommerce-ordering,
  body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) .woocommerce-ordering select {
    width: 100%;
  }

  body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) .wc-block-product-template {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 42px 12px !important;
  }

  body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) .wc-block-product-template > .wc-block-product:last-child:nth-child(3n + 1) {
    grid-column-start: auto;
  }

  body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) .wc-block-components-product-image {
    margin-bottom: 14px !important;
  }

  body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) .wc-block-product .wp-block-post-title {
    font-size: clamp(1.1rem, 5.2vw, 1.4rem) !important;
  }

  body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) footer .wp-block-columns {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 520px) {
  body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) .luma-shop-sort-label {
    display: none;
  }

  body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) .wc-block-product .wp-block-button__link {
    min-height: 44px;
    padding-inline: 10px;
    font-size: .62rem;
    letter-spacing: .075em;
  }

  body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) footer .wp-block-columns {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) *,
  body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) *::before,
  body:is(.woocommerce-shop, .tax-product_cat, .tax-product_tag) *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
