@charset "UTF-8";
/* Importer la police Lato avec différents poids si nécessaire */
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700&display=swap");
/* Définir les familles de polices personnalisées */
@font-face {
  font-family: "AvenirNext";
  src: url("../font/an-regular.ttf");
  font-weight: normal;
}
@font-face {
  font-family: "AvenirNext";
  src: url("../font/AvenirNext-Medium-06.ttf");
  font-weight: 500;
  /* Medium */
}
@font-face {
  font-family: "AvenirNext";
  src: url("../font/AvenirNext-DemiBold-03.ttf");
  font-weight: 600;
  /* Medium */
}
@font-face {
  font-family: "AvenirNext";
  src: url("../font/AvenirNext-Bold-01.ttf");
  font-weight: bold;
}
@font-face {
  font-family: "Blair";
  src: url("../font/blair.ttf");
  font-weight: normal;
}
@font-face {
  font-family: "Blair";
  src: url("../font/blair-itc-std-light-59f873daca46b.otf");
  font-weight: 300;
  /* Light */
}
@font-face {
  font-family: "Blair";
  src: url("../font/BlairMdITC TT Medium.ttf");
  font-weight: 500;
  /* Medium */
}
@font-face {
  font-family: "Blair";
  src: url("../font/blair-itc-std-bold-59f873bf7f1dc.otf");
  font-weight: bold;
}
@font-face {
  font-family: "Auros";
  src: url("../font/Auros.eot?7y8ufa");
  src: url("../font/Auros.eot?7y8ufa#iefix") format("embedded-opentype"), url("../font/Auros.ttf?7y8ufa") format("truetype"), url("../font/Auros.woff?7y8ufa") format("woff"), url("../font/Auros.svg?7y8ufa#Auros") format("svg");
  font-weight: normal;
  font-style: normal;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  display: inline-block;
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  z-index: 9999;
}
#loader .logo-container {
  width: 150px;
  height: auto;
}
#loader .logo-container img {
  width: 100%;
  height: auto;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-70 {
  margin-top: 70px !important;
}

/* Lightbox container */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

/* Lightbox content */
.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 80%;
  text-align: center;
}

/* Image inside lightbox */
.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  margin-bottom: 10px;
}

/* Title in the lightbox */
.lightbox-title {
  color: #fff;
  font-size: 18px;
  margin-top: 10px;
}

/* Close button */
.lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #fff;
  color: #000;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 16px;
  border-radius: 3px;
}

.container {
  width: 90%;
  margin: 0 auto;
  max-width: 1596px;
}
@media (max-width: 1600px) {
  .container {
    width: 90%;
  }
}

.container2 {
  width: 75%;
  margin: 0 auto;
  max-width: 1435px;
}

.container3 {
  width: 70%;
  margin: 0 auto;
  max-width: 1180px;
}

.container4 {
  width: 60%;
  margin: 0 auto;
  max-width: 900px;
}

.container-fluid {
  width: 90%;
  margin: 0 auto;
  max-width: 1596px;
}
.container-fluid .content {
  margin: 0;
}

.container-100 {
  width: calc(100% - 20px);
  margin: 0 auto;
  max-width: 100%;
}

.btn-black {
  background-color: #333333;
  padding: 20px 30px;
  color: #fff;
  border: 0;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 400;
  line-height: 15.43px;
  letter-spacing: 0.15em;
  cursor: pointer;
  display: inline-block;
}

.btn-black-f {
  background-color: #333333;
  padding: 20px 30px;
  color: #fff;
  border: 0;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 400;
  line-height: 15.43px;
  letter-spacing: 0.15em;
  cursor: pointer;
  display: inline-flex;
  gap: 5px;
  align-items: center;
}
.btn-black-f svg {
  margin-left: 10px;
}

ul {
  list-style: none;
}

/**********************************************/
/* reset css */
body {
  margin: 0;
  padding: 0;
  font-family: "AvenirNext", sans-serif;
  font-size: 14px;
  color: rgb(29, 29, 27);
}
body a {
  color: rgb(29, 29, 27);
}

a {
  text-decoration: none;
}

.cols {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 70px;
}
.cols.jc-center {
  justify-content: center;
  gap: 120px;
}
@media screen and (max-width: 480px) {
  .cols {
    flex-direction: column;
    gap: 50px;
  }
}
.cols .col {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 480px) {
  .cols .col {
    margin: 0;
  }
}
.cols .col h6 {
  font-weight: 700;
  margin-bottom: 30px;
}
.cols .col ul {
  flex-grow: 1;
}
.cols .col ul li {
  margin-bottom: 15px;
}

.bg-dark {
  background: rgb(29, 29, 27);
  color: #fff;
}
.bg-dark * {
  color: #fff;
}

.bt-1 {
  border-top: 1px solid rgb(29, 29, 27);
}

.page-index .news-list {
  margin-top: 160px;
  padding-top: 120px;
  padding-bottom: 120px;
  border-top: 1px #000 solid;
  border-bottom: 1px #000 solid;
}

