:root {
  --mcl-color-text: #101828;
  --mcl-color-bg: #ffffff;
  --mcl-color-muted: #667085;
  --mcl-color-border: #e4e7ec;
  --mcl-color-accent: #101828;
  --mcl-green: #2f7d58;
  --mcl-space-2: 0.5rem;
  --mcl-space-3: 0.75rem;
  --mcl-space-4: 1rem;
  --mcl-space-6: 1.5rem;
  --mcl-space-8: 2rem;

  /* Height of the sticky green category bar (.site-header__bottom).
     Overridden at breakpoints where the bar wraps onto more rows, and
     consumed by the sticky shop filters offset (.mcl-shop-layout__filters). */
  --mcl-category-bar-height: 72px;
  /* Gap between the pinned category bar and the sticky filters column. */
  --mcl-category-bar-gap: 24px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
  color: var(--mcl-color-text);
  background: var(--mcl-color-bg);
}

h6,
.h6,
h5,
.h5,
h4,
.h4,
h3,
.h3,
h2,
.h2,
h1,
.h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--bs-heading-color);
}

h1,
.h1 {
  font-size: calc(1.34375rem + 1.125vw);
}
@media (min-width: 1200px) {
  h1,
  .h1 {
    font-size: 2.1875rem;
  }
}

h2,
.h2 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  h2,
  .h2 {
    font-size: 1.75rem;
  }
}

h3,
.h3 {
  font-size: calc(1.278125rem + 0.3375vw);
}
@media (min-width: 1200px) {
  h3,
  .h3 {
    font-size: 1.53125rem;
  }
}

h4,
.h4 {
  font-size: calc(1.25625rem + 0.075vw);
}
@media (min-width: 1200px) {
  h4,
  .h4 {
    font-size: 1.3125rem;
  }
}

h5,
.h5 {
  font-size: 1.09375rem;
}

h6,
.h6 {
  font-size: 0.875rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #686868;
}

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

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

.site-header,
.site-footer,
.site-main {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

.site-header {
  width: 100%;
  margin-inline: 0;
  position: relative;
}

.site-header__top {
  border-bottom: 1px solid var(--mcl-color-border);
  background: #fff;
}

.site-header__top-inner {
  width: min(1440px, 95vw);
  margin-inline: auto;
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-header__branding img {
  max-height: 68px;
  width: auto;
}

.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--mcl-space-4);
  align-items: center;
}

.site-header__nav--primary .menu {
  gap: 3.25rem;
  justify-content: center;
}

.site-header__nav--primary {
  flex: 1;
}

.site-header__nav--actions {
  margin-left: auto;
  position: relative;
}

.site-header-mobile-toggle {
  display: none;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid var(--mcl-color-border);
  border-radius: 999px;
  background: #fff;
  color: inherit;
  font: inherit;
  font-size: 0.92rem;
  line-height: 1;
  padding: 0.5rem 0.82rem;
  cursor: pointer;
}

.site-header-mobile-toggle__icon {
  width: 16px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  position: relative;
}

.site-header-mobile-toggle__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  border-top: 2px solid currentColor;
  transform: translateY(-50%);
}

.site-header-mobile-toggle[aria-expanded="true"]
  .site-header-mobile-toggle__icon {
  border-color: transparent;
}

.site-header-mobile-toggle[aria-expanded="true"]
  .site-header-mobile-toggle__icon::before {
  transform: translateY(-50%) rotate(45deg);
  transform-origin: center;
}

.site-header-mobile-toggle[aria-expanded="true"]
  .site-header-mobile-toggle__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  border-top: 2px solid currentColor;
  transform: translateY(-50%) rotate(-45deg);
}

.site-header-mobile-search,
.site-header-mobile-tabs,
.site-header-mobile-overlay,
.site-header-mobile-meta {
  display: none;
}

.site-header-actions {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-header-actions__item a,
.site-header-actions__item button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1;
  font-size: 0.95rem;
  font-weight: 400;
  color: inherit;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.site-header-actions__item--account a {
  gap: 0.65rem;
}

.site-header-actions__item--account {
  position: relative;
}

.site-header-account {
  position: relative;
}

.site-header-account__toggle {
  white-space: nowrap;
}

.site-header-account__label {
  max-width: 12rem;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-header-account__chevron {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header-account__menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  z-index: 1201;
  min-width: 220px;
  display: grid;
  gap: 0.25rem;
  padding: 0.65rem;
  background: #fff;
  border: 1px solid var(--mcl-color-border);
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.12);
}

.site-header-account__menu[hidden] {
  display: none;
}

.site-header-account__menu a {
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
}

.site-header-account__menu a:hover,
.site-header-account__menu a:focus-visible {
  background: rgba(47, 125, 88, 0.08);
}

.site-header-actions__icon {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header-actions__divider {
  width: 1px;
  height: 36px;
  background: #8d929a;
}

.site-header-actions__item--cart a {
  position: relative;
}

.site-header-actions__badge {
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -8px;
  right: -12px;
  background: #111827;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
}

.site-header-actions__item--language a {
  gap: 0.4rem;
  font-size: 0.95rem;
}

.site-header-search-panel {
  position: absolute;
  top: calc(100% + 0.85rem);
  right: 0;
  z-index: 1005;
  width: min(360px, 92vw);
  background: #fff;
  border: 1px solid var(--mcl-color-border);
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.12);
  border-radius: 8px;
  padding: 0.7rem;
  display: none;
}

.site-header-search-panel.is-open {
  display: block;
}

.site-header-search-form {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.site-header-search-form input[type="search"] {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--mcl-color-border);
  border-radius: 6px;
  padding: 0.58rem 0.72rem;
  font-size: 0.9rem;
  line-height: 1.2;
}

.site-header-search-form button {
  border: 0;
  border-radius: 6px;
  background: #2f7d58;
  color: #fff;
  font-size: 0.86rem;
  line-height: 1;
  padding: 0.63rem 0.75rem;
  cursor: pointer;
}

.site-header-actions__flag {
  font-size: 1rem;
  line-height: 1;
}

.site-header__bottom {
  background: #2f7d58;
  position: sticky;
  top: 0;
  z-index: 1100;
  width: 100%;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.site-header__nav--categories {
  width: 100%;
  margin-inline: auto;
}

body.admin-bar .site-header__bottom {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .site-header__bottom {
    top: 46px;
  }
}

/* Persistent sticky category bar on desktop / tablet.
   .site-header__bottom is the last child of the short .site-header, so a
   sticky on it alone has no scroll travel and unsticks immediately. Instead
   we stick the whole header and pull it up by the height of the white top
   bar (min-height 96px + 1px border = 97px) so only the green category bar
   stays pinned to the top of the viewport. */
@media (min-width: 1025px) {
  .site-header {
    position: sticky;
    top: -97px;
    z-index: 1100;
  }

  body.admin-bar .site-header {
    top: -65px; /* 32px WP admin bar - 97px top bar */
  }

  .site-header__bottom {
    position: static;
  }
}

.menu--categories,
.mcl-category-menu {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: min(1440px, 95vw);
  min-height: var(--mcl-category-bar-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: nowrap;
  position: relative;
}

.menu--categories a,
.mcl-category-menu__link {
  color: #fff;
  font-weight: 400;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  min-height: var(--mcl-category-bar-height);
  white-space: nowrap;
  line-height: 1.2;
  padding: 0;
}

.mcl-category-menu__item {
  position: relative;
  min-width: 0;
}

.mcl-category-menu__item--has-children > .mcl-category-menu__link {
  background: transparent;
  transition:
    color 0.18s ease,
    opacity 0.18s ease;
}

.mcl-category-menu__item--has-children:hover > .mcl-category-menu__link,
.mcl-category-menu__item--has-children:focus-within > .mcl-category-menu__link,
.mcl-category-menu__item.is-current > .mcl-category-menu__link {
  background: transparent;
  color: #fff;
  opacity: 0.86;
}

.mcl-category-menu__submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1001;
  width: min(720px, 60vw);
  max-width: 95vw;
  background: #fff;
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.1);
  padding: 1rem 1.1rem;
}

.mcl-category-menu__item--has-children:hover > .mcl-category-menu__submenu,
.mcl-category-menu__item--has-children:focus-within
  > .mcl-category-menu__submenu,
.mcl-category-menu__item--has-children.is-open > .mcl-category-menu__submenu {
  display: block;
}

/* Keep the submenu inside the viewport for categories near the right edge:
   anchor those to the item's right edge instead of its left edge. */
.mcl-category-menu__item--has-children:nth-last-child(-n + 2)
  > .mcl-category-menu__submenu {
  left: auto;
  right: 0;
}

.mcl-category-menu__submenu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 0.45rem 1.1rem;
}

