/*
Theme Name: ecomofa
Theme URI: https://ecomofa.de/
Author: Faustmann
Description: Freizeit-orientiertes WordPress/WooCommerce Theme fuer ecomofa mit Magazin-Startseite, Shop und sachlichem Technik-Hub.
Version: 0.1.30
Text Domain: ecomofa
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
*/

@font-face {
  font-family: "Klavika";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("https://www.thax.de/wp-content/uploads/Klavika-light.woff") format("woff");
}

@font-face {
  font-family: "Klavika";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("https://www.thax.de/wp-content/uploads/klavika-regular.woff") format("woff");
}

@font-face {
  font-family: "Klavika";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("https://www.thax.de/wp-content/uploads/klavika-medium.woff") format("woff");
}

@font-face {
  font-family: "Klavika";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("https://www.thax.de/wp-content/uploads/klavika-bold.woff") format("woff");
}

:root {
  --em-green: #12a138;
  --em-green-dark: #0f7f2e;
  --em-blue: #006cc8;
  --em-blue-dark: #004f93;
  --em-red: #e9001e;
  --em-ink: #111;
  --em-muted: #5e5e5e;
  --em-line: #ddd;
  --em-line-strong: #b2b3b5;
  --em-paper: #f8f9fa;
  --em-sun: #fbc000;
  --em-coral: #e1081d;
  --em-white: #fff;
  --em-shadow: 0 5px 20px rgba(0, 0, 0, .1);
  --em-font-head: Klavika, "Segoe UI", Arial, sans-serif;
  --em-font-body: "Open Sans", Arial, Helvetica, sans-serif;
  --em-wrap: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--em-ink);
  background: var(--em-white);
  font-family: var(--em-font-body);
  font-size: 16px;
  line-height: 1.7;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.em-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(248, 249, 250, .96);
  border-bottom: 1px solid var(--em-line);
  backdrop-filter: blur(12px);
}

.em-header__inner {
  width: min(var(--em-wrap), calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.em-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.em-brand__mark {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: var(--em-red);
  color: #fff;
  font-family: var(--em-font-head);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.em-brand__wordmark {
  color: #111;
  font-family: var(--em-font-head);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.em-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
}

.em-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.em-nav a {
  color: #111;
  font-family: var(--em-font-head);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
}

.em-nav a:hover,
.em-nav .current-menu-item > a {
  color: var(--em-blue);
}

.em-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.em-button,
.button,
.wp-block-button__link,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--em-red);
  border-radius: 8px;
  background: var(--em-red);
  color: var(--em-white);
  font-family: var(--em-font-body);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.em-button:hover,
.button:hover,
.wp-block-button__link:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  transform: translateY(-2px);
  background: #111;
  border-color: #111;
  color: var(--em-white);
  box-shadow: var(--em-shadow);
}

.em-button--light {
  background: var(--em-white);
  color: #111;
  border-color: var(--em-line-strong);
}

.em-button--ghost {
  background: transparent;
  color: #111;
  border-color: var(--em-line);
}

.em-cart-link {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--em-line);
  border-radius: 8px;
  color: #111;
  text-decoration: none;
}

.em-header .em-cart-link {
  display: none;
}

.em-hero {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  padding: clamp(52px, 8vw, 98px) 20px clamp(46px, 7vw, 80px);
  color: var(--em-white);
  background:
    linear-gradient(90deg, rgba(17, 17, 17, .88) 0%, rgba(17, 17, 17, .72) 44%, rgba(17, 17, 17, .24) 78%, rgba(17, 17, 17, .06) 100%),
    var(--em-hero-image, url("assets/ecomofa-hero.png")) center top / cover no-repeat;
}

.em-hero__inner,
.em-wrap {
  width: min(var(--em-wrap), 100%);
  margin: 0 auto;
}

.em-hero__copy {
  max-width: 730px;
  padding-top: clamp(24px, 7vw, 92px);
}

.em-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--em-red);
  font-family: var(--em-font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.em-eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--em-red);
  box-shadow: 0 0 0 7px rgba(233, 0, 30, .12);
}

h1,
h2,
h3 {
  font-family: var(--em-font-head);
  font-weight: 500;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.em-hero h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(44px, 7vw, 82px);
  line-height: .98;
  letter-spacing: 0;
}

.em-lead {
  max-width: 690px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .84);
  font-size: clamp(18px, 2vw, 22px);
}

.em-hero__actions,
.em-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.em-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.em-tags li {
  min-height: 34px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 8px;
  background: rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .88);
  font-size: 14px;
  font-weight: 500;
}

.em-section {
  padding: clamp(62px, 8vw, 100px) 20px;
}

.em-section--paper {
  background: var(--em-paper);
}

.em-section__head {
  max-width: 840px;
  margin-bottom: clamp(30px, 5vw, 48px);
}

.em-section__head h2,
.em-page-title {
  margin-bottom: 16px;
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.05;
  letter-spacing: 0;
}

