/*
 * TMM design overrides
 */

:root {
  --tmm-paper: #fff;
  --tmm-cream: #fff;
  --tmm-white: #fff;
  --tmm-text: #6f7371;
  --tmm-heading: #626262;
  --tmm-muted: #96928b;
  --tmm-accent: #caa98e;
  --tmm-border: #e8e4d8;
  --tmm-font-body: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --tmm-font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
}

body {
  background: var(--tmm-paper);
  color: var(--tmm-text);
  font-family: var(--tmm-font-body);
  font-weight: 400;
  letter-spacing: 0.025em;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--tmm-accent);
}

#masthead.site-header {
  background: var(--tmm-white) !important;
  border-bottom: 1px solid var(--tmm-border);
  box-shadow: 0 3px 15px rgba(82, 78, 65, 0.08);
}

#nav-main {
  min-height: 142px;
  padding: 14px 0 0;
}

#nav-main > .container,
#nav-main > .container-fluid {
  position: relative;
  flex-wrap: wrap;
  align-items: flex-start;
  max-width: none;
  padding-right: 22px;
  padding-left: 22px;
}

.navbar-brand {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0;
  padding: 0 150px 34px;
}

.navbar-brand img {
  width: auto;
  max-width: 170px;
  max-height: 32px;
}

.header-actions {
  position: absolute;
  top: -5px;
  right: 14px;
  gap: 14px;
  color: #111;
}

.header-actions .btn,
.header-actions a,
.header-actions button {
  border: 0;
  background: transparent;
  color: #111;
  box-shadow: none;
}

.header-actions .btn:hover,
.header-actions .btn:focus,
.header-actions .btn:active,
.header-actions a:hover,
.header-actions a:focus,
.header-actions button:hover,
.header-actions button:focus,
.header-actions button:active {
  border: 0 !important;
  background: transparent !important;
  color: var(--tmm-heading) !important;
  box-shadow: none !important;
  opacity: 0.65;
}

.header-actions .btn.show,
.header-actions .btn:first-child:active,
.header-actions :not(.btn-check) + .btn:active {
  background: transparent !important;
  color: var(--tmm-heading) !important;
  box-shadow: none !important;
}

.header-actions i,
.header-actions svg {
  font-size: 24px;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.cart-content-count,
.count,
.badge {
  background: #111 !important;
  color: #fff !important;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0;
}

#offcanvas-navbar {
  width: 100%;
  border: 0;
}

#offcanvas-navbar .offcanvas-body {
  justify-content: center;
  padding: 0;
}

#bootscore-navbar {
  width: 100%;
  justify-content: space-between;
  gap: clamp(10px, 2.4vw, 44px);
  margin: 0 !important;
}

#bootscore-navbar .nav-link {
  padding: 16px 0 22px;
  color: var(--tmm-text);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
  opacity: 0.82;
  transition: color 0.2s ease, opacity 0.2s ease;
}

#bootscore-navbar .current-menu-item > .nav-link,
#bootscore-navbar .current-menu-ancestor > .nav-link,
#bootscore-navbar .nav-link.active {
  color: var(--tmm-accent);
  opacity: 1;
}

#bootscore-navbar .nav-link:hover,
#bootscore-navbar .nav-link:focus {
  color: var(--tmm-heading);
  opacity: 1;
}

#bootscore-navbar .nav-link:focus {
  outline: 0;
  box-shadow: none;
}

#bootscore-navbar .nav-link:focus-visible {
  outline: 1px solid rgba(111, 115, 113, 0.35);
  outline-offset: 8px;
}

.dropdown-menu {
  border: 1px solid var(--tmm-border);
  border-radius: 0;
  box-shadow: 0 18px 35px rgba(82, 78, 65, 0.12);
}

.dropdown-item {
  color: var(--tmm-text);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@media (min-width: 992px) {
  #bootscore-navbar .dropdown {
    position: relative;
  }

  #bootscore-navbar .dropdown-toggle::after {
    width: 7px;
    height: 7px;
    margin-left: 0.55rem;
    border: 0;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    vertical-align: 0.16em;
    opacity: 0.65;
    transform: rotate(45deg);
    transition: transform 0.22s ease, opacity 0.22s ease;
  }

  #bootscore-navbar .dropdown:hover > .dropdown-toggle::after,
  #bootscore-navbar .dropdown:focus-within > .dropdown-toggle::after {
    opacity: 1;
    transform: rotate(225deg) translate(-2px, -2px);
  }

  #bootscore-navbar .dropdown-menu {
    display: block;
    top: calc(100% - 2px);
    left: 0;
    min-width: 310px;
    max-width: min(520px, 90vw);
    margin-top: 0;
    padding: 20px 28px 22px;
    border: 0;
    border-top: 1px solid rgba(202, 169, 142, 0.45);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 55px rgba(42, 38, 32, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  }

  #bootscore-navbar .dropdown-menu[data-bs-popper] {
    top: calc(100% - 2px);
    left: 0;
    margin-top: 0;
  }

  #bootscore-navbar > .dropdown:nth-last-child(-n+2) > .dropdown-menu {
    right: 0;
    left: auto;
  }

  #bootscore-navbar .dropdown-menu::before {
    position: absolute;
    top: -18px;
    right: 0;
    left: 0;
    height: 18px;
    content: "";
  }

  #bootscore-navbar .dropdown:hover > .dropdown-menu,
  #bootscore-navbar .dropdown:focus-within > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  #bootscore-navbar .dropdown-item {
    position: relative;
    display: inline-block;
    width: auto;
    max-width: 100%;
    padding: 8px 0;
    color: var(--tmm-text);
    background: transparent;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.55;
    letter-spacing: 0.16em;
    white-space: normal;
  }

  #bootscore-navbar .dropdown-item::after {
    position: absolute;
    right: 0;
    bottom: 5px;
    left: 0;
    height: 1px;
    background: currentColor;
    content: "";
    opacity: 0.45;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.18s ease;
  }

  #bootscore-navbar .dropdown-item:hover,
  #bootscore-navbar .dropdown-item:focus,
  #bootscore-navbar .dropdown-item:active,
  #bootscore-navbar .dropdown-item.active {
    background: transparent;
    color: var(--tmm-heading);
  }

  #bootscore-navbar .dropdown-item:hover::after,
  #bootscore-navbar .dropdown-item:focus::after,
  #bootscore-navbar .dropdown-item.active::after {
    transform: scaleX(1);
  }
}

/* Header search next to account. */
.tmm-header-search-collapse {
  z-index: 1020;
  border-top: 1px solid var(--tmm-border);
  border-bottom: 1px solid var(--tmm-border);
  background: #fff !important;
  box-shadow: 0 12px 24px rgba(38, 38, 34, 0.06);
}

.tmm-header-search-collapse > .container,
.tmm-header-search-collapse > .container-fluid {
  max-width: none;
  padding-top: 12px;
  padding-right: 22px;
  padding-left: 22px;
}

.tmm-header-search-collapse .woocommerce-product-search,
.tmm-header-search-collapse .search-form {
  display: flex;
  align-items: stretch;
  width: min(100%, 520px);
  margin-left: auto;
}

.tmm-header-search-collapse .search-field,
.tmm-header-search-collapse input[type="search"] {
  min-height: 42px;
  flex: 1 1 auto;
  border: 1px solid var(--tmm-border);
  border-right: 0;
  border-radius: 0;
  background: #fff;
  color: var(--tmm-heading);
  font-size: 13px;
  letter-spacing: 0.08em;
  box-shadow: none;
}

.tmm-header-search-collapse button,
.tmm-header-search-collapse input[type="submit"] {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--tmm-heading);
  border-radius: 0;
  background: var(--tmm-heading);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Single product: hide default WooCommerce category/tag meta. */
.single-product .product_meta,
.single-product .posted_in,
.single-product .tagged_as {
  display: none !important;
}

/* Final mobile related/upsell products carousel override. */
@media (max-width: 767.98px) {
  .single-product .related.products,
  .single-product .upsells.products {
    overflow: hidden !important;
  }

  .single-product .related.products .row.products,
  .single-product .related.products .products.row,
  .single-product .related.products .tmm-products-row,
  .single-product .upsells.products .row.products,
  .single-product .upsells.products .products.row,
  .single-product .upsells.products .tmm-products-row {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    width: auto !important;
    max-width: none !important;
    margin-right: -16px !important;
    margin-left: 0 !important;
    padding: 0 16px 12px 0 !important;
    scrollbar-width: none;
  }

  .single-product .related.products .row.products::-webkit-scrollbar,
  .single-product .related.products .products.row::-webkit-scrollbar,
  .single-product .related.products .tmm-products-row::-webkit-scrollbar,
  .single-product .upsells.products .row.products::-webkit-scrollbar,
  .single-product .upsells.products .products.row::-webkit-scrollbar,
  .single-product .upsells.products .tmm-products-row::-webkit-scrollbar {
    display: none;
  }

  .single-product .related.products .row.products > [class*="col-"],
  .single-product .related.products .products.row > [class*="col-"],
  .single-product .related.products .tmm-products-row > [class*="col-"],
  .single-product .upsells.products .row.products > [class*="col-"],
  .single-product .upsells.products .products.row > [class*="col-"],
  .single-product .upsells.products .tmm-products-row > [class*="col-"] {
    flex: 0 0 82vw !important;
    width: 82vw !important;
    max-width: 82vw !important;
    margin-top: 0 !important;
    padding-right: 10px !important;
    padding-left: 0 !important;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
}

/* Cart/checkout notices: replace red/green Bootstrap colors with TMM neutrals. */
.woocommerce-cart,
.woocommerce-checkout,
#offcanvas-cart {
  --bs-success: #6f7371;
  --bs-success-rgb: 111, 115, 113;
  --bs-danger: #8a6f5f;
  --bs-danger-rgb: 138, 111, 95;
}

.woocommerce-cart .woocommerce-message,
.woocommerce-cart .woocommerce-info,
.woocommerce-cart .woocommerce-error,
.woocommerce-cart .alert-success,
.woocommerce-cart .alert-danger,
.woocommerce-cart .alert-warning,
.woocommerce-cart .wc-block-components-notice-banner,
.woocommerce-checkout .woocommerce-message,
.woocommerce-checkout .woocommerce-info,
.woocommerce-checkout .woocommerce-error,
.woocommerce-checkout .alert-success,
.woocommerce-checkout .alert-danger,
.woocommerce-checkout .alert-warning,
.woocommerce-checkout .wc-block-components-notice-banner,
#offcanvas-cart .woocommerce-message,
#offcanvas-cart .woocommerce-info,
#offcanvas-cart .woocommerce-error,
#offcanvas-cart .alert-success,
#offcanvas-cart .alert-danger,
#offcanvas-cart .alert-warning {
  border-color: #ded8cc !important;
  background: #f8f6f1 !important;
  color: #5f6262 !important;
}

.woocommerce-cart .woocommerce-message::before,
.woocommerce-cart .woocommerce-info::before,
.woocommerce-cart .woocommerce-error::before,
.woocommerce-checkout .woocommerce-message::before,
.woocommerce-checkout .woocommerce-info::before,
.woocommerce-checkout .woocommerce-error::before,
#offcanvas-cart .woocommerce-message::before,
#offcanvas-cart .woocommerce-info::before,
#offcanvas-cart .woocommerce-error::before,
.woocommerce-cart .wc-block-components-notice-banner svg,
.woocommerce-checkout .wc-block-components-notice-banner svg {
  color: #8a6f5f !important;
  fill: #8a6f5f !important;
}

.woocommerce-cart .text-bg-success,
.woocommerce-cart .text-bg-danger,
.woocommerce-cart .bg-success,
.woocommerce-cart .bg-danger,
.woocommerce-checkout .text-bg-success,
.woocommerce-checkout .text-bg-danger,
.woocommerce-checkout .bg-success,
.woocommerce-checkout .bg-danger,
#offcanvas-cart .text-bg-success,
#offcanvas-cart .text-bg-danger,
#offcanvas-cart .bg-success,
#offcanvas-cart .bg-danger {
  background-color: #111 !important;
  color: #fff !important;
}

.woocommerce-cart .btn-success,
.woocommerce-cart .btn-danger,
.woocommerce-checkout .btn-success,
.woocommerce-checkout .btn-danger,
#offcanvas-cart .btn-success,
#offcanvas-cart .btn-danger {
  border-color: #626262 !important;
  background-color: #626262 !important;
  color: #fff !important;
}

/* Final cart/checkout notices: replace red/green defaults with TMM neutrals. */
.woocommerce-cart .woocommerce-message,
.woocommerce-cart .woocommerce-info,
.woocommerce-cart .woocommerce-error,
.woocommerce-cart .alert-success,
.woocommerce-cart .alert-danger,
.woocommerce-cart .alert-info,
.woocommerce-checkout .woocommerce-message,
.woocommerce-checkout .woocommerce-info,
.woocommerce-checkout .woocommerce-error,
.woocommerce-checkout .alert-success,
.woocommerce-checkout .alert-danger,
.woocommerce-checkout .alert-info,
.woocommerce-cart .wc-block-components-notice-banner,
.woocommerce-checkout .wc-block-components-notice-banner {
  border: 1px solid var(--tmm-border) !important;
  border-left: 3px solid var(--tmm-accent) !important;
  border-radius: 0 !important;
  background: #f8f6f3 !important;
  color: var(--tmm-heading) !important;
  box-shadow: none !important;
}

.woocommerce-cart .woocommerce-error,
.woocommerce-cart .alert-danger,
.woocommerce-checkout .woocommerce-error,
.woocommerce-checkout .alert-danger,
.woocommerce-cart .wc-block-components-notice-banner.is-error,
.woocommerce-checkout .wc-block-components-notice-banner.is-error {
  border-left-color: #5f5b55 !important;
  background: #f5f2ee !important;
}

.woocommerce-cart .woocommerce-message::before,
.woocommerce-cart .woocommerce-info::before,
.woocommerce-cart .woocommerce-error::before,
.woocommerce-checkout .woocommerce-message::before,
.woocommerce-checkout .woocommerce-info::before,
.woocommerce-checkout .woocommerce-error::before {
  color: var(--tmm-accent) !important;
}

.woocommerce-cart .woocommerce-error::before,
.woocommerce-checkout .woocommerce-error::before {
  color: #5f5b55 !important;
}

.woocommerce-cart .wc-block-components-notice-banner > svg,
.woocommerce-checkout .wc-block-components-notice-banner > svg {
  background-color: var(--tmm-accent) !important;
  fill: #fff !important;
}

.woocommerce-cart .wc-block-components-notice-banner.is-error > svg,
.woocommerce-checkout .wc-block-components-notice-banner.is-error > svg {
  background-color: #5f5b55 !important;
}

.woocommerce-cart .woocommerce-message a,
.woocommerce-cart .woocommerce-info a,
.woocommerce-cart .woocommerce-error a,
.woocommerce-cart .alert-success a,
.woocommerce-cart .alert-danger a,
.woocommerce-cart .alert-info a,
.woocommerce-checkout .woocommerce-message a,
.woocommerce-checkout .woocommerce-info a,
.woocommerce-checkout .woocommerce-error a,
.woocommerce-checkout .alert-success a,
.woocommerce-checkout .alert-danger a,
.woocommerce-checkout .alert-info a,
.woocommerce-cart .wc-block-components-notice-banner a,
.woocommerce-checkout .wc-block-components-notice-banner a {
  color: var(--tmm-heading) !important;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Final header action order: account/login, search, cart, menu. */
.header-actions .account-toggler {
  order: 10;
}

.header-actions .search-toggler {
  order: 11;
}

.header-actions .cart-toggler,
.header-actions .back-to-cart {
  order: 12;
}

.header-actions .nav-toggler {
  order: 13;
}

/* Final cart/checkout color cleanup for Bootstrap utility classes. */
.woocommerce-cart .text-bg-success,
.woocommerce-cart .text-bg-danger,
.woocommerce-cart .bg-success,
.woocommerce-cart .bg-danger,
.woocommerce-checkout .text-bg-success,
.woocommerce-checkout .text-bg-danger,
.woocommerce-checkout .bg-success,
.woocommerce-checkout .bg-danger,
#offcanvas-cart .text-bg-success,
#offcanvas-cart .text-bg-danger,
#offcanvas-cart .bg-success,
#offcanvas-cart .bg-danger {
  background-color: #111 !important;
  color: #fff !important;
}