.mcl-category-menu__submenu-link {
  color: #1d2939;
  font-size: 0.92rem;
  line-height: 1.25;
  font-weight: 500;
}

.mcl-category-menu__submenu-item.is-current .mcl-category-menu__submenu-link,
.mcl-category-menu__submenu-link:hover {
  color: #2f7d58;
}

/* Category bar on medium desktop widths: once the centred container is
   too narrow to hold every name on one line, wrap onto centred rows
   instead of clipping the last categories. The bar grows to two rows here,
   so bump the shared height variable and pin the bar to it so the sticky
   filters offset stays in sync. */
@media (min-width: 1025px) and (max-width: 1280px) {
  :root {
    --mcl-category-bar-height: 80px;
  }

  .mcl-category-menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem 1.25rem;
    min-height: var(--mcl-category-bar-height);
    padding: 0.55rem 0;
  }

  .menu--categories a,
  .mcl-category-menu__link {
    min-height: auto;
    padding: 0.35rem 0;
    font-size: 0.84rem;
  }
}

.menu--primary a,
.site-header-actions a,
.site-header-actions button {
  font-size: 0.95rem;
}

.menu--primary a {
  font-weight: 400;
}

.site-main {
  width: 100%;
  /* padding: var(--mcl-space-8) 0; */
}

.entry,
.front-page-content__inner,
.front-page-products__inner,
.layout--content-sidebar,
.error-404 {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

.layout--content-sidebar {
  display: grid;
  gap: var(--mcl-space-8);
}

.mcl-shop-layout__products .woocommerce {
  width: 100%;
}

.site-main--woocommerce {
  width: 100%;
  margin-inline: 0;
  padding: 40px 0 64px;
}

body.woocommerce-cart .site-main,
body.woocommerce-checkout .site-main,
body.mcl-promotions-page .site-main {
  width: 100%;
  margin-inline: 0;
  padding: 40px 0 64px;
}

.site-main--woocommerce .woocommerce,
.site-main--woocommerce > .product {
  width: min(var(--e-global-container-width, 1200px), 92vw);
  margin-inline: auto;
}

.site-main--woocommerce .woocommerce-breadcrumb,
.site-main--woocommerce > .page-title,
.mcl-shop-archive__header {
  width: min(var(--e-global-container-width, 1200px), 92vw);
  margin-inline: auto;
}

.site-main--woocommerce .woocommerce-breadcrumb {
  margin: 0 auto 8px;
  color: #646a73;
  font-size: 0.92rem;
}

body.woocommerce-cart .entry--page .entry__header,
body.woocommerce-checkout .entry--page .entry__header,
body.mcl-promotions-page .entry--page .entry__header {
  width: min(var(--e-global-container-width, 1200px), 92vw);
  margin: 0 auto 24px;
}

body.woocommerce-cart .entry--page .woocommerce-breadcrumb,
body.woocommerce-checkout .entry--page .woocommerce-breadcrumb,
body.mcl-promotions-page .entry--page .woocommerce-breadcrumb {
  margin: 0 auto 8px;
  color: #646a73;
  font-size: 0.92rem;
}

body.woocommerce-cart .entry--page .entry__title,
body.woocommerce-checkout .entry--page .entry__title,
body.mcl-promotions-page .entry--page .entry__title {
  margin: 0;
  color: #1f2329;
  font-size: clamp(2.25rem, 3.5vw, 3.5rem);
  line-height: 1.08;
  font-weight: 700;
}

body.mcl-promotions-page .entry--page .entry__content {
  width: min(var(--e-global-container-width, 1200px), 92vw);
  margin-inline: auto;
}

body.mcl-promotions-page .entry--page .mcl-promotions-empty {
  margin: 0;
  padding: 56px 32px;
  border: 1px solid #e4e7ec;
  border-radius: 24px;
  background: #fff;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 18px;
}

body.mcl-promotions-page .entry--page .mcl-promotions-empty::before {
  content: none;
}

body.mcl-promotions-page .entry--page .mcl-promotions-empty__icon {
  width: 92px;
  height: 92px;
  border-radius: 999px;
  background: #ecf3ff;
  color: #1d4ea5;
  display: grid;
  place-items: center;
}

body.mcl-promotions-page .entry--page .mcl-promotions-empty__icon svg {
  width: 48px;
  height: 48px;
}

body.mcl-promotions-page .entry--page .mcl-promotions-empty__title {
  margin: 0;
  color: #1f2329;
  font-size: clamp(1.7rem, 2.8vw, 2.35rem);
  line-height: 1.14;
  font-weight: 700;
}

body.mcl-promotions-page .entry--page .mcl-promotions-empty__description {
  max-width: 680px;
  margin: 0;
  color: #646a73;
  font-size: clamp(1rem, 1.3vw, 1.28rem);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  body.mcl-promotions-page .entry--page .mcl-promotions-empty__title {
    font-size: 2rem;
  }

  body.mcl-promotions-page .entry--page .mcl-promotions-empty__description {
    font-size: 1.12rem;
  }
}

.mcl-shop-layout.mcl-shop-layout--empty {
  grid-template-columns: minmax(0, 1fr);
  min-height: 0;
}

.mcl-shop-layout__products .mcl-products-empty {
  margin: 0;
  padding: 56px 32px;
  border: 1px solid #e4e7ec;
  border-radius: 24px;
  background: #fff;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 18px;
}

.mcl-shop-layout__products .mcl-products-empty::before {
  content: none;
}

.mcl-products-empty__icon {
  width: 92px;
  height: 92px;
  border-radius: 999px;
  background: #ecf3ff;
  color: #1d4ea5;
  display: grid;
  place-items: center;
}

.mcl-products-empty__icon svg {
  width: 48px;
  height: 48px;
}

.mcl-products-empty__title {
  margin: 0;
  color: #1f2329;
  font-size: clamp(1.7rem, 2.8vw, 2.35rem);
  line-height: 1.14;
  font-weight: 700;
}

.mcl-products-empty__description {
  max-width: 680px;
  margin: 0;
  color: #646a73;
  font-size: clamp(1rem, 1.3vw, 1.28rem);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .mcl-products-empty__title {
    font-size: 2rem;
  }

  .mcl-products-empty__description {
    font-size: 1.12rem;
  }
}

.mcl-shop-archive__header {
  margin: 0 auto 24px;
}

.mcl-shop-archive__title,
.site-main--woocommerce > .page-title {
  margin: 0;
  color: #1f2329;
  font-size: clamp(2.25rem, 3.5vw, 3.5rem);
  line-height: 1.08;
  font-weight: 700;
}

.mcl-shop-layout {
  width: min(var(--e-global-container-width, 1200px), 92vw);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  /* Give the sticky sidebar room to travel even with few products
     (viewport minus the pinned category bar + its gap). */
  min-height: calc(
    100vh - var(--mcl-category-bar-height) - var(--mcl-category-bar-gap)
  );
}

.mcl-shop-layout__filters {
  position: sticky;
  /* Offset for the sticky category bar (.site-header__bottom) plus spacing. */
  top: calc(var(--mcl-category-bar-height) + var(--mcl-category-bar-gap));
}

.mcl-shop-sidebar,
.mcl-shop-layout__filters .widget,
.mcl-shop-layout__products .woocommerce .woocommerce-notices-wrapper,
.mcl-shop-layout__products .woocommerce .woocommerce-result-count,
.mcl-shop-layout__products .woocommerce .woocommerce-ordering {
  margin: 0;
}

.mcl-shop-sidebar {
  padding: 0;
}

.mcl-shop-sidebar__summary {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 16px 0;
  cursor: pointer;
  list-style: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2329;
}

.mcl-shop-sidebar__summary::-webkit-details-marker {
  display: none;
}

.mcl-shop-sidebar__summary::after {
  content: "+";
  font-size: 1.25rem;
  line-height: 1;
  color: #17864f;
}

.mcl-shop-sidebar__content {
  display: grid;
  gap: 24px;
  padding: 24px;
  border: 1px solid #eee;
  border-radius: 16px;
  background: #fff;
}

.mcl-shop-layout__filters .widget {
  padding: 0;
}

.mcl-shop-layout__filters .widget__title,
.mcl-shop-layout__filters .wc-block-product-filters .wp-block-heading {
  margin: 0;
  color: #1f2329;
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 600;
}

.mcl-shop-layout__filters .widget + .widget,
.mcl-shop-layout__filters .wc-block-product-filters > * + * {
  margin-top: 24px;
}

.mcl-shop-layout__filters .widget ul,
.mcl-shop-layout__filters .widget ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mcl-shop-layout__filters .product-categories li,
.mcl-shop-layout__filters .woocommerce-widget-layered-nav-list li,
.mcl-shop-layout__filters .wc-block-product-filter-checkbox-list__label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mcl-shop-layout__filters .product-categories > li,
.mcl-shop-layout__filters .woocommerce-widget-layered-nav-list > li,
.mcl-shop-layout__filters .wc-block-product-filter-checkbox-list__items > li {
  padding: 8px 0;
  border-top: 1px solid #f1f2f4;
}

.mcl-shop-layout__filters .product-categories > li:first-child,
.mcl-shop-layout__filters .woocommerce-widget-layered-nav-list > li:first-child,
.mcl-shop-layout__filters
  .wc-block-product-filter-checkbox-list__items
  > li:first-child {
  border-top: 0;
  padding-top: 0;
}

.mcl-shop-layout__filters .product-categories .count,
.mcl-shop-layout__filters .woocommerce-widget-layered-nav-list__count {
  margin-left: auto;
  color: #646a73;
  font-size: 0.9rem;
}

.mcl-shop-layout__filters .product-categories li.cat-parent > a,
.mcl-shop-layout__filters .woocommerce-widget-layered-nav-list li > a,
.mcl-shop-layout__filters .wc-block-product-filter-taxonomy__items a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  color: #1f2329;
}