.em-section__head p,
.em-muted {
  color: var(--em-muted);
  font-size: 17px;
}

.em-category-grid {
  display: grid;
  grid-template-columns: 1.16fr .92fr .92fr;
  gap: 16px;
}

.em-card {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--em-line-strong);
  border-radius: 15px;
  background: var(--em-white);
  box-shadow: none;
  overflow: hidden;
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.em-card:hover {
  transform: translateY(-2px);
  border-color: transparent;
  box-shadow: var(--em-shadow);
}

.em-card--feature {
  border-left: 2px solid var(--em-green);
  background: var(--em-white);
}

.em-card__media {
  display: flex;
  align-items: center;
  min-height: 48px;
  margin-bottom: 18px;
}

.em-card__media img {
  width: auto;
  max-width: 210px;
  max-height: 42px;
  object-fit: contain;
}

.em-partner-logo {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: #111;
  font-family: var(--em-font-head);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.em-partner-logo::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--em-red);
}

.em-partner-logo--uebler::before {
  background: var(--em-green);
}

.em-partner-logo--kamei::before {
  background: var(--em-blue);
}

.em-partner-logo--streetbooster {
  font-size: 20px;
}

.em-label {
  margin-bottom: 14px;
  color: var(--em-red);
  font-family: var(--em-font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.em-card h3 {
  margin-bottom: 10px;
  font-size: 25px;
  line-height: 1.16;
}

.em-card p {
  color: var(--em-muted);
}

.em-mini-list {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  color: #2f3d4f;
  font-size: 15px;
  font-weight: 400;
}

.em-mini-list li {
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 10px;
  align-items: baseline;
}

.em-mini-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--em-red);
}

.em-magazine-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: 18px;
}

.em-magazine-feature,
.em-info-panel {
  min-height: 360px;
  padding: clamp(24px, 4vw, 34px);
  border-radius: 15px;
  background:
    linear-gradient(135deg, rgba(17, 17, 17, .76), rgba(17, 17, 17, .18)),
    var(--em-magazine-image, url("assets/lissy-titel.png")) center / cover no-repeat;
  color: var(--em-white);
  overflow: hidden;
}

.em-info-panel {
  background: var(--em-white);
  color: var(--em-ink);
  border: 1px solid var(--em-line-strong);
  box-shadow: none;
}

.em-post-grid,
.em-product-grid,
.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.em-post-card,
.woocommerce ul.products li.product {
  padding: 18px;
  border: 1px solid var(--em-line);
  border-radius: 8px;
  background: var(--em-white);
  box-shadow: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.em-post-card:hover,
.woocommerce ul.products li.product:hover {
  border-color: transparent;
  box-shadow: var(--em-shadow);
}

.em-post-card img,
.woocommerce ul.products li.product img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 14px;
}

.em-post-card h3,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.2;
}

.em-post-card a {
  text-decoration: none;
}

