/*!
Theme Name: STARTEO Starter Theme
Author: Starteo
Author URI: https://www.starteo.pro
Description: 
Version: 1.0
Requires at least: 5.0
Tested up to: 5.7
Requires PHP: 7.2
Text Domain: gbdi-starter
*/

/* Don't overwrite this file. Compile "/assets/main.(less|scss)" to "/assets/css/main.css" */

/* From http://codex.wordpress.org/CSS */

/* GENERAL */
@font-face {
  font-family: "Zag";
  src: url(assets/_fonts/ZagRegular.otf) format("opentype");
  font-weight: normal;
}

@font-face {
  font-family: "Zag";
  src: url(assets/_fonts/ZagBold.otf) format("opentype");
  font-weight: bold;
}

body {
  font-family: "Zag" !important;
  background-image: url(assets/images/Gourmet-Background-Dark.webp);
  background-repeat: repeat-y;
  background-position: center top;
  background-size: 100% auto;
  background-color: transparent;
  overflow-x: hidden;
}

.orderable-floating-cart__button {
  width: 50px;
  height: 50px;
}

.orderable-floating-cart--br,
.orderable-floating-cart--tr {
  right: 10px;
  bottom: 70px;
}

.grecaptcha-badge {
  display: none;
}

.back-to-top {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 10px; /* Place the button at the bottom of the page */
  right: 10px; /* Place the button 30px from the right */
  z-index: 999; /* Make sure it does not overlap */
  outline: none; /* Remove outline */
  cursor: pointer; /* Add a mouse pointer on hover */
  font-size: 20px; /* Increase font size */
  color: #ffffff;
  background: #272d2f;
  border: solid 2px #e6ac6c;
  border-radius: 50px;
  padding: 14px 16px;
  transition:
    background-color 0.3s,
    opacity 0.5s,
    visibility 0.5s;
  opacity: 0;
  visibility: hidden;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: #e6ac6c;
}

.gourmet-dark {
  color: #272d2f !important;
  border-color: #272d2f !important;
}

.gourmet-yellow {
  color: #e6ac6d !important;
  border-color: #e6ac6d !important;
}

.gourmet-light {
  color: #eee7dc !important;
  border-color: #eee7dc !important;
}

.gourmet-bg-light {
  background-color: rgba(238, 231, 220, 1);
}

.gourmet-bg-dark {
  background-color: #272d2f;
}

.gourmet-bg-white {
  background-color: #ffffff;
}

.gourmet-bg-yellow {
  background-color: #e6ac6d;
}

.gourmet-title {
  font-family: "bebas-neue-pro", sans-serif;
  font-size: 120px;
  line-height: 120px;
  font-weight: bold;
  text-transform: uppercase;
}

.gourmet-footer-title {
  font-family: "bebas-neue-pro", sans-serif;
  font-size: 120px;
  line-height: 120px;
  font-weight: bold;
  text-transform: uppercase;
}

.gourmet-title-medium {
  font-family: "bebas-neue-pro", sans-serif;
  font-size: 35px;
  line-height: 35px;
  font-weight: bold;
  text-transform: uppercase;
}

.gourmet-baseline {
  font-size: 40px;
  line-height: 54px;
  font-weight: bold;
}

.gourmet-content {
  font-size: 22px;
  line-height: 24px;
}

.gourmet-button {
  font-family: "bebas-neue-pro", sans-serif;
  font-size: 20px;
  line-height: 24px;
  font-weight: bold;
  text-transform: uppercase;
  padding: 9px 16px;
  border: solid 2px;
  border-radius: 5px;
  display: inline-block;
}

.gourmet-button.gourmet-dark:hover {
  background-color: #272d2f;
  border-color: #272d2f !important;
  color: #e6ac6d !important;
}

.gourmet-button.gourmet-dark.gourmet-hover-yellow:hover {
  background-color: #e6ac6d;
  border-color: #e6ac6d !important;
  color: #272d2f !important;
}

