/* =======================================================================
   MAXDEAL — HOME PREMIUM (refonte 2026-09, branche feat/home-premium)
   -----------------------------------------------------------------------
   Feuille dédiée à la page d'accueil, chargée APRÈS custom.css par
   themes/hummingbird/templates/_partials/head.tpl (home uniquement).
   Elle ÉTEND la charte (docs/design-system.md) : mêmes jetons --md-*,
   police Inter héritée, rayons 6/10/12 px, ombres marine, boutons charte.
   Aucune règle de custom.css ni du custom_css Creative Elements n'est
   réécrite ici.

   Principe : le contenu vit dans le layout Creative Elements (base) avec
   des widgets natifs ; cette feuille ne cible que des classes génériques
   posées dans l'éditeur CE :
     - sur les sections : .mx-section + .mx-hero, .mx-reassurance,
       .mx-phares, .mx-arrivages, .mx-univers, .mx-process, .mx-selection,
       .mx-marques, .mx-local, .mx-newsletter (+ modificateurs --head,
       --grid, --last, --steps, --stats, --cta) ;
     - sur les widgets : .mx-eyebrow, .mx-title, .mx-lead, .mx-btn (--rouge,
       --contour, --blanc, --lien), .mx-proofs, .mx-badge, .mx-iconbox,
       .mx-step, .mx-products, .mx-hero__title / __lead / __image.
   Réorganiser, dupliquer ou masquer une section dans l'éditeur ne casse
   rien : chaque bloc est autonome.
   ======================================================================= */

/* ===== 0. JETONS ET CONTENEUR ===== */

.mx-section {
  --mx-bleu-clair: #EEF2FB;
  --mx-fond-doux: #F7F9FD;
  --mx-texte: #4A5578;
  --mx-texte-2: #69738D;
  --mx-muted: #8A92A8;
  --mx-bord-2: #E6EAF3;
  --mx-ombre-repos: 0 6px 18px rgba(23, 43, 102, .04);
  --mx-ombre-survol: 0 10px 26px rgba(23, 43, 102, .13);
  font-family: "Inter", sans-serif;
  color: var(--md-marine);
}

.mx-section.elementor-section-boxed > .elementor-container {
  max-width: 1180px !important;
  padding: 0 10px;
}

.mx-section .elementor-widget:not(:last-child) {
  margin-bottom: 0;
}

.mx-section a {
  text-decoration: none;
}

/* ===== 1. WIDGETS GÉNÉRIQUES (eyebrow, titres, chapeau, boutons) ===== */

.mx-eyebrow .elementor-text-editor,
.mx-eyebrow p {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px !important;
  color: var(--md-marine) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: .08em;
  line-height: 1.2 !important;
  text-transform: uppercase;
}

.mx-eyebrow p::before {
  content: "";
  display: inline-block;
  flex: 0 0 auto;
  width: 22px;
  height: 3px;
  border-radius: 10px;
  background: var(--md-vert);
}

.mx-eyebrow--rouge p {
  color: var(--md-rouge-d) !important; /* rouge foncé : 5,1:1 sur fond bleu clair (le rouge CTA ne passe pas en 12 px) */
}

.mx-eyebrow--rouge p::before {
  background: var(--md-rouge);
}

.mx-eyebrow--vert p {
  color: var(--md-vert) !important;
}

.mx-title .elementor-heading-title {
  margin: 0 0 8px;
  color: var(--md-marine) !important;
  font-size: clamp(22px, 3vw, 32px) !important;
  font-weight: 800 !important;
  letter-spacing: -.025em;
  line-height: 1.2 !important;
}

.mx-title--center {
  text-align: center;
}

.mx-lead {
  margin-bottom: 22px !important;
}

.mx-lead .elementor-text-editor,
.mx-lead p {
  max-width: 680px;
  margin: 0 !important;
  color: var(--mx-texte);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
}

.mx-lead p:last-child {
  margin-bottom: 0 !important;
}