.em-hub-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.em-hub-tile {
  min-height: 160px;
  padding: 20px;
  border: 1px solid var(--em-line-strong);
  border-left: 2px solid var(--em-blue);
  border-radius: 15px;
  background: var(--em-white);
  text-decoration: none;
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.em-hub-tile:hover {
  transform: translateY(-2px);
  border-color: transparent;
  box-shadow: var(--em-shadow);
}

.em-hub-tile strong {
  display: block;
  margin-bottom: 8px;
  font-size: 19px;
  line-height: 1.2;
}

.em-hub-tile span {
  color: var(--em-muted);
  font-size: 15px;
}

.em-split {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(340px, 1fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: start;
}

.em-footer {
  padding: 34px 20px;
  background: #111;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
}

.em-footer__inner {
  width: min(var(--em-wrap), 100%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.em-footer a {
  color: inherit;
  text-decoration: none;
}

.em-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.em-content {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(52px, 7vw, 84px) 0;
}

.em-content--catalog {
  width: min(var(--em-wrap), calc(100% - 40px));
}

.em-content img {
  border-radius: 8px;
}

.em-notice {
  padding: 15px 17px;
  border: 1px solid var(--em-line-strong);
  border-left: 2px solid var(--em-blue);
  border-radius: 8px;
  background: var(--em-paper);
  color: #111;
}

.woocommerce .woocommerce-breadcrumb {
  width: min(var(--em-wrap), calc(100% - 40px));
  margin: 24px auto 0;
  color: var(--em-muted);
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  margin-bottom: 24px;
}

.woocommerce div.product {
  width: min(var(--em-wrap), calc(100% - 40px));
  margin: clamp(42px, 6vw, 72px) auto;
}

.woocommerce div.product .product_title {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
}

.woocommerce div.product div.images img {
  border-radius: 8px;
}

.em-shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.em-shop-toolbar .woocommerce-result-count,
.em-shop-toolbar .woocommerce-ordering {
  margin: 0;
}

.em-shop-toolbar .em-notice {
  flex-basis: 100%;
}

.em-product-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(24px, 4vw, 38px);
}

.em-product-filters a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 18px;
  border: 1px solid var(--em-line-strong);
  border-radius: 8px;
  background: #fff;
  color: var(--em-ink);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.em-product-filters a:hover,
.em-product-filters a.is-active {
  border-color: var(--em-blue);
  background: var(--em-blue);
  color: #fff;
}

.em-product-finder {
  display: grid;
  grid-template-columns: minmax(220px, .32fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: start;
  margin-top: clamp(28px, 5vw, 46px);
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--em-line-strong);
  border-radius: 8px;
  background: #fff;
}

.em-product-finder h2 {
  margin: 0;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.1;
}

.em-product-finder .em-label {
  margin-bottom: 8px;
}

.em-product-filters--finder,
.em-product-filters--catalog {
  margin-top: 0;
}

.em-product-filters--catalog {
  margin-bottom: 0;
}

.em-product-filters--catalog a {
  min-height: 40px;
  padding: 0 15px;
  font-size: 14px;
}

.em-product-filters a:not(.is-active):hover {
  color: var(--em-blue);
  background: #fff;
}

.em-product-archive .em-wrap {
  width: min(var(--em-wrap), 100%);
}

.em-catalog-filter {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
  padding: 20px;
  border: 1px solid var(--em-line-strong);
  border-radius: 8px;
  background: #fff;
}

.em-catalog-filter .em-label {
  margin-bottom: 0;
}

.em-product-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.em-product-card__media {
  display: block;
  overflow: hidden;
  border-radius: 6px;
  background: var(--em-paper);
}

.em-product-card__media img {
  margin: 0;
}

.em-product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
}

.em-product-card__title {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}

.em-product-card__title a {
  text-decoration: none;
}

.em-product-card__meta,
.em-product-meta-list {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--em-muted);
  font-size: 14px;
}

.em-product-card__meta strong,
.em-product-meta-list strong {
  color: var(--em-ink);
}

.em-product-card__excerpt {
  color: var(--em-muted);
  font-size: 15px;
}

.em-product-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.em-button--small {
  min-height: 42px;
  padding: 0 14px;
  font-size: 14px;
}

.em-product-single {
  width: min(var(--em-wrap), calc(100% - 40px));
  margin: clamp(42px, 6vw, 72px) auto;
}

.em-product-single__grid {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.em-product-single__media {
  padding: 18px;
  border: 1px solid var(--em-line);
  border-radius: 8px;
  background: var(--em-white);
}

.em-product-single__media .woocommerce-product-gallery {
  margin-bottom: 0;
}

.em-product-single__summary {
  display: grid;
  gap: 18px;
}

.em-product-single__summary .woocommerce-breadcrumb {
  width: auto;
  margin: 0;
}

.em-product-single__summary .product_title {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
}

.em-product-status {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border: 1px solid var(--em-line-strong);
  border-radius: 8px;
  background: var(--em-paper);
  color: var(--em-ink);
  font-size: 14px;
  font-weight: 600;
}

.em-product-status::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--em-green);
}

.em-product-status--request::before {
  background: var(--em-sun);
}

.em-inquiry-panel {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 4vw, 28px);
  border: 1px solid var(--em-line-strong);
  border-left: 2px solid var(--em-red);
  border-radius: 8px;
  background: var(--em-paper);
}

.em-inquiry-panel h2,
.em-inquiry-panel h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
}

.em-product-details {
  display: grid;
  gap: 22px;
  margin-top: clamp(38px, 7vw, 76px);
}

.em-product-details__block {
  padding-top: 24px;
  border-top: 1px solid var(--em-line);
}

.em-product-details table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.em-product-details th,
.em-product-details td {
  padding: 10px 0;
  border-bottom: 1px solid var(--em-line);
  text-align: left;
  vertical-align: top;
}

.em-product-details th {
  width: 34%;
  padding-right: 16px;
  color: var(--em-ink);
}