.mcl-shop-layout__filters .product-categories li.cat-parent > a {
  padding-right: 20px;
}

.mcl-shop-layout__filters .product-categories li.cat-parent > a::after {
  content: "⌄";
  position: absolute;
  right: 0;
  top: 0;
  color: #17864f;
}

.mcl-shop-layout__filters .product-categories .children {
  width: 100%;
  margin-top: 8px;
  padding-left: 16px;
  border-left: 1px solid #e9ecef;
}

.mcl-shop-layout__filters .wc-block-product-filter-checkbox-list__items {
  display: grid;
  gap: 8px;
}

.mcl-shop-layout__filters
  .wc-block-product-filter-checkbox-list__input-wrapper {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.mcl-shop-layout__filters .wc-block-product-filter-checkbox-list__input,
.mcl-shop-layout__filters
  .woocommerce-widget-layered-nav-list__item
  input[type="checkbox"] {
  width: 16px;
  height: 16px;
  border: 1px solid #cfd4dc !important;
  border-radius: 4px !important;
}

.mcl-shop-layout__filters .wc-block-product-filter-checkbox-list__input:checked,
.mcl-shop-layout__filters
  .woocommerce-widget-layered-nav-list__item
  input[type="checkbox"]:checked {
  border-color: #0b7a53 !important;
  background: #0b7a53 !important;
}

.mcl-shop-layout__filters .wc-block-product-filter-checkbox-list__text,
.mcl-shop-layout__filters .woocommerce-widget-layered-nav-list__label {
  color: #1f2329;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 500;
}

.mcl-shop-layout__filters .widget_price_filter .price_slider_wrapper,
.mcl-shop-layout__filters .wc-block-product-filter-price-slider {
  display: grid;
  gap: 16px;
}

.mcl-shop-layout__filters .widget_price_filter .price_label,
.mcl-shop-layout__filters .wc-block-product-filter-price-slider__selected {
  order: -1;
  color: #1f2329;
  font-size: 1rem;
  font-weight: 600;
}

.mcl-shop-layout__filters .widget_price_filter .price_slider,
.mcl-shop-layout__filters .wc-block-product-filter-price-slider__range {
  height: 4px;
  border-radius: 999px;
  background: #d4d7dc;
}

.mcl-shop-layout__filters .widget_price_filter .ui-slider-range,
.mcl-shop-layout__filters
  .wc-block-product-filter-price-slider__range
  .range-bar::before {
  background: #0b7a53;
}

.mcl-shop-layout__filters .widget_price_filter .ui-slider-handle,
.mcl-shop-layout__filters
  .wc-block-product-filter-price-slider
  input[type="range"]::-webkit-slider-thumb,
.mcl-shop-layout__filters
  .wc-block-product-filter-price-slider
  input[type="range"]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border: 2px solid #0b7a53;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(11, 122, 83, 0.18);
}

.mcl-shop-layout__products .woocommerce-result-count,
.mcl-shop-layout__products .woocommerce-ordering {
  display: block;
  margin: 0 0 16px;
  color: #646a73;
  font-size: 0.95rem;
}

.mcl-shop-layout__products .woocommerce-ordering select {
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid #e4e7ec;
  border-radius: 8px;
  background: #fff;
}

.mcl-shop-layout__products .woocommerce ul.products,
.mcl-shop-layout__products .wc-block-product-template {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 32px;
}

.mcl-shop-layout__products .woocommerce ul.products::before,
.mcl-shop-layout__products .woocommerce ul.products::after,
.mcl-shop-layout__products .wc-block-product-template::before,
.mcl-shop-layout__products .wc-block-product-template::after {
  content: none;
}

.mcl-shop-layout__products .woocommerce ul.products li.product,
.mcl-shop-layout__products .wc-block-product-template .wc-block-product {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0;
  border: 1px solid #eee;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  transition: 0.25s;
}

.mcl-shop-layout__products .woocommerce ul.products li.product:hover,
.mcl-shop-layout__products .wc-block-product-template .wc-block-product:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.mcl-shop-layout__products
  .woocommerce
  ul.products
  li.product
  .woocommerce-loop-product__link,
.mcl-shop-layout__products .wc-block-product-template .wp-block-post-title a {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.mcl-shop-layout__products .woocommerce ul.products li.product a img,
.mcl-shop-layout__products
  .wc-block-product-template
  .wc-block-components-product-image
  img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin: 0;
  background: #f6f7f8;
}

.mcl-shop-layout__products
  .woocommerce
  ul.products
  li.product
  .woocommerce-loop-product__title,
.mcl-shop-layout__products .wc-block-product-template .wp-block-post-title {
  margin: 0;
  padding: 16px 16px 8px;
  color: #1f2329;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 600;
}

.mcl-shop-layout__products .woocommerce ul.products li.product .price,
.mcl-shop-layout__products
  .wc-block-product-template
  .wc-block-components-product-price {
  margin: 0;
  padding: 0 16px 16px;
  color: #1f2329;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
}

.mcl-shop-layout__products
  .woocommerce
  ul.products
  li.product
  .button.add_to_cart_button {
  display: none;
}

.mcl-shop-layout__products .mcl-product-stock-badge,
.mcl-shop-layout__products
  .wc-block-product-template
  .wc-block-components-product-stock-indicator {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 16px 16px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #e9f8ef;
  color: #17864f;
  font-size: 0.85rem;
  font-weight: 600;
}

.mcl-shop-layout__products .mcl-product-stock-badge.is-out-of-stock,
.mcl-shop-layout__products
  .wc-block-product-template
  .wc-block-components-product-stock-indicator--out-of-stock {
  background: #eef1f4;
  color: #646a73;
}

.mcl-shop-layout__products .woocommerce-no-products-found,
.mcl-shop-layout__products .woocommerce-info {
  padding: 24px;
  border: 1px solid #eee;
  border-radius: 12px;
  background: #fff;
}

/* My Account (logged out): keep Woo flow, align with MCL login visual style */
body.woocommerce-account:not(.logged-in) .entry--page .entry__title {
  display: none;
}

body.woocommerce-account:not(.logged-in) .entry--page .entry__content {
  width: min(760px, 90vw);
  padding-top: 40px;
  margin-inline: auto;
}

body.woocommerce-account:not(.logged-in) .entry--page .woocommerce {
  margin: 0;
}

body.woocommerce-account:not(.logged-in) .entry--page .woocommerce > h2 {
  margin: 0 0 18px;
  color: #1f2329;
  font-size: clamp(1.8rem, 3.2vw, 2.55rem);
  line-height: 1.12;
  font-weight: 700;
  text-align: center;
}

body.woocommerce-account:not(.logged-in) .entry--page .woocommerce > h2::after {
  content: "Accédez à votre espace client pour consulter vos informations et suivre vos demandes en toute simplicité.";
  display: block;
  margin: 14px auto 0;
  max-width: 620px;
  color: #646a73;
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  line-height: 1.45;
  font-weight: 500;
}

body.woocommerce-account:not(.logged-in)
  .entry--page
  form.woocommerce-form-login,
