.md-home-2026 {
  --md-orange: #ec7700;
  --md-teal: #47aea8;
  --md-red: #e6331f;
  --md-rose: #e8978e;
  --md-blue: #064c72;
  --md-ink: #0e2435;
  --md-muted: #5c6b76;
  --md-line: #dbe5ea;
  --md-soft: #f4f8f9;
  --md-dark: #34373d;
  --md-shadow: 0 24px 70px rgba(6, 76, 114, 0.16);
  --md-serif: "Bigola Display", Georgia, "Times New Roman", serif;
  --md-sans: "Madras", Arial, Helvetica, sans-serif;
  overflow: clip;
  background: #fff;
  color: var(--md-ink);
  font-family: var(--md-sans);
}

.md-home-2026,
.md-home-2026 * {
  box-sizing: border-box;
}

.md-home-2026 a {
  color: inherit;
  text-decoration: none;
}

.md-home-2026 img {
  max-width: 100%;
  height: auto;
}

.md-home__header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(6, 76, 114, 0.12);
  backdrop-filter: blur(18px);
  transition: box-shadow 220ms ease, background 220ms ease;
}

.md-home__header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 45px rgba(6, 76, 114, 0.12);
}

.md-home__topline {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 18px;
  background: linear-gradient(90deg, var(--md-blue), var(--md-teal), var(--md-orange), var(--md-red), var(--md-rose));
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.md-home__nav-shell {
  position: relative;
  max-width: 1240px;
  min-height: 86px;
  display: grid;
  grid-template-columns: 238px auto minmax(260px, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin: 0 auto;
  padding: 10px 24px;
}

.md-home__brand-link {
  display: inline-flex;
  align-items: center;
}

.md-home__brand-link img {
  width: 220px;
  display: block;
}

.md-home__mega-trigger {
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(6, 76, 114, 0.14);
  background: rgba(255, 255, 255, 0.66);
  color: var(--md-blue);
  padding: 0 18px;
  font-family: var(--md-sans);
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(6, 76, 114, 0.07);
}

.md-home__mega-trigger i,
.md-home__mega-trigger i::before,
.md-home__mega-trigger i::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 220ms ease;
}

.md-home__mega-trigger i {
  position: relative;
}

.md-home__mega-trigger i::before,
.md-home__mega-trigger i::after {
  position: absolute;
  left: 0;
}

.md-home__mega-trigger i::before { top: -6px; }
.md-home__mega-trigger i::after { top: 6px; }

.md-home__mega-trigger[aria-expanded="true"] i {
  background: transparent;
}

.md-home__mega-trigger[aria-expanded="true"] i::before {
  top: 0;
  transform: rotate(45deg);
}

.md-home__mega-trigger[aria-expanded="true"] i::after {
  top: 0;
  transform: rotate(-45deg);
}

.md-home__search form,
.md-home__search .woocommerce-product-search {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 6px;
  margin: 0;
  background: rgba(244, 248, 249, 0.9);
  border: 1px solid rgba(6, 76, 114, 0.1);
  border-radius: 999px;
  padding: 6px;
}

.md-home__search label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.md-home__search input[type="search"],
.md-home__search .search-field {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 12px 14px;
  color: var(--md-ink);
  font-size: 15px;
}

.md-home__search button,
.md-home__search input[type="submit"],
.md-home__header-cta,
.md-btn {
  border: 0;
  background: var(--md-blue);
  color: #fff;
  font-family: var(--md-sans);
  font-weight: 900;
  cursor: pointer;
}

.md-home__search button,
.md-home__search input[type="submit"] {
  border-radius: 999px;
  padding: 10px 16px;
}

.md-home__header-cta {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  background: var(--md-orange);
  box-shadow: 0 14px 28px rgba(236, 119, 0, 0.22);
}

.md-home__mega-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 24px;
  right: 24px;
  z-index: 1000;
  display: grid;
  grid-template-columns: minmax(540px, 0.92fr) minmax(500px, 1.08fr);
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(6, 76, 114, 0.14);
  box-shadow: var(--md-shadow);
  backdrop-filter: blur(22px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 180ms;
}

.md-home__mega-panel.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}

.md-home__mega-silos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.md-home__mega-silo {
  position: relative;
  min-height: 124px;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  overflow: hidden;
  padding: 14px;
  border: 0;
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.md-home__mega-silo:hover,
.md-home__mega-silo.is-active {
  transform: translateY(-4px);
  box-shadow: 0 20px 38px rgba(6, 76, 114, 0.14);
}

.md-home__mega-silo.is-active::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  pointer-events: none;
}

.md-home__mega-silo span {
  grid-row: 1 / span 2;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 10px;
}

.md-home__mega-silo img,
.md-home__mega-detail-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.md-home__mega-silo strong {
  display: block;
  font-family: var(--md-font);
  min-width: 0;
  overflow-wrap: break-word;
  font-size: 18px;
  line-height: 1.12;
  hyphens: none;
}

.md-home__mega-silo small {
  display: block;
  min-width: 0;
  overflow-wrap: break-word;
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.35;
  opacity: 0.92;
}