/* Product catalogue, inspired by data-sheet pages. */
.woocommerce ul.products,
.woocommerce ul.products.columns-2,
.woocommerce ul.products.columns-3,
.woocommerce ul.products.columns-4 {
  display: grid !important;
  align-items: stretch;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.woocommerce ul.products li.product {
  float: none !important;
  clear: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0;
  border-color: #e6e8eb;
  background: #fff;
}

.woocommerce ul.products li.product a img {
  width: 100%;
  height: 340px;
  margin: 0;
  padding: 14px;
  object-fit: contain;
  border-radius: 8px 8px 0 0;
  background: #f3f5f7;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .price {
  padding-right: 18px;
  padding-left: 18px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  min-height: 58px;
  margin: 18px 0 8px;
  font-size: 20px;
  line-height: 1.2;
}

.woocommerce ul.products li.product .price {
  display: block;
  padding-bottom: 18px;
}

.woocommerce ul.products li.product:hover {
  border-color: #c8ced6;
  box-shadow: 0 12px 28px rgba(17, 24, 39, .08);
}

.em-product-card {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 0;
}

.em-product-card__media {
  display: grid;
  place-items: center;
  min-height: 340px;
  border-radius: 8px 8px 0 0;
  background: #f3f5f7;
}

.em-product-card__media img,
.woocommerce ul.products li.product .em-product-card__media img {
  width: 100%;
  height: 340px;
  min-height: 0;
  margin: 0;
  object-fit: contain;
  padding: 14px;
  border-radius: 0;
  mix-blend-mode: multiply;
}

.em-product-card__body {
  min-height: 280px;
  padding: 22px;
  gap: 12px;
}

.em-product-card .em-label {
  margin-bottom: 2px;
  color: var(--em-blue);
}

.em-product-card__title {
  max-width: none;
  font-size: 25px;
  line-height: 1.12;
}

.em-product-card__meta {
  display: grid;
  gap: 7px;
  padding-top: 12px;
  border-top: 1px solid var(--em-line);
}

.em-product-card__meta li {
  min-height: 0;
  display: block;
}

.em-product-card__price,
.em-product-price {
  color: var(--em-ink);
  font-family: var(--em-font-head);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
}

.em-product-card__price {
  margin-top: 2px;
  font-size: 25px;
}

.em-price-note {
  color: var(--em-muted);
  font-size: 13px;
}

.em-product-card__excerpt {
  min-height: 0;
  max-width: none;
  font-size: 15px;
}

.em-product-card__link {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  color: var(--em-red);
  font-weight: 700;
  text-decoration: none;
}

.em-product-card__link::after {
  content: ">";
  margin-left: 8px;
}

.em-product-single {
  width: 100%;
  margin: 0;
}

.em-product-breadcrumb {
  width: min(var(--em-wrap), calc(100% - 40px));
  margin: 22px auto 0;
}

.em-product-breadcrumb .woocommerce-breadcrumb {
  width: auto;
  margin: 0;
  font-size: 13px;
}

.em-product-stage {
  width: min(1320px, calc(100% - 40px));
  margin: 22px auto 0;
  background: #fff;
  border-bottom: 1px solid var(--em-line);
}

.em-product-stage__copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 760px;
  padding: clamp(28px, 5vw, 58px) 0 clamp(34px, 5vw, 62px);
  background: #fff;
}

.em-product-stage__copy .em-eyebrow {
  color: var(--em-blue);
}

.em-product-stage__copy .em-eyebrow::before {
  background: var(--em-blue);
  box-shadow: 0 0 0 7px rgba(0, 108, 200, .12);
}

.em-product-stage__copy .product_title {
  max-width: 640px;
  margin: 0 0 18px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: .98;
}

.em-product-lead {
  max-width: 580px;
  color: #4d5661;
  font-size: 18px;
}

.em-product-price-block {
  display: grid;
  gap: 4px;
  width: fit-content;
  margin-top: 22px;
  padding: 16px 20px;
  border: 1px solid var(--em-line);
  background: #f8f9fa;
}

.em-product-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  background: var(--em-line);
  border: 1px solid var(--em-line);
}

.em-product-facts li {
  display: grid;
  gap: 4px;
  min-height: 78px;
  padding: 14px;
  background: #fff;
}

.em-product-facts span {
  color: var(--em-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.em-product-facts strong {
  font-size: 15px;
  line-height: 1.25;
}

.em-product-stage__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.em-product-note {
  max-width: 560px;
  margin-top: 16px;
  color: var(--em-muted);
  font-size: 14px;
}

.em-product-nav {
  position: sticky;
  z-index: 20;
  top: 76px;
  display: flex;
  justify-content: center;
  gap: clamp(18px, 4vw, 56px);
  margin-top: 0;
  padding: 16px 20px;
  border-top: 1px solid var(--em-line);
  border-bottom: 1px solid var(--em-line);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
}

.em-product-nav a {
  color: var(--em-ink);
  font-family: var(--em-font-head);
  font-weight: 600;
  text-decoration: none;
}

.em-product-nav a:hover {
  color: var(--em-blue);
}

.em-product-details {
  display: block;
  width: min(var(--em-wrap), calc(100% - 40px));
  margin: 0 auto;
}

.em-product-details__block {
  padding: clamp(56px, 8vw, 96px) 0;
  border-top: 0;
}

.em-product-details__block + .em-product-details__block {
  border-top: 1px solid var(--em-line);
}

.em-product-details__block h2,
.em-product-service h2 {
  margin-bottom: 26px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

.em-product-details__block--main h3 {
  margin: 0 0 18px;
  font-size: clamp(28px, 4vw, 44px);
}

.em-product-details__block--main ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.em-product-details__block--main li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  color: #29313a;
}

.em-product-details__block--main li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 10px;
  border-radius: 50%;
  background: var(--em-red);
}

.em-product-features {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .74fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: start;
}

.em-product-features__gallery {
  display: grid;
  place-items: center;
  padding: clamp(20px, 4vw, 38px);
  background: #f3f5f7;
}

.em-product-features__gallery .woocommerce-product-gallery {
  width: 100% !important;
  max-width: 460px;
  margin: 0 auto !important;
}

.em-product-features__gallery img {
  width: 100%;
  max-height: 430px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.em-product-features__gallery .flex-control-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
}

.em-product-features__gallery .flex-control-thumbs li {
  width: 68px;
  list-style: none;
  border: 1px solid var(--em-line);
  background: #fff;
}

.em-product-details table {
  overflow: hidden;
  border: 1px solid var(--em-line);
  border-radius: 8px;
  background: #fff;
}

.em-product-details th,
.em-product-details td {
  padding: 14px 18px;
}

.em-product-details tr:nth-child(odd) th,
.em-product-details tr:nth-child(odd) td {
  background: #f8f9fa;
}

.em-product-service {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin: 0 0 clamp(58px, 8vw, 100px);
  padding: clamp(28px, 5vw, 46px);
  background: #111;
  color: #fff;
}

.em-product-service .em-muted {
  color: rgba(255, 255, 255, .72);
}

.em-product-service__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.em-product-service .em-button--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, .42);
}