body.woocommerce-lost-password .entry--page form.woocommerce-ResetPassword {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

body.woocommerce-account:not(.logged-in)
  .entry--page
  form.woocommerce-form-login
  .form-row,
body.woocommerce-lost-password
  .entry--page
  form.woocommerce-ResetPassword
  .form-row {
  margin-bottom: 16px;
}

body.woocommerce-account:not(.logged-in)
  .entry--page
  form.woocommerce-form-login
  label,
body.woocommerce-lost-password
  .entry--page
  form.woocommerce-ResetPassword
  label {
  display: block;
  margin-bottom: 8px;
  color: #1f2329;
  font-size: 0.94rem;
  line-height: 1.2;
  font-weight: 600;
}

body.woocommerce-account:not(.logged-in)
  .entry--page
  form.woocommerce-form-login
  .input-text,
body.woocommerce-lost-password
  .entry--page
  form.woocommerce-ResetPassword
  .input-text {
  min-height: 44px;
  padding: 8px 11px;
  border: 1px solid #cfd3d8;
  border-radius: 6px;
  background: #fff;
  font-size: 0.95rem;
}

body.woocommerce-account:not(.logged-in)
  .entry--page
  form.woocommerce-form-login
  .form-row:last-of-type,
body.woocommerce-lost-password
  .entry--page
  form.woocommerce-ResetPassword
  .form-row:last-of-type {
  margin-bottom: 0;
}

body.woocommerce-account:not(.logged-in)
  .entry--page
  .woocommerce-form-login__rememberme {
  font-size: 1rem;
  font-weight: 500;
}

body.woocommerce-account:not(.logged-in)
  .entry--page
  .woocommerce-LostPassword {
  margin: -6px 0 22px;
  text-align: right;
}

body.woocommerce-account:not(.logged-in)
  .entry--page
  .woocommerce-LostPassword
  a {
  color: #646a73;
  font-size: 1rem;
  text-decoration: underline;
}

body.woocommerce-account:not(.logged-in)
  .entry--page
  .woocommerce-form-login__submit,
body.woocommerce-lost-password .entry--page .woocommerce-Button.button {
  width: 100%;
  min-height: 44px;
  border: 1px solid #de8e6b;
  border-radius: 6px;
  background: #de8e6b;
  color: #fff;
  font-size: 0.96rem;
  font-weight: 600;
}

/* My Account (logged in): premium dashboard shell */
body.woocommerce-account.logged-in .entry--page .entry__header {
  width: min(1200px, 92vw);
  margin: 0 auto 22px;
  padding-top: 40px;
}

body.woocommerce-account.logged-in .entry--page .entry__content {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

body.woocommerce-account.logged-in .entry--page .woocommerce {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  margin: 0;
}

body.woocommerce-account.logged-in
  .entry--page
  .woocommerce-MyAccount-navigation,
body.woocommerce-account.logged-in .entry--page .woocommerce-MyAccount-content {
  float: none;
  width: auto;
}

body.woocommerce-account.logged-in
  .entry--page
  .woocommerce-MyAccount-navigation {
  grid-column: 1;
}

body.woocommerce-account.logged-in .entry--page .woocommerce-MyAccount-content {
  grid-column: 2;
}

body.woocommerce-account.logged-in
  .entry--page
  .woocommerce-MyAccount-navigation
  ul {
  margin: 0;
  padding: 12px;
  list-style: none;
  border: 1px solid #e4e7ec;
  border-radius: 14px;
  background: #fff;
}

body.woocommerce-account.logged-in
  .entry--page
  .woocommerce-MyAccount-navigation
  li
  + li {
  margin-top: 4px;
}

body.woocommerce-account.logged-in
  .entry--page
  .woocommerce-MyAccount-navigation
  a {
  display: block;
  padding: 11px 12px;
  border-radius: 10px;
  color: #1f2329;
  font-size: 0.98rem;
  font-weight: 500;
}

body.woocommerce-account.logged-in
  .entry--page
  .woocommerce-MyAccount-navigation
  li.is-active
  a,
body.woocommerce-account.logged-in
  .entry--page
  .woocommerce-MyAccount-navigation
  a:hover {
  background: #f3f7f4;
  color: #2f7d58;
}

body.woocommerce-account.logged-in .entry--page .woocommerce-MyAccount-content {
  padding: 24px;
  border: 1px solid #e4e7ec;
  border-radius: 14px;
  background: #fff;
}

body.woocommerce-account.logged-in
  .entry--page
  .woocommerce-MyAccount-content
  p {
  margin: 0 0 14px;
  color: #535a64;
  font-size: 1rem;
  line-height: 1.52;
}

body.woocommerce-account.logged-in
  .entry--page
  .woocommerce-MyAccount-content
  p:first-child {
  color: #1f2329;
  font-weight: 600;
}

body.woocommerce-account.logged-in
  .entry--page
  .woocommerce-MyAccount-content
  a {
  color: #2f7d58;
  text-decoration: underline;
}

body.woocommerce-account.logged-in
  .entry--page
  form.woocommerce-EditAccountForm
  .form-row {
  margin-bottom: 14px;
}

body.woocommerce-account.logged-in
  .entry--page
  form.woocommerce-EditAccountForm
  label {
  display: block;
  margin-bottom: 8px;
  color: #1f2329;
  font-size: 0.94rem;
  line-height: 1.2;
  font-weight: 600;
}

body.woocommerce-account.logged-in
  .entry--page
  form.woocommerce-EditAccountForm
  .input-text {
  min-height: 44px;
  padding: 8px 11px;
  border: 1px solid #cfd3d8;
  border-radius: 6px;
  background: #fff;
  font-size: 0.95rem;
}

body.woocommerce-account.logged-in
  .entry--page
  form.woocommerce-EditAccountForm
  fieldset {
  margin: 16px 0 0;
  padding: 0;
  border: 0;
}

body.woocommerce-account.logged-in
  .entry--page
  form.woocommerce-EditAccountForm
  fieldset
  legend {
  margin: 4px 0 10px;
  color: #1f2329;
  font-size: 1.15rem;
  font-weight: 700;
}

body.woocommerce-account.logged-in
  .entry--page
  form.woocommerce-EditAccountForm
  .woocommerce-Button.button {
  width: 100%;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid #de8e6b;
  border-radius: 6px;
  background: #de8e6b;
  color: #fff;
  font-size: 0.96rem;
  font-weight: 600;
}

.entry {
  /* margin-bottom: var(--mcl-space-8); */
}

.entry__title {
  margin: 0 0 var(--mcl-space-4);
  line-height: 1.2;
}

.entry__content p {
  margin: 0 0 var(--mcl-space-4);
}

.button {
  display: inline-block;
  padding: var(--mcl-space-3) var(--mcl-space-6);
  border: 1px solid var(--mcl-color-accent);
  background: var(--mcl-color-accent);
  color: #fff;
  border-radius: 0.375rem;
}

.accent-green {
  color: #2f7d58;
}

.hero {
  padding: 5rem 0;
}

.hero__title {
  margin: 0 0 var(--mcl-space-3);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

/* Home hero slider (MetaSlider) */
.home [id^="metaslider-id-"].metaslider {
  position: relative;
}

.home [id^="metaslider-id-"] .flexslider,
.home [id^="metaslider-id-"] .flex-viewport {
  margin: 0;
  border: 0;
  border-radius: 0;
}

.home [id^="metaslider-id-"] .slides > li {
  position: relative;
}

.home [id^="metaslider-id-"] .slides > li::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.58) 0%,
    rgba(0, 0, 0, 0.35) 42%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.home [id^="metaslider-id-"] img.msDefaultImage {
  width: 100% !important;
  height: clamp(420px, 72vh, 760px) !important;
  object-fit: cover;
}

.home [id^="metaslider-id-"] .caption-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  width: min(1200px, 92vw);
  margin-inline: auto;
  background: transparent !important;
  opacity: 1 !important;
  pointer-events: none;
}

.home [id^="metaslider-id-"] .caption {
  width: min(760px, 100%);
  color: #fff;
  text-align: left;
  background: transparent !important;
  padding: 0 !important;
  opacity: 1 !important;
  pointer-events: auto;
}

.home [id^="metaslider-id-"] .caption h2 {
  margin: 0 0 1rem;
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1.12;
  font-weight: 600;
}

.home [id^="metaslider-id-"] .caption p {
  margin: 0 0 1.45rem;
  color: #fff;
  font-size: clamp(1rem, 1.3vw, 1.3rem);
  line-height: 1.5;
  max-width: 60ch;
}

.home [id^="metaslider-id-"] .caption .ms-custom-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.6rem;
  min-height: 46px;
  padding: 0.72rem 1.2rem;
  border-radius: 0;
  border: 1px solid #e68761;
  background: #e68761 !important;
  color: #fff !important;
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.1;
  transition:
    background-color 0.18s ease,
    border-color 0.18s ease;
}

