:root {
  --lmx-bg: #ffffff;
  --lmx-ink: #111111;
  --lmx-muted: #686868;
  --lmx-soft: #f8f7f4;
  --lmx-line: #e8e5df;
  --lmx-accent: #111111;
  --lmx-accent-2: #9a702c;
  --lmx-gold: #b58a43;
  --lmx-gold-soft: #f4eddf;
  --lmx-purple: #6751a4;
  --lmx-purple-soft: #f4f1fa;
  --lmx-danger: #ff4645;
  --lmx-radius: 6px;
  --lmx-container: 1440px;
  --lmx-header: 68px;
  --lmx-font-sans: "Pretendard Variable", Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --lmx-font-display: "DM Serif Display", "Noto Serif KR", "Noto Serif CJK KR", Georgia, "Times New Roman", serif;
  --lmx-font: var(--lmx-font-sans);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

.lmx-entry-content [id],
.lmx-entry-content [name],
.woocommerce-tabs [id] {
  scroll-margin-top: calc(var(--lmx-header) + 72px);
}

body {
  margin: 0;
  background: var(--lmx-bg);
  color: var(--lmx-ink);
  font-family: var(--lmx-font);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

h1,
h2,
.lmx-brand,
.lmx-footer-brand strong,
.lmx-medicube-copy strong,
.product_title {
  font-family: var(--lmx-font-display);
  font-optical-sizing: auto;
  font-synthesis: none;
}

h1,
h2 {
  font-weight: 600;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
.button,
.wp-element-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.lmx-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid #111111;
  border-radius: var(--lmx-radius);
  background: #111111;
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

button:hover,
.button:hover,
.wp-element-button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.lmx-button:hover {
  background: #333333;
  border-color: #333333;
  color: #ffffff;
}

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 2px solid var(--lmx-gold);
  outline-offset: 3px;
}

.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;
}

.lmx-container {
  width: min(calc(100% - 40px), var(--lmx-container));
  margin-inline: auto;
}

.lmx-eyebrow {
  margin: 0 0 10px;
  color: var(--lmx-accent-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lmx-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--lmx-line);
  backdrop-filter: saturate(140%) blur(10px);
}

.lmx-topbar {
  height: 34px;
  display: grid;
  place-items: center;
  background: #9b742f;
  color: #ffffff;
  font-size: 13px;
}

.lmx-topbar a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  min-height: 24px;
}

.lmx-topbar strong {
  color: #f6d69c;
}

.lmx-header-main {
  min-height: var(--lmx-header);
  display: grid;
  grid-template-columns: minmax(160px, 220px) 1fr minmax(160px, 240px);
  align-items: center;
  gap: 24px;
  width: min(calc(100% - 40px), var(--lmx-container));
  margin-inline: auto;
}

.lmx-brand {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lmx-brand img {
  max-height: 42px;
  width: auto;
}

.lmx-primary-nav {
  justify-self: center;
}

.lmx-menu,
.lmx-utility-menu,
.lmx-category-menu,
.lmx-footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lmx-menu {
  display: flex;
  align-items: center;
  gap: 38px;
}

.lmx-menu > li {
  position: relative;
}

.lmx-menu a {
  display: block;
  padding: 24px 0;
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}

.lmx-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 210px;
  padding: 12px;
  margin: 0;
  list-style: none;
  background: #ffffff;
  border: 1px solid var(--lmx-line);
  border-radius: var(--lmx-radius);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.lmx-menu li:hover > .sub-menu,
.lmx-menu li:focus-within > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.lmx-menu .sub-menu a {
  padding: 10px 12px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
}

.lmx-menu .sub-menu a:hover {
  background: var(--lmx-soft);
}

.lmx-header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.lmx-utility-menu {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--lmx-muted);
  font-size: 13px;
  font-weight: 700;
}

.lmx-language-switcher {
  position: relative;
  z-index: 20;
}

.lmx-language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid var(--lmx-line);
  border-radius: 999px;
  background: #ffffff;
  color: #111111;
  font-size: 12px;
  font-weight: 900;
  transition: border-color 160ms ease, background 160ms ease;
}

.lmx-language-toggle:hover,
.lmx-language-switcher.is-open .lmx-language-toggle {
  border-color: #111111;
  background: #f8f8f8;
}

.lmx-language-toggle span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  font-size: 11px;
}

.lmx-language-toggle em {
  max-width: 74px;
  overflow: hidden;
  color: #555555;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lmx-language-toggle::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 160ms ease;
}

.lmx-language-switcher.is-open .lmx-language-toggle::after {
  transform: translateY(1px) rotate(225deg);
}

.lmx-language-menu {
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
  display: grid;
  width: 178px;
  padding: 8px;
  border: 1px solid var(--lmx-line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 8px, 0);
  transition: opacity 160ms ease, transform 160ms ease;
}

.lmx-language-switcher.is-open .lmx-language-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.lmx-language-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 9px;
  border-radius: 6px;
  color: #555555;
  font-size: 13px;
  font-weight: 800;
}

.lmx-language-menu a:hover,
.lmx-language-menu a.is-active {
  background: #f4f4f4;
  color: #111111;
}

.lmx-language-menu a span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 24px;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
}

.lmx-language-menu a em {
  font-style: normal;
}

.lmx-icon-link {
  position: relative;
  min-width: 42px;
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--lmx-line);
  border-radius: 50%;
  background: #ffffff;
  font-size: 11px;
  font-weight: 900;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.lmx-icon-link:hover {
  background: #f8f8f8;
  border-color: #cfcfcf;
  transform: translateY(-1px);
}

.lmx-icon {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lmx-cart-link em {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  display: grid;
  place-items: center;
  background: var(--lmx-danger);
  color: #ffffff;
  border-radius: 999px;
  font-style: normal;
  font-size: 11px;
}

.lmx-cart-toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 16px;
  width: min(380px, calc(100vw - 44px));
  padding: 18px;
  border: 1px solid #111111;
  border-radius: 8px;
  background: #111111;
  color: #ffffff;
  box-shadow: 0 18px 50px rgba(17, 17, 17, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 18px, 0);
  transition: opacity 180ms ease, transform 180ms ease;
}

.lmx-cart-toast.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.lmx-cart-toast strong {
  font-size: 15px;
  line-height: 1.3;
}

.lmx-cart-toast span {
  grid-column: 1;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.5;
}

.lmx-cart-toast a {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  padding: 9px 12px;
  border-radius: 4px;
  background: #ffffff;
  color: #111111;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.lmx-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
}

.lmx-menu-toggle span:not(.screen-reader-text) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: #111111;
}

.lmx-category-nav {
  border-top: 1px solid var(--lmx-line);
}

.lmx-category-menu {
  width: min(calc(100% - 40px), var(--lmx-container));
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 26px;
  margin-inline: auto;
  overflow-x: auto;
}

.lmx-category-menu a {
  display: block;
  padding: 13px 0;
  color: #363636;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.lmx-hero {
  position: relative;
  overflow: hidden;
  background: #e8e3da;
}

.lmx-hero-track {
  min-height: clamp(540px, 76vh, 780px);
  position: relative;
}

.lmx-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 420ms ease;
}

.lmx-hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.lmx-hero-image {
  width: 100%;
  height: clamp(540px, 76vh, 780px);
  object-fit: cover;
}

.lmx-hero-placeholder {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.12)),
    linear-gradient(135deg, #e5ded3, #bfcfc8 48%, #756f67);
}

.lmx-hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.2) 52%, rgba(0, 0, 0, 0.1));
}

.lmx-hero-content {
  position: absolute;
  z-index: 2;
  left: max(30px, calc((100vw - var(--lmx-container)) / 2));
  top: 50%;
  width: min(560px, calc(100% - 60px));
  transform: translateY(-50%);
}

.lmx-hero-content h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 88px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0;
}

.lmx-hero-content p:not(.lmx-eyebrow) {
  max-width: 460px;
  margin: 22px 0 30px;
  color: #303030;
  font-size: 18px;
}

