.tm-locale-floater {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 2000;
}

.tm-locale-floater__trigger {
    list-style: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e9e6df;
    border: 1px solid #e3d6c5;
    border-radius: 999px;
    padding: 8px 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    user-select: none;
}

.tm-locale-floater__trigger::-webkit-details-marker {
    display: none;
}

.tm-locale-floater__flag {
    width: 26px;
    height: 18px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.tm-locale-floater__code {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.6px;
    color: #612e03;
}

.tm-locale-floater__menu {
    margin-top: 8px;
    background: #e9e6df;
    border: 1px solid #e3d6c5;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    min-width: 160px;
    padding: 6px;
}

.tm-locale-floater__item {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #612e03;
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 14px;
}

.tm-locale-floater__item:hover {
    background: #e9e6df;
    color: #612e03;
}

.tm-locale-floater__item.is-active {
    background: #e3d6c5;
    color: #612e03;
    font-weight: 600;
}

@media (max-width: 768px) {
    .tm-locale-floater {
        right: 12px;
        bottom: 12px;
    }
}
html {
  overflow-x: clip;
}

body {
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
}

:root {
  /**
  @font family declaration
  */
  --af-ff-body: 'Gotham-Medium', sans-serif;
  --af-ff-heading: 'Gotham-Medium', sans-serif;
  --af-ff-gotham-medium: 'Gotham-Medium', sans-serif;
  --af-ff-gotham-light: 'Gotham-Light', sans-serif;
  --af-ff-gotham-extra-bold: 'Gotham-ExtraBold', sans-serif;
  /**
  @color declaration
  */
  --af-common-black: black;
  --af-common-white: white;
  --af-common-grey: #e3d6c5;
  --af-common-green-light: #e9e6df;
  --af-common-brown: #e3d6c5;
  --af-common-brown-2: #8d9580;
  --af-theme-primary: #612e03;
  --af-theme-secondary: #994217;
  --af-theme-gray: #788990;
  --af-theme-secondary-2: #788990;
  /**
  @font weight declaration
  */
  --af-fw-normal: normal;
  --af-fw-elight: 200;
  --af-fw-light: 300;
  --af-fw-regular: 400;
  --af-fw-medium: 500;
  --af-fw-sbold: 600;
  --af-fw-bold: 700;
  --af-fw-ebold: 800;
  --af-fw-black: 900;
  /**
  @font size declaration
  */
  --af-fs-body: 14px;
  --af-fs-p: 14px;
  --af-fs-h1: 40px;
  --af-fs-h2: 36px;
  --af-fs-h3: 24px;
  --af-fs-h4: 20px;
  --af-fs-h5: 16px;
  --af-fs-h6: 14px;
}

/*----------------------------------------*/
/*  01. THEME DEFAULT CSS START
/*----------------------------------------*/
@font-face {
  font-family: "Gotham-Medium";
  src: url("/assets/fonts/Montserrat/Montserrat-Light.otf");
  font-display: swap;
}
@font-face {
  font-family: "Gotham-Light";
  src: url("/assets/fonts/Montserrat/Montserrat-Light.otf");
  font-display: swap;
}
@font-face {
  font-family: "Gotham-ExtraBold";
  src: url("/assets/fonts/Montserrat/Montserrat-ExtraBold.ttf");
  font-display: swap;
}
/*---------------------------------
	typography css start 
---------------------------------*/
body {
  font-family: var(--af-ff-body);
  font-size: var(--af-fz-body);
  font-weight: normal;
  color: var(--af-theme-black);
  line-height: 26px;
}

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
  transition: all 250ms ease;
}

a {
  text-decoration: none;
}

p {
  font-size: 15px;
  line-height: 1.3em;
  color: rgba(0, 0, 0, 0.7490196078);
  margin-bottom: 1.2rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--af-ff-heading);
  color: var(--af-theme-primary);
  margin-top: 0px;
  font-weight: 600;
  line-height: 1.2;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.ff-body {
  font-family: var(--af-ff-body) !important;
}

.ff-bold {
  font-family: var(--af-ff-bold) !important;
}

