/** Shopify CDN: Minification failed

Line 80:7 Unexpected "/"

**/
.mm-grid-collection {
	max-width: 1440px;
	margin: 0 auto;
}

/* Grid -- First container */
.mm-grid-first-container {
    padding: 0px var(--spacing-5) var(--spacing-2) var(--spacing-5);
}

/* Grid -- Second container */
.mm-grid-second-container {
    padding: 0 var(--spacing-7) var(--spacing-3) var(--spacing-7);
    grid-gap: var(--spacing-3);
}

/* Grid -- Second container -- Card collection */
.mm-grid-card-collection {
    display: grid ;
    grid-gap: var(--spacing-3);
    grid-template-columns: repeat(6, 1fr);
	height: fit-content;
    flex: 1;
    grid-auto-flow: dense;
}
.mm-grid-card-collection.mm-loading {
    opacity: .4;
    pointer-events: none;
}
.mm-grid-card-collection .mm-products-card {
    width: auto;
}

/* Desktop pattern 2/3/2/3 */
.mm-grid-card-collection > *:nth-child(10n+1),
.mm-grid-card-collection > *:nth-child(10n+2),
.mm-grid-card-collection > *:nth-child(10n+6),
.mm-grid-card-collection > *:nth-child(10n+7) {
    grid-column: span 3;
}

.mm-grid-card-collection > *:nth-child(10n+3),
.mm-grid-card-collection > *:nth-child(10n+4),
.mm-grid-card-collection > *:nth-child(10n+5) ,
.mm-grid-card-collection > *:nth-child(10n+8),
.mm-grid-card-collection > *:nth-child(10n+9),
.mm-grid-card-collection > *:nth-child(10n+10) {
    grid-column: span 2;
}

/* Grid -- Pagination */
.mm-grid-pagination {
    margin-bottom: var(--spacing-5);
}

@media (max-width: 1024px) {
    /* Grid */
    .mm-grid {
        padding: var(--spacing-3);
		padding-top: 0;
        grid-gap: var(--spacing-3);
    }

    /* Grid -- First container */
    .mm-grid-first-container {
        padding: 0px;
        flex-direction: column;
        grid-gap: var(--spacing-2);
    }
/* 
    /* Grid -- Second container */
    .mm-grid-second-container {
		grid-template-columns: repeat(2, 1fr);
        padding: 0;
    } */

    /* Grid -- Second container -- Count */
    .mm-grid-second-container-count {
        padding: 0;
    }
}

@media (max-width: 768px) {
	.mm-grid-card-collection {
        grid-template-columns: repeat(2, 1fr);
    }

	/* Reset desktop styles */
    .mm-grid-card-collection > * {
        grid-column: span 1 !important;
    }

    /* Mobile pattern 2/2/1/2/1 */
    .mm-grid-card-collection > *:nth-child(8n+5),  /* Position 5 */
    .mm-grid-card-collection > *:nth-child(8n+8) { /* Position 8 */
        grid-column: span 2 !important;
    }
}


/* — MM Collection Filters & Sort — */

.mm-collection-filters-wrapper {
  padding-inline: 16px;
  padding-top: 16px;
  padding-bottom: 8px;
}

.mm-collection-filters__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

@media (min-width: 960px) {
  .mm-collection-filters__inner {
    grid-template-columns: 260px 1fr;
    align-items: flex-start;
  }
}

/* Tri */

.mm-collection-sort {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  font-size: 13px;
}

@media (min-width: 960px) {
  .mm-collection-sort {
    grid-column: 2;
  }
}

.mm-collection-sort__label {
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: 11px;
  opacity: .7;
}

.mm-collection-sort__select-wrapper {
  position: relative;
}

.mm-collection-sort__select {
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  font-size: 13px;
  padding: 6px 26px 6px 10px;
  border-radius: 999px;
  border: 1px solid #ddd;
  background-color: #fff;
  cursor: pointer;
}

.mm-collection-sort__select-wrapper::after {
  content: "⌄";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-52%);
  font-size: 10px;
  pointer-events: none;
}

/* Filtres */

.mm-filters {
  border-radius: 16px;
  border: 1px solid #eee;
  padding: 16px 14px;
  background-color: #fafafa;
  font-size: 13px;
}

@media (min-width: 960px) {
  .mm-filters {
    grid-column: 1;
    position: sticky;
    top: 80px;
    max-height: calc(100vh - 120px);
    overflow: auto;
  }
}

.mm-filters__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.mm-filters__title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.mm-filters__clear-all {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  text-decoration: underline;
  opacity: .6;
}