.lmx-slider-controls {
  position: absolute;
  z-index: 3;
  right: max(30px, calc((100vw - var(--lmx-container)) / 2));
  bottom: 34px;
  display: flex;
  gap: 8px;
}

.lmx-slider-controls button {
  width: 42px;
  height: 42px;
  min-height: 42px;
  padding: 0;
  border-color: rgba(0, 0, 0, 0.28);
  background: rgba(255, 255, 255, 0.76);
  color: #111111;
  font-size: 24px;
}

.lmx-medicube-hero {
  position: relative;
  overflow: hidden;
  padding: 26px 0 44px;
  background: #ffffff;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.lmx-medicube-hero.is-dragging {
  cursor: grabbing;
}

.lmx-medicube-track {
  display: flex;
  align-items: center;
  gap: 18px;
  will-change: transform;
  transition: transform 560ms cubic-bezier(0.18, 0.89, 0.32, 1);
}

.lmx-medicube-track.is-resetting {
  transition: none;
}

.lmx-medicube-hero.is-dragging .lmx-medicube-track {
  transition: none;
}

.lmx-medicube-slide {
  flex: 0 0 clamp(320px, 24.5vw, 465px);
  min-width: 0;
  transform: translate3d(0, -52px, 0) scale(0.855);
  transition: transform 520ms cubic-bezier(0.18, 0.89, 0.32, 1), opacity 220ms ease;
}

.lmx-medicube-slide.is-active {
  transform: translate3d(0, 0, 0) scale(1);
}

.lmx-medicube-card {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 465 / 650;
  border-radius: 20px;
  background-color: var(--lmx-slide-bg);
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--lmx-slide-bg) 86%, #ffffff), var(--lmx-slide-bg) 48%, color-mix(in srgb, var(--lmx-slide-bg) 72%, #111111));
  color: var(--lmx-slide-color);
  isolation: isolate;
}

.lmx-medicube-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.2), transparent 42%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.18), transparent 38%);
}

.lmx-medicube-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.42);
  transition: opacity 260ms ease;
}

.lmx-medicube-slide.is-active .lmx-medicube-card::after {
  opacity: 0;
}

.lmx-medicube-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lmx-medicube-slide:not(.is-active) .lmx-medicube-card {
  pointer-events: none;
}

.lmx-medicube-copy {
  position: absolute;
  z-index: 2;
  left: 34px;
  right: 34px;
  bottom: 42px;
  display: grid;
  gap: 8px;
  color: var(--lmx-slide-color);
  line-height: 1.12;
  transform: translate3d(0, 0, 0);
  opacity: 1;
  transition: transform 240ms ease, opacity 240ms ease;
}

.lmx-medicube-slide.is-active .lmx-medicube-copy,
.lmx-medicube-slide.is-image-missing .lmx-medicube-copy {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.lmx-medicube-kicker,
.lmx-medicube-copy > span:last-child {
  font-size: 18px;
  font-weight: 500;
}

.lmx-medicube-copy strong {
  font-size: clamp(34px, 4vw, 64px);
  font-weight: 400;
  letter-spacing: 0;
}

.lmx-medicube-controls {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 58px;
  display: flex;
  gap: 8px;
  transform: translateX(130px);
}

.lmx-medicube-controls button {
  width: 32px;
  height: 32px;
  min-height: 32px;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.42);
  color: #ffffff;
  font-size: 22px;
  line-height: 1;
}

.lmx-medicube-controls button:hover {
  background: rgba(0, 0, 0, 0.72);
}

.lmx-hero-plugin {
  margin: 0;
}

.lmx-home-section {
  padding: 84px 0 40px;
}

.lmx-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.lmx-section-head h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0;
}

.lmx-section-head > a {
  color: var(--lmx-muted);
  font-size: 14px;
  font-weight: 700;
  border-bottom: 0;
}

.lmx-section-head > a:hover {
  color: #111111;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.lmx-recommend-section {
  padding: 56px 0 76px;
}

.lmx-recommend-section .lmx-section-head {
  margin-bottom: 28px;
}

.lmx-recommend-section .lmx-section-head h2 {
  font-size: clamp(22px, 2.2vw, 26px);
  font-weight: 600;
}

.lmx-recommend-section .woocommerce {
  overflow: hidden;
}

.lmx-recommend-section .woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px 16px;
  max-width: 1180px;
  overflow-x: visible;
  overflow-y: hidden;
  padding: 0;
}

.lmx-recommend-section .lmx-product-card {
  width: auto;
  max-width: 100%;
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.lmx-product-card {
  position: relative;
  min-width: 0;
}

.lmx-product-link {
  display: block;
}

.lmx-product-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 1px solid #ece9e3;
  border-radius: 6px;
  background: #f8f7f4;
}

.lmx-product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
  transition: transform 260ms ease, filter 260ms ease;
}

.lmx-product-card:hover .lmx-product-media img {
  filter: saturate(1.04);
  transform: scale(1.025);
}

.lmx-product-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f6f4ef, #dbd6ca);
}

.lmx-badge {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  min-height: 29px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  background: var(--lmx-danger);
  color: #ffffff;
  border-radius: 0;
  font-size: 12px;
  font-weight: 900;
}

.lmx-badge.is-dark {
  background: #111111;
}

.lmx-badge.is-muted {
  background: #777777;
}

.lmx-product-info {
  display: grid;
  gap: 6px;
  padding: 14px 0 0;
}

.lmx-product-title {
  min-height: 0;
  color: #111111;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.38;
}

.lmx-product-desc {
  min-height: 0;
  color: #777777;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
  word-break: keep-all;
}

.lmx-product-price {
  color: #111111;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  margin-top: 18px;
  font-size: 16px;
  font-weight: 900;
}

.lmx-product-price::after {
  content: "회원가";
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 5px;
  border: 1px solid #d5d5d5;
  border-radius: 3px;
  color: #5f5f5f;
  font-size: 12px;
  font-weight: 500;
}

.lmx-product-price:empty::after {
  display: none;
}

.lmx-product-price del,
.price del {
  color: #9c9c9c;
  font-weight: 600;
}

.lmx-product-price ins,
.price ins {
  color: var(--lmx-danger);
  text-decoration: none;
}

.lmx-product-actions {
  margin-top: 8px;
}

.woocommerce .lmx-product-actions .button,
.woocommerce .lmx-product-actions a.button,
.lmx-product-actions .button {
  width: 100%;
  min-height: 38px;
  border-color: #d7d7d7;
  border-radius: 6px;
  background: #ffffff;
  color: #111111;
  font-size: 13px;
  font-weight: 700;
}

.woocommerce .lmx-product-actions .button:hover,
.woocommerce .lmx-product-actions a.button:hover,
.lmx-product-actions .button:hover {
  background: #111111;
  border-color: #111111;
  color: #ffffff;
}

.woocommerce .lmx-product-actions .button.is-adding,
.woocommerce .lmx-product-actions a.button.is-adding,
.lmx-product-actions .button.is-adding {
  position: relative;
  color: rgba(255, 255, 255, 0.7);
  background: #333333;
  border-color: #333333;
}

.woocommerce .lmx-product-actions .button.is-adding::after,
.woocommerce .lmx-product-actions a.button.is-adding::after,
.lmx-product-actions .button.is-adding::after {
  content: "";
  width: 14px;
  height: 14px;
  margin-left: 8px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #ffffff;
  border-radius: 999px;
  animation: lmx-spin 760ms linear infinite;
}

.woocommerce .lmx-product-actions .button.is-added,
.woocommerce .lmx-product-actions a.button.is-added,
.lmx-product-actions .button.is-added {
  background: #2f6f64;
  border-color: #2f6f64;
  color: #ffffff;
}

@keyframes lmx-spin {
  to {
    transform: rotate(360deg);
  }
}

.lmx-shop-main,
.lmx-product-main,
.lmx-page {
  padding: 54px 0 96px;
}