.ff-heading {
  font-family: var(--af-ff-heading) !important;
}

.ff-gotham-light {
  font-family: var(--af-ff-gotham-light) !important;
}

.ff-gotham-extra-bold {
  font-family: var(--af-ff-gotham-extra-bold) !important;
}

.fw-ebold {
  font-weight: var(--af-fw-ebold);
}

.text-primary {
  color: var(--af-theme-primary) !important;
}

.text-secondary {
  color: var(--af-theme-secondary) !important;
}

.text-gray {
  color: var(--af-theme-gray) !important;
}

.text-secondary-2 {
  color: var(--af-theme-secondary-2) !important;
}

.text-white {
  color: var(--af-common-white) !important;
}

.text-black {
  color: var(--af-common-black) !important;
}

.text-brown {
  color: var(--af-common-brown) !important;
}

.text-brown-2 {
  color: var(--af-common-brown-2) !important;
}

h1 {
  font-size: var(--af-fz-h1);
}

h2 {
  font-size: var(--af-fz-h2);
}

h3 {
  font-size: var(--af-fz-h3);
}

h4 {
  font-size: var(--af-fz-h4);
}

h5 {
  font-size: var(--af-fz-h5);
}

h6 {
  font-size: var(--af-fz-h6);
}

.fz-h1 {
  font-size: var(--af-fz-h1) !important;
}

.fz-h2 {
  font-size: var(--af-fz-h2) !important;
}

.fz-h3 {
  font-size: var(--af-fz-h3) !important;
}

.fz-h4 {
  font-size: var(--af-fz-h4) !important;
}

.fz-h5 {
  font-size: var(--af-fz-h5) !important;
}

.fz-h6 {
  font-size: var(--af-fz-h6) !important;
}

/*----------------------------------------
            Button
-----------------------------------------*/
.af-btn, .af-btn-white-outline, .af-btn-white, .af-btn-black-outline, .af-btn-black, .af-btn-secondary-outline, .af-btn-secondary, .af-btn-primary-outline, .af-btn-primary, .account_form button {
  display: inline-block;
  letter-spacing: normal;
  text-align: center;
  padding: 15px 18px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 5px;
  width: fit-content;
  font-size: 0.9em;
}
.af-btn-primary, .account_form button {
  background-color: #612e03;
  color: var(--af-common-white);
}
.af-btn-primary:hover, .account_form button:hover {
  color: var(--bd-common-black);
}
.af-btn-primary-outline {
  color: var(--af-theme-primary);
  border-color: var(--af-theme-primary);
  background-color: transparent;
  border: 1px solid var(--af-theme-primary);
}
.af-btn-primary-outline:hover {
  background-color: var(--af-theme-primary);
  color: #e9e6df;
}
.af-btn-secondary {
  background-color: var(--af-theme-secondary);
  color: var(--af-common-white);
}
.af-btn-secondary:hover {
  color: #e9e6df;
}
.af-btn-secondary-outline {
  color: var(--af-theme-secondary);
  border-color: var(--af-theme-secondary);
  background-color: transparent;
  border: 1px solid var(--af-theme-nsecondary);
}
.af-btn-secondary-outline:hover {
  background-color: var(--af-theme-secondary);
  color: #e9e6df;
}
.af-btn-black {
  background-color: var(--af-common-black);
  color: var(--af-common-black);
}
.af-btn-black-outline {
  color: var(--af-common-black);
  border-color: var(--af-common-black);
  background-color: transparent;
  border: 1px solid var(--af-common-black);
}
.af-btn-white {
  background-color: var(--af-common-white);
  color: var(--af-common-white);
}
.af-btn-white-outline {
  color: var(--af-common-white);
  border-color: var(--af-common-white);
  background-color: transparent;
  border: 1px solid var(--af-common-white);
}

.button-no-style {
  padding: 0px;
  background-color: transparent;
  border: none;
  color: #e9e6df;
  display: inline-flex;
}

button {
  border: none;
}

.account_form button {
  height: inherit;
}

/*----------------------------------------
            - Background color
-----------------------------------------*/
.af-bg-white {
  background: var(--af-common-white) !important;
}

