/** Shopify CDN: Minification failed

Line 2489:0 Expected "}" to go with "{"

**/
/* DEV : à supprimer à la livraison */
#preview-bar-iframe {
    display: none;
}

/* FONTS -------------------- : On importe les fonts custom depuis les assets du site */

@font-face {
    font-family: "Basis Grotesque Pro";
    src: url('//www.dijo.fr/cdn/shop/t/129/assets/BasisGrotesquePro-Light.otf?v=134532115503020168631778305473') format("opentype");
    font-weight: 300;
}

@font-face {
    font-family: "Basis Grotesque Pro";
    src: url('//www.dijo.fr/cdn/shop/t/129/assets/BasisGrotesquePro-Regular.otf?v=116106516428258297141778305474') format("opentype");
    font-weight: 400;
}

@font-face {
    font-family: "Basis Grotesque Pro";
    src: url('//www.dijo.fr/cdn/shop/t/129/assets/BasisGrotesquePro-Medium.otf?v=121363164939336926931778305474') format("opentype");
    font-weight: 500;
}

@font-face {
    font-family: "Basis Grotesque Pro";
    src: url('//www.dijo.fr/cdn/shop/t/129/assets/BasisGrotesquePro-Bold.otf?v=134831610185684272171778305472') format("opentype");
    font-weight: 700;
}



@font-face {
    font-family: "Lora";
    src: url('//www.dijo.fr/cdn/shop/t/129/assets/EditorialNew-Light.otf?v=32531607471508085951778305476') format("opentype");
    font-weight: 300;
}

@font-face {
    font-family: "Lora";
    src: url('//www.dijo.fr/cdn/shop/t/129/assets/Lora-Regular.ttf?v=120106541477430587921778305475') format("opentype");
    font-weight: 400;
}

@font-face {
    font-family: "Lora";
    src: url('//www.dijo.fr/cdn/shop/t/129/assets/Lora-Medium.ttf?v=84662246907903929001778305473') format("opentype");
    font-weight: 500;
}

@font-face {
    font-family: "Lora";
    src: url('//www.dijo.fr/cdn/shop/t/129/assets/Lora-Bold.ttf?v=2906029127509182901778305479') format("opentype");
    font-weight: 700;
}




@font-face {
    font-family: "Lora";
    src: url('//www.dijo.fr/cdn/shop/t/129/assets/Lora-Italic.ttf?v=173033524677719013931778305472') format("truetype");
    font-weight: 700;
}




