/** Shopify CDN: Minification failed

Line 12:47 Expected ")" to end URL token
Line 488:50 Expected ")" to end URL token
Line 495:47 Expected ")" to end URL token
Line 502:50 Expected ")" to end URL token

**/
/* production custom css*/

@font-face {
  font-family: "Helvetica_Neue_45";src: url({{ "HelveticaNeue45.woff2" | asset_url }}) format("woff2");
  font-weight: normal;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: antialiased;
}

/* icon */
.divider-icon {
  display: block;
  width: 30px; /* Set the width for the icon */
  height: 30px; /* Set the height for the icon */
  margin: 0px auto 0; /* 20px space from the content above, and auto to center it horizontally */
  background-image: url('/cdn/shop/files/Monogram_Black.svg?v=1725724057');
  background-repeat: no-repeat;
  background-size: contain; /* Ensures the SVG scales properly within the div */
}

/* Header dropdown menus */
/* hide on desktop */
@media (min-width: 750px) {
  .header__dropdown{
      display: none;
  }
}

/* display changes on mobile menu */
@media (max-width:749px){
  .popout__toggle{
    font-size:13px !important;
  }
  .popout-list__option {
    font-size:13px !important;
  }
  .drawer__inner {
    width:66%
  }
  .drawer__content {
    flex-direction: column;
  }
  .drawer__menu {
    flex-direction: column;
    flex-basis: 85%;
  }
  .drawer__bottom.mobile {
    margin-top: 0px;
  }
  .sliderow {
    min-height:30px;
  }
  .sliderow__title {
    min-height:30px;
  }
}

/* Footer menus */
.footer__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center; /* This will ensure text inside is centered */
}
.footer__block__title {
  font-size: var(--font-2);
  margin-bottom: 5px;
}
.footer__quicklinks li {
  margin-bottom: 2px;
  font-size: var(--font-1);
}

.socials .icon {
  stroke: black;
}
.footer__blocks {
  flex-flow: row wrap;
}

@media (max-width: 749px) {
  /* Hide the 4th footer block */
  .footer__blocks .footer__block--menu:nth-child(3) {
    display: none;
  }

  /* Set the 2nd and 3rd footer blocks to be 50% width */
  .footer__blocks .footer__block--menu:nth-child(1),
  .footer__blocks .footer__block--menu:nth-child(2) {
    flex: 0 0 50%;
    box-sizing: border-box; /* Ensure padding and margins don't break the layout */
  }
}

/* Product short description */
.product__block.product__text {
  font-style:italic;
}