.woocommerce-cart .btn-success,
.woocommerce-cart .btn-danger,
.woocommerce-checkout .btn-success,
.woocommerce-checkout .btn-danger,
#offcanvas-cart .btn-success,
#offcanvas-cart .btn-danger {
  border-color: #626262 !important;
  background-color: #626262 !important;
  color: #fff !important;
}

.woocommerce-cart .woocommerce-invalid .input-text,
.woocommerce-cart .woocommerce-invalid select,
.woocommerce-checkout .woocommerce-invalid .input-text,
.woocommerce-checkout .woocommerce-invalid select,
.woocommerce-cart .wc-block-components-validation-error,
.woocommerce-checkout .wc-block-components-validation-error {
  border-color: #8a6f5f !important;
  color: #8a6f5f !important;
}

/* Global WooCommerce notices and empty mini-cart state in TMM neutrals. */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-error,
.woocommerce-messages .woocommerce-message,
.woocommerce-messages .woocommerce-info,
.woocommerce-messages .woocommerce-error,
.cart-empty.woocommerce-info,
#offcanvas-cart .woocommerce-info,
#offcanvas-cart .woocommerce-message,
#offcanvas-cart .woocommerce-error,
#offcanvas-cart .woocommerce-mini-cart__empty-message,
.woocommerce-mini-cart__empty-message,
.wc-block-components-notice-banner,
.wc-block-components-notice-banner.is-success,
.wc-block-components-notice-banner.is-info,
.wc-block-components-notice-banner.is-error {
  border: 1px solid var(--tmm-border) !important;
  border-left: 3px solid var(--tmm-accent) !important;
  border-radius: 0 !important;
  background: #f8f6f3 !important;
  color: var(--tmm-heading) !important;
  box-shadow: none !important;
}

.woocommerce-error,
.woocommerce .woocommerce-error,
.woocommerce-messages .woocommerce-error,
#offcanvas-cart .woocommerce-error,
.wc-block-components-notice-banner.is-error {
  border-left-color: #5f5b55 !important;
  background: #f5f2ee !important;
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
  color: var(--tmm-accent) !important;
}

.woocommerce-error::before {
  color: #5f5b55 !important;
}

.wc-block-components-notice-banner > svg {
  background-color: var(--tmm-accent) !important;
  fill: #fff !important;
}

.wc-block-components-notice-banner.is-error > svg {
  background-color: #5f5b55 !important;
}

.woocommerce-message a,
.woocommerce-info a,
.woocommerce-error a,
.wc-block-components-notice-banner a,
#offcanvas-cart .woocommerce-mini-cart__empty-message a {
  color: var(--tmm-heading) !important;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Absolute final header action order: account/login, search, cart, menu. */
.header-actions .account-toggler {
  order: 10 !important;
}

.header-actions .search-toggler {
  order: 11 !important;
}

.header-actions .cart-toggler,
.header-actions .back-to-cart {
  order: 12 !important;
}

.header-actions .nav-toggler {
  order: 13 !important;
}

/* Absolute final cart/checkout color cleanup for Bootstrap utility classes. */
.woocommerce-cart .text-bg-success,
.woocommerce-cart .text-bg-danger,
.woocommerce-cart .bg-success,
.woocommerce-cart .bg-danger,
.woocommerce-checkout .text-bg-success,
.woocommerce-checkout .text-bg-danger,
.woocommerce-checkout .bg-success,
.woocommerce-checkout .bg-danger,
#offcanvas-cart .text-bg-success,
#offcanvas-cart .text-bg-danger,
#offcanvas-cart .bg-success,
#offcanvas-cart .bg-danger {
  background-color: #111 !important;
  color: #fff !important;
}

.woocommerce-cart .btn-success,
.woocommerce-cart .btn-danger,
.woocommerce-checkout .btn-success,
.woocommerce-checkout .btn-danger,
#offcanvas-cart .btn-success,
#offcanvas-cart .btn-danger {
  border-color: #626262 !important;
  background-color: #626262 !important;
  color: #fff !important;
}

.woocommerce-cart .woocommerce-invalid .input-text,
.woocommerce-cart .woocommerce-invalid select,
.woocommerce-checkout .woocommerce-invalid .input-text,
.woocommerce-checkout .woocommerce-invalid select,
.woocommerce-cart .wc-block-components-validation-error,
.woocommerce-checkout .wc-block-components-validation-error {
  border-color: #8a6f5f !important;
  color: #8a6f5f !important;
}

.wc-block-components-notice-banner svg,
.woocommerce-message svg,
.woocommerce-info svg,
.woocommerce-error svg {
  color: var(--tmm-accent) !important;
  fill: currentColor !important;
}

.woocommerce-message .button,
.woocommerce-info .button,
.woocommerce-error .button,
.wc-block-components-notice-banner .button,
.wc-block-components-notice-banner button {
  border-color: var(--tmm-heading) !important;
  background: transparent !important;
  color: var(--tmm-heading) !important;
}

/* Cart/checkout notices: replace red/green defaults with TMM neutrals. */
.woocommerce-cart .woocommerce-message,
.woocommerce-cart .woocommerce-info,
.woocommerce-cart .woocommerce-error,
.woocommerce-cart .alert-success,
.woocommerce-cart .alert-danger,
.woocommerce-cart .alert-info,
.woocommerce-checkout .woocommerce-message,
.woocommerce-checkout .woocommerce-info,
.woocommerce-checkout .woocommerce-error,
.woocommerce-checkout .alert-success,
.woocommerce-checkout .alert-danger,
.woocommerce-checkout .alert-info,
.woocommerce-cart .wc-block-components-notice-banner,
.woocommerce-checkout .wc-block-components-notice-banner {
  border: 1px solid var(--tmm-border) !important;
  border-left: 3px solid var(--tmm-accent) !important;
  border-radius: 0 !important;
  background: #f8f6f3 !important;
  color: var(--tmm-heading) !important;
  box-shadow: none !important;
}

.woocommerce-cart .woocommerce-error,
.woocommerce-cart .alert-danger,
.woocommerce-checkout .woocommerce-error,
.woocommerce-checkout .alert-danger,
.woocommerce-cart .wc-block-components-notice-banner.is-error,
.woocommerce-checkout .wc-block-components-notice-banner.is-error {
  border-left-color: #5f5b55 !important;
  background: #f5f2ee !important;
}

.woocommerce-cart .woocommerce-message::before,
.woocommerce-cart .woocommerce-info::before,
.woocommerce-cart .woocommerce-error::before,
.woocommerce-checkout .woocommerce-message::before,
.woocommerce-checkout .woocommerce-info::before,
.woocommerce-checkout .woocommerce-error::before {
  color: var(--tmm-accent) !important;
}

.woocommerce-cart .woocommerce-error::before,
.woocommerce-checkout .woocommerce-error::before {
  color: #5f5b55 !important;
}

.woocommerce-cart .wc-block-components-notice-banner > svg,
.woocommerce-checkout .wc-block-components-notice-banner > svg {
  background-color: var(--tmm-accent) !important;
  fill: #fff !important;
}

.woocommerce-cart .wc-block-components-notice-banner.is-error > svg,
.woocommerce-checkout .wc-block-components-notice-banner.is-error > svg {
  background-color: #5f5b55 !important;
}

.woocommerce-cart .woocommerce-message a,
.woocommerce-cart .woocommerce-info a,
.woocommerce-cart .woocommerce-error a,
.woocommerce-cart .alert-success a,
.woocommerce-cart .alert-danger a,
.woocommerce-cart .alert-info a,
.woocommerce-checkout .woocommerce-message a,
.woocommerce-checkout .woocommerce-info a,
.woocommerce-checkout .woocommerce-error a,
.woocommerce-checkout .alert-success a,
.woocommerce-checkout .alert-danger a,
.woocommerce-checkout .alert-info a,
.woocommerce-cart .wc-block-components-notice-banner a,
.woocommerce-checkout .wc-block-components-notice-banner a {
  color: var(--tmm-heading) !important;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Mobile related products: one product in view with a hint of the next one. */
@media (max-width: 767.98px) {
  .single-product .related.products {
    overflow: hidden;
  }

  .single-product .related.products .row.products,
  .single-product .related.products .products.row,
  .single-product .related.products .tmm-products-row {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    width: auto !important;
    max-width: none !important;
    margin-right: -16px !important;
    margin-left: 0 !important;
    padding: 0 16px 12px 0 !important;
    scrollbar-width: none;
  }

  .single-product .related.products .row.products::-webkit-scrollbar,
  .single-product .related.products .products.row::-webkit-scrollbar,
  .single-product .related.products .tmm-products-row::-webkit-scrollbar {
    display: none;
  }

  .single-product .related.products .row.products > [class*="col-"],
  .single-product .related.products .products.row > [class*="col-"],
  .single-product .related.products .tmm-products-row > [class*="col-"] {
    flex: 0 0 82vw !important;
    width: 82vw !important;
    max-width: 82vw !important;
    margin-top: 0 !important;
    padding-right: 10px !important;
    padding-left: 0 !important;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
}

.site,
#content,
.bootscore-wrapper,
.woocommerce,
.woocommerce-page {
  background: var(--tmm-paper);
}

.woocommerce-page #content.site-content,
.post-type-archive-product #content.site-content,
.tax-product_cat #content.site-content,
.single-product #content.site-content {
  width: 100%;
  max-width: none;
  padding-right: clamp(6px, 2vw, 36px);
  padding-left: clamp(6px, 2vw, 36px);
}

.woocommerce-page #main > .row,
.post-type-archive-product #main > .row,
.tax-product_cat #main > .row,
.single-product #main > .row,
.woocommerce-checkout #main > .row,
.woocommerce-cart #main > .row,
.woocommerce-account #main > .row,
.woocommerce-checkout #primary > .row,
.woocommerce-cart #primary > .row,
.woocommerce-account #primary > .row {
  --bs-gutter-x: 0;
}

.woocommerce-page #main > .row > .col,
.woocommerce-page #main > .row > [class*="col-"],
.post-type-archive-product #main > .row > .col,
.post-type-archive-product #main > .row > [class*="col-"],
.tax-product_cat #main > .row > .col,
.tax-product_cat #main > .row > [class*="col-"],
.single-product #main > .row > .col,
.single-product #main > .row > [class*="col-"],
.woocommerce-checkout #main > .row > .col,
.woocommerce-checkout #main > .row > [class*="col-"],
.woocommerce-cart #main > .row > .col,
.woocommerce-cart #main > .row > [class*="col-"],
.woocommerce-account #main > .row > .col,
.woocommerce-account #main > .row > [class*="col-"],
.woocommerce-checkout #primary > .row > .col,
.woocommerce-checkout #primary > .row > [class*="col-"],
.woocommerce-cart #primary > .row > .col,
.woocommerce-cart #primary > .row > [class*="col-"],
.woocommerce-account #primary > .row > .col,
.woocommerce-account #primary > .row > [class*="col-"] {
  flex: 0 0 100%;
  max-width: 100%;
  width: 100%;
}

.woocommerce-page #secondary,
.woocommerce-page .widget-area,
.post-type-archive-product #secondary,
.post-type-archive-product .widget-area,
.tax-product_cat #secondary,
.tax-product_cat .widget-area,
.single-product #secondary,
.single-product .widget-area,
.woocommerce-checkout #secondary,
.woocommerce-checkout .widget-area,
.woocommerce-cart #secondary,
.woocommerce-cart .widget-area,
.woocommerce-account #secondary,
.woocommerce-account .widget-area {
  display: none !important;
}

.woocommerce-checkout #primary > .row > :has(#secondary),
.woocommerce-cart #primary > .row > :has(#secondary),
.woocommerce-account #primary > .row > :has(#secondary) {
  display: none !important;
}

.woocommerce-page #main > .row > :has(#secondary),
.post-type-archive-product #main > .row > :has(#secondary),
.tax-product_cat #main > .row > :has(#secondary),
.single-product #main > .row > :has(#secondary),
.woocommerce-checkout #main > .row > :has(#secondary),
.woocommerce-cart #main > .row > :has(#secondary),
.woocommerce-account #main > .row > :has(#secondary) {
  display: none !important;
}

.woocommerce-checkout .entry-header,
.woocommerce-cart .entry-header,
.woocommerce-account .entry-header {
  min-height: auto;
  margin: 0 auto 28px;
  padding: 34px 24px 18px;
  background: transparent;
}

.woocommerce-checkout .entry-header h1,
.woocommerce-cart .entry-header h1,
.woocommerce-account .entry-header h1 {
  color: var(--tmm-heading);
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: 0.14em;
}

.woocommerce-checkout #content.site-content,
.woocommerce-cart #content.site-content,
.woocommerce-account #content.site-content {
  width: min(100%, 1320px);
  max-width: none;
  padding-top: 18px !important;
  padding-right: clamp(16px, 3vw, 48px);
  padding-bottom: 56px !important;
  padding-left: clamp(16px, 3vw, 48px);
}

.woocommerce-checkout .entry-content,
.woocommerce-cart .entry-content,
.woocommerce-account .entry-content {
  width: 100%;
  max-width: none;
}

#content:has(.wp-block-woocommerce-checkout),
#content:has(.wc-block-checkout) {
  width: min(100%, 1320px);
  max-width: none;
  padding-top: 18px !important;
  padding-right: clamp(16px, 3vw, 48px);
  padding-bottom: 56px !important;
  padding-left: clamp(16px, 3vw, 48px);
}

#main > .row > [class*="col-"]:has(.wp-block-woocommerce-checkout),
#main > .row > [class*="col-"]:has(.wc-block-checkout) {
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
}

#main > .row > [class*="col-"]:has(.wp-block-woocommerce-checkout) ~ [class*="col-"],
#main > .row > [class*="col-"]:has(.wc-block-checkout) ~ [class*="col-"] {
  display: none !important;
}

.woocommerce-checkout .wp-block-woocommerce-checkout,
.woocommerce-checkout .wc-block-checkout,
#content .wp-block-woocommerce-checkout,
#content .wc-block-checkout,
#content .wp-block-woocommerce-checkout.alignwide,
.woocommerce-checkout .wc-block-checkout__main,
.woocommerce-checkout .wc-block-checkout__sidebar,
.woocommerce-checkout .wc-block-components-sidebar-layout__main,
.woocommerce-checkout .wc-block-components-sidebar-layout__sidebar,
.woocommerce-checkout .wc-block-components-sidebar-layout,
.woocommerce-checkout .wc-block-components-main,
.woocommerce-checkout .wc-block-components-sidebar {
  width: 100%;
  max-width: none;
  margin-right: 0;
  margin-left: 0;
}

.woocommerce-checkout .wc-block-components-sidebar-layout {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
}

.woocommerce-checkout .wc-block-components-main,
.woocommerce-checkout .wc-block-components-sidebar-layout__main,
.woocommerce-checkout .wc-block-checkout__main {
  flex: 1 1 auto;
  width: auto;
  max-width: none;
  padding-right: 0;
}

.woocommerce-checkout .wc-block-components-sidebar,
.woocommerce-checkout .wc-block-components-sidebar-layout__sidebar,
.woocommerce-checkout .wc-block-checkout__sidebar {
  flex: 0 0 390px;
  width: 390px;
  max-width: 390px;
  padding-left: 0;
}

.woocommerce-checkout form.checkout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
}

.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review,
.woocommerce-checkout #order_review_heading,
.woocommerce-cart .cart_totals,
.woocommerce-account .woocommerce-MyAccount-content,
.woocommerce-account .woocommerce-MyAccount-navigation {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.woocommerce-checkout #customer_details,
.woocommerce-account .woocommerce-MyAccount-content {
  grid-column: 1;
}

.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #order_review {
  grid-column: 2;
}

.woocommerce-checkout #order_review_heading {
  margin: 0 0 18px;
  color: var(--tmm-heading);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.woocommerce-checkout #order_review {
  padding: 20px;
  border: 1px solid var(--tmm-border);
  background: rgba(255, 255, 255, 0.42);
}

.woocommerce-checkout .wc-block-components-title,
.woocommerce-checkout .wc-block-components-checkout-step__title,
.woocommerce-checkout .wc-block-components-checkout-step__heading,
.woocommerce-checkout .wc-block-components-checkout-step__container {
  margin-bottom: 14px;
}

.woocommerce-checkout .wc-block-components-checkout-step {
  margin-bottom: 24px;
}