.home [id^="metaslider-id-"] .caption .ms-custom-button:hover,
.home [id^="metaslider-id-"] .caption .ms-custom-button:focus-visible {
  border-color: #d67651;
  background: #d67651 !important;
}

.home [id^="metaslider-id-"] .flex-control-nav {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 1.5rem;
  transform: none;
  z-index: 3;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.home [id^="metaslider-id-"] .flex-control-paging li a {
  width: 11px;
  height: 11px;
  margin: 0;
  border-radius: 999px;
  background: #fff !important;
  box-shadow: none;
  opacity: 0.55;
  font-size: 0;
}

.home [id^="metaslider-id-"] .flex-control-paging li a.flex-active {
  background: #fff !important;
  opacity: 1;
}

@media (max-width: 1024px) {
  .home [id^="metaslider-id-"] img.msDefaultImage {
    height: clamp(360px, 58vh, 580px) !important;
  }

  .home [id^="metaslider-id-"] .caption-wrap {
    width: min(1200px, 90vw);
  }

  .home [id^="metaslider-id-"] .caption h2 {
    font-size: clamp(1.8rem, 5vw, 3rem);
  }
}

@media (max-width: 680px) {
  .home [id^="metaslider-id-"] img.msDefaultImage {
    height: clamp(320px, 56vh, 460px) !important;
  }

  .home [id^="metaslider-id-"] .caption-wrap {
    align-items: flex-end;
    padding-bottom: 4.5rem;
  }

  .home [id^="metaslider-id-"] .caption p {
    margin-bottom: 1.1rem;
    font-size: 1rem;
  }

  .home [id^="metaslider-id-"] .caption .ms-custom-button {
    min-height: 42px;
    padding: 0.65rem 1rem;
    font-size: 0.92rem;
  }
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--mcl-space-6);
}

.product-card {
  border: 1px solid var(--mcl-color-border);
  border-radius: 0.5rem;
  overflow: hidden;
}

.product-card__title {
  padding: var(--mcl-space-4);
  margin: 0;
}

.site-footer {
  width: 100%;
  margin: 0;
  background: #f2f2f4;
  border-top: 0;
  color: #7f8085;
}

.site-footer__main,
.site-footer__bottom-inner {
  width: min(1660px, 93.5vw);
  margin-inline: auto;
}

.site-footer__main {
  padding: 5.25rem 0 4.25rem;
  display: grid;
  grid-template-columns: 1.65fr 0.85fr 0.85fr 1.2fr;
  gap: 3.6rem;
  align-items: start;
}

.site-footer__logo .custom-logo-link {
  display: inline-flex;
}

.site-footer__logo .custom-logo {
  max-height: 60px;
  width: auto;
}

.site-footer__site-name {
  font-size: 2rem;
  line-height: 1.1;
  font-weight: 600;
  color: #1f2933;
}

.site-footer__description {
  margin: 1.6rem 0 0;
  max-width: 510px;
  font-size: 1.05rem;
  line-height: 1.45;
  color: #7e8085;
}

.site-footer__heading {
  margin: 0 0 1.25rem;
  font-size: 1.02rem;
  line-height: 1.2;
  font-weight: 500;
  color: #e68761;
}

.menu--footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
}

.menu--footer-column a,
.site-footer__contact-item {
  margin: 0;
  color: #7f8085;
  font-size: 0.92rem;
  line-height: 1.34;
  font-weight: 400;
}

.site-footer__contact-item--address {
  margin-top: 0.5rem;
}

.site-footer__social-title {
  margin: 1.55rem 0 1.05rem;
  color: #e68761;
  font-size: 1.02rem;
  line-height: 1.24;
  font-weight: 500;
}

.site-footer__social-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.site-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  color: #2f7d58;
  line-height: 0;
}

.site-footer__social-link:hover,
.site-footer__social-link:focus-visible {
  opacity: 0.8;
}

.site-footer__social-icon {
  width: 100%;
  height: 100%;
  display: block;
}

.site-footer__bottom {
  border-top: 1px solid #e6e6e8;
  background: #fff;
  width: 100%;
}