.gourmet-bordered-title {
  display: inline;
  padding: 12px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  outline: 2px solid #272d2f;
}

.gourmet-page-std {
  padding-bottom: 100px;
}

.gourmet-vr {
  display: inline-block;
  height: 100%;
  width: 2.5px;
}
/* GENERAL */

/* HEADER */
.gourmet-header {
  padding-top: 84px;
  padding-bottom: 84px;
  position: relative;
  z-index: 9000;
}

.gourmet-home-link {
  position: absolute;
  transform: translateX(-50%) translateY(58px);
  display: inline-block;
  left: 50%;
  top: 0;
}

.gourmet-menu {
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  list-style-type: none;
  justify-content: space-between;
}

.gourmet-menu .nav-link {
  font-family: "bebas-neue-pro", sans-serif;
  font-size: 24px;
  line-height: 29px;
  font-weight: bold;
  text-transform: uppercase;
  color: #eee7dc;
}

.gourmet-menu li {
  display: flex;
  align-items: center;
}

.gourmet-menu li a.nav-link {
  padding: 0 2px 2px 0;
  position: relative;
  border-bottom: solid 2px transparent !important;
  display: inline-block;
  transition: all 0.5s;
}

.gourmet-menu li a.nav-link:before,
.gourmet-menu li a.nav-link:after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 20px;
  background-image: url(assets/images/Gourmet-Title-Hover.svg);
  background-position: center center;
  background-size: contain;
  opacity: 0;
  transition: all 0.5s;
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
}

.gourmet-menu li a.nav-link:after {
  transform: translateY(-50%) rotate(180deg);
  left: initial;
  right: -20px;
}

.gourmet-menu li a.nav-link:hover {
  border-bottom: solid 2px #e6ac6d !important;
}

.gourmet-menu li a.nav-link:hover:before,
.gourmet-menu li a.nav-link:hover:after {
  opacity: 1;
}

.gourmet-menu-right li:last-child a.nav-link {
  border: solid 1px #eee7dc !important;
  border-radius: 25px;
  padding: 5px 22px;
}

.gourmet-menu-right li:last-child a.nav-link:before,
.gourmet-menu-right li:last-child a.nav-link:after {
  display: none;
}

.gourmet-menu-right li:last-child a.nav-link:hover {
  border: solid 1px #e6ac6d !important;
  background-color: #e6ac6d !important;
  color: #272d2f !important;
}
/* HEADER */

/* HEADER - MOBILE */
.gourmet-header-mobile-logo {
  padding-bottom: 110px;
  position: relative;
}

.gourmet-header-mobile-logo img {
  max-height: 150px;
}

.gourmet-header-mobile-logo .gourmet-home-link {
  transform: translateX(-50%) translateY(20px);
}

.gourmet-header-mobile .gourmet-menu {
  flex-direction: column;
  row-gap: 10px;
  margin-top: 10px;
}

.gourmet-header-mobile .gourmet-menu .nav-link {
  font-size: 20px;
  line-height: 25px;
}
/* HEADER - MOBILE */

/* FOOTER */
.gourmet-footer {
  padding-top: 115px;
  padding-bottom: 115px;
  background-image: url(assets/images/Gourmet-Background-Dark.webp);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
}

.gourmet-footer-informations {
  margin-top: 100px;
}

.gourmet-footer-coords {
  display: inline-block;
}

.gourmet-footer-address,
.gourmet-footer-phone,
.gourmet-footer-mail {
  font-family: "bebas-neue-pro", sans-serif;
  font-size: 18px;
  line-height: 24px;
}

.gourmet-footer-address {
  margin-bottom: 25px;
}

.gourmet-footer-informations [class^="col-"] {
  border-left: solid 2px #e6ac6d;
}

.gourmet-footer-informations [class^="col-"]:first-child,
.gourmet-footer-informations [class^="col-"]:last-child {
  border-left: none;
}