/* Font smoothing applied to body and specific elements instead of universal selector */
body,
h1, h2, h3, h4, h5, h6,
.mm-h1, .mm-h2, .mm-h3, .mm-h4, .mm-h5, .mm-h6 {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

:root {

    /* FONT */
    --header-font: "Basis Grotesque Pro", sans-serif;
    --editorial-font: "Lora";

    /* A modifier*/
    --announcement-bar-height: 39px;
    --header-height: 76px;
    --header-height-mobile: 54px;

    /* COULEUR */
    --white: #FFFFFF;
    --black: #000000;
    --black-30: rgba(0, 0, 0, 0.3);
    --black-50: rgba(0, 0, 0, 0.5);
    --black-70: rgba(0, 0, 0, 0.7);
    --green: #018737;
    --green-2: #00953C;
    --light-green: #E4EFE8;
    --cream: #E7E2D7;
    --beige: #F8F6F2;
    --white-break: #FDFDFD;
    --grey: #494949;
    --doc-height: 100%;

    /* Z-INDEX SYSTEM - Organized layering system */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-header: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-popover: 600;
    --z-tooltip: 700;
    --z-notification: 800;

    /* BREAKPOINT SYSTEM - Consistent responsive breakpoints */
    --breakpoint-sm: 480px;   /* Mobile large */
    --breakpoint-md: 768px;   /* Tablet */
    --breakpoint-lg: 1024px;  /* Desktop small */
    --breakpoint-xl: 1440px;  /* Desktop large */

    /* TOUCH TARGETS - Minimum sizes for accessibility */
    --touch-target-min: 44px; /* WCAG recommended minimum */

    /* SPACING SYSTEM - Consistent spacing scale */
    --spacing-0: 0;
    --spacing-1: 0.25rem;  /* 4px */
    --spacing-2: 0.5rem;   /* 8px */
    --spacing-3: 0.75rem;  /* 12px */
    --spacing-4: 1rem;     /* 16px */
    --spacing-5: 1.25rem;  /* 20px */
    --spacing-6: 1.5rem;   /* 24px */
    --spacing-8: 2rem;     /* 32px */
    --spacing-10: 2.5rem;  /* 40px */
    --spacing-12: 3rem;    /* 48px - existing mm-section-width */
    --spacing-16: 4rem;    /* 64px - existing customer form */
    --spacing-20: 5rem;    /* 80px - existing mm-section */

    /* ANIMATION */
    --cubic-bezier-fast: cubic-bezier(.73, .5, .2, 1);
	--duration-slow: 900ms;
}


/* colors */
.mm-black {
     color: var(--black);
}
.mm-white {
     color: var(--white);
}



html {
    scroll-behavior: smooth;
    height: 100vh; /* fallback for Js load */
    height: var(--doc-height);
}

body {
    font-family: var(--header-font);
    color: var(--black);
    font-size: 16px;
}

h1 {
    font-size: 38px;
    line-height: 1.05;
    font-weight: 500;
}
@media (min-width: var(--breakpoint-md)) {
    h1 {
        font-size: 44px;
    }
}
@media (min-width: var(--breakpoint-xl)) {
    h1 {
        font-size: 48px;
    }
}

.mm-h2,
h2 {
    font-size: 33px;
    line-height: 1.1;
    font-weight: 500;
}
@media (min-width: var(--breakpoint-md)) {
    .mm-h2, h2 {
        font-size: 38px;
    }
}
@media (min-width: var(--breakpoint-xl)) {
    .mm-h2, h2 {
        font-size: 44px;
    }
}

.mm-h3,
h3 {
    font-size: 28px;
    line-height: 1.08;
    font-weight: 500;
}
@media (min-width: var(--breakpoint-md)) {
    .mm-h3, h3 {
        font-size: 34px;
    }
}
@media (min-width: var(--breakpoint-xl)) {
    .mm-h3, h3 {
        font-size: 40px;
    }
}

.mm-h4,
h4 {
    font-size: 24px;
    line-height: 1.08;
    letter-spacing: 0.01em;
    font-weight: 500;
}
@media (min-width: var(--breakpoint-md)) {
    .mm-h4, h4 {
        font-size: 29px;
    }
}
@media (min-width: var(--breakpoint-xl)) {
    .mm-h4, h4 {
        font-size: 35px;
    }
}

.mm-h5, h5 {
    font-size: 20px;
    line-height: 1.16;
    font-weight: 500;
}
@media (min-width: var(--breakpoint-xl)) {
    .mm-h5, h5 {
        font-size: 22px;
    }
}

.mm-h6,
h6 {
    font-size: 13px;
    line-height: 1.26;
    letter-spacing: 0.03em;
    font-weight: 700;
}
@media (min-width: var(--breakpoint-xl)) {
    .mm-h6, h6 {
        font-size: 15px;
    }
}

p,
span,
a,
button {
    font-weight: 400;
    font-size: 15px;
    line-height: 20.4px;
    letter-spacing: 0.01em;
}

p.announcement-bar__message {
    font-size: 10px;
}

h1,
h2,
h3,
h4,
h5,
.mm-h5,
h6,
p,
span,
a,
button {
    font-family: var(--header-font);
    color: var(--black);
    letter-spacing: 0.01em;
}

/* MM P BIG */
.mm-p-big,
.mm-p-big p {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    /* letter-spacing: 0.03em; */
    font-family: var(--header-font);
}

.mm-pp-editorial-new p {
    font-family: var(--editorial-font);
    font-size: 30px;
    line-height: 30px;
    font-weight: 400;
    margin: 0;
}


.mm-pp-editorial-new p em {
    font-family: "Lora";

}

/* MM P SMALL */
.mm-p-sm,
.mm-p-sm p {
    font-size: 13px;
    line-height: 13.52px;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* MM P EXTRA SMALL */
.mm-p-xm {
    font-size: 10px;
    line-height: 14.3px;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.mm-pp-editorial-new p {
    font-family: var(--editorial-font);
    font-size: 30px;
    line-height: 30px;
    font-weight: 400;
    margin: 0;
}

/* EXTRA LARGE DEVICES */
@media(min-width: var(--breakpoint-xl)) {
    h1 {
        font-size: 48px;
        line-height: 50px;
    }

    h2 {
        font-size: 36px;
        line-height: 47px;
    }

    h3 {
        font-size: 40px;
        line-height: 43px;
    }

    h4 {
        font-size: 35px;
        line-height: 42px;
    }

    h5, .mm-h5 {
        font-size: 22px;
        line-height: 25.52px;
    }

    h6 {
        font-size: 15px;
        line-height: 19px;
    }
}


/* EXTRA EXTRA LARGE DEVICES */
@media(min-width:1800px) {
    h1 {
        font-size: 52px;
        line-height: 54px;
    }

    h2 {
        font-size: 48px;
        line-height: 51px;
    }

    h3 {
        font-size: 44px;
        line-height: 47px;
    }

    h4 {
        font-size: 39px;
        line-height: 46px;
    }

    h5, .mm-h5 {
        font-size: 26px;
        line-height: 29.52px;
    }

    h6 {
        font-size: 19px;
        line-height: 23px;
    }

    /* MM P BIG */
    .mm-p-big,
    .mm-p-big p {
        font-size: 20px;
        line-height: 24px;
    }

    .mm-pp-editorial-new p {
        font-size: 34px;
        line-height: 34px;
    }

    /* MM P SMALL */
    .mm-p-sm,
    .mm-p-sm p {
        font-size: 17px;
        line-height: 17.52px;
    }

    /* MM P EXTRA SMALL */
    .mm-p-xm {
        font-size: 14px;
        line-height: 18.3px;
    }

    .mm-pp-editorial-new p {
        font-size: 34px;
        line-height: 34px;
    }

    p,
    span,
    a,
    button {
        font-size: 19px;
        line-height: 24px;
    }

}

/* EXTRA SMALL DEVICES */
@media(max-width:375px) {
    h1 {
        font-size: 31px;
    }
}

@media(max-width: var(--breakpoint-md)) {
    h6 {
        letter-spacing: 0.04em;
    }
}

h1.mm-h2{
    font-size: 33px;
    line-height: 1.1;
    font-weight: 500;
}
@media (min-width: var(--breakpoint-md)) {
    h1.mm-h2 {
        font-size: 38px;
    }
}
@media(min-width: var(--breakpoint-xl)) {
    h1.mm-h2 {
        font-size: 44px;
        line-height: 47px;
    }
}
@media(min-width:1800px) {
    h1.mm-h2 {
        font-size: 48px;
        line-height: 51px;
    }
}

h2.mm-h1 {
    font-size: 38px;
    line-height: 1.05;
    font-weight: 500;
}
@media (min-width: var(--breakpoint-md)) {
    h2.mm-h1 {
        font-size: 44px;
    }
}
@media (min-width: var(--breakpoint-xl)) {
    h2.mm-h1 {
        font-size: 48px;
    }
}
  @media (min-width: 1440px) {
    h2.mm-h1 {
      font-size: 48px;
      line-height: 50px;
    }
  }
  @media (min-width: 1800px) {
    h2.mm-h1 {
      font-size: 52px;
      line-height: 54px;
    }
  }
  @media (max-width: var(--breakpoint-sm)) {
    h2.mm-h1 {
      font-size: 31px;
    }
  }

  @media (max-width: 450px) {
    .mm-p-xm {
      font-size: 8px;
    }
  }

  .mm-h6{
    font-size: 13px;
    line-height: 1.26;
    letter-spacing: 0.03em;
    font-weight: 700;
}
@media (min-width: var(--breakpoint-xl)) {
    .mm-h6 {
        font-size: 15px;
    }
}
@media(min-width: var(--breakpoint-xl)) {
    h1.mm-h6 {
        font-size: 15px;
        line-height: 19px;
    }
}
@media(min-width:1800px) {
    h1.mm-h6 {
        font-size: 19px;
        line-height: 23px;
    }
}

@media(max-width: var(--breakpoint-md)) {
    h1.mm-h6 {
        letter-spacing: 0.04em;
    }
}
/* RESET -------------------- : On vient reboot les règles auto du navigateur + celles du Dawn */

/* Apply reset to common elements instead of universal selector */
body, p, span, div,
h1, h2, h3, h4, h5, h6,
.mm-h1, .mm-h2, .mm-h3, .mm-h4, .mm-h5, .mm-h6 {
    line-height: 1.2;
    letter-spacing: 0;
}

a {
    text-decoration: none;
}

.mm-hover-custom:hover {
  font-weight: bold;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-color: var(--green);
  text-decoration-style: solid;
  text-decoration-thickness: 2px;
}

/* MAIN -------------------- : Règles générales du thème */
.field__input:focus~.field__label, .field__input:not(:placeholder-shown)~.field__label, .field__input:-webkit-autofill~.field__label, .customer .field input:focus~label, .customer .field input:not(:placeholder-shown)~label, .customer .field input:-webkit-autofill~label {
	display: none;
	}

/* Sections */

.mm-section {
    /* à utiliser sur toutes les sections AVEC padding top et bottom */
    position: relative;
    padding-left: 3rem;
    padding-right: 3rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
    /* max-width: 1440px; */
    margin-left: auto;
    margin-right: auto;
}

.mm-section-width {
    /* à utiliser sur toutes les sections SANS padding top et bottom */
    position: relative;
    padding-left: 3rem;
    padding-right: 3rem;
    /* max-width: 1440px; */
    margin-left: auto;
    margin-right: auto;
}

.mm-section-lg {
    max-width: 1200px;
}

.mm-section-md {
    max-width: 1000px;
}

.mm-section-sm {
    max-width: 700px;
}
.mm-none {
	display: none;
}

@media(max-width: var(--breakpoint-md)) {
    .mm-section {
        padding-left: 2rem;
        padding-right: 2rem;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
}

/* Buttons */

.mm-btn-primary {
    line-height: 15px;
    letter-spacing: 0.03em;
    cursor: pointer;
    color: white;
    padding: 12px 16px;
    padding-top: 13px;
    text-align: center;
    border: solid 2px var(--white);
    border-radius: 3px;
    font-size: 16.5px;
    font-weight: 500;
    display: inline-flex;
    text-transform: uppercase;
    position: relative;
    padding-right: 70px;
}

.mm-btn-primary:after {
    content: "+";
    font-size: 40px;
    margin-left: 38px;
    display: inline-flex;
    position: absolute;
    bottom: 11px;
    right: 17px;
    font-weight: 300;
}

.mm-btn-primary:hover {
    mix-blend-mode: screen;
    background: var(--white);
    color: var(--black);
    transition: all .3s ease-in-out;
}

.mm-btn-primary-dark {
    line-height: 15px;
    letter-spacing: 0.03em;
    cursor: pointer;
    color: var(--black);
    padding: 11px 20px;
    padding-top: 12px;
    text-align: center;
    border: solid 2px var(--black);
    border-radius: 3px;
    font-size: 15px;
    font-weight: 500;
    display: inline-flex;
    text-transform: uppercase;
    position: relative;
    padding-right: 80px;
}

.mm-btn-primary-dark:after {
    content: "+";
    font-size: 34px;
    margin-left: 38px;
    display: inline-flex;
    position: absolute;
    bottom: 11px;
    right: 17px;
    font-weight: 300;
}

.mm-btn-primary-dark:hover {
    background: var(--black);
    color: var(--white);
    transition: all .3s ease-in-out;
}

.mm-btn-primary-alt {
    line-height: 15px;
    letter-spacing: 0.03em;
    cursor: pointer;
    color: var(--white);
    padding: 11px 20px;
    padding-top: 12px;
    text-align: center;
    background: var(--black);
    border: solid 2px var(--black);
    border-radius: 3px;
    font-size: 15px;
    font-weight: 500;
    display: inline-flex;
    text-transform: uppercase;
    position: relative;
    padding-right: 80px;
}

.mm-btn-primary-alt:after {
    content: "+";
    font-size: 34px;
    margin-left: 38px;
    display: inline-flex;
    position: absolute;
    bottom: 11px;
    right: 17px;
    font-weight: 300;
}

.mm-btn-primary-alt:hover {
    background: var(--green);
    border: solid 2px var(--green);
    color: var(--white);
    transition: all .3s ease-in-out;
}

.mm-btn-secondary {
    cursor: pointer;
    color: white;
    background: var(--black);
    padding: 20px;
    text-align: center;
    border-radius: 2px;
    font-size: 16px;
    display: inline-block;
    border: none;
    text-transform: uppercase;
}

.mm-btn-secondary:hover {
    background: var(--green);
    transition: all .3s ease-in-out;
}

.mm-btn-tertiary {
    cursor: pointer;
    color: var(--black);
    position: relative;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    width: fit-content;
    transition: ease-in-out .3s;
}

.mm-btn-tertiary:before {
    content: "+";
    font-size: 27px;
    font-weight: 300;
    position: absolute;
    right: -20px;
    transform-origin: center;
    line-height: inherit;
    transition: ease-in-out .3s;
    display: inline-flex;
}

.mm-btn-tertiary:after {
    content: "";
    display: inline-flex;
    position: absolute;
    border-bottom: 1px solid var(--black);
    bottom: 0;
    left: 0%;
    transition: ease-in-out .3s;
    z-index: var(--z-base);
    width: 100%;
}

.mm-btn-tertiary:hover:after {
    width: 0;
}

.mm-btn-primary-simple {
  display: inline-block;
  padding: 20px 30px;
  background: var(--black);
  color: var(--white);
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
}
.mm-btn-primary-simple * {
  color: var(--white);
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.mm-btn-primary-simple s {
  opacity: .5;
}
.mm-btn-primary-simple:hover {
  background: var(--green);
}

.mm-link {
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.2px;
  text-decoration: underline;
  cursor: pointer;
}

/* Utility  -------------------- */
.mm-centered {
    text-align: center;
}

.mm-uppercase {
    text-transform: uppercase;
}
.mm-h-full {
	height: 100%;
}
.mm-full,
.mm-w-full {
    width: 100%;
}

.mm-inline {
    display: inline-block;
}

.mm-flex {
    display: flex;
}

.mm-grid {
    display: grid;
}

.mm-column,
.mm-flex-column {
    flex-direction: column;
}

.mm-flex-wrap {
    flex-wrap: wrap;
}

.mm-justify-between {
    justify-content: space-between;
}

.mm-justify-around {
    justify-content: space-around;
}

.mm-justify-center {
    justify-content: center;
}

.mm-justify-end {
    justify-content: flex-end;
}

.mm-align-center {
    align-items: center;
}

.mm-align-start {
    align-items: flex-start;
}

.mm-align-end {
    align-items: flex-end;
}

.mm-align-baseline {
    align-items: baseline;
}

.mm-grid {
    display: grid;
}

.mm-none {
    display: none;
}
.mm-pointer {
  cursor: pointer;
}

.mm-row {
    flex-direction: row;
}
.mm-row-reverse {
    flex-direction: row-reverse;
}
.mm-w-full {
  width: 100%;
}

.mm-0,
.mm-0 p {
    margin: 0;
}

.mm-linethrough {
    text-decoration: line-through;
}

.mm-bold *,
.mm-bold {
    font-weight: 500;
}
.mm-max-width-1080 {
  max-width: 1080px;
}
.mm-cursor-pointer {
	cursor: pointer;
}

.mm-underline {
  text-decoration: underline;
}

.mm-gg-2 {
  grid-gap: 2px;
}
.mm-gg-5 {
  grid-gap: 5px;
}
.mm-gg-8 {
  grid-gap: 8px;
}
.mm-gg-10 {
  grid-gap: 10px;
}
.mm-gg-12 {
  grid-gap: 12px;
}
.mm-gg-15 {
  grid-gap: 15px;
}
.mm-gg-20 {
  grid-gap: 20px;
}


/* Responsive */
.mm-desktop {
    display: inline-block;
}
.mm-desktop-block {
    display: block;
}
.mm-desktop-flex {
    display: flex;
}
.mm-mobile,
.mm-mobile-flex,
.mm-mobile-block {
    display: none;
}

@media (min-width: 1024px) {
    .mm-desktop-none-1024 {
        display: none;
    }
}

@media (max-width: 1024px) {
    .mm-mobile-none-1024 {
        display: none;
    }
}

@media(max-width: var(--breakpoint-md)) {
    .mm-desktop,
	.mm-desktop-flex,
	.mm-desktop-block {
        display: none;
    }
    .mm-mobile {
        display: inline-block;
    }
    .mm-mobile-block {
        display: block;
    }
    .mm-mobile-flex {
        display: flex;
    }
}

/* PRODUCT CARD -------------------- : CSS des product cards */

.mm-product-card {
    height: fit-content;
}
.mm-product-card {
	display: flex;
	flex-direction: column;

	height: 100%;
}
.mm-wrapper-bottom-pc
.mm-p-infos {
	/* height: 100%; */
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.mm-p-img-container {
    width: 100%;
    /* height: 100%; */
    position: relative;
    border-radius: 5px;
}
.mm-wrapper-bottom-pc {
justify-content: flex-end;
height: 100%;
}

.mm-p-img {
    width: 100%;
    height: auto;
    aspect-ratio: 266 / 266;
    object-fit: cover;
    border-radius: 5px;
}

.mm-p-img--hover-effect {
    opacity: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 266 / 266;
    object-fit: cover;
    position: absolute;
    border-radius: 5px;
    top: 0;
    left: 0;
    transition: all .3s ease-in-out;
}
.mm-container-pc-info {
	min-height: 145px;
}

@media (min-width : 768px) {

    .mm-p-img-container:hover .mm-p-img {
        opacity: 0;
        transition: all .3s ease-in-out;
    }

    .mm-p-img-container:hover .mm-p-img-without-hover {
        opacity: 1;
        transition: all .3s ease-in-out;
    }

    .mm-p-img-container:hover .mm-p-img--hover-effect {
        opacity: 1;
        transition: all .3s ease-in-out;
    }
}


.mm-quit-buy-container {
  height: 35px;
  width: 100%;
  cursor: pointer;
  color: white;
  z-index: 1;
  background-color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 3px;

}
.mm-quit-buy-container.mm-btn-disabled {
  cursor: none;
}
.mm-quit-buy-container:hover .mm-qb-btn-text {
  width: 200px;
  opacity: 1;
  transform: translateX(0);
  transition: all .6s ease-out;
  display: flex;
}
.mm-quit-buy-container:hover .mm-qb-btn-icon {
  opacity: 0;
}
.mm-quit-buy-text  {
	grid-gap: 8px;
}
.mm-quit-buy-text span {
	font-family: var(--header-font);
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 15px;
	text-transform: uppercase;
	grid-gap: 9px;
	color: white;
}
.mm-qb-btn-text {
  position: absolute;
  bottom: 8px;
  right: 7px;
  height: 38px;
  width: 0px;
  border-radius: 24px;
  background: white;
  color: var(--green);
  font-size: 16px;
  font-family: var(--header-font);
  overflow: hidden;
  /* display: flex; */
  align-items: center;
  white-space: nowrap;
  padding: 14px 24px;
  transition: all .6s ease-out;
  border: 1px solid var(--green);
  font-weight: 500;
  line-height: 20.4px;
  /* display: none; */
  opacity: 0;
  display: flex;
}
.mm-qb-btn-text.mm-btn-disabled {
  display: none;
  cursor: none;
  pointer-events: none;
}
.mm-qb-btn-icon {
  position: absolute;
  height: 52px;
  width: 52px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content:center;
  color: white;
  bottom: 0;
  right: 0;
  cursor: pointer;
  z-index: var(--z-dropdown);
  padding: 0;
}
/* .mm-icon-add-to-cart-hover {
  display: none;
} */



@media (max-width: 1023px) {
  .mm-quit-buy-container {
    bottom: 8px;
    right: 3px;
  }
  .mm-quit-buy-container:hover .mm-qb-btn-text {
    display: none;
  }
}

@media (max-width : 1150px) {
  .mm-quit-buy-container:hover .mm-qb-btn-text {
    width: 190px;
  }
}
@media (max-width : 900px) {
  .mm-quit-buy-container:hover .mm-qb-btn-text {
    width: 170px;
  }
  .mm-qb-btn-text {
    font-size: 14px;
  }
}

.mm-product-card .star-container svg {
    width: 11px;
    height: 11px;
}

.mm-ttc-price {
  font-size: 11px;
}
.mm-ttc-price-barre {
  color: var(--black-50);
  font-size: 11px;
}

.mm-p-tagline {
    font-size: 14px;
    line-height: 15px;
    opacity: 0.5;
}

.mm-p-tags {
    position: absolute;
    top: 11px;
    left: 11.5px;
    z-index: var(--z-base);
}
.mm-p-discount {
    position: absolute;
    bottom: 11px;
    left: 11.5px;
    z-index: var(--z-base);
}
.mm-tag-p-discount {
	background: var(--green, #018737);
	border-radius: 2px;
	padding: 0px 3px;
	font-size: 10px;
	font-style: normal;
	font-weight: 400;
	line-height: 15px;
	color: white;
}

.mm-p-tag {
    color: var(--grey-dark, #595959);
	font-family: var(--header-font);
	font-size: 10px;
	font-style: normal;
	font-weight: 400;
	line-height: 15px;
    text-transform: capitalize;
    background: #FFF;
    border-radius: 15px;
    padding: 3px 6px;
    margin-right: 4px;
}

.mm-p-tag-green {
    color: #FCF9F1;
    background: var(--green-2);
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mm-p-title {
    font-size: 14px;
    font-style: normal;
	font-weight: 700;
	line-height: 16px; /* 123.077% */
	letter-spacing: 0.42px;
    margin-top: 10px;
}

.mm-product-card .mm-p-price-compare {
    margin-right: 4px;
    color: var(--black-50);
	font-size: 11px;
	font-weight: 400;
	line-height: 15px;
}
.mm-p-price, .mm-p-price-compare {
    font-family: var(--header-font);
	font-size: 14px;
	font-style: normal;
	font-weight: 700;
	line-height: 18px; /* 128.571% */
	letter-spacing: 0.42px;
}

.mm-p-reviews {
	/* height: 25px; */
    /* margin: 5px 0 0; */
}
.mm-rating-wrapper {
     height: 25px;
     grid-gap: 2px;
}
.mm-rating-count {
     margin: 0;
     font-size: 12px;
     line-height: 8px;
     letter-spacing: .15px;
     font-weight: 400;
     color: rgb(127, 127, 127);
     margin: 0;
     padding-left: 4px;
}

/* Reviews Yotpo */
.mm-p-reviews .yotpo-sr-bottom-line-summary {
    display: flex;
    flex-direction: row;
    /* gap: 4px; */
    margin-right: 0px;
    direction: ltr;
    align-items: center;
}
.yotpo-sr-bottom-line-text {
    font-family: var(--header-font);
    font-size: 12px;
    line-height: 8px;
    letter-spacing: 0.15px;
    font-weight: 400;
    margin-top: 1px;
}

.yotpo-read-more {
  color: var(--green);
  font-weight: var(--primary-font-weight);
  font-family: var(--primary-font-family);
  font-style: var(--primary-font-style);
  display: inline-block;
  margin-left: 5px;
}
.mm-price-pc-crossell {
	padding-top: 2px;
	font-weight: 700;
}
.yotpo-review-content,
.yotpo-comment {
  display: none;
}


.template-search__results   .yotpo-reviews-star-ratings-widget {
    justify-content: flex-start;
  }

/* Loyalty YOTPO */

.section-template--19601675157852__add4dbaa-19f9-4791-ba34-cda873aa3869-padding {
    padding-top: 0;
    padding-bottom: 0;
}

/* hero banner */
.yotpo-widget-hero-section .yotpo-text-on-background:not(.yotpo-is-mobile) {
  background-image: url("/cdn/shop/files/slack-imgs.jpg?v=1702044497");
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 600px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: -30% 66%;
}

/* earning points */
.yotpo-widget-campaign-widget .campaigns-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  flex-direction: row;
  flex-wrap: wrap;
  row-gap: var(--wrapper-gap);
  column-gap: var(--wrapper-gap);
  justify-content: center;
  justify-items: center;
}
.yotpo-widget-visual-redemption-widget .yotpo-rule-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 4px 0 32px 0;
}
.yotpo-widget-products-redemption-container:not(.yotpo-is-checkout) {
    padding: 0 0 65px 0;
}
.yotpo-widget-visual-redemption-widget .yotpo-tile-wrapper {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    max-width: 1300px;
    height: 100%;
    row-gap: 32px;
    padding: 32px 20px;
    margin: 0 auto;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
}
.yotpo-coupons-redemption-widget {
    font-family: Nunito Sans,Avenir,Helvetica,Arial,sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-align: center;
    color: #373330;
    background-color: #E7E2D7;
}

/* VIP tiers */
.yotpo-vip-tier-name {
  padding-top: 16px;
}
.yotpo-vip-tier-threshold {
  padding-block : 32px;
}
.yotpo-widget-products-redemption {
  font-family: NunitoSans,Avenir,Helvetica,Arial,sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  color: #373330;
  background-color: #E7E2D7;
}

.yotpo-widget-products-redemption .yotpo-login-button .yotpo-action-button-widget .yotpo-button-standard-size {
  width: 218px;
  height: 100%;
}
.yotpo-widget-products-redemption .yotpo-redemption-option-reward {
  font-weight: 600;
  padding-bottom: 5px;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: 'Poppins';
}
.yotpo-widget-products-redemption .yotpo-login-button .yotpo-action-button-text {
  font-size: 18px;
  cursor: pointer;
  padding: 20px;
  font-family: 'Poppins';
}


/* Parraine */
.yotpo-tile-wrapper .yotpo-email-view .yotpo-header-text {
  color: rgb(0, 0, 0);
  font-size: 26px;
  font-family: 'Poppins';
  font-weight: 600;
  padding-bottom: 20px;
}
.yotpo-tile-wrapper .yotpo-email-view #yotpoReferralTitleText {
  padding-bottom: 20px;
}


/* RESPONSIVE LOYALTY */
@media (max-width: 1024px) {
  .yotpo-widget-campaign-widget .campaigns-wrapper {
    display: grid;
    flex-direction: row;
    grid-template-columns: repeat(2, 1fr);
    flex-wrap: wrap;
    row-gap: var(--wrapper-gap);
    column-gap: var(--wrapper-gap);
    justify-content: center;
    justify-items: center;
  }
}
@media (max-width: 500px) {
  .yotpo-tile-wrapper .yotpo-email-view {
    font-size: 24px;
  }
}



.mm-p-wrapper-price {
    margin: 6px 0;
	align-items: center;
}

@media(max-width: 768px) {
    .mm-p-title {
        font-size: 14px;
        line-height: 18px;
    }
    .mm-product-card .star-container svg {
        width: 13px;
        height: 13px;
    }
    .mm-p-price {
        font-size: 14px;
        line-height: 22px;
    }

	.mm-p-img--hover-effect,
	.mm-p-img {
		aspect-ratio: 167 / 167;
	}

}
@media(max-width:500px) {
    .mm-p-title {
        /* min-height: 3.3rem; */
    }
}


/* DIDOMI */
#didomi-host #didomi-notice.didomi-regular-notice {
  position: fixed;
  font-size: 13px;
  line-height: 1.5em;
  height: fit-content;
  z-index: var(--z-notification);
}
#didomi-host .didomi-popup-notice.didomi-popup-notice-with-data-processing {
  padding: 45px 25px;
  color: #333;
  border-radius: 50px;
}
#didomi-host .didomi-popup-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .5);
  z-index: var(--z-notification);
  overflow: auto;
  display: -webkit-flexbox;
  display: flex;
  -moz-flex-direction: row;
  flex-direction: row;
  align-items: flex-start;
}
#didomi-host #didomi-notice.didomi-regular-notice #buttons {
  display: -webkit-flexbox;
  display: flex;
  grid-gap: 12px;
  -moz-flex-direction: row;
  flex-direction: column;
  -webkit-flex-pack: center;
  -moz-justify-content: center;
  justify-content: center;
  -moz-align-items: center;
  align-items: center;
}
#didomi-host .didomi-exterior-border {
  border-style: non;
  border-radius: 50px!important;
  border-width: 1px;
  padding: 1px;
  margin: auto ;
}

#didomi-host .didomi-screen-xsmall .didomi-popup-notice-buttons .didomi-components-button {
  text-transform: uppercase;
}

