/*
 * Txakoli Uriarte commerce flow.
 *
 * One isolated visual layer for cart, checkout and confirmation. Every rule
 * lives below .uriarte-commerce-flow so Kadence's normal pages are untouched.
 * flow.js adds the uriarte-flow-* classes after WooCommerce Blocks render.
 */

body.uriarte-commerce-flow {
  --uriarte-flow-ink: var(--uriarte-ink, #1c211b);
  --uriarte-flow-green: var(--uriarte-green-dark, #203123);
  --uriarte-flow-gold: var(--uriarte-gold, #9b7a2f);
  --uriarte-flow-cream: var(--uriarte-cream, #f5f0e6);
  --uriarte-flow-paper: var(--uriarte-paper, #fffdf8);
  --uriarte-flow-line: var(--uriarte-line, #ded6c7);
  --uriarte-flow-muted: #62685f;
  --uriarte-flow-radius: 16px;
  background: var(--uriarte-flow-cream);
  color: var(--uriarte-flow-ink);
}

body.uriarte-commerce-flow,
body.uriarte-commerce-flow *,
body.uriarte-commerce-flow *::before,
body.uriarte-commerce-flow *::after {
  box-sizing: border-box;
}

/* Kadence page shell: remove the narrow article column and every inherited
   offset. The flow itself controls its width from this point onward. */
body.uriarte-commerce-flow .content-container.site-container,
body.uriarte-commerce-flow #primary,
body.uriarte-commerce-flow .content-area,
body.uriarte-commerce-flow .site-main,
body.uriarte-commerce-flow article,
body.uriarte-commerce-flow .entry-content-wrap,
body.uriarte-commerce-flow .entry-content {
  position: static !important;
  inset: auto !important;
  float: none !important;
  clear: both !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
  transform: none !important;
}

body.uriarte-commerce-flow .content-container.site-container {
  display: block !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
}

body.uriarte-commerce-flow .entry-content-wrap,
body.uriarte-commerce-flow .entry-content {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

body.uriarte-commerce-flow .entry-hero,
body.uriarte-commerce-flow .entry-header {
  width: min(1280px, calc(100% - 40px));
  margin-right: auto !important;
  margin-left: auto !important;
}

body.uriarte-commerce-flow .entry-title,
body.uriarte-commerce-flow h1,
body.uriarte-commerce-flow h2,
body.uriarte-commerce-flow h3 {
  color: var(--uriarte-flow-ink);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.025em;
}

/* Root shell shared by WooCommerce Blocks and the classic fallback. */
body.uriarte-commerce-flow .uriarte-flow-shell,
body.uriarte-commerce-flow .wp-block-woocommerce-cart,
body.uriarte-commerce-flow .wp-block-woocommerce-checkout,
body.uriarte-commerce-flow form.woocommerce-cart-form,
body.uriarte-commerce-flow form.checkout,
body.uriarte-commerce-flow .woocommerce-order {
  isolation: isolate;
  position: relative !important;
  inset: auto !important;
  float: none !important;
  width: min(1280px, calc(100% - 40px)) !important;
  min-width: 0 !important;
  max-width: 1280px !important;
  margin: 38px auto 84px !important;
  padding: 0 !important;
  transform: none !important;
  overflow: visible !important;
}

body.uriarte-commerce-flow .wc-block-cart,
body.uriarte-commerce-flow .wc-block-checkout {
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
}

/* New Uriarte layout classes. Native selectors remain only as a fallback
   during the first instant before React has finished rendering the blocks. */
body.uriarte-commerce-flow .uriarte-flow-layout,
body.uriarte-commerce-flow .wc-block-components-sidebar-layout {
  display: grid !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  align-items: start !important;
  gap: clamp(24px, 3vw, 44px) !important;
  transform: none !important;
  overflow: visible !important;
}

body.uriarte-commerce-flow--checkout .uriarte-flow-layout,
body.uriarte-commerce-flow--checkout
  .wc-block-components-sidebar-layout {
  grid-template-columns:
    minmax(0, 1.42fr)
    minmax(360px, 0.78fr) !important;
}

body.uriarte-commerce-flow--cart .uriarte-flow-layout,
body.uriarte-commerce-flow--cart
  .wc-block-components-sidebar-layout {
  grid-template-columns:
    minmax(0, 1.5fr)
    minmax(330px, 0.72fr) !important;
}

body.uriarte-commerce-flow .uriarte-flow-main,
body.uriarte-commerce-flow .wc-block-checkout__main,
body.uriarte-commerce-flow .wc-block-cart__main,
body.uriarte-commerce-flow .wc-block-components-main {
  grid-column: 1 !important;
  position: relative !important;
  inset: auto !important;
  float: none !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
  overflow: visible !important;
}

body.uriarte-commerce-flow .uriarte-flow-summary,
body.uriarte-commerce-flow .wc-block-checkout__sidebar,
body.uriarte-commerce-flow .wc-block-cart__sidebar,
body.uriarte-commerce-flow .wc-block-components-sidebar {
  grid-column: 2 !important;
  position: relative !important;
  inset: auto !important;
  float: none !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  height: auto !important;
  margin: 0 !important;
  transform: none !important;
  align-self: start !important;
  z-index: 1 !important;
  overflow: visible !important;
}

/* Main form cards. */
body.uriarte-commerce-flow .wc-block-components-checkout-step,
body.uriarte-commerce-flow .wc-block-components-totals-wrapper,
body.uriarte-commerce-flow .wc-block-cart-items,
body.uriarte-commerce-flow .wc-block-checkout__sidebar,
body.uriarte-commerce-flow .wc-block-cart__sidebar,
body.uriarte-commerce-flow .woocommerce-billing-fields,
body.uriarte-commerce-flow .woocommerce-additional-fields,
body.uriarte-commerce-flow #order_review,
body.uriarte-commerce-flow .cart_totals {
  border: 1px solid var(--uriarte-flow-line) !important;
  border-radius: var(--uriarte-flow-radius) !important;
  background: var(--uriarte-flow-paper) !important;
  box-shadow: 0 18px 48px rgba(23, 31, 23, 0.07) !important;
}

body.uriarte-commerce-flow .wc-block-components-checkout-step {
  margin: 0 0 18px !important;
  padding: clamp(22px, 2.5vw, 32px) !important;
}

body.uriarte-commerce-flow .wc-block-checkout__sidebar,
body.uriarte-commerce-flow .wc-block-cart__sidebar {
  padding: clamp(20px, 2.2vw, 30px) !important;
}

body.uriarte-commerce-flow .wc-block-components-checkout-step__container {
  margin: 0 !important;
}

body.uriarte-commerce-flow .wc-block-components-checkout-step__heading {
  margin: 0 0 20px !important;
}

body.uriarte-commerce-flow .wc-block-components-title {
  margin: 0 !important;
  color: var(--uriarte-flow-ink) !important;
  font-family: "Playfair Display", Georgia, serif !important;
  font-size: clamp(22px, 2vw, 29px) !important;
  font-weight: 600 !important;
  line-height: 1.15 !important;
}

body.uriarte-commerce-flow
  .wc-block-components-checkout-step__description {
  color: var(--uriarte-flow-muted) !important;
  line-height: 1.6 !important;
}

/* Fields. */
body.uriarte-commerce-flow
  .wc-block-components-text-input
  input,
body.uriarte-commerce-flow
  .wc-block-components-combobox
  .wc-block-components-combobox-control
  input,
body.uriarte-commerce-flow form .input-text,
body.uriarte-commerce-flow form select,
body.uriarte-commerce-flow form textarea {
  width: 100% !important;
  min-height: 52px !important;
  border: 1px solid rgba(28, 33, 27, 0.24) !important;
  border-radius: 7px !important;
  background: #fff !important;
  color: var(--uriarte-flow-ink) !important;
  box-shadow: none !important;
}

body.uriarte-commerce-flow
  .wc-block-components-text-input
  input:focus,
body.uriarte-commerce-flow
  .wc-block-components-combobox
  .wc-block-components-combobox-control
  input:focus,
body.uriarte-commerce-flow form .input-text:focus,
body.uriarte-commerce-flow form select:focus,
body.uriarte-commerce-flow form textarea:focus {
  border-color: var(--uriarte-flow-green) !important;
  outline: 3px solid rgba(52, 74, 54, 0.14) !important;
  outline-offset: 0 !important;
}

/* Product rows and images. */
body.uriarte-commerce-flow .uriarte-flow-item,
body.uriarte-commerce-flow
  .wc-block-components-order-summary-item {
  display: grid !important;
  grid-template-columns: 82px minmax(0, 1fr) !important;
  grid-template-rows: auto !important;
  align-items: start !important;
  gap: 0 16px !important;
  width: 100% !important;
  min-width: 0 !important;
  padding: 20px 0 !important;
  border-bottom: 1px solid var(--uriarte-flow-line) !important;
}

body.uriarte-commerce-flow
  .wc-block-components-order-summary-item__image {
  grid-column: 1 !important;
  grid-row: 1 !important;
  width: 82px !important;
  min-width: 82px !important;
  margin: 0 !important;
}

body.uriarte-commerce-flow
  .wc-block-components-order-summary-item__image
  img,
body.uriarte-commerce-flow .uriarte-cart-product-image,
body.uriarte-commerce-flow
  .wc-block-cart-item__image
  img {
  display: block !important;
  width: 76px !important;
  height: 98px !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 6px !important;
  border-radius: 9px !important;
  background: #f0eadf !important;
  object-fit: contain !important;
}

body.uriarte-commerce-flow
  .wc-block-components-order-summary-item__description {
  grid-column: 2 !important;
  grid-row: 1 !important;
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
}

body.uriarte-commerce-flow
  .wc-block-components-product-name {
  display: block !important;
  min-width: 0 !important;
  padding-right: 0 !important;
  color: var(--uriarte-flow-ink) !important;
  font-family: "Playfair Display", Georgia, serif !important;
  font-size: 17px !important;
  font-weight: 600 !important;
  line-height: 1.32 !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: anywhere !important;
  hyphens: none !important;
}

body.uriarte-commerce-flow
  .wc-block-components-order-summary-item__individual-prices {
  margin-top: 5px !important;
  color: var(--uriarte-flow-green) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
}

body.uriarte-commerce-flow .wc-block-components-product-metadata {
  width: 100% !important;
  min-width: 0 !important;
  margin-top: 10px !important;
  color: var(--uriarte-flow-muted) !important;
}

body.uriarte-commerce-flow .wc-block-components-product-details {
  display: grid !important;
  gap: 6px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.uriarte-commerce-flow .wc-block-components-product-details li {
  display: grid !important;
  grid-template-columns: minmax(78px, auto) minmax(0, 1fr) !important;
  gap: 9px !important;
  min-width: 0 !important;
  margin: 0 !important;
  font-size: 12px !important;
  line-height: 1.45 !important;
}

body.uriarte-commerce-flow
  .wc-block-components-product-details__name {
  color: var(--uriarte-flow-green) !important;
  font-weight: 800 !important;
}

body.uriarte-commerce-flow
  .wc-block-components-product-details__value {
  min-width: 0 !important;
  white-space: normal !important;
  overflow-wrap: anywhere !important;
}

/* Totals. */
body.uriarte-commerce-flow .wc-block-components-totals-item,
body.uriarte-commerce-flow
  .wc-block-components-totals-footer-item {
  min-width: 0 !important;
  padding: 13px 0 !important;
}

body.uriarte-commerce-flow
  .wc-block-components-totals-footer-item
  .wc-block-components-totals-item__label,
body.uriarte-commerce-flow
  .wc-block-components-totals-footer-item
  .wc-block-components-totals-item__value {
  color: var(--uriarte-flow-green) !important;
  font-size: 18px !important;
  font-weight: 900 !important;
}

/* Payment and direct winery request. */
body.uriarte-commerce-flow
  .wc-block-components-radio-control-accordion-option,
body.uriarte-commerce-flow #payment {
  border: 1px solid var(--uriarte-flow-line) !important;
  border-radius: 12px !important;
  background: #f7f3e9 !important;
}

body.uriarte-commerce-flow .uriarte-bank-transfer-block,
body.uriarte-commerce-flow #payment .payment_box {
  margin: 8px 0 2px !important;
  padding: 17px 18px !important;
  border: 0 !important;
  border-left: 4px solid var(--uriarte-flow-gold) !important;
  border-radius: 5px !important;
  background: #f7f3e9 !important;
  color: var(--uriarte-flow-ink) !important;
}

body.uriarte-commerce-flow .uriarte-bank-transfer-block strong {
  display: block;
  color: var(--uriarte-flow-green);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 17px;
}

body.uriarte-commerce-flow .uriarte-bank-transfer-block p {
  margin: 6px 0 0;
  color: var(--uriarte-flow-muted);
  font-size: 13px;
  line-height: 1.55;
}

body.uriarte-commerce-flow
  .wc-block-components-checkout-place-order-button,
body.uriarte-commerce-flow
  .wc-block-cart__submit-button,
body.uriarte-commerce-flow #place_order,
body.uriarte-commerce-flow .checkout-button,
body.uriarte-commerce-flow button.button,
body.uriarte-commerce-flow a.button,
body.uriarte-commerce-flow input.button {
  min-height: 56px !important;
  padding: 14px 24px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: var(--uriarte-flow-green) !important;
  color: #fff !important;
  box-shadow: 0 13px 30px rgba(32, 49, 35, 0.18) !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  line-height: 1.3 !important;
  text-align: center !important;
  white-space: normal !important;
  text-decoration: none !important;
}

body.uriarte-commerce-flow
  .wc-block-components-checkout-place-order-button,
body.uriarte-commerce-flow
  .wc-block-cart__submit-button,
body.uriarte-commerce-flow #place_order,
body.uriarte-commerce-flow .checkout-button {
  width: 100% !important;
}

body.uriarte-commerce-flow
  .wc-block-components-checkout-place-order-button:hover,
body.uriarte-commerce-flow
  .wc-block-components-checkout-place-order-button:focus-visible,
body.uriarte-commerce-flow
  .wc-block-cart__submit-button:hover,
body.uriarte-commerce-flow #place_order:hover,
body.uriarte-commerce-flow .checkout-button:hover,
body.uriarte-commerce-flow button.button:hover,
body.uriarte-commerce-flow a.button:hover {
  background: var(--uriarte-flow-gold) !important;
  color: #fff !important;
  transform: translateY(-1px) !important;
}

/* Winery message placed before cart and checkout. */
body.uriarte-commerce-flow .uriarte-manual-order-banner {
  width: min(1280px, calc(100% - 40px)) !important;
  max-width: 1280px !important;
  margin: 24px auto !important;
  padding: 18px 22px !important;
  display: grid !important;
  grid-template-columns: 44px minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 15px !important;
  border: 1px solid rgba(155, 122, 47, 0.32) !important;
  border-left: 4px solid var(--uriarte-flow-gold) !important;
  border-radius: 10px !important;
  background: #f8f4ea !important;
  color: var(--uriarte-flow-ink) !important;
}

body.uriarte-commerce-flow .uriarte-manual-order-banner > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--uriarte-flow-green);
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
}

body.uriarte-commerce-flow .uriarte-manual-order-banner strong {
  display: block;
  color: var(--uriarte-flow-green);
  font-size: 15px;
}

body.uriarte-commerce-flow .uriarte-manual-order-banner p {
  margin: 3px 0 0;
  color: var(--uriarte-flow-muted);
  font-size: 13px;
  line-height: 1.55;
}

/* Classic cart and checkout fallback. */
body.uriarte-commerce-flow table.shop_table {
  width: 100% !important;
  overflow: hidden;
  border: 1px solid var(--uriarte-flow-line) !important;
  border-radius: var(--uriarte-flow-radius) !important;
  background: var(--uriarte-flow-paper) !important;
  box-shadow: 0 18px 48px rgba(23, 31, 23, 0.07);
}

body.uriarte-commerce-flow table.shop_table th {
  padding: 16px 14px !important;
  background: #eee8dc;
  color: var(--uriarte-flow-green);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body.uriarte-commerce-flow table.shop_table td {
  padding: 16px 14px !important;
  border-top-color: var(--uriarte-flow-line) !important;
}

body.uriarte-commerce-flow .cart-collaterals,
body.uriarte-commerce-flow form.checkout.woocommerce-checkout {
  display: grid !important;
  grid-template-columns: minmax(0, 1.42fr) minmax(340px, 0.78fr) !important;
  align-items: start !important;
  gap: clamp(24px, 3vw, 44px) !important;
}

body.uriarte-commerce-flow .cart-collaterals .cart_totals,
body.uriarte-commerce-flow form.checkout #order_review {
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: clamp(20px, 2.2vw, 30px) !important;
}

body.uriarte-commerce-flow form.checkout .col2-set {
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
}

body.uriarte-commerce-flow form.checkout #order_review_heading {
  display: none;
}

/* Notices and final confirmation. */
body.uriarte-commerce-flow .woocommerce-error,
body.uriarte-commerce-flow .woocommerce-info,
body.uriarte-commerce-flow .woocommerce-message,
body.uriarte-commerce-flow
  .wc-block-components-notice-banner {
  width: min(1280px, calc(100% - 40px));
  margin-right: auto !important;
  margin-left: auto !important;
  border-color: var(--uriarte-flow-gold) !important;
  border-radius: 10px !important;
  background: var(--uriarte-flow-paper) !important;
  color: var(--uriarte-flow-ink) !important;
}

body.uriarte-commerce-flow--received .woocommerce-order {
  padding: clamp(24px, 4vw, 48px) !important;
  border: 1px solid var(--uriarte-flow-line);
  border-radius: var(--uriarte-flow-radius);
  background: var(--uriarte-flow-paper);
  box-shadow: 0 22px 60px rgba(23, 31, 23, 0.08);
}

body.uriarte-commerce-flow--received
  .woocommerce-order-overview {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 12px !important;
  margin: 26px 0 !important;
  padding: 0 !important;
}

body.uriarte-commerce-flow--received
  .woocommerce-order-overview
  li {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  padding: 16px !important;
  border: 1px solid var(--uriarte-flow-line) !important;
  border-radius: 10px !important;
  background: #f8f4ea !important;
}

@media (max-width: 980px) {
  body.uriarte-commerce-flow--checkout .uriarte-flow-layout,
  body.uriarte-commerce-flow--checkout
    .wc-block-components-sidebar-layout,
  body.uriarte-commerce-flow--cart .uriarte-flow-layout,
  body.uriarte-commerce-flow--cart
    .wc-block-components-sidebar-layout,
  body.uriarte-commerce-flow .cart-collaterals,
  body.uriarte-commerce-flow form.checkout.woocommerce-checkout {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  body.uriarte-commerce-flow .uriarte-flow-main,
  body.uriarte-commerce-flow .wc-block-checkout__main,
  body.uriarte-commerce-flow .wc-block-cart__main,
  body.uriarte-commerce-flow .wc-block-components-main,
  body.uriarte-commerce-flow .uriarte-flow-summary,
  body.uriarte-commerce-flow .wc-block-checkout__sidebar,
  body.uriarte-commerce-flow .wc-block-cart__sidebar,
  body.uriarte-commerce-flow .wc-block-components-sidebar {
    grid-column: 1 !important;
  }

  body.uriarte-commerce-flow .uriarte-flow-summary,
  body.uriarte-commerce-flow .wc-block-checkout__sidebar,
  body.uriarte-commerce-flow .wc-block-cart__sidebar,
  body.uriarte-commerce-flow .wc-block-components-sidebar {
    margin-top: 4px !important;
  }

  body.uriarte-commerce-flow--received
    .woocommerce-order-overview {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  body.uriarte-commerce-flow .entry-hero,
  body.uriarte-commerce-flow .entry-header,
  body.uriarte-commerce-flow .uriarte-flow-shell,
  body.uriarte-commerce-flow .wp-block-woocommerce-cart,
  body.uriarte-commerce-flow .wp-block-woocommerce-checkout,
  body.uriarte-commerce-flow form.woocommerce-cart-form,
  body.uriarte-commerce-flow form.checkout,
  body.uriarte-commerce-flow .woocommerce-order,
  body.uriarte-commerce-flow .uriarte-manual-order-banner,
  body.uriarte-commerce-flow .woocommerce-error,
  body.uriarte-commerce-flow .woocommerce-info,
  body.uriarte-commerce-flow .woocommerce-message,
  body.uriarte-commerce-flow
    .wc-block-components-notice-banner {
    width: calc(100% - 20px) !important;
  }

  body.uriarte-commerce-flow .uriarte-flow-shell,
  body.uriarte-commerce-flow .wp-block-woocommerce-cart,
  body.uriarte-commerce-flow .wp-block-woocommerce-checkout,
  body.uriarte-commerce-flow form.woocommerce-cart-form,
  body.uriarte-commerce-flow form.checkout,
  body.uriarte-commerce-flow .woocommerce-order {
    margin-top: 24px !important;
    margin-bottom: 58px !important;
  }

  body.uriarte-commerce-flow .wc-block-components-checkout-step,
  body.uriarte-commerce-flow .wc-block-checkout__sidebar,
  body.uriarte-commerce-flow .wc-block-cart__sidebar {
    padding: 18px 14px !important;
    border-radius: 12px !important;
  }

  body.uriarte-commerce-flow .uriarte-flow-item,
  body.uriarte-commerce-flow
    .wc-block-components-order-summary-item {
    grid-template-columns: 62px minmax(0, 1fr) !important;
    gap: 0 10px !important;
  }

  body.uriarte-commerce-flow
    .wc-block-components-order-summary-item__image {
    width: 62px !important;
    min-width: 62px !important;
  }

  body.uriarte-commerce-flow
    .wc-block-components-order-summary-item__image
    img,
  body.uriarte-commerce-flow .uriarte-cart-product-image,
  body.uriarte-commerce-flow
    .wc-block-cart-item__image
    img {
    width: 58px !important;
    height: 76px !important;
    padding: 4px !important;
  }

  body.uriarte-commerce-flow
    .wc-block-components-product-name {
    font-size: 15px !important;
  }

  body.uriarte-commerce-flow
    .wc-block-components-product-details
    li {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 2px !important;
  }

  body.uriarte-commerce-flow .uriarte-manual-order-banner {
    grid-template-columns: 36px minmax(0, 1fr) !important;
    padding: 15px !important;
  }

  body.uriarte-commerce-flow
    .uriarte-manual-order-banner
    > span {
    width: 34px;
    height: 34px;
    font-size: 18px;
  }

  body.uriarte-commerce-flow--received
    .woocommerce-order-overview {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  body.uriarte-commerce-flow table.shop_table_responsive tr,
  body.uriarte-commerce-flow
    .woocommerce-page
    table.shop_table_responsive
    tr {
    display: block !important;
    margin-bottom: 14px !important;
    border: 1px solid var(--uriarte-flow-line) !important;
    border-radius: 10px !important;
    background: var(--uriarte-flow-paper) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.uriarte-commerce-flow *,
  body.uriarte-commerce-flow *::before,
  body.uriarte-commerce-flow *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