.woocommerce-checkout .wc-block-components-checkout-step__title {
  color: var(--tmm-heading);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.woocommerce-checkout .wc-block-components-text-input input,
.woocommerce-checkout .wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input,
.woocommerce-checkout .wc-block-components-form .wc-block-components-text-input input,
.woocommerce-checkout .wc-block-components-textarea {
  min-height: 44px;
  padding-top: 12px;
  padding-bottom: 8px;
  border-radius: 0;
  font-size: 14px;
}

.woocommerce-checkout .wc-block-components-text-input label,
.woocommerce-checkout .wc-block-components-combobox .wc-block-components-combobox-control label.components-base-control__label {
  font-size: 11px;
  letter-spacing: 0.08em;
}

.woocommerce-checkout .wc-block-components-order-summary,
.woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block {
  font-size: 13px;
}

.woocommerce-checkout .wc-block-components-order-summary-item {
  padding-top: 12px;
  padding-bottom: 12px;
}

.woocommerce-checkout h3,
.woocommerce-billing-fields h3,
.woocommerce-shipping-fields h3,
.woocommerce-additional-fields h3,
.woocommerce-cart .cart_totals h2,
.woocommerce-account h2,
.woocommerce-account h3 {
  margin: 0 0 18px;
  color: var(--tmm-heading);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.woocommerce form .form-row label,
.woocommerce-checkout label,
.woocommerce-account label {
  color: var(--tmm-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce .select2-container .select2-selection--single,
.woocommerce-cart table.cart td.actions .coupon .input-text {
  min-height: 44px;
  border: 1px solid var(--tmm-border);
  border-radius: 0;
  background-color: rgba(255, 255, 255, 0.58);
  color: var(--tmm-heading);
  font-size: 14px;
  letter-spacing: 0.06em;
  box-shadow: none;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus,
.woocommerce .select2-container--default.select2-container--focus .select2-selection--single {
  border-color: var(--tmm-heading);
  box-shadow: none;
}

.woocommerce table.shop_table {
  border-color: var(--tmm-border);
  border-radius: 0;
  background: transparent;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  border-color: var(--tmm-border);
  color: var(--tmm-text);
  letter-spacing: 0.08em;
}

.woocommerce #payment,
.woocommerce-checkout #payment {
  border-radius: 0;
  background: transparent;
}

.woocommerce #payment div.payment_box,
.woocommerce-checkout #payment div.payment_box {
  border-radius: 0;
  background: rgba(255, 255, 255, 0.5);
}

.woocommerce #payment #place_order,
.woocommerce-checkout #payment #place_order,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  width: 100%;
  min-height: 58px;
  border: 1px solid var(--tmm-heading) !important;
  border-radius: 0 !important;
  background: var(--tmm-heading) !important;
  color: #fff !important;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.woocommerce #payment #place_order:hover,
.woocommerce-checkout #payment #place_order:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
  border-color: var(--tmm-accent) !important;
  background: var(--tmm-accent) !important;
}

.container,
.container-lg,
.container-xl,
.container-xxl {
  --bs-gutter-x: 32px;
}

.entry-header,
.page-header,
.woocommerce-products-header,
.wp-block-cover,
.category-hero,
.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 245px;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding: 56px 24px;
  background-color: #c8dde0;
  background-position: center;
  background-size: cover;
  text-align: center;
}

.entry-header h1,
.page-header h1,
.woocommerce-products-header h1,
.wp-block-cover h1,
.category-hero h1,
.hero-section h1,
.woocommerce-products-header__title.page-title {
  margin: 0;
  color: #fff;
  font-size: clamp(32px, 3vw, 52px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.woocommerce-products-header + .container,
.woocommerce-products-header + .woocommerce-notices-wrapper,
.woocommerce .products,
.products {
  margin-top: 44px;
}

.woocommerce-result-count,
.woocommerce-ordering,
.woocommerce-breadcrumb,
.product_meta,
.posted_in {
  color: var(--tmm-muted);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.woocommerce .woocommerce-breadcrumb,
.woocommerce-breadcrumb {
  display: none !important;
}

.woocommerce-products-header,
.post-type-archive-product .woocommerce-products-header,
.tax-product_cat .woocommerce-products-header,
.tax-product_tag .woocommerce-products-header {
  min-height: auto;
  margin-top: 0;
  margin-bottom: 18px;
  padding: 24px 0 4px;
  background: transparent;
  text-align: left;
}

.woocommerce .woocommerce-result-count,
.woocommerce-page .woocommerce-result-count {
  margin: 0 0 18px;
}

.woocommerce .woocommerce-ordering,
.woocommerce-page .woocommerce-ordering {
  margin: -48px 0 26px auto;
  width: min(100%, 430px);
}

.woocommerce .products.row,
.products.row {
  --bs-gutter-x: 48px;
  --bs-gutter-y: 48px;
}

.woocommerce .products.row > [class*="col-"],
.products.row > [class*="col-"] {
  flex: 0 0 25%;
  max-width: 25%;
  width: 25%;
}

.single-product div.product {
  display: flow-root;
}

.single-product div.product div.images,
.single-product div.product div.summary {
  margin-bottom: 64px;
}

.single-product div.product div.images {
  width: 50%;
  padding-right: clamp(24px, 4vw, 72px);
}

.single-product div.product div.summary {
  width: 50%;
  padding-left: clamp(12px, 2vw, 36px);
}

.single-product .related.products,
.single-product .upsells.products {
  clear: both;
  display: block;
  width: 100%;
  margin-top: 72px;
}

.single-product .related.products > h2,
.single-product .upsells.products > h2 {
  margin: 0 0 32px;
  color: var(--tmm-heading);
  font-size: clamp(22px, 2.2vw, 38px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.single-product .related.products .products.row,
.single-product .upsells.products .products.row {
  margin-top: 0;
}

.single-product .stock {
  display: inline-flex;
  align-items: center;
  width: auto;
  margin: 28px 0 18px;
  padding: 7px 14px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.woocommerce div.product .stock.out-of-stock,
.woocommerce div.product p.stock.out-of-stock,
.single-product .stock.out-of-stock,
.single-product .out-of-stock {
  display: block;
  width: 100%;
  margin: 30px 0 26px;
  padding: 20px 24px;
  border: 1px solid #d7c6b7;
  border-left: 6px solid var(--tmm-accent);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.48);
  color: var(--tmm-heading);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-transform: none;
}

.single-product div.product form.cart {
  gap: 24px 28px;
  align-items: stretch;
  margin: 18px 0 46px;
}

.single-product div.product form.cart div.quantity {
  flex: 0 0 280px;
  margin: 0;
}

.single-product .quantity .input-group {
  width: 100%;
  height: 58px;
}

.single-product .quantity .input-group-text,
.single-product .quantity .form-control {
  border-color: var(--tmm-border);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.55);
  color: #25282a;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: none;
}

.single-product .quantity .input-group-text {
  min-width: 62px;
  justify-content: center;
}

.single-product .quantity .form-control:focus {
  border-color: var(--tmm-heading);
  box-shadow: none;
}

.single-product div.product form.cart .single_add_to_cart_button,
.single-product div.product form.cart .button {
  flex: 1 1 360px;
  min-height: 58px;
  border: 1px solid var(--tmm-heading) !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--tmm-heading) !important;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  box-shadow: none !important;
}

.single-product div.product form.cart .single_add_to_cart_button:hover,
.single-product div.product form.cart .single_add_to_cart_button:focus,
.single-product div.product form.cart .button:hover,
.single-product div.product form.cart .button:focus {
  border-color: var(--tmm-accent) !important;
  background: var(--tmm-accent) !important;
  color: #fff !important;
}

.single-product .product_meta {
  margin-top: 12px;
  padding-top: 28px;
  border-top: 1px solid var(--tmm-border);
  color: var(--tmm-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0.18em;
}

.single-product .product_meta a {
  color: var(--tmm-muted);
}

.single-product .product_meta a:hover {
  color: var(--tmm-accent);
}

.woocommerce .card.product,
.woocommerce ul.products li.product,
.product-category .card {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.woocommerce .card.product .card-body,
.product-category .card-body {
  padding: 18px 0 0;
  background: transparent;
}

.woocommerce .card.product img,
.woocommerce ul.products li.product img,
.product-category img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0;
}

.woocommerce .card .woocommerce-loop-product__title,
.woocommerce-loop-product__title,
.product-category .woocommerce-loop-category__title {
  margin: 0 0 8px;
  color: var(--tmm-heading);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.woocommerce nav.woocommerce-pagination,
.woocommerce-pagination,
.pagination {
  margin: 64px 0 24px;
}

.woocommerce nav.woocommerce-pagination ul,
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 0;
  border: 0;
}

.woocommerce nav.woocommerce-pagination ul li {
  border: 0;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span,
.page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  border: 1px solid var(--tmm-border);
  border-radius: 0 !important;
  background: rgba(255, 255, 255, 0.45);
  color: var(--tmm-heading);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-decoration: none;
  box-shadow: none;
}

.woocommerce nav.woocommerce-pagination ul li span.current,
.pagination .active .page-link,
.page-link.active {
  border-color: var(--tmm-heading);
  background: var(--tmm-heading);
  color: #fff;
}

.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li a:focus,
.page-link:hover,
.page-link:focus {
  border-color: var(--tmm-accent);
  background: var(--tmm-accent);
  color: #fff;
  box-shadow: none;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce .card .price,
.card .price,
.price {
  color: var(--tmm-muted);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.12em;
}

.woocommerce .button,
.woocommerce a.button,
.woocommerce button.button,
.btn,
.btn-minimal {
  border: 1px solid var(--tmm-heading);
  border-radius: 0;
  background: transparent;
  color: var(--tmm-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.woocommerce .card.product .button,
.woocommerce .card.product a.button,
.woocommerce .card.product .added_to_cart,
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product a.button {
  width: min(100%, 360px);
  min-height: 48px;
  margin: 22px auto 0;
  padding: 14px 22px;
  border-color: var(--tmm-heading);
  background: transparent;
  color: var(--tmm-heading);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.16em;
}

.woocommerce .card.product .out-of-stock,
.woocommerce ul.products li.product .out-of-stock,
.woocommerce .card.product .stock.out-of-stock,
.woocommerce ul.products li.product .stock.out-of-stock {
  display: block;
  width: min(100%, 360px);
  margin: 16px auto 0;
  padding: 12px 18px;
  border: 1px solid var(--tmm-border);
  border-left: 4px solid var(--tmm-accent);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.58);
  color: var(--tmm-heading);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-align: center;
  text-transform: none;
}

.woocommerce .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.btn:hover,
.btn-minimal:hover {
  border-color: var(--tmm-accent);
  background: var(--tmm-accent);
  color: #fff;
}

.intro-section {
  padding: 96px 0 48px;
}

.intro-box {
  border: 0;
  background: var(--tmm-white);
  padding: 42px;
}

.intro-box h1,
.intro-box .h1,
.feature-section h2,
.feature-section .h2 {
  color: var(--tmm-heading);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.intro-box p,
.feature-section p {
  color: var(--tmm-text);
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.08em;
}

.tmm-home {
  background: var(--tmm-paper);
  padding: 0 0 96px;
}

.tmm-home-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(330px, 47vw, 565px);
  width: 100vw;
  margin: 0 0 64px 50%;
  transform: translateX(-50%);
  background-position: center;
  background-size: cover;
  text-align: center;
  overflow: hidden;
}

.tmm-home-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(54, 39, 28, 0.28);
}

.tmm-home-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
  padding: 40px 24px;
  color: #fff;
}

.tmm-home-hero__eyebrow {
  margin: 0 0 24px;
  font-size: clamp(18px, 1.7vw, 30px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tmm-home-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 5.2vw, 92px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tmm-home-content {
  min-height: 360px;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 clamp(22px, 5vw, 88px);
}

.tmm-home-content:empty {
  display: block;
}

.tmm-home-content > *:first-child {
  margin-top: 0;
}

.tmm-home-content > *:last-child {
  margin-bottom: 0;
}

@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-xl,
  .container-xxl {
    max-width: 1770px;
  }
}

@media (max-width: 1399.98px) {
  #bootscore-navbar {
    gap: clamp(8px, 1.8vw, 28px);
  }

  #bootscore-navbar .nav-link {
    font-size: 13px;
    letter-spacing: 0.14em;
  }
}

@media (max-width: 1199.98px) {
  #bootscore-navbar .nav-link {
    font-size: 12px;
    letter-spacing: 0.1em;
  }

  .woocommerce .products.row,
  .products.row {
    --bs-gutter-x: 30px;
  }

  .woocommerce .products.row > [class*="col-"],
  .products.row > [class*="col-"] {
    flex-basis: 33.333333%;
    max-width: 33.333333%;
    width: 33.333333%;
  }
}

@media (max-width: 991.98px) {
  #nav-main {
    min-height: 74px;
    padding: 14px 0;
  }

  #nav-main > .container,
  #nav-main > .container-fluid {
    flex-wrap: nowrap;
    align-items: center;
  }

  .navbar-brand {
    justify-content: flex-start;
    width: auto;
    padding: 0 90px 0 0;
  }

  .header-actions {
    position: static;
    margin-left: auto;
    gap: 8px;
  }

  #offcanvas-navbar {
    background: var(--tmm-white);
  }

  #offcanvas-navbar .offcanvas-body {
    padding: 14px 22px 28px;
  }

  #bootscore-navbar {
    gap: 0;
  }

  #bootscore-navbar .nav-link {
    padding: 14px 0;
    border-bottom: 1px solid var(--tmm-border);
    font-size: 16px;
  }

  #bootscore-navbar .dropdown-menu {
    margin: 0;
    padding: 4px 0 12px 18px;
    border: 0;
    border-left: 1px solid var(--tmm-border);
    box-shadow: none;
  }

  #bootscore-navbar .dropdown-item {
    padding: 10px 0;
    font-size: 13px;
    letter-spacing: 0.12em;
  }

  .entry-header,
  .page-header,
  .woocommerce-products-header,
  .wp-block-cover,
  .category-hero,
  .hero-section {
    min-height: 190px;
  }

  .woocommerce .products.row > [class*="col-"],
  .products.row > [class*="col-"] {
    flex-basis: 50%;
    max-width: 50%;
    width: 50%;
  }

  .single-product div.product div.images,
  .single-product div.product div.summary {
    float: none;
    width: 100%;
    padding-right: 0;
    padding-left: 0;
  }

  .single-product div.product div.images {
    margin-bottom: 32px;
  }

  .single-product div.product form.cart {
    gap: 14px;
  }

  .single-product div.product form.cart div.quantity,
  .single-product div.product form.cart .single_add_to_cart_button,
  .single-product div.product form.cart .button {
    flex-basis: 100%;
    width: 100%;
  }

  .woocommerce-checkout form.checkout {
    display: block;
  }

  .woocommerce-checkout .wc-block-components-sidebar-layout {
    display: block;
  }

  .woocommerce-checkout .wc-block-components-main,
  .woocommerce-checkout .wc-block-components-sidebar,
  .woocommerce-checkout .wc-block-components-sidebar-layout__main,
  .woocommerce-checkout .wc-block-components-sidebar-layout__sidebar,
  .woocommerce-checkout .wc-block-checkout__main,
  .woocommerce-checkout .wc-block-checkout__sidebar {
    flex-basis: auto;
    width: 100%;
    max-width: none;
  }

  .woocommerce-checkout #order_review_heading {
    margin-top: 42px;
  }

  .woocommerce .woocommerce-ordering,
  .woocommerce-page .woocommerce-ordering {
    margin: 0 0 24px;
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  body {
    letter-spacing: 0.02em;
  }

  .navbar-brand img {
    max-width: 135px;
  }

  .header-actions i,
  .header-actions svg {
    font-size: 20px;
  }

  .entry-header h1,
  .page-header h1,
  .woocommerce-products-header h1,
  .wp-block-cover h1,
  .category-hero h1,
  .hero-section h1,
  .woocommerce-products-header__title.page-title {
    font-size: 30px;
    letter-spacing: 0.1em;
  }

  .woocommerce .card .woocommerce-loop-product__title,
  .woocommerce-loop-product__title,
  .product-category .woocommerce-loop-category__title {
    font-size: 16px;
    letter-spacing: 0.12em;
  }

  .woocommerce .products.row > [class*="col-"],
  .products.row > [class*="col-"] {
    flex-basis: 100%;
    max-width: 100%;
    width: 100%;
  }
}

/* Refined typography */
.entry-header h1,
.page-header h1,
.woocommerce-products-header h1,
.wp-block-cover h1,
.category-hero h1,
.hero-section h1,
.woocommerce-products-header__title.page-title,
.tmm-home-hero h1 {
  font-family: var(--tmm-font-display);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: 0.005em;
  text-transform: none;
}