@media(max-width:500px) {
  .didomi-popup-notice-logo-container {
    display: none;
  }
  #didomi-host .didomi-popup-backdrop {
    background-color: transparent;
  }
  #didomi-host .didomi-exterior-border {
    border-style: non;
    border-radius: 0;
    border-top-left-radius : 50px;
    border-top-right-radius : 50px;
    border-bottom-left-radius : 0px;
    border-bottom-right-radius : 0px;
    border-width: 1px;
    padding: 1px;
    margin: auto 0 0 0;
  }
  #didomi-host .didomi-popup-notice.didomi-popup-notice-with-data-processing {
    border-top-left-radius : 50px;
    border-top-right-radius : 50px;
    border-bottom-left-radius : 0px;
    border-bottom-right-radius : 0px;
  }
}





/* COLLECTION CARD -------------------- : CSS des collection cards */
.mm-collection-card {
    display: inline-block;
    height: 100%;
    width: 100%;
}

.mm-c-bg-img {
    border-radius: 12px;
    padding: 14px 11px;
    aspect-ratio: 1;
}

.mm-c-title {
    color: var(--white);
}

.mm-c-bullet {
    width: 12px;
    min-width: 12px;
    height: 12px;
    background: var(--white);
    content: '';
    border-radius: 50%;
    display: block;
    margin-left: 11px;
}