.af-bg-black {
  background: var(--af-common-black) !important;
}

.af-bg-primary {
  background-color: var(--af-theme-primary) !important;
}

.af-bg-secondary {
  background-color: var(--af-theme-secondary) !important;
}

.af-bg-secondary-2 {
  background-color: var(--af-theme-secondary-2) !important;
}

.af-bg-grey {
  background-color: var(--af-common-grey) !important;
}

.af-bg-green-light {
  background-color: var(--af-common-green-light) !important;
}

.bg-style-1 {
  background-image: url("/assets/images/compressed/img-17.webp");
  background-repeat: no-repeat;
}
.bg-style-1--top {
  background-position: center 250%;
}
.bg-style-1--left {
  background-position: -175%;
}
.bg-style-1--right {
  background-position: 250%;
}

.bg-contain {
  background-size: cover;
}

.bg-rounded-1 {
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
  overflow: hidden;
}

/*----------------------------------------*/
/*  SECTION TITLE CSS START
/*----------------------------------------*/
.af-section__big-title {
  font-size: 60px;
  font-weight: 900;
}
.af-section__title {
  font-size: 54px;
  color: var(--af-common-white);
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  line-height: 1;
}
.af-section__subtitle {
  font-weight: 300 !important;
  font-size: 26px;
  margin-bottom: 33px;
  font-family: var(--af-ff-gotham-extra-bold);
  font-weight: var(--af-fw-ebold);
  color: var(--af-theme-primary);
  text-transform: none;
  letter-spacing: normal;
}

/*----------------------------------------*/
/*               PRELOADER
/*----------------------------------------*/
#loading_aroma {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgb(255, 255, 255);
  z-index: 999;
}
#loading_aroma.hide {
  display: none;
}
#loading_aroma img {
  width: 150px;
}

.section-container {
  padding: 70px 0;
}

.af-img-rounded {
  border-radius: 14px;
}

/*********************
        SPACING
**********************/
.pb-75 {
  margin-bottom: 75px;
}

.pr-28 {
  padding-right: 28px;
}

.pl-28 {
  padding-left: 28px;
}

@media (min-width: 768px) {
  .px-md-100 {
    padding-right: 100px;
    padding-left: 100px;
  }
  .px-md-120 {
    padding-right: 120px;
    padding-left: 120px;
  }
  .px-md-210 {
    padding-right: 210px;
    padding-left: 210px;
  }
}

.b-black-1-sld {
  border: 1px solid;
}
.br-12 {
  border-radius: 12px;
}
.br-7 {
  border-radius: 7px;
}
.br-8 {
  border-radius: 8px;
}

.form-control {
  padding: 15px 24px;
}

/*----------------------------------------*/
/*  02. HEADER CSS START
/*----------------------------------------*/
.af-header__section {
  padding: 5px 0 !important;
}
.af-header__section .icon-header {
  font-size: 21px;
}
.af-header__section .icon-header.active, .af-header__section .icon-header:hover {
  font-weight: var(--af-fw-bold);
  color: var(--af-common-black);
}
.af-header__section .header_middle {
  padding-top: 5px;
}
.af-header__section .header_account_area {
  align-items: center;
}
.af-header__section .header_account_area .header_area_item {
  padding: 0 10px;
}
.af-header__section .header-form-i-search {
  border: none;
}
.af-header__section .header-form-i-search .btn-i-search {
  position: absolute;
  margin-top: 4px;
  margin-left: -39px;
  border: none;
  background-color: transparent;
}
.af-header__section .header-form-i-search input {
  border: none;
  background-color: rgba(167, 167, 167, 0.368627451);
  border-radius: 10px;
  padding: 6px 13px;
}
.af-header__section .cart_button {
  background: var(--af-theme-primary);
  border-color: var(--af-theme-primary);
  color: black;
}
.af-header__section .cart_button a:hover {
  background: #612e03;
  border-color: #612e03;
  color: #e9e6df;
}
.af-header__delivry-offers {
  font-size: 12px;
  display: grid;
  align-content: center;
  padding-top: 0.7rem !important;
  padding-bottom: 0.7rem !important;
}
.af-header__main_menu nav > ul {
  display: flex;
}
.af-header__main_menu nav > ul > li > a {
  white-space: nowrap;
  font-size: 16px;
  text-transform: none;
}
.af-header__main_menu nav > ul > li > a {
  color: #612e03 !important;
}
.main_header.af-header__section .sticky ul > li > a {
  color: #612e03 !important;
}
.af-header__main_menu nav > ul > li > a::after {
  content: "";
  position: absolute;
  width: 64%;
  transform: scaleX(0);
  height: 2px;
  bottom: 8px;
  left: 17px;
  background-color: #612e03;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
.af-header__main_menu nav > ul > li > a.active, .af-header__main_menu nav > ul > li > a:hover {
  font-weight: var(--af-fw-bold);
  color: var(--af-common-black);
}
.af-header__main_menu nav > ul > li > a.active:after, .af-header__main_menu nav > ul > li > a:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.header_top {
  padding-bottom: 0px;
  border: none;
}
.header_top .header-logo {
  width: 150px;
}

@media (max-width: 767px) {
  #header.main_header {
    position: static !important;
  }

  #header > .header_middle.sticky-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 9999 !important;
    background: #fff;
    width: 100%;
  }

  .header_top .header-logo {
    width: 100px !important;
    max-width: 100px !important;
  }
}