.mx-lead a {
  color: var(--md-bleu);
  font-weight: 600;
}

/* Boutons : mêmes variantes que la charte (§6) */
.mx-btn {
  display: inline-block;
  width: auto !important;
  margin: 0 12px 12px 0 !important;
  vertical-align: middle;
}

.mx-btn .elementor-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 22px !important;
  border: 0;
  border-radius: 6px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  white-space: nowrap;
  transition: background .16s ease, color .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.mx-btn--rouge .elementor-button {
  background: var(--md-rouge) !important;
  color: #fff !important;
}

.mx-btn--rouge .elementor-button:hover,
.mx-btn--rouge .elementor-button:focus-visible {
  background: var(--md-rouge-d) !important;
  box-shadow: 0 6px 16px rgba(238, 49, 36, .3);
}

.mx-btn--contour .elementor-button {
  min-height: 42px;
  padding: 10px 20px !important;
  background: #fff !important;
  color: var(--md-bleu) !important;
  border: 2px solid var(--md-bleu) !important;
  border-radius: 7px !important;
  font-size: 14px !important;
}

.mx-btn--contour .elementor-button:hover,
.mx-btn--contour .elementor-button:focus-visible {
  background: var(--md-bleu) !important;
  color: #fff !important;
}

.mx-btn--blanc .elementor-button {
  min-height: 42px;
  padding: 10px 20px !important;
  background: transparent !important;
  color: #fff !important;
  border: 2px solid rgba(255, 255, 255, .6) !important;
  border-radius: 7px !important;
  font-size: 14px !important;
}

.mx-btn--blanc .elementor-button:hover,
.mx-btn--blanc .elementor-button:focus-visible {
  background: #fff !important;
  color: var(--md-marine) !important;
  border-color: #fff !important;
}

/* Lien texte avec chevron (bouton CE rendu comme un lien) */
.mx-btn--lien {
  margin: 0 !important;
}

.mx-btn--lien .elementor-button {
  min-height: 0;
  padding: 4px 0 !important;
  background: transparent !important;
  color: var(--md-bleu) !important;
  font-size: 14px !important;
}

.mx-btn--lien .elementor-button::after {
  content: "›";
  font-size: 18px;
  line-height: 1;
  color: #A7B0C5;
  transition: transform .16s ease;
}

.mx-btn--lien .elementor-button:hover {
  color: var(--md-vert-d) !important;
}

.mx-btn--lien .elementor-button:hover::after {
  transform: translateX(2px);
}

/* Icon-box générique (réassurance, étapes, blocs locaux) */
.mx-iconbox .elementor-icon-box-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.mx-iconbox .elementor-icon-box-icon {
  flex: 0 0 auto;
  margin: 0 !important;
}

.mx-iconbox .elementor-icon {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #EEF3E4 !important;
  color: var(--md-vert) !important;
  font-size: 21px !important;
  line-height: 1;
}

.mx-iconbox .elementor-icon-box-content {
  min-width: 0;
}

.mx-iconbox .elementor-icon-box-title {
  margin: 0 0 3px !important;
  color: var(--md-marine) !important;
  font-size: 15px !important;
  font-weight: 750 !important;
  line-height: 1.25 !important;
}

.mx-iconbox .elementor-icon-box-description {
  margin: 0;
  color: var(--mx-texte-2) !important;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}

/* ===== 2. HERO (.mx-hero) ===== */

.mx-hero {
  background: var(--mx-bleu-clair) !important;
  padding: 48px 0 !important;
}

.mx-hero > .elementor-container > .elementor-row {
  align-items: start; /* évite le recentrage vertical de l'image quand le titre se met en page (CLS) */
}

.mx-hero__text .elementor-element-populated {
  padding: 10px 24px 10px 10px !important;
}

.mx-hero__title .elementor-heading-title {
  margin: 0 0 14px;
  color: var(--md-marine) !important;
  font-size: clamp(30px, 3.2vw, 42px) !important;
  font-weight: 850 !important;
  letter-spacing: -.03em;
  line-height: 1.1 !important;
}

