@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
  --lmd-green: #1b4d3e;
  --lmd-green-dark: #123829;
  --lmd-green-light: #2d6b52;
  --lmd-terracotta: #c75b3a;
  --lmd-terracotta-light: #e8a87c;
  --lmd-cream: #faf8f5;
  --lmd-cream-dark: #f0ede8;
  --lmd-ink: #1a1a2e;
  --lmd-muted: #6b6560;
  --lmd-line: #e7e2da;
  --lmd-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --lmd-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--lmd-cream);
  color: var(--lmd-ink);
  font-family: var(--lmd-sans);
  -webkit-font-smoothing: antialiased;
}
body a { color: inherit; }
body a:hover { color: var(--lmd-terracotta); }
h1, h2, h3, h4, h5, h6 { font-family: var(--lmd-serif); color: var(--lmd-green); letter-spacing: -.025em; }
.lmd-page-width { width: min(1216px, calc(100% - 48px)); margin-inline: auto; }

/* Header */
#header.header { position: relative; z-index: 30; background: rgba(250,248,245,.96); border-bottom: 1px solid rgba(27,77,62,.08); }
.lmd-header__inner { min-height: 92px; display: grid; grid-template-columns: 180px 1fr 180px; align-items: center; gap: 24px; }
.lmd-header__logo { display: inline-flex; align-items: center; width: 146px; height: 70px; overflow: hidden; }
.lmd-header__logo img { display: block; width: 146px; height: auto; }
.lmd-header__nav { display: flex; align-items: center; justify-content: center; gap: clamp(16px, 2.2vw, 32px); }
.lmd-header__nav > a, .lmd-header__menu-item > a { position: relative; display: inline-flex; align-items: center; gap: 5px; padding: 14px 0; color: #625e5a; font-size: 14px; font-weight: 500; text-decoration: none; white-space: nowrap; }
.lmd-header__nav > a::after, .lmd-header__menu-item > a::after { content: ''; position: absolute; left: 0; right: 0; bottom: 7px; height: 2px; background: var(--lmd-terracotta); transform: scaleX(0); transition: transform .25s ease; }
.lmd-header__nav > a:hover, .lmd-header__nav > a[aria-current='page'], .lmd-header__menu-item > a:hover, .lmd-header__menu-item > a[aria-current='page'] { color: var(--lmd-green); }
.lmd-header__nav > a:hover::after, .lmd-header__nav > a[aria-current='page']::after, .lmd-header__menu-item > a:hover::after, .lmd-header__menu-item > a[aria-current='page']::after { transform: scaleX(1); }
.lmd-header__menu-item { position: relative; }
.lmd-header__submenu { position: absolute; z-index: 40; top: calc(100% - 2px); left: 50%; display: none; min-width: 290px; padding: 10px; border: 1px solid var(--lmd-line); border-radius: 14px; background: var(--lmd-cream); box-shadow: 0 18px 40px rgba(27,77,62,.14); transform: translateX(-50%); }
.lmd-header__menu-item:hover .lmd-header__submenu, .lmd-header__menu-item:focus-within .lmd-header__submenu { display: grid; }
.lmd-header__submenu a { padding: 10px 12px; border-radius: 9px; color: var(--lmd-ink); font-size: 13px; line-height: 1.35; text-decoration: none; }
.lmd-header__submenu a:hover { background: var(--lmd-cream-dark); color: var(--lmd-green); }
.lmd-header__actions { display: flex; justify-content: flex-end; align-items: center; gap: 14px; }
.lmd-header__account { color: var(--lmd-green); font-size: 22px; text-decoration: none; }
.lmd-header__boutique { display: inline-flex; align-items: center; gap: 8px; padding: 12px 20px; border-radius: 999px; background: var(--lmd-green); color: #fff !important; font-size: 14px; font-weight: 700; text-decoration: none; box-shadow: 0 4px 15px rgba(27,77,62,.15); transition: transform .25s ease, background .25s ease; }
.lmd-header__boutique:hover { background: var(--lmd-terracotta); transform: translateY(-2px); }
.lmd-header__bag { font-size: 19px; line-height: 1; }
.lmd-header__count { display: inline-grid; place-items: center; min-width: 18px; height: 18px; border-radius: 50%; background: var(--lmd-terracotta); font-size: 11px; }
.lmd-header__toggle { display: none; border: 0; background: transparent; padding: 8px; }

/* Reset parent layout chrome */
#wrapper { background: var(--lmd-cream); }
#center-column, .center-column, .columns-container, .page-content--home { width: 100%; max-width: none; padding: 0; margin: 0; }
.page-content--home > * { width: 100%; }
/* The Hummingbird installation keeps its demo widgets hooked to displayHome;
 * Lamadobio renders the migrated sections through lamadobio_home instead. */
.page-content--home > .ps-imageslider,
.page-content--home > .ps-customtext,
.page-content--home > .ps-banner,
.page-content--home > .ps-featuredproducts,
.page-content--home > .ps-newproducts,
.page-content--home > .ps-bestsellers,
.page-content--home > .ps-emailsubscription { display: none !important; }
.breadcrumb { width: min(1216px, calc(100% - 48px)); margin: 24px auto 0; padding: 0; background: transparent; border: 0; color: var(--lmd-muted); font: 13px var(--lmd-sans); }
.lmd-breadcrumb-wrap { padding-top: 22px; }
.lmd-breadcrumb-wrap .breadcrumb { width: 100%; margin: 0; }
.skip-link { z-index: 100; }

/* Hero */
.lamadobio-hero { position: relative; min-height: min(760px, 85vh); display: flex; align-items: center; overflow: hidden; background-color: var(--lmd-green-dark); background-position: center; background-size: cover; }
.lamadobio-hero__overlay { position: absolute; inset: 0; background: rgba(26,77,58,.5); }
.lamadobio-hero__grain { position: absolute; inset: 0; opacity: .04; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E"); }
.lamadobio-hero__content { position: relative; z-index: 1; padding: 150px 0 135px; }
.lamadobio-hero__content--left { text-align: left; }
.lamadobio-hero__content--center { text-align: center; margin-inline: auto; }
.lamadobio-hero__content--center .lamadobio-hero__heading, .lamadobio-hero__content--center .lamadobio-hero__subheading { margin-inline: auto; }
.lamadobio-hero__content--center .lamadobio-hero__cta { justify-content: center; }
.lamadobio-hero__eyebrow, .lamadobio-eyebrow { margin: 0 0 20px; color: var(--lmd-terracotta-light); font: 600 12px var(--lmd-sans); letter-spacing: .2em; text-transform: uppercase; }
.lamadobio-hero__heading { max-width: 690px; margin: 0 0 24px; color: #fff; font-size: clamp(48px, 6vw, 88px); font-weight: 600; line-height: 1.04; }
.lamadobio-hero__subheading { max-width: 620px; margin: 0 0 38px; color: rgba(255,255,255,.82); font-size: 17px; line-height: 1.75; }
.lamadobio-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.lamadobio-btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; padding: 13px 24px; border: 1px solid transparent; border-radius: 999px; font: 600 13px var(--lmd-sans); letter-spacing: .07em; text-transform: uppercase; text-decoration: none; transition: transform .3s ease, background .3s ease, border-color .3s ease, color .3s ease, box-shadow .3s ease; }
.lamadobio-btn--primary { background: #fff; color: var(--lmd-green) !important; box-shadow: 0 6px 22px rgba(0,0,0,.16); }
.lamadobio-btn--primary:hover { background: var(--lmd-terracotta); color: #fff !important; transform: translateY(-3px); }
.lamadobio-btn--outline { border-color: rgba(255,255,255,.72); color: #fff !important; background: transparent; }
.lamadobio-btn--outline:hover { background: rgba(255,255,255,.14); border-color: #fff; color: #fff !important; transform: translateY(-2px); }
.lamadobio-btn--outline-dark { border-color: var(--lmd-green); color: var(--lmd-green) !important; background: transparent; }
.lamadobio-btn--outline-dark:hover { background: var(--lmd-green); color: #fff !important; transform: translateY(-2px); }
.lamadobio-hero__scroll { position: absolute; z-index: 1; bottom: 28px; left: 50%; transform: translateX(-50%); }
.lamadobio-hero__scroll-line { display: block; width: 1px; height: 52px; background: linear-gradient(#fff, transparent); }

/* Homepage product showcases */
.lamadobio-products { padding: 104px 0 112px; }
.lamadobio-products--elegant { background: var(--lmd-cream); }
.lamadobio-products--organic { background: #edf5f1; }
.lamadobio-products--luxury { background: #f5f0e8; }
.lamadobio-products__header { max-width: 640px; margin: 0 auto 52px; text-align: center; }
.lamadobio-products__header .lamadobio-eyebrow { color: var(--lmd-terracotta); margin-bottom: 12px; }
.lamadobio-products__title { margin: 0 0 14px; color: var(--lmd-green); font-size: clamp(36px, 4vw, 52px); font-weight: 600; line-height: 1.12; }
.lamadobio-products__subtitle { margin: 0 auto; color: rgba(26,26,46,.64); font-size: 16px; line-height: 1.65; }
.lamadobio-products__grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 24px; }
.lamadobio-product-card { min-width: 0; background: #fff; border-radius: 18px; box-shadow: 0 4px 20px rgba(27,77,62,.06); overflow: hidden; transition: transform .35s ease, box-shadow .35s ease; }
.lamadobio-product-card:hover { transform: translateY(-7px); box-shadow: 0 18px 35px rgba(27,77,62,.13); }
.lamadobio-product-card__link { display: block; height: 100%; color: inherit; text-decoration: none; }
.lamadobio-product-card__media { position: relative; aspect-ratio: 1; overflow: hidden; background: #f3f0ec; }
.lamadobio-product-card__media img { display: block; width: 100%; height: 100%; padding: 14px; object-fit: contain; mix-blend-mode: multiply; transition: transform .6s cubic-bezier(.16,1,.3,1); }
.lamadobio-product-card:hover .lamadobio-product-card__media img { transform: scale(1.06); }
.lamadobio-product-card__placeholder { display: grid; place-items: center; width: 100%; height: 100%; padding: 20px; color: var(--lmd-green); text-align: center; }
.lamadobio-product-card__badge { position: absolute; top: 12px; left: 12px; padding: 6px 11px; border-radius: 999px; background: var(--lmd-terracotta); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.lamadobio-product-card__info { position: relative; padding: 17px 48px 21px 18px; }
.lamadobio-product-card__name { min-height: 42px; margin: 0 0 9px; color: var(--lmd-ink); font-size: 18px; font-weight: 600; line-height: 1.26; }
.lamadobio-product-card__price { margin: 0; color: var(--lmd-terracotta); font-size: 16px; font-weight: 700; }
.lamadobio-product-card__arrow { position: absolute; right: 18px; bottom: 20px; color: var(--lmd-green); font-size: 21px; line-height: 1; transition: transform .25s ease; }
.lamadobio-product-card:hover .lamadobio-product-card__arrow { transform: translateX(4px); }
.lamadobio-products__footer { padding-top: 42px; text-align: center; }

/* Editorial sections */
.lamadobio-image-text { padding: 110px 0; background: var(--lmd-cream); }
.lamadobio-image-text--dark { background: var(--lmd-green); }
.lamadobio-image-text__grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); align-items: center; gap: clamp(42px, 7vw, 96px); }
.lamadobio-image-text__grid--text_first > .lamadobio-image-text__media { order: 2; }
.lamadobio-image-text__grid--text_first > .lamadobio-image-text__content { order: 1; }
.lamadobio-image-text__frame { aspect-ratio: 4/3; overflow: hidden; border-radius: 22px; background: #fff; box-shadow: 0 18px 45px rgba(27,77,62,.14); }
.lamadobio-image-text__frame img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.lamadobio-image-text__frame:hover img { transform: scale(1.035); }
.lamadobio-image-text__content { max-width: 520px; }
.lamadobio-image-text__content .lamadobio-eyebrow { color: var(--lmd-terracotta); }
.lamadobio-image-text__heading { margin: 0 0 22px; color: var(--lmd-green); font-size: clamp(38px, 4vw, 58px); line-height: 1.08; }
.lamadobio-image-text__text { margin-bottom: 29px; color: rgba(26,26,46,.7); font-size: 16px; line-height: 1.8; }
.lamadobio-image-text__text p { margin: 0 0 14px; }
.lamadobio-image-text--dark .lamadobio-image-text__heading, .lamadobio-image-text--dark .lamadobio-image-text__text { color: #fff; }
.lamadobio-image-text--dark .lamadobio-image-text__text { color: rgba(255,255,255,.78); }
.lamadobio-image-text--dark .lamadobio-image-text__content .lamadobio-eyebrow { color: var(--lmd-terracotta-light); }
.lamadobio-newsletter { padding: 90px 0; background: var(--lmd-green-dark); color: #fff; text-align: center; }
.lamadobio-newsletter h2 { margin: 0 0 13px; color: #fff; font-size: clamp(36px, 4vw, 52px); }
.lamadobio-newsletter > .lmd-page-width > p:not(.lamadobio-eyebrow) { max-width: 560px; margin: 0 auto 28px; color: rgba(255,255,255,.76); font-size: 16px; line-height: 1.65; }
.lamadobio-newsletter .lamadobio-eyebrow { color: var(--lmd-terracotta-light); }
.lamadobio-newsletter__native .block_newsletter, .lamadobio-footer__native-newsletter .block_newsletter { max-width: 460px; margin: 0 auto; }
.lamadobio-newsletter__form, .lamadobio-footer__newsletter-form { display: flex; max-width: 460px; margin: 0 auto; gap: 10px; }
.lamadobio-newsletter__form input[type=email], .lamadobio-footer__newsletter-form input[type=email] { flex: 1; min-width: 0; padding: 13px 17px; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; background: rgba(255,255,255,.08); color: #fff; }
.lamadobio-newsletter__form button, .lamadobio-footer__newsletter-form button { padding: 13px 20px; border: 0; border-radius: 999px; background: var(--lmd-terracotta); color: #fff; font-weight: 700; cursor: pointer; }
.lamadobio-newsletter__native .block_newsletter h4, .lamadobio-footer__native-newsletter .block_newsletter h4 { display: none; }
.lamadobio-newsletter__native form, .lamadobio-footer__native-newsletter form { display: flex; gap: 10px; }
.lamadobio-newsletter__native input[type=email], .lamadobio-footer__native-newsletter input[type=email] { flex: 1; min-width: 0; padding: 13px 17px; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; background: rgba(255,255,255,.08); color: #fff; }
.lamadobio-newsletter__native input[type=submit], .lamadobio-footer__native-newsletter input[type=submit] { padding: 13px 20px; border: 0; border-radius: 999px; background: var(--lmd-terracotta); color: #fff; font-weight: 700; cursor: pointer; }

/* Collection listing */
/* Keep the semantic category heading for screen readers while removing the
   redundant visual title from product-listing pages. */
body#category .lmd-category-hero__title {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
body#category .lmd-category-hero .lamadobio-eyebrow { display: none; }

/* The range summary is informational; keep sorting/filtering and pagination
   controls intact while removing the noisy "Affichage ... de ... article(s)"
   line on category listings (including common Hummingbird variants). */
body#category .products__selection .total-products,
body#category .products__selection .products__count,
body#category .products__selection .products-count,
body#category .products__selection .product-count,
body#category .products-selection .total-products,
body#category .products-selection .products-count,
body#category .products-selection .product-count,
body#category .products__selection .showing,
body#category .products-selection .showing,
body#category .products__selection [class*='shown'],
body#category .products-selection [class*='shown'],
body#category .pagination__number { display: none !important; }
body#category .products__selection { justify-content: flex-end; }

.lmd-category-hero { padding: 72px 0 66px; background: linear-gradient(135deg, var(--lmd-green) 0%, var(--lmd-green-light) 100%); text-align: center; }
.lmd-category-hero .lamadobio-eyebrow { color: var(--lmd-terracotta-light); }
.lmd-category-hero__title { margin: 0 auto 14px; color: #fff; font-size: clamp(42px, 5vw, 70px); }
.lmd-category-hero__description { max-width: 650px; margin: auto; color: rgba(255,255,255,.78); line-height: 1.7; }
.lmd-subcategories { padding-top: 25px; }
#js-product-list { width: min(1216px, calc(100% - 48px)); margin: 0 auto; padding: 45px 0 100px; }
.products__selection { display: flex; justify-content: space-between; align-items: center; margin-bottom: 26px; color: var(--lmd-muted); font-size: 13px; }
.products { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 24px; }
.product-miniature { min-width: 0; padding: 0 !important; background: #fff; border-radius: 18px; box-shadow: 0 4px 20px rgba(27,77,62,.06); overflow: hidden; transition: transform .35s ease, box-shadow .35s ease; }
.product-miniature:hover { transform: translateY(-6px); box-shadow: 0 18px 35px rgba(27,77,62,.13); }
.product-miniature__inner, .product-miniature__top { height: 100%; }
.product-miniature__image-container { position: relative; margin: 0; background: #f3f0ec; }
.product-miniature__image-link { display: block; border: 0 !important; border-radius: 0 !important; }
.product-miniature__image { display: block; width: 100%; height: auto; aspect-ratio: 1; object-fit: contain; padding: 14px; mix-blend-mode: multiply; transition: transform .55s ease; }
.product-miniature:hover .product-miniature__image { transform: scale(1.05); }
.product-miniature__bottom { padding: 16px 18px 20px; }
.product-miniature__infos { display: block; }
.product-miniature__title { display: block; min-height: 43px; color: var(--lmd-ink); font: 600 17px/1.28 var(--lmd-serif); text-decoration: none; }
.product-miniature__prices { margin-top: 9px; }
.product-miniature__price { color: var(--lmd-terracotta); font-size: 15px; font-weight: 700; }
.product-miniature__actions, .product-miniature__quickview-button, .product-miniature__quickview-touch, .product-flags { display: none !important; }

/* Product page */
.page-product .columns-container { width: 100%; max-width: none; padding: 0; }
.page-product .product__container { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(0,.86fr); gap: clamp(38px, 6vw, 70px); width: min(1216px, calc(100% - 48px)); margin: 28px auto 70px; }
.page-product .product__left { min-width: 0; }
.page-product .product__images { overflow: hidden; border-radius: 20px; background: #fff; box-shadow: 0 8px 25px rgba(27,77,62,.04); }
.page-product .product__carousel .carousel-inner { background: #fff; }
.page-product .product__carousel .carousel-item img { display: block; width: 100%; aspect-ratio: 1; object-fit: contain; padding: 30px; }
.page-product .product__thumbnails { padding: 14px 17px 18px; background: #fff; }
.page-product .product__thumbnails-list { display: flex; gap: 10px; margin: 0; padding: 0; list-style: none; }
.page-product .product__thumbnail { width: 72px; height: 72px; padding: 0; border: 2px solid transparent; border-radius: 12px; background: #f3f0ec; overflow: hidden; }
.page-product .product__thumbnail.active { border-color: var(--lmd-green); }
.page-product .product__thumbnail-image { width: 100%; height: 100%; object-fit: contain; border: 0 !important; border-radius: 10px !important; }
.page-product .product__right { min-width: 0; padding-top: 5px; }
.lmd-product-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 17px; }
.lmd-pill { display: inline-flex; align-items: center; gap: 5px; padding: 6px 11px; border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.lmd-pill--soft { background: #e8efeb; color: var(--lmd-green); }
.lmd-pill--green { background: #e6f6ee; color: var(--lmd-green); }
.lmd-pill--cream { background: #fff7e5; color: #9d6b15; }
.lmd-pill--terracotta { background: #fbe9e3; color: var(--lmd-terracotta); }
.page-product .product__name { margin: 0 0 14px; color: var(--lmd-ink); font: 500 clamp(34px, 4vw, 53px)/1.1 var(--lmd-serif); }
.page-product .product__prices { margin: 0 0 17px; }
.page-product .product__price { color: var(--lmd-green); font: 500 28px var(--lmd-serif); }
.page-product .product__tax-infos { display: none; }
.page-product .product__description-short { max-height: 190px; overflow: hidden; margin: 0 0 17px; padding-bottom: 16px; border-bottom: 1px solid var(--lmd-line); color: rgba(26,26,46,.72); font-size: 15px; line-height: 1.65; }
.page-product .product__variants { margin-bottom: 18px; }
.lmd-product-variant { margin: 0 0 18px; padding: 0; border: 0; }
.lmd-product-variant .product-variant__legend { display: block; margin: 0 0 10px; color: var(--lmd-ink); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.lmd-variant-select { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.lmd-variant-options { display: flex; flex-wrap: wrap; gap: 8px; }
.lmd-variant-option { display: inline-flex; align-items: center; justify-content: center; min-height: 40px; padding: 8px 14px; border: 1px solid var(--lmd-line); border-radius: 10px; background: #fff; color: var(--lmd-ink); font: 500 13px var(--lmd-sans); cursor: pointer; transition: all .2s ease; }
.lmd-variant-option:hover, .lmd-variant-option.is-selected { border-color: var(--lmd-green); background: var(--lmd-green); color: #fff; }
.lmd-variant-radio { position: absolute; opacity: 0; pointer-events: none; }
.page-product .product__actions-qty-add { display: flex; align-items: stretch; gap: 10px; }
.page-product .product__quantity { display: none; }
.page-product .product__add-to-cart { flex: 1; }
.page-product .product__add-to-cart-button { width: 100%; min-height: 53px; border: 0 !important; border-radius: 13px !important; background: var(--lmd-green) !important; color: #fff !important; font: 700 14px var(--lmd-sans) !important; box-shadow: 0 7px 20px rgba(27,77,62,.18); transition: transform .25s ease, background .25s ease; }
.page-product .product__add-to-cart-button:hover { background: var(--lmd-terracotta) !important; transform: translateY(-2px); }
.lmd-wishlist { width: 53px; min-width: 53px; border: 1px solid var(--lmd-line); border-radius: 13px; background: #fff; color: var(--lmd-green); font-size: 25px; cursor: pointer; }
.lmd-product-reassurance { display: flex; flex-wrap: wrap; gap: 13px; margin: 10px 0 0; color: var(--lmd-muted); font-size: 11px; }
.lmd-product-reassurance span:first-child { color: var(--lmd-green); }
.page-product .product__bottom { width: min(1216px, calc(100% - 48px)); margin: 0 auto 60px; }
.page-product .product__bottom-left { max-width: 760px; }
.page-product .product__accordion .accordion-item { margin: 8px 0; overflow: hidden; border: 1px solid var(--lmd-line); border-radius: 13px; background: #fff; }
.page-product .product__accordion .accordion-button { display: flex; align-items: center; gap: 10px; padding: 17px 19px; color: var(--lmd-ink); font: 600 14px var(--lmd-sans); background: #fff; box-shadow: none; }
.page-product .product__accordion .accordion-button::after { margin-left: auto; }
.lmd-accordion-icon { color: var(--lmd-green); font-size: 18px; line-height: 1; }
.page-product .product__accordion .accordion-body { padding: 0 19px 19px; color: var(--lmd-muted); font-size: 14px; line-height: 1.7; }
.page-product .product__accordion .rich-text { color: inherit; }
.lmd-product-trust-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; max-width: 760px; margin-top: 14px; }
.lmd-product-trust-card { display: flex; min-height: 70px; flex-direction: column; align-items: center; justify-content: center; padding: 10px 8px; border: 1px solid var(--lmd-line); border-radius: 13px; background: #fff; color: var(--lmd-green); text-align: center; }
.lmd-product-trust-card__icon { margin-bottom: 4px; font-size: 17px; line-height: 1; }
.lmd-product-trust-card strong { font-size: 10px; font-weight: 700; }
.lmd-product-trust-card small { margin-top: 2px; color: var(--lmd-muted); font-size: 9px; }
.page-product .product__bottom-right { display: none; }

/* Footer */
#footer.footer { margin: 0; padding: 0; border: 0; background: var(--lmd-green-dark); }
.lamadobio-footer { padding: 76px 0 36px; color: #fff; }
.lamadobio-footer__top { text-align: center; }
.lamadobio-footer__logo { display: inline-block; width: 180px; height: 95px; overflow: hidden; }
.lamadobio-footer__logo-img { display: block; width: 180px; height: auto; filter: brightness(0) invert(1); opacity: .95; }
.lamadobio-footer__tagline { margin: 17px auto 0; color: rgba(255,255,255,.68); font-size: 15px; }
.lamadobio-footer__separator { height: 1px; margin: 48px 0; background: linear-gradient(90deg, transparent, rgba(232,168,124,.55), transparent); }
.lamadobio-footer__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px; }
.lamadobio-footer__heading { margin: 0 0 20px; color: #fff; font: 600 13px var(--lmd-sans); letter-spacing: .14em; text-transform: uppercase; }
.lamadobio-footer__links { margin: 0; padding: 0; list-style: none; }
.lamadobio-footer__links li { margin: 0 0 12px; }
.lamadobio-footer__links a, .lamadobio-footer__newsletter-text, .lamadobio-footer__contact a { color: rgba(255,255,255,.68); font-size: 14px; text-decoration: none; }
.lamadobio-footer__links a:hover, .lamadobio-footer__contact a:hover { color: var(--lmd-terracotta-light); }
.lamadobio-footer__newsletter-text { line-height: 1.7; }
.lamadobio-footer__native-newsletter .block_newsletter { margin: 20px 0 0; }
.lamadobio-footer__native-newsletter form { display: flex; }
.lamadobio-footer__native-newsletter input[type=email] { width: 100%; }
.lamadobio-footer__bottom { margin-top: 55px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); text-align: center; }
.lamadobio-footer__contact { margin: 0 0 14px; }
.lamadobio-footer__copyright { margin: 0; color: rgba(255,255,255,.38); font-size: 12px; }

/* Homepage category previews: products live in their product categories,
   while the homepage acts as a visual catalogue entry point. */
.lamadobio-category-preview { padding: 86px 0 92px; background: var(--lmd-cream); }
.lamadobio-category-preview__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.lamadobio-category-preview__card { position: relative; display: flex; min-height: 220px; flex-direction: column; justify-content: flex-end; overflow: hidden; border-radius: 14px; background: var(--lmd-green); color: #fff; text-decoration: none; }
.lamadobio-category-preview__card::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(10,35,25,.84)); content: ''; }
.lamadobio-category-preview__card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.lamadobio-category-preview__card:hover img { transform: scale(1.05); }
.lamadobio-category-preview__card span, .lamadobio-category-preview__card b { position: relative; z-index: 1; }
.lamadobio-category-preview__card span { padding: 0 18px 7px; font: 600 19px/1.2 var(--lmd-serif); }
.lamadobio-category-preview__card b { align-self: flex-end; padding: 0 18px 16px; color: var(--lmd-terracotta-light); font-size: 20px; }
.lamadobio-category-preview__all { display: block; width: fit-content; margin: 34px auto 0; }

/* Homepage collection widgets: two rows by four columns on desktop, horizontal
   snap scrolling on smaller screens. */
.lmd-collection-carousel__viewport { position: relative; display: flex; align-items: center; gap: 10px; }
.lmd-collection-carousel__track { display: grid; flex: 1 1 auto; grid-auto-flow: column; grid-auto-columns: calc((100% - 54px) / 4); grid-template-rows: repeat(2, minmax(0, 1fr)); gap: 18px; width: auto; min-width: 0; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: thin; padding: 3px 2px 12px; }
.lmd-collection-carousel__track > * { min-width: 0; scroll-snap-align: start; }
.lmd-collection-carousel__button { flex: 0 0 38px; width: 38px; height: 38px; border: 1px solid var(--lmd-line); border-radius: 50%; background: #fff; color: var(--lmd-green); cursor: pointer; }
.lmd-collection-carousel__button:hover { background: var(--lmd-green); color: #fff; }

/* Responsive */
@media (max-width: 991px) {
  .lmd-header__inner { grid-template-columns: 140px 1fr auto; }
  .lmd-header__nav { gap: 20px; }
  .lmd-header__nav a { font-size: 13px; }
  .lamadobio-products__grid, .products { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .page-product .product__container { grid-template-columns: minmax(0,1fr) minmax(0,.92fr); gap: 34px; }
}
@media (max-width: 767px) {
  .lmd-page-width, .breadcrumb, #js-product-list, .page-product .product__container, .page-product .product__bottom { width: min(100% - 32px, 580px); }
  .lmd-header__inner { min-height: 76px; grid-template-columns: 1fr auto; gap: 10px; }
  .lmd-header__logo { width: 112px; height: 54px; }
  .lmd-header__logo img { width: 112px; }
  .lmd-header__toggle { display: flex; flex-direction: column; gap: 4px; }
  .lmd-header__toggle span { display: block; width: 21px; height: 2px; background: var(--lmd-green); }
  .lmd-header__nav { position: absolute; top: 76px; left: 16px; right: 16px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 8px 18px; border: 1px solid var(--lmd-line); border-radius: 14px; background: var(--lmd-cream); box-shadow: 0 15px 30px rgba(0,0,0,.1); }
  .lmd-header__nav.is-open { display: flex; }
  .lmd-header__nav > a, .lmd-header__menu-item > a { padding: 13px 0; }
  .lmd-header__nav > a::after, .lmd-header__menu-item > a::after { bottom: 5px; right: auto; width: 30px; }
  .lmd-header__submenu { position: static; display: grid; min-width: 0; padding: 0 0 8px 12px; border: 0; border-radius: 0; box-shadow: none; transform: none; }
  .lmd-header__submenu a { padding: 8px 0; }
  .lmd-header__actions { display: none; }
  .lmd-header__account { display: none; }
  .lmd-header__boutique { display: none; }
  .lamadobio-hero { min-height: 690px; background-position: 62% center; }
  .lamadobio-hero__overlay { background: linear-gradient(180deg, rgba(18,56,41,.48), rgba(18,56,41,.92)); }
  .lamadobio-hero__content { padding: 120px 0 110px; }
  .lamadobio-hero__heading { font-size: clamp(43px, 13vw, 63px); }
  .lamadobio-hero__subheading { font-size: 15px; }
  .lamadobio-hero__cta { flex-direction: column; align-items: stretch; }
  .lamadobio-btn { width: 100%; }
  .lamadobio-products, .lamadobio-image-text { padding: 72px 0 78px; }
  .lamadobio-category-preview { padding: 72px 0 78px; }
  .lamadobio-category-preview__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px; }
  .lamadobio-category-preview__card { min-height: 170px; }
  .lmd-collection-carousel__track { grid-auto-columns: calc((100% - 13px) / 2); gap: 13px; }
  .lmd-collection-carousel__button { flex-basis: 32px; width: 32px; height: 32px; }
  .lamadobio-products__grid, .products { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 13px; }
  .lamadobio-products__header { margin-bottom: 34px; }
  .lamadobio-products__title { font-size: 36px; }
  .lamadobio-products__subtitle { font-size: 14px; }
  .lamadobio-product-card, .product-miniature { border-radius: 13px; }
  .lamadobio-product-card__info, .product-miniature__bottom { padding: 12px 12px 15px; }
  .lamadobio-product-card__name, .product-miniature__title { min-height: 38px; font-size: 14px; }
  .lamadobio-product-card__price, .product-miniature__price { font-size: 13px; }
  .lamadobio-image-text__grid { grid-template-columns: 1fr; gap: 32px; }
  .lamadobio-image-text__grid--text_first > .lamadobio-image-text__media { order: 1; }
  .lamadobio-image-text__grid--text_first > .lamadobio-image-text__content { order: 2; }
  .lamadobio-image-text__heading { font-size: 39px; }
  .lamadobio-newsletter__native form, .lamadobio-footer__native-newsletter form { flex-direction: column; }
  .lamadobio-newsletter__native input[type=submit], .lamadobio-footer__native-newsletter input[type=submit] { min-height: 45px; }
  .lmd-category-hero { padding: 58px 0 50px; }
  .lmd-category-hero__title { font-size: 43px; }
  .products__selection { align-items: flex-start; gap: 10px; }
  .page-product .product__container { grid-template-columns: 1fr; gap: 28px; margin-top: 12px; }
  .page-product .product__right { padding: 0; }
  .page-product .product__name { font-size: 38px; }
  .page-product .product__description-short { max-height: none; }
  .page-product .product__bottom { margin-bottom: 44px; }
  .lmd-product-trust-cards { gap: 7px; }
  .lmd-product-trust-card { min-height: 68px; padding-inline: 4px; }
  .lmd-product-trust-card strong { font-size: 9px; }
  .lamadobio-footer__grid { grid-template-columns: 1fr; gap: 34px; }
  .lamadobio-footer { padding-top: 58px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