.site-footer__bottom-inner {
  min-height: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.site-footer__nav {
  flex: 1;
}

.site-footer__rights {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  color: #7f8085;
  font-size: 0.74rem;
  line-height: 1.24;
}

.site-footer__rights::after {
  content: "|";
  margin: 0 0.7rem;
  color: #7f8085;
}

.menu--footer-legal {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.menu--footer-legal li {
  display: inline-flex;
  align-items: center;
}

.menu--footer-legal li + li::before {
  content: "|";
  margin: 0 0.7rem;
  color: #7f8085;
}

.menu--footer-legal a {
  color: #e68761;
  font-size: 0.74rem;
  line-height: 1.24;
}

.site-footer__credit {
  margin: 0;
  white-space: nowrap;
  color: #7f8085;
  font-size: 0.74rem;
  line-height: 1.24;
}

.site-footer__credit a {
  color: inherit;
  text-decoration: underline;
}

.screen-reader-text {
  position: absolute;
  clip-path: inset(50%);
}

.mcl-seo-hidden-h1 {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (min-width: 768px) {
  .layout--content-sidebar {
    grid-template-columns: minmax(0, 1fr) 320px;
  }
}

@media (max-width: 1280px) {
  .site-footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .site-footer__description {
    max-width: 100%;
  }
}

@media (max-width: 1024px) {
  .site-header__top-inner {
    min-height: auto;
    padding: 0.75rem 1rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 0.55rem 0.75rem;
    width: 100%;
  }

  .site-header__branding {
    margin-right: 0;
    min-width: 0;
  }

  .site-header-mobile-toggle {
    display: inline-flex;
    justify-self: end;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    padding: 0;
    justify-content: center;
  }

  .site-header__nav--actions {
    grid-column: 3;
    margin-left: 0;
    width: auto;
    position: static;
  }

  .site-header-actions {
    gap: 0;
    justify-content: flex-end;
    flex-wrap: nowrap;
  }

  .site-header-actions__divider,
  .site-header-account__label {
    display: none;
  }

  .site-header-actions__item--account,
  .site-header-actions__item--search,
  .site-header-actions__item--language {
    display: none;
  }

  .site-header-actions__item--cart a {
    min-width: 42px;
    min-height: 42px;
    justify-content: center;
  }

  body.mcl-mobile-menu-open .site-header__nav--actions {
    display: none;
  }

  .site-header__nav--primary {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
  }

  body.mcl-mobile-menu-open {
    overflow: hidden;
  }

  .site-header-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    border: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.52);
    z-index: 1190;
    cursor: pointer;
  }

  body.mcl-mobile-menu-open .site-header-mobile-overlay {
    display: block;
  }

  body.mcl-mobile-menu-open .site-header {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(88vw, 460px);
    max-width: 100%;
    z-index: 1200;
    overflow-y: auto;
    background: #f5f5f5;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.2);
  }

  body.admin-bar.mcl-mobile-menu-open .site-header {
    top: 32px;
  }

  @media (max-width: 782px) {
    body.admin-bar.mcl-mobile-menu-open .site-header {
      top: 46px;
    }
  }

  body.mcl-mobile-menu-open .site-header__top {
    border-bottom: 0;
  }

  body.mcl-mobile-menu-open .site-header__nav--primary {
    display: block;
  }

  body.mcl-mobile-menu-open .site-header-mobile-search {
    display: block;
    grid-column: 1 / -1;
    margin-top: 0.4rem;
  }

  .site-header-mobile-search-form {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #d2d6dc;
    border-radius: 7px;
    overflow: hidden;
  }

  .site-header-mobile-search-form input[type="search"] {
    flex: 1;
    min-width: 0;
    border: 0;
    padding: 0.62rem 0.78rem;
    font-size: 0.9rem;
    background: transparent;
  }

  .site-header-mobile-search-form button {
    border: 0;
    background: transparent;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #62666d;
    padding: 0;
  }

  body.mcl-mobile-menu-open .site-header-mobile-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-column: 1 / -1;
    margin-top: 0.55rem;
    border: 1px solid #9ec7b3;
    border-radius: 8px;
    overflow: hidden;
    background: #eef6f1;
  }

  .site-header-mobile-tabs__button {
    border: 0;
    background: transparent;
    color: #5f8674;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.95rem 0.5rem;
  }

  .site-header-mobile-tabs__button + .site-header-mobile-tabs__button {
    border-left: 1px solid #9ec7b3;
  }

  .site-header-mobile-tabs__button.is-active {
    background: #2f7d58;
    color: #fff;
  }

  .site-header__nav--primary .menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-top: 1px solid #d9dde3;
    border-bottom: 1px solid #d9dde3;
  }

  .site-header__nav--primary .menu > li + li {
    border-top: 1px solid #d9dde3;
  }

  .menu--primary a,
  .menu--categories a,
  .mcl-category-menu__link {
    display: block;
    padding: 1.05rem 1rem;
    font-size: clamp(0.86rem, 2.2vw, 0.95rem);
    font-weight: 500;
    line-height: 1.35;
    color: #121926;
    white-space: normal;
  }

  .site-header-mobile-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid #d9dde3;
    background: #fff;
  }

  .site-header-mobile-meta__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.7rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #2f7d58;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .site-header-mobile-meta__link + .site-header-mobile-meta__link {
    border-left: 1px solid #d9dde3;
  }

  .site-header-account__menu {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .site-header-search-panel {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .site-header__bottom {
    display: none;
    position: static;
    box-shadow: none;
    background: transparent;
  }

  body.mcl-mobile-menu-open.mcl-mobile-menu-tab-categories
    .site-header__bottom {
    display: block;
  }

  body.mcl-mobile-menu-open.mcl-mobile-menu-tab-categories
    .site-header__nav--primary {
    display: none;
  }

  .menu--categories,
  .mcl-category-menu {
    min-height: auto;
    padding: 0;
    gap: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    background: #fff;
    border-top: 1px solid #d9dde3;
    border-bottom: 1px solid #d9dde3;
  }

  .menu--categories li + li,
  .mcl-category-menu__item + .mcl-category-menu__item {
    border-top: 1px solid #d9dde3;
  }

  .menu--categories a,
  .mcl-category-menu__link {
    min-height: auto;
  }

  .mcl-category-menu__item--has-children:hover > .mcl-category-menu__link,
  .mcl-category-menu__item--has-children:focus-within
    > .mcl-category-menu__link,
  .mcl-category-menu__item.is-current > .mcl-category-menu__link {
    color: #121926;
    opacity: 1;
  }

  .mcl-category-menu__submenu {
    display: none !important;
  }

  .mcl-shop-layout {
    grid-template-columns: 1fr;
  }

  .mcl-shop-layout__filters {
    position: static;
  }

  .mcl-shop-sidebar__summary {
    display: flex;
  }

  .mcl-shop-sidebar__content {
    padding: 20px;
  }

  body.woocommerce-account:not(.logged-in) .entry--page .woocommerce > h2 {
    font-size: 2.2rem;
  }

  body.woocommerce-account:not(.logged-in)
    .entry--page
    form.woocommerce-form-login
    label,
  body.woocommerce-lost-password
    .entry--page
    form.woocommerce-ResetPassword
    label {
    font-size: 0.92rem;
  }

  body.woocommerce-account.logged-in .entry--page .entry__content {
    width: min(1200px, 94vw);
  }

  body.woocommerce-account.logged-in .entry--page .entry__header {
    width: min(1200px, 94vw);
    padding-top: 32px;
  }

  body.woocommerce-account.logged-in .entry--page .woocommerce {
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .site-main--woocommerce {
    padding: 32px 0 48px;
  }

  .mcl-shop-layout {
    gap: 24px;
  }

  .mcl-shop-layout__products .woocommerce ul.products,
  .mcl-shop-layout__products .wc-block-product-template {
    gap: 24px;
  }

  .mcl-shop-layout__products
    .woocommerce
    ul.products
    li.product
    .woocommerce-loop-product__title,
  .mcl-shop-layout__products .wc-block-product-template .wp-block-post-title,
  .mcl-shop-layout__products .woocommerce ul.products li.product .price,
  .mcl-shop-layout__products
    .wc-block-product-template
    .wc-block-components-product-price {
    padding-left: 14px;
    padding-right: 14px;
  }

  .mcl-shop-layout__products .mcl-product-stock-badge,
  .mcl-shop-layout__products
    .wc-block-product-template
    .wc-block-components-product-stock-indicator {
    margin-left: 14px;
    margin-right: 14px;
  }

  body.mcl-promotions-page .entry--page .mcl-promotions-empty {
    padding: 36px 20px;
    border-radius: 18px;
    gap: 12px;
  }

  body.mcl-promotions-page .entry--page .mcl-promotions-empty__icon {
    width: 72px;
    height: 72px;
  }

  body.mcl-promotions-page .entry--page .mcl-promotions-empty__icon svg {
    width: 38px;
    height: 38px;
  }

  body.mcl-promotions-page .entry--page .mcl-promotions-empty__description {
    font-size: 1rem;
  }

  body.woocommerce-account:not(.logged-in) .entry--page .entry__content {
    width: min(760px, 94vw);
    padding-top: 32px;
  }

  body.woocommerce-account:not(.logged-in) .entry--page .woocommerce > h2 {
    font-size: 1.85rem;
  }

  body.woocommerce-account:not(.logged-in)
    .entry--page
    .woocommerce
    > h2::after {
    font-size: 0.95rem;
  }

  body.woocommerce-account:not(.logged-in)
    .entry--page
    form.woocommerce-form-login
    label,
  body.woocommerce-lost-password
    .entry--page
    form.woocommerce-ResetPassword
    label {
    font-size: 0.9rem;
  }

  body.woocommerce-account:not(.logged-in)
    .entry--page
    .woocommerce-form-login__submit,
  body.woocommerce-lost-password .entry--page .woocommerce-Button.button {
    min-height: 42px;
    font-size: 0.92rem;
  }

  body.woocommerce-account.logged-in
    .entry--page
    .woocommerce-MyAccount-content {
    padding: 18px;
  }

  body.woocommerce-account.logged-in .entry--page .entry__header {
    width: min(1200px, 94vw);
    margin: 0 auto 14px;
    padding-top: 24px;
  }

  body.woocommerce-account.logged-in .entry--page .entry__title {
    font-size: 1.65rem;
  }

  body.woocommerce-account.logged-in .entry--page .woocommerce {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  body.woocommerce-account.logged-in
    .entry--page
    .woocommerce-MyAccount-navigation,
  body.woocommerce-account.logged-in
    .entry--page
    .woocommerce-MyAccount-content {
    grid-column: auto;
  }

  body.woocommerce-account.logged-in
    .entry--page
    .woocommerce-MyAccount-navigation
    ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
    padding: 8px;
  }

  body.woocommerce-account.logged-in
    .entry--page
    .woocommerce-MyAccount-navigation
    li
    + li {
    margin-top: 0;
  }

  body.woocommerce-account.logged-in
    .entry--page
    .woocommerce-MyAccount-navigation
    a {
    white-space: nowrap;
    padding: 9px 11px;
    font-size: 0.92rem;
  }

  .menu--categories,
  .mcl-category-menu {
    gap: 0;
  }

  .site-footer__main {
    grid-template-columns: 1fr;
    padding: 2.6rem 0 2.2rem;
  }

  .site-footer__heading {
    margin-bottom: 0.8rem;
  }

  .site-footer__bottom-inner {
    min-height: 0;
    padding: 1rem 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
  }

  .site-footer__rights::after {
    display: none;
  }

  .site-footer__credit {
    white-space: normal;
  }

  .site-footer__description {
    font-size: 1rem;
  }

  .site-footer__heading,
  .site-footer__social-title {
    font-size: 0.98rem;
  }

  .menu--footer-column a,
  .site-footer__contact-item {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  body.woocommerce-account.logged-in
    .entry--page
    .woocommerce-MyAccount-navigation
    ul {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Single product page
   ========================================================================== */

.single-product div.product .product_title {
  margin: 0 0 4px;
  font-size: clamp(1.75rem, 2.6vw, 2.35rem);
  font-weight: 700;
  color: #1f2329;
}

.mcl-product-sku {
  margin: 0 0 20px;
  color: #8a9099;
  font-size: 0.92rem;
}

.single-product div.product p.price {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: #5b6470;
  font-size: 1.45rem;
  font-weight: 500;
}

.mcl-product-stock-pill {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 6px;
  background: #17714f;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.3;
}

.mcl-product-stock-pill.is-out-of-stock {
  background: #b3413b;
}

.single-product div.product .woocommerce-product-details__short-description {
  margin: 0 0 24px;
  color: #3a4048;
  font-size: 1.05rem;
}

.mcl-product-options-heading {
  margin: 0 0 16px;
  font-weight: 700;
  color: #1f2329;
}

.single-product div.product table.variations th.label {
  padding-right: 16px;
  font-weight: 400;
  color: #1f2329;
}

.single-product div.product form.cart {
  margin-bottom: 8px;
}

/* Quantity stepper */
.single-product div.product form.cart .quantity {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-right: 16px;
}

.mcl-qty-btn {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 6px;
  background: #e4e6e9;
  color: #1f2329;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
}

.mcl-qty-btn:hover {
  background: #d6d9dd;
}

.single-product div.product form.cart .quantity .qty {
  width: 46px;
  border: 0;
  background: transparent;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  -moz-appearance: textfield;
}

.single-product div.product form.cart .quantity .qty::-webkit-outer-spin-button,
.single-product
  div.product
  form.cart
  .quantity
  .qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Buttons row */
.single-product div.product form.cart .button,
.mcl-product-inquiry-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 28px;
  border: 0;
  border-radius: 4px;
  background: #dfe1e4;
  color: #3a4048;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: background 0.15s ease;
}

.single-product div.product form.cart .button:hover,
.mcl-product-inquiry-button:hover {
  background: #cfd2d6;
  color: #1f2329;
}

.single-product div.product form.cart .single_add_to_cart_button::after {
  content: "";
  width: 20px;
  height: 20px;
  background: currentColor;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="9" cy="21" r="1"/><circle cx="20" cy="21" r="1"/><path d="M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6"/></svg>')
    no-repeat center / contain;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="9" cy="21" r="1"/><circle cx="20" cy="21" r="1"/><path d="M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6"/></svg>')
    no-repeat center / contain;
}

.mcl-product-inquiry-button {
  margin-left: 12px;
}

.single-product div.product .woocommerce-variation-add-to-cart {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.single-product
  div.product
  .woocommerce-variation-add-to-cart
  .mcl-product-inquiry-button {
  margin-left: 0;
}

/* Full-bleed gray band with centered tabs */
.single-product div.product .woocommerce-tabs {
  width: 100vw;
  margin: 56px calc(50% - 50vw) 0;
  padding: 56px 0 72px;
  background: #f5f6f7;
}

.single-product div.product .woocommerce-tabs ul.wc-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 auto 40px;
  padding: 0;
  border: 0;
  background: none;
  list-style: none;
}

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

.single-product div.product .woocommerce-tabs ul.wc-tabs li {
  margin: 0;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 8px;
  background: none;
}

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

.single-product div.product .woocommerce-tabs ul.wc-tabs li a {
  display: inline-block;
  padding: 12px 24px;
  color: #3a4048;
  font-weight: 500;
}

.single-product div.product .woocommerce-tabs ul.wc-tabs li.active {
  border-color: #1f2329;
  background: #fff;
}

.single-product div.product .woocommerce-tabs ul.wc-tabs li.active a {
  color: #1f2329;
}

.single-product div.product .woocommerce-tabs .woocommerce-Tabs-panel {
  width: min(var(--e-global-container-width, 1200px), 92vw);
  margin-inline: auto;
}

.single-product
  div.product
  .woocommerce-tabs
  .woocommerce-Tabs-panel
  > h2:first-of-type {
  display: none;
}

/* Product inquiry modal */
body.mcl-modal-open {
  overflow: hidden;
}

.mcl-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.mcl-modal[hidden] {
  display: none;
}

.mcl-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(31, 35, 41, 0.55);
}

.mcl-modal__dialog {
  position: relative;
  width: min(560px, 100%);
  max-height: min(85vh, 720px);
  overflow-y: auto;
  padding: 32px 32px 36px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
}

.mcl-modal__close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 36px;
  height: 36px;
  border: 0;
  background: none;
  color: #1f2329;
  font-size: 1.9rem;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
}

.mcl-modal__close:hover {
  color: #6b727c;
}

.mcl-modal__title {
  margin: 12px 0 8px;
  padding-right: 40px;
  font-size: 1.75rem;
  font-weight: 700;
  color: #1f2329;
}

.mcl-modal__subtitle {
  margin: 0 0 12px;
  color: #3a4048;
  font-size: 1.05rem;
}

/* Prefilled product (Sujet) field: visible but read-only. */
.mcl-modal .wpforms-field.mcl-inquiry-product-field input {
  background: #efefef !important;
  color: #3a4048;
  pointer-events: none;
}

.mcl-modal .wpforms-field {
  padding: 8px 0;
}

.mcl-modal .wpforms-field input[type="text"],
.mcl-modal .wpforms-field input[type="email"],
.mcl-modal .wpforms-field input[type="tel"],
.mcl-modal .wpforms-field textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #cfd3d8;
  border-radius: 6px;
  font: inherit;
}

.mcl-modal .wpforms-submit-container {
  text-align: right;
}

.mcl-modal .wpforms-form button[type="submit"] {
  min-height: 48px;
  padding: 0 32px;
  border: 0 !important;
  border-radius: 6px;
  background: #2e6f4e !important;
  color: #fff !important;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
}

.mcl-modal .wpforms-form button[type="submit"]:hover {
  background: #245c40 !important;
}

/* Inline radio choices */
.mcl-modal .wpforms-field-radio ul {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap;
  gap: 12px 40px !important;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mcl-modal .wpforms-field-radio li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mcl-modal .wpforms-field-radio input[type="radio"] {
  width: 22px;
  height: 22px;
  accent-color: #2e6f4e;
}

.mcl-modal .wpforms-field-label {
  font-weight: 600;
  color: #1f2329;
}

.mcl-modal .wpforms-field .wpforms-field-medium,
.mcl-modal .wpforms-field input.wpforms-field-medium,
.mcl-modal .wpforms-field textarea.wpforms-field-medium {
  max-width: 100%;
  width: 100%;
}

/* ==========================================================================
   Blog page
   ========================================================================== */

.site-main--blog {
  padding: 0 0 5rem;
}

.mcl-blog-hero {
  min-height: clamp(260px, 31vw, 420px);
  display: flex;
  align-items: center;
  background-color: #13202d;
  background-size: cover;
  background-position: center;
}

.mcl-blog-hero__inner {
  width: min(1660px, 93.5vw);
  margin-inline: auto;
  padding: clamp(2.2rem, 4vw, 4.2rem) 0;
}

.mcl-blog-hero__title {
  margin: 0;
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 4.25rem);
  line-height: 1.06;
  font-weight: 700;
}

.mcl-blog-hero__description {
  margin: 0.9rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.25vw, 1.22rem);
  line-height: 1.45;
}