.news-listxxx {
  display: flex;
  flex-wrap: wrap;
  /* Espacement entre les articles */
  justify-content: space-between;
  /* Répartit les articles sur la ligne */
  width: 100%;
  max-width: 1435px;
  margin: auto;
  gap: 20px;
}
.news-listxxx .item {
  flex: 1 1 calc(33.333% - 20px);
  width: 100%;
  /* Trois colonnes avec espace entre elles */
}
@media screen and (max-width: 768px) {
  .news-listxxx .item {
    flex: 0 0 calc(50% - 20px);
    /* Deux colonnes avec espace entre elles */
  }
}
@media screen and (max-width: 480px) {
  .news-listxxx .item {
    flex: 0 0 calc(100% - 20px);
    /* Deux colonnes avec espace entre elles */
    margin-bottom: 50px;
  }
}
.news-listxxx .item .category {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.news-listxxx .item .category .sub-category {
  font-size: 10px;
  font-weight: 500;
  line-height: 15px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.news-listxxx .item .category h2 {
  font-size: 18px;
  line-height: 21px;
  letter-spacing: 0.2px;
  font-family: "Blair", sans-serif;
  font-weight: 300;
  margin-bottom: 24px;
}
.news-listxxx .item .image img {
  max-width: 100%;
  height: auto;
  display: block;
}
.news-listxxx .item .summary {
  font-size: 14px;
  line-height: 21px;
  text-align: left;
  margin-top: 24px;
  padding: 0 20px;
}
@media screen and (max-width: 480px) {
  .news-listxxx .item .summary {
    padding: 0;
  }
}
.news-listxxx .item .summary h3 {
  font-weight: 600;
}
.news-listxxx .item .summary a {
  display: inline-block;
  margin-top: 20px;
  text-decoration: underline;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.4px;
}

.news-listXXXXXX {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1rem;
}
.news-listXXXXXX .image {
  border: 3px red solid;
}
.news-listXXXXXX .image img {
  width: 100%;
}

.news-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  row-gap: 3rem;
  width: 100%;
  max-width: 1435px;
  margin: auto;
}
@media screen and (max-width: 900px) {
  .news-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 550px) {
  .news-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.news-list .item {
  flex: 1 1 calc(33.333% - 20px);
  width: 100%;
  /* Trois colonnes avec espace entre elles */
}
@media screen and (max-width: 768px) {
  .news-list .item {
    flex: 0 0 calc(50% - 20px);
    /* Deux colonnes avec espace entre elles */
  }
}
@media screen and (max-width: 480px) {
  .news-list .item {
    flex: 0 0 calc(100% - 20px);
    /* Deux colonnes avec espace entre elles */
    margin-bottom: 50px;
  }
}
.news-list .item .category {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.news-list .item .category .sub-category {
  font-size: 10px;
  font-weight: 500;
  line-height: 15px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.news-list .item .category h2 {
  font-size: 18px;
  line-height: 21px;
  letter-spacing: 0.2px;
  font-family: "Blair", sans-serif;
  font-weight: 300;
  margin-bottom: 24px;
}
.news-list .item .image img {
  max-width: 100%;
  height: auto;
  display: block;
}
.news-list .item .summary {
  font-size: 14px;
  line-height: 21px;
  text-align: left;
  margin-top: 24px;
  padding: 0 20px;
}
@media screen and (max-width: 480px) {
  .news-list .item .summary {
    padding: 0;
  }
}
.news-list .item .summary h3 {
  font-weight: 600;
}
.news-list .item .summary a {
  display: inline-block;
  margin-top: 20px;
  text-decoration: underline;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.4px;
}

.product-category {
  width: 100%;
  margin: auto;
  margin-top: 100px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) {
  .product-category {
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .product-category {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .product-category {
    grid-template-columns: repeat(1, 1fr);
  }
}
.product-category .item {
  position: relative;
}
.product-category .item img {
  display: block;
  width: 100%;
  height: auto;
}
.product-category .item h2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  /* Fond semi-transparent noir */
  padding: 10px;
  box-sizing: border-box;
  color: rgb(29, 29, 27);
  font-family: "Blair", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.05em;
}
.product-category .beauty-button {
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
}

h2.part-title {
  font-family: "Blair", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 2.4px;
  text-align: center;
  text-align: center;
  margin-bottom: 50px;
}

.collection-home {
  margin-top: 75px;
}
.collection-home .items {
  display: flex;
  gap: 40px;
}
@media (max-width: 1024px) {
  .collection-home .items .item:last-child {
    display: none;
  }
}
@media (max-width: 768px) {
  .collection-home .items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .collection-home .items {
    grid-template-columns: repeat(1, 1fr);
  }
  .collection-home .items .item:last-child {
    display: block;
  }
}
.collection-home .items .item .product-image {
  position: relative;
}
.collection-home .items .item .product-image img {
  display: block;
  width: 100%;
}
.collection-home .items .item .product-image .beauty-button {
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.collection-home .items .item .info {
  margin-top: 20px;
}
.collection-home .items .item .info h3 {
  font-family: "Blair", sans-serif;
  font-size: 11px;
  font-weight: 300;
  line-height: 16.5px;
  letter-spacing: 1.1px;
}
.collection-home .items .item .info > p {
  margin-top: 5px;
  font-size: 13.13px;
  font-weight: 400;
  line-height: 21px;
}
.collection-home .items .item .info > p a {
  text-decoration: underline;
}

.beauty-button {
  padding: 12px 10px 12px 10px;
  border: 1px solid transparent;
  border-image-source: linear-gradient(86.69deg, #FFFFFF 0.32%, #A9A9A9 84.54%, #FFFFFF 99.42%);
  border-image-slice: 1;
  color: rgb(29, 29, 27);
  text-transform: uppercase;
  transition: -webkit-backdrop-filter 0.3s;
  transition: backdrop-filter 0.3s;
  transition: backdrop-filter 0.3s, -webkit-backdrop-filter 0.3s;
  font-size: 12px;
  font-weight: 500;
  line-height: 15px;
  letter-spacing: 1.7px;
  background: rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  display: inline-flex;
  align-items: center;
}
@media (max-width: 768px) {
  .beauty-button {
    padding: 10px;
    font-size: 10px;
    line-height: 12px;
  }
}
.beauty-button::after {
  content: "";
  display: inline-block;
  margin-left: 10px;
  width: 16px;
  height: 16px;
  background: url("../img/arrow.svg") no-repeat center center;
  background-size: contain;
}
.beauty-button:hover {
  -webkit-backdrop-filter: blur(7px);
          backdrop-filter: blur(7px);
}

.newsletter {
  text-align: center;
  width: 100%;
  max-width: 500px;
  margin: auto;
  margin-top: 260px;
  font-family: AvenirNext, sans-serif;
}
.newsletter form {
  display: flex;
  gap: 40px;
  flex-direction: column;
}
.newsletter form > div {
  width: 100%;
  max-width: 300px;
  margin: auto;
}
.newsletter form > div.checkbox {
  display: flex;
  color: #767676;
  font-size: 13px;
  font-weight: 400;
  line-height: 16.9px;
  letter-spacing: 1px;
  text-align: left;
}
.newsletter form > div.checkbox label {
  margin-left: 10px;
}
.newsletter form > div.title {
  max-width: 100%;
}
.newsletter p {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.2px;
}
.newsletter input[type=email] {
  border: #1D1D1B 1px solid;
  padding: 22px 20px 22px 20px;
  width: 100%;
  max-width: 300px;
}
.newsletter .btn-black {
  width: 100%;
}

.article h2 {
  font-size: 10px;
  font-weight: 500;
  line-height: 15px;
  letter-spacing: 2px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.article h1 {
  font-size: 18px;
  font-weight: 300;
  line-height: 21px;
  letter-spacing: 0.2px;
  font-family: "Blair", sans-serif;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.article .content {
  font-size: 14px;
  line-height: 21px;
}

.prev-next {
  background-color: #000;
}
.prev-next .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 100px;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
}
.prev-next .container a {
  color: #fff;
}
.prev-next .container div {
  flex: 1;
}
.prev-next .container div:first-child {
  text-align: left;
}
.prev-next .container div:last-child {
  text-align: right;
}
.prev-next .container div a {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  line-height: 15px;
  letter-spacing: 1.7px;
  display: inline-block;
  text-decoration: none;
}
.prev-next .container div a:hover {
  text-decoration: underline;
}

.anim {
  opacity: 0;
}

.titre-page {
  font-family: "Blair", sans-serif;
  font-size: 40px;
  font-weight: 300;
  line-height: 50px;
  letter-spacing: 2.4px;
  text-align: center;
  margin-bottom: 75px;
  padding-bottom: 40px;
}
.titre-page strong {
  font-weight: 700;
}

.designer {
  margin-bottom: 150px;
}
.designer .bio {
  display: flex;
  gap: 20px;
}
.designer .bio .photo {
  width: 100%;
  max-width: 570px;
}
.designer .bio .photo img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 1024px) {
  .designer .bio {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.designer .bio .content {
  text-align: center;
}
.designer .bio .content h2 {
  font-family: "Blair", sans-serif;
  font-size: 30px;
  font-weight: normal;
  line-height: 40px;
  letter-spacing: 2.4px;
  text-align: center;
  margin-bottom: 40px;
}
.designer .bio .content h3 {
  font-family: "Blair", sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 16px;
  letter-spacing: 2.4px;
  text-align: center;
  margin-bottom: 40px;
}
.designer .bio .content .text {
  width: 100%;
  max-width: 300px;
  margin: auto;
  font-size: 14px;
  line-height: 21px;
}
.designer .bio .designer-object {
  padding: 20px;
  margin-top: 50px;
  background-color: #fff;
  box-shadow: 0 2px 7px 2px rgba(0, 0, 0, 0.16);
}
.designer .bio .designer-object h3 {
  font-size: 15px;
}
.designer .bio .designer-object .list-objet {
  display: flex;
  justify-content: space-around;
}
@media (max-width: 480px) {
  .designer .bio .designer-object .list-objet {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
}

.page-about h2 {
  font-family: "Blair", sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 2.4px;
}
@media screen and (max-width: 1024px) {
  .page-about h2 {
    margin-top: 50px;
  }
}
.page-about strong {
  font-weight: 700;
}
.page-about .part {
  display: flex;
  gap: 80px;
  justify-content: center;
  align-items: center;
  margin-bottom: 150px;
}
@media screen and (max-width: 1024px) {
  .page-about .part {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 20px;
  }
  .page-about .part.part-s-reverse {
    flex-direction: column-reverse;
  }
}
.page-about .part.part-process > div:first-child {
  flex: 0 0 30%;
}
.page-about .part .content {
  font-size: 14px;
  line-height: 21px;
  padding-right: 50px;
}
@media screen and (max-width: 1024px) {
  .page-about .part .content {
    padding-right: 0;
  }
}
@media screen and (max-width: 1024px) {
  .page-about .part .photo img {
    width: 100%;
    height: auto;
    display: block;
  }
  .page-about .part .photos {
    width: 100%;
    margin: auto;
  }
  .page-about .part .photos img {
    width: 100%;
    height: auto;
    display: block;
  }
}
.page-about .part .photos {
  display: flex;
  gap: 20px;
  position: relative;
}
.page-about .part .photos img {
  width: 100%;
  height: auto;
}
.page-about .part .photos img.main {
  width: 100%;
  min-width: 380px;
}
@media screen and (max-width: 1024px) {
  .page-about .part .photos {
    flex-direction: column-reverse;
    gap: 50px;
  }
  .page-about .part .photos img.main {
    min-width: initial;
  }
}
.page-about .part .photos .citation {
  position: absolute;
  top: -30px;
  right: -50%;
  height: 200px;
  box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.12);
}
@media screen and (max-width: 1024px) {
  .page-about .part .photos .citation {
    position: relative;
    top: 0;
    right: 0;
  }
}
.page-about .part .photos-product {
  position: relative;
}
.page-about .part .photos-product > div:not(.main) {
  position: absolute;
  top: 80%;
  left: -20%;
  max-width: 230px;
}
.page-about .part .photos-product > div:not(.main) img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .page-about .part .photos-product img {
    max-width: 100%;
  }
  .page-about .part .photos-product > div:not(.main) {
    position: relative;
    top: 0;
    left: 0;
    max-width: 100%;
  }
}

.products____OBSOLETE {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  width: 100%;
  gap: 20px;
}
.products____OBSOLETE .productResume {
  margin-bottom: 3em;
}
.products____OBSOLETE .productResume .image {
  position: relative;
}
.products____OBSOLETE .productResume .image img {
  width: 100%;
  height: auto;
  display: block;
}
.products____OBSOLETE .productResume .image img.img2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  /* img2 est masquée par défaut */
  transition: opacity 0.5s;
  /* Pour une transition en douceur */
}
.products____OBSOLETE .productResume .info {
  margin-top: 1em;
  margin-left: 1em;
}
.products____OBSOLETE .productResume .info h3 {
  font-family: "Blair", sans-serif;
  font-size: 11px;
  font-weight: 300;
  line-height: 16.5px;
  letter-spacing: 1.1px;
}

@media (max-width: 1024px) {
  .products___OBSOLETE {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .products___OBSOLETE {
    grid-template-columns: 1fr;
  }
}
.store-search {
  display: flex;
}
.store-search > div:first-child {
  flex: 0 0 30%;
  padding-right: 20px;
}
@media (max-width: 600px) {
  .store-search > div:first-child {
    width: 10%;
  }
}
.store-search > div:first-child .map-result h3 {
  border-top: 1px #000 solid;
  margin-top: 40px;
  padding-top: 20px;
  font-family: "Blair", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 21px;
  margin-bottom: 20px;
}
.store-search > div:first-child .map-result h3:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.store-search > div:first-child .map-result .one-result {
  margin-bottom: 20px;
}
.store-search > div:first-child .map-result .one-result h4 {
  font-family: "Blair", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  margin-bottom: 0px;
}
.store-search > div:first-child .map-result .one-result .type {
  margin-top: 5px;
}
.store-search > div:first-child .map-result .one-result .type ul {
  display: flex;
}
.store-search > div:first-child .map-result .one-result .type ul li {
  padding-right: 10px;
}
.store-search > div:last-child {
  flex: 1;
  height: calc(100vh - 100px);
  position: sticky;
  top: 100px;
}
.store-search > div:last-child #map {
  height: calc(100vh - 100px);
  width: 100%;
}
.store-search > div:last-child #map div[role=dialog] h2 {
  font-family: "Blair", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 21px;
  margin-bottom: 20px;
}
.store-search > div:last-child #map div[role=dialog] a {
  display: block;
  margin-top: 20px;
  background-color: #000;
  color: #fff;
  padding: 20px;
  text-align: center;
}
.store-search .filter {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #000;
}
.store-search .filter ul {
  margin-top: 5px;
  display: flex;
  gap: 20px;
}
.store-search .filter ul li::before {
  content: "✖️";
  color: #767676;
  margin-right: 5px;
}
.store-search .filter ul li.active::before {
  content: "✔️";
  color: #00FF00;
}

@media (max-width: 500px) {
  .store-search {
    flex-direction: column;
  }
  .store-search > div:first-child {
    width: 100%;
    flex: 0 0 100%;
    padding-right: 0;
    text-align: center;
  }
  .store-search > div:first-child .type ul {
    justify-content: center;
  }
  .store-search > div:first-child .make-choice {
    justify-content: center;
  }
  .store-search > div:last-child {
    display: none;
  }
}
body.page-store .menu-bottom {
  margin-bottom: 0;
}
body.page-store h1 {
  margin-top: 20px;
}

.alert-danger {
  background-color: #f8d7da;
  color: #721c24;
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #f5c6cb;
  border-radius: 5px;
}

body.download.fixedMenu .border-menu {
  position: fixed;
  top: 107px;
}
@media (max-width: 1200px) {
  body.download.fixedMenu .border-menu {
    top: 64px;
  }
}

body.download {
  text-align: center;
}
body.download .menu-bottom {
  margin-bottom: 0;
  position: relative;
}
body.download .border-menu {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px 0;
}
body.download .border-menu ul {
  display: flex;
  justify-content: center;
  gap: 20px;
}
body.download h2 {
  font-family: "Blair", sans-serif;
  font-size: 30px;
  font-weight: 300;
  line-height: 40px;
  letter-spacing: 2.4px;
  text-align: center;
  margin-bottom: 50px;
}
body.download .download-catalog {
  margin-top: 60px;
}
body.download .download-catalog .intro {
  font-size: 14px;
  margin-bottom: 60px;
}
body.download .docs {
  display: flex;
  flex-wrap: wrap;
}
body.download .docs .doc {
  flex: 1 0 calc(50% - 20px);
  margin: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid #000;
  margin-bottom: 60px;
}
body.download .docs .doc:first-child {
  flex: 1 0 100%;
}
body.download .docs .doc .doc-illustration img {
  width: 100%;
  height: auto;
}
body.download .docs .doc .doc-download-line {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
}
body.download .docs .doc .doc-download-line > div:first-child {
  text-align: left;
}
body.download .docs .doc .doc-download-line .doc-title {
  font-family: "Blair", sans-serif;
  font-size: 20px;
  font-weight: 300;
}
body.download .download-collection {
  -moz-columns: 4;
       columns: 4;
  line-height: normal;
}
body.download .download-collection > div {
  page-break-inside: avoid;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}
body.download .download-collection > div h3 {
  margin-top: 0;
  margin-bottom: 25px;
  font-size: 28px;
  font-family: AvenirNext, sans-serif;
}
body.download .download-collection > div > div {
  margin-bottom: 50px;
}

i.icon-doc-PDF {
  background-image: url(../img/svg2/pdf.svg);
  width: 20px;
  height: 20px;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: left bottom;
}

.mb-50 {
  margin-bottom: 150px;
}

.ajaxReturn {
  color: #0d6f0d;
}
.ajaxReturn.alert {
  color: #870b0b;
}

.topPage {
  padding: 49px 0px;
  box-shadow: 0 2px 7px 2px rgba(0, 0, 0, 0.16);
}
.topPage .container {
  display: flex;
  justify-content: space-between;
}
.topPage .breadcrumb ul {
  display: flex;
}
@media screen and (max-width: 480px) {
  .topPage .breadcrumb ul {
    display: inline;
  }
  .topPage .breadcrumb ul li {
    display: inline;
  }
  .topPage .breadcrumb ul li:first-child {
    display: none;
    background-color: red;
  }
}
.topPage .breadcrumb ul.v2 {
  margin: 20px 0;
}
.topPage .breadcrumb ul.v2 li {
  font-size: 11px;
}
.topPage .breadcrumb ul.v3 li {
  font-size: 10px;
}
.topPage .breadcrumb ul li {
  font-family: "Blair", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-weight: 300;
}
.topPage .breadcrumb ul li:after {
  content: "|";
  font-family: "Courier New", Courier, monospace;
  text-transform: lowercase;
  margin-left: 10px;
  margin-right: 10px;
}
.topPage .breadcrumb ul li:last-child:after {
  content: "";
}

.page-product {
  border-top: 1px solid #000;
}
@media screen and (max-width: 1200px) {
  .page-product {
    border-top: 1px solid #eee;
  }
}
.page-product > .content {
  width: calc(100% - 20px);
  max-width: 1600px;
  margin: auto;
  margin-top: 30px;
}
.page-product > .content .photos img {
  width: 100%;
  height: auto;
}
.page-product .head {
  margin-bottom: 50px;
  display: flex;
  justify-content: space-between;
  align-items: top;
  margin-top: 23px;
}
.page-product .head .product-name {
  font-family: "Blair", sans-serif;
  font-size: 14.5px;
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 300;
}
.page-product .head .product-by {
  font-family: "avenirNext", sans-serif;
  font-size: 14.3px;
  font-weight: 400;
  text-align: right;
}
.page-product .product-description {
  font-family: "avenirNext", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22.5px;
  letter-spacing: 0.2px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #000;
}
.page-product .bloc-produit {
  display: flex;
  justify-content: space-around;
  border-bottom: 1px solid #000;
  padding-bottom: 20px;
  margin-bottom: 20px;
  /* en responsive : on fait passer les elements 2 par 2 */
}
@media (max-width: 1450px) {
  .page-product .bloc-produit {
    flex-wrap: wrap;
  }
  .page-product .bloc-produit > div {
    width: 50%;
  }
}
@media (max-width: 950px) {
  .page-product .bloc-produit {
    flex-wrap: nowrap;
  }
  .page-product .bloc-produit > div {
    width: 100%;
  }
}
.page-product .bloc-produit > div h3 {
  font-family: "Blair", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 21px;
  letter-spacing: 0.2px;
  margin-bottom: 20px;
  text-align: center;
}
.page-product .bloc-produit > div img {
  width: 100%;
  height: auto;
}
.page-product .bloc-size {
  border-bottom: 1px solid #000;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.page-product .bloc-size h3 {
  font-family: "Blair", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 21px;
  letter-spacing: 0.2px;
  margin-bottom: 20px;
  text-align: center;
}
.page-product .bloc-size .content {
  display: flex;
  justify-content: space-around;
}
.page-product .bloc-size .content img {
  width: 100%;
  height: auto;
  max-height: 400px;
}
.page-product .bloc-finition {
  margin-bottom: 20px;
  border-bottom: 1px solid #000;
  padding-bottom: 20px;
}
.page-product .bloc-finition h3 {
  font-family: "Blair", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 21px;
  letter-spacing: 0.2px;
  margin-bottom: 20px;
  text-align: center;
}
.page-product .bloc-finition .content .finitions {
  padding-bottom: 20px;
}
.page-product .bloc-finition .content .finitions .images-finitions {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}
.page-product .bloc-finition .content .finitions .images-finitions > div {
  flex: 1;
  text-align: center;
}
.page-product .bloc-finition .content .finitions .images-finitions > div span {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 300;
  text-transform: uppercase;
}
.page-product .bloc-finition .content .finitions .images-finitions > div img {
  width: 100%;
  height: auto;
  max-width: 200px;
}

.bloc h3 {
  font-family: AvenirNext, sans-serif;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  line-height: 21px;
  margin-bottom: 5px;
  font-weight: 700;
  letter-spacing: 1.9800000191px;
  text-align: left;
}

.txt-center {
  text-align: center;
}

@media (max-width: 425px) {
  /* Styles pour les petits écrans ici */
}
/* Écran moyen : Tablettes (min-width: 768px) */
@media (min-width: 768px) and (max-width: 1024px) {
  /* Styles pour les écrans moyens ici */
}
/* Grand écran : Desktop (min-width: 1200px) */
@media (min-width: 1200px) {
  /* Styles pour les grands écrans ici */
}
/* Très grand écran : Desktop large (min-width: 1440px) */
@media (min-width: 1440px) {
  /* Styles pour les très grands écrans ici */
}
.image-intro {
  margin-top: 20px;
  position: relative;
  width: 100%;
  height: auto;
}
.image-intro .background-image {
  width: 100%;
  height: auto;
}
.image-intro .background-image img {
  width: 100%;
  height: auto;
  display: block;
}
.image-intro .content {
  position: absolute;
  top: 50%;
  left: 11%;
  transform: translateY(-50%);
  color: #000;
}
.image-intro .content a {
  color: inherit;
}
.image-intro .content .categorie {
  font-family: "AvenirNext", sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 15px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 35px;
}
.image-intro .content h1 {
  font-family: "Blair", sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: 0.1em;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-120 {
  margin-bottom: 120px !important;
}

.pro .flex {
  display: flex;
  justify-content: space-between;
}
.pro .flex > div {
  width: 48%;
  display: flex;
  flex-direction: column;
}
.pro .form-pro {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.pro .form-pro .form-button-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pro .form-pro .form-button-action > div {
  width: 48%;
}
.pro .form-pro .form-button-action > div:last-child {
  text-align: right;
}
.pro .form-pro .form-button-action .btn {
  text-transform: uppercase;
}
.pro .form-pro .error {
  color: red;
  margin-bottom: 20px;
}
.pro .form-pro .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.pro .form-pro .content {
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(5px);
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  width: 100%;
}
.pro .form-pro .content form {
  display: flex;
  flex-direction: column;
}
.pro .form-pro .content form input,
.pro .form-pro .content form select {
  margin-bottom: 10px;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  width: 100%;
}
.pro .form-pro .content form .form-link-action {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.pro .form-pro .content form .form-link-action a {
  color: #333;
  text-decoration: none;
}
.pro .form-pro .content form .form-link-action a:hover {
  text-decoration: underline;
}
.pro .form-pro .content form .form-button-action button {
  background-color: #333333;
  padding: 20px 30px;
  color: #fff;
  border: 0;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 400;
  line-height: 15.43px;
  letter-spacing: 0.15em;
  cursor: pointer;
}
.pro .form-pro .content form .form-button-action button i {
  margin-left: 5px;
}
.pro .form-pro .content form .form-button-action button:hover {
  background-color: #0056b3;
}

.liste-prix {
  font-size: 0.8em;
}
.liste-prix li {
  margin-bottom: 10px;
}
.liste-prix .price-line {
  display: block;
}

.bloc-pour-vous {
  margin-top: 150px;
}
.bloc-pour-vous h4 {
  font-size: 10px;
  font-family: AvenirNext, sans-serif;
  line-height: 15px;
  letter-spacing: 2px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-align: center;
}
.bloc-pour-vous h5 {
  font-size: 14.5px;
  font-family: Blair, sans-serif;
  line-height: 16px;
  letter-spacing: 2.4px;
  font-weight: 300;
  margin-bottom: 40px;
  text-align: center;
}
.bloc-pour-vous .slide h6 {
  font-family: Blair, sans-serif;
  font-size: 10.88px;
  font-weight: 300;
  line-height: 15.43px;
  letter-spacing: 1.7999999523px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.bloc-pour-vous .slide div {
  text-align: left;
  max-width: 463px;
  margin: auto;
  font-family: AvenirNext, sans-serif;
  font-size: 13.95px;
  font-weight: 400;
  line-height: 22.5px;
  letter-spacing: 0.01em;
  text-align: left;
}

.col-social a {
  display: flex;
  align-items: center;
}
.col-social a i {
  font-size: 20px;
  width: 30px;
}

#cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  color: #000;
  padding: 15px 20px;
  text-align: center;
  z-index: 1000;
  border-top: 1px #000 solid;
}
#cookie-banner p {
  margin: 20px 0;
  font-size: 14px;
}
#cookie-banner button {
  cursor: pointer;
  transition: background-color 0.3s ease;
  background-color: #000;
  padding: 20px 30px;
  color: #fff;
  border: 0;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 400;
  line-height: 15.43px;
  letter-spacing: 0.15em;
  border: 1px #000 solid;
}
#cookie-banner button#decline-cookies {
  background-color: #fff;
  color: #000;
}
#cookie-banner button:hover {
  background-color: #2e2e2e;
}
#cookie-banner button:focus {
  outline: none;
}

.modal-find {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}
.modal-find .modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 300px;
  text-align: center;
  transition: transform 0.3s ease;
  transform: translateY(-50px);
}
.modal-find .close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}
.modal-find .close:hover, .modal-find .close:focus {
  color: black;
  text-decoration: none;
}
.modal-find input[type=text] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
}
.modal-find button {
  margin-top: 20px;
  background-color: #333333;
  padding: 20px 30px;
  color: #fff;
  border: 0;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 400;
  line-height: 15.43px;
  letter-spacing: 0.15em;
}