.em-single-product-page {
  padding-bottom: clamp(56px, 8vw, 96px);
}

.woocommerce div.product.em-uebler-product,
.em-uebler-product {
  width: min(1720px, calc(100% - 40px));
  margin: 0 auto;
}

.em-uebler-product .em-product-breadcrumb {
  width: 100%;
  margin: 22px 0 0;
}

.em-uebler-product__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 5vw, 60px);
  align-items: end;
  width: min(1720px, calc(100% - 40px));
  margin: clamp(32px, 5vw, 60px) auto clamp(22px, 4vw, 34px);
}

.em-uebler-product__head .product_title {
  max-width: 860px;
  margin: 0;
  font-size: clamp(40px, 5vw, 70px);
  line-height: 1;
}

.em-uebler-product__buybox {
  display: grid;
  gap: 12px;
  justify-items: end;
}

.em-product-hero-gallery {
  width: 100%;
  margin: 0 auto clamp(54px, 7vw, 76px);
  background: #f3f5f7;
}

.em-uebler-features,
.em-uebler-usage-image,
.em-uebler-specs {
  width: min(1720px, calc(100% - 40px));
  margin-right: auto;
  margin-left: auto;
}

.em-uebler-features {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: center;
  margin-bottom: clamp(52px, 7vw, 78px);
  padding: clamp(42px, 6vw, 86px);
  background: #f3f5f7;
}

.em-uebler-features h2 {
  margin-bottom: 22px;
  font-size: clamp(30px, 3.5vw, 46px);
  line-height: 1.08;
}

.em-feature-list {
  color: #2f3442;
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.55;
}

.em-feature-list ul {
  display: grid;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.em-feature-list li {
  position: relative;
  padding-left: 32px;
}

.em-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--em-red);
}

.em-feature-list p:last-child,
.em-feature-list ul:last-child {
  margin-bottom: 0;
}

.em-uebler-features__image {
  display: grid;
  place-items: center;
  margin: 0;
}

.em-uebler-features__image img {
  width: 100%;
  max-height: 620px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.em-uebler-usage-image {
  margin-bottom: clamp(54px, 7vw, 78px);
}

.em-uebler-usage-image img {
  width: 100%;
  height: min(62vh, 700px);
  min-height: 440px;
  object-fit: cover;
}

.em-product-hero-gallery .woocommerce-product-gallery {
  float: none !important;
  width: 100% !important;
  max-width: none;
  margin: 0 !important;
}

.em-product-hero-gallery .woocommerce-product-gallery__wrapper {
  margin: 0;
}

.em-product-hero-gallery .woocommerce-product-gallery__image {
  display: grid !important;
  place-items: center;
  background: #f3f5f7;
}

.em-product-hero-gallery .woocommerce-product-gallery__image img {
  width: 100%;
  height: min(68vh, 660px);
  min-height: 480px;
  object-fit: contain;
  padding: clamp(18px, 3vw, 40px);
  mix-blend-mode: multiply;
}

.em-product-hero-gallery .flex-control-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: min(var(--em-wrap), 100%);
  margin: 0 auto;
  padding: 14px 0 18px;
  list-style: none;
}

.em-product-hero-gallery .flex-control-thumbs li {
  width: 82px;
  border: 1px solid var(--em-line);
  background: #fff;
}

.em-product-hero-gallery .flex-control-thumbs img {
  width: 100%;
  height: 70px;
  object-fit: contain;
  padding: 6px;
}