.lmx-shop-header {
  margin-bottom: 34px;
}

.lmx-shop-header h1,
.lmx-page-header h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: 0;
}

.lmx-shop-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  color: var(--lmx-muted);
  font-size: 14px;
}

.woocommerce-ordering select,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.input-text,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--lmx-line);
  border-radius: var(--lmx-radius);
  background: #ffffff;
  color: #111111;
}

textarea {
  min-height: 120px;
  padding-top: 12px;
}

.woocommerce-pagination {
  margin-top: 48px;
}

.woocommerce-pagination ul {
  display: flex;
  justify-content: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.woocommerce-pagination a,
.woocommerce-pagination span {
  min-width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--lmx-line);
  border-radius: 50%;
  font-weight: 800;
}

.woocommerce-pagination .current {
  background: #111111;
  color: #ffffff;
}

.lmx-single-product {
  display: block;
}

.lmx-single-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.72fr);
  gap: 64px;
  align-items: start;
}

.lmx-single-product--editorial .lmx-single-overview {
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.85fr);
  gap: 38px;
  padding: 34px;
  border-radius: 10px;
  background: #f6f3ee;
}

.lmx-single-product--editorial .lmx-single-summary {
  border-color: rgba(17, 17, 17, 0.08);
  box-shadow: 0 18px 52px rgba(17, 17, 17, 0.08);
}

.lmx-single-product--editorial .woocommerce-product-gallery__image {
  border-radius: 10px;
}

.lmx-single-product--compact .lmx-single-overview {
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.62fr);
  gap: 32px;
}

.lmx-single-product--compact .lmx-single-summary {
  padding: 24px;
}

.lmx-single-product--compact .product_title {
  font-size: clamp(26px, 2.8vw, 38px);
}

.lmx-single-product--compact .woocommerce-product-details__short-description {
  margin: 16px 0;
}

.lmx-single-product--compact .lmx-product-service,
.lmx-single-product--compact .product_meta {
  margin-top: 16px;
}

.lmx-single-gallery {
  min-width: 0;
}

.woocommerce-product-gallery {
  position: relative;
}

.woocommerce-product-gallery__wrapper {
  margin: 0;
}

.woocommerce-product-gallery__image {
  overflow: hidden;
  background: var(--lmx-soft);
  border-radius: var(--lmx-radius);
}

.woocommerce-product-gallery__image img {
  width: 100%;
  height: auto;
}

.flex-control-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
}

.flex-control-thumbs li {
  overflow: hidden;
  border-radius: var(--lmx-radius);
  background: var(--lmx-soft);
  cursor: pointer;
}

.lmx-single-summary {
  position: sticky;
  top: 146px;
  padding: 34px;
  border: 1px solid var(--lmx-line);
  border-radius: var(--lmx-radius);
  background: #ffffff;
}

.lmx-single-summary .lmx-badge {
  position: static;
  margin-bottom: 18px;
}

.product_title {
  margin: 0 0 16px;
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0;
}

.woocommerce-product-rating {
  margin-bottom: 12px;
  color: var(--lmx-muted);
}

.woocommerce-product-details__short-description {
  margin: 22px 0;
  color: #3f3f3f;
}

.summary .price,
.lmx-single-summary .price {
  display: block;
  margin: 16px 0;
  color: #111111;
  font-size: 26px;
  font-weight: 900;
}

.cart {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.quantity {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid var(--lmx-line);
  border-radius: var(--lmx-radius);
  overflow: hidden;
}

.quantity input.qty {
  width: 72px;
  height: 46px;
  border: 0;
  text-align: center;
}

.single_add_to_cart_button {
  width: 100%;
}

.variations {
  width: 100%;
  border-collapse: collapse;
}

.variations th,
.variations td {
  display: block;
  padding: 0 0 10px;
  text-align: left;
}

.variations label {
  font-size: 14px;
  font-weight: 900;
}

.lmx-product-service {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--lmx-line);
  color: var(--lmx-muted);
  font-size: 13px;
}

.product_meta {
  display: grid;
  gap: 6px;
  margin-top: 22px;
  color: var(--lmx-muted);
  font-size: 13px;
}

.lmx-single-tabs,
.lmx-related-products {
  margin-top: 40px;
}

.lmx-single-tabs {
  position: relative;
  z-index: 2;
  clear: both;
  background: #ffffff;
}

.woocommerce-tabs {
  border-top: 1px solid var(--lmx-line);
}

.woocommerce-tabs .tabs {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--lmx-line);
}

.woocommerce-tabs .tabs a {
  display: block;
  padding: 18px 0;
  font-weight: 900;
}

.woocommerce-Tabs-panel {
  padding: 34px 0;
  overflow: hidden;
}

.woocommerce-Tabs-panel > img,
.woocommerce-Tabs-panel > p > img,
.woocommerce-Tabs-panel figure img {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  margin-inline: auto;
}

.related > h2,
.upsells > h2 {
  margin: 0 0 26px;
  font-size: 34px;
  font-weight: 600;
}

.lmx-checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 440px);
  gap: 34px;
  align-items: start;
}

.lmx-checkout-panel,
.lmx-order-review {
  padding: 28px;
  border: 1px solid var(--lmx-line);
  border-radius: var(--lmx-radius);
  background: #ffffff;
}

.lmx-checkout-panel + .lmx-checkout-panel {
  margin-top: 18px;
}

.lmx-order-review {
  position: sticky;
  top: 146px;
}

.woocommerce form .form-row {
  margin: 0 0 16px;
}

.woocommerce form .form-row label {
  display: block;
  margin-bottom: 7px;
  font-size: 13px;
  font-weight: 900;
}

.woocommerce-checkout-review-order-table,
.shop_table {
  width: 100%;
  border-collapse: collapse;
}

.shop_table th,
.shop_table td {
  padding: 14px 0;
  border-bottom: 1px solid var(--lmx-line);
  text-align: left;
  vertical-align: top;
}

.shop_table td:last-child,
.shop_table th:last-child {
  text-align: right;
}

.woocommerce-cart-form,
.cart-collaterals,
.woocommerce-account .woocommerce,
.woocommerce-order {
  width: min(calc(100% - 40px), var(--lmx-container));
  margin-inline: auto;
}

.woocommerce-cart-form {
  overflow-x: auto;
}

.woocommerce-cart-form .shop_table {
  min-width: 720px;
}

.woocommerce-cart-form .product-thumbnail img,
.woocommerce-cart-form .lmx-cart-product-thumb img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: var(--lmx-radius);
}

.woocommerce-cart-form .product-name img,
.woocommerce-cart-form .product-name picture,
.woocommerce-cart-form .product-name figure,
.woocommerce-cart-form .variation img,
.woocommerce-cart-form .wc-item-meta img {
  display: none !important;
}

.wc-block-cart .wc-block-cart-item__image img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: var(--lmx-radius);
}

.wc-block-cart .wc-block-components-product-metadata__description,
.wc-block-cart .wc-block-cart-item__product img,
.wc-block-cart .wc-block-cart-item__product picture,
.wc-block-cart .wc-block-cart-item__product figure,
.wc-block-cart .wc-block-cart-item__product iframe,
.wc-block-cart .wc-block-cart-item__product video,
.wc-block-cart .wc-block-components-product-metadata img,
.wc-block-cart .wc-block-components-product-metadata picture,
.wc-block-cart .wc-block-components-product-metadata figure,
.wc-block-cart .wc-block-components-product-metadata iframe,
.wc-block-cart .wc-block-components-product-metadata video {
  display: none !important;
}

.cart-collaterals {
  display: flex;
  justify-content: flex-end;
  margin-top: 28px;
}

.cart_totals {
  width: min(100%, 460px);
  padding: 28px;
  border: 1px solid var(--lmx-line);
  border-radius: var(--lmx-radius);
  background: #ffffff;
}

.cart_totals h2 {
  margin-top: 0;
}

.actions {
  padding-top: 18px;
}

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