.page-contact .main {
  display: flex;
}
.page-contact .main > div {
  flex: 1;
}
.page-contact .carte-visite {
  box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.12);
  width: 260px;
  padding: 35px;
  margin: auto;
  margin-top: 40px;
  text-align: center;
  background: #fff;
  z-index: 100;
  font-size: 13px;
  top: 230px;
}
.page-contact #map {
  height: 100vh;
  width: 100%;
  z-index: 1;
}
.page-contact .bloc-contact {
  margin-top: 40px;
  display: flex;
}
.page-contact .bloc-contact > div {
  flex: 1;
}
.page-contact .bloc-form {
  box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.12);
  margin: 0 20px;
  padding: 20px;
  display: flex;
  justify-content: center;
}
.page-contact .bloc-form form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.page-contact .bloc-social .content {
  border-left: 1px solid #000;
  margin-right: 20px;
}
.page-contact .bloc-social .content h3 {
  border-bottom: 1px solid #000;
  padding: 20px;
  font-size: 2em;
  font-family: blair, sans-serif;
  font-weight: 300;
}
.page-contact .bloc-social .content .contact-informations {
  padding: 20px;
  font-size: 13px;
}
.page-contact .bloc-social .content .contact-informations span {
  font-weight: 500;
}
.page-contact .bloc-social .r-social {
  padding-top: 20px;
}
.page-contact button {
  background-color: #333333;
  padding: 20px 30px;
  color: #fff;
  border: 0;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 400;
  line-height: 15.43px;
  letter-spacing: 0.15em;
  cursor: pointer;
  padding: 10px 20px;
}
.page-contact .contact-form-btn {
  text-align: right;
}
.page-contact textarea {
  height: 8em;
}