/* Menu mobile / tablette : logo principal (logo_principale.png) en permanence */
@media (max-width: 991px) {
  #header .header-logo.header-logo--secondary {
    display: block !important;
    width: 100px !important;
    max-width: 100px !important;
  }

  #header .header-logo.header-logo--primary {
    display: none !important;
  }

  #header.header--secondary .header-logo.header-logo--secondary,
  #header.header--primary .header-logo.header-logo--secondary {
    display: block !important;
  }

  #header.header--secondary .header-logo.header-logo--primary,
  #header.header--primary .header-logo.header-logo--primary {
    display: none !important;
  }
}

.header_middle {
  padding: 0px;
}

.main_header {
  padding: 0px !important;
}

.canvas_open .icon-menu {
  color: black;
}
.canvas_open a,
.canvas_open__btn {
  border: none !important;
  background: transparent;
  padding: 0;
  cursor: pointer;
  color: inherit;
}
.canvas_open a:hover,
.canvas_open__btn:hover {
  color: var(--af-theme-primary);
}
.off_canvars_overlay:not(.active) {
  pointer-events: none;
}

.off_canvars_overlay.active {
  z-index: 10090 !important;
}

.offcanvas_menu_wrapper {
  top: 0 !important;
  left: 0 !important;
  height: 100vh !important;
  height: 100dvh !important;
  z-index: 10100 !important;
  padding-top: max(16px, env(safe-area-inset-top, 0px));
}

.offcanvas_menu_wrapper.active {
  margin-left: 0 !important;
  pointer-events: auto;
}

body.tm-offcanvas-open {
  overflow: hidden;
}

/* Panier latéral : au-dessus du header (même couche que le menu offcanvas) */
.tm-cart-overlay,
.tm-cart-overlay.is-open {
  z-index: 10110 !important;
}

.tm-cart-drawer {
  top: 0 !important;
  right: 0 !important;
  height: 100dvh !important;
  max-height: 100dvh !important;
  z-index: 10120 !important;
}