.mx-hero__title .elementor-heading-title span {
  color: var(--md-bleu);
}

.mx-hero__lead p {
  max-width: 560px;
  font-size: 16px;
  line-height: 1.65;
}

.mx-hero__lead strong {
  color: var(--md-rouge-d);
  font-weight: 800;
}

/* Liste de preuves (icon-list en ligne) */
.mx-proofs {
  margin-top: 8px !important;
}

.mx-proofs .elementor-icon-list-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.mx-proofs .elementor-icon-list-item {
  display: inline-flex !important;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  margin: 0 !important;
  padding: 6px 12px !important;
  background: #fff;
  border: 1px solid var(--md-bord);
  border-radius: 30px;
  color: var(--md-marine);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
}

.mx-proofs .elementor-icon-list-item::after {
  display: none !important;
}

.mx-proofs .elementor-icon-list-icon {
  display: inline-flex;
  width: auto !important;
  color: var(--md-vert-d) !important;
  font-size: 12px !important;
}

.mx-proofs .elementor-icon-list-icon i,
.mx-proofs .elementor-icon-list-icon svg {
  color: var(--md-vert-d) !important;
  fill: var(--md-vert-d) !important;
  width: 12px;
  height: 12px;
}

.mx-proofs .elementor-icon-list-text {
  padding: 0 !important;
  color: var(--md-marine) !important;
}

/* Visuel : image sur carte blanche, badges en surimpression */
.mx-hero__visual .elementor-element-populated {
  position: relative;
  padding: 24px 10px 24px 24px !important;
}

.mx-hero__image .elementor-widget-container,
.mx-hero__image .elementor-image {
  display: block;
}

.mx-hero__image img {
  display: block;
  width: 100%;
  max-height: 400px;
  margin: 0 auto;
  padding: 36px 28px 28px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--md-bord);
  border-radius: 10px !important;
  box-shadow: 0 16px 40px rgba(23, 43, 102, .18);
}

.mx-badge {
  position: absolute;
  z-index: 2;
  width: auto !important;
}

.mx-badge p,
.mx-badge .mx-stat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 !important;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid var(--md-bord);
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(23, 43, 102, .12);
  color: var(--md-marine) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  white-space: nowrap;
}

.mx-badge--haut {
  top: 40px;
  left: 0;
}

.mx-badge--bas {
  right: -6px;
  bottom: 46px;
}

.mx-badge .mx-stat__value {
  display: inline;
  margin: 0;
  color: var(--md-rouge-d);
  font-size: 18px;
  font-weight: 800;
}

.mx-badge .mx-stat__label {
  display: inline;
  margin: 0;
  color: var(--md-marine);
  font-size: 13px;
  font-weight: 700;
}

/* ===== 3. RÉASSURANCE (.mx-reassurance) ===== */

.mx-reassurance {
  background: #fff !important;
  padding: 18px 0 0 !important;
}

.mx-reassurance .mx-iconbox {
  height: 100%;
}

.mx-reassurance .mx-iconbox .elementor-widget-container {
  height: 100%;
  min-height: 78px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--md-bord);
  border-radius: 12px;
  box-shadow: var(--mx-ombre-repos);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.mx-reassurance .mx-iconbox .elementor-widget-container:hover {
  border-color: #CFD8EB;
  box-shadow: 0 10px 24px rgba(23, 43, 102, .08);
  transform: translateY(-2px);
}

.mx-reassurance .elementor-column {
  display: flex;
}

.mx-reassurance .elementor-column-wrap,
.mx-reassurance .elementor-widget-wrap {
  width: 100%;
}

/* ===== 4. CATÉGORIES PHARES (.mx-phares) ===== */

.mx-phares {
  background: #fff !important;
}

.mx-phares--head {
  padding: 40px 0 6px !important;
}

.mx-phares--grid {
  padding: 0 0 24px !important;
}