form input[type=text],
form textarea,
form select {
  width: 100%;
  padding: 12px 20px;
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

.products-detail-bloc {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #000;
}
.products-detail-bloc .products-detail .product-variant {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px #f0f0f0 solid;
}
.products-detail-bloc .products-detail .product-variant:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.popin-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 3000;
}
.popin-container .popin-content {
  background: #fff;
  padding: 20px;
  max-width: 90%;
  max-height: 90%;
  width: 90%;
  max-width: 1400px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
  box-sizing: border-box;
  position: relative;
}
.popin-container .popin-close {
  position: fixed;
  /* Positionnée par rapport à la fenêtre */
  font-size: 24px;
  cursor: pointer;
  z-index: 1001;
  color: #000;
  background-color: #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
}
.popin-container .popin-close:hover {
  color: red;
}

.detail-luminaire h1 {
  font-family: "Blair", sans-serif;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 2.4px;
  text-align: center;
  margin-bottom: 20px;
  border-bottom: 1px solid #000;
  padding-bottom: 20px;
}
.detail-luminaire img {
  width: 100%;
  max-width: 230px;
}
.detail-luminaire .content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 600px) {
  .detail-luminaire .content {
    flex-direction: column;
    gap: 0;
  }
  .detail-luminaire .content > div {
    margin-top: 20px;
  }
}
.detail-luminaire .content h4 {
  font-family: AvenirNext, sans-serif;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  line-height: 21px;
  margin-bottom: 5px;
  font-weight: 700;
  letter-spacing: 1.9800000191px;
  text-align: left;
}
.detail-luminaire .references img {
  max-width: 100px;
}
.detail-luminaire .references table {
  width: 100%;
  border-collapse: collapse;
}
.detail-luminaire .references table img {
  display: block;
}
.detail-luminaire .references table td,
.detail-luminaire .references table th {
  vertical-align: middle;
}
.detail-luminaire .references table th {
  background-color: #000;
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  line-height: 15px;
  letter-spacing: 1.2px;
  padding: 10px;
}
.detail-luminaire .references table th,
.detail-luminaire .references table td {
  border: 1px solid #000;
  padding: 10px;
}
.detail-luminaire .infos-sup {
  border-top: 1px solid #000;
  padding-top: 20px;
  margin-top: 20px;
}
.detail-luminaire .macarons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.detail-luminaire .macarons .macaron {
  padding: 10px;
  text-align: center;
  flex: 1;
}
.detail-luminaire .macarons img {
  max-height: 50px;
  width: auto;
}
.detail-luminaire .actions {
  border-top: 1px solid #000;
  padding-top: 20px;
  margin-top: 20px;
}
.detail-luminaire .actions .content {
  margin-top: 20px;
  display: flex;
  justify-content: left;
  gap: 20px;
}
.detail-luminaire .actions .content img {
  width: 15px;
  height: auto;
}
.detail-luminaire .actions .content a {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 1.2px;
  text-decoration: underline;
  display: flex;
  align-items: center;
  gap: 5px;
}
.detail-luminaire .actions p {
  font-family: AvenirNext, sans-serif;
  font-size: 11px;
  font-weight: 500;
}