.md-home-2026 .tone-1 { background: var(--md-teal); }
.md-home-2026 .tone-2 { background: var(--md-orange); }
.md-home-2026 .tone-3 { background: #80209a; }
.md-home-2026 .tone-4 { background: var(--md-red); }
.md-home-2026 .tone-5 { background: var(--md-rose); }
.md-home-2026 .tone-6 { background: var(--md-blue); }
.md-home-2026 .tone-7 { background: var(--md-green); }

.md-home__mega-details {
  position: relative;
  min-height: 320px;
  background:
    linear-gradient(135deg, rgba(6, 76, 114, 0.92), rgba(6, 76, 114, 0.82)),
    url("../images/brand-botanique-composition.png") right bottom / 360px auto no-repeat;
  color: #fff;
  overflow: hidden;
}

.md-home__mega-detail {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 28px;
  align-items: center;
  padding: 30px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(18px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.md-home__mega-detail.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.md-home__mega-detail-visual {
  height: 230px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 18px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
}

.md-home__mega-detail small {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.md-home__mega-detail h2 {
  color: #fff;
  font-family: var(--md-serif);
  font-size: 46px;
  line-height: 1;
}

.md-home__mega-detail p {
  max-width: 540px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.5;
}

.md-home__mega-subcats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.md-home__mega-subcats a,
.md-home__mega-main-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
  font-weight: 800;
}

.md-home__mega-main-link {
  margin-top: 18px;
  background: var(--md-orange);
  border-color: var(--md-orange);
}

.md-home__hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(340px, 0.95fr) minmax(340px, 1.05fr);
  align-items: center;
  gap: 34px;
  padding: 86px max(36px, calc((100vw - 1240px) / 2)) 98px;
  background:
    radial-gradient(circle at 8% 28%, rgba(71, 174, 168, 0.18), transparent 28%),
    radial-gradient(circle at 92% 22%, rgba(236, 119, 0, 0.13), transparent 24%),
    linear-gradient(180deg, #fff 0%, #f8fcfd 100%);
}

.md-home__webgl {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.42;
  pointer-events: none;
}

.md-home__leaf {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0.82;
  will-change: transform;
}

.md-home__leaf--left {
  width: 360px;
  left: -170px;
  top: 90px;
}

.md-home__leaf--right {
  width: 430px;
  right: -150px;
  bottom: -120px;
}

.md-home__hero-copy,
.md-home__hero-visual {
  position: relative;
  z-index: 2;
}

.md-home__line {
  margin: 0 0 18px;
  color: var(--md-orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.md-home__hero h1,
.md-home__section h2,
.md-home__newsletter h2,
.md-home__about-hero h1 {
  margin: 0;
  color: var(--md-blue);
  font-family: var(--md-serif);
  line-height: 0.98;
}

.md-home__hero h1,
.md-home__about-hero h1 {
  max-width: 720px;
  font-size: clamp(44px, 5vw, 78px);
}

.md-home__section h2,
.md-home__newsletter h2 {
  font-size: clamp(34px, 4.4vw, 66px);
}

.md-home__hero-copy > p:not(.md-home__line),
.md-home__heading p,
.md-home__atelier p,
.md-home__about-hero p,
.md-home__newsletter p {
  color: var(--md-muted);
  font-size: 18px;
  line-height: 1.55;
}

.md-home__hero-copy > p:not(.md-home__line) {
  max-width: 640px;
  margin: 28px 0 0;
  font-size: 20px;
  line-height: 1.58;
}

.md-home__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.md-btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 2px solid var(--md-blue);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.md-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 32px rgba(6, 76, 114, 0.18);
}

.md-btn--primary {
  background: var(--md-blue);
}

.md-btn--secondary {
  background: rgba(255, 255, 255, 0.76);
  color: var(--md-blue);
  backdrop-filter: blur(12px);
}

.md-home__proofs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.md-home__proofs li {
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(6, 76, 114, 0.12);
  color: var(--md-blue);
  font-size: 13px;
  font-weight: 900;
  backdrop-filter: blur(14px);
}

.md-home__hero-silo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.md-home__hero-silo-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  background: var(--md-blue);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(6, 76, 114, 0.13);
}

.md-home__showcase {
  position: relative;
  display: grid;
  justify-items: center;
  transform-style: preserve-3d;
}

.md-home__showcase::before {
  content: "";
  position: absolute;
  inset: 24px 30px 82px;
  background:
    linear-gradient(135deg, rgba(6, 76, 114, 0.09), rgba(255, 255, 255, 0.65)),
    radial-gradient(circle at 18% 22%, rgba(236, 119, 0, 0.2), transparent 28%);
  border: 1px solid rgba(6, 76, 114, 0.14);
  box-shadow: var(--md-shadow);
  transform: rotate(-2.5deg);
}

.md-home__product-frame {
  position: relative;
  z-index: 2;
  width: min(520px, 92%);
  min-height: 520px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid rgba(6, 76, 114, 0.14);
  box-shadow: 0 30px 70px rgba(6, 76, 114, 0.16);
  padding: 22px;
  transform: translateZ(24px);
}

.md-home__product-frame::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(71, 174, 168, 0.2);
  pointer-events: none;
}

.md-home__product-frame img {
  width: 100%;
  max-height: 470px;
  object-fit: contain;
  background: #fff;
}

.md-home__product-note {
  position: relative;
  z-index: 3;
  width: min(500px, 88%);
  margin-top: -28px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.9);
  border-left: 10px solid var(--md-teal);
  box-shadow: var(--md-shadow);
  backdrop-filter: blur(16px);
}

.md-home__product-note span,
.md-home__product-note em {
  display: block;
  color: var(--md-muted);
  font-size: 13px;
  font-style: normal;
}

.md-home__product-note strong {
  display: block;
  margin: 4px 0;
  color: var(--md-blue);
  font-size: 22px;
}

.md-home__section {
  position: relative;
  padding: 92px max(36px, calc((100vw - 1240px) / 2));
}

.md-home__heading {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(260px, 0.72fr);
  gap: 46px;
  align-items: end;
  margin-bottom: 38px;
}

.md-home__needs,
.md-home__products,
.md-home__promo,
.md-home__quote {
  background: #fff;
}

.md-home__categories,
.md-home__blog {
  background: #f8fcfd;
}

.md-home__rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 360px);
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  padding: 8px 2px 24px;
  scrollbar-color: var(--md-teal) rgba(6, 76, 114, 0.08);
}