/* Colonnes multiples (6 × 33 %, 8 × 25 %) : passage à la ligne forcé, CE ne l'impose pas */
.mx-phares--grid > .elementor-container > .elementor-row,
.mx-univers--grid > .elementor-container > .elementor-row {
  flex-wrap: wrap;
}

.mx-phares--grid .elementor-column {
  width: 33.333% !important;
}

.mx-phares--grid .elementor-element-populated {
  padding: 9px 10px !important;
}

/* ===== 5. ARRIVAGES ET SÉLECTION (widgets produits natifs) ===== */

.mx-arrivages,
.mx-selection {
  background: #fff !important;
  padding: 36px 0 24px !important;
}

.mx-selection {
  background: var(--mx-fond-doux) !important;
  padding: 44px 0 40px !important;
}

.mx-products {
  margin-top: 8px !important;
}

.mx-products .elementor-product-miniature {
  background: #fff;
}

.mx-products .elementor-title,
.mx-products .elementor-title a {
  color: var(--md-marine) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
}

.mx-products .elementor-price {
  color: var(--md-rouge) !important;
  font-weight: 800 !important;
}

.mx-products .swiper-button-prev,
.mx-products .swiper-button-next,
.mx-products .elementor-swiper-button {
  color: var(--md-bleu) !important;
}

.mx-products .swiper-pagination-bullet-active {
  background: var(--md-bleu) !important;
}

/* ===== 6. NOS UNIVERS (.mx-univers) ===== */

.mx-univers {
  background: #fff !important;
}

.mx-univers--head {
  padding: 40px 0 6px !important;
}

.mx-univers--grid {
  padding: 0 0 28px !important;
}

.mx-univers--grid .elementor-column {
  width: 25% !important;
}

.mx-univers--grid .elementor-element-populated {
  padding: 8px 10px !important;
}

/* ===== 7. PROCESS ET CHIFFRES (.mx-process, fond marine) ===== */

.mx-process {
  background: var(--md-marine) !important;
  color: #fff;
}

.mx-process--head {
  padding: 48px 0 8px !important;
}

.mx-process--steps,
.mx-process--stats {
  padding: 8px 0 !important;
}

.mx-process--cta {
  padding: 16px 0 44px !important;
}

.mx-process .mx-title .elementor-heading-title {
  color: #fff !important;
}

.mx-process .mx-lead p {
  color: #B9C4E4;
}

.mx-process .mx-eyebrow p {
  color: var(--md-vert) !important;
}

.mx-process .mx-step .elementor-widget-container {
  height: 100%;
  padding: 18px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 12px;
}

.mx-process .mx-step .elementor-icon {
  background: rgba(122, 193, 67, .18) !important;
  color: var(--md-vert) !important;
}

.mx-process .mx-step .elementor-icon-box-wrapper {
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;
}

.mx-process .mx-step .elementor-icon-box-title {
  color: #fff !important;
  font-size: 16px !important;
}

.mx-process .mx-step .elementor-icon-box-description {
  color: #B9C4E4 !important;
  font-size: 13px;
}

.mx-process--steps .elementor-column,
.mx-process--stats .elementor-column {
  display: flex;
}

.mx-process--steps .elementor-column-wrap,
.mx-process--steps .elementor-widget-wrap,
.mx-process--stats .elementor-column-wrap,
.mx-process--stats .elementor-widget-wrap {
  width: 100%;
}

.mx-process .mx-stat {
  padding: 14px 0 6px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: #fff;
}

.mx-process .mx-stat__value {
  color: #fff;
  font-size: 34px;
}

.mx-process .mx-stat__prefix {
  color: var(--md-vert);
}

.mx-process .mx-stat__label {
  color: #B9C4E4;
}

/* ===== 8. MARQUES (.mx-marques) ===== */

.mx-marques {
  background: #fff !important;
  padding: 36px 0 32px !important;
  text-align: center;
}

.mx-marques .mx-lead p {
  margin-left: auto;
  margin-right: auto;
}