.gourmet-footer-menu {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
  row-gap: 10px;
  display: flex;
  flex-direction: column;
}

.gourmet-footer-menu li a.nav-link {
  font-family: "bebas-neue-pro", sans-serif;
  font-size: 18px;
  line-height: 18px;
  color: #eee7dc !important;
  text-transform: uppercase;
  padding: 0;
  position: relative;
  border-bottom: solid 2px transparent !important;
  display: inline-block;
  transition: all 0.5s;
}

.gourmet-footer-menu li a.nav-link:before,
.gourmet-footer-menu li a.nav-link:after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 20px;
  background-image: url(assets/images/Gourmet-Title-Hover.svg);
  background-position: center center;
  background-size: contain;
  opacity: 0;
  transition: all 0.5s;
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
}

.gourmet-footer-menu li a.nav-link:after {
  transform: translateY(-50%) rotate(180deg);
  left: initial;
  right: -20px;
}

.gourmet-footer-menu li a.nav-link:hover {
  border-bottom: solid 2px #e6ac6d !important;
}

.gourmet-footer-menu li a.nav-link:hover:before,
.gourmet-footer-menu li a.nav-link:hover:after {
  opacity: 1;
}

.gourmet-footer-socials {
  display: inline-flex;
  column-gap: 7px;
}

.gourmet-footer-socials a {
  width: 33px;
  height: 33px;
  transition: all 0.5s;
  background-position: center center;
  background-size: contain;
}

.gourmet-footer-facebook {
  background-image: url(assets/images/Gourmet-Facebook.svg);
}

.gourmet-footer-instagram {
  background-image: url(assets/images/Gourmet-Instagram.svg);
}

.gourmet-footer-facebook:hover {
  background-image: url(assets/images/Gourmet-Facebook-Hover.svg);
}

.gourmet-footer-instagram:hover {
  background-image: url(assets/images/Gourmet-Instagram-Hover.svg);
}

.gourmet-footer-links {
  font-size: 16px;
  line-height: 20px;
  color: #717171;
}

.gourmet-footer-links a {
  color: #717171 !important;
}

.gourmet-footer-links a:hover {
  color: #e6ac6d !important;
}
/* FOOTER */

/* HOME */
.gourmet-click-n-collect-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 840px;
  max-height: 840px;
  -webkit-box-shadow: 0px 0px 20px 2px #272d2f;
  box-shadow: 0px 0px 20px 2px #272d2f;
}

.gourmet-click-n-collect-container a {
  position: relative;
}

.gourmet-click-n-collect-image {
  width: 100%;
  height: 100%;
  position: relative;
}