/* Responsive */
@media(max-width: var(--breakpoint-md)) {
    .mm-c-bg-img {
        padding: 9px 7px;
        border-radius: 7px;
    }

    .mm-c-title {
        color: var(--white);
        font-size: 18px;
        line-height: 22.31px;
        font-weight: 500;
    }

    .mm-c-bullet {
        width: 7px;
        min-width: 7px;
        height: 7px;
        margin-left: 7px;
    }

    .mm-quit-buy-container:hover .mm-qb-btn-icon {
      opacity: 1;
    }
}

/* Custom form input & select & button -------------------- */
.customer {
    cursor: default;
}

/* Note: .customer form styles are handled in customer.css to avoid duplication */

.field:after,
.select:after {
    box-shadow: none;
}

.field input,
.select select {
    border-radius: 2px;
    box-shadow: 0 0 0 1px var(--cream);
}

.field input:focus,
.select select:focus {
    box-shadow: 0 0 0 1px var(--green);
    border-radius: 2px;
}

.field__label,
.customer .field label {
    color: var(--black);
    opacity: .25;
}

.shopify-challenge__button {
    cursor: pointer;
    color: white;
    background: var(--black);
    padding: 20px;
    text-align: center;
    border-radius: 2px;
    font-size: 16px;
    display: inline-block;
    border: none;
    text-transform: uppercase;
    margin-top: 2rem;
}