.md-home__rail > * {
  scroll-snap-align: start;
}

.md-home__need-card,
.md-home__highlight-card,
.md-home__category-card,
.md-home__product-card,
.md-home__promo-card,
.md-home__post-card,
.md-home__about-proof {
  transition: transform 210ms ease, box-shadow 210ms ease;
}

.md-home__need-card:hover,
.md-home__highlight-card:hover,
.md-home__category-card:hover,
.md-home__product-card:hover,
.md-home__promo-card:hover,
.md-home__post-card:hover,
.md-home__about-proof:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(6, 76, 114, 0.13);
}

.md-home__highlights {
  margin-top: -34px;
  padding-top: 0;
  background: linear-gradient(180deg, transparent 0, #fff 34px);
}

.md-home__highlight-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.md-home__highlight-card {
  position: relative;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 28px;
  color: #fff;
  isolation: isolate;
  box-shadow: 0 26px 60px rgba(6, 76, 114, 0.16);
}

.md-home__highlight-card::before,
.md-home__highlight-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

.md-home__highlight-card::before {
  background:
    linear-gradient(180deg, rgba(6, 76, 114, 0.08), rgba(6, 76, 114, 0.84)),
    var(--md-blue);
}

.md-home__highlight-card::after {
  opacity: 0.92;
  transform: scale(1.03);
  transition: transform 360ms ease;
}

.md-home__highlight-card:hover::after {
  transform: scale(1.09);
}

.md-home__highlight-card--eco::after {
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.32), transparent 20%),
    linear-gradient(135deg, rgba(88, 179, 54, 0.94), rgba(6, 76, 114, 0.76)),
    url("../images/botanique-gauche.png") left bottom / 360px auto no-repeat;
}

.md-home__highlight-card--france::after {
  background:
    linear-gradient(90deg, rgba(6, 76, 114, 0.92) 0 33%, rgba(255, 255, 255, 0.70) 33% 66%, rgba(230, 51, 31, 0.88) 66%),
    linear-gradient(135deg, rgba(6, 76, 114, 0.92), rgba(236, 119, 0, 0.62));
}

.md-home__highlight-card--heart::after {
  background:
    radial-gradient(circle at 72% 26%, rgba(255, 255, 255, 0.28), transparent 18%),
    radial-gradient(circle at 62% 58%, rgba(230, 51, 31, 0.72), transparent 26%),
    linear-gradient(135deg, rgba(232, 151, 142, 0.98), rgba(6, 76, 114, 0.74));
}

.md-home__highlight-card span,
.md-home__highlight-card small,
.md-home__highlight-card em {
  position: relative;
  z-index: 1;
}

.md-home__highlight-card span {
  max-width: 360px;
  font-family: var(--md-serif);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 0.95;
}

.md-home__highlight-card small {
  max-width: 330px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 1.42;
}

.md-home__highlight-card em {
  width: max-content;
  margin-top: 24px;
  padding: 11px 15px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: #fff;
  font-style: normal;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.md-home__need-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--md-line);
  border-top: 10px solid var(--md-teal);
  box-shadow: 0 14px 30px rgba(6, 76, 114, 0.07);
}

.md-home__need-card:nth-child(2) { border-top-color: var(--md-orange); }
.md-home__need-card:nth-child(3) { border-top-color: var(--md-red); }
.md-home__need-card:nth-child(4) { border-top-color: var(--md-rose); }
.md-home__need-card:nth-child(5) { border-top-color: var(--md-blue); }

.md-home__need-card span {
  color: var(--md-blue);
  font-family: var(--md-serif);
  font-size: 30px;
  line-height: 1.02;
}

.md-home__need-card small {
  margin-top: 20px;
  color: var(--md-muted);
  font-size: 15px;
  line-height: 1.42;
}

.md-home__heading--with-actions {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.md-home__slider-actions {
  display: flex;
  gap: 10px;
}

.md-home__slider-actions button {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--md-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--md-blue);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(6, 76, 114, 0.1);
  transition: transform 180ms ease, background 180ms ease;
}

.md-home__slider-actions button:hover {
  transform: translateY(-2px);
  background: #fff;
}