.gourmet-click-n-collect-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.gourmet-click-n-collect-image:after {
  content: "";
  background: transparent
    radial-gradient(closest-side at 50% 50%, #272d2f00 0%, #272d2f 150%) 0% 0%
    no-repeat padding-box;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.gourmet-click-n-collect-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9;
  background-color: #272d2f;
  background-image: url(assets/images/Gourmet-Home-Click-n-Collect-Hover.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transition: all 0.5s;
}

.gourmet-click-n-collect-hover img {
  width: 90%;
}

.gourmet-click-n-collect-container a:hover .gourmet-click-n-collect-hover {
  opacity: 1;
}

.gourmet-story {
  padding-top: 295px;
  padding-bottom: 150px;
  margin-top: -180px;
  background:
    url(assets/images/Gourmet-Background-Histoire.webp),
    linear-gradient(
      0deg,
      rgba(238, 231, 220, 1) 0%,
      rgba(238, 231, 220, 1) 90%,
      transparent 90%,
      transparent 100%
    );
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  position: relative;
  z-index: 10;
}

.gourmet-home-title {
  padding-top: 90px;
  padding-bottom: 50px;
  background-image:
    url(assets/images/Gourmet-Title-Left.svg),
    url(assets/images/Gourmet-Title-Right.svg);
  background-repeat: no-repeat;
  background-position:
    center left,
    center right;
}

.gourmet-story .gourmet-baseline {
  margin-bottom: 165px;
}

.gourmet-home-story-image {
  padding-left: 113.5px;
  padding-bottom: 113.5px;
  position: relative;
}

.gourmet-home-story-image:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 227px;
  height: 227px;
  background-image: url(assets/images/Gourmet-Story-Pastille.svg);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}

.gourmet-home-story-image img {
  height: 770px;
  max-height: 770px;
  object-fit: cover;
  border-radius: 15px;
  -webkit-box-shadow: -5px -5px 10px 0px rgba(0, 0, 0, 0.5);
  box-shadow: -5px -5px 10px 0px rgba(0, 0, 0, 0.5);
}

.gourmet-parallax {
  height: 690px;
  max-height: 690px;
  background-size: 100% auto;
  background-position: center center;
  background-attachment: fixed;
}

.gourmet-home-hours {
  background-color: #272d2f;
  clip-path: polygon(
    100% 0,
    100% calc(100% - 20px),
    50% 100%,
    0 calc(100% - 20px),
    0 0
  );
  position: relative;
  z-index: 20;
}

.gourmet-home-hours .gourmet-hours-title {
  padding-top: 10px;
  padding-bottom: 35px;
  border: none;
}

.gourmet-home-details {
  background:
    url(assets/images/Gourmet-Background-Details.webp),
    linear-gradient(
      0deg,
      transparent 0%,
      transparent 10%,
      rgba(238, 231, 220, 1) 10%,
      rgba(238, 231, 220, 1) 100%
    );
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  padding-top: 175px;
  position: relative;
  margin-top: -20px;
  z-index: 19;
}

.gourmet-home-details-burger {
  padding-bottom: 185px;
}

.gourmet-home-details-bakery {
  padding-bottom: 435px;
}

.gourmet-home-details-image {
  width: 100%;
  height: 595px;
  max-height: 595px;
  border: solid 1.5px #e6ac6d;
  border-radius: 15px;
}

.gourmet-home-details-image img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  object-fit: cover;
  transform-origin: center center;
}

.gourmet-home-details-burger .gourmet-home-details-image img {
  transform: rotate(4deg);
}

.gourmet-home-details-bakery .gourmet-home-details-image img {
  transform: rotate(-4deg);
}

.gourmet-home-events .gourmet-home-title {
  margin-bottom: 125px;
}

.gourmet-home-events .gourmet-bordered-title {
  outline: 2px solid #e6ac6d;
}

.gourmet-home-events-image {
  padding-left: 113.5px;
  padding-bottom: 113.5px;
  position: relative;
}

.gourmet-home-events .gourmet-button {
  background-color: transparent;
  color: #eee7dc;
  border-color: #e6ac6d;
}

.gourmet-home-events .gourmet-button:hover {
  background-color: #eee7dc;
  border-color: #eee7dc;
  color: #272d2f;
}

.gourmet-home-events-image:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 227px;
  height: 227px;
  background-image: url(assets/images/Gourmet-Events-Pastille.svg);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}

.gourmet-home-events-image img {
  height: 770px;
  max-height: 770px;
  object-fit: cover;
  border-radius: 15px;
  -webkit-box-shadow: -5px -5px 10px 0px rgba(0, 0, 0, 0.5);
  box-shadow: -5px -5px 10px 0px rgba(0, 0, 0, 0.5);
}

.gourmet-news {
  padding-top: 325px;
  padding-bottom: 170px;
  background:
    url(assets/images/Gourmet-Background-News.webp),
    linear-gradient(
      0deg,
      rgba(238, 231, 220, 1) 0%,
      rgba(238, 231, 220, 1) 90%,
      transparent 90%,
      transparent 100%
    );
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  position: relative;
}

.gourmet-news-content {
  padding-top: 68px;
  padding-bottom: 68px;
  overflow: hidden;
}