/* Color / size selectors*/
.product__block {
  padding-top: 0px;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.select__fieldset{
  padding-bottom: 10px !important;
}

.product__block.product__text{
  padding-top: 10px;
}

.product__block.product__block--lines.product__block--classic.product__form__holder {
  padding-bottom: 0px;
  margin-bottom: 0px;
}

@media (max-width: 749px) {
  .product__selectors{
    height:45px;
  }
}


/* buttons */
quick-add-product{
  width: 100%;
  display: flex;
  justify-content: center;
  
}

.cart__checkout {
    color: black !important;
}
.cart__checkout:hover {
    color: white !important;
}
.btn__plus {
  background: rgba(255,255,255,1);
}
.btn.btn--primary.btn--solid{
  background: rgba(255,255,255,1);
}
.btn__text {
  font-weight: 600;
  font-size:13px;
  color: #000000;
}

@media (min-width: 750px) {
  .btn[data-add-to-cart]:hover {
      background-color: black;
      color: white;
  }
  
  .btn[data-add-to-cart]:hover .btn__text,
  .btn[data-add-to-cart]:hover .btn__added,
  .btn[data-add-to-cart]:hover .btn__loader svg {
    background: black;
      color: white;
      fill: white;
  }
}

.product__submit__buttons .btn__text[data-add-to-cart-text] {
  background: rgba(255,255,255,1);
  color: #000000;
}

/*
.product__submit__buttons .btn__text:hover{
  background: rgba(255,255,255,1);
  color: #000000;
}
.product__submit__buttons:hover .btn__text{
  background: rgba(255,255,255,1);
  color: #000000;
}
*/


@media (max-width: 749px) {
  .quick-add__button {
    display: flex;
    background: none;
    justify-content: flex-end; /* This will move the button to the right */
  }
  .btn__plus {
    background: rgba(255,255,255,1);
  }
  .btn.btn--primary.btn--solid{
    background: rgba(255,255,255,1);
  }
}

.quick-add__holder {
  width:95%;
  background: rgba(255,255,255,1);
  margin-left: 13px;
  margin-right: 13px;
  box-sizing: border-box;
  justify-content: center;
  display: flex;
  margin-bottom: 13px;
}

.overlay-size{
  background: rgba(255,255,255,1);
  bottom: 43px;
  margin-left: 13px;
  margin-right: 13px;
  box-sizing: border-box;
}



/** Famille police custom */
:root {
  /*--FONT-STACK-HEADING: 'Helvetica_Neue_45', Arial, sans-serif;
  --FONT-STACK-SUBHEADING: 'Helvetica_Neue_45', Arial, sans-serif;
  --FONT-STACK-BODY: 'Helvetica_Neue_45', Arial, sans-serif;
  --BTN-FONT-STACK: 'Helvetica_Neue_45', Arial, sans-serif; */
  --FONT-WEIGHT-HEADING-BOLD: 700;
  --COLOR-TEXT: rgb(78,78,78);
  --COLOR-SALE: rgb(131,131,131); /* Color for price when exists "old price" */
  --COLOR-BORDER : rgb(255,255,255); /*Remove product grid border */
  --TEXT: rgb(78,78,78);
  --BTN-LETTER-SPACING: 3.6px;
}

/* icon color in variant selection box*/
.icon-nav-arrow-down {
  stroke : rgb(0,0,0);
}

/* border password reset */
#customer_password_confirmation, #customer_password, #customer_email  {
    border: 1px solid grey;
}
 

/* Couleur du texte "placeholder" a l'intérieur des champs email, mot de passe etc... */
input::placeholder, textarea::placeholder {
  color: #909090;
}

input:focus::placeholder, textarea:focus::placeholder {
  color: #b0b0b0;
}

/* Retirer bold des bouton "taille" */
.radio__buttons label {
  font-weight: 400 !important;
  font-family: var(--FONT-STACK-BODY) !important;
}

/* Retirer bold des titres de Tabs */
.tab-link {
  font-weight: 400 !important;
}

/* le contenu à l'intérieur des image banner peut remplir 70% de la largeur au lieu de 50% */
@media only screen and (min-width: 990px) {
  .index-hero .hero__content {
    max-width: 70%;
  }
}

/* style for the size and color variant selector */
  .product__selectors {
    gap: 10px;
  }
  