.entry-header h1,
.page-header h1,
.woocommerce-products-header h1,
.wp-block-cover h1,
.category-hero h1,
.hero-section h1,
.woocommerce-products-header__title.page-title {
  font-size: clamp(48px, 5vw, 96px);
}

.tmm-home-hero h1 {
  font-size: clamp(58px, 6.5vw, 118px);
}

.woocommerce div.product .product_title,
.single-product .product_title {
  color: var(--tmm-heading);
  font-family: var(--tmm-font-display);
  font-size: clamp(42px, 4.6vw, 78px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: none;
}

.woocommerce .card .woocommerce-loop-product__title,
.woocommerce-loop-product__title,
.product-category .woocommerce-loop-category__title {
  font-family: var(--tmm-font-body);
  font-size: clamp(17px, 1.15vw, 21px);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: 0;
  text-transform: none;
}

.woocommerce .card.product .card-body,
.woocommerce ul.products li.product .card-body {
  text-align: center;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce .card .price,
.card .price,
.price {
  margin-top: 14px;
  font-size: clamp(15px, 1vw, 20px);
  font-weight: 300;
  letter-spacing: 0.015em;
}

.entry-content,
.woocommerce-product-details__short-description,
.woocommerce div.product .summary,
.woocommerce-checkout,
.woocommerce-cart,
.woocommerce-account {
  font-family: var(--tmm-font-body);
  font-weight: 400;
  letter-spacing: 0.025em;
}

.intro-box h1,
.intro-box .h1,
.feature-section h2,
.feature-section .h2 {
  font-family: var(--tmm-font-display);
  font-size: clamp(34px, 3.4vw, 62px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.005em;
  text-transform: none;
}

.woocommerce-checkout .entry-header h1,
.woocommerce-cart .entry-header h1,
.woocommerce-account .entry-header h1 {
  font-family: var(--tmm-font-display);
  font-size: clamp(42px, 4.2vw, 76px);
  font-weight: 500;
  letter-spacing: 0.005em;
  text-transform: none;
}

/* Product card final overrides */
.woocommerce-products-header__title,
.woocommerce-products-header .page-title,
.woocommerce .woocommerce-products-header__title.page-title,
.woocommerce h1.page-title,
.post-type-archive-product h1,
.tax-product_cat h1,
.tax-product_tag h1 {
  color: var(--tmm-heading) !important;
  font-family: var(--tmm-font-display) !important;
  font-size: clamp(42px, 4vw, 72px) !important;
  font-weight: 500 !important;
  line-height: 0.95 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.woocommerce .products .card.product .woocommerce-loop-product__title,
.woocommerce .products .product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce .card .woocommerce-loop-product__title {
  max-width: 24rem;
  margin: 0 auto 10px !important;
  color: #3f4242 !important;
  font-family: var(--tmm-font-body) !important;
  font-size: clamp(15px, 1vw, 18px) !important;
  font-weight: 400 !important;
  line-height: 1.25 !important;
  letter-spacing: 0.005em !important;
  text-transform: none !important;
}

.woocommerce .products .card.product .price,
.woocommerce ul.products li.product .price,
.woocommerce .card.product .price {
  margin: 8px 0 0 !important;
  color: #7e8585 !important;
  font-size: clamp(14px, 0.95vw, 18px) !important;
  font-weight: 300 !important;
  letter-spacing: 0.01em !important;
}

.woocommerce .products .card.product a.button,
.woocommerce .products .card.product .button,
.woocommerce .products .card.product .btn,
.woocommerce ul.products li.product a.button,
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  min-width: 220px !important;
  max-width: 100% !important;
  min-height: 44px !important;
  margin: 18px auto 0 !important;
  padding: 12px 28px !important;
  border: 1px solid #6f6f6f !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #555 !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  box-shadow: none !important;
}

.woocommerce .products .card.product a.button:hover,
.woocommerce .products .card.product .button:hover,
.woocommerce .products .card.product .btn:hover,
.woocommerce ul.products li.product a.button:hover,
.woocommerce ul.products li.product .button:hover,
.woocommerce ul.products li.product .btn:hover {
  border-color: var(--tmm-accent) !important;
  background: var(--tmm-accent) !important;
  color: #fff !important;
}

.woocommerce .products .card.product .out-of-stock,
.woocommerce .products .card.product .stock.out-of-stock,
.woocommerce ul.products li.product .out-of-stock,
.woocommerce ul.products li.product .stock.out-of-stock,
.woocommerce .products .product .out-of-stock,
.woocommerce .products .product .stock.out-of-stock,
.woocommerce .products .outofstock .badge,
.woocommerce .products .outofstock .bg-dark,
.woocommerce .products .outofstock .text-bg-dark,
.woocommerce .products .product.outofstock .badge,
.woocommerce .products .product.outofstock .bg-dark,
.woocommerce .products .product.outofstock .text-bg-dark,
.woocommerce .card.product.outofstock .badge,
.woocommerce .card.product.outofstock .bg-dark,
.woocommerce .card.product.outofstock .text-bg-dark {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  max-width: 280px !important;
  margin: 14px auto 0 !important;
  padding: 9px 14px !important;
  border: 1px solid #d7c6b7 !important;
  border-left: 3px solid var(--tmm-accent) !important;
  border-radius: 0 !important;
  background: #fff !important;
  color: #5f6262 !important;
  font-family: var(--tmm-font-body) !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  line-height: 1.3 !important;
  letter-spacing: 0.02em !important;
  text-align: center !important;
  text-transform: none !important;
  white-space: normal !important;
}

/* Compact archive header final overrides */
.woocommerce-page [class*="breadcrumb"],
.post-type-archive-product [class*="breadcrumb"],
.tax-product_cat [class*="breadcrumb"],
.tax-product_tag [class*="breadcrumb"],
.woocommerce-page nav[aria-label*="breadcrumb" i],
.post-type-archive-product nav[aria-label*="breadcrumb" i],
.tax-product_cat nav[aria-label*="breadcrumb" i],
.tax-product_tag nav[aria-label*="breadcrumb" i] {
  display: none !important;
}

.post-type-archive-product #content.site-content,
.tax-product_cat #content.site-content,
.tax-product_tag #content.site-content {
  padding-top: 18px !important;
}

.post-type-archive-product .woocommerce-products-header,
.tax-product_cat .woocommerce-products-header,
.tax-product_tag .woocommerce-products-header {
  display: block !important;
  min-height: 0 !important;
  margin: 0 0 8px !important;
  padding: 0 !important;
  background: transparent !important;
  text-align: left !important;
}

.post-type-archive-product .woocommerce-products-header__title.page-title,
.tax-product_cat .woocommerce-products-header__title.page-title,
.tax-product_tag .woocommerce-products-header__title.page-title,
.post-type-archive-product h1.page-title,
.tax-product_cat h1.page-title,
.tax-product_tag h1.page-title {
  margin: 0 0 8px !important;
  font-size: clamp(38px, 3.4vw, 62px) !important;
  line-height: 0.95 !important;
}

.post-type-archive-product .woocommerce-result-count,
.tax-product_cat .woocommerce-result-count,
.tax-product_tag .woocommerce-result-count {
  float: none !important;
  margin: 0 !important;
  color: #a19c95 !important;
  font-size: 10px !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  letter-spacing: 0.16em !important;
}

.post-type-archive-product .woocommerce-ordering,
.tax-product_cat .woocommerce-ordering,
.tax-product_tag .woocommerce-ordering {
  float: none !important;
  flex: 0 1 220px;
  margin: 0 !important;
  width: 220px !important;
  max-width: 100% !important;
}

.post-type-archive-product .woocommerce-ordering select,
.tax-product_cat .woocommerce-ordering select,
.tax-product_tag .woocommerce-ordering select,
.post-type-archive-product .woocommerce-ordering .orderby,
.tax-product_cat .woocommerce-ordering .orderby,
.tax-product_tag .woocommerce-ordering .orderby {
  min-height: 32px !important;
  padding: 5px 30px 5px 10px !important;
  border-color: #e3e0dc !important;
  border-radius: 0 !important;
  background-color: #fff !important;
  color: #8f9391 !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  letter-spacing: 0.04em !important;
}

.post-type-archive-product .products,
.tax-product_cat .products,
.tax-product_tag .products,
.post-type-archive-product .woocommerce .products,
.tax-product_cat .woocommerce .products,
.tax-product_tag .woocommerce .products {
  margin-top: 8px !important;
}

.post-type-archive-product .woocommerce-notices-wrapper + .woocommerce-result-count,
.tax-product_cat .woocommerce-notices-wrapper + .woocommerce-result-count,
.tax-product_tag .woocommerce-notices-wrapper + .woocommerce-result-count,
.post-type-archive-product .woocommerce-result-count,
.tax-product_cat .woocommerce-result-count,
.tax-product_tag .woocommerce-result-count {
  display: inline-flex !important;
  align-items: center !important;
}

.post-type-archive-product .woocommerce-result-count,
.tax-product_cat .woocommerce-result-count,
.tax-product_tag .woocommerce-result-count,
.post-type-archive-product .woocommerce-ordering,
.tax-product_cat .woocommerce-ordering,
.tax-product_tag .woocommerce-ordering {
  position: relative;
  z-index: 1;
}

.post-type-archive-product .woocommerce-result-count ~ .woocommerce-ordering,
.tax-product_cat .woocommerce-result-count ~ .woocommerce-ordering,
.tax-product_tag .woocommerce-result-count ~ .woocommerce-ordering {
  margin-left: auto !important;
}

.tmm-product-archive-toolbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: nowrap;
  width: 100%;
  margin: 30px 0 0 !important;
}

.tmm-product-archive-toolbar__count,
.tmm-product-archive-toolbar__sorting {
  display: flex;
  align-items: center;
  min-width: 0;
}

.tmm-product-archive-toolbar__sorting {
  justify-content: flex-end;
  margin-left: 0;
}

.tmm-product-archive-toolbar .woocommerce-result-count {
  margin: 0 !important;
  color: #aaa49d !important;
  font-size: 9px !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  letter-spacing: 0.18em !important;
  white-space: nowrap;
}

.tmm-product-archive-toolbar .woocommerce-ordering {
  margin: 0 !important;
  width: 190px !important;
}

.tmm-product-archive-toolbar .woocommerce-ordering select,
.tmm-product-archive-toolbar .woocommerce-ordering .orderby {
  min-height: 28px !important;
  padding: 4px 28px 4px 9px !important;
  border-color: #ece9e5 !important;
  color: #9a9e9c !important;
  font-size: 10px !important;
  letter-spacing: 0.04em !important;
}

.tmm-product-archive-toolbar + .products,
.tmm-product-archive-toolbar + .woocommerce-notices-wrapper + .products {
  margin-top: 12px !important;
}

.post-type-archive-product .tmm-product-archive-toolbar + .products.row,
.tax-product_cat .tmm-product-archive-toolbar + .products.row,
.tax-product_tag .tmm-product-archive-toolbar + .products.row,
.post-type-archive-product .tmm-product-archive-toolbar + .woocommerce .products.row,
.tax-product_cat .tmm-product-archive-toolbar + .woocommerce .products.row,
.tax-product_tag .tmm-product-archive-toolbar + .woocommerce .products.row {
  margin-top: 12px !important;
}

.post-type-archive-product .tmm-product-archive-toolbar ~ .products,
.tax-product_cat .tmm-product-archive-toolbar ~ .products,
.tax-product_tag .tmm-product-archive-toolbar ~ .products,
.post-type-archive-product .tmm-product-archive-toolbar ~ .products.row,
.tax-product_cat .tmm-product-archive-toolbar ~ .products.row,
.tax-product_tag .tmm-product-archive-toolbar ~ .products.row {
  margin-top: 12px !important;
}

.post-type-archive-product .products.row,
.tax-product_cat .products.row,
.tax-product_tag .products.row,
.post-type-archive-product .woocommerce .products.row,
.tax-product_cat .woocommerce .products.row,
.tax-product_tag .woocommerce .products.row {
  --bs-gutter-y: 36px !important;
  margin-top: 12px !important;
}

/* Product category archive hero */
.tmm-has-category-archive-hero.tax-product_cat #content.site-content {
  padding-top: 0 !important;
}

.tmm-category-archive-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(300px, 38vw, 560px);
  margin: 0 calc(50% - 50vw);
  overflow: hidden;
  background: #f4f4f2;
  color: #fff;
  text-align: center;
}

.tmm-category-archive-hero__image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

.tmm-category-archive-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.18) 0%,
    rgba(0, 0, 0, 0.24) 45%,
    rgba(0, 0, 0, 0.42) 100%
  );
}

.tax-product_cat .tmm-category-archive-hero .tmm-category-archive-hero__content {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  padding: clamp(56px, 8vw, 120px) 24px;
}

.tax-product_cat .tmm-category-archive-hero .tmm-category-archive-hero__title {
  margin: 0 !important;
  color: #fff !important;
  font-family: var(--tmm-font-display) !important;
  font-size: clamp(72px, 9vw, 160px) !important;
  font-weight: 500 !important;
  line-height: 0.9 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.32);
}

.tmm-has-category-archive-hero.tax-product_cat .woocommerce-products-header {
  margin-bottom: 0 !important;
}

@media (max-width: 991.98px) {
  .post-type-archive-product .woocommerce-ordering,
  .tax-product_cat .woocommerce-ordering,
  .tax-product_tag .woocommerce-ordering {
    margin: 0 0 18px !important;
    width: 100% !important;
  }

  .tmm-product-archive-toolbar .woocommerce-ordering {
    margin: 0 !important;
    width: 190px !important;
  }
}

@media (max-width: 767.98px) {
  .tmm-product-archive-toolbar {
    gap: 10px;
    margin: 30px 0 0 !important;
  }

  .tmm-product-archive-toolbar .woocommerce-result-count {
    font-size: 8px !important;
    letter-spacing: 0.12em !important;
  }

  .tmm-product-archive-toolbar .woocommerce-ordering {
    width: 170px !important;
  }

  .tmm-product-archive-toolbar .woocommerce-ordering select,
  .tmm-product-archive-toolbar .woocommerce-ordering .orderby {
    font-size: 9px !important;
  }

  .tmm-category-archive-hero {
    min-height: clamp(260px, 70vw, 420px);
  }

  .tax-product_cat .tmm-category-archive-hero .tmm-category-archive-hero__title {
    font-size: clamp(56px, 17vw, 102px) !important;
  }
}