.coupon .input-text {
  max-width: 260px;
}

.woocommerce-account .woocommerce {
  display: block;
  max-width: 1180px;
}

.lmx-auth,
.woocommerce .u-columns.col2-set,
.woocommerce-account .u-columns.col2-set {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  align-items: start;
}

.woocommerce .col2-set::before,
.woocommerce .col2-set::after,
.woocommerce-page .col2-set::before,
.woocommerce-page .col2-set::after {
  display: none;
}

.woocommerce .col2-set .col-1,
.woocommerce .col2-set .col-2,
.woocommerce-page .col2-set .col-1,
.woocommerce-page .col2-set .col-2 {
  float: none;
  width: auto;
  max-width: none;
}

.lmx-auth.login-only {
  grid-template-columns: minmax(0, 520px);
  justify-content: center;
}

.lmx-auth-panel,
.woocommerce .u-column1,
.woocommerce .u-column2,
.woocommerce-account .u-column1,
.woocommerce-account .u-column2 {
  padding: 34px;
  border: 1px solid var(--lmx-line);
  border-radius: var(--lmx-radius);
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(18, 18, 18, 0.06);
}

.lmx-auth-panel h2,
.woocommerce .u-column1 h2,
.woocommerce .u-column2 h2,
.woocommerce-account .u-column1 h2,
.woocommerce-account .u-column2 h2 {
  margin: 0 0 28px;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.12;
}

.lmx-auth .form-row,
.woocommerce-account .woocommerce-form .form-row,
.woocommerce-account .u-column1 .form-row,
.woocommerce-account .u-column2 .form-row {
  margin-bottom: 18px;
}

.lmx-auth .button,
.woocommerce-account .woocommerce-form .button {
  min-width: 120px;
}

.woocommerce .woocommerce-form-login,
.woocommerce .woocommerce-form-register,
.woocommerce-account .woocommerce-form-login,
.woocommerce-account .woocommerce-form-register {
  display: grid;
  gap: 0;
}

.woocommerce-account .woocommerce-form-row label,
.woocommerce-account .form-row label {
  color: #111111;
  font-weight: 900;
}

.woocommerce-account .woocommerce-form-row input.input-text,
.woocommerce-account .form-row input.input-text {
  min-height: 50px;
  border-color: #d8d2c8;
}

.woocommerce-account .woocommerce-form-row input.input-text:focus,
.woocommerce-account .form-row input.input-text:focus {
  outline: 2px solid rgba(47, 111, 100, 0.2);
  border-color: var(--lmx-accent-2);
}

.lmx-login-actions {
  display: grid;
  gap: 14px;
  align-items: start;
}

.woocommerce-form__label-for-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
}

.woocommerce-form__input-checkbox,
.woocommerce input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-height: 0;
  padding: 0;
  accent-color: #111111;
}

.woocommerce .password-input {
  position: relative;
  display: block;
}

.woocommerce-input-wrapper .lmx-postcode-search,
.lmx-postcode-search {
  position: static;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 44px;
  margin-top: 8px;
  border-color: #111111;
  background: #111111;
  color: #ffffff;
  font-size: 14px;
}

.wc-block-components-text-input .lmx-postcode-search {
  position: absolute;
  top: 50%;
  right: 8px;
  z-index: 5;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: auto;
  min-width: 92px;
  height: 34px;
  min-height: 34px;
  margin: 0;
  padding: 0 12px;
  border: 1px solid #111111;
  border-radius: 4px;
  background: #111111;
  color: #ffffff;
  font-size: 13px;
  line-height: 1;
  transform: translateY(-50%);
  white-space: nowrap;
}

.wc-block-components-text-input:has(.lmx-postcode-search) input {
  padding-right: 112px !important;
}

.woocommerce-input-wrapper .lmx-postcode-search:hover,
.wc-block-components-text-input .lmx-postcode-search:hover,
.lmx-postcode-search:hover {
  background: var(--lmx-accent-2);
  border-color: var(--lmx-accent-2);
  color: #ffffff;
}

.wc-block-components-text-input:has(.lmx-postcode-search) {
  position: relative;
  overflow: visible;
}

.woocommerce .show-password-input,
.woocommerce button.show-password-input,
.woocommerce span.show-password-input,
.show-password-input {
  position: absolute !important;
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  min-width: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
}

.woocommerce .show-password-input:hover,
.woocommerce button.show-password-input:hover {
  background: transparent;
  color: #111111;
}

.woocommerce .show-password-input::after,
.show-password-input::after {
  display: none;
}

.lmx-register-terms {
  padding: 14px;
  border: 1px solid var(--lmx-line);
  border-radius: var(--lmx-radius);
  background: #faf9f6;
  font-size: 14px;
}

.lmx-register-terms a {
  color: #111111;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.woocommerce-account .woocommerce-privacy-policy-text {
  color: var(--lmx-muted);
  font-size: 14px;
  line-height: 1.65;
}

.woocommerce-account .lost_password a {
  color: #111111;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.logged-in.woocommerce-account .woocommerce {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.woocommerce-MyAccount-navigation {
  position: sticky;
  top: calc(var(--lmx-header) + 28px);
}

.woocommerce-MyAccount-navigation ul {
  list-style: none;
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 10px;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  background: #fafafa;
}

.woocommerce-MyAccount-navigation li {
  margin: 0;
}

.woocommerce-MyAccount-navigation a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: #555555;
  font-size: 14px;
  font-weight: 800;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.woocommerce-MyAccount-navigation a::after {
  content: ">";
  color: #b5b5b5;
  font-size: 13px;
  font-weight: 900;
}

.woocommerce-MyAccount-navigation a:hover,
.woocommerce-MyAccount-navigation .is-active a {
  border-color: #111111;
  background: #111111;
  color: #ffffff;
}

.woocommerce-MyAccount-navigation a:hover::after,
.woocommerce-MyAccount-navigation .is-active a::after {
  color: #ffffff;
}

.woocommerce-MyAccount-navigation-link--customer-logout a {
  color: #8c3228;
}

.woocommerce-MyAccount-content {
  min-width: 0;
  padding: 2px 0 0;
}

.lmx-account-home {
  display: grid;
  gap: 18px;
}

.lmx-account-hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
  padding: 30px;
  border: 1px solid #e7e7e7;
  border-radius: 8px;
  background: #fafafa;
}

.lmx-account-eyebrow {
  margin: 0 0 12px;
  color: #777777;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.lmx-account-hero h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: 0;
}

.lmx-account-hero p:not(.lmx-account-eyebrow) {
  max-width: 680px;
  margin: 14px 0 0;
  color: #666666;
  font-size: 15px;
  line-height: 1.65;
}

.lmx-account-primary-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 150px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  background: #111111;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.lmx-account-primary-link:hover {
  background: #333333;
  color: #ffffff;
}

.lmx-account-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid #e7e7e7;
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
}

.lmx-account-metrics a {
  display: grid;
  gap: 6px;
  padding: 20px;
  border-right: 1px solid #e7e7e7;
  color: #111111;
}

.lmx-account-metrics a:last-child {
  border-right: 0;
}

.lmx-account-metrics span,
.lmx-account-metrics em {
  color: #777777;
  font-size: 12px;
  font-weight: 900;
  font-style: normal;
}

.lmx-account-metrics strong {
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
}

.lmx-account-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 18px;
}

.lmx-account-panel {
  padding: 24px;
  border: 1px solid #e7e7e7;
  border-radius: 8px;
  background: #ffffff;
}

.lmx-account-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
  margin-bottom: 18px;
}

.lmx-account-panel-head h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 900;
}