@media only screen and (max-width: 749px) {
  /* on cache le overlay couleur/taille variants sur la grille produit */
  .overlay-size, .radio__legend{
    display: none;
  }

  /* Quick add button aligned to the right */
  .quick-add__holder {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .quick-add__button, btn__loader {
    --btn-size: 27px;
    margin-left: auto; /* Push the button to the right */
  }

  /* le titre du produit et le prix sont mis sur la même ligne sur mobile sur product-price-title.liquid */
  .radio__buttons .radio__button input[type="radio"] {
    width: 27px;
    height: 27px;
    padding: 2px;
  }
  .radio__button {
    display: inline-block;
    width: 27px;
    height: 27px;
    margin:2px;
    margin-bottom:4px;
  }
  .radio__button label {
    display: inline-block;
    width: 27px;
    height: 27px;
    line-height: 27px; /* Optional: to vertically center text */
    text-align: center;
  }
  
  .product_title{
    margin-top:0px;
  }
  .product__title__wrapper {
    padding-right: 0px;
    display: flex;
    justify-content: space-between;
  }
  .product__price {
    padding-top: 0px;
    padding-bottom: 0px;
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .product__selectors{
    display: flex;
    gap: 5px;
  }
  .selector-wrapper {
    flex: 1; /* Allow both elements to grow and shrink equally */
    min-width: 0; /* Ensure the first element can shrink */
  }


  .select__fieldset {
    width: 100%;
  }
  
  .product__price{
    font-size:18px;
  }
}
  .radio__legend__label .radio__legend__value{
    padding-top : 0px !important;
  }



/* Taille des polices sur mobile, tablette, PC */
/* Taille des polices sur mobile */
:root {
  --font-15: 33px;
  --font-14: 31px;
  --font-13: 29px;
  --font-12: 27px;
  --font-11: 25px;
  --font-10: 23px;
  --font-9: 21px;
  --font-8: 19px;
  --font-7: 17px;
  --font-6: 15px;
  --font-5: 14px;
  --font-4: 12px;
  --font-3: 11px;
  --font-2: 10px;
  --font-1: 9px;
}
/* Taille des polices sur tablette */
@media only screen and (min-width: 750px) and (max-width: 989px) {
  :root {
    --font-15: 44px;
    --font-14: 42px;
    --font-13: 40px;
    --font-12: 38px;
    --font-11: 35px;
    --font-10: 33px;
    --font-9: 31px;
    --font-8: 28px;
    --font-7: 24px;
    --font-6: 20px;
    --font-5: 17px;
    --font-4: 15px;
    --font-3: 13px;
    --font-2: 11px;
    --font-1: 10px;
  }
}
/* Taille des polices sur PC */
@media only screen and (min-width: 990px) {
  :root {
    --font-15: 55px;
    --font-14: 50px;
    --font-13: 46px;
    --font-12: 42px;
    --font-11: 38px;
    --font-10: 35px;
    --font-9: 32px;
    --font-8: 29px;
    --font-7: 24px;
    --font-6: 20px;
    --font-5: 18px;
    --font-4: 16px;
    --font-3: 14px;
    --font-2: 12px;
    --font-1: 11px;
  }
}

/* Taille de police page Search et couleur ligne separation */
.search__caption {
  font-size: var(--font-4);
}
.search-outer {
  margin-bottom: 10px;
}
.divider {
  border-color: rgb(0,0,0);
}


/* set font weight for titles */
.heading-size-14, .heading-size-15{
  font-weight: 700;
}


/* set title size for collections */
.hero__title.h4 {
  font-weight: 400;
  color: #000000;
  font-size: var(--font-13);
}



/* add margin above button: */
@media only screen and (min-width: 990px) {
  .hero__button {
    margin-top: 50px;
  }
}

/* align language selection menu to the right */
.popout-list__item {
    text-align: right;
}

.popout-list__option {
    text-align: right;
}

/* align social icons to the center of the page*/
.footer__block--social {
    display: flex; /* This will make the container a flexbox */
    justify-content: center; /* This centers the flex items (the ul) on the main axis (horizontally) */
}

/* Reduce footer menu size, center elements on mobile */
.supporting-menu__item, .supporting-menu__item--copyright, .supporting-menu__copyright {
  font-size: var(--font-1) !important;
  display: flex; /* Make the container a flexbox */
  justify-content: center; /* Center the content horizontally */
}
.supporting-menu__copyright li {
  height: 15px; /* Sets the height of each list item */
  line-height: 15px;
  padding-top: 2px; /* Sets the top padding to 2px */
  padding-bottom: 2px; /* Sets the bottom padding to 2px */
}


@font-face {
  font-family: "Helvetica_Neue_45_It";src: url({{ "HelveticaNeue45It.woff2" | asset_url }}) format("woff2");
  font-weight: normal;
  font-style: italic;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: antialiased;
}
@font-face {
  font-family: "Helvetica_Neue_55";src: url({{ "HelveticaNeue55.woff2" | asset_url }}) format("woff2");
  font-weight: bold;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: antialiased;
}
@font-face {
  font-family: "Helvetica_Neue_55_Bd";src: url({{ "HelveticaNeueBd55.woff2" | asset_url }}) format("woff2");
  font-weight: bolder;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: antialiased;
}

/* center elements in <body> */
body {
    display: flex;             /* Enable flexbox layout */
    justify-content: center;   /* Center content horizontally */
    flex-direction: column;    /* Stack child elements vertically */
    align-items: center;       /* Center content vertically */
    min-height: 100vh;         /* Ensure the body takes at least the full height of the viewport */
    margin: 0;                 /* Remove default margin */
}
 

/* set max width of desktop version: */
@media only screen and (min-width: 990px) {
  .container[data-site-container] {
      max-width: 1400px;

  }
  div.header__desktop {
      max-width: 1400px;
  }
  div.header__wrapper {
      max-width: 1400px;
  }
}


/* force parallax to display top of image first
[data-parallax-wrapper] .image__hero__pane {
  align-items: start !important; 
}  */

/* force parallax to be stronger on desktop */
@media only screen and (min-width: 990px) {
  [data-parallax-wrapper] .image__hero__scale {
    min-height: 100%;
    max-height: 200%;
  }
}

@media only screen and (max-width: 990px) {
  [data-parallax-wrapper] .image__hero__scale {
    min-height: 100%;
    max-height: 110%;
  }
}

/* force smaller font-size for secondary on mobile */
@media only screen and (max-width: 749px) {
  .product__block {
    margin-bottom: 5px;
    padding-top:0px;
    padding-bottom:0px;
  }
  
  .mobile-hidden{
    display:none;
  }
  
  #secondary-menu ul li {
    font-size: 8px !important;
    padding-top : 0px !important;
    padding-bottom : 0px !important;
  }
}

/*secondary menu hover effect opacity decreased to 50% on "non-hover" elements, to focus on the selected hover element*/
#secondary-menu {
  max-width: 800px;
  margin: 0 auto; /* Optional: centers the div horizontally */
}
#secondary-menu ul li {
    transition: color 0.3s, opacity 0.3s;
}