/* ===== 9. PRÈS DE CHEZ VOUS / PROS (.mx-local) ===== */

.mx-local {
  background: #fff !important;
  padding: 24px 0 40px !important;
}

.mx-local__card > .elementor-element-populated {
  height: 100%;
  margin: 10px;
  padding: 24px !important;
  background: linear-gradient(135deg, #F6F9FF 0%, #EEF2FB 55%, #F1F8E9 100%);
  border: 1px solid var(--md-bord);
  border-radius: 20px;
}

.mx-local__box {
  margin-bottom: 12px !important;
}

.mx-local__box .elementor-icon-box-wrapper {
  align-items: flex-start;
}

.mx-local__box .elementor-icon {
  width: 56px;
  height: 56px;
  font-size: 24px !important;
}

.mx-local__box .elementor-icon-box-title {
  font-size: 20px !important;
  font-weight: 800 !important;
}

.mx-local__box .elementor-icon-box-description {
  font-size: 14px;
  color: var(--mx-texte) !important;
}

.mx-local__text p {
  margin-bottom: 16px !important;
  font-size: 14px;
}

.mx-local .mx-btn {
  margin-bottom: 0 !important;
}

/* ===== 10. NEWSLETTER (.mx-newsletter) ===== */

.mx-newsletter {
  background: var(--mx-bleu-clair) !important;
  padding: 36px 0 !important;
}

.mx-newsletter > .elementor-container > .elementor-row {
  align-items: center;
}

.mx-newsletter .mx-title .elementor-heading-title {
  font-size: clamp(20px, 2.4vw, 26px) !important;
}

.mx-newsletter__form .ce-subscribe-form {
  margin: 0;
}

.mx-newsletter__form .elementor-form-fields-wrapper,
.mx-newsletter__form .elementor-field-group {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  width: 100%;
  padding: 0;
}

.mx-newsletter__form .elementor-field-type-subscribe {
  max-width: 100%;
}

.mx-newsletter__form .elementor-field {
  flex: 1 1 auto;
  min-height: 48px;
  padding: 11px 14px !important;
  background: #fff !important;
  border: 1px solid var(--md-bord) !important;
  border-right: 0 !important;
  border-radius: 6px 0 0 6px !important;
  color: var(--md-marine);
  font-size: 15px;
}

.mx-newsletter__form .elementor-field:focus {
  outline: 0;
  border-color: var(--md-bleu) !important;
  box-shadow: 0 0 0 3px rgba(33, 64, 154, .10);
}

.mx-newsletter__form .elementor-button {
  flex: 0 0 auto;
  min-height: 48px;
  padding: 0 22px !important;
  background: var(--md-vert) !important;
  color: #fff !important;
  border: 0;
  border-radius: 0 6px 6px 0 !important;
  font-size: 15px !important;
  font-weight: 700 !important;
}

.mx-newsletter__form .elementor-button:hover {
  background: var(--md-vert-d) !important;
}

.mx-newsletter__form .elementor-field-type-checkbox {
  margin-top: 10px;
  font-size: 13px;
  color: var(--mx-texte-2);
}

.mx-newsletter__legal p {
  margin: 10px 0 0 !important;
  color: var(--mx-texte-2);
  font-size: 12px;
  line-height: 1.5;
}

.mx-newsletter__legal a {
  color: var(--md-bleu) !important;
  font-weight: 600;
  text-decoration: underline;
}

.mx-newsletter__form .elementor-widget-container,
.mx-newsletter__form .elementor-form-fields-wrapper,
.mx-newsletter__form .elementor-field-group {
  max-width: 100%;
  box-sizing: border-box;
}

.mx-newsletter__form .elementor-field {
  min-width: 0;
  width: 100%;
}

/* Le formulaire CE pose des marges négatives : neutralisées (débordement horizontal mobile) */
.mx-newsletter__form .elementor-form-fields-wrapper,
.mx-newsletter__form .elementor-field-group {
  margin: 0 !important;
  width: 100% !important;
}

.mx-newsletter .elementor-column-wrap {
  overflow: hidden;
}

/* ===== 11. RESPONSIVE (cascade charte : 1024 → 768 → 480 → 390) ===== */

@media (max-width: 1024px) {
  .mx-hero__text .elementor-element-populated {
    padding-right: 10px !important;
  }

  .mx-hero__title .elementor-heading-title {
    font-size: clamp(28px, 4.2vw, 38px) !important;
  }
}

@media (max-width: 767px) {
  /* Grilles en 2 colonnes sur mobile (CE force 100 % sur les colonnes) */
  .mx-reassurance .elementor-column,
  .mx-phares--grid .elementor-column,
  .mx-univers--grid .elementor-column,
  .mx-process--steps .elementor-column,
  .mx-process--stats .elementor-column {
    width: 50% !important;
  }
}

@media (max-width: 768px) {
  .mx-title .elementor-heading-title {
    font-size: clamp(22px, 6vw, 26px) !important;
  }

  .mx-hero {
    padding: 30px 0 34px !important;
  }

  .mx-hero__title .elementor-heading-title {
    font-size: clamp(28px, 7.4vw, 34px) !important;
  }

  .mx-hero__lead p {
    font-size: 15px;
  }

  .mx-hero .mx-btn {
    display: block;
    width: 100% !important;
    margin-right: 0 !important;
  }

  .mx-hero .mx-btn .elementor-button {
    width: 100%;
  }

  .mx-hero__visual .elementor-element-populated {
    padding: 14px 24px 10px !important;
  }

  .mx-hero__image img {
    max-height: 280px;
    padding: 24px 20px 20px;
  }

  .mx-badge--haut {
    top: 24px;
    left: 12px;
  }

  .mx-badge--bas {
    right: 12px;
    bottom: 22px;
  }

  .mx-badge p,
  .mx-badge .mx-stat {
    padding: 8px 12px;
    font-size: 12px;
  }

  .mx-reassurance .mx-iconbox .elementor-widget-container {
    min-height: 0;
    padding: 12px;
  }

  .mx-reassurance .mx-iconbox .elementor-icon {
    width: 40px;
    height: 40px;
    font-size: 17px !important;
  }

  .mx-reassurance .mx-iconbox .elementor-icon-box-title {
    font-size: 14px !important;
  }

  .mx-reassurance .mx-iconbox .elementor-icon-box-description {
    font-size: 12px;
  }

  .mx-phares--head,
  .mx-univers--head {
    padding-top: 30px !important;
  }

  .mx-phares--grid .elementor-element-populated,
  .mx-univers--grid .elementor-element-populated {
    padding: 6px !important;
  }

  .mx-process--head {
    padding-top: 36px !important;
  }

  .mx-process .mx-step .elementor-widget-container {
    padding: 14px;
  }

  .mx-process .mx-stat__value {
    font-size: 28px;
  }

  .mx-process--cta .mx-btn {
    display: block;
    width: 100% !important;
    margin-right: 0 !important;
  }

  .mx-process--cta .mx-btn .elementor-button {
    width: 100%;
  }

  .mx-local__card > .elementor-element-populated {
    margin: 6px 10px;
    padding: 18px !important;
  }

  .mx-newsletter__form .elementor-field-group {
    display: block !important;
  }

  .mx-newsletter__form .elementor-field {
    display: block !important;
    width: 100% !important;
    border-right: 1px solid var(--md-bord) !important;
    border-radius: 6px !important;
  }

  .mx-newsletter__form .elementor-button {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100% !important;
    margin-top: 8px;
    border-radius: 6px !important;
  }
}

@media (max-width: 480px) {
  .mx-eyebrow p {
    font-size: 11px;
  }

  .mx-proofs .elementor-icon-list-item {
    font-size: 12px;
    padding: 5px 10px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mx-section *,
  .mx-section *::before,
  .mx-section *::after {
    transition: none !important;
    animation: none !important;
  }
}