.mm-filters__groups {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Groupes / accordéons */

.mm-filter {
  border-radius: 10px;
  background-color: #fff;
  border: 1px solid #eee;
  padding: 4px 10px;
}

.mm-filter__summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-block: 4px;
}

.mm-filter__summary::-webkit-details-marker {
  display: none;
}

.mm-filter__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.mm-filter__badge {
  font-size: 11px;
  min-width: 18px;
  text-align: center;
  padding: 1px 6px;
  border-radius: 999px;
  background: #111;
  color: #fff;
}

.mm-filter__content {
  padding-block: 6px 4px;
  border-top: 1px solid #f0f0f0;
  margin-top: 4px;
}

/* Options */

.mm-filter__options {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 4px;
}

.mm-filter__option {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
}

.mm-filter__option input {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  border: 1px solid #ccc;
  cursor: pointer;
}

.mm-filter__option--disabled {
  opacity: .4;
}

.mm-filter__option-label {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}

.mm-filter__option-count {
  font-size: 11px;
  opacity: .6;
}

/* Liens reset */

.mm-filter__clear {
  display: inline-block;
  margin-top: 4px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  text-decoration: underline;
  opacity: .6;
}

/* Mobile */

@media (max-width: 959px) {
  .mm-collection-filters__inner {
    gap: 8px;
  }

  .mm-filters {
    padding: 12px 10px;
  }
}

/* =========================
   MM COLLECTION UI
   ========================= */

.mm-no-scroll,
.mm-no-scroll body {
  overflow: hidden;
}

.mm-collection-ui {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px var(--spacing-7) 10px var(--spacing-7);
  position: relative;
  z-index: auto;
}

.mm-collection-ui__form {
  position: relative;
}

.mm-collection-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.mm-collection-toolbar__left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mm-toolbar-btn {
  appearance: none;
  border: 1px solid #d7d2cb;
  background: transparent;
  color: #222;
  min-height: 44px;
  padding: 0 20px;
  font: inherit;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .15s ease;
}

.mm-toolbar-btn:hover {
  background: #f4efe9;
  border-color: #cfc6bc;
}

.mm-toolbar-btn:active {
  transform: translateY(1px);
}

.mm-toolbar-btn__count {
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
}

.mm-sort-popover {
  position: absolute;
  top: 58px;
  left: 0;
  width: 320px;
  background: #FFF6ED;
  border: 1px solid #d9d3cb;
  padding: 18px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  z-index: 9997;
}

.mm-collection-ui.is-sort-open .mm-sort-popover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mm-sort-popover__header,
.mm-filters-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.mm-sort-popover__title,
.mm-filters-drawer__title {
  margin: 0;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mm-sort-popover__close,
.mm-filters-drawer__close {
  appearance: none;
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: #222;
  padding: 0;
}

.mm-sort-popover__options {
  display: flex;
  flex-direction: column;
}

.mm-choice {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  padding: 0 2px;
  font-size: 14px;
  cursor: pointer;
}

.mm-choice input {
  margin: 0;
}

.mm-choice span {
  line-height: 1.25;
}

.mm-sort-popover__footer,
.mm-filters-drawer__footer {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.mm-btn {
  appearance: none;
  border: 1px solid #111;
  background: transparent;
  color: #111;
  min-height: 46px;
  padding: 0 18px;
  font: inherit;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mm-btn--primary {
  background: #111;
  color: #fff;
}

.mm-btn--ghost {
  background: transparent;
  color: #111;
  border-color: #d0c9c1;
}

.mm-btn--full {
  flex: 1 1 0;
  width: 100%;
}



.mm-collection-ui.is-filters-open .mm-filters-overlay {
  opacity: 1;
  visibility: visible;
}

.mm-filters-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, .18);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
  z-index: 2147483645;
}

.mm-filters-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(460px, 92vw);
  height: 100dvh;
  background: #FFF6ED;
  border-left: 1px solid #ddd4cb;
  box-shadow: -12px 0 30px rgba(0,0,0,.08);
  z-index: 2147483646;
  transform: translate3d(100%, 0, 0);
  transition: transform .28s ease;
  display: flex;
  flex-direction: column;
}

.mm-collection-ui.is-filters-open .mm-filters-drawer {
  transform: translate3d(0, 0, 0);
}

.mm-filters-drawer__header {
  padding: 26px 26px 18px;
  border-bottom: 1px solid #e2dbd3;
  margin-bottom: 0;
}

.mm-filters-drawer__body {
  flex: 1 1 auto;
  overflow: auto;
  padding: 0 26px 20px;
}