#secondary-menu ul:hover li {
  opacity: 0.5;
}

#secondary-menu ul li:hover {
  opacity: 1;
}



/* Footer Social Links */
  ul.socials.socials--thick {
    display: flex;
    justify-content: center;
  }

/* Newsletter */
@media only screen and (max-width: 749px) {
  .shopify-section-group-group-pre-footer {
    display: flex;
    justify-content: center;
  }
}

/* Top About Menu */
  .column__links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
  }
  .column__links__item {
    width: 14%;
  }

  .column__links__item a {
    text-transform: uppercase;
    font-size: 12px;
  }
  
@media only screen and (max-width: 749px) {
  .column__links__item {
    width: 25%;
  }
  .column__links__item a {
    font-size: 10px;
  }
}

@media only screen and (max-width: 330px) {
  .column__links__item a {
    font-size: 9px;
  }
}

/* About Page */
  .hero__rte {
    line-height: 2
  }
@media only screen and (min-width: 768px) {
  .index-rte.section-padding {
    display: flex;
    justify-content: center;
  }

  .hero__content__wrapper {
    width: 1300px;
  }
}

/* Manifesto Page */
@media only screen and (min-width: 768px) {
  .main-content{
    width: 1200px;
  }
  .grid.multicolumn {
    width: 1200px;
  }
   .section-columns.section-padding .wrapper {
    display: flex;
    justify-content: center;
  }
}
/* Savoir-Faire Page */
@media only screen and (max-width: 749px) {
  div.shopify-section.index-section {
    padding-bottom: 35px !important;
  }
}

/* Divider */
  .column__icon.icon--top {
    border-top: 1px solid #dddddd;
  }

  .icon__animated .icon {
    display: none !important;
  }

/* Digital Press Page */
  .btn--black.btn--outline {
    border: 2px solid #000;
  }

  .btn--black.btn--outline:hover {
    color: #fff;
    background-color: #000;
  }

  #shopify-section-template--20597096546635__section_multicolumn_DUNtAq .column__inner.aos-animate .column__content {
    margin-top: 17%;
  }
@media only screen and (max-width: 749px) {
  #shopify-section-template--20597096546635__section_multicolumn_DUNtAq .column__inner.aos-animate .column__content {
    margin-top: 5%;
  }
}

/* Product Title UpperCase Bold on the Collection Pages */

  .product-item__title {
    text-transform: uppercase;
    font-weight: bold;
  }

/* Klaviyo button */
  .product__submit{
    width: 100%;
  }
  .product-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .klaviyo-bis-trigger {
    /*visibility: hidden;*/
    display: inline-block;
    text-align: center;
    margin: 0px;
  }
