@charset "UTF-8";
/***
    The new CSS reset - version 1.11.3 (last updated 25.08.2024)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" element is excluded, otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Fix mobile Safari increase font-size on landscape mode */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu, summary {
  list-style: none;
}

/* Firefox: solve issue where nested ordered lists continue numbering from parent (https://bugzilla.mozilla.org/show_bug.cgi?id=1881517) */
ol {
  counter-reset: revert;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
  box-sizing: border-box;
}

/* reset default text opacity of input placeholder */
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
 display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
 - fix for the content editable attribute will work properly.
 - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
  box-sizing: border-box;
}

/* Remove details summary webkit styles */
::-webkit-details-marker {
  display: none;
}

@font-face {
  font-family: "Diptyque";
  src: url("../fonts/DiptyqueSaintGermain-Regular.5558384.woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Diptyque-bold";
  src: url("../fonts/DiptyqueSaintGermain-Bold.dd920d3.woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Apercu";
  src: url("../fonts/ApercuPro-Regular.2a38115.woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Apercu-light";
  src: url("../fonts/ApercuPro-Light.aed0893.woff2");
  font-weight: normal;
  font-style: normal;
}
html {
  font-size: 62.5%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  background: white;
  color: black;
  font-family: "Diptyque", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  overflow-x: hidden;
}
@media screen and (min-width: 1200px) {
  body {
    font-size: 1.5rem;
  }
}

h1, h2, h3 {
  font-weight: 600;
}

h1 {
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 3rem;
}

a {
  color: black;
  transition: all 0.4s linear;
}
a:hover {
  color: black;
  text-decoration: none;
}

ul {
  padding: 0;
}
ul li {
  list-style: none;
}

strong {
  font-weight: 600;
}

em {
  font-style: italic !important;
}

img {
  max-width: 100%;
}

.grid {
  display: grid;
}

header {
  font-family: "Apercu", sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
header .lang {
  display: flex;
}
header .lang li {
  font-size: 1.4rem;
}
header .lang li::after {
  content: "|";
  margin: 0 0.5rem;
}
header .lang li:last-child::after {
  display: none;
}
header .lang li a {
  color: #aaaaaa;
}
header .lang li a:hover {
  color: black;
}
header .lang li a.active {
  color: black;
  text-decoration: underline;
}
header .search input {
  background: url("../img/loupe.png") no-repeat 98%;
  border: 1px solid #707070;
  border-radius: 1rem;
  font-size: 1.7rem;
  height: 4rem;
  width: 26rem;
  padding-left: 1rem;
}
header .search input::placeholder {
  color: lightgrey;
}

.home {
  height: 100vh;
  width: 100vw;
}
.home .wrapper {
  padding: 3rem;
}
.home main {
  padding: 5rem 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .home main {
    padding: 10rem 18rem;
  }
}
.home main .logo {
  margin-bottom: 5rem;
  width: 11rem;
}
.home main .grid {
  gap: 5rem;
  max-width: 60rem;
  margin: 0 auto;
}
@media screen and (min-width: 992px) {
  .home main .grid {
    grid-template-columns: 1fr 1fr;
    gap: 10rem;
  }
}
.home main .bloc {
  border: 1px solid #eee;
  box-shadow: 1rem 1rem 1rem rgba(0, 0, 0, 0.1);
  height: 25rem;
  width: 25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  padding: 3rem;
  position: relative;
}
.home main .bloc:before, .home main .bloc:after {
  content: "";
  background: black;
  width: 3rem;
  height: 6px;
  position: absolute;
  transform: rotate(-8deg);
}
.home main .bloc:before {
  top: -3px;
}
.home main .bloc:after {
  bottom: -5px;
}
.home main .bloc h2 {
  font-size: 2.4rem;
  margin-bottom: 5rem;
  position: relative;
}
.home main .bloc h2:after {
  content: "";
  background: black;
  height: 1px;
  width: 10rem;
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
}
.home main .bloc img {
  width: 10rem;
}

.accueil {
  width: 100vw;
}
.accueil .wrapper {
  padding: 3rem 2rem;
}
@media screen and (min-width: 768px) {
  .accueil .wrapper {
    padding: 3rem;
  }
}
.accueil .tabs {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
}
.accueil .tabs .logo {
  margin: 0 2rem 0.5rem 0;
  width: 4rem;
}
@media screen and (min-width: 768px) {
  .accueil .tabs .logo {
    margin-right: 4rem;
  }
}
.accueil .tabs .tab-link {
  border: 1px solid black;
  border-bottom: none;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  cursor: pointer;
  font-size: 1.4rem;
  font-family: "Diptyque-bold", sans-serif;
  padding: 1rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .accueil .tabs .tab-link {
    font-size: 1.6rem;
    height: 4rem;
    padding: 1rem 2rem;
  }
}
@media screen and (min-width: 992px) {
  .accueil .tabs .tab-link {
    font-size: 1.8rem;
    padding: 1rem 4rem;
  }
}
.accueil .tabs .tab-link:hover {
  background: #ebebeb;
}
.accueil .tabs .tab-link.active {
  background: black;
  color: white;
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  .accueil .tabs .tab-link.active {
    height: 5rem;
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 992px) {
  .accueil .tabs .tab-link.active {
    font-size: 2.6rem;
  }
}
.accueil main .collections {
  background: black;
  color: white;
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  width: 100vw;
  margin-left: -2rem;
  padding-left: 3rem;
}
@media screen and (min-width: 768px) {
  .accueil main .collections {
    align-items: center;
    height: 5rem;
    margin-left: -3rem;
  }
}
.accueil main .collections p {
  font-family: "Diptyque-bold", sans-serif;
  font-size: 1.4rem;
}
@media screen and (min-width: 992px) {
  .accueil main .collections p {
    font-size: 1.8rem;
  }
}
.accueil main .collections p::after {
  content: "›";
  font-size: 2rem;
  margin-left: 1rem;
  margin-right: 0.5rem;
}
@media screen and (min-width: 768px) {
  .accueil main .collections ul {
    display: flex;
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 992px) {
  .accueil main .collections ul {
    font-size: 1.4rem;
  }
}
.accueil main .collections ul li a {
  display: block;
  padding: 0.5rem 0;
}
@media screen and (min-width: 768px) {
  .accueil main .collections ul li a {
    display: inline;
    padding: 0;
  }
}
@media screen and (min-width: 768px) {
  .accueil main .collections ul li::after {
    content: "|";
    margin: 0 1rem;
  }
  .accueil main .collections ul li:last-child::after {
    display: none;
  }
}
.accueil main .collections a {
  color: white;
}
.accueil main .collections a:hover {
  text-decoration: underline;
  text-underline-offset: 0.5rem;
}
.accueil main .collections a.active {
  font-family: "Diptyque-bold", sans-serif;
  text-decoration: underline;
  text-underline-offset: 0.5rem;
}
.accueil main .tab-content {
  animation: fadeEffect 1s;
}
@keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.accueil main .content {
  padding: 6rem 0;
  text-align: center;
}
.accueil main h2 {
  display: inline-block;
  font-family: "Apercu", sans-serif;
  font-size: 5vw;
  margin-bottom: 4rem;
  position: relative;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (min-width: 992px) {
  .accueil main h2 {
    font-size: 4vw;
    margin-bottom: 6rem;
  }
}
.accueil main h2:before, .accueil main h2:after {
  content: "";
  background: black;
  width: 5rem;
  height: 3px;
  position: absolute;
  top: 40%;
}
@media screen and (min-width: 992px) {
  .accueil main h2:before, .accueil main h2:after {
    top: 45%;
    width: 8rem;
  }
}
.accueil main h2:before {
  left: -6rem;
}
@media screen and (min-width: 992px) {
  .accueil main h2:before {
    left: -10rem;
  }
}
.accueil main h2:after {
  right: -6rem;
}
@media screen and (min-width: 992px) {
  .accueil main h2:after {
    right: -10rem;
  }
}
.accueil main .grid-senteurs {
  display: grid;
  grid-template-columns: repeat(3, minmax(6rem, 19rem));
  gap: 1rem 1.5rem;
  justify-content: center;
  margin-bottom: 10rem;
}
@media screen and (min-width: 768px) {
  .accueil main .grid-senteurs {
    grid-template-columns: repeat(6, minmax(6rem, 19rem));
    margin-bottom: 20rem;
  }
}

.fiche {
  padding: 3rem 1rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .fiche {
    padding: 3rem 2rem;
  }
}
@media screen and (min-width: 992px) {
  .fiche {
    padding: 3rem;
  }
}
.fiche .grid {
  gap: 3rem;
  margin-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .fiche .grid {
    gap: 5rem;
  }
}
@media screen and (min-width: 992px) {
  .fiche .grid {
    grid-template-columns: 50% 1fr;
    gap: 15rem;
  }
}
.fiche .grid.col3 {
  grid-template-columns: 1fr 1fr;
}
.fiche .grid.col3 .txt {
  grid-column-start: 1;
  grid-column-end: span 2;
}
@media screen and (min-width: 992px) {
  .fiche .grid.col3 {
    grid-template-columns: 50% 1fr 15rem;
  }
  .fiche .grid.col3 .txt {
    grid-column-start: 1;
    grid-column-end: 1;
  }
}
.fiche .grid.bottom {
  border-top: 1px solid black;
  padding-top: 4rem;
}
.fiche .familles {
  background: #e2950a;
  color: white;
  font-size: 1.4rem;
  padding: 1rem;
  order: 1;
}
@media screen and (min-width: 768px) {
  .fiche .familles {
    font-size: 1.8rem;
    order: 2;
    position: absolute;
    top: 3rem;
    right: 3rem;
  }
}
.fiche .familles a {
  color: white;
  padding: 0 1rem;
}
.fiche .familles a:hover {
  text-decoration: underline;
  text-underline-offset: 0.5rem;
}
.fiche .familles a:first-child {
  font-family: "Diptyque-bold", sans-serif;
  text-transform: uppercase;
}
.fiche .titre {
  order: 2;
}
@media screen and (min-width: 768px) {
  .fiche .titre {
    order: 1;
  }
}
.fiche .titre h1 {
  display: flex;
  align-items: flex-start;
  font-size: 4rem;
  position: relative;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .fiche .titre h1 {
    font-size: 4vw;
  }
}
.fiche .titre h1 .pictos {
  display: block;
  margin: 0 0 1rem 2rem;
  position: relative;
  height: 5rem;
  width: 10rem;
}
.fiche .titre h1 .pictos img {
  position: absolute;
  right: 0;
  width: 5rem;
}
.fiche .titre h1 .pictos img#sound2 {
  visibility: hidden;
}
.fiche .titre h1::after {
  content: "";
  background: black;
  height: 1rem;
  width: 3rem;
  position: absolute;
  left: 0;
  bottom: -2rem;
}
.fiche .titre p {
  font-size: 1.8rem;
  font-style: italic;
}
.fiche .txt {
  font-size: 2rem;
  font-family: "Apercu", sans-serif;
}
.fiche .txt em {
  font-style: italic;
}
.fiche .olfactif {
  font-size: 2rem;
  margin-right: -10rem;
  font-family: "Apercu", sans-serif;
}
.fiche .olfactif h3 {
  font-family: "Apercu", sans-serif;
  margin-bottom: 0.5rem;
}
.fiche .olfactif li {
  font-family: "Apercu", sans-serif;
  list-style: disc;
  list-style-position: inside;
}
.fiche .visuels {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.fiche .visuels img {
  max-width: 15rem;
}
.fiche .visuels p {
  font-size: 1.8rem;
  font-style: italic;
}
.fiche .couleurs {
  display: flex;
  align-items: flex-end;
  gap: 2rem;
}
.fiche .couleurs .papier {
  display: flex;
  align-items: flex-start;
  position: relative;
  width: 18rem;
  aspect-ratio: calc(var(--paper-w, 10))/calc(var(--paper-h, 8));
}
.fiche .couleurs .papier span {
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  height: 100%;
  width: 30%;
}
.fiche .couleurs .papier span:nth-child(2) {
  opacity: 0.85;
}
.fiche .couleurs .papier span:nth-child(2), .fiche .couleurs .papier span:nth-child(4) {
  width: 21%;
}
.fiche .couleurs .papier span:nth-child(3) {
  width: 12%;
}
.fiche .couleurs .papier img {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 7rem;
  height: auto;
}
.fiche .couleurs .papier.coul4 span {
  width: 22%;
}
.fiche .couleurs .papier.coul4 span:nth-child(2), .fiche .couleurs .papier.coul4 span:nth-child(5) {
  width: 16%;
}
.fiche .couleurs .papier.coul4 span:nth-child(3), .fiche .couleurs .papier.coul4 span:nth-child(4) {
  width: 10%;
}
.fiche .couleurs li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.fiche .couleurs li:last-child {
  margin-bottom: 0;
}
.fiche .couleurs li span {
  display: inline-block;
  height: 2.4rem;
  width: 2.4rem;
  margin-right: 1rem;
}
.fiche #video_sound {
  background: white;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.2);
  padding: 2rem;
  position: absolute;
  top: 23rem;
  left: 1rem;
  width: calc(100vw - 6rem);
  visibility: hidden;
}
@media screen and (min-width: 768px) {
  .fiche #video_sound {
    top: 15rem;
    left: 2rem;
    width: calc(100vw - 10rem);
  }
}
@media screen and (min-width: 992px) {
  .fiche #video_sound {
    top: 1rem;
    left: auto;
    right: -2rem;
    width: 45vw;
  }
}

/*# sourceMappingURL=diptyque.css.map */