.em-uebler-techhub,
.em-uebler-advice {
  width: min(var(--em-wrap), 100%);
  margin-right: auto;
  margin-left: auto;
}

.em-uebler-specs__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 8px;
  color: #2f3442;
  font-size: 19px;
  line-height: 1.45;
}

.em-uebler-specs__table th,
.em-uebler-specs__table td {
  padding: 22px 20px;
  text-align: left;
  vertical-align: middle;
}

.em-uebler-specs__table thead th {
  background: #cfcfcf;
  font-weight: 700;
}

.em-uebler-specs__table tbody tr:nth-child(odd) th,
.em-uebler-specs__table tbody tr:nth-child(odd) td {
  background: #efefef;
}

.em-uebler-specs__table tbody tr:nth-child(even) th,
.em-uebler-specs__table tbody tr:nth-child(even) td {
  background: #f8f8f8;
}

.em-uebler-specs__table th {
  width: 48%;
  font-weight: 400;
}

.em-spec-name,
.em-spec-note {
  display: block;
  text-align: left;
}

.em-spec-name {
  font-weight: 500;
}

.em-spec-note {
  margin-top: 6px;
  color: #4f5664;
  font-size: .88em;
  line-height: 1.45;
}

.em-uebler-techhub,
.em-uebler-advice {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: clamp(34px, 5vw, 56px);
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--em-line-strong);
  border-radius: 8px;
  background: #fff;
}

.em-uebler-techhub {
  border-left: 2px solid var(--em-blue);
}

.em-uebler-techhub h2,
.em-uebler-advice h2 {
  margin-bottom: 10px;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.1;
}

.em-uebler-techhub .em-muted,
.em-uebler-advice .em-muted {
  margin-bottom: 0;
}

.woocommerce div.product.em-uebler-product .related,
.em-uebler-product .related,
.woocommerce div.product .woocommerce-tabs,
.woocommerce div.product .upsells,
.woocommerce div.product .related {
  display: none !important;
}

.em-product-page {
  padding-bottom: clamp(56px, 8vw, 96px);
}

.em-product-page__article,
.em-product-page__head,
.em-product-feature-band,
.em-product-usage-image,
.em-product-specs,
.em-product-techhub {
  width: min(1720px, calc(100% - 40px));
  margin-right: auto;
  margin-left: auto;
}

.em-product-page__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 5vw, 60px);
  align-items: end;
  margin-top: clamp(34px, 5vw, 62px);
  margin-bottom: clamp(24px, 4vw, 40px);
}

.em-product-page__head .product_title {
  max-width: 900px;
  margin: 0;
  font-size: clamp(40px, 5vw, 70px);
  line-height: 1;
}

.em-product-page__action {
  display: grid;
  gap: 12px;
  justify-items: end;
}

.em-product-feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: center;
  margin-bottom: clamp(52px, 7vw, 78px);
  padding: clamp(42px, 6vw, 86px);
  background: #f3f5f7;
}

.em-product-feature-band h2 {
  margin-bottom: 22px;
  font-size: clamp(30px, 3.5vw, 46px);
  line-height: 1.08;
}

.em-product-feature-band__image {
  display: grid;
  place-items: center;
  margin: 0;
}

.em-product-feature-band__image img {
  width: 100%;
  max-height: 620px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.em-product-usage-image {
  margin-bottom: clamp(54px, 7vw, 78px);
}

.em-product-usage-image img {
  width: 100%;
  height: min(62vh, 700px);
  min-height: 440px;
  object-fit: cover;
}

.em-product-specs__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 8px;
  color: #2f3442;
  font-size: 19px;
  line-height: 1.45;
}

.em-product-specs__table th,
.em-product-specs__table td {
  padding: 22px 20px;
  text-align: left;
  vertical-align: middle;
}

.em-product-specs__table thead th {
  background: #cfcfcf;
  font-weight: 700;
}

.em-product-specs__table tbody tr:nth-child(odd) th,
.em-product-specs__table tbody tr:nth-child(odd) td {
  background: #efefef;
}

.em-product-specs__table tbody tr:nth-child(even) th,
.em-product-specs__table tbody tr:nth-child(even) td {
  background: #f8f8f8;
}

.em-product-specs__table th {
  width: 48%;
  font-weight: 400;
}

.em-product-techhub {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: clamp(34px, 5vw, 56px);
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--em-line-strong);
  border-left: 2px solid var(--em-blue);
  border-radius: 8px;
  background: #fff;
}

.em-product-techhub h2 {
  margin-bottom: 10px;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.1;
}

.em-product-techhub .em-muted {
  margin-bottom: 0;
}

.single-product .em-content--shop {
  width: min(1320px, calc(100% - 40px));
  padding: clamp(48px, 7vw, 84px) 0 clamp(64px, 8vw, 100px);
}

.single-product .em-footer {
  clear: both;
}