.gourmet-news-content .sbi {
  width: 133.33% !important;
  transform: translateX(-12.66%);
}

.gourmet-news-content .sbi {
  width: 133.33% !important;
  transform: translateX(-12.66%);
}

#sb_instagram .sbi_photo img {
  border-radius: 15px;
}

.gourmet-home-events-organize-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gourmet-home-events-organize-content {
  background-image: url(assets/images/Gourmet-Home-Events-Background.webp);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: cover;
}

.gourmet-partners {
  padding-top: 100px;
  padding-bottom: 45px;
}

.gourmet-partners-slide {
  height: 90px;
  max-height: 90px;
}

.gourmet-partners-slide img {
  max-height: 100%;
  margin: auto;
}

.gourmet-partners-nav {
  border: none;
  background-color: transparent;
}

.gourmet-partners-nav img {
  height: 16.68px;
  width: 7.41px;
}

.gourmet-partners-next {
  transform: rotate(180deg);
}
/* HOME */

/* HOURS */
.gourmet-hours-title {
  border-top: solid 1.5px;
  border-bottom: solid 1.5px;
  border-color: #e6ac6d !important;
  padding-top: 50px;
  padding-bottom: 50px;
  transition: all 0.5s;
  display: grid;
  grid-template-rows: auto 0fr;
}

.gourmet-hours-title.active {
  grid-template-rows: auto 1fr;
  row-gap: 45px;
}

.gourmet-hours-title span {
  border-bottom: solid 2px transparent !important;
  cursor: pointer;
  position: relative;
  display: inline-block;
  transition: all 0.5s;
}

.gourmet-hours-title span:before,
.gourmet-hours-title span:after {
  content: "";
  display: inline-block;
  width: 16.8px;
  height: 27.97px;
  background-image: url(assets/images/Gourmet-Title-Hover.svg);
  background-position: center center;
  background-size: contain;
  opacity: 0;
  transition: all 0.5s;
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
}

.gourmet-hours-title span:after {
  transform: translateY(-50%) rotate(180deg);
  left: initial;
  right: -20px;
}

.gourmet-hours-title span:hover,
.gourmet-hours-title.active span {
  border-bottom: solid 2px #e6ac6d !important;
}

.gourmet-hours-title span:hover:before,
.gourmet-hours-title span:hover:after,
.gourmet-hours-title.active span:before,
.gourmet-hours-title.active span:after {
  opacity: 1;
}

.gourmet-hours-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  transition: all 0.5s;
  overflow: hidden;
}

.gourmet-hours {
  display: inline-flex;
  flex-direction: column;
  row-gap: 29px;
}

.gourmet-hour {
  display: inline-flex;
  border: solid 1.5px #eee7dc;
  font-family: "bebas-neue-pro", sans-serif;
  font-size: 22px;
  line-height: 18px;
  font-weight: bold;
  text-transform: uppercase;
}

.gourmet-hour-day {
  padding: 9px 10px;
  color: #272d2f !important;
  background-color: #eee7dc;
}

.gourmet-hour-hours {
  padding: 9px 10px;
  color: #eee7dc !important;
  background-color: #272d2f;
}

.gourmet-hour-place {
  font-family: "bebas-neue-pro", sans-serif;
  font-size: 18px;
  line-height: 18px;
  font-weight: normal;
  margin-top: 10px;
  text-transform: initial;
}
/* HOURS */

/* CONTACT */
.gourmet-page-contact {
  padding-top: 100px;
  padding-bottom: 210px;
  background-image: url(assets/images/Gourmet-Contact-Footer.webp);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% auto;
}

.gourmet-contact-form input,
.gourmet-contact-form textarea {
  width: 100%;
  max-width: 100%;
  background-color: transparent;
  color: #eee7dc;
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 1px;
  font-weight: bold;
  outline: none;
  border: none;
  border-bottom: solid 1px #e6ac6d;
  resize: none;
  box-shadow: none;
  padding: 5px 0;
  margin-bottom: 5px;
}