.shopify-challenge__button:hover {
    background: var(--green);
    transition: all .3s ease-in-out;
}

.mm-btn-cancel {
    margin-right: 2rem;
    appearance: none;
    border: none;
    background: none;
    padding: 0;
    margin-block: 0;
}




/* Loyalty YOTPO */

.section-template--19601675157852__add4dbaa-19f9-4791-ba34-cda873aa3869-padding {
  padding-top: 0;
  padding-bottom: 0;
}

/* hero banner */
.yotpo-widget-hero-section .yotpo-text-on-background:not(.yotpo-is-mobile) {
background-image: url("/cdn/shop/files/slack-imgs.jpg?v=1702044497");
display: -webkit-box;
display: -ms-flexbox;
display: flex;
width: 100%;
height: 600px;
background-size: cover;
background-repeat: no-repeat;
background-position: -30% 66%;
}

/* earning points */
.yotpo-widget-campaign-widget .campaigns-wrapper {
display: grid;
grid-template-columns: repeat(3, 1fr);
flex-direction: row;
flex-wrap: wrap;
row-gap: var(--wrapper-gap);
column-gap: var(--wrapper-gap);
justify-content: center;
justify-items: center;
}
.yotpo-widget-visual-redemption-widget .yotpo-rule-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 4px 0 32px 0;
}
.yotpo-widget-products-redemption-container:not(.yotpo-is-checkout) {
  padding: 0 0 65px 0;
}
.yotpo-widget-visual-redemption-widget .yotpo-tile-wrapper {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  max-width: 1300px;
  height: 100%;
  row-gap: 32px;
  padding: 32px 20px;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
}