.lmx-account-panel-head a {
  color: #111111;
  font-size: 13px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.lmx-account-order-list {
  display: grid;
}

.lmx-account-order {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 6px 18px;
  padding: 16px 0;
  border-top: 1px solid #eeeeee;
  color: #111111;
}

.lmx-account-order:first-child {
  border-top: 0;
  padding-top: 0;
}

.lmx-account-order span {
  grid-row: span 2;
  color: #777777;
  font-size: 13px;
  font-weight: 900;
}

.lmx-account-order strong {
  min-width: 0;
  overflow: hidden;
  font-size: 15px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lmx-account-order em {
  color: #777777;
  font-size: 13px;
  line-height: 1.5;
  font-style: normal;
}

.lmx-account-empty {
  display: grid;
  gap: 8px;
  min-height: 138px;
  align-content: center;
  padding: 22px;
  border: 1px dashed #d9d9d9;
  border-radius: 8px;
  background: #fafafa;
}

.lmx-account-empty strong {
  font-size: 16px;
  font-weight: 900;
}

.lmx-account-empty span {
  color: #777777;
  font-size: 14px;
}

.lmx-account-side {
  display: grid;
  gap: 18px;
}

.lmx-account-info {
  display: grid;
  gap: 14px;
  margin: 0;
}

.lmx-account-info div {
  display: grid;
  gap: 5px;
}

.lmx-account-info dt {
  color: #777777;
  font-size: 12px;
  font-weight: 900;
}

.lmx-account-info dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 15px;
  font-weight: 800;
}

.lmx-account-address {
  margin: 0;
  color: #555555;
  font-size: 14px;
  line-height: 1.7;
}

#payment {
  margin-top: 22px;
}

#payment ul.payment_methods {
  list-style: none;
  margin: 0;
  padding: 0;
}

#payment li {
  padding: 14px 0;
  border-bottom: 1px solid var(--lmx-line);
}

.place-order {
  margin-top: 20px;
}

#place_order {
  width: 100%;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  width: min(calc(100% - 40px), var(--lmx-container));
  margin: 20px auto;
  padding: 16px 18px;
  border-radius: var(--lmx-radius);
  background: #f1f7f4;
  border: 1px solid #c8ded3;
  color: #173d31;
  list-style: none;
}

.woocommerce-error {
  background: #fff2ef;
  border-color: #f0c6bd;
  color: #842817;
}

.lmx-page-inner {
  max-width: 980px;
}

.woocommerce-account .lmx-page-inner {
  max-width: var(--lmx-container);
}

.woocommerce-account .lmx-page-header {
  margin-bottom: 28px;
}

.woocommerce-account .lmx-page-header h1 {
  font-size: clamp(32px, 3.4vw, 46px);
  line-height: 1.08;
}

.lmx-entry-content {
  margin-top: 28px;
}

.lmx-entry-content > *:first-child {
  margin-top: 0;
}

.lmx-entry-card {
  padding: 24px 0;
  border-bottom: 1px solid var(--lmx-line);
}

.lmx-brand-promise-section {
  margin-block: 42px;
  padding: clamp(34px, 5vw, 68px);
  border: 1px solid #e4ddd2;
  border-radius: 10px;
  background: #f3eee6 !important;
  color: #161616 !important;
}

.lmx-brand-promise-section h1,
.lmx-brand-promise-section h2,
.lmx-brand-promise-section h3,
.lmx-brand-promise-section p,
.lmx-brand-promise-section li {
  color: inherit !important;
}

.lmx-brand-promise-section a {
  color: #111111 !important;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.lmx-reveal {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition: opacity 520ms ease, transform 520ms cubic-bezier(0.18, 0.89, 0.32, 1);
}

.lmx-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Product descriptions can be taller than the observer threshold. Keep the
   whole tab container visible and animate only smaller surrounding elements. */
.lmx-single-tabs.lmx-reveal,
.woocommerce-tabs.lmx-reveal {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

.lmx-footer {
  padding: 58px 0;
  background: #ffffff;
  color: #111111;
  border-top: 1px solid var(--lmx-line);
}

.lmx-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 38px;
}

.lmx-footer-brand strong {
  font-size: 26px;
  font-weight: 400;
}

.lmx-footer p {
  color: #777777;
}

.lmx-footer-widget {
  color: #777777;
  font-size: 13px;
}

.lmx-footer-widget-title {
  margin: 0 0 12px;
  color: #111111;
  font-size: 15px;
}

.lmx-footer-widget p {
  margin: 0 0 8px;
}

.lmx-footer-widget a {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  color: #111111;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lmx-footer-menu {
  display: grid;
  gap: 10px;
}

.lmx-footer-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  color: #111111;
  font-weight: 700;
}

.woocommerce-form__label-for-checkbox {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  gap: 8px;
}

.woocommerce-form__input-checkbox {
  width: 20px;
  height: 20px;
  margin: 0;
}

.woocommerce-product-gallery__trigger {
  display: grid !important;
  width: 36px !important;
  height: 36px !important;
  place-items: center;
}