.gourmet-contact-form textarea {
  height: 118px;
  max-height: 118px;
}

.gourmet-contact-form ::placeholder {
  color: #eee7dc;
  opacity: 1; /* Firefox */
}

.gourmet-contact-form ::-ms-input-placeholder {
  /* Edge 12 -18 */
  color: #eee7dc;
}

.gourmet-contact-form input[type="submit"] {
  width: auto;
  display: inline-block;
  font-size: 20px;
  line-height: 20px;
  border: solid 1px #eee7dc;
  color: #eee7dc;
  border-radius: 50px;
  padding: 5px 20px;
}

.gourmet-contact-form input[type="submit"]:hover {
  background-color: #eee7dc;
  color: #272d2f;
  border-color: #eee7dc;
}

.gourmet-contact-form .wpcf7-spinner {
  display: block;
}

.wpcf7 form .wpcf7-response-output {
  color: #eee7dc;
}
/* CONTACT */

/* CARTE */
.gourmet-carte {
  margin-top: 75px;
  background-image: url(assets/images/Gourmet-Background-Carte.webp);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center top 145px;
  padding-bottom: 225px;
}

.gourmet-carte-container {
  background:
    url(assets/images/Gourmet-Carte-Background.webp),
    linear-gradient(
      0deg,
      rgba(238, 231, 220, 1) 0%,
      rgba(238, 231, 220, 1) calc(100% - 145px),
      transparent calc(100% - 145px),
      transparent 100%
    );
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center top;
  padding: 200px 150px 160px 150px;
}

.gourmet-carte-elements {
  display: flex;
  flex-direction: column;
  row-gap: 55px;
}

.gourmet-carte-element-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 13.5px;
  margin-bottom: 13.5px;
  border-bottom: solid 1px;
}

.gourmet-carte-element-name {
  font-family: "bebas-neue-pro", sans-serif;
  font-size: 32px;
  line-height: 38px;
  font-weight: bold;
  text-transform: uppercase;
}

.gourmet-carte-separator {
  width: 100%;
  height: 30px;
  margin-top: 50px;
  border: none;
  background-image: radial-gradient(circle, black 2px, transparent 2px);
  background-size: 15px 15px; /* espace entre les points */
  background-repeat: repeat-x;
  background-position: top;
}

.gourmet-carte-formules {
  padding: 14px 33px;
}

.gourmet-carte-element-formule {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gourmet-carte-actions {
  display: flex;
  justify-content: space-around;
}
/* CARTE */

/* CLICK & COLLECT */
.orderable-products-list--grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 75px;
  margin-left: initial;
  margin-right: initial;
}

.orderable-products-list__item .orderable-product {
  border-radius: 5px;
  background-color: #eee7dc;
  border-radius: 5px;
  transition: all 0.5s;
  transform: translate(0);
  position: relative;
  z-index: 20;
  border: solid 2px #272d2f;
  padding: 0 0 55px 0;
  transition: all 0.5s;
  transform: translate(0);
}

.orderable-products-list--grid .orderable-products-list__item {
  width: 100%;
  box-shadow: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.orderable-products-list--grid .orderable-products-list__item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #272d2f;
  border-radius: 5px;
}

.orderable-product__hero {
  width: 100% !important;
  height: initial;
  aspect-ratio: 1/1.05;
  border-bottom: solid 2px #272d2f;
  transition: all 0.5s;
  overflow: hidden;
}

.orderable-products-list--grid .orderable-product__hero img {
  object-fit: cover;
  max-height: 100%;
  max-width: 100%;
  width: 100% !important;
  height: 100% !important;
}

.orderable-product__actions-price .amount {
  font-size: 22px;
  line-height: 30px;
  color: #272d2f;
  font-weight: normal;
}

.orderable-products-list .orderable-product__title {
  font-family: "bebas-neue-pro", sans-serif;
  font-size: 32px;
  line-height: 38px;
  font-weight: bold;
  text-transform: uppercase;
}