.md-home__promo {
  background:
    linear-gradient(135deg, rgba(248, 252, 253, 0.94), rgba(255, 255, 255, 0.98)),
    var(--md-soft);
}

.md-home__promo-rail {
  grid-auto-columns: minmax(280px, 340px);
}

.md-home__promo-card {
  position: relative;
  min-height: 430px;
  display: grid;
  grid-template-rows: 245px auto auto auto;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(6, 76, 114, 0.14);
  color: var(--md-blue);
  box-shadow: 0 18px 42px rgba(6, 76, 114, 0.08);
  backdrop-filter: blur(14px);
}

.md-home__promo-badge {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  padding: 7px 11px;
  background: var(--md-orange);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.md-home__promo-image {
  display: grid;
  place-items: center;
  margin: 12px;
  background: #fff;
  border: 1px solid rgba(6, 76, 114, 0.1);
}

.md-home__promo-image img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  padding: 18px;
}

.md-home__promo-card strong,
.md-home__promo-card small,
.md-home__promo-card em {
  display: block;
  padding: 0 20px;
}

.md-home__promo-card strong {
  min-height: 54px;
  font-size: 18px;
  line-height: 1.24;
}

.md-home__promo-card small {
  margin-top: 8px;
  color: var(--md-muted);
  font-size: 13px;
  font-style: normal;
}

.md-home__promo-card em {
  margin-top: 10px;
  padding-bottom: 22px;
  color: var(--md-red);
  font-style: normal;
  font-weight: 900;
}

.md-home__atelier {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 48px;
  align-items: center;
  overflow: hidden;
  background: var(--md-blue);
  color: #fff;
}

.md-home__atelier::after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -160px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(236, 119, 0, 0.4), transparent 66%);
}

.md-home__atelier h2,
.md-home__atelier p,
.md-home__atelier a {
  color: #fff;
}

.md-home__atelier p {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.86);
}

.md-home__text-link {
  display: inline-block;
  margin-top: 24px;
  padding-bottom: 6px;
  border-bottom: 3px solid var(--md-orange);
  font-weight: 900;
}

.md-home__atelier-visual {
  position: relative;
  z-index: 1;
  min-height: 390px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
}

.md-home__atelier-visual img {
  width: 100%;
  min-height: 390px;
  object-fit: cover;
}

.md-home__category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.md-home__category-card,
.md-home__product-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--md-line);
  color: var(--md-blue);
  box-shadow: 0 12px 26px rgba(6, 76, 114, 0.06);
}

.md-home__category-card {
  display: grid;
  grid-template-rows: 220px auto;
}

.md-home__category-card img,
.md-home__image-placeholder,
.md-home__product-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  padding: 20px;
  background: #fff;
}

.md-home__image-placeholder {
  display: block;
  background:
    radial-gradient(circle at 26% 32%, rgba(236, 119, 0, 0.22), transparent 22%),
    radial-gradient(circle at 72% 62%, rgba(71, 174, 168, 0.22), transparent 24%),
    #fff;
}

.md-home__category-card strong {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: linear-gradient(135deg, var(--md-soft), #fff);
  border-top: 1px solid var(--md-line);
  font-weight: 900;
  text-align: center;
}

.md-home__product-rail {
  grid-auto-columns: minmax(260px, 310px);
}

.md-home__product-card {
  display: grid;
  grid-template-rows: 240px auto auto;
  min-height: 360px;
}

.md-home__product-card img {
  height: 240px;
}

.md-home__product-card strong,
.md-home__product-card span {
  display: block;
  padding: 0 20px;
}

.md-home__product-card strong {
  min-height: 52px;
  font-size: 17px;
  line-height: 1.25;
}

.md-home__product-card span {
  margin-top: 8px;
  padding-bottom: 20px;
  color: var(--md-orange);
  font-weight: 900;
}

.md-home__post-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(2, 0.92fr);
  gap: 18px;
}

.md-home__post-card {
  min-height: 320px;
  display: grid;
  align-content: end;
  overflow: hidden;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(6, 76, 114, 0.86)),
    url("../images/brand-botanique-composition.png") center / cover no-repeat;
  color: #fff;
  box-shadow: 0 12px 26px rgba(6, 76, 114, 0.06);
}

.md-home__post-card:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(236, 119, 0, 0.84)),
    url("../images/cadre-botanique-header.png") center / cover no-repeat;
}

.md-home__post-card:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(71, 174, 168, 0.84)),
    url("../images/brand-papier-en-tete.png") center / cover no-repeat;
}

.md-home__post-card small {
  margin-bottom: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.md-home__post-card strong {
  font-family: var(--md-serif);
  font-size: 34px;
  line-height: 1.02;
}

.md-home__post-card p {
  max-width: 520px;
  margin: 12px 0 0;
  line-height: 1.45;
}

.md-home__steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.md-home__steps li {
  position: relative;
  overflow: hidden;
  padding: 32px 30px 30px 96px;
  background: #fff;
  border: 1px solid var(--md-line);
  box-shadow: 0 16px 34px rgba(6, 76, 114, 0.07);
}

.md-home__steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 26px;
  top: 30px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--md-orange);
  color: #fff;
  font-weight: 900;
}

.md-home__steps strong {
  display: block;
  color: var(--md-blue);
  font-size: 24px;
}