/* VIP tiers */
.yotpo-vip-tier-name {
padding-top: 16px;
}
.yotpo-vip-tier-threshold {
padding-block : 32px;
}
.yotpo-widget-products-redemption {
font-family: NunitoSans,Avenir,Helvetica,Arial,sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #373330;
background-color: #E7E2D7;
}

.yotpo-widget-products-redemption .yotpo-login-button .yotpo-action-button-widget .yotpo-button-standard-size {
width: 218px;
height: 100%;
}
.yotpo-widget-products-redemption .yotpo-redemption-option-reward {
font-weight: 600;
padding-bottom: 5px;
position: relative;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
font-family: 'Poppins';
}
.yotpo-widget-products-redemption .yotpo-login-button .yotpo-action-button-text {
font-size: 18px;
cursor: pointer;
padding: 20px;
font-family: 'Poppins';
}


/* Parraine */
.yotpo-tile-wrapper .yotpo-email-view .yotpo-header-text {
color: rgb(0, 0, 0);
font-size: 26px;
font-family: 'Poppins';
font-weight: 600;
padding-bottom: 20px;
}
.yotpo-tile-wrapper .yotpo-email-view #yotpoReferralTitleText {
padding-bottom: 20px;
}


/* RESPONSIVE LOYALTY */
@media (max-width: 1024px) {
.yotpo-widget-campaign-widget .campaigns-wrapper {
  display: grid;
  flex-direction: row;
  grid-template-columns: repeat(2, 1fr);
  flex-wrap: wrap;
  row-gap: var(--wrapper-gap);
  column-gap: var(--wrapper-gap);
  justify-content: center;
  justify-items: center;
}
}
@media (max-width: 500px) {
.yotpo-tile-wrapper .yotpo-email-view {
  font-size: 24px;
}
}




/* Loyalty Lion -------------------- : CSS des sections rewards */
/* #loyaltylion,
#loyaltylion .lion-modal {
    font-family: var(--header-font);
}

#loyaltylion a {
    line-height: unset;
}

#loyaltylion .lion-action-button:not(.lion-action-button--completed, .lion-action-button--disabled) {
    line-height: 15px;
    cursor: pointer;
    color: var(--black);
    padding: 11px 13px;
    padding-top: 12px;
    text-align: center;
    border: solid 2px var(--black);
    border-radius: 3px;
    font-size: 15px;
    font-weight: 500;
    display: inline-flex;
    text-transform: uppercase;
    position: relative;
    padding-right: 50px;
    background: transparent;
}

#loyaltylion .lion-action-button:not(.lion-action-button--completed, .lion-action-button--disabled) span {
    line-height: 15px;
    color: var(--black);
    font-size: 15px;
    font-weight: 500;
}

#loyaltylion .lion-action-button:not(.lion-action-button--completed, .lion-action-button--disabled):after,
#loyaltylion .lion-action-button:not(.lion-action-button--completed, .lion-action-button--disabled) span:after {
    content: "+";
    font-size: 34px;
    margin-left: 38px;
    display: inline-flex;
    position: absolute;
    bottom: 11px;
    right: 17px;
    font-weight: 300;
    left: unset;
    width: auto;
    border-bottom: none;

}

#loyaltylion .lion-action-button:not(.lion-action-button--completed, .lion-action-button--disabled)::before,
#loyaltylion .lion-action-button:not(.lion-action-button--completed, .lion-action-button--disabled) span:before {
    content: none;
}

#loyaltylion .lion-action-button:has(span):not(.lion-action-button--completed, .lion-action-button--disabled):after {
    content: '';
}

#loyaltylion .lion-action-button:not(.lion-action-button--completed, .lion-action-button--disabled):hover,
#loyaltylion .lion-action-button:not(.lion-action-button--completed, .lion-action-button--disabled):hover span {
    background: var(--black);
    color: var(--white);
    transition: all .3s ease-in-out;
}

#loyaltylion .lion-action-button:has(span):not(.lion-action-button--completed, .lion-action-button--disabled):hover span {
    background: transparent;
}

#loyaltylion .lion-action-button--neutral:hover {
    background: var(--black);
    border: solid 2px var(--black);
    color: var(--white);
}

#loyaltylion .lion-redeem-reward-modal__button {
    margin-inline: 5px;
}

#loyaltylion .lion-modal--small {
    max-width: 450px;
}

#loyaltylion .lion-action-button--tile.lion-action-button--completed,
#loyaltylion .lion-action-button--tile.lion-action-button--disabled {
    box-shadow: none;
    border: solid 2px var(--black-30);
    padding: 11px 13px;
    padding-top: 12px;
    text-align: center;
    border-radius: 3px;
    display: inline-flex;
    text-transform: uppercase;
    background: transparent;
    width: 100%;
}

#loyaltylion .lion-action-button--tile.lion-action-button--completed,
#loyaltylion .lion-action-button--tile.lion-action-button--disabled span {
    font-size: 15px;
    font-weight: 500;
    color: var(--black-30);
    line-height: 15px;
} */

.bolton-minutes,
.bolton-seconds,
.number-string.number-minutes span,
.number-string.number-seconds span {
    color: white;
}

#mm-rfp-section #loyaltylion .lion-reward-item__content:has(.lion-reward-item__actions .lion-action-button--disabled) .lion-reward-item__title {
    opacity: 0.3;
}

/* Section image dropdown */
/* Dropdown section */
.mm-section-dropdown{
        /* max-width: 1000px; */
    margin: 0;
    display: flex;
    width: 100%;
    padding: 50px 162px 16px;
    justify-content: space-between;
  }


  .mm-section-dropdown .mm-icon-arrow-up{
    transition: all .3s ease-out;
    width: 40px;
    min-width: 40px;
    height: auto;
    transform: rotate(0deg);
    cursor:pointer;
  }
  /* .mm-section-dropdown .mm-icon-arrow-up:hover path{
    fill:var(--green)
  } */
  .mm-section-dropdown.active .mm-icon-arrow-up{
    transform: rotate(180deg);
  }
  .mm-section-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease-out;
    border-bottom: 2px solid var(--cream);
  }

  @media (max-width: 768px) {
    .mm-section-dropdown{
        padding-inline: 20px;
        padding-block: 32px;
    }
    .mm-section-dropdown .mm-icon-arrow-up{
        width: 20px;
        min-width: 20px;
    }


    .mm-product-card .mm-p-title {
      margin-top: 0;
    }
    .mm-product-card .mm-p-wrapper-price {
      margin: 0;
	  padding-top: 10px;
    }
    .mm-product-card .mm-p-reviews {
      margin: 0;
    }
	.mm-collection-visuel-meta-card-content .mm-p-sm {
		width: 60%;
	}
  }