.orderable-product__description {
  display: none;
  font-size: 22px;
  line-height: 22px;
  color: #272d2f;
}

.orderable-products-list--grid
  .orderable-products-list__item:hover
  .orderable-product {
  transform: translate(-10px, -10px);
}

.orderable-products-list--grid
  .orderable-products-list__item:hover
  .orderable-product
  .orderable-product__hero {
  height: 0;
}

.orderable-products-list--grid
  .orderable-products-list__item:hover
  .orderable-product
  .orderable-product__description {
  display: block;
}

.orderable-products-list--grid
  .orderable-products-list__item:hover
  .orderable-product
  .orderable-product__title {
  border-bottom: solid 1px #272d2f;
  padding-bottom: 13.5px;
  margin-bottom: 15.5px;
  padding-top: 45px;
}

.orderable-products-list--grid
  .orderable-products-list__item:hover
  .orderable-product
  .orderable-button {
  background-color: #272d2f;
  color: #eee7dc;
}

.gourmet-click-n-collect-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  border-bottom: solid 2px #272d2f;
  padding-bottom: 10px;
  margin-bottom: 22px;
}

.orderable-tabs__list {
  justify-content: end;
}

a.orderable-tabs__link {
  font-family: "bebas-neue-pro", sans-serif;
  font-size: 20px;
  line-height: 22px;
  font-weight: bold;
  text-transform: uppercase;
  padding: 5px 20px;
}

.orderable-tabs__item--active a.orderable-tabs__link {
  background-color: #272d2e;
  color: #eee7dc;
}

.woocommerce-checkout .col2-set,
.woocommerce-checkout-review-order {
  width: 50%;
  float: left;
}

.woocommerce-checkout .col2-set .col-1 {
  width: 90%;
}

.woocommerce-checkout .col2-set .col-2 {
  display: none;
}

.woocommerce-info {
  border-top-color: #e6ac6d;
  background-color: #272d2f;
  color: #eee7dc;
}

.woocommerce-info::before {
  color: #e6ac6d;
}

.woocommerce-info a {
  color: #e6ac6d;
}

#add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment {
  border-top-color: #e6ac6d;
  background-color: #272d2f;
  color: #eee7dc;
}

#add_payment_method #payment a,
.woocommerce-cart #payment a,
.woocommerce-checkout #payment a {
  color: #e6ac6d;
}

#add_payment_method #payment div.payment_box,
.woocommerce-cart #payment div.payment_box,
.woocommerce-checkout #payment div.payment_box {
  background-color: #e5ddd5;
  color: #272d2f;
}

#add_payment_method #payment div.payment_box::before,
.woocommerce-cart #payment div.payment_box::before,
.woocommerce-checkout #payment div.payment_box::before {
  border: 1em solid #e5ddd5;
  border-right-color: transparent;
  border-left-color: transparent;
  border-top-color: transparent;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
  #respond
  input#submit.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
  a.button.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
  button.button.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
  input.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(
    :not(.edit-post-visual-editor)
  )
  .woocommerce
  #respond
  input#submit.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(
    :not(.edit-post-visual-editor)
  )
  .woocommerce
  a.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(
    :not(.edit-post-visual-editor)
  )
  .woocommerce
  button.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(
    :not(.edit-post-visual-editor)
  )
  .woocommerce
  input.button.alt {
  background-color: #e6ac6d;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
  #respond
  input#submit.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
  a.button.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
  button.button.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles))
  input.button.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(
    :not(.edit-post-visual-editor)
  )
  .woocommerce
  #respond
  input#submit.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(
    :not(.edit-post-visual-editor)
  )
  .woocommerce
  a.button.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(
    :not(.edit-post-visual-editor)
  )
  .woocommerce
  button.button.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(
    :not(.edit-post-visual-editor)
  )
  .woocommerce
  input.button.alt:hover {
  background-color: #e5ddd5;
}