@media (max-width: 1100px) {
  .lmx-header-main {
    grid-template-columns: 52px 1fr auto;
  }

  .lmx-menu-toggle {
    display: block;
  }

  .lmx-primary-nav {
    position: fixed;
    top: calc(var(--lmx-header) + 38px);
    left: 0;
    right: 0;
    display: none;
    background: #ffffff;
    border-bottom: 1px solid var(--lmx-line);
  }

  body.lmx-menu-open .lmx-primary-nav {
    display: block;
  }

  .lmx-menu {
    width: min(calc(100% - 40px), var(--lmx-container));
    display: grid;
    gap: 0;
    margin: 0 auto;
    padding: 14px 0;
  }

  .lmx-menu a {
    padding: 14px 0;
  }

  .lmx-menu .sub-menu {
    position: static;
    min-width: 0;
    padding: 0 0 0 14px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .lmx-utility-menu {
    display: none;
  }

  .lmx-language-switcher {
    max-width: none;
  }

  .woocommerce ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lmx-recommend-section .lmx-product-card {
    flex-basis: calc((100% - 20px) / 3);
  }

  .lmx-recommend-section .woocommerce ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lmx-single-product,
  .lmx-single-overview,
  .lmx-checkout-grid,
  .woocommerce-account .woocommerce,
  .lmx-auth,
  .woocommerce .u-columns.col2-set,
  .woocommerce-account .u-columns.col2-set {
    grid-template-columns: 1fr;
  }

  .woocommerce-MyAccount-navigation {
    position: static;
  }

  .woocommerce-MyAccount-navigation ul {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .woocommerce-MyAccount-navigation a {
    justify-content: center;
    min-height: 44px;
    padding: 0 10px;
    text-align: center;
  }

  .woocommerce-MyAccount-navigation a::after {
    display: none;
  }

  .lmx-single-summary,
  .lmx-order-review {
    position: static;
  }
}

/* Editorial brand and HydroMesh stories */
.lmx-editorial {
  overflow: clip;
  background: #ffffff;
}

.lmx-editorial-shell {
  width: min(calc(100% - 64px), 1380px);
  margin-inline: auto;
}

.lmx-editorial h1,
.lmx-editorial h2,
.lmx-editorial p {
  letter-spacing: 0;
}

.lmx-editorial h1,
.lmx-editorial h2 {
  margin: 0;
  font-family: var(--lmx-font-display);
  font-weight: 600;
  line-height: 1.04;
  text-wrap: balance;
}

.lmx-editorial sup {
  position: relative;
  top: -0.25em;
  font-size: 0.35em;
}

.lmx-editorial-label,
.lmx-editorial-index {
  margin: 0 0 24px;
  color: var(--lmx-gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.lmx-editorial-index {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lmx-editorial-index::after {
  width: 54px;
  height: 1px;
  content: "";
  background: currentColor;
}

.lmx-editorial-index span {
  font-size: 24px;
  font-weight: 500;
}

.lmx-editorial-lead {
  max-width: 620px;
  margin: 28px 0 0;
  color: #45413b;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.75;
}

.lmx-editorial-hero {
  position: relative;
  min-height: clamp(520px, calc(100svh - 210px), 760px);
  isolation: isolate;
}

.lmx-editorial-hero > img {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lmx-editorial-hero-copy {
  display: flex;
  min-height: inherit;
  flex-direction: column;
  justify-content: center;
  padding-block: 110px;
}

.lmx-brand-hero h1 {
  max-width: 720px;
  font-size: clamp(50px, 6.25vw, 102px);
}

.lmx-brand-hero h1 strong {
  color: #9a702c;
  font-weight: inherit;
}

.lmx-brand-pillars {
  display: flex;
  gap: clamp(24px, 4vw, 70px);
  margin: 52px 0 0;
}

.lmx-brand-pillars div {
  min-width: 110px;
}

.lmx-brand-pillars dt {
  font-size: 13px;
  font-weight: 800;
}

.lmx-brand-pillars dd {
  margin: 5px 0 0;
  color: #8a8278;
  font-family: var(--lmx-font-sans);
  font-size: 13px;
  font-weight: 500;
}

.lmx-editorial-section {
  padding-block: clamp(104px, 12vw, 190px);
}

.lmx-editorial-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(56px, 9vw, 150px);
  align-items: center;
}

.lmx-editorial-split--reverse .lmx-editorial-copy {
  order: 2;
}

.lmx-editorial-split--reverse .lmx-editorial-media {
  order: 1;
}

.lmx-editorial-copy h2,
.lmx-editorial-heading-row h2 {
  font-size: clamp(42px, 5vw, 78px);
}

.lmx-editorial-copy h2 small {
  display: block;
  margin-top: 14px;
  color: var(--lmx-gold);
  font-family: var(--lmx-font-display);
  font-size: 0.27em;
  font-weight: 400;
}

.lmx-editorial-copy > p:not(.lmx-editorial-index, .lmx-editorial-kicker) {
  max-width: 520px;
  margin: 20px 0 0;
  color: #5d5851;
  font-size: 17px;
  line-height: 1.85;
}

.lmx-editorial-kicker {
  margin: 30px 0 0;
  color: #1b1916;
  font-size: 19px;
  font-weight: 750;
}

.lmx-editorial-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #f5f1e8;
}

.lmx-editorial-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.lmx-editorial-media--portrait {
  width: min(100%, 820px);
  justify-self: end;
}

.lmx-editorial-media--landscape img,
.lmx-editorial-media--wide img {
  aspect-ratio: 16 / 9;
}

.lmx-editorial-media figcaption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.86);
  color: #5f584f;
  font-family: var(--lmx-font-sans);
  font-size: 12px;
  font-weight: 500;
}

.lmx-brand-science {
  background: #f7f4ed;
}

.lmx-brand-ready {
  display: grid;
  gap: 10px;
  margin-top: 30px;
  padding: 24px;
  border: 1px solid rgba(181, 138, 67, 0.28);
  background: rgba(255, 252, 245, 0.82);
}

.lmx-brand-ready > span,
.lmx-brand-ready-line strong {
  color: var(--lmx-accent-2);
  font-family: var(--lmx-font-sans);
  font-size: 13px;
  font-weight: 700;
}

.lmx-brand-ready > strong {
  font-size: 20px;
  line-height: 1.4;
}

.lmx-brand-ready ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 4px 0 0;
  padding: 14px 0 0;
  border-top: 1px solid rgba(181, 138, 67, 0.2);
  list-style: none;
}

.lmx-brand-ready li {
  color: var(--lmx-muted);
  font-size: 12px;
  font-weight: 700;
}

.lmx-brand-ready-line {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(181, 138, 67, 0.25);
  color: var(--lmx-muted);
  font-size: 14px;
}

.lmx-editorial-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.58fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: end;
  margin-bottom: clamp(50px, 7vw, 100px);
}

.lmx-editorial-heading-row > p {
  margin: 0;
  color: #625d56;
  font-size: 17px;
  line-height: 1.8;
}

.lmx-brand-brighten .lmx-editorial-media--wide {
  width: min(100%, 1180px);
  margin-inline: auto;
}

.lmx-brand-brighten .lmx-editorial-media--wide img {
  object-position: center 42%;
}

.lmx-editorial-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid #d9d3c8;
}

.lmx-editorial-facts li {
  display: grid;
  gap: 18px;
  min-height: 150px;
  align-content: center;
  padding: 24px clamp(20px, 4vw, 58px);
  border-right: 1px solid #d9d3c8;
}

.lmx-editorial-facts li:last-child {
  border-right: 0;
}

.lmx-editorial-facts strong {
  color: var(--lmx-gold);
  font-family: var(--lmx-font-sans);
  font-size: 14px;
  font-weight: 700;
}

.lmx-editorial-facts span {
  font-size: 15px;
  font-weight: 700;
}

.lmx-brand-routine {
  background: #fbfaf7;
}

.lmx-routine-line {
  display: grid;
  gap: 0;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #d9d3c8;
}

.lmx-routine-line li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid #d9d3c8;
  font-size: 14px;
  font-weight: 700;
}

.lmx-routine-line span {
  color: #9a702c;
  font-family: var(--lmx-font-sans);
  font-weight: 600;
}

.lmx-brand-manifesto {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  isolation: isolate;
}

.lmx-brand-manifesto > img {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lmx-brand-manifesto h2,
.lmx-hydromesh-cta h2 {
  max-width: 900px;
  font-size: clamp(48px, 6.2vw, 92px);
}

.lmx-brand-manifesto p:not(.lmx-editorial-label) {
  margin: 30px 0 0;
  color: #514a40;
  font-size: 18px;
  line-height: 1.8;
}

.lmx-editorial-link {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  gap: 18px;
  margin-top: 46px;
  padding-bottom: 8px;
  border-bottom: 1px solid currentColor;
  font-size: 15px;
  font-weight: 800;
}

.lmx-editorial-link span {
  font-size: 21px;
  transition: transform 180ms ease;
}

.lmx-editorial-link:hover span {
  transform: translateX(5px);
}

.lmx-hydromesh-story {
  --lmx-story-accent: #65509d;
  color: #17151b;
}

.lmx-hydromesh-story .lmx-editorial-index,
.lmx-hydromesh-story .lmx-editorial-label {
  color: var(--lmx-story-accent);
}

.lmx-hydromesh-hero > img {
  object-position: center;
}

.lmx-hydromesh-hero .lmx-editorial-hero-copy {
  align-items: flex-start;
}

.lmx-hydromesh-hero h1 {
  max-width: 780px;
  font-family: var(--lmx-font-display);
  font-size: clamp(50px, 5.8vw, 92px);
  font-weight: 400;
  line-height: 0.96;
}

.lmx-hydromesh-subtitle {
  margin: 28px 0 0;
  color: var(--lmx-story-accent);
  font-size: clamp(19px, 1.8vw, 28px);
  font-weight: 700;
}

.lmx-hydromesh-hero .lmx-editorial-lead {
  max-width: 560px;
}

.lmx-hydromesh-features {
  border-block: 1px solid #dfd9ec;
  background: #ffffff;
}

.lmx-hydromesh-features .lmx-editorial-shell {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.lmx-hydromesh-features .lmx-editorial-shell > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  min-height: 148px;
  align-content: center;
  padding: 28px;
  border-right: 1px solid #dfd9ec;
}

.lmx-hydromesh-features .lmx-editorial-shell > div:first-child {
  border-left: 1px solid #dfd9ec;
}

.lmx-hydromesh-features strong {
  color: #8a78bc;
  font-family: var(--lmx-font-sans);
  font-size: 12px;
  font-weight: 700;
}

.lmx-hydromesh-features span {
  font-family: var(--lmx-font-sans);
  font-size: 16px;
  font-weight: 600;
}

.lmx-hydromesh-features small {
  display: block;
  margin-top: 8px;
  color: #6f6878;
  font-family: var(--lmx-font);
  font-size: 12px;
  line-height: 1.5;
}

.lmx-editorial-checks {
  display: grid;
  gap: 12px;
  margin: 32px 0 0;
  padding: 26px 0 0;
  list-style: none;
  border-top: 1px solid #ded8e8;
}

.lmx-editorial-checks li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  font-weight: 700;
}