.md-home__steps span {
  display: block;
  margin-top: 10px;
  color: var(--md-muted);
  font-size: 16px;
  line-height: 1.45;
}

.md-home__about-hero {
  min-height: 560px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: center;
  padding: 88px max(36px, calc((100vw - 1240px) / 2));
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 252, 253, 0.94)),
    url("../images/brand-papier-en-tete.png") center / cover no-repeat;
}

.md-home__about-hero p {
  margin-top: 24px;
}

.md-home__about-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 82px max(36px, calc((100vw - 1240px) / 2));
}

.md-home__about-proof {
  min-height: 220px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--md-line);
  border-top: 10px solid var(--md-orange);
  box-shadow: 0 14px 30px rgba(6, 76, 114, 0.07);
}

.md-home__about-proof:nth-child(2) { border-top-color: var(--md-teal); }
.md-home__about-proof:nth-child(3) { border-top-color: var(--md-red); }

.md-home__about-proof strong {
  display: block;
  color: var(--md-blue);
  font-family: var(--md-serif);
  font-size: 32px;
  line-height: 1.04;
}

.md-home__about-proof p {
  color: var(--md-muted);
  line-height: 1.5;
}

.md-home__newsletter {
  position: relative;
  overflow: hidden;
  padding: 76px max(36px, calc((100vw - 1240px) / 2));
  background: var(--md-blue);
  color: #fff;
}

.md-home__newsletter::before,
.md-home__newsletter::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background: url("../images/botanique-droite.png") center / contain no-repeat;
  opacity: 0.44;
  pointer-events: none;
}

.md-home__newsletter::before {
  left: -120px;
  top: -90px;
}

.md-home__newsletter::after {
  right: -120px;
  bottom: -120px;
  transform: rotate(180deg);
}

.md-home__newsletter-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 42px;
  align-items: center;
}

.md-home__newsletter h2,
.md-home__newsletter p {
  color: #fff;
}

.md-home__newsletter p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.86);
}

.md-home__newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin: 0;
  padding: 10px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(18px);
}

.md-home__newsletter-form input {
  min-width: 0;
  border: 0;
  background: #fff;
  padding: 16px 18px;
  font: inherit;
}

.md-home__newsletter-form button {
  border: 0;
  background: var(--md-orange);
  color: #fff;
  padding: 0 22px;
  font-weight: 900;
  cursor: pointer;
}