.woocommerce a {
  color: #e6ac6d;
}

.orderable-location-picker__selected,
.orderable-location-picker__change,
.orderable-location-selector--inline,
[class*="orderable-location-picker"] a,
[class*="orderable-location-picker"] button,
.opml-mini-locator__address-button,
.woocommerce-shipping-methods input {
  pointer-events: none !important;
  opacity: 0.6 !important;
  cursor: not-allowed !important;
  display: none;
}

#shipping_method li:has(input:not(:checked)) {
  display: none !important;
}

.woocommerce-shipping-destination {
  display: none;
}

/*
.orderable-drawer__inner .orderable-sb-container{
	flex-basis: initial;
}
*/

.orderable-floating-cart__button svg {
  display: none;
}

/* Injecter votre icône personnalisée */
.orderable-floating-cart__button::before {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  background-image: url(assets/images/Gourmet-TakeAway.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
/* CLICK & COLLECT */

#tarteaucitronIcon {
  z-index: 9000 !important;
}

/* PAGE - HISTOIRE */
.gourmet-history {
  padding-top: 295px;
  padding-bottom: 150px;
  margin-top: 65px;
  background: url(assets/images/Gourmet-Background-Beige-Histoire.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  position: relative;
  z-index: 10;
}

.gourmet-history-title {
  font-family: "bebas-neue-pro", sans-serif;
  font-size: 120px;
  line-height: 120px;
  font-weight: bold;
  text-transform: uppercase;
  color: transparent;
  background-color: #1a1e20;
  text-shadow: 2px 2px 3px rgba(255, 255, 255, 0.1);
  -webkit-background-clip: text;
  box-shadow: none;
}

.gourmet-history-separator {
  height: 2px;
  width: 100%;
  background-color: #272d2f;
  margin-block: 20px;
}

.gourmet-history-container {
  position: relative;
  width: 100%;
  display: inline-block;
}

.gourmet-history-bg {
  width: auto;
  height: 1970px;
  display: block;
  padding-bottom: 100px;
}

.gourmet-history-dot-item {
  position: absolute;
  z-index: 10;
}

.gourmet-history-dot-circle {
  width: 26px;
  height: 26px;
  background-image: url(assets/images/Gourmet-Histoire-Dot.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.gourmet-history-tooltip {
  position: absolute;
  transform: translateX(-50%) translateY(10px);
  width: 272px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 50;
}

.gourmet-history-tooltip-1 {
  bottom: 25px;
  left: 150px;
}

.gourmet-history-tooltip-2 {
  bottom: 23px;
  left: 154px;
}

.gourmet-history-tooltip-2 .gourmet-history-tooltip-image {
  bottom: 23px;
  left: 156px;
}

.gourmet-history-tooltip-3 {
  bottom: 23px;
  left: 154px;
}

.gourmet-history-tooltip-3 .gourmet-history-tooltip-image {
  bottom: 71px;
  left: -211px;
}

.gourmet-history-dot-item:hover .gourmet-history-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.gourmet-history-tooltip-bg {
  position: relative;
  z-index: 10;
  width: 100%;
  height: auto;
  display: block;
}

.gourmet-history-tooltip-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 10px 20px 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.gourmet-history-tooltip-image {
  width: 374px;
  height: 287px;
  position: absolute;
  z-index: 5;
}

.gourmet-history-tooltip-image img {
  width: 100%;
  height: auto;
  display: block;
}

.gourmet-history-tooltip-content p {
  position: relative;
  z-index: 20;
  color: #eee7dc;
  font-family: "Zag";
  font-size: 22px;
  line-height: 24px;
  text-align: center;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gourmet-history-dot-1 {
  top: 24%;
  right: 33%;
}

.gourmet-history-dot-2 {
  top: 36%;
  left: 23%;
}

.gourmet-history-dot-3 {
  top: 42.5%;
  left: 52%;
}

/* PAGE - HISTOIRE */