.lmx-editorial-checks li::before {
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  border: 1px solid var(--lmx-story-accent);
  transform: rotate(45deg);
}

.lmx-hydromesh-comparison {
  padding-block: clamp(100px, 12vw, 180px);
  background: #f3f0f8;
}

.lmx-comparison-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 54px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
}

.lmx-comparison-grid article {
  min-height: 570px;
  display: grid;
  align-content: start;
  padding: clamp(30px, 5vw, 70px);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid #ddd7e8;
}

.lmx-comparison-grid article.is-lumanex {
  border-color: #8b78bc;
  background: #ffffff;
}

.lmx-comparison-grid article > p {
  margin: 0;
  color: #645b70;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.lmx-comparison-grid article > strong {
  margin: 14px 0 36px;
  font-family: var(--lmx-font-display);
  font-size: clamp(58px, 6vw, 90px);
  font-weight: 400;
  line-height: 1;
}

.lmx-comparison-grid article > strong small {
  margin-left: 8px;
  color: #766a82;
  font-size: 0.22em;
}

.lmx-comparison-grid article > span:last-child {
  margin-top: 30px;
  color: #655b70;
  font-size: 14px;
  text-align: center;
}

.lmx-comparison-vs {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #625098;
  color: #ffffff;
  font-family: var(--lmx-font-sans);
  font-size: 13px;
  font-weight: 700;
}

.lmx-layer-stack {
  position: relative;
  display: grid;
  gap: 4px;
  margin-top: 12px;
  padding-top: 32px;
}

.lmx-layer-stack span:not(.lmx-layer-label) {
  display: block;
  width: 100%;
}

.lmx-layer-label {
  position: absolute;
  top: 0;
  left: 0;
  color: #746489;
  font-family: var(--lmx-font-sans);
  font-size: 12px;
  font-weight: 700;
}

.lmx-layer-gel {
  height: 60px;
  background-color: rgba(190, 173, 225, 0.55);
  background-image: radial-gradient(circle at 16px 16px, rgba(255, 255, 255, 0.9) 0 3px, transparent 4px);
  background-size: 32px 32px;
}

.lmx-layer-mesh {
  height: 22px;
  background-color: #7560aa;
  background-image: linear-gradient(45deg, transparent 42%, rgba(255,255,255,.72) 43% 48%, transparent 49%), linear-gradient(-45deg, transparent 42%, rgba(255,255,255,.72) 43% 48%, transparent 49%);
  background-size: 18px 18px;
}

.lmx-layer-skin {
  height: 96px;
  background: #eac4b5;
  border-top: 8px solid #e6b5a7;
}

.lmx-layer-stack--simple .lmx-layer-gel {
  height: 118px;
  opacity: 0.72;
}

.lmx-hydromesh-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 44px 0 0;
  border-top: 1px solid #dcd5e6;
}

.lmx-hydromesh-benefits div {
  min-height: 118px;
  padding: 22px 18px 22px 0;
  border-bottom: 1px solid #dcd5e6;
}

.lmx-hydromesh-benefits div:nth-child(odd) {
  border-right: 1px solid #dcd5e6;
}

.lmx-hydromesh-benefits div:nth-child(even) {
  padding-left: 18px;
}

.lmx-hydromesh-benefits dt {
  color: var(--lmx-story-accent);
  font-family: var(--lmx-font-sans);
  font-size: 14px;
  font-weight: 700;
}

.lmx-hydromesh-benefits dd {
  margin: 8px 0 0;
  color: #6c6573;
  font-size: 12px;
  line-height: 1.55;
}

.lmx-hydromesh-gallery {
  padding-block: clamp(104px, 12vw, 190px);
  background: #15131a;
  color: #ffffff;
}

.lmx-hydromesh-gallery .lmx-editorial-heading-row > p {
  color: #bcb6c5;
}

.lmx-hydromesh-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
  align-items: start;
}

.lmx-hydromesh-gallery-grid figure {
  margin: 0;
}

.lmx-hydromesh-gallery-grid figure:nth-child(1) {
  grid-column: 1 / span 5;
}

.lmx-hydromesh-gallery-grid figure:nth-child(2) {
  grid-column: 6 / span 4;
  margin-top: 110px;
}

.lmx-hydromesh-gallery-grid figure:nth-child(3) {
  grid-column: 10 / span 3;
  margin-top: 44px;
}

.lmx-hydromesh-gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1.15;
  object-fit: cover;
}

.lmx-hydromesh-gallery-grid figcaption {
  margin-top: 14px;
  color: #aaa3b2;
  font-family: var(--lmx-font-sans);
  font-size: 12px;
  font-weight: 500;
}

.lmx-hydromesh-routine {
  background: #faf9fc;
}

.lmx-hydromesh-routine-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
}

.lmx-hydromesh-routine-grid figure {
  margin: 0;
}

.lmx-hydromesh-routine-grid img {
  width: 100%;
  aspect-ratio: 1.15 / 1;
  object-fit: cover;
}

.lmx-hydromesh-routine-grid ol {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #d9d3e2;
}

.lmx-hydromesh-routine-grid li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid #d9d3e2;
}

.lmx-hydromesh-routine-grid li strong {
  color: var(--lmx-story-accent);
  font-family: var(--lmx-font-sans);
  font-weight: 700;
}

.lmx-hydromesh-routine-grid li span {
  color: #56505d;
  font-size: 14px;
  line-height: 1.7;
}

.lmx-hydromesh-cta {
  min-height: 620px;
  display: grid;
  align-items: center;
  padding-block: 100px;
  background: #e9e2f2;
}

.lmx-hydromesh-cta h2 {
  color: #271f39;
}

@media (max-width: 1100px) {
  .lmx-editorial-grid,
  .lmx-editorial-heading-row,
  .lmx-hydromesh-routine-grid {
    grid-template-columns: 1fr;
  }

  .lmx-editorial-split--reverse .lmx-editorial-copy,
  .lmx-editorial-split--reverse .lmx-editorial-media {
    order: initial;
  }

  .lmx-editorial-copy {
    max-width: 680px;
  }

  .lmx-editorial-media--portrait {
    justify-self: stretch;
  }

  .lmx-editorial-heading-row {
    align-items: start;
  }

  .lmx-hydromesh-features .lmx-editorial-shell {
    grid-template-columns: 1fr 1fr;
  }

  .lmx-hydromesh-features .lmx-editorial-shell > div:nth-child(3) {
    border-left: 1px solid #dfd9ec;
  }

  .lmx-hydromesh-features .lmx-editorial-shell > div:nth-child(-n+2) {
    border-bottom: 1px solid #dfd9ec;
  }

  .lmx-hydromesh-why .lmx-editorial-copy {
    order: 1;
  }

  .lmx-hydromesh-why .lmx-editorial-media {
    order: 2;
  }
}