#open-admin-bar {
  position: fixed;
  bottom: 0;
  right: 0;
  background-color: #000;
  border: 1px solid #000;
  padding: 10px;
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.2px;
}

#admin-bar {
  position: fixed;
  bottom: 0;
  right: 0;
  border: 1px solid #000;
  background-color: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  padding: 10px;
  z-index: 1000;
}
#admin-bar h3 {
  font-weight: 700;
}
#admin-bar ul li {
  padding: 5px;
}
#admin-bar .close-admin-bar {
  position: absolute;
  top: -20px;
  right: 0;
}

.simpleNews {
  display: flex;
  gap: 50px;
}
.simpleNews h1 {
  font-family: "Blair", sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 21px;
  letter-spacing: 0.2px;
  font-family: "Blair", sans-serif;
  font-weight: 300;
  margin-bottom: 24px;
}
.simpleNews h2 {
  font-family: "Blair", sans-serif;
  font-size: 11px;
  font-weight: 300;
  line-height: 21px;
  letter-spacing: 0.2px;
  margin-bottom: 20px;
}
.simpleNews .content {
  padding-right: 50px;
}
@media screen and (max-width: 1024px) {
  .simpleNews .content {
    padding-right: 0;
  }
}

.page-page .content p {
  font-family: "AvenirNext", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22.5px;
  letter-spacing: 0.2px;
  margin-bottom: 10px;
}