.single-product.woocommerce div.product {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(360px, 1.05fr) minmax(320px, .95fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
}

.single-product.woocommerce div.product div.images,
.single-product.woocommerce div.product div.summary {
  float: none;
}

.single-product.woocommerce div.product div.images {
  width: 100% !important;
}

.single-product.woocommerce div.product div.summary {
  width: 100% !important;
}

.single-product.woocommerce div.product div.images img {
  max-height: 560px;
  object-fit: contain;
  background: #f3f5f7;
}

.single-product.woocommerce div.product div.images {
  padding: clamp(14px, 2vw, 22px);
  border-radius: 8px;
  background: #f3f5f7;
}

.single-product.woocommerce div.product .product_title {
  margin-bottom: 18px;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1;
}

.single-product.woocommerce div.product .woocommerce-product-details__short-description {
  color: var(--em-muted);
  font-size: 17px;
}

.single-product.woocommerce div.product .woocommerce-tabs,
.single-product.woocommerce div.product .upsells,
.single-product.woocommerce div.product .related {
  display: none !important;
}

.single-product.woocommerce div.product .product_meta {
  display: none;
}

.single-product.woocommerce div.product .summary {
  padding-top: clamp(16px, 3vw, 36px);
}

.single-product.woocommerce div.product .summary .price {
  margin: 22px 0;
  color: #9ba500;
  font-family: var(--em-font-head);
  font-size: 24px;
  font-weight: 500;
}

.em-product-consulting {
  display: grid;
  gap: 10px;
  margin-top: 26px;
  padding: 22px;
  border: 1px solid var(--em-line-strong);
  border-left: 2px solid var(--em-red);
  border-radius: 8px;
  background: #fff;
}

.em-product-consulting .em-label {
  margin-bottom: 0;
}

.em-product-consulting h2 {
  margin: 0;
  font-size: clamp(23px, 2.4vw, 32px);
  line-height: 1.12;
}

.em-product-consulting p {
  margin: 0;
  color: var(--em-muted);
}

.em-product-consulting ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.em-product-consulting li {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid var(--em-line);
  border-radius: 8px;
  background: #f8f9fa;
  color: #29313a;
  font-size: 13px;
  font-weight: 700;
}

.em-product-extra {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: clamp(54px, 7vw, 86px);
}

.em-product-extra__features {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: center;
  margin-bottom: clamp(52px, 7vw, 78px);
  padding: clamp(42px, 6vw, 86px);
  background: #f3f5f7;
}

.em-product-extra__features h2 {
  margin-bottom: 8px;
  font-size: clamp(30px, 3.5vw, 46px);
  line-height: 1.08;
}

.em-product-extra__features h3 {
  margin-bottom: 22px;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.12;
}

.em-product-extra__image {
  display: grid;
  place-items: center;
  margin: 0;
}

.em-product-extra__image img {
  width: 100%;
  max-height: 620px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.em-product-extra__usage {
  margin: 0 0 clamp(54px, 7vw, 78px);
}

.em-product-extra__usage img {
  width: 100%;
  height: min(62vh, 700px);
  min-height: 440px;
  object-fit: cover;
}

.em-product-extra__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 8px;
  color: #2f3442;
  font-size: 19px;
  line-height: 1.45;
}

.em-product-extra__table th,
.em-product-extra__table td {
  padding: 22px 20px;
  text-align: left;
  vertical-align: middle;
}

.em-product-extra__table thead th {
  background: #cfcfcf;
  font-weight: 700;
}

.em-product-extra__table tbody tr:nth-child(odd) th,
.em-product-extra__table tbody tr:nth-child(odd) td {
  background: #efefef;
}

.em-product-extra__table tbody tr:nth-child(even) th,
.em-product-extra__table tbody tr:nth-child(even) td {
  background: #f8f8f8;
}

.em-product-extra__table th {
  width: 48%;
  font-weight: 400;
}

.em-product-extra__table .em-spec-name {
  font-weight: 500;
  text-align: left;
}

.em-product-extra__related {
  margin-top: clamp(34px, 5vw, 58px);
}

.em-related-products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.em-related-product {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  border: 1px solid var(--em-line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.em-related-product:hover {
  transform: translateY(-2px);
  border-color: transparent;
  box-shadow: var(--em-shadow);
}

.em-related-product__media {
  display: grid;
  place-items: center;
  min-height: 230px;
  padding: 18px;
  background: #f3f5f7;
}

.em-related-product__media img {
  width: 100%;
  max-height: 210px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.em-related-product__body {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
}

.em-related-product__body .em-label {
  margin: 0;
}

.em-related-product__body h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.18;
}

.em-related-product__body h2 a,
.em-related-product__link {
  text-decoration: none;
}

.em-related-product__body ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.em-related-product__body li {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border: 1px solid var(--em-line);
  border-radius: 8px;
  background: #f8f9fa;
  color: #29313a;
  font-size: 13px;
  font-weight: 700;
}

.em-related-product__link {
  align-self: end;
  color: var(--em-red);
  font-weight: 700;
}

.em-product-extra__techhub {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: clamp(34px, 5vw, 56px);
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--em-line-strong);
  border-left: 2px solid var(--em-blue);
  border-radius: 8px;
  background: #fff;
}

.em-product-extra__techhub h2 {
  margin-bottom: 10px;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.1;
}

.em-product-extra__techhub .em-muted {
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .em-nav {
    display: none;
  }

  .em-category-grid,
  .em-magazine-grid,
  .em-split,
  .em-product-stage,
  .em-product-finder,
  .em-product-card,
  .em-product-single__grid,
  .em-post-grid,
  .em-product-grid,
  .products,
  .em-hub-grid {
    grid-template-columns: 1fr;
  }

  .em-product-stage {
    min-height: 0;
  }

  .em-product-card__media {
    min-height: 280px;
    border-radius: 8px 8px 0 0;
  }

  .em-product-card__media img,
  .woocommerce ul.products li.product .em-product-card__media img {
    height: 280px;
    min-height: 280px;
  }

  .em-product-facts,
  .em-product-details__block--main ul,
  .em-product-features,
  .em-uebler-product__head,
  .em-uebler-features,
  .em-uebler-techhub,
  .em-uebler-advice,
  .em-product-page__head,
  .em-product-feature-band,
  .em-product-techhub,
  .em-product-extra__features,
  .em-related-products,
  .em-product-extra__techhub,
  .em-product-service {
    grid-template-columns: 1fr;
  }

  .em-uebler-product__buybox {
    justify-items: start;
  }

  .em-product-hero-gallery .woocommerce-product-gallery__image img {
    height: 440px;
    min-height: 0;
  }

  .em-product-page__action {
    justify-items: start;
  }

  .em-product-feature-band {
    padding: clamp(28px, 5vw, 46px);
  }

  .em-product-feature-band__image img {
    max-height: 440px;
  }

  .em-product-extra__image img {
    max-height: 440px;
  }

  .em-product-usage-image img {
    height: 460px;
    min-height: 0;
  }

  .em-product-extra__usage img {
    height: 460px;
    min-height: 0;
  }

  .em-uebler-features {
    padding: clamp(28px, 5vw, 46px);
  }

  .em-uebler-features__image img {
    max-height: 440px;
  }

  .em-uebler-usage-image img {
    height: 460px;
    min-height: 0;
  }

  .em-product-service__actions {
    justify-content: flex-start;
  }

  .em-product-nav {
    top: 0;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .em-hero {
    min-height: auto;
    background:
      linear-gradient(90deg, rgba(7, 17, 38, .96) 0%, rgba(7, 17, 38, .86) 58%, rgba(7, 17, 38, .54) 100%),
      var(--em-hero-image, url("assets/ecomofa-hero.png")) center top / cover no-repeat;
  }
}

@media (min-width: 641px) and (max-width: 1180px) {
  .woocommerce ul.products,
  .woocommerce ul.products.columns-2,
  .woocommerce ul.products.columns-3,
  .woocommerce ul.products.columns-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .em-header__inner {
    width: min(var(--em-wrap), calc(100% - 28px));
  }

  .em-brand__mark {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }

  .em-brand__wordmark {
    font-size: 22px;
  }

  .em-actions .em-button {
    display: none;
  }

  .em-hero,
  .em-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .em-hero__actions .em-button,
  .em-actions-row .em-button {
    width: 100%;
  }

  .em-card {
    min-height: 0;
  }

  .woocommerce div.product.em-uebler-product,
  .em-uebler-product {
    width: min(100%, calc(100% - 28px));
  }

  .em-uebler-product__head,
  .em-uebler-features,
  .em-uebler-usage-image,
  .em-uebler-specs,
  .em-product-page__article,
  .em-product-page__head,
  .em-product-feature-band,
  .em-product-usage-image,
  .em-product-specs,
  .em-product-techhub,
  .em-product-extra {
    width: min(100%, calc(100% - 28px));
  }

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

  .em-product-extra__techhub {
    grid-template-columns: 1fr;
  }

  .em-product-hero-gallery .woocommerce-product-gallery__image img {
    height: 330px;
    padding: 12px;
  }

  .em-uebler-usage-image img {
    height: 320px;
  }

  .em-product-usage-image img {
    height: 320px;
  }

  .em-product-extra__usage img {
    height: 320px;
  }

  .em-product-specs__table {
    font-size: 16px;
  }

  .em-product-specs__table th,
  .em-product-specs__table td {
    padding: 15px 12px;
  }

  .em-product-extra__table {
    font-size: 16px;
  }

  .em-product-extra__table th,
  .em-product-extra__table td {
    padding: 15px 12px;
  }

  .em-uebler-specs__table {
    font-size: 16px;
  }

  .em-uebler-specs__table th,
  .em-uebler-specs__table td {
    padding: 15px 12px;
  }
}