@media (max-width: 760px) {
  .lmx-editorial-shell {
    width: min(calc(100% - 36px), 1380px);
  }

  .lmx-editorial-hero {
    min-height: 680px;
  }

  .lmx-editorial-hero-copy {
    justify-content: flex-end;
    padding-block: 74px;
  }

  .lmx-brand-hero > img {
    object-position: 58% center;
  }

  .lmx-brand-hero h1 {
    font-size: clamp(42px, 12.5vw, 60px);
  }

  .lmx-brand-pillars {
    display: none;
  }

  .lmx-editorial-lead {
    font-size: 15px;
    line-height: 1.7;
  }

  .lmx-brand-ready {
    padding: 20px;
  }

  .lmx-brand-ready ul {
    grid-template-columns: 1fr;
  }

  .lmx-editorial-section {
    padding-block: 88px;
  }

  .lmx-editorial-grid {
    gap: 44px;
  }

  .lmx-editorial-copy h2,
  .lmx-editorial-heading-row h2 {
    font-size: 42px;
  }

  .lmx-editorial-copy > p:not(.lmx-editorial-index, .lmx-editorial-kicker),
  .lmx-editorial-heading-row > p {
    font-size: 15px;
  }

  .lmx-editorial-media figcaption {
    position: static;
    padding: 10px 0 0;
    background: transparent;
  }

  .lmx-editorial-heading-row {
    gap: 28px;
    margin-bottom: 44px;
  }

  .lmx-editorial-facts {
    grid-template-columns: 1fr;
  }

  .lmx-editorial-facts li {
    min-height: 105px;
    border-right: 0;
    border-bottom: 1px solid #d9d3c8;
  }

  .lmx-brand-manifesto {
    min-height: 620px;
  }

  .lmx-brand-manifesto h2,
  .lmx-hydromesh-cta h2 {
    font-size: 45px;
  }

  .lmx-hydromesh-hero {
    min-height: 0;
    display: flex;
    flex-direction: column;
    background: #f5f3fa;
  }

  .lmx-hydromesh-hero > img {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 300px;
    min-height: 300px;
    object-position: 68% center;
  }

  .lmx-hydromesh-hero .lmx-editorial-hero-copy {
    min-height: 0;
    padding-block: 30px 44px;
  }

  .lmx-hydromesh-hero h1 {
    font-size: clamp(38px, 10.5vw, 48px);
  }

  .lmx-hydromesh-subtitle {
    margin-top: 16px;
    font-size: 18px;
  }

  .lmx-hydromesh-hero .lmx-editorial-lead {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.6;
  }

  .lmx-hydromesh-features .lmx-editorial-shell {
    width: 100%;
  }

  .lmx-hydromesh-features .lmx-editorial-shell > div {
    min-height: 132px;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px 18px;
  }

  .lmx-comparison-grid {
    grid-template-columns: 1fr;
  }

  .lmx-comparison-grid article {
    min-height: 510px;
  }

  .lmx-comparison-vs {
    justify-self: center;
  }

  .lmx-hydromesh-benefits {
    grid-template-columns: 1fr;
  }

  .lmx-hydromesh-benefits div:nth-child(odd) {
    border-right: 0;
  }

  .lmx-hydromesh-benefits div:nth-child(even) {
    padding-left: 0;
  }

  .lmx-hydromesh-gallery-grid {
    display: flex;
    width: calc(100vw - 18px);
    gap: 14px;
    overflow-x: auto;
    padding: 0 18px 24px 0;
    scroll-snap-type: x mandatory;
  }

  .lmx-hydromesh-gallery-grid figure,
  .lmx-hydromesh-gallery-grid figure:nth-child(n) {
    flex: 0 0 min(78vw, 340px);
    margin: 0;
    scroll-snap-align: start;
  }

  .lmx-hydromesh-routine-grid {
    gap: 40px;
  }

  .lmx-hydromesh-cta {
    min-height: 540px;
  }

  .lmx-single-overview {
    gap: 28px;
  }
}

@media (max-width: 760px) {
  :root {
    --lmx-header: 64px;
  }

  .lmx-container,
  .lmx-header-main,
  .lmx-category-menu {
    width: min(calc(100% - 28px), var(--lmx-container));
  }

  .lmx-topbar {
    height: 34px;
    font-size: 12px;
  }

  .lmx-header-actions .lmx-icon-link:first-of-type {
    display: none;
  }

  .lmx-language-switcher {
    max-width: none;
  }

  .lmx-language-toggle {
    min-height: 36px;
    padding: 0 9px;
  }

  .lmx-language-toggle em {
    display: none;
  }

  .lmx-language-menu {
    right: -54px;
  }

  .lmx-brand {
    font-size: 22px;
  }

  .lmx-primary-nav {
    top: calc(var(--lmx-header) + 34px);
  }

  .lmx-category-menu {
    gap: 20px;
  }

  .lmx-hero-track,
  .lmx-hero-image {
    min-height: 560px;
    height: 560px;
  }

  .lmx-hero-slide::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.48) 54%, rgba(0, 0, 0, 0.08));
  }

  .lmx-hero-content {
    left: 22px;
    width: calc(100% - 44px);
    top: auto;
    bottom: 86px;
    transform: none;
  }

  .lmx-hero-content h1 {
    font-size: 42px;
  }

  .lmx-hero-content p:not(.lmx-eyebrow) {
    font-size: 16px;
  }

  .lmx-slider-controls {
    right: 22px;
    bottom: 24px;
  }

  .lmx-medicube-hero {
    padding: 18px 0 34px;
  }

  .lmx-medicube-track {
    gap: 12px;
  }

  .lmx-medicube-slide {
    flex-basis: min(76vw, 340px);
    transform: translate3d(0, -22px, 0) scale(0.9);
  }

  .lmx-medicube-card {
    border-radius: 14px;
  }

  .lmx-medicube-copy {
    left: 24px;
    right: 24px;
    bottom: 30px;
  }

  .lmx-medicube-kicker,
  .lmx-medicube-copy > span:last-child {
    font-size: 14px;
  }

  .lmx-medicube-copy strong {
    font-size: 34px;
  }

  .lmx-medicube-controls {
    left: auto;
    right: 24px;
    bottom: 48px;
    transform: none;
  }

  .lmx-home-section {
    padding-top: 58px;
  }

  .lmx-section-head {
    align-items: start;
    flex-direction: column;
  }

  .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 12px;
  }

  .lmx-recommend-section {
    padding: 52px 0 66px;
  }

  .lmx-recommend-section .woocommerce ul.products {
    display: flex;
    gap: 10px;
    max-width: none;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding-bottom: 34px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .lmx-recommend-section .woocommerce ul.products::-webkit-scrollbar {
    display: none;
  }

  .lmx-recommend-section .lmx-product-card {
    flex: 0 0 min(72vw, 282px);
    flex-basis: min(72vw, 282px);
    scroll-snap-align: start;
  }

  .lmx-product-title {
    min-height: 42px;
    font-size: 14px;
  }

  .lmx-product-desc {
    min-height: 36px;
    font-size: 12px;
  }

  .lmx-product-price {
    font-size: 16px;
  }

  .lmx-product-actions .button {
    min-height: 40px;
    padding-inline: 8px;
    font-size: 13px;
  }

  .lmx-shop-main,
  .lmx-product-main,
  .lmx-page {
    padding: 34px 0 68px;
  }

  .lmx-single-summary,
  .lmx-checkout-panel,
  .lmx-order-review {
    padding: 20px;
  }

  .lmx-single-product--editorial .lmx-single-overview {
    padding: 18px;
  }

  .woocommerce-tabs .tabs {
    overflow-x: auto;
  }

  .cart-collaterals {
    display: block;
  }

  .coupon {
    display: grid;
  }

  .coupon .input-text {
    max-width: none;
  }

  .lmx-cart-toast {
    right: 14px;
    bottom: 14px;
    width: calc(100vw - 28px);
  }

  .logged-in.woocommerce-account .woocommerce {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .woocommerce-MyAccount-navigation {
    position: static;
  }

  .woocommerce-MyAccount-navigation ul {
    grid-template-columns: 1fr 1fr;
  }

  .woocommerce-MyAccount-navigation a {
    min-height: 42px;
    font-size: 13px;
  }

  .lmx-account-hero {
    display: grid;
    padding: 22px;
  }

  .lmx-account-primary-link {
    width: 100%;
  }

  .lmx-account-metrics {
    grid-template-columns: 1fr;
  }

  .lmx-account-metrics a {
    border-right: 0;
    border-bottom: 1px solid #e7e7e7;
  }

  .lmx-account-metrics a:last-child {
    border-bottom: 0;
  }

  .lmx-account-grid {
    grid-template-columns: 1fr;
  }

  .lmx-account-panel {
    padding: 20px;
  }

  .lmx-account-order {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .lmx-account-order span {
    grid-row: auto;
  }

  .lmx-footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }

  .lmx-header-main {
    gap: 10px;
  }
}