body.tm-cart-open {
  overflow: hidden;
}
@media (max-width: 991px) {
  .main_header.af-header__section {
    position: relative !important;
    left: auto !important;
    width: 100%;
    max-width: 100%;
  }

  /* Panneau latéral uniquement — pas de barre séparée au-dessus du logo */
  .offcanvas_menu {
    display: block;
    height: 0;
    min-height: 0 !important;
    margin: 0;
    padding: 0;
    overflow: visible;
    position: static;
    background: transparent;
    pointer-events: none;
  }

  .offcanvas_menu_wrapper {
    width: min(320px, 88vw);
    margin-left: calc(-1 * min(320px, 88vw) - 16px);
  }

  .offcanvas_menu_wrapper.active {
    margin-left: 0 !important;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
    pointer-events: auto;
  }

  .offcanvas_menu_wrapper .canvas_close {
    top: max(10px, env(safe-area-inset-top, 0px));
  }

  /* Panier déjà dans le header : menu navigation dès le haut */
  .offcanvas_menu_wrapper > .header_account_area {
    display: none !important;
  }

  .header_right_info.tm-header-bar {
    display: grid !important;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    width: 100%;
    max-width: 100%;
    padding: 6px 12px;
    min-height: 56px;
    box-sizing: border-box;
  }

  .tm-header-bar__burger {
    grid-column: 1;
    justify-self: start;
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    z-index: 2;
    pointer-events: auto;
  }

  .tm-header-bar__logo {
    grid-column: 2;
    justify-self: center;
    max-width: 100%;
  }

  .tm-header-bar__logo .header-logo {
    width: 90px !important;
    max-width: 90px !important;
    height: auto;
  }

  .tm-header-bar__actions {
    grid-column: 3;
    justify-self: end;
    display: flex !important;
    align-items: center;
    flex-shrink: 0;
    margin-bottom: 0 !important;
  }

  .tm-header-bar__actions .header_area_item {
    display: none;
    padding: 0 4px;
  }

  .tm-header-bar__actions .header_area_item:has([data-tm-cart-open]) {
    display: flex;
  }

  .tm-header-bar__actions .button-af-header {
    padding: 8px 10px;
    font-size: 0;
    line-height: 1;
    white-space: nowrap;
  }

  .tm-header-bar__actions .button-af-header i {
    font-size: 18px;
    margin: 0 !important;
  }

  .canvas_open a,
  .canvas_open__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
  }

  #header > .header_middle.sticky-header {
    padding-left: 0;
  }

  #header .header_middle .container-fluid {
    padding-left: 12px;
    padding-right: 12px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  #header .header_middle .row {
    --bs-gutter-x: 0;
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }

  #header .header_middle .col-lg-12 {
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .tm-header-bar__burger {
    display: none;
  }
}

.cart_info a {
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  display: block;
  margin-bottom: 6px;
}

.banner-section {
  color: #e9e6df;
  padding: 80px 0;
}
.banner-section .banner-title {
  font-size: 38px;
  font-weight: 800;
}
.banner-section .banner-subtitle {
  font-size: 16px;
}

/********************** 
        PRODUCT
***********************/
.product_thumb.product_thumb--shop a img {
  object-fit: cover;
}

.single_product .product_name {
  font-family: var(--af-ff-gotham-light);
  font-size: 14px;
  font-weight: 600;
}
.single_product:hover .add_to_cart {
  color: #e9e6df;
  background-color: var(--af-theme-primary);
  opacity: 1;
  visibility: visible;
  width: 270px;
  height: 110%;
  left: -11px;
  top: 0px;
  border-radius: 0 0 12px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .single_product .add_to_cart,
  .single_product:hover .add_to_cart {
    width: 100% !important;
    max-width: 100%;
    left: 0 !important;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .single_product:hover .add_to_cart {
    height: 108px;
  }
}
.single_product:hover i {
  font-size: 28px;
}
.single_product:hover .action_links ul li a:hover {
  background: var(--af-theme-primary);
}

/*----------------------------------------*/
/*  02. HEADER CSS START
/*----------------------------------------*/
.af-footer__section {
  padding: 60px 0;
  color: #e9e6df;
}
.af-footer__section .footer-body .footer-action-item {
  font-weight: 200;
}
@media (max-width: 991px) {
  .af-footer__section {
    padding: 35px 16px;
  }

  .container-fluid,
  .container {
    max-width: 100%;
  }

  .header_right_info,
  .header_middle .container-fluid {
    max-width: 100%;
    overflow-x: clip;
  }

  .offcanvas_menu_wrapper:not(.active) {
    visibility: hidden;
    pointer-events: none;
  }

  .splide__track {
    overflow: hidden;
  }
}
.af-footer__title {
  font-size: 18px;
  font-weight: 800;
  color: #e9e6df;
  font-family: "Gotham-ExtraBold";
}

#copyright-block span {
  font-size: 12px;
}

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