/*=== Dropdowns (collection + js dans mm-global.js) ===*/
.mm-dropdown {
    cursor: pointer;
}
.mm-dropdown-panel {
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.mm-dropdown:not(.mm-active) + .mm-dropdown-panel {
    max-height: 0px;
}

/* dropdown active par default */
.mm-dropdown.mm-active + .mm-dropdown-panel {
    max-height: 100%;
}

.mm-dropdown:not(.mm-active) svg:last-child,
.mm-dropdown.mm-active svg:first-of-type {
    display: none;
}


.mm-bg-beige {
    background-color: var(--beige);
}
.mm-bg-white {
    background-color: var(--white);
}




/* ---------------------------------------------------------------------------------- */
/* Dropdown */

.mm-dropdown-question .mm-icon-plus {
    min-width: 22px;
}

.mm-dropdown {
    border-bottom: 1px solid var(--cream);
    padding: 0px 16px 15px 16px ;
}

.mm-dropdown:last-child {
    border: none;
}

.mm-dropdown .mm-icon-minus {
    display: none;
}

.mm-dropdown .active .mm-icon-minus {
    display: flex !important;
}

.mm-dropdown .active .mm-icon-plus {
    display: none;
}

/* Dropdown -- Question */

.mm-dropdown-question {
    grid-gap: 10px;
}
.mm-dropdown-question .mm-icon-plus {
    min-width: 22px;
}

/* Dropdown -- Réponse */

.mm-dropdown-answer {
    cursor: default;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}


.mm-conseil-utilisation  .metafield-rich_text_field p:empty {
   display: flex;
    padding-top: 18px;
}

@media (max-width: 768px) {
    .mm-question {
        font-size: 15px;
    }
}

/* Product new-bundle */
.rb-frequency-wrapper .rb-frequency .rb-select {
	border: .5px solid var(--green, #018737);
    background: #f8f6f1;
	padding: 14px;
    cursor: pointer;
}
.rb-items-wrapper .rb-variant-selector,
.rb-items-wrapper .rb-qty-wrapper  {
	display: none;
}
.rb-items-wrapper .rb-title {
    font-size: 16px;
    line-height: 20.29px;
    margin-top: 10px;
	letter-spacing: .03em;
    font-weight: 700;
	text-transform: uppercase;
	text-align: justify;
}

.rb-items-wrapper .rb-item-content .th-100-ns {
	justify-content: center;
	align-items: flex-start;
}

/* ACCORDEON */
.mm-accordions {
  border-top: 1px solid #E7E2D7;
  margin: 20px 0 10px;
}
.mm-accordion-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}
.mm-accordion-content > *:first-child {
  padding-top: 12px;
}
.mm-accordion {
  border-bottom: 1px solid #E7E2D7;
}
.mm-accordion button {
  padding: 24px 0 6px 0;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.15px;
  text-transform: uppercase;
  border: none;
  background: none;
  cursor: pointer;
}
.mm-accordion-content {
  padding-bottom: 12px;
}
.mm-accordion-content * {
  color: #5D5D5D;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.56px;
}

@media(max-width: var(--breakpoint-md)) {
  .mm-accordions {
    margin: 0;
  }
  .mm-accordion button {
    padding: 16px 0 0;
    font-size: 15px;
  }
  .mm-accordion-content > *:first-child {
    padding-top: 10px;
  }
}

/* WIDGET JUDGEME */
.jdgm-title {
  display: flex !important;
  justify-content: center !important;
}

.jm-button--primary[data-v-9640c170]:hover span {
  color: var(--white) !important;
/* trustpilot */
.trustpilot-widget .tp-widget-wrapper,
.trustpilot-widget #tp-widget-wrapper {
    margin: 0 0 !important;
}
.tp-widget-wrapper {
    text-align: left !important;
}
.tp-widget-wrapper a,
#profile-link {
    display: block;
    text-align: left !important;
}

/* ============================================================================
   SPACING UTILITY CLASSES - Phase 2 Improvements
   ============================================================================ */

/* Padding utilities */
.mm-p-0 { padding: var(--spacing-0); }
.mm-p-1 { padding: var(--spacing-1); }
.mm-p-2 { padding: var(--spacing-2); }
.mm-p-3 { padding: var(--spacing-3); }
.mm-p-4 { padding: var(--spacing-4); }
.mm-p-5 { padding: var(--spacing-5); }
.mm-p-6 { padding: var(--spacing-6); }
.mm-p-8 { padding: var(--spacing-8); }
.mm-p-10 { padding: var(--spacing-10); }
.mm-p-12 { padding: var(--spacing-12); }
.mm-p-16 { padding: var(--spacing-16); }
.mm-p-20 { padding: var(--spacing-20); }

/* Margin utilities */
.mm-m-0 { margin: var(--spacing-0); }
.mm-m-1 { margin: var(--spacing-1); }
.mm-m-2 { margin: var(--spacing-2); }
.mm-m-3 { margin: var(--spacing-3); }
.mm-m-4 { margin: var(--spacing-4); }
.mm-m-5 { margin: var(--spacing-5); }
.mm-m-6 { margin: var(--spacing-6); }
.mm-m-8 { margin: var(--spacing-8); }
.mm-m-10 { margin: var(--spacing-10); }
.mm-m-12 { margin: var(--spacing-12); }
.mm-m-16 { margin: var(--spacing-16); }
.mm-m-20 { margin: var(--spacing-20); }

/* Directional padding */
.mm-pt-0 { padding-top: var(--spacing-0); }
.mm-pt-1 { padding-top: var(--spacing-1); }
.mm-pt-2 { padding-top: var(--spacing-2); }
.mm-pt-3 { padding-top: var(--spacing-3); }
.mm-pt-4 { padding-top: var(--spacing-4); }
.mm-pt-5 { padding-top: var(--spacing-5); }
.mm-pt-6 { padding-top: var(--spacing-6); }
.mm-pt-8 { padding-top: var(--spacing-8); }
.mm-pt-12 { padding-top: var(--spacing-12); }
.mm-pt-16 { padding-top: var(--spacing-16); }
.mm-pt-20 { padding-top: var(--spacing-20); }

.mm-pb-0 { padding-bottom: var(--spacing-0); }
.mm-pb-1 { padding-bottom: var(--spacing-1); }
.mm-pb-2 { padding-bottom: var(--spacing-2); }
.mm-pb-3 { padding-bottom: var(--spacing-3); }
.mm-pb-4 { padding-bottom: var(--spacing-4); }
.mm-pb-5 { padding-bottom: var(--spacing-5); }
.mm-pb-6 { padding-bottom: var(--spacing-6); }
.mm-pb-8 { padding-bottom: var(--spacing-8); }
.mm-pb-12 { padding-bottom: var(--spacing-12); }
.mm-pb-16 { padding-bottom: var(--spacing-16); }
.mm-pb-20 { padding-bottom: var(--spacing-20); }

.mm-pl-0 { padding-left: var(--spacing-0); }
.mm-pl-1 { padding-left: var(--spacing-1); }
.mm-pl-2 { padding-left: var(--spacing-2); }
.mm-pl-3 { padding-left: var(--spacing-3); }
.mm-pl-4 { padding-left: var(--spacing-4); }
.mm-pl-5 { padding-left: var(--spacing-5); }
.mm-pl-6 { padding-left: var(--spacing-6); }
.mm-pl-12 { padding-left: var(--spacing-12); }