.page-collection-v2 .titre {
  text-align: center;
  font-family: "Blair", sans-serif;
  margin-bottom: 150px;
}
@media screen and (max-width: 650px) {
  .page-collection-v2 .titre {
    margin-bottom: 50px;
  }
}
.page-collection-v2 .titre .main {
  font-size: 130px;
  font-weight: 300;
  text-align: center;
  display: block;
}
@media screen and (max-width: 650px) {
  .page-collection-v2 .titre .main {
    font-size: 65px;
  }
}
.page-collection-v2 .titre .desc {
  font-size: 30px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-align: center;
}
.page-collection-v2 .moteur {
  margin-bottom: 150px;
}

.products {
  display: flex;
  flex-wrap: wrap;
  max-width: 1430px;
  width: 100%;
  margin: 0 auto;
  justify-content: center;
  gap: 40px;
  row-gap: 60px;
}
.products .productResume {
  box-sizing: border-box;
  overflow: hidden !important;
  box-sizing: border-box;
}
.products .productResume .content {
  text-align: left;
}
.products .productResume .content .image {
  overflow: hidden;
}
.products .productResume .content img {
  transition: filter 1s ease;
}
.products .productResume .content:hover .image-name {
  opacity: 0;
}
.products .productResume .content:hover img {
  filter: blur(5px);
}
.products .productResume .content h3 {
  font-family: Blair, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: left;
  margin-top: 30px;
}
.products .productResume .content .design {
  font-family: AvenirNext, sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-align: left;
  text-transform: uppercase;
}
.products .productResume .image {
  position: relative;
}
.products .productResume .image .image-name {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "Blair", sans-serif;
  font-size: 70px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 1s ease;
}
.products .productResume .image .image-name span {
  display: block;
  font-family: "AvenirNext", sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-align: left;
  margin-top: 10px;
}
@media screen and (max-width: 650px) {
  .products .productResume .image .image-name {
    font-size: 50px;
  }
}
.products .productResume .image .overlay {
  background-color: rgba(224, 198, 175, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
}
.products .productResume .image .overlay .name {
  font-family: "Blair", sans-serif;
  font-size: 70px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
}
@media screen and (max-width: 650px) {
  .products .productResume .image .overlay .name {
    font-size: 50px;
  }
}
.products .productResume.effet-1 .image-name {
  display: none;
}
.products .productResume.effet-1 .overlay .name {
  display: none;
}
.products .productResume.effet-2 .image-name {
  opacity: 1;
}
.products .productResume.effet-2 .info {
  display: none;
}
.products .size-450x350 {
  width: calc((100% - 80px) / 3);
}
@media screen and (max-width: 650px) {
  .products .size-450x350 {
    width: 100%;
  }
}
.products .size-940x410 {
  width: 100%;
  text-align: center;
}
.products .size-940x410 .content {
  max-width: 940px;
  width: 100%;
  margin: auto;
}
.products .size-450x410 {
  width: calc((100% - 80px) / 3);
}
@media screen and (max-width: 650px) {
  .products .size-450x410 {
    width: 100%;
  }
}
.products .size-1430x820 {
  width: 1430px;
}
.products .size-695x410 {
  width: calc((100% - 40px) / 2);
}
@media screen and (max-width: 650px) {
  .products .size-695x410 {
    width: 100%;
  }
}
.products .size-940x410 .image img {
  width: 115%;
  height: auto;
}
.products img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.force-new-line {
  width: 100%;
  height: 0;
  display: block;
}

.line-1 {
  margin-top: -60px;
}
@media screen and (max-width: 650px) {
  .line-1 {
    margin-top: 0px;
  }
}

.bigPicture {
  position: relative;
  overflow: hidden;
}
.bigPicture .imageWrapper img {
  width: 100%;
  height: auto;
  display: block;
}
.bigPicture .gradientContent {
  position: relative;
  margin-top: -250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  box-sizing: border-box;
  padding-top: 150px;
}
.bigPicture .gradientContent .gradientOverlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 250px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  z-index: 1;
  pointer-events: none;
}
.bigPicture .gradientContent .mainTitle {
  position: relative;
  z-index: 2;
  color: #333;
  text-align: center;
}
.bigPicture .gradientContent .mainTitle .category {
  font-family: "avenirNext", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.4px;
  display: flex;
  justify-content: center;
  gap: 20px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
@media screen and (max-width: 480px) {
  .bigPicture .gradientContent .mainTitle .category {
    font-size: 6.5px;
  }
}
.bigPicture .gradientContent .mainTitle h1 {
  margin: 0;
  font-family: "blair", sans-serif;
  font-size: 90px;
  font-weight: 300;
}
@media screen and (max-width: 750px) {
  .bigPicture .gradientContent .mainTitle h1 {
    font-size: 60px;
  }
}
@media screen and (max-width: 480px) {
  .bigPicture .gradientContent .mainTitle h1 {
    font-size: 50px;
  }
}
@media screen and (max-width: 380px) {
  .bigPicture .gradientContent .mainTitle h1 {
    font-size: 40px;
  }
}
.bigPicture .gradientContent .mainTitle .accroche {
  margin-top: 10px;
  font-family: "blair", sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 36px;
  letter-spacing: 0.1em;
  text-align: center;
  width: 70%;
  margin: auto;
}
.bigPicture .intro {
  margin: 130px auto;
  font-family: "avenirNext", sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 40px;
  text-align: center;
  width: 100%;
  /*max-width: 1273px;*/
  max-width: 1000px;
}

.product-diaporama-container {
  position: relative;
}
.product-diaporama-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 15%;
  height: 100%;
  background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  z-index: 2;
}
.product-diaporama-container::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 15%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  z-index: 2;
}