.md-home__newsletter-form small {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.md-home__footer {
  display: grid;
  grid-template-columns: minmax(220px, 1.1fr) repeat(3, minmax(160px, 0.7fr));
  gap: 34px;
  padding: 70px max(36px, calc((100vw - 1240px) / 2));
  background: var(--md-dark);
  color: #fff;
  border-top: 8px solid;
  border-image: linear-gradient(90deg, var(--md-blue), var(--md-teal), var(--md-orange), var(--md-red), var(--md-rose), var(--md-blue)) 1;
}

.md-home__footer img {
  width: 190px;
  filter: grayscale(1) brightness(2.5);
}

.md-home__footer strong,
.md-home__footer a,
.md-home__footer p {
  display: block;
}

.md-home__footer strong {
  margin-bottom: 18px;
  font-size: 18px;
}

.md-home__footer a,
.md-home__footer p {
  margin: 10px 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.45;
}

.md-reveal {
  opacity: 1;
  transform: none;
}

.md-home-2026.is-md-js .md-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.md-home-2026.is-md-js .md-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .md-home-2026 *,
  .md-home-2026 *::before,
  .md-home-2026 *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .md-reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .md-home__nav-shell {
    grid-template-columns: 190px auto 1fr;
  }

  .md-home__header-cta {
    display: none;
  }

  .md-home__mega-silos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md-home__highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md-home__category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 840px) {
  .md-home__topline {
    display: none;
  }

  .md-home__nav-shell {
    min-height: 74px;
    grid-template-columns: 150px 1fr auto;
    gap: 10px;
    padding: 10px 16px;
  }

  .md-home__brand-link img {
    width: 145px;
  }

  .md-home__mega-trigger {
    order: 3;
    width: 48px;
    padding: 0;
  }

  .md-home__mega-trigger span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .md-home__search {
    order: 2;
  }

  .md-home__search input[type="search"],
  .md-home__search .search-field {
    padding: 10px 12px;
  }

  .md-home__search button,
  .md-home__search input[type="submit"] {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .md-home__mega-panel {
    position: fixed;
    inset: 74px 12px auto;
    max-height: calc(100vh - 90px);
    overflow: auto;
    grid-template-columns: 1fr;
  }

  .md-home__mega-silos {
    grid-template-columns: 1fr;
  }

  .md-home__mega-silo {
    min-height: 132px;
    display: grid;
    grid-template-columns: 86px 1fr;
    align-items: center;
    gap: 16px;
  }

  .md-home__mega-silo span {
    grid-row: 1 / span 2;
    width: 86px;
    height: 86px;
  }

  .md-home__mega-silo strong,
  .md-home__mega-silo small {
    grid-column: 2;
  }

  .md-home__mega-details {
    min-height: 0;
  }

  .md-home__mega-detail {
    position: static;
    display: none;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .md-home__mega-detail.is-active {
    display: grid;
  }

  .md-home__mega-detail-visual {
    height: 190px;
  }

  .md-home__mega-detail h2 {
    font-size: 36px;
  }

  .md-home__hero,
  .md-home__heading,
  .md-home__heading--with-actions,
  .md-home__atelier,
  .md-home__steps,
  .md-home__about-hero,
  .md-home__about-proof-grid,
  .md-home__post-grid,
  .md-home__newsletter-inner,
  .md-home__footer {
    grid-template-columns: 1fr;
  }

  .md-home__hero {
    min-height: auto;
    padding: 54px 20px 72px;
  }

  .md-home__hero h1,
  .md-home__about-hero h1 {
    font-size: clamp(36px, 10vw, 50px);
    line-height: 1;
  }

  .md-home__section h2,
  .md-home__newsletter h2 {
    font-size: clamp(34px, 10vw, 50px);
  }

  .md-home__proofs {
    display: grid;
  }

  .md-home__heading--with-actions {
    align-items: flex-start;
  }

  .md-home__slider-actions {
    justify-content: flex-start;
  }

  .md-home__leaf--left {
    width: 320px;
    left: -245px;
    top: 165px;
    opacity: 0.22;
  }

  .md-home__leaf--right {
    width: 340px;
    right: -220px;
    bottom: -130px;
    opacity: 0.34;
  }

  .md-home__product-frame {
    min-height: 360px;
  }

  .md-home__product-frame img {
    max-height: 320px;
  }

  .md-home__section,
  .md-home__about-hero,
  .md-home__about-proof-grid,
  .md-home__newsletter,
  .md-home__footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .md-home__category-grid {
    grid-template-columns: 1fr;
  }

  .md-home__highlight-grid {
    grid-template-columns: 1fr;
  }

  .md-home__highlight-card {
    min-height: 250px;
  }

  .md-home__newsletter-form {
    grid-template-columns: 1fr;
  }
}

/* Boutique 2026 direction: richer storefront, same admin/content model. */
.md-home-2026 {
  --md-green: #58b934;
  --md-magenta: #d7155d;
  --md-violet: #752095;
  --md-radius-xl: 34px;
  --md-radius-lg: 24px;
  --md-shadow-deep: 0 34px 90px rgba(6, 76, 114, 0.18);
  --md-shadow-soft: 0 18px 44px rgba(6, 76, 114, 0.1);
  background:
    linear-gradient(90deg, rgba(6, 76, 114, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(6, 76, 114, 0.035) 1px, transparent 1px),
    #fff;
  background-size: 56px 56px;
}

.md-home__header {
  border-bottom: 0;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 1px 0 rgba(6, 76, 114, 0.08);
}

.md-home__topline {
  position: relative;
  min-height: 36px;
  background: #fff;
  color: var(--md-blue);
  border-bottom: 1px solid rgba(6, 76, 114, 0.09);
}

.md-home__topline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 4px;
  background: linear-gradient(90deg, var(--md-teal), var(--md-orange), var(--md-violet), var(--md-magenta), var(--md-blue), var(--md-green));
}

.md-home__nav-shell {
  max-width: 1320px;
  min-height: 78px;
  margin: 12px auto 0;
  border: 1px solid rgba(6, 76, 114, 0.1);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 48px rgba(6, 76, 114, 0.1);
  backdrop-filter: blur(22px);
}

.md-home__mega-trigger,
.md-home__header-cta,
.md-home__search form,
.md-home__search .woocommerce-product-search,
.md-home__search button,
.md-home__search input[type="submit"],
.md-btn,
.md-home__quick-strip a {
  border-radius: 999px;
}

.md-home__mega-trigger {
  background: linear-gradient(135deg, rgba(71, 174, 168, 0.13), rgba(255, 255, 255, 0.82));
}

.md-home__search form,
.md-home__search .woocommerce-product-search {
  background: rgba(244, 248, 249, 0.78);
  box-shadow: inset 0 0 0 1px rgba(6, 76, 114, 0.04);
}

.md-home__header-cta {
  background: linear-gradient(135deg, var(--md-orange), #ff4d23);
}

.md-home__quick-strip {
  max-width: 1320px;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
  margin: 10px auto 14px;
  padding: 0 24px;
}

.md-home__quick-strip a {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  box-shadow: 0 12px 26px rgba(6, 76, 114, 0.12);
  transition: transform 180ms ease, filter 180ms ease;
}

.md-home__quick-strip a:hover {
  transform: translateY(-2px);
  filter: saturate(1.08);
}

.md-home__mega-panel {
  border-radius: 26px;
  box-shadow: 0 34px 92px rgba(6, 76, 114, 0.22);
}

.md-home__mega-silo,
.md-home__mega-details,
.md-home__mega-detail-visual,
.md-home__product-frame,
.md-home__product-note,
.md-home__highlight-card,
.md-home__promo-card,
.md-home__need-card,
.md-home__atelier-visual,
.md-home__category-card,
.md-home__product-card,
.md-home__post-card,
.md-home__steps li,
.md-home__newsletter-form {
  border-radius: var(--md-radius-lg);
}

.md-home__hero {
  min-height: 760px;
  grid-template-columns: minmax(360px, 0.88fr) minmax(420px, 1.12fr);
  gap: 54px;
  padding-top: 84px;
  background:
    linear-gradient(116deg, rgba(255, 255, 255, 0) 0 54%, rgba(71, 174, 168, 0.16) 54.2% 100%),
    radial-gradient(circle at 87% 28%, rgba(236, 119, 0, 0.18), transparent 24%),
    radial-gradient(circle at 12% 74%, rgba(117, 32, 149, 0.11), transparent 28%),
    #fff;
  border-bottom: 1px solid rgba(6, 76, 114, 0.08);
}

.md-home__hero::before {
  content: "";
  position: absolute;
  right: -12vw;
  top: 110px;
  width: 62vw;
  height: 430px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(71, 174, 168, 0.28), rgba(255, 255, 255, 0.04)),
    linear-gradient(90deg, rgba(6, 76, 114, 0.08), rgba(236, 119, 0, 0.12));
  transform: rotate(-10deg);
  pointer-events: none;
}

.md-home__hero::after {
  content: "";
  position: absolute;
  left: max(24px, calc((100vw - 1240px) / 2));
  bottom: 34px;
  width: min(780px, calc(100vw - 48px));
  height: 1px;
  background: linear-gradient(90deg, var(--md-teal), var(--md-orange), var(--md-magenta), transparent);
}

.md-home__hero .md-home__line {
  display: none;
}

.md-home__hero h1 {
  max-width: 700px;
  color: #082f4a;
  font-size: clamp(48px, 5.2vw, 82px);
}

.md-home__hero-copy > p:not(.md-home__line) {
  max-width: 610px;
  color: #415968;
}

.md-home__actions {
  gap: 12px;
}

.md-btn {
  min-height: 58px;
  padding: 0 28px;
  border: 0;
}

.md-btn--primary {
  background: linear-gradient(135deg, var(--md-blue), #0b6792);
}

.md-btn--secondary {
  border: 1px solid rgba(6, 76, 114, 0.16);
}

.md-home__proofs {
  max-width: 720px;
}

.md-home__proofs li {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 10px 28px rgba(6, 76, 114, 0.08);
}

.md-home__hero-silo-links a {
  border-radius: 999px;
  background: rgba(6, 76, 114, 0.88);
  backdrop-filter: blur(14px);
}

.md-home__showcase {
  min-height: 620px;
  align-items: center;
}

.md-home__showcase::before {
  inset: 34px 28px 70px;
  border-radius: 44px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.42)),
    radial-gradient(circle at 10% 18%, rgba(236, 119, 0, 0.18), transparent 24%),
    radial-gradient(circle at 90% 82%, rgba(71, 174, 168, 0.22), transparent 26%);
  backdrop-filter: blur(20px);
  transform: rotate(-2deg);
}

.md-home__showcase::after {
  content: "";
  position: absolute;
  inset: 72px 84px 138px;
  border: 1px solid rgba(6, 76, 114, 0.1);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.36);
  transform: rotate(2deg);
}