/* Header action icons */
.header-actions .btn,
.header-actions [class*="btn-outline"],
.header-actions .btn-outline-secondary,
.header-actions .btn-outline-primary {
  --bs-btn-bg: transparent;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-bg: transparent;
  --bs-btn-hover-border-color: transparent;
  --bs-btn-active-bg: transparent;
  --bs-btn-active-border-color: transparent;
  --bs-btn-color: #111;
  --bs-btn-hover-color: var(--tmm-heading);
  --bs-btn-active-color: var(--tmm-heading);
  padding: 0.35rem !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.header-actions .btn:hover,
.header-actions .btn:focus,
.header-actions .btn:active,
.header-actions .btn.show {
  background: transparent !important;
  box-shadow: none !important;
}

/* Keep sale prices in the same understated color as regular prices. */
.woocommerce,
.woocommerce-page {
  --bs-wc-price-sale: currentColor;
}

.woocommerce div.product p.price ins,
.woocommerce div.product span.price ins,
.woocommerce .card .price ins,
.woocommerce ul.products li.product .price ins,
.price ins {
  color: inherit !important;
  font-weight: inherit !important;
  text-decoration: none !important;
}

.woocommerce div.product p.price del,
.woocommerce div.product span.price del,
.woocommerce .card .price del,
.woocommerce ul.products li.product .price del,
.price del {
  color: var(--tmm-muted) !important;
  opacity: 0.6;
}

/* Product grids: two by default, three next to each other on desktop. */
.woocommerce .products.row,
.products.row {
  --bs-gutter-x: clamp(28px, 4vw, 64px) !important;
  --bs-gutter-y: 56px !important;
}

.woocommerce .products.row > [class*="col-"],
.products.row > [class*="col-"],
.woocommerce ul.products[class*="columns-"] > li.product,
.woocommerce-page ul.products[class*="columns-"] > li.product {
  flex: 0 0 50% !important;
  max-width: 50% !important;
  width: 50% !important;
}

@media (min-width: 992px) {
  .woocommerce .products.row > [class*="col-"],
  .products.row > [class*="col-"],
  .woocommerce ul.products[class*="columns-"] > li.product,
  .woocommerce-page ul.products[class*="columns-"] > li.product {
    flex: 0 0 33.333333% !important;
    max-width: 33.333333% !important;
    width: 33.333333% !important;
  }
}

@media (max-width: 767.98px) {
  .woocommerce .products.row > [class*="col-"],
  .products.row > [class*="col-"],
  .woocommerce ul.products[class*="columns-"] > li.product,
  .woocommerce-page ul.products[class*="columns-"] > li.product {
    flex-basis: 100% !important;
    max-width: 100% !important;
    width: 100% !important;
  }
}

/* Product card image carousel */
.woocommerce .card.product .tmm-product-carousel,
.woocommerce ul.products li.product .tmm-product-carousel {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f8f8f6;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

.woocommerce .card.product .tmm-product-carousel.is-dragging,
.woocommerce ul.products li.product .tmm-product-carousel.is-dragging {
  cursor: grabbing;
}

.tmm-product-carousel__track {
  position: absolute;
  inset: 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  height: 100%;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

.tmm-product-carousel.is-dragging .tmm-product-carousel__track {
  transition: none;
}

.woocommerce .card.product .tmm-product-carousel__image,
.woocommerce ul.products li.product .tmm-product-carousel__image,
.tmm-product-carousel__image {
  position: relative !important;
  inset: auto !important;
  z-index: 1;
  flex: 0 0 100%;
  display: block;
  min-width: 100%;
  max-width: none !important;
  width: 100% !important;
  height: 100% !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  object-fit: cover;
  object-position: center center;
  opacity: 1;
  pointer-events: none;
  touch-action: pan-y;
  backface-visibility: hidden;
  transform: translateZ(0);
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

.woocommerce .card.product .tmm-product-carousel__image.is-active,
.woocommerce ul.products li.product .tmm-product-carousel__image.is-active,
.tmm-product-carousel__image.is-active {
  z-index: 1;
  opacity: 1;
}

.tmm-product-carousel__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(98, 98, 98, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  color: var(--tmm-heading);
  font-family: var(--tmm-font-body);
  font-size: 26px;
  font-weight: 300;
  line-height: 1;
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
  cursor: pointer;
  user-select: none;
}

.tmm-product-carousel__nav span {
  display: block;
  margin-top: -2px;
}

.tmm-product-carousel__nav--prev {
  left: 14px;
}

.tmm-product-carousel__nav--next {
  right: 14px;
}

.tmm-product-carousel:hover .tmm-product-carousel__nav,
.tmm-product-carousel:focus-within .tmm-product-carousel__nav {
  opacity: 1;
}

.tmm-product-carousel__nav:hover,
.tmm-product-carousel__nav:focus {
  border-color: rgba(98, 98, 98, 0.42);
  background: rgba(255, 255, 255, 0.88);
  outline: 0;
}

.tmm-product-carousel.is-at-start .tmm-product-carousel__nav--prev,
.tmm-product-carousel.is-at-end .tmm-product-carousel__nav--next {
  opacity: 0 !important;
  pointer-events: none;
}

.tmm-product-carousel__indicator {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  z-index: 2;
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.tmm-product-carousel__indicator-bar {
  display: block;
  flex: 1 1 0;
  max-width: 42px;
  height: 2px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 0 0 1px rgba(98, 98, 98, 0.08);
  transition: background-color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.tmm-product-carousel__indicator-bar.is-active {
  background: rgba(255, 255, 255, 0.95);
  transform: scaleY(1.35);
}

.tmm-product-carousel:hover .tmm-product-carousel__indicator-bar,
.tmm-product-carousel:focus-within .tmm-product-carousel__indicator-bar,
.tmm-product-carousel.is-dragging .tmm-product-carousel__indicator-bar {
  background-color: rgba(98, 98, 98, 0.28);
}

.tmm-product-carousel:hover .tmm-product-carousel__indicator-bar.is-active,
.tmm-product-carousel:focus-within .tmm-product-carousel__indicator-bar.is-active,
.tmm-product-carousel.is-dragging .tmm-product-carousel__indicator-bar.is-active {
  background-color: rgba(98, 98, 98, 0.82);
}

/* Single product image swipe */
.single-product .woocommerce-product-gallery.tmm-single-product-gallery {
  position: relative;
  margin-bottom: 0 !important;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}

.single-product div.product div.images {
  margin-bottom: 0 !important;
  padding-right: 0 !important;
}

.single-product .woocommerce-product-gallery.tmm-single-product-gallery .flex-viewport {
  position: relative;
  aspect-ratio: 1 / 1;
  height: auto !important;
  margin: 0 !important;
  overflow: hidden;
}

.single-product .woocommerce-product-gallery.tmm-single-product-gallery .woocommerce-product-gallery__wrapper {
  height: 100% !important;
  margin-bottom: 0 !important;
}

.single-product .woocommerce-product-gallery .flex-control-thumbs,
.single-product .woocommerce-product-gallery .flex-control-nav,
.single-product .woocommerce-product-gallery ol.flex-control-thumbs {
  display: none !important;
}

.single-product .woocommerce-product-gallery__trigger,
.single-product .zoomImg {
  display: none !important;
}

.single-product .woocommerce-product-gallery.tmm-single-product-gallery.is-dragging {
  cursor: grabbing;
}

.single-product .woocommerce-product-gallery.tmm-single-product-gallery .woocommerce-product-gallery__wrapper {
  will-change: transform;
}

.single-product .woocommerce-product-gallery.tmm-single-product-gallery.is-dragging .woocommerce-product-gallery__wrapper {
  transition: none !important;
}

.single-product .woocommerce-product-gallery.tmm-single-product-gallery .woocommerce-product-gallery__image,
.single-product .woocommerce-product-gallery.tmm-single-product-gallery .woocommerce-product-gallery__image a,
.single-product .woocommerce-product-gallery.tmm-single-product-gallery .woocommerce-product-gallery__image img {
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

.single-product .woocommerce-product-gallery.tmm-single-product-gallery .woocommerce-product-gallery__image {
  display: flex !important;
  align-items: flex-start;
  justify-content: center;
  height: 100% !important;
  min-height: 0 !important;
  overflow: hidden;
  background: #fff;
}

.single-product .woocommerce-product-gallery.tmm-single-product-gallery .woocommerce-product-gallery__image a {
  display: flex !important;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.single-product .woocommerce-product-gallery.tmm-single-product-gallery .woocommerce-product-gallery__image img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain;
  object-position: center top;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.single-product .woocommerce-product-gallery.tmm-single-product-gallery .woocommerce-product-gallery__image a {
  cursor: grab;
}

.single-product .woocommerce-product-gallery.tmm-single-product-gallery.is-dragging .woocommerce-product-gallery__image a {
  cursor: grabbing;
}

.tmm-single-gallery__indicator {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  z-index: 2;
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.tmm-single-gallery__indicator-bar {
  display: block;
  flex: 1 1 0;
  max-width: 52px;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 1px rgba(98, 98, 98, 0.08);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.tmm-single-gallery__indicator-bar.is-active {
  background: rgba(255, 255, 255, 0.96);
  transform: scaleY(1.35);
}

.single-product .woocommerce-product-gallery.tmm-single-product-gallery:hover .tmm-single-gallery__indicator-bar,
.single-product .woocommerce-product-gallery.tmm-single-product-gallery:focus-within .tmm-single-gallery__indicator-bar,
.single-product .woocommerce-product-gallery.tmm-single-product-gallery.is-dragging .tmm-single-gallery__indicator-bar {
  background-color: rgba(98, 98, 98, 0.28);
}

.single-product .woocommerce-product-gallery.tmm-single-product-gallery:hover .tmm-single-gallery__indicator-bar.is-active,
.single-product .woocommerce-product-gallery.tmm-single-product-gallery:focus-within .tmm-single-gallery__indicator-bar.is-active,
.single-product .woocommerce-product-gallery.tmm-single-product-gallery.is-dragging .tmm-single-gallery__indicator-bar.is-active {
  background-color: rgba(98, 98, 98, 0.82);
}

@media (hover: none) {
  .tmm-product-carousel__nav {
    opacity: 0.72;
  }
}

/* Single product: stricter editorial layout */
.single-product #content.site-content {
  padding-top: clamp(10px, 1.8vw, 28px) !important;
  padding-right: clamp(12px, 2.5vw, 48px) !important;
  padding-left: clamp(12px, 2.5vw, 48px) !important;
}

.single-product div.product {
  display: flex !important;
  align-items: flex-start;
  gap: clamp(34px, 5.8vw, 112px);
}

.single-product div.product div.images,
.single-product div.product div.summary {
  float: none !important;
  margin-bottom: clamp(34px, 5vw, 72px) !important;
}

.single-product div.product div.images {
  flex: 0 0 min(54vw, 760px);
  width: auto !important;
  max-width: 760px;
  padding: 0 !important;
}

.single-product div.product div.summary {
  flex: 1 1 390px;
  width: auto !important;
  max-width: 620px;
  padding: clamp(4px, 1.2vw, 18px) 0 0 !important;
}

.single-product .woocommerce-product-gallery,
.single-product .woocommerce-product-gallery *,
.single-product .woocommerce-product-gallery__image,
.single-product .woocommerce-product-gallery__image a,
.single-product .woocommerce-product-gallery__image img,
.single-product .flex-viewport {
  border-radius: 0 !important;
}

.single-product .woocommerce-product-gallery__image img {
  display: block;
  width: 100%;
}

.woocommerce div.product .product_title,
.single-product .product_title {
  margin: 0 0 10px !important;
  color: #333739 !important;
  font-family: var(--tmm-font-body) !important;
  font-size: clamp(18px, 1.35vw, 24px) !important;
  font-weight: 400 !important;
  line-height: 1.32 !important;
  letter-spacing: -0.005em !important;
  text-transform: none !important;
}

.single-product div.product p.price,
.single-product div.product span.price {
  margin: 0 0 24px !important;
  color: #7c8282 !important;
  font-size: clamp(14px, 1vw, 17px) !important;
  font-weight: 300 !important;
  line-height: 1.4 !important;
  letter-spacing: 0.01em !important;
}

.single-product .woocommerce-product-details__short-description,
.single-product div.product .summary,
.single-product div.product .summary p {
  color: #5f6666;
  font-size: 13px !important;
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: 0.015em;
}

.single-product .woocommerce-product-details__short-description {
  margin: 0 0 28px;
}

.single-product .stock {
  margin: 0 0 18px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #7c8282 !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  letter-spacing: 0.02em !important;
}

.single-product div.product form.cart {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  margin: 24px 0 28px !important;
}

.single-product div.product form.cart div.quantity,
.single-product div.product form.cart .single_add_to_cart_button,
.single-product div.product form.cart .button {
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
}

.single-product .quantity .input-group {
  height: 48px !important;
}

.single-product .quantity .input-group-text,
.single-product .quantity .form-control,
.single-product .variations select,
.single-product .form-select,
.single-product .form-control {
  min-height: 48px;
  border: 1px solid #d9dddd !important;
  border-radius: 0 !important;
  background: #fff !important;
  color: #333739 !important;
  font-size: 13px !important;
  font-weight: 300 !important;
  letter-spacing: 0.02em !important;
  box-shadow: none !important;
}

.single-product .quantity .input-group-text {
  min-width: 40px !important;
  padding: 0 12px !important;
}

.single-product div.product form.cart .single_add_to_cart_button,
.single-product div.product form.cart .button {
  min-height: 48px !important;
  border: 1px solid #2f3436 !important;
  border-radius: 0 !important;
  background: #2f3436 !important;
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  letter-spacing: 0.04em !important;
  text-transform: none !important;
}

.single-product div.product form.cart .single_add_to_cart_button:hover,
.single-product div.product form.cart .single_add_to_cart_button:focus,
.single-product div.product form.cart .button:hover,
.single-product div.product form.cart .button:focus {
  border-color: #111 !important;
  background: #111 !important;
  color: #fff !important;
}

.single-product .product_meta {
  margin-top: 22px !important;
  padding-top: 18px !important;
  border-top: 1px solid #e5e5e5 !important;
  color: #8b9292 !important;
  font-size: 11px !important;
  font-weight: 300 !important;
  line-height: 1.8 !important;
  letter-spacing: 0.06em !important;
  text-transform: none !important;
}

.single-product .product_meta a {
  color: inherit !important;
  text-decoration: none;
}

.single-product .woocommerce-tabs,
.single-product .wc-tabs-wrapper {
  clear: both;
  margin-top: 22px !important;
  padding-top: 0 !important;
}

.single-product .woocommerce-tabs ul.tabs,
.single-product .wc-tabs {
  display: flex;
  gap: 0;
  margin: 0 0 22px !important;
  padding: 0 !important;
  border-bottom: 1px solid #dedede;
}

.single-product .woocommerce-tabs ul.tabs::before,
.single-product .woocommerce-tabs ul.tabs li::before,
.single-product .woocommerce-tabs ul.tabs li::after {
  display: none !important;
}

.single-product .woocommerce-tabs ul.tabs li,
.single-product .wc-tabs li {
  flex: 1 1 0;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.single-product .woocommerce-tabs ul.tabs li a,
.single-product .wc-tabs li a {
  display: block;
  padding: 14px 0 12px !important;
  color: #8b9292 !important;
  font-size: 13px !important;
  font-weight: 300 !important;
  letter-spacing: 0.015em !important;
  text-align: left;
  text-transform: none !important;
}

.single-product .woocommerce-tabs ul.tabs li.active a,
.single-product .wc-tabs li.active a {
  color: #333739 !important;
  box-shadow: inset 0 -1px 0 #333739;
}

.single-product .woocommerce-Tabs-panel,
.single-product .woocommerce-tabs .panel {
  margin: 0 !important;
  padding: 0 !important;
  color: #5f6666;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
}

.single-product .woocommerce-Tabs-panel h2,
.single-product .woocommerce-tabs .panel h2 {
  display: none;
}

.single-product .related.products,
.single-product .upsells.products {
  margin-top: clamp(48px, 7vw, 92px) !important;
}

.single-product .related.products > h2,
.single-product .upsells.products > h2 {
  margin-bottom: 24px !important;
  font-family: var(--tmm-font-body) !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  letter-spacing: 0.03em !important;
  text-transform: none !important;
}

@media (max-width: 991.98px) {
  .single-product div.product {
    display: block !important;
  }

  .single-product div.product div.images,
  .single-product div.product div.summary {
    width: 100% !important;
    max-width: none !important;
  }

  .single-product div.product div.summary {
    padding-top: 22px !important;
  }
}

@media (max-width: 575.98px) {
  .single-product #content.site-content {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .single-product div.product div.summary,
  .single-product .related.products,
  .single-product .upsells.products {
    padding-right: 18px !important;
    padding-left: 18px !important;
  }

  .single-product div.product form.cart {
    grid-template-columns: 1fr;
  }
}

/* Single product layout fix: keep only gallery and summary side by side. */
.single-product div.product {
  display: flow-root !important;
}

.single-product div.product div.images {
  float: left !important;
  width: 56% !important;
  max-width: none !important;
  margin: 0 0 clamp(34px, 5vw, 72px) !important;
  padding: 0 !important;
}

.single-product div.product div.summary {
  float: right !important;
  width: 36% !important;
  max-width: 560px !important;
  margin: 0 0 clamp(34px, 5vw, 72px) !important;
  padding: clamp(4px, 1.2vw, 18px) 0 0 !important;
}

.single-product .woocommerce-tabs,
.single-product .wc-tabs-wrapper,
.single-product .related.products,
.single-product .upsells.products {
  clear: both !important;
  float: none !important;
  display: block !important;
  width: 100% !important;
}

.single-product .woocommerce-tabs,
.single-product .wc-tabs-wrapper {
  max-width: 920px;
  margin: clamp(36px, 5vw, 64px) 0 0 auto !important;
}

.single-product .woocommerce-Tabs-panel table,
.single-product .woocommerce-product-attributes {
  width: 100% !important;
  table-layout: auto !important;
}

.single-product .woocommerce-product-attributes th,
.single-product .woocommerce-product-attributes td {
  width: auto !important;
  padding: 12px 0 !important;
  border-color: #dedede !important;
  color: #5f6666;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.45;
  word-break: normal;
}

.single-product .woocommerce-product-attributes th {
  width: 34% !important;
  color: #333739;
  font-weight: 400;
}

@media (max-width: 991.98px) {
  .single-product div.product div.images,
  .single-product div.product div.summary {
    float: none !important;
    width: 100% !important;
    max-width: none !important;
  }

  .single-product .woocommerce-tabs,
  .single-product .wc-tabs-wrapper {
    max-width: none;
    margin-top: 34px !important;
  }
}

/* Single product polish: clearer slide bars and clean tabbar. */
.single-product .flex-viewport .tmm-single-gallery__indicator,
.single-product .tmm-single-gallery__indicator {
  right: 22%;
  bottom: 18px;
  left: 22%;
  gap: 7px;
}

.single-product .tmm-single-gallery__indicator-bar {
  max-width: none;
  height: 3px;
  background: rgba(32, 34, 34, 0.18);
  box-shadow: none;
}

.single-product .tmm-single-gallery__indicator-bar.is-active {
  background: rgba(32, 34, 34, 0.86);
  transform: none;
}

.single-product .woocommerce-tabs,
.single-product .wc-tabs-wrapper {
  max-width: 920px;
  margin: clamp(34px, 5vw, 62px) 0 0 auto !important;
  padding: 0 !important;
}

.single-product .woocommerce-tabs ul.tabs,
.single-product .woocommerce-tabs ul.wc-tabs,
.single-product ul.tabs.wc-tabs,
.single-product .wc-tabs {
  display: grid !important;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, 1fr);
  align-items: end;
  width: 100% !important;
  margin: 0 0 26px !important;
  padding: 0 !important;
  border: 0 !important;
  border-bottom: 1px solid #d8dada !important;
  background: transparent !important;
  list-style: none !important;
  overflow: visible !important;
}

.single-product .woocommerce-tabs ul.tabs::before,
.single-product .woocommerce-tabs ul.tabs::after,
.single-product .woocommerce-tabs ul.wc-tabs::before,
.single-product .woocommerce-tabs ul.wc-tabs::after,
.single-product ul.tabs.wc-tabs::before,
.single-product ul.tabs.wc-tabs::after {
  display: none !important;
  content: none !important;
}

.single-product .woocommerce-tabs ul.tabs li,
.single-product .woocommerce-tabs ul.wc-tabs li,
.single-product ul.tabs.wc-tabs li,
.single-product .wc-tabs li {
  position: relative !important;
  display: block !important;
  float: none !important;
  width: auto !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.single-product .woocommerce-tabs ul.tabs li::before,
.single-product .woocommerce-tabs ul.tabs li::after,
.single-product .woocommerce-tabs ul.wc-tabs li::before,
.single-product .woocommerce-tabs ul.wc-tabs li::after,
.single-product ul.tabs.wc-tabs li::before,
.single-product ul.tabs.wc-tabs li::after {
  display: none !important;
  content: none !important;
}

.single-product .woocommerce-tabs ul.tabs li a,
.single-product .woocommerce-tabs ul.wc-tabs li a,
.single-product ul.tabs.wc-tabs li a,
.single-product .wc-tabs li a {
  display: block !important;
  width: 100% !important;
  padding: 0 0 13px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #8b9292 !important;
  font-family: var(--tmm-font-body) !important;
  font-size: 13px !important;
  font-weight: 300 !important;
  line-height: 1.3 !important;
  letter-spacing: 0.01em !important;
  text-align: left !important;
  text-decoration: none !important;
  text-transform: none !important;
  box-shadow: none !important;
}

.single-product .woocommerce-tabs ul.tabs li.active a,
.single-product .woocommerce-tabs ul.wc-tabs li.active a,
.single-product ul.tabs.wc-tabs li.active a,
.single-product .wc-tabs li.active a {
  color: #333739 !important;
  box-shadow: inset 0 -1px 0 #333739 !important;
}

.single-product .woocommerce-Tabs-panel,
.single-product .woocommerce-tabs .panel {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

.single-product .woocommerce-product-attributes {
  margin: 0 !important;
  border-top: 1px solid #d8dada !important;
}

.single-product .woocommerce-product-attributes tr,
.single-product .woocommerce-product-attributes th,
.single-product .woocommerce-product-attributes td {
  border-right: 0 !important;
  border-left: 0 !important;
  background: transparent !important;
}

@media (max-width: 575.98px) {
  .single-product .flex-viewport .tmm-single-gallery__indicator,
  .single-product .tmm-single-gallery__indicator {
    right: 18px;
    left: 18px;
  }

  .single-product .woocommerce-tabs ul.tabs,
  .single-product .woocommerce-tabs ul.wc-tabs,
  .single-product ul.tabs.wc-tabs,
  .single-product .wc-tabs {
    grid-auto-flow: row;
    grid-auto-columns: auto;
  }
}

/* Single product tabs should align with the full product content, not the summary column. */
.single-product .woocommerce-tabs,
.single-product .wc-tabs-wrapper {
  max-width: none !important;
  margin: clamp(34px, 5vw, 62px) 0 0 !important;
  padding: 0 !important;
}

.single-product .woocommerce-tabs ul.tabs,
.single-product .woocommerce-tabs ul.wc-tabs,
.single-product ul.tabs.wc-tabs,
.single-product .wc-tabs {
  grid-auto-flow: column !important;
  grid-auto-columns: minmax(0, 1fr) !important;
  width: 100% !important;
}

.single-product .woocommerce-tabs ul.tabs li a,
.single-product .woocommerce-tabs ul.wc-tabs li a,
.single-product ul.tabs.wc-tabs li a,
.single-product .wc-tabs li a {
  text-align: left !important;
}

.single-product .woocommerce-Tabs-panel,
.single-product .woocommerce-tabs .panel,
.single-product .woocommerce-product-attributes {
  width: 100% !important;
}

/* Restore the single product out-of-stock message to the quieter text style. */
.woocommerce div.product p.stock.out-of-stock,
.woocommerce div.product .stock.out-of-stock,
.single-product .stock.out-of-stock,
.single-product .out-of-stock {
  display: block !important;
  width: 100% !important;
  max-width: 560px;
  margin: clamp(24px, 4vw, 52px) auto clamp(28px, 4vw, 56px) !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #7c8282 !important;
  font-size: clamp(20px, 1.7vw, 30px) !important;
  font-weight: 300 !important;
  line-height: 1.45 !important;
  letter-spacing: 0.01em !important;
  text-align: left !important;
  text-transform: none !important;
}

/* Homepage category image tiles shortcode */
.tmm-category-tiles {
  display: grid;
  grid-template-columns: repeat(var(--tmm-category-columns, 3), minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 30px);
  width: 100%;
  margin: clamp(36px, 5vw, 72px) auto;
}

.tmm-category-tiles--columns-1 {
  --tmm-category-columns: 1;
}

.tmm-category-tiles--columns-2 {
  --tmm-category-columns: 2;
}

.tmm-category-tiles--columns-3 {
  --tmm-category-columns: 3;
}

.tmm-category-tiles--columns-4 {
  --tmm-category-columns: 4;
}

.tmm-category-tile {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #f4f4f2;
  color: #fff;
  text-decoration: none;
}

.tmm-category-tile__image {
  display: block;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  transform: scale(1.001);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.tmm-category-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.03) 0%,
    rgba(0, 0, 0, 0.08) 48%,
    rgba(0, 0, 0, 0.42) 100%
  );
}

.tmm-category-tile__title {
  position: absolute;
  right: 24px;
  bottom: 31px;
  left: 24px;
  display: inline-flex;
  justify-content: center;
  color: #fff;
  font-family: var(--tmm-font-body);
  font-size: clamp(14px, 1vw, 18px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.01em;
  text-align: center;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.32);
}

.tmm-category-tile__title::after {
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 86px;
  height: 1px;
  content: "";
  background: currentColor;
  transform: translateX(-50%);
}

.tmm-category-tile:hover .tmm-category-tile__image,
.tmm-category-tile:focus .tmm-category-tile__image {
  transform: scale(1.035);
}

.tmm-category-tile:focus {
  outline: 1px solid #333739;
  outline-offset: 4px;
}

@media (max-width: 991.98px) {
  .tmm-category-tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .tmm-category-tiles {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .tmm-category-tile {
    aspect-ratio: 4 / 4.8;
  }
}

/* Keep the single product quantity and add-to-cart button on one row. */
.woocommerce div.product form.cart,
.single-product div.product form.cart {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  margin: 20px 0 28px !important;
}

.woocommerce div.product form.cart::before,
.woocommerce div.product form.cart::after,
.single-product div.product form.cart::before,
.single-product div.product form.cart::after,
.woocommerce div.product form.cart .woocommerce-variation-add-to-cart::before,
.woocommerce div.product form.cart .woocommerce-variation-add-to-cart::after,
.single-product div.product form.cart .woocommerce-variation-add-to-cart::before,
.single-product div.product form.cart .woocommerce-variation-add-to-cart::after {
  display: none !important;
  content: none !important;
}

.woocommerce div.product form.cart.variations_form,
.single-product div.product form.cart.variations_form {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

.woocommerce div.product form.cart .woocommerce-variation-add-to-cart,
.woocommerce div.product form.cart .variations_button,
.single-product div.product form.cart .woocommerce-variation-add-to-cart,
.single-product div.product form.cart .variations_button {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: stretch !important;
  gap: 12px !important;
  width: 100% !important;
}

.woocommerce div.product form.cart > div.quantity,
.single-product div.product form.cart > div.quantity,
.woocommerce div.product form.cart .woocommerce-variation-add-to-cart > div.quantity,
.woocommerce div.product form.cart .variations_button > div.quantity,
.single-product div.product form.cart .woocommerce-variation-add-to-cart > div.quantity,
.single-product div.product form.cart .variations_button > div.quantity {
  flex: 0 0 170px !important;
  width: 170px !important;
  max-width: 170px !important;
  min-width: 0 !important;
  margin: 0 !important;
  float: none !important;
}

.woocommerce div.product form.cart .quantity .input-group,
.single-product div.product form.cart .quantity .input-group {
  width: 100% !important;
  height: 48px !important;
}

.woocommerce div.product form.cart > .single_add_to_cart_button,
.single-product div.product form.cart > .single_add_to_cart_button,
.woocommerce div.product form.cart > .button,
.single-product div.product form.cart > .button,
.woocommerce div.product form.cart .woocommerce-variation-add-to-cart > .single_add_to_cart_button,
.woocommerce div.product form.cart .variations_button > .single_add_to_cart_button,
.single-product div.product form.cart .woocommerce-variation-add-to-cart > .single_add_to_cart_button,
.single-product div.product form.cart .variations_button > .single_add_to_cart_button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 1 1 auto !important;
  width: auto !important;
  min-width: 180px !important;
  max-width: none !important;
  min-height: 48px !important;
  margin: 0 !important;
  float: none !important;
  white-space: nowrap;
}

@media (max-width: 575.98px) {
  .woocommerce div.product form.cart,
  .single-product div.product form.cart,
  .woocommerce div.product form.cart .woocommerce-variation-add-to-cart,
  .woocommerce div.product form.cart .variations_button,
  .single-product div.product form.cart .woocommerce-variation-add-to-cart,
  .single-product div.product form.cart .variations_button {
    flex-direction: column !important;
  }

  .woocommerce div.product form.cart > div.quantity,
  .single-product div.product form.cart > div.quantity,
  .woocommerce div.product form.cart .woocommerce-variation-add-to-cart > div.quantity,
  .woocommerce div.product form.cart .variations_button > div.quantity,
  .single-product div.product form.cart .woocommerce-variation-add-to-cart > div.quantity,
  .single-product div.product form.cart .variations_button > div.quantity {
    flex-basis: auto !important;
    width: 100% !important;
    max-width: none !important;
  }
}

/* Mobile product overview grid: keep two products next to each other. */
@media (max-width: 767.98px) {
  .woocommerce .products.row,
  .products.row {
    --bs-gutter-x: 14px;
    --bs-gutter-y: 32px;
  }

  .woocommerce .products.row > [class*="col-"],
  .products.row > [class*="col-"],
  .woocommerce ul.products[class*="columns-"] > li.product,
  .woocommerce-page ul.products[class*="columns-"] > li.product {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    width: 50% !important;
  }

  .woocommerce .products .card.product .card-body,
  .woocommerce ul.products li.product .card-body {
    min-width: 0;
    padding-right: 4px !important;
    padding-left: 4px !important;
  }

  .woocommerce .products .card.product,
  .woocommerce ul.products li.product {
    min-width: 0;
    overflow: hidden;
  }

  .woocommerce .products .card.product .woocommerce-loop-product__title,
  .woocommerce .products .product .woocommerce-loop-product__title,
  .woocommerce ul.products li.product .woocommerce-loop-product__title,
  .woocommerce .card .woocommerce-loop-product__title {
    max-width: 100% !important;
    margin-bottom: 7px !important;
    font-size: clamp(13px, 3.6vw, 15px) !important;
    line-height: 1.22 !important;
  }

  .woocommerce .products .card.product .price,
  .woocommerce ul.products li.product .price,
  .woocommerce .card.product .price {
    margin-top: 6px !important;
    font-size: clamp(12px, 3.3vw, 14px) !important;
  }

  .woocommerce .products .card.product a.button,
  .woocommerce .products .card.product .button,
  .woocommerce .products .card.product .btn,
  .woocommerce ul.products li.product a.button,
  .woocommerce ul.products li.product .button,
  .woocommerce ul.products li.product .btn {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 40px !important;
    margin-top: 12px !important;
    padding: 10px 6px !important;
    font-size: 10px !important;
    line-height: 1 !important;
    letter-spacing: 0.12em !important;
    white-space: nowrap;
  }
}

@media (max-width: 575.98px) {
  .woocommerce .products.row,
  .products.row {
    --bs-gutter-x: 10px;
    --bs-gutter-y: 28px;
  }
}

/* Category banner injected between product rows. */
.woocommerce .products.row > .tmm-loop-category-banner-col,
.products.row > .tmm-loop-category-banner-col,
.woocommerce ul.products[class*="columns-"] > .tmm-loop-category-banner-col,
.woocommerce-page ul.products[class*="columns-"] > .tmm-loop-category-banner-col {
  flex: 0 0 100% !important;
  max-width: 100% !important;
  width: 100% !important;
}

.tmm-loop-category-banner-col--mobile {
  display: none !important;
}

.tmm-loop-category-banner-col {
  margin: clamp(14px, 2.8vw, 34px) 0 clamp(18px, 3.2vw, 44px);
}

.tmm-loop-category-banner {
  position: relative;
  display: block;
  width: 100%;
  min-height: clamp(230px, 28vw, 430px);
  aspect-ratio: 16 / 5.8;
  overflow: hidden;
  background: #f4f4f2;
  color: #fff;
  text-decoration: none;
}

.tmm-loop-category-banner__image {
  display: block;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  transform: scale(1.001);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.tmm-loop-category-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.02) 0%,
    rgba(0, 0, 0, 0.12) 52%,
    rgba(0, 0, 0, 0.48) 100%
  );
}

.tmm-loop-category-banner__title {
  position: absolute;
  right: clamp(22px, 3vw, 48px);
  bottom: clamp(28px, 3.5vw, 54px);
  left: clamp(22px, 3vw, 48px);
  display: inline-flex;
  justify-content: center;
  color: #fff;
  font-family: var(--tmm-font-body);
  font-size: clamp(17px, 1.35vw, 24px);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.01em;
  text-align: center;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.34);
}

.tmm-loop-category-banner__title::after {
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 96px;
  height: 1px;
  content: "";
  background: currentColor;
  transform: translateX(-50%);
}

.tmm-loop-category-banner:hover,
.tmm-loop-category-banner:focus {
  color: #fff;
}

.tmm-loop-category-banner:hover .tmm-loop-category-banner__image,
.tmm-loop-category-banner:focus .tmm-loop-category-banner__image {
  transform: scale(1.035);
}

.tmm-loop-category-banner:focus {
  outline: 1px solid #333739;
  outline-offset: 4px;
}

@media (max-width: 767.98px) {
  .tmm-loop-category-banner-col {
    margin: 10px 0 24px;
  }

  .tmm-loop-category-banner {
    min-height: 210px;
    aspect-ratio: 4 / 3;
  }

  .tmm-loop-category-banner__title {
    bottom: 30px;
    font-size: clamp(15px, 4.5vw, 20px);
  }
}

@media (max-width: 991.98px) {
  .tmm-loop-category-banner-col--desktop {
    display: none !important;
  }

  .tmm-loop-category-banner-col--mobile {
    display: block !important;
  }
}

/* Final archive spacing override: keep toolbar close to the first product row. */
body.post-type-archive-product .tmm-product-archive-toolbar,
body.tax-product_cat .tmm-product-archive-toolbar,
body.tax-product_tag .tmm-product-archive-toolbar {
  justify-content: center !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 28px 0 22px !important;
}

body.post-type-archive-product .tmm-product-archive-toolbar + .row.products,
body.tax-product_cat .tmm-product-archive-toolbar + .row.products,
body.tax-product_tag .tmm-product-archive-toolbar + .row.products,
body.post-type-archive-product .tmm-product-archive-toolbar ~ .row.products,
body.tax-product_cat .tmm-product-archive-toolbar ~ .row.products,
body.tax-product_tag .tmm-product-archive-toolbar ~ .row.products,
body.post-type-archive-product .woocommerce .row.products,
body.tax-product_cat .woocommerce .row.products,
body.tax-product_tag .woocommerce .row.products {
  --bs-gutter-y: 18px !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

body.post-type-archive-product .tmm-products-row,
body.tax-product_cat .tmm-products-row,
body.tax-product_tag .tmm-products-row {
  --bs-gutter-x: clamp(6px, 0.8vw, 12px) !important;
  --bs-gutter-y: 64px !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

body.post-type-archive-product .tmm-products-row > [class*="col-"],
body.tax-product_cat .tmm-products-row > [class*="col-"],
body.tax-product_tag .tmm-products-row > [class*="col-"] {
  margin-top: var(--bs-gutter-y) !important;
}

@media (min-width: 992px) {
  body.post-type-archive-product .tmm-products-row > [class*="col-"]:nth-child(-n+3),
  body.tax-product_cat .tmm-products-row > [class*="col-"]:nth-child(-n+3),
  body.tax-product_tag .tmm-products-row > [class*="col-"]:nth-child(-n+3) {
    margin-top: 0 !important;
  }
}

@media (max-width: 991.98px) {
  body.post-type-archive-product .tmm-products-row > [class*="col-"]:nth-child(-n+2),
  body.tax-product_cat .tmm-products-row > [class*="col-"]:nth-child(-n+2),
  body.tax-product_tag .tmm-products-row > [class*="col-"]:nth-child(-n+2) {
    margin-top: 0 !important;
  }
}

@media (max-width: 575.98px) {
  body.post-type-archive-product .tmm-products-row,
  body.tax-product_cat .tmm-products-row,
  body.tax-product_tag .tmm-products-row {
    --bs-gutter-y: 44px !important;
  }

  body.post-type-archive-product .tmm-products-row > [class*="col-"]:nth-child(-n+2),
  body.tax-product_cat .tmm-products-row > [class*="col-"]:nth-child(-n+2),
  body.tax-product_tag .tmm-products-row > [class*="col-"]:nth-child(-n+2) {
    margin-top: 0 !important;
  }
}

body.post-type-archive-product .tmm-products-row > .tmm-loop-category-banner-col,
body.tax-product_cat .tmm-products-row > .tmm-loop-category-banner-col,
body.tax-product_tag .tmm-products-row > .tmm-loop-category-banner-col {
  margin-top: 0 !important;
}

/* Final product detail cleanup. */
.single-product .stock.in-stock,
.single-product .sku_wrapper,
.single-product .additional_information_tab,
.single-product #tab-additional_information {
  display: none !important;
}

.single-product .tmm-more-from-brand {
  margin: 18px 0 0;
}

.single-product .tmm-more-from-brand__link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 0 4px;
  border-bottom: 1px solid currentColor;
  color: #5f6262;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
}

.single-product .tmm-more-from-brand__link:hover,
.single-product .tmm-more-from-brand__link:focus {
  color: var(--tmm-accent);
}

/* Product overview: images/titles stay clickable, but action buttons are hidden. */
.woocommerce .products .card.product a.button,
.woocommerce .products .card.product .button,
.woocommerce .products .card.product .btn,
.woocommerce ul.products li.product a.button,
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .btn {
  display: none !important;
}

/* Hide image slide arrows; swipe and indicator bars remain active. */
.tmm-product-carousel__nav,
.single-product .woocommerce-product-gallery .flex-direction-nav {
  display: none !important;
}

/* Final product grid density override. */
.woocommerce .row.products,
.woocommerce .products.row,
.products.row,
body.post-type-archive-product .woocommerce .row.products,
body.tax-product_cat .woocommerce .row.products,
body.tax-product_tag .woocommerce .row.products,
body.post-type-archive-product .tmm-products-row,
body.tax-product_cat .tmm-products-row,
body.tax-product_tag .tmm-products-row {
  --bs-gutter-x: 8px !important;
}

.woocommerce .row.products > [class*="col-"]:not(.tmm-loop-category-banner-col),
.woocommerce .products.row > [class*="col-"]:not(.tmm-loop-category-banner-col),
.products.row > [class*="col-"]:not(.tmm-loop-category-banner-col),
body.post-type-archive-product .tmm-products-row > [class*="col-"]:not(.tmm-loop-category-banner-col),
body.tax-product_cat .tmm-products-row > [class*="col-"]:not(.tmm-loop-category-banner-col),
body.tax-product_tag .tmm-products-row > [class*="col-"]:not(.tmm-loop-category-banner-col) {
  padding-right: 3px !important;
  padding-left: 3px !important;
}

@media (min-width: 1200px) {
  .woocommerce .row.products,
  .woocommerce .products.row,
  .products.row,
  body.post-type-archive-product .tmm-products-row,
  body.tax-product_cat .tmm-products-row,
  body.tax-product_tag .tmm-products-row {
    --bs-gutter-x: 6px !important;
  }
}

/* Mobile single product: keep image and content away from the screen edge. */
@media (max-width: 767.98px) {
  .single-product #content.site-content {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }

  .single-product #main > .row {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .single-product #main > .row > [class*="col-"],
  .single-product div.product div.images,
  .single-product div.product div.summary,
  .single-product .woocommerce-tabs,
  .single-product .wc-tabs-wrapper,
  .single-product .related.products,
  .single-product .upsells.products {
    max-width: 100% !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
    box-sizing: border-box;
  }
}

/* Single product: hide default WooCommerce category/tag meta. */
.single-product .product_meta,
.single-product .posted_in,
.single-product .tagged_as {
  display: none !important;
}

/* Final mobile related/upsell products carousel override. */
@media (max-width: 767.98px) {
  .single-product .related.products,
  .single-product .upsells.products {
    overflow: hidden !important;
  }

  .single-product .related.products .row.products,
  .single-product .related.products .products.row,
  .single-product .related.products .tmm-products-row,
  .single-product .upsells.products .row.products,
  .single-product .upsells.products .products.row,
  .single-product .upsells.products .tmm-products-row {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    width: auto !important;
    max-width: none !important;
    margin-right: -16px !important;
    margin-left: 0 !important;
    padding: 0 16px 12px 0 !important;
    scrollbar-width: none;
  }

  .single-product .related.products .row.products::-webkit-scrollbar,
  .single-product .related.products .products.row::-webkit-scrollbar,
  .single-product .related.products .tmm-products-row::-webkit-scrollbar,
  .single-product .upsells.products .row.products::-webkit-scrollbar,
  .single-product .upsells.products .products.row::-webkit-scrollbar,
  .single-product .upsells.products .tmm-products-row::-webkit-scrollbar {
    display: none;
  }

  .single-product .related.products .row.products > [class*="col-"],
  .single-product .related.products .products.row > [class*="col-"],
  .single-product .related.products .tmm-products-row > [class*="col-"],
  .single-product .upsells.products .row.products > [class*="col-"],
  .single-product .upsells.products .products.row > [class*="col-"],
  .single-product .upsells.products .tmm-products-row > [class*="col-"] {
    flex: 0 0 82vw !important;
    width: 82vw !important;
    max-width: 82vw !important;
    margin-top: 0 !important;
    padding-right: 10px !important;
    padding-left: 0 !important;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
}

/* Final cart/checkout notices: replace red/green defaults with TMM neutrals. */
.woocommerce-cart .woocommerce-message,
.woocommerce-cart .woocommerce-info,
.woocommerce-cart .woocommerce-error,
.woocommerce-cart .alert-success,
.woocommerce-cart .alert-danger,
.woocommerce-cart .alert-info,
.woocommerce-checkout .woocommerce-message,
.woocommerce-checkout .woocommerce-info,
.woocommerce-checkout .woocommerce-error,
.woocommerce-checkout .alert-success,
.woocommerce-checkout .alert-danger,
.woocommerce-checkout .alert-info,
.woocommerce-cart .wc-block-components-notice-banner,
.woocommerce-checkout .wc-block-components-notice-banner {
  border: 1px solid var(--tmm-border) !important;
  border-left: 3px solid var(--tmm-accent) !important;
  border-radius: 0 !important;
  background: #f8f6f3 !important;
  color: var(--tmm-heading) !important;
  box-shadow: none !important;
}

.woocommerce-cart .woocommerce-error,
.woocommerce-cart .alert-danger,
.woocommerce-checkout .woocommerce-error,
.woocommerce-checkout .alert-danger,
.woocommerce-cart .wc-block-components-notice-banner.is-error,
.woocommerce-checkout .wc-block-components-notice-banner.is-error {
  border-left-color: #5f5b55 !important;
  background: #f5f2ee !important;
}

.woocommerce-cart .woocommerce-message::before,
.woocommerce-cart .woocommerce-info::before,
.woocommerce-cart .woocommerce-error::before,
.woocommerce-checkout .woocommerce-message::before,
.woocommerce-checkout .woocommerce-info::before,
.woocommerce-checkout .woocommerce-error::before {
  color: var(--tmm-accent) !important;
}

.woocommerce-cart .woocommerce-error::before,
.woocommerce-checkout .woocommerce-error::before {
  color: #5f5b55 !important;
}

.woocommerce-cart .wc-block-components-notice-banner > svg,
.woocommerce-checkout .wc-block-components-notice-banner > svg {
  background-color: var(--tmm-accent) !important;
  fill: #fff !important;
}

.woocommerce-cart .wc-block-components-notice-banner.is-error > svg,
.woocommerce-checkout .wc-block-components-notice-banner.is-error > svg {
  background-color: #5f5b55 !important;
}

.woocommerce-cart .woocommerce-message a,
.woocommerce-cart .woocommerce-info a,
.woocommerce-cart .woocommerce-error a,
.woocommerce-cart .alert-success a,
.woocommerce-cart .alert-danger a,
.woocommerce-cart .alert-info a,
.woocommerce-checkout .woocommerce-message a,
.woocommerce-checkout .woocommerce-info a,
.woocommerce-checkout .woocommerce-error a,
.woocommerce-checkout .alert-success a,
.woocommerce-checkout .alert-danger a,
.woocommerce-checkout .alert-info a,
.woocommerce-cart .wc-block-components-notice-banner a,
.woocommerce-checkout .wc-block-components-notice-banner a {
  color: var(--tmm-heading) !important;
  text-decoration: underline;
  text-underline-offset: 3px;
}
/* Absolute final WooCommerce notices override. */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-error,
.woocommerce-messages .woocommerce-message,
.woocommerce-messages .woocommerce-info,
.woocommerce-messages .woocommerce-error,
.cart-empty.woocommerce-info,
#offcanvas-cart .woocommerce-info,
#offcanvas-cart .woocommerce-message,
#offcanvas-cart .woocommerce-error,
#offcanvas-cart .woocommerce-mini-cart__empty-message,
.woocommerce-mini-cart__empty-message,
.wc-block-components-notice-banner,
.wc-block-components-notice-banner.is-success,
.wc-block-components-notice-banner.is-info,
.wc-block-components-notice-banner.is-error {
  border: 1px solid var(--tmm-border) !important;
  border-left: 3px solid var(--tmm-accent) !important;
  border-radius: 0 !important;
  background: #f8f6f3 !important;
  color: var(--tmm-heading) !important;
  box-shadow: none !important;
}

.woocommerce-error,
.woocommerce .woocommerce-error,
.woocommerce-messages .woocommerce-error,
#offcanvas-cart .woocommerce-error,
.wc-block-components-notice-banner.is-error {
  border-left-color: #5f5b55 !important;
  background: #f5f2ee !important;
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
  color: var(--tmm-accent) !important;
}

.woocommerce-error::before {
  color: #5f5b55 !important;
}

.wc-block-components-notice-banner > svg {
  background-color: var(--tmm-accent) !important;
  fill: #fff !important;
}

.wc-block-components-notice-banner.is-error > svg {
  background-color: #5f5b55 !important;
}

.woocommerce-message a,
.woocommerce-info a,
.woocommerce-error a,
.wc-block-components-notice-banner a,
#offcanvas-cart .woocommerce-mini-cart__empty-message a {
  color: var(--tmm-heading) !important;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.wc-block-components-notice-banner svg,
.woocommerce-message svg,
.woocommerce-info svg,
.woocommerce-error svg {
  color: var(--tmm-accent) !important;
  fill: currentColor !important;
}

.woocommerce-message .button,
.woocommerce-info .button,
.woocommerce-error .button,
.wc-block-components-notice-banner .button,
.wc-block-components-notice-banner button {
  border-color: var(--tmm-heading) !important;
  background: transparent !important;
  color: var(--tmm-heading) !important;
}
/* EOF header action order: account/login, search, cart, menu. */
.header-actions .account-toggler {
  order: 10 !important;
}

.header-actions .search-toggler {
  order: 11 !important;
}

.header-actions .cart-toggler,
.header-actions .back-to-cart {
  order: 12 !important;
}

.header-actions .nav-toggler {
  order: 13 !important;
}

/* EOF cart/checkout color cleanup for Bootstrap utility classes. */
.woocommerce-cart .text-bg-success,
.woocommerce-cart .text-bg-danger,
.woocommerce-cart .bg-success,
.woocommerce-cart .bg-danger,
.woocommerce-checkout .text-bg-success,
.woocommerce-checkout .text-bg-danger,
.woocommerce-checkout .bg-success,
.woocommerce-checkout .bg-danger,
#offcanvas-cart .text-bg-success,
#offcanvas-cart .text-bg-danger,
#offcanvas-cart .bg-success,
#offcanvas-cart .bg-danger {
  background-color: #111 !important;
  color: #fff !important;
}

.woocommerce-cart .btn-success,
.woocommerce-cart .btn-danger,
.woocommerce-checkout .btn-success,
.woocommerce-checkout .btn-danger,
#offcanvas-cart .btn-success,
#offcanvas-cart .btn-danger {
  border-color: #626262 !important;
  background-color: #626262 !important;
  color: #fff !important;
}

.woocommerce-cart .woocommerce-invalid .input-text,
.woocommerce-cart .woocommerce-invalid select,
.woocommerce-checkout .woocommerce-invalid .input-text,
.woocommerce-checkout .woocommerce-invalid select,
.woocommerce-cart .wc-block-components-validation-error,
.woocommerce-checkout .wc-block-components-validation-error {
  border-color: #8a6f5f !important;
  color: #8a6f5f !important;
}
.woocommerce .card.product,
.woocommerce ul.products li.product {
  position: relative;
}

.tmm-favorite-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--tmm-heading);
  font-family: var(--tmm-font-body);
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
}

.tmm-favorite-button:hover,
.tmm-favorite-button:focus {
  color: #111;
  outline: 1px solid currentColor;
  outline-offset: 3px;
}

.tmm-favorite-button__icon::before {
  content: "\2661";
  display: block;
  font-size: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1;
}

.tmm-favorite-button.is-favorite .tmm-favorite-button__icon::before {
  content: "\2665";
}

.tmm-favorite-button--loop {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 7;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.82);
  color: #111;
  backdrop-filter: blur(5px);
}

.tmm-favorite-button--loop .tmm-favorite-button__label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.tmm-favorite-button--single {
  min-height: 36px;
  margin: 2px 0 20px;
  padding: 0 0 5px;
  border-bottom: 1px solid currentColor;
  color: #5f6262;
}

.tmm-favorite-button--single .tmm-favorite-button__icon::before {
  font-size: 20px;
}
/* EOF favorites header/offcanvas. */
.header-actions .favorites-toggler {
  order: 12 !important;
}

.header-actions .cart-toggler,
.header-actions .back-to-cart {
  order: 13 !important;
}

.header-actions .nav-toggler {
  order: 14 !important;
}

.tmm-header-favorites-icon::before {
  content: "\2661";
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}

.favorites-toggler:hover .tmm-header-favorites-icon::before,
.favorites-toggler:focus .tmm-header-favorites-icon::before {
  content: "\2665";
}

.tmm-favorite-count {
  position: absolute;
  top: 3px;
  right: 1px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  line-height: 17px;
  text-align: center;
  letter-spacing: 0;
}

.tmm-favorites-offcanvas {
  color: var(--tmm-text);
  font-family: var(--tmm-font-body);
}

.tmm-favorites-offcanvas .offcanvas-header {
  border-bottom: 1px solid var(--tmm-border);
}

.tmm-favorites-offcanvas .offcanvas-title {
  color: var(--tmm-heading);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.tmm-favorites-empty {
  margin: 0;
  color: var(--tmm-muted);
  font-size: 13px;
  letter-spacing: 0.05em;
}

.tmm-favorites-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tmm-favorites-list__item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--tmm-border);
}

.tmm-favorites-list__link {
  color: var(--tmm-heading);
  font-size: 13px;
  line-height: 1.45;
  letter-spacing: 0.04em;
}

.tmm-favorites-list__remove {
  width: 30px;
  height: 30px;
  border: 0;
  background: transparent;
  color: var(--tmm-muted);
  font-size: 22px;
  line-height: 1;
}

/* EOF standard pages. */
body.page:not(.home):not(.woocommerce-page) #content.tmm-standard-page {
  max-width: none !important;
  padding: clamp(38px, 5vw, 72px) clamp(18px, 4vw, 72px) clamp(58px, 7vw, 104px) !important;
  background: #fff;
}

body.page:not(.home):not(.woocommerce-page) .tmm-page-shell {
  width: min(100%, 1160px);
  margin: 0 auto;
}

body.page:not(.home):not(.woocommerce-page) .tmm-page-header {
  display: block !important;
  min-height: 0 !important;
  margin: 0 auto clamp(24px, 3vw, 42px) !important;
  padding: 0 !important;
  background: transparent !important;
  text-align: center;
}

body.page:not(.home):not(.woocommerce-page) .tmm-page-header .entry-title {
  margin: 0;
  color: var(--tmm-heading) !important;
  font-family: var(--tmm-font-display) !important;
  font-size: clamp(34px, 3.6vw, 58px) !important;
  font-weight: 500 !important;
  line-height: 0.96 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

body.page:not(.home):not(.woocommerce-page) .tmm-page-header .post-thumbnail,
body.page:not(.home):not(.woocommerce-page) .tmm-page-header img {
  display: block;
  width: 100%;
  max-height: 560px;
  margin-top: clamp(26px, 4vw, 52px);
  object-fit: cover;
}

body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content {
  width: min(100%, 880px);
  margin: 0 auto;
  color: var(--tmm-text);
  font-family: var(--tmm-font-body);
  font-size: clamp(13px, 0.86vw, 15px);
  font-weight: 300;
  line-height: 1.72;
  letter-spacing: 0.025em;
}

body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content:has(.wp-block-table),
body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content--has-table {
  width: min(100%, 1180px);
}

body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content > *:first-child {
  margin-top: 0;
}

body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content > *:last-child {
  margin-bottom: 0;
}

body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content p,
body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content ul,
body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content ol {
  margin-bottom: 1.05rem;
}

body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content h1,
body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content h2,
body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content h3,
body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content h4,
body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content h5,
body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content h6 {
  margin: clamp(24px, 3vw, 38px) 0 12px;
  color: var(--tmm-heading);
  font-family: var(--tmm-font-body);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content h1 {
  font-size: clamp(22px, 2.2vw, 34px);
}

body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content h2 {
  font-size: clamp(18px, 1.55vw, 24px);
}

body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content h3 {
  font-size: clamp(15px, 1.15vw, 19px);
}

body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content h4 {
  font-size: clamp(13px, 0.98vw, 16px);
  letter-spacing: 0.13em;
}

body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content h5,
body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content h6 {
  font-size: 12px;
  letter-spacing: 0.14em;
}

body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content a {
  color: var(--tmm-heading);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content .wp-block-image,
body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content .wp-block-gallery {
  margin: clamp(30px, 4vw, 56px) 0;
}

body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content .wp-block-image img {
  width: 100%;
  height: auto;
  border-radius: 0;
}

body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content .wp-block-table {
  position: relative;
  left: 50%;
  width: min(calc(100vw - 36px), 1180px);
  max-width: min(calc(100vw - 36px), 1180px);
  margin: clamp(28px, 4vw, 56px) auto;
  overflow: visible;
  transform: translateX(-50%);
}

body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content--has-table > table {
  position: relative;
  left: 50%;
  width: min(calc(100vw - 36px), 1180px) !important;
  max-width: min(calc(100vw - 36px), 1180px) !important;
  margin: clamp(28px, 4vw, 56px) auto;
  transform: translateX(-50%);
}

body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content .wp-block-table table,
body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content--has-table table {
  display: table !important;
  width: 100% !important;
  max-width: 100% !important;
  table-layout: fixed !important;
  border-collapse: collapse !important;
  border: 1px solid rgba(98, 98, 98, 0.45) !important;
}

body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content .wp-block-table td,
body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content .wp-block-table th,
body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content--has-table td,
body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content--has-table th {
  width: 50% !important;
  min-width: 0 !important;
  max-width: 50% !important;
  padding: clamp(20px, 2.4vw, 36px) !important;
  border: 1px solid rgba(98, 98, 98, 0.35) !important;
  color: var(--tmm-text) !important;
  font-family: var(--tmm-font-body) !important;
  font-size: clamp(14px, 1vw, 17px) !important;
  font-weight: 300 !important;
  line-height: 1.72 !important;
  letter-spacing: 0.04em !important;
  text-align: left !important;
  vertical-align: top !important;
  white-space: normal !important;
  overflow: visible !important;
  overflow-wrap: anywhere !important;
  word-break: normal !important;
  text-overflow: clip !important;
}

body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content .wp-block-table td::first-line,
body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content--has-table td::first-line {
  color: var(--tmm-heading);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content .wp-block-table td strong,
body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content .wp-block-table th,
body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content--has-table td strong,
body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content--has-table th {
  color: var(--tmm-heading);
  font-size: clamp(14px, 1vw, 17px);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content .wp-block-table p,
body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content--has-table td p,
body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content--has-table th p {
  margin: 0 !important;
  white-space: normal !important;
  overflow: visible !important;
  overflow-wrap: anywhere !important;
  word-break: normal !important;
  text-overflow: clip !important;
}

body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content .wp-block-table p + p,
body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content--has-table td p + p,
body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content--has-table th p + p {
  margin-top: 1rem !important;
}

body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content .wp-block-button__link,
body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content .btn {
  min-height: 48px;
  padding: 14px 28px;
  border: 1px solid var(--tmm-heading) !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--tmm-heading) !important;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-decoration: none;
  text-transform: uppercase;
}

body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content .wp-block-button__link:hover,
body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content .btn:hover {
  background: var(--tmm-heading) !important;
  color: #fff !important;
}

body.page:not(.home):not(.woocommerce-page) .tmm-page-footer {
  width: min(100%, 880px);
  margin: 48px auto 0;
}

@media (max-width: 767.98px) {
  body.page:not(.home):not(.woocommerce-page) #content.tmm-standard-page {
    padding: 30px 18px 58px !important;
  }

  body.page:not(.home):not(.woocommerce-page) .tmm-page-header {
    margin-bottom: 28px !important;
  }

  body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content,
  body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content:has(.wp-block-table),
  body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content--has-table {
    width: 100%;
  }

  body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content .wp-block-table,
  body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content--has-table > table {
    left: auto;
    width: 100% !important;
    max-width: 100% !important;
    transform: none;
  }

  body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content .wp-block-table table,
  body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content .wp-block-table tbody,
  body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content .wp-block-table tr,
  body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content .wp-block-table td,
  body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content .wp-block-table th,
  body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content--has-table table,
  body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content--has-table tbody,
  body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content--has-table tr,
  body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content--has-table td,
  body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content--has-table th {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content .wp-block-table tr + tr,
  body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content--has-table tr + tr {
    border-top: 1px solid rgba(98, 98, 98, 0.35);
  }

  body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content .wp-block-table td,
  body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content .wp-block-table th,
  body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content--has-table td,
  body.page:not(.home):not(.woocommerce-page) .tmm-page-entry-content--has-table th {
    border-right: 0;
    border-left: 0;
  }
}

/* EOF footer menus. */
.bootscore-footer-columns {
  background: #fff !important;
  padding: 56px 0 48px !important;
  border-top: 1px solid var(--tmm-border);
}

.bootscore-footer-columns .container {
  max-width: 100% !important;
  padding-right: clamp(20px, 4vw, 72px) !important;
  padding-left: clamp(20px, 4vw, 72px) !important;
}

.tmm-footer-menus {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(36px, 8vw, 120px);
  width: 100%;
}

.tmm-footer-menu-column {
  min-width: 0;
}

.tmm-footer-menu-title {
  margin: 0 0 34px;
  color: var(--tmm-heading);
  font-family: var(--tmm-font-body);
  font-size: clamp(17px, 1.45vw, 25px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.tmm-footer-menu__list {
  display: grid;
  gap: 21px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tmm-footer-widget,
.tmm-footer-widget p {
  margin: 0;
}

.tmm-footer-widget + .tmm-footer-widget {
  margin-top: 18px;
}

.tmm-footer-widget-title {
  margin: 0 0 14px;
  color: var(--tmm-heading);
  font-family: var(--tmm-font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tmm-footer-menu__list a,
.tmm-footer-widget a {
  color: var(--tmm-text);
  font-family: var(--tmm-font-body);
  font-size: clamp(13px, 1vw, 17px);
  font-weight: 300;
  line-height: 1.45;
  letter-spacing: 0.12em;
  text-decoration: none;
}

.tmm-footer-menu__list a:hover,
.tmm-footer-menu__list a:focus,
.tmm-footer-widget a:hover,
.tmm-footer-widget a:focus {
  color: #111;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.bootscore-footer-info {
  background: #fff !important;
  border-top: 1px solid var(--tmm-border) !important;
}

@media (max-width: 767.98px) {
  .bootscore-footer-columns {
    padding: 38px 0 36px !important;
  }

  .tmm-footer-menus {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .tmm-footer-menu-title {
    margin-bottom: 18px;
    font-size: 16px;
  }

  .tmm-footer-menu__list {
    gap: 14px;
  }
}

/* EOF refined header action icons. */
.header-actions {
  gap: clamp(10px, 1.2vw, 16px) !important;
}

.header-actions .account-toggler,
.header-actions .search-toggler,
.header-actions .favorites-toggler,
.header-actions .cart-toggler,
.header-actions .back-to-cart {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  min-height: 34px !important;
  padding: 0 !important;
  color: #111 !important;
  opacity: 0.78;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.header-actions .account-toggler:hover,
.header-actions .account-toggler:focus,
.header-actions .search-toggler:hover,
.header-actions .search-toggler:focus,
.header-actions .favorites-toggler:hover,
.header-actions .favorites-toggler:focus,
.header-actions .cart-toggler:hover,
.header-actions .cart-toggler:focus,
.header-actions .back-to-cart:hover,
.header-actions .back-to-cart:focus {
  color: #111 !important;
  opacity: 1;
}

.header-actions .account-toggler .fa-user,
.header-actions .search-toggler .fa-magnifying-glass,
.header-actions .cart-toggler .fa-bag-shopping,
.header-actions .back-to-cart .fa-bag-shopping,
.header-actions .tmm-header-favorites-icon {
  position: relative;
  display: block !important;
  flex: 0 0 24px;
  width: 24px !important;
  height: 24px !important;
  margin: 0 !important;
  color: currentColor !important;
  font-size: 0 !important;
  line-height: 1 !important;
}

.header-actions .account-toggler .fa-user::before,
.header-actions .account-toggler .fa-user::after,
.header-actions .search-toggler .fa-magnifying-glass::before,
.header-actions .search-toggler .fa-magnifying-glass::after,
.header-actions .cart-toggler .fa-bag-shopping::before,
.header-actions .cart-toggler .fa-bag-shopping::after,
.header-actions .back-to-cart .fa-bag-shopping::before,
.header-actions .back-to-cart .fa-bag-shopping::after {
  position: absolute;
  display: block;
  box-sizing: border-box;
  color: currentColor;
  font-family: inherit !important;
}

.header-actions .account-toggler .fa-user::before {
  content: "" !important;
  top: 3px;
  left: 8px;
  width: 8px;
  height: 8px;
  border: 1.8px solid currentColor;
  border-radius: 50%;
}

.header-actions .account-toggler .fa-user::after {
  content: "" !important;
  top: 14px;
  left: 5px;
  width: 14px;
  height: 8px;
  border: 1.8px solid currentColor;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
}

.header-actions .search-toggler .fa-magnifying-glass::before {
  content: "" !important;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  border: 1.9px solid currentColor;
  border-radius: 50%;
}

.header-actions .search-toggler .fa-magnifying-glass::after {
  content: "" !important;
  top: 16px;
  left: 16px;
  width: 9px;
  height: 1.9px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: left center;
}

.header-actions .cart-toggler .fa-bag-shopping::before,
.header-actions .back-to-cart .fa-bag-shopping::before {
  content: "" !important;
  top: 7px;
  left: 4px;
  width: 16px;
  height: 15px;
  border: 1.8px solid currentColor;
  border-radius: 1px;
}

.header-actions .cart-toggler .fa-bag-shopping::after,
.header-actions .back-to-cart .fa-bag-shopping::after {
  content: "" !important;
  top: 3px;
  left: 7px;
  width: 10px;
  height: 8px;
  border: 1.8px solid currentColor;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
}

.header-actions .tmm-header-favorites-icon::before {
  content: none !important;
  display: none !important;
}

.header-actions .tmm-header-favorites-icon::after {
  content: none !important;
  display: none !important;
}

.favorites-toggler:hover .tmm-header-favorites-icon::before,
.favorites-toggler:focus .tmm-header-favorites-icon::before,
.favorites-toggler:hover .tmm-header-favorites-icon::after,
.favorites-toggler:focus .tmm-header-favorites-icon::after {
  content: none !important;
}

.header-actions .tmm-header-favorites-svg {
  display: block;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: scale(0.9);
}

.header-actions .cart-content-count,
.header-actions .tmm-favorite-count {
  top: 1px !important;
  right: -2px !important;
  left: auto !important;
  min-width: 15px;
  height: 15px;
  padding: 0 4px;
  font-size: 9px;
  line-height: 15px;
  transform: none !important;
}

@media (max-width: 767.98px) {
  .header-actions {
    gap: 8px !important;
  }

  .header-actions .account-toggler,
  .header-actions .search-toggler,
  .header-actions .favorites-toggler,
  .header-actions .cart-toggler,
  .header-actions .back-to-cart {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
  }
}

/* EOF brands menu shortcode. */
.tmm-brands-menu {
  width: 100%;
}

.tmm-brands-menu__list {
  display: grid;
  gap: 14px 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tmm-brands-menu--columns .tmm-brands-menu__list {
  grid-template-columns: repeat(var(--tmm-brands-menu-columns, 3), minmax(0, 1fr));
}

.tmm-brands-menu__link {
  color: var(--tmm-text);
  font-family: var(--tmm-font-body);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: 0.12em;
  text-decoration: none;
}

.tmm-brands-menu__link:hover,
.tmm-brands-menu__link:focus {
  color: var(--tmm-heading);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.tmm-brands-menu--collapsed:not(.is-expanded) .tmm-brands-menu__item--extra {
  display: none;
}

.tmm-brands-menu__toggle {
  display: inline-flex;
  align-items: center;
  margin: 20px 0 0;
  padding: 0 0 4px;
  border: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
  color: var(--tmm-heading);
  font-family: var(--tmm-font-body);
  font-size: 10px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.tmm-brands-menu__toggle:hover,
.tmm-brands-menu__toggle:focus {
  color: #111;
}

.tmm-brands-menu__toggle-less {
  display: none;
}

.tmm-brands-menu.is-expanded .tmm-brands-menu__toggle-more {
  display: none;
}

.tmm-brands-menu.is-expanded .tmm-brands-menu__toggle-less {
  display: inline;
}

@media (max-width: 767.98px) {
  .tmm-brands-menu--columns .tmm-brands-menu__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