.mm-filters-drawer__footer {
  padding: 18px 26px 26px;
  border-top: 1px solid #e2dbd3;
  background: #f7f3ee;
  box-shadow: 0 -8px 20px rgba(0,0,0,.03);
}

.mm-filter-group {
  border-bottom: 1px solid #e3ddd6;
  padding: 20px 0;
}

.mm-filter-group__summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1.2;
}

.mm-filter-group__summary::-webkit-details-marker {
  display: none;
}

.mm-filter-group[open] .mm-filter-group__icon {
  transform: rotate(45deg);
}

.mm-filter-group__icon {
  font-size: 20px;
  line-height: 1;
  transition: transform .2s ease, opacity .2s ease;
  opacity: .75;
}

.mm-filter-group__content {
  padding-top: 16px;
}

.mm-filter-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mm-filter-check {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid #ddd4cb;
  background: transparent;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .15s ease;
}

.mm-filter-check:hover {
  background: #f1ece6;
  border-color: #cfc6bc;
}

.mm-filter-check input {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  margin: 0;
}

.mm-filter-check__label {
  font-size: 13px;
  line-height: 1.25;
  letter-spacing: .01em;
  color: #1f1f1f;
  transition: color .2s ease;
}

.mm-filter-check__count {
  color: #8b847c;
  font-size: 11px;
  letter-spacing: .04em;
  transition: color .2s ease;
}

.mm-filter-check input:checked ~ .mm-filter-check__label {
  color: #fff;
}

.mm-filter-check input:checked ~ .mm-filter-check__count {
  color: rgba(255,255,255,.72);
}

.mm-filter-check:has(input:checked) {
  background: #111;
  border-color: #111;
}

.mm-filter-check.is-disabled {
  opacity: .38;
  cursor: not-allowed;
}

.mm-filter-check.is-disabled:hover {
  background: transparent;
  border-color: #ddd4cb;
}

.mm-filter-group[open] .mm-filter-group__summary {
  color: #111;
}

.mm-filter-group[open] .mm-filter-group__summary span:first-child {
  font-weight: 500;
}

@media (max-width: 767px) {
  .mm-collection-ui {
    padding: 14px 16px 8px;
  }

  .mm-collection-toolbar {
    margin-bottom: 14px;
  }

  .mm-toolbar-btn {
    flex: 1 1 0;
    justify-content: center;
    min-height: 44px;
    padding: 0 14px;
    font-size: 12px;
  }

  .mm-sort-popover {
    left: 16px;
    right: 16px;
    width: auto;
    top: 56px;
  }

.mm-filters-drawer {
  top: auto;
  right: 0;
  bottom: 0;
  width: 100%;
  height: min(82dvh, 760px);
  border-left: 0;
  border-top: 1px solid #ddd4cb;
  transform: translate3d(0, 100%, 0);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}

.mm-collection-ui.is-filters-open .mm-filters-drawer {
  transform: translate3d(0, 0, 0);
}

  .mm-filters-drawer__header {
    padding: 18px 18px 14px;
  }

  .mm-filters-drawer__body {
    padding: 0 18px 18px;
  }

  .mm-filters-drawer__footer {
    padding: 14px 18px 18px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

/* =========================
   Couleur / swatches
   ========================= */

.mm-filter-swatches {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px 10px;
}

.mm-filter-swatch {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-align: center;
}

.mm-filter-swatch input {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  margin: 0;
}

.mm-filter-swatch__visual {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid #d8d1c8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  overflow: hidden;
}

.mm-filter-swatch__color,
.mm-filter-swatch__image,
.mm-filter-swatch__fallback {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: block;
}

.mm-filter-swatch__image {
  object-fit: cover;
}

.mm-filter-swatch__fallback {
  background: #eee7df;
  color: #111;
  font-size: 11px;
  line-height: 26px;
  text-align: center;
  text-transform: uppercase;
}

.mm-filter-swatch__label {
  font-size: 11px;
  line-height: 1.2;
  color: #1f1f1f;
  letter-spacing: .02em;
}

.mm-filter-swatch:hover .mm-filter-swatch__visual {
  transform: scale(1.05);
  border-color: #bcb2a7;
}

.mm-filter-swatch:has(input:checked) .mm-filter-swatch__visual {
  border-color: #111;
  box-shadow: 0 0 0 1px #111;
}

.mm-filter-swatch:has(input:checked) .mm-filter-swatch__label {
  font-weight: 600;
}

.mm-filter-swatch.is-disabled {
  opacity: .35;
  cursor: not-allowed;
}

@media (max-width: 767px) {
  .mm-filter-swatches {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px 8px;
  }
}