.md-home__product-frame {
  width: min(550px, 92%);
  min-height: 545px;
  border: 0;
  box-shadow: var(--md-shadow-deep);
}

.md-home__product-frame img {
  max-height: 492px;
  border-radius: 18px;
}

.md-home__orbit-card {
  position: absolute;
  z-index: 4;
  display: block;
  width: 178px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 38px rgba(6, 76, 114, 0.13);
  color: var(--md-blue);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  backdrop-filter: blur(16px);
}

.md-home__orbit-card strong {
  display: block;
  margin-top: 4px;
  color: var(--md-orange);
  font-size: 16px;
}

.md-home__orbit-card--top {
  top: 52px;
  right: 10px;
}

.md-home__orbit-card--bottom {
  left: 8px;
  bottom: 128px;
}

.md-home__product-note {
  width: min(480px, 84%);
  border-left: 0;
  border-top: 7px solid var(--md-teal);
}

.md-home__highlights {
  margin-top: 0;
  padding-top: 78px;
  background:
    linear-gradient(180deg, #fff 0%, #f8fcfd 100%);
}

.md-home__highlight-grid {
  grid-template-columns: 1.12fr 1fr 1fr;
  gap: 22px;
}

.md-home__highlight-card {
  min-height: 390px;
  padding: 34px;
}

.md-home__highlight-card span {
  font-size: clamp(36px, 3.2vw, 58px);
}

.md-home__highlight-card em {
  border-radius: 999px;
}

.md-home__promo {
  overflow: hidden;
  background:
    radial-gradient(circle at 94% 8%, rgba(236, 119, 0, 0.35), transparent 20%),
    linear-gradient(135deg, #053752 0%, #064c72 54%, #0a6682 100%);
  color: #fff;
}

.md-home__promo h2,
.md-home__promo p {
  color: #fff;
}

.md-home__promo .md-home__heading p {
  color: rgba(255, 255, 255, 0.78);
}

.md-home__promo-rail {
  grid-auto-columns: minmax(300px, 360px);
  padding-bottom: 34px;
}

.md-home__promo-card {
  min-height: 455px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 28px 66px rgba(0, 0, 0, 0.16);
}

.md-home__promo-image {
  border-radius: 18px;
}

.md-home__needs {
  background:
    linear-gradient(180deg, #fff 0%, rgba(248, 252, 253, 0.82) 100%);
}

.md-home__rail {
  scrollbar-width: thin;
}

.md-home__need-card {
  min-height: 230px;
  border-top: 0;
  border-left: 9px solid var(--md-teal);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(248, 252, 253, 0.92));
}

.md-home__atelier {
  border-radius: 0;
  background:
    linear-gradient(120deg, rgba(6, 76, 114, 0.95), rgba(6, 76, 114, 0.78) 48%, rgba(71, 174, 168, 0.84)),
    url("../images/brand-papier-en-tete.png") center / cover no-repeat;
}

.md-home__atelier-visual {
  border: 12px solid rgba(255, 255, 255, 0.18);
}

.md-home__categories {
  background:
    linear-gradient(180deg, #f8fcfd 0%, #fff 100%);
}

.md-home__category-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.md-home__category-card {
  grid-column: span 2;
  min-height: 330px;
  border: 0;
}

.md-home__category-card:nth-child(1),
.md-home__category-card:nth-child(2) {
  grid-column: span 3;
}

.md-home__category-card img,
.md-home__image-placeholder,
.md-home__product-card img,
.md-home__promo-image img {
  border-radius: 18px;
}

.md-home__category-card img,
.md-home__image-placeholder {
  height: 250px;
  padding: 12px;
  background:
    radial-gradient(circle at 22% 18%, rgba(71, 174, 168, 0.14), transparent 26%),
    radial-gradient(circle at 82% 68%, rgba(236, 119, 0, 0.12), transparent 24%),
    #fff;
}

.md-home__category-card strong {
  justify-content: flex-start;
  min-height: 88px;
  padding: 18px 22px;
  font-size: 18px;
  text-align: left;
}

.md-home__product-card {
  border: 0;
  border-radius: 26px;
  box-shadow: var(--md-shadow-soft);
}

.md-home__quote {
  background:
    linear-gradient(135deg, rgba(71, 174, 168, 0.14), rgba(236, 119, 0, 0.09)),
    #fff;
}

.md-home__steps li {
  border: 0;
  box-shadow: var(--md-shadow-soft);
}

.md-home__blog {
  background: #fff;
}

.md-home__post-card {
  border: 0;
  min-height: 360px;
}

.md-home__newsletter {
  background:
    linear-gradient(135deg, #064c72, #0a6b86 60%, #47aea8);
}

.md-home__newsletter-inner {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 32px;
  padding: 34px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.md-home__footer {
  background:
    linear-gradient(135deg, #2f3339, #1f252b);
}

.md-home__footer img {
  filter: none;
  width: 190px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
}

@media (max-width: 1120px) {
  .md-home__quick-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .md-home__hero {
    grid-template-columns: 1fr 0.9fr;
  }
}

@media (max-width: 840px) {
  .md-home__nav-shell {
    margin: 8px 12px 0;
    border-radius: 22px;
  }

  .md-home__quick-strip {
    display: flex;
    overflow-x: auto;
    margin: 8px 0 10px;
    padding: 0 12px 6px;
  }

  .md-home__quick-strip a {
    min-width: 168px;
  }

  .md-home__hero {
    display: block;
    padding: 48px 20px 62px;
  }

  .md-home__hero::before,
  .md-home__hero::after {
    display: none;
  }

  .md-home__hero h1 {
    font-size: clamp(38px, 11vw, 56px);
  }

  .md-home__hero-copy > p:not(.md-home__line) {
    font-size: 18px;
  }

  .md-home__hero-visual {
    margin-top: 34px;
  }

  .md-home__showcase {
    min-height: 470px;
  }

  .md-home__showcase::after,
  .md-home__orbit-card {
    display: none;
  }

  .md-home__product-frame {
    min-height: 390px;
  }

  .md-home__highlight-grid,
  .md-home__category-grid {
    grid-template-columns: 1fr;
  }

  .md-home__category-card,
  .md-home__category-card:nth-child(1),
  .md-home__category-card:nth-child(2) {
    grid-column: auto;
  }

  .md-home__highlight-card {
    min-height: 300px;
  }

  .md-home__newsletter-inner {
    padding: 22px;
  }
}

/* Final visual tightening after browser review. */
.md-home__leaf--left {
  left: -245px;
  top: 150px;
  opacity: 0.28;
}

.md-home__orbit-card {
  z-index: 8;
  transform: translateZ(80px);
}

.md-home__orbit-card--top {
  left: 36px;
  right: auto;
  top: 86px;
}

.md-home__orbit-card--bottom {
  left: auto;
  right: 0;
  bottom: 72px;
}

@media (max-width: 840px) {
  .md-home__leaf--left {
    left: -260px;
    top: 210px;
    opacity: 0.18;
  }

  .md-home__hero h1 {
    font-size: clamp(34px, 9.5vw, 44px);
    line-height: 0.98;
  }

  .md-home__hero-copy > p:not(.md-home__line) {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.5;
  }

  .md-home__actions {
    margin-top: 24px;
  }

  .md-btn {
    min-height: 52px;
  }

  .md-home__proofs {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    margin-top: 20px;
    padding-bottom: 8px;
  }

  .md-home__proofs li {
    min-width: max-content;
  }

  .md-home__hero-silo-links {
    display: none;
  }
}