.flickity-button.flickity-fullscreen-button {
  z-index: 1000;
}

.product-diaporama {
  height: 80vh;
}
.product-diaporama .slide {
  margin-left: 40px;
}
.product-diaporama .slide img {
  display: block;
  height: 80vh;
}

.product-diaporama-title {
  width: calc(80% - 20px);
  max-width: 1600px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  margin-top: 42px;
  margin-bottom: 160px;
  transition: all 0.3s ease;
}
.product-diaporama-title .legende {
  font-family: "AvenirNext", sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 33.6px;
  text-align: left;
  font-weight: 600;
  font-size: 28px;
  line-height: 33.6px;
  letter-spacing: 0px;
}
.product-diaporama-title .next {
  cursor: pointer;
}

h2.titre2 {
  font-family: "Blair", sans-serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 1em;
}

.collection-details {
  margin-bottom: 40px;
}
.collection-details:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000;
}
.collection-details .products-line {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  padding-bottom: 20px;
  margin-bottom: 20px;
  gap: 5px;
  transition: all 1s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.collection-details .products-line .product-variant-image {
  margin-bottom: 1em;
}
.collection-details .products-line .product {
  flex: 0 1 auto;
}
.collection-details .products-line .product img {
  transition: opacity 0.3s ease;
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
}
.collection-details .products-line .product .product-see-more {
  margin-right: 10px;
  display: flex;
  gap: 5px;
  cursor: pointer;
}
.collection-details .products-line .product .product-see-more span {
  margin-top: 25px;
  color: #B6B6B6;
  font-weight: 300;
  font-style: italic;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0px;
  display: block;
}
.collection-details .products-line .product h3,
.collection-details .products-line .product svg {
  transition: all 0.3s ease;
}
.collection-details .products-line .product svg {
  margin-top: 10px;
}
.collection-details .products-line.opened {
  margin-top: 30px;
  margin-bottom: 30px;
}
.collection-details .products-line.opened .product {
  cursor: pointer;
}
.collection-details .products-line.opened .product img {
  opacity: 0.2;
}
.collection-details .products-line.opened .product.active img {
  opacity: 1;
}
.collection-details .products-line.opened .product.active h3 {
  font-size: 1.3em;
  font-weight: 700;
}
@media screen and (max-width: 750px) {
  .collection-details .products-line.opened .product.active h3 {
    font-size: 0.9em;
  }
}
.collection-details .products-line.opened .product.active svg {
  transform: rotate(-180deg);
}
.collection-details .products-line h3 {
  font-family: "Blair", sans-serif;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 2.0999999046px;
  text-align: left;
}
@media screen and (max-width: 750px) {
  .collection-details .products-line h3 {
    font-size: 0.85em;
  }
}

.container-2 {
  width: calc(100% - 40px);
  max-width: 1273px;
  margin: 0 auto;
}

.product-fiches {
  position: relative;
  overflow: hidden;
  opacity: 0;
  /* Initialement invisible */
}
.product-fiches .product-fiche {
  background-color: #fff;
  opacity: 0;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.product-fiches .product-fiche.active {
  background-color: #fff;
  z-index: 2;
}
.product-fiches .product-fiche .product-fiche-content {
  display: flex;
}
.product-fiches .product-fiche .product-fiche-content > div {
  position: relative;
}
.product-fiches .product-fiche .product-fiche-content > div:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0px;
  height: 100%;
  width: 1px;
  background-color: rgb(169, 169, 169);
}
.product-fiches .product-fiche .product-fiche-content > div:nth-child(1) {
  flex: 390;
}
.product-fiches .product-fiche .product-fiche-content > div:nth-child(1) .content-col {
  margin-right: 90px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.product-fiches .product-fiche .product-fiche-content > div:nth-child(1) .content-col img {
  max-width: 240px;
  width: 100%;
  height: auto;
}
.product-fiches .product-fiche .product-fiche-content > div:nth-child(1) .content-col > div:last-child {
  margin-top: auto;
}
.product-fiches .product-fiche .product-fiche-content > div:nth-child(2) {
  flex: 650;
}
.product-fiches .product-fiche .product-fiche-content > div:nth-child(2) .content-col {
  margin-right: 90px;
  margin-left: 90px;
}
.product-fiches .product-fiche .product-fiche-content > div:nth-child(3) {
  flex: 233;
}
.product-fiches .product-fiche .product-fiche-content > div:nth-child(3) .content-col {
  margin-left: 45px;
}
@media screen and (max-width: 750px) {
  .product-fiches .product-fiche .product-fiche-content > div:nth-child(1) {
    flex: 1;
  }
  .product-fiches .product-fiche .product-fiche-content > div:nth-child(1) .content-col {
    margin-right: 20px;
  }
  .product-fiches .product-fiche .product-fiche-content > div:nth-child(2) {
    flex: 2;
  }
  .product-fiches .product-fiche .product-fiche-content > div:nth-child(2) .content-col {
    margin-right: 20px;
    margin-left: 20px;
  }
  .product-fiches .product-fiche .product-fiche-content > div:nth-child(3) {
    flex: 1;
  }
  .product-fiches .product-fiche .product-fiche-content > div:nth-child(3) .content-col {
    margin-left: 20px;
  }
}
.product-fiches .product-fiche .product-fiche-content .technic-text {
  font-family: "AvenirNext", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-align: left;
  margin-bottom: 3em;
}
.product-fiches .product-fiche .product-fiche-content h4 {
  font-family: "blair", sans-serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 2.4000000954px;
  text-align: left;
  margin-bottom: 30px;
}
.product-fiches .product-fiche .product-fiche-content .product-shading {
  width: 66.6666666667%;
}
.product-fiches .product-fiche .product-fiche-content .product-shading .choices .finitions {
  margin-top: 80px;
}
.product-fiches .product-fiche .product-fiche-content .product-shading .choices .finitions:first-child {
  margin-top: 0;
}
.product-fiches .product-fiche .product-fiche-content .product-shading .choices .finitions h5 {
  font-family: "AvenirNext", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.9800000191px;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 25px;
}
.product-fiches .product-fiche .product-fiche-content .product-shading .choices .finitions .images-finitions {
  display: flex;
  gap: 10px;
}
.product-fiches .product-fiche .product-fiche-content .product-shading .choices .finitions .images-finitions > div {
  display: flex;
  flex-direction: column;
}
.product-fiches .product-fiche .product-fiche-content .product-shading .choices .finitions .images-finitions > div img {
  width: 100%;
  height: auto;
  max-width: 200px;
}
.product-fiches .product-fiche .product-fiche-content .product-shading .choices .finitions .images-finitions > div .finition-name {
  margin-top: 1em;
  font-family: "AvenirNext", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.product-fiches .product-fiche .product-fiche-content .download-part {
  font-family: "AvenirNext", sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.product-fiches .product-fiche .product-fiche-content .download-part .content-col {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.product-fiches .product-fiche .product-fiche-content .download-part .content-col .btm {
  margin-top: auto;
}
.product-fiches .product-fiche .product-fiche-content .download-part .actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.product-fiches .product-fiche .product-fiche-content .download-part .actions a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.product-fiches .product-fiche .product-fiche-content .download-part .actions a span {
  text-decoration: underline;
}

.only-phone {
  display: none;
}
@media screen and (max-width: 650px) {
  .only-phone {
    display: block;
  }
}

.hide-phone {
  display: inherit;
}
@media screen and (max-width: 650px) {
  .hide-phone {
    display: none;
  }
}

.product-v2 .designer {
  display: flex;
  margin-top: 100px;
  gap: 120px;
}
@media screen and (max-width: 1024px) {
  .product-v2 .designer {
    flex-direction: column-reverse;
    gap: 50px;
    align-items: center;
  }
}
@media screen and (max-width: 650px) {
  .product-v2 .designer {
    flex-direction: column-reverse;
    gap: 0;
  }
  .product-v2 .designer .texte h3 {
    font-size: 18px;
  }
  .product-v2 .designer .texte h2 {
    font-size: 22px;
  }
  .product-v2 .designer .illustration {
    margin-top: 40px;
  }
  .product-v2 .designer .illustration img {
    width: 100%;
    height: auto;
  }
}
.product-v2 .designer h3 {
  font-family: "Blair", sans-serif;
  font-weight: 300;
  letter-spacing: 2.0999999046px;
  text-align: left;
  margin-bottom: 25px;
}
.product-v2 .designer h2 {
  font-family: "Blair", sans-serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: left;
  margin-bottom: 20px;
  line-height: 1em;
}
.product-v2 .designer .texte {
  font-family: "AvenirNext", sans-serif;
  font-size: 13.67px;
  font-weight: 400;
  line-height: 25.67px;
  text-align: left;
  padding-right: 50px;
}
@media screen and (max-width: 1024px) {
  .product-v2 .designer .texte {
    padding-right: 0;
  }
}

.mt-160px {
  margin-top: 160px !important;
}

.center {
  text-align: center;
}

.collection-detail-phone {
  width: calc(100% - 40px);
  margin: auto;
}
.collection-detail-phone h4 {
  display: flex;
  justify-content: space-between;
  font-family: "Blair", sans-serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 2.4000000954px;
  margin-top: 68px;
  margin-bottom: 32px;
}
.collection-detail-phone h5 {
  font-family: "AvenirNext", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.9800000191px;
  margin-bottom: 20px;
}
.collection-detail-phone .slide {
  width: 60%;
  padding-right: 10vw;
}
@media screen and (max-width: 550px) {
  .collection-detail-phone .slide {
    width: 90%;
  }
}
.collection-detail-phone .slide .infos {
  font-family: "AvenirNext", sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 14.14px;
  letter-spacing: 0.03em;
  text-align: left;
  margin-bottom: 50px;
}
.collection-detail-phone .slide .infos .product-variant-name {
  font-weight: 700;
}
.collection-detail-phone .finitions {
  margin-bottom: 50px;
}
.collection-detail-phone .finitions .onglets {
  font-family: "AvenirNext", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}
.collection-detail-phone .finitions .onglets ul {
  display: flex;
  justify-content: space-between;
}
.collection-detail-phone .finitions .onglets ul li {
  opacity: 0.3;
}
.collection-detail-phone .finitions .onglets ul li.active {
  opacity: 1;
}
.collection-detail-phone .finitions .images-finitions > div {
  display: none;
}
.collection-detail-phone .finitions .images-finitions > div.active {
  display: initial;
}
.collection-detail-phone .finitions .images-finitions > div img {
  width: 100%;
  max-width: 200px;
  margin: auto;
  display: block;
}
.collection-detail-phone .download-part .content-col .actions {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.collection-detail-phone .download-part .content-col .actions > div {
  flex: 1;
}

.reference-objet {
  display: flex;
  gap: 50px;
  align-items: center;
}
.reference-objet > div:first-child {
  flex: 1;
}
.reference-objet > div:last-child {
  flex: 5;
}
.reference-objet img {
  width: 100%;
  height: auto;
}
.reference-objet img.productImg {
  mix-blend-mode: multiply;
  /* Mélange le bleu avec ce qui est en dessous */
}
.reference-objet .macarons {
  margin-top: 20px;
}
.reference-objet .macarons > div {
  display: flex;
  gap: 5px;
  align-items: center;
}
.reference-objet .macarons > div > div {
  flex: 1;
  margin-bottom: 1em;
  text-align: center;
}
.reference-objet .macarons .macaron {
  display: flex;
  flex-direction: column;
}
.reference-objet .macarons .macaron img {
  height: 35px;
  width: auto;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.reference-objet .col-objet {
  background-color: rgb(243, 243, 243);
  padding: 20px;
  min-width: 313px;
}
.reference-objet .col-objet h1 {
  font-family: "Blair", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 2.0999999046px;
  text-align: left;
  margin-bottom: 25px;
  padding-bottom: 30px;
  border-bottom: 1px solid #000;
}
.reference-objet .col-objet .technique {
  margin-bottom: 50px;
  font-size: 11px;
}
.reference-objet .list-refs .content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 3 colonnes de largeur égale */
  gap: 30px;
  /* Espace entre les colonnes */
  padding: 20px;
  font-family: "AvenirNext", sans-serif;
  font-size: 11px;
  font-weight: 300;
  line-height: 14.14px;
  letter-spacing: 0.03em;
}
.reference-objet .list-refs .content .one-ref {
  display: flex;
  gap: 20px;
  align-items: center;
}
.reference-objet .list-refs .content .one-ref img {
  min-width: 100px;
  height: auto;
}
.reference-objet .list-refs .content .one-ref > div {
  flex: 1;
}
.reference-objet .list-refs .content .one-ref .label {
  margin-bottom: 1em;
}
.reference-objet .list-refs .content .one-ref .label strong {
  font-weight: 300;
  font-family: "blair", sans-serif;
}
.reference-objet .list-refs .content .one-ref .price {
  margin-top: 0.5em;
}
.reference-objet .list-refs .content .one-ref .ref {
  margin-top: 1em;
  font-family: "blair", sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  border: 1px solid #000;
  padding: 5px;
  text-wrap: nowrap;
}

.mt-40 {
  margin-top: 40px;
}

.image-panoramique {
  width: 100%;
  overflow: hidden;
}
.image-panoramique img {
  width: auto;
  height: 100%;
  max-height: 80vh;
  display: block;
}

.reset-template {
  border: 2px #aaa solid;
  background-color: #888;
  color: #fff;
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 20px;
  z-index: 10000;
  box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.12);
}

.fw400 {
  font-weight: 400;
}/*# sourceMappingURL=main.css.map */