.mm-pr-0 { padding-right: var(--spacing-0); }
.mm-pr-1 { padding-right: var(--spacing-1); }
.mm-pr-2 { padding-right: var(--spacing-2); }
.mm-pr-3 { padding-right: var(--spacing-3); }
.mm-pr-4 { padding-right: var(--spacing-4); }
.mm-pr-5 { padding-right: var(--spacing-5); }
.mm-pr-6 { padding-right: var(--spacing-6); }
.mm-pr-12 { padding-right: var(--spacing-12); }

/* Directional margins */
.mm-mt-0 { margin-top: var(--spacing-0); }
.mm-mt-1 { margin-top: var(--spacing-1); }
.mm-mt-2 { margin-top: var(--spacing-2); }
.mm-mt-3 { margin-top: var(--spacing-3); }
.mm-mt-4 { margin-top: var(--spacing-4); }
.mm-mt-5 { margin-top: var(--spacing-5); }
.mm-mt-6 { margin-top: var(--spacing-6); }
.mm-mt-8 { margin-top: var(--spacing-8); }
.mm-mt-12 { margin-top: var(--spacing-12); }
.mm-mt-16 { margin-top: var(--spacing-16); }

.mm-mb-0 { margin-bottom: var(--spacing-0); }
.mm-mb-1 { margin-bottom: var(--spacing-1); }
.mm-mb-2 { margin-bottom: var(--spacing-2); }
.mm-mb-3 { margin-bottom: var(--spacing-3); }
.mm-mb-4 { margin-bottom: var(--spacing-4); }
.mm-mb-5 { margin-bottom: var(--spacing-5); }
.mm-mb-6 { margin-bottom: var(--spacing-6); }
.mm-mb-8 { margin-bottom: var(--spacing-8); }
.mm-mb-12 { margin-bottom: var(--spacing-12); }
.mm-mb-16 { margin-bottom: var(--spacing-16); }

.mm-ml-0 { margin-left: var(--spacing-0); }
.mm-ml-1 { margin-left: var(--spacing-1); }
.mm-ml-2 { margin-left: var(--spacing-2); }
.mm-ml-3 { margin-left: var(--spacing-3); }
.mm-ml-4 { margin-left: var(--spacing-4); }
.mm-ml-auto { margin-left: auto; }

.mm-mr-0 { margin-right: var(--spacing-0); }
.mm-mr-1 { margin-right: var(--spacing-1); }
.mm-mr-2 { margin-right: var(--spacing-2); }
.mm-mr-3 { margin-right: var(--spacing-3); }
.mm-mr-4 { margin-right: var(--spacing-4); }
.mm-mr-auto { margin-right: auto; }

/* ============================================================================
   RESPONSIVE UTILITY CLASSES - Enhanced responsive system
   ============================================================================ */

/* Display utilities for all breakpoints */
.mm-hidden { display: none; }
.mm-block { display: block; }
.mm-inline-block { display: inline-block; }
.mm-inline { display: inline; }

/* Small devices and up (mobile landscape) */
@media (min-width: var(--breakpoint-sm)) {
    .mm-sm-hidden { display: none; }
    .mm-sm-block { display: block; }
    .mm-sm-flex { display: flex; }
    .mm-sm-grid { display: grid; }
}

/* Medium devices and up (tablet) */
@media (min-width: var(--breakpoint-md)) {
    .mm-md-hidden { display: none; }
    .mm-md-block { display: block; }
    .mm-md-flex { display: flex; }
    .mm-md-grid { display: grid; }
}

/* Large devices and up (desktop) */
@media (min-width: var(--breakpoint-lg)) {
    .mm-lg-hidden { display: none; }
    .mm-lg-block { display: block; }
    .mm-lg-flex { display: flex; }
    .mm-lg-grid { display: grid; }
}

/* Extra large devices and up */
@media (min-width: var(--breakpoint-xl)) {
    .mm-xl-hidden { display: none; }
    .mm-xl-block { display: block; }
    .mm-xl-flex { display: flex; }
    .mm-xl-grid { display: grid; }
}

/* Mobile-only utilities (hidden on tablet and up) */
@media (min-width: var(--breakpoint-md)) {
    .mm-mobile-only { display: none; }
}

/* Desktop-only utilities (hidden on mobile and tablet) */
@media (max-width: calc(var(--breakpoint-lg) - 1px)) {
    .mm-desktop-only { display: none; }
}

/* Text alignment responsive utilities */
.mm-text-left { text-align: left; }
.mm-text-center { text-align: center; }
.mm-text-right { text-align: right; }

@media (max-width: calc(var(--breakpoint-md) - 1px)) {
    .mm-mobile-text-center { text-align: center; }
    .mm-mobile-text-left { text-align: left; }
}

@media (min-width: var(--breakpoint-md)) {
    .mm-desktop-text-center { text-align: center; }
    .mm-desktop-text-left { text-align: left; }
}

/* Flexbox utilities responsive */
@media (max-width: calc(var(--breakpoint-md) - 1px)) {
    .mm-mobile-flex-column { flex-direction: column; }
    .mm-mobile-flex-center { justify-content: center; }
    .mm-mobile-align-center { align-items: center; }
}

/* Width utilities */
.mm-w-auto { width: auto; }
.mm-w-full { width: 100%; }
.mm-w-1\/2 { width: 50%; }
.mm-w-1\/3 { width: 33.333333%; }
.mm-w-2\/3 { width: 66.666667%; }
.mm-w-1\/4 { width: 25%; }
.mm-w-3\/4 { width: 75%; }

/* Height utilities */
.mm-h-auto { height: auto; }
.mm-h-full { height: 100%; }
.mm-h-screen { height: 100vh; }

/* Position utilities */
.mm-relative { position: relative; }
.mm-absolute { position: absolute; }
.mm-fixed { position: fixed; }
.mm-sticky { position: sticky; }

/* Overflow utilities */
.mm-overflow-hidden { overflow: hidden; }
.mm-overflow-auto { overflow: auto; }
.mm-overflow-scroll { overflow: scroll; }

/* Border radius utilities */
.mm-rounded-none { border-radius: 0; }
.mm-rounded-sm { border-radius: 2px; }
.mm-rounded { border-radius: 4px; }
.mm-rounded-md { border-radius: 6px; }
.mm-rounded-lg { border-radius: 8px; }
.mm-rounded-xl { border-radius: 12px; }
.mm-rounded-2xl { border-radius: 16px; }
.mm-rounded-3xl { border-radius: 24px; }
.mm-rounded-full { border-radius: 9999px; }

/* Shadow utilities */
.mm-shadow-sm { box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); }
.mm-shadow { box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1); }
.mm-shadow-md { box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); }
.mm-shadow-lg { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); }
.mm-shadow-none { box-shadow: none; }

/* Cursor utilities */
.mm-cursor-auto { cursor: auto; }
.mm-cursor-default { cursor: default; }
.mm-cursor-pointer { cursor: pointer; }
.mm-cursor-not-allowed { cursor: not-allowed; }

/* Opacity utilities */
.mm-opacity-0 { opacity: 0; }
.mm-opacity-25 { opacity: 0.25; }
.mm-opacity-50 { opacity: 0.5; }
.mm-opacity-75 { opacity: 0.75; }
.mm-opacity-100 { opacity: 1; }