.mcl-blog-archive {
  padding: clamp(2rem, 3.4vw, 3.2rem) 0 0;
}

.mcl-blog-archive__inner {
  width: min(1660px, 93.5vw);
  margin-inline: auto;
}

.mcl-blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: clamp(1.4rem, 2.5vw, 2.35rem);
  align-items: start;
}

.mcl-blog-grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.mcl-blog-card {
  margin: 0;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 14px rgba(16, 24, 40, 0.06);
  display: flex;
  flex-direction: column;
}

.mcl-blog-card__thumbnail-link {
  display: block;
}

.mcl-blog-card__thumbnail {
  width: 100%;
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
  display: block;
  background: #eceef1;
}

.mcl-blog-card__thumbnail--placeholder {
  background: linear-gradient(140deg, #edf0f3, #d9dde3);
}

.mcl-blog-card__body {
  padding: 0.9rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.mcl-blog-card__meta {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: #5f6772;
  font-size: 0.88rem;
}

.mcl-blog-card__meta-icon {
  width: 15px;
  height: 15px;
  stroke: #17864f;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mcl-blog-card__title {
  margin: 0.55rem 0 0;
  font-size: 1.9rem;
  line-height: 1.24;
  font-weight: 700;
}

.mcl-blog-card__title a:hover {
  color: #2f7d58;
}

.mcl-blog-card__excerpt {
  margin: 0.75rem 0 1rem;
  color: #646c76;
  font-size: 0.95rem;
  line-height: 1.56;
  flex: 1;
}

.mcl-blog-card__button {
  min-height: 44px;
  border-radius: 8px;
  background: #e68761;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 1rem;
  transition: background 0.18s ease;
}

.mcl-blog-card__button:hover,
.mcl-blog-card__button:focus-visible {
  background: #d97650;
}

.mcl-blog-layout__filters {
  position: sticky;
  top: calc(var(--mcl-category-bar-height) + var(--mcl-category-bar-gap));
}

.mcl-blog-filter {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  padding: 1rem;
}

.mcl-blog-filter__title {
  margin: 0 0 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #1f2329;
  font-size: 1.9rem;
  line-height: 1.2;
  font-weight: 700;
}

.mcl-blog-filter__icon {
  width: 20px;
  height: 20px;
  stroke: #e68761;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mcl-blog-filter__items {
  display: grid;
  gap: 0.62rem;
}

.mcl-blog-filter__item {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d8dee6;
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  color: #1f2329;
  font-size: 1.02rem;
  line-height: 1.2;
  text-align: center;
  background: #fff;
  transition:
    border-color 0.18s ease,
    color 0.18s ease,
    background-color 0.18s ease;
}

.mcl-blog-filter__item:hover,
.mcl-blog-filter__item:focus-visible,
.mcl-blog-filter__item.is-active {
  border-color: #2f7d58;
  color: #2f7d58;
  background: #f4faf7;
}

.mcl-blog-empty-state {
  margin: 0;
  padding: 2rem;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  text-align: center;
}

.mcl-blog-empty-state__title {
  margin: 0;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
}

.mcl-blog-empty-state__description {
  margin: 0.65rem 0 0;
}

.site-main--blog .navigation.pagination {
  margin-top: 1.55rem;
}

.site-main--blog .navigation.pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-main--blog .navigation.pagination .page-numbers {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
}

.site-main--blog .navigation.pagination .page-numbers li .page-numbers {
  min-width: 36px;
  height: 36px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #5f6772;
  font-size: 0.95rem;
}

.site-main--blog .navigation.pagination .page-numbers li .page-numbers:hover,
.site-main--blog .navigation.pagination .page-numbers li .page-numbers.current {
  background: #eef2f6;
  color: #1f2329;
}

.site-main--blog .navigation.pagination .page-numbers li .prev,
.site-main--blog .navigation.pagination .page-numbers li .next {
  min-width: auto;
  padding-inline: 0.2rem;
  background: transparent;
  color: #5f6772;
}

@media (max-width: 1560px) {
  .mcl-blog-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
  }
}

@media (max-width: 1320px) {
  .mcl-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mcl-blog-card__title {
    font-size: 1.55rem;
  }

  .mcl-blog-filter__title {
    font-size: 1.55rem;
  }
}

@media (max-width: 1024px) {
  .site-main--blog {
    padding-bottom: 3.2rem;
  }

  .mcl-blog-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .mcl-blog-layout__filters {
    position: static;
    order: -1;
  }
}

@media (max-width: 767px) {
  .mcl-blog-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .mcl-blog-card__title {
    font-size: 1.38rem;
  }

  .mcl-blog-filter {
    padding: 0.85rem;
  }
}

/* ==========================================================================
   Search results page
   ========================================================================== */

.mcl-search-hero__form {
  margin: 1.5rem 0 0;
  display: flex;
  align-items: stretch;
  gap: 0.6rem;
  max-width: 640px;
}

.mcl-search-hero__input {
  flex: 1;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  padding: 0 1.05rem;
  font-size: 1rem;
  color: #1f2329;
  background: #fff;
}

.mcl-search-hero__input:focus-visible {
  outline: 2px solid #e68761;
  outline-offset: 2px;
}

.mcl-search-hero__button {
  min-height: 52px;
  border: 0;
  border-radius: 10px;
  padding: 0 1.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #e68761;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s ease;
}

.mcl-search-hero__button:hover,
.mcl-search-hero__button:focus-visible {
  background: #d97650;
}

.mcl-search-hero__button-icon {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mcl-search-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mcl-search-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.6rem;
  border-radius: 999px;
  background: #f4faf7;
  color: #2f7d58;
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.mcl-search-card .mcl-blog-card__title {
  font-size: 1.15rem;
  line-height: 1.3;
}

.mcl-search-hero .mcl-blog-hero__title {
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
}

.mcl-search-hero .mcl-blog-hero__description {
  font-size: clamp(0.92rem, 1vw, 1.05rem);
}

.mcl-search-card .mcl-blog-card__excerpt {
  font-size: 0.9rem;
}

@media (max-width: 1320px) {
  .mcl-search-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .mcl-search-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .mcl-search-hero__form {
    flex-wrap: wrap;
  }

  .mcl-search-hero__button {
    flex: 1;
    justify-content: center;
  }

  .mcl-search-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* -------------------------------------------------------------------------
 * Page layout system
 * ---------------------------------------------------------------------- */

/* Full Width (No Container): let the page content span the whole viewport,
   overriding the constrained .site-main container. Ideal for Elementor. */
body.mcl-page-layout--full-width .site-main {
  width: 100%;
  margin-inline: 0;
  max-width: none;
}

.entry__content--full-width > * {
  max-width: none;
}

/* Content with Header: full-bleed hero above the constrained content. */
.mcl-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-bottom: var(--mcl-space-8);
  padding: clamp(3rem, 10vw, 7rem) var(--mcl-space-6);
  background-color: var(--mcl-green);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}

/* Readability overlay so text stays legible over any background image. */
.mcl-hero--has-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(16, 24, 40, 0.65) 0%,
    rgba(16, 24, 40, 0.35) 60%,
    rgba(16, 24, 40, 0.2) 100%
  );
}

.mcl-hero__inner {
  position: relative;
  width: min(1200px, 92vw);
  margin-inline: auto;
}

.mcl-hero__title {
  margin: 0;
  color: #fff;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.1;
}

.mcl-hero__subtitle {
  margin: var(--mcl-space-4) 0 0;
  max-width: 60ch;
  font-size: clamp(1rem, 2vw, 1.375rem);
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.92);
}

/* -------------------------------------------------------------------------
 * FAQ archive
 * ---------------------------------------------------------------------- */

.site-main--faq {
  width: min(1920px, 95vw);
  padding-block: clamp(1.5rem, 4vw, 3rem);
}

.mcl-faq-archive {
  width: 100%;
  margin-inline: auto;
}

.mcl-faq-archive__header {
  margin-bottom: 1.5rem;
}

.mcl-faq-archive__title {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: #101828;
}

.mcl-faq-archive__description {
  margin: 0.75rem 0 0;
  max-width: 62ch;
  color: #475467;
}

.mcl-faq-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.25rem, 3vw, 3.75rem);
  margin-bottom: 1.6rem;
}

.mcl-faq-categories__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: #667085;
  font-size: clamp(0.95rem, 1.25vw, 1.15rem);
  font-weight: 600;
  line-height: 1.2;
  padding: 0.35rem 0 0.3rem;
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}

.mcl-faq-categories__link:hover {
  color: #111827;
}

.mcl-faq-categories__link.is-active {
  border-bottom-color: #2f7d58;
  color: #101828;
}

.mcl-faq-list {
  display: grid;
  gap: 1.05rem;
}

.mcl-faq-item {
  border: 0;
  background: #f6f6f8;
  overflow: hidden;
}

.mcl-faq-item__summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  cursor: pointer;
  padding: clamp(1rem, 1.5vw, 1rem) clamp(1rem, 2vw, 1rem);
  position: relative;
}

.mcl-faq-item__summary::-webkit-details-marker {
  display: none;
}

.mcl-faq-item__summary::after {
  content: "+";
  position: absolute;
  right: clamp(1rem, 2vw, 2rem);
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 300;
  color: #101828;
}

.mcl-faq-item[open] .mcl-faq-item__summary::after {
  content: "–";
}

.mcl-faq-item__number {
  flex: 0 0 auto;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  color: #2f7d58;
  padding: 0;
}

.mcl-faq-item__question {
  padding-right: 3rem;
  color: #101828;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
}

.mcl-faq-item__answer {
  padding: 0rem 1rem 1rem 1rem;
}

.mcl-faq-item__answer p {
  color: #686868;
  font-size: 0.8rem;
  margin-bottom: 0.2rem;
}

.mcl-faq-item__answer p:last-child {
  margin-bottom: 0;
}

.mcl-faq-empty {
  border: 1px dashed #d0d5dd;
  border-radius: 14px;
  background: #f8fafc;
  text-align: center;
  padding: 1.25rem;
}

.mcl-faq-empty p {
  margin: 0;
  color: #475467;
}

@media (max-width: 767px) {
  .mcl-faq-item__summary {
    gap: 0.7rem;
    padding: 0.85rem 0.9rem;
  }

  .mcl-faq-item__summary::after {
    right: 0.75rem;
    font-size: 1.65rem;
  }

  .mcl-faq-item__number {
    min-width: 2.25rem;
    font-size: 1.45rem;
  }

  .mcl-faq-item__question {
    font-size: 1rem;
    padding-right: 1.55rem;
  }

  .mcl-faq-item__answer {
    padding: 0 0.9rem 0.9rem 0.9rem;
  }
}
