@charset "UTF-8";
:root {
  --color-orange: #e37f7d;
  --color-light-orange: #ffeae3;
  --Quicksand-font: "Quicksand", sans-serif;
  --Volkorn-font: "Volkorn", sans-serif;
  --transition-duration: .1s;
  --transition-timing-function: linear;
}

:root {
  --container-padding: 32px;
  --container-width: calc(100vw - var(--container-padding) * 2);
}

@media only screen and (min-width: 600px) {
  :root {
    --container-padding: 32px;
  }
}
@media only screen and (min-width: 1370px) {
  :root {
    --container-padding: 32px;
    --container-width: 1200px;
  }
}
.container {
  box-sizing: border-box;
  width: 100%;
  padding-left: calc(50% - var(--container-width) / 2);
  padding-right: calc(50% - var(--container-width) / 2);
}

.footer {
  box-sizing: border-box;
  width: 100%;
  padding-left: calc(50% - var(--container-width) / 2);
  padding-right: calc(50% - var(--container-width) / 2);
}

.fullwidth {
  width: 100%;
  padding-left: 0px;
  padding-right: 0px;
}

.header {
  box-sizing: border-box;
  width: 100%;
  padding-left: calc(55% - var(--container-width) / 2);
  padding-right: calc(55% - var(--container-width) / 2);
}

.article {
  box-sizing: border-box;
  width: 100%;
  padding-left: calc(60% - var(--container-width) / 2);
  padding-right: calc(60% - var(--container-width) / 2);
}
@media (max-width: 600px) {
  .article {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.section {
  padding-top: 2em;
  padding-bottom: 2em;
}
@media (min-width: 600px) {
  .section {
    padding-top: 5em;
    padding-bottom: 6em;
  }
}

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

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

button {
  color: inherit;
  padding: 0;
  border: none;
  cursor: pointer;
  background: transparent;
  font-size: inherit;
}

form {
  display: block;
}

select,
input {
  font-size: inherit;
  font-family: inherit;
}

pre {
  font-family: monospace;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

textarea {
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
  resize: none;
}

hr {
  height: 1px;
  background: var(--border);
  margin: 0;
  padding: 0;
  border: none;
}

*:focus:not(:focus-visible) {
  outline: none;
}

@font-face {
  font-family: "JoyBraun";
  src: url("../assets/static/JoyBraun.ttf");
}
@font-face {
  font-family: "MontserratRegular";
  src: url("../assets/static/Montserrat-Regular.ttf");
}
@font-face {
  font-family: "Quicksand";
  src: url("../assets/static/Quicksand-VariableFont_wght.ttf");
}
@font-face {
  font-family: "Volkorn";
  src: url("../assets/static/Vollkorn-VariableFont_wght.ttf");
}
section.prefooter {
  margin-bottom: -4px;
}
section.prefooter img {
  width: 100%;
}

footer.footer {
  padding-top: 20px;
  padding-bottom: 1em;
  font-family: var(--Quicksand-font);
  font-size: 15px;
  background-color: var(--color-orange);
  color: var(--color-light-orange);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1em;
}
footer.footer hr {
  height: 1.2px;
  width: 100%;
  background: var(--color-light-orange);
}
@media (max-width: 600px) {
  footer.footer {
    padding-top: 1em;
    padding-bottom: 1em;
    font-size: 1em;
  }
}
footer.footer div.credits {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 600px) {
  footer.footer div.credits {
    font-size: 10px;
    line-height: 1.9;
  }
}
footer.footer div.footer-items {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 600px) {
  footer.footer div.footer-items {
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  footer.footer div.footer-items div.right {
    padding-top: 10px;
    margin-top: 15px;
    border-top: 1.2px solid var(--color-light-orange);
  }
}
footer.footer div.footer-items div.left,
footer.footer div.footer-items div.right {
  width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 600px) {
  footer.footer div.footer-items div.left,
  footer.footer div.footer-items div.right {
    width: 100%;
  }
}
footer.footer div.footer-items div.left div.title,
footer.footer div.footer-items div.right div.title {
  font-family: var(--Quicksand-font);
  font-size: 40px;
  color: var(--color-light-orange);
  height: 100px;
}
@media (max-width: 600px) {
  footer.footer div.footer-items div.left div.title,
  footer.footer div.footer-items div.right div.title {
    font-size: 18px;
    height: 60px;
  }
}
footer.footer div.footer-items div.left div.social,
footer.footer div.footer-items div.right div.social {
  margin-top: 15px;
}
footer.footer div.footer-items div.left div.social p,
footer.footer div.footer-items div.right div.social p {
  height: 35px;
  padding: 14px;
  margin-left: 80px;
}
@media (max-width: 600px) {
  footer.footer div.footer-items div.left div.social p,
  footer.footer div.footer-items div.right div.social p {
    font-size: 12px;
  }
}
footer.footer div.footer-items div.left .instagram,
footer.footer div.footer-items div.right .instagram {
  background-image: url("../assets/instagram.svg");
  background-position: left;
  background-repeat: no-repeat;
  height: 35px;
  width: 35px;
  display: block;
  float: left;
  background-size: cover;
  margin: 3px;
}
@media (max-width: 600px) {
  footer.footer div.footer-items div.left .instagram,
  footer.footer div.footer-items div.right .instagram {
    height: 35px;
    width: 35px;
    display: block;
    float: left;
    font-size: 10px;
    line-height: 1.9;
  }
}
footer.footer div.footer-items div.left div.newsletter input,
footer.footer div.footer-items div.right div.newsletter input {
  background-color: var(--color-dark);
  color: var(--color-beige);
  width: 100%;
  border: 2px solid;
  margin-top: 1em;
  height: 39px;
  padding: 5px;
}
@media (max-width: 600px) {
  footer.footer div.footer-items div.left div.newsletter input,
  footer.footer div.footer-items div.right div.newsletter input {
    font-size: 10px;
  }
}
footer.footer div.footer-items div.left div.newsletter input::placeholder,
footer.footer div.footer-items div.right div.newsletter input::placeholder {
  color: var(--color-beige);
  opacity: 1;
}
footer.footer div.footer-items div.left div.newsletter .button,
footer.footer div.footer-items div.right div.newsletter .button {
  font-family: var(--Montserrat-font-semibold);
  background-color: var(--color-beige);
  color: var(--color-orange);
  border: 1px solid var(--color-beige);
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  height: auto;
  padding: auto;
  font-size: 33px;
  margin-top: 7px;
  margin-bottom: 4px;
  transition-duration: 0.4s;
}
@media (max-width: 600px) {
  footer.footer div.footer-items div.left div.newsletter .button,
  footer.footer div.footer-items div.right div.newsletter .button {
    font-size: 19px;
  }
}
footer.footer div.footer-items div.left div.newsletter .button:hover,
footer.footer div.footer-items div.right div.newsletter .button:hover {
  background-color: var(--color-orange);
  border: 1px solid var(--color-orange);
  color: var(--color-beige);
}
footer.footer div.footer-items div.left div.newsletter p.sib-alert-message-success,
footer.footer div.footer-items div.right div.newsletter p.sib-alert-message-success {
  background-color: var(--color-beige) !important;
  border-color: var(--color-beige) !important;
  color: var(--color-dark) !important;
}
footer.footer div.footer-items div.mail {
  text-align: left;
  margin-top: 20px;
}
@media (max-width: 600px) {
  footer.footer div.footer-items div.mail {
    margin-top: 10px;
    text-align: center;
  }
}
footer.footer div.footer-items div.address {
  line-height: 2;
}
@media (max-width: 600px) {
  footer.footer div.footer-items div.address {
    font-size: 10px;
    line-height: 1.9;
  }
}
footer.footer div.footer-items div.opening {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
footer.footer div.footer-items div.opening p {
  line-height: 2;
}
@media (max-width: 600px) {
  footer.footer div.footer-items div.opening p {
    font-size: 10px;
    line-height: 1.9;
  }
}

div.contact p {
  text-align: center;
  margin-top: 1em;
}

.logo-small {
  background-size: contain;
  background-repeat: no-repeat;
  height: 50px;
  width: 77px;
}

.logo {
  background-size: contain;
  background-repeat: no-repeat;
  height: 100px;
  width: 103px;
}
@media (max-width: 900px) {
  .logo {
    height: 75px;
    width: 77px;
  }
}

.language-bar {
  width: 100vw;
  background-color: var(--color-orange);
  font-family: var(--Quicksand-font);
}
.language-bar .container {
  display: flex;
  justify-content: flex-end;
  height: 34px;
  align-items: center;
}
.language-bar ul {
  all: unset;
}
.language-bar li {
  list-style: none;
}
.language-bar a {
  color: white;
  margin-right: 25px;
}
@media (max-width: 900px) {
  .language-bar {
    display: none;
  }
}

header {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  left: 0;
  right: 0;
  margin-bottom: 40px;
  font-family: var(--Quicksand-font);
}
header .burger {
  background-image: url("../assets/burger.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 35px;
  height: 35px;
  margin-left: 0;
  transition: transform var(--transition-duration) var(--transition-timing-function);
}
@media (min-width: 601px) {
  header .burger {
    width: 35px;
    height: 35px;
  }
}
@media (min-width: 901px) {
  header .burger {
    display: none;
  }
}
header .burger.open {
  background-image: url("../assets/croix-noir.svg");
  background-position: center;
  transition: transform var(--transition-duration) var(--transition-timing-function);
  z-index: 10;
}
@media (max-width: 600px) {
  header .burger.open {
    width: 21px;
    height: 26px;
    top: 22px;
  }
}

.has-sticky {
  padding-bottom: 150px;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
}

.sticky-menu {
  background: #ffffff;
  background: rgb(255, 234, 227);
  position: fixed;
  top: 0;
  z-index: 2;
  left: 0;
  right: 0;
  height: 80px;
  width: 100%;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  border-bottom: none;
  transition: 1s;
}

.header__main__menu {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  margin-right: 42px;
  gap: 30px;
  align-items: center;
}
.header__main__menu ul {
  margin: 0 !important;
}
@media (max-width: 600px) {
  .header__main__menu {
    position: unset;
    transform: unset;
    height: 70px;
    margin-bottom: 0;
  }
}
@media (min-width: 601px) and (max-width: 1200px) {
  .header__main__menu {
    gap: 55px;
  }
}
@media (max-width: 900px) {
  .header__main__menu {
    display: none;
  }
}

ul.header__main__menu {
  font-size: 16px;
  margin-bottom: 0;
  height: 120px;
}
@media (max-width: 600px) {
  ul.header__main__menu {
    height: 70px;
  }
}
ul.header__main__menu li {
  list-style: none;
}
ul.header__main__menu a {
  color: var(--color-orange);
}
@media (max-width: 900px) {
  ul.header__main__menu a {
    display: none;
  }
}

.panier {
  background-image: url("../assets/panier.svg");
  background-size: contain;
  background-repeat: no-repeat;
  height: 35px;
  width: 40px;
}
@media (min-width: 901px) {
  .panier {
    display: none;
  }
}

.header__sidebar {
  position: fixed;
  top: 47px;
  right: 0;
  transform: translateX(-100%);
  transition: transform var(--transition-duration) var(--transition-timing-function);
  z-index: 10;
  width: 100vw;
  background-color: var(--color-brown);
  text-transform: uppercase;
}
.header__sidebar.with_alert {
  top: 66px;
}
.header__sidebar.open {
  padding-bottom: 25px;
  margin-top: -50px;
  padding-top: 40px;
  transform: translateX(0);
  transition: transform var(--transition-duration) var(--transition-timing-function);
}
@media (min-width: 600px) {
  .header__sidebar.open {
    min-height: 250px;
  }
}
.header__sidebar .header__sidebar__menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-left: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}
.header__sidebar .header__sidebar__menu ul,
.header__sidebar .header__sidebar__menu ol {
  margin: 0 !important;
}
.header__sidebar .header__sidebar__menu li.menu-item {
  display: flex;
  justify-content: flex-start;
}
@media (max-width: 1075px) {
  .header__sidebar .header__sidebar__menu li.menu-item {
    justify-content: center;
  }
}
.header__sidebar .header__sidebar__menu a {
  font-size: 38px;
  padding-left: 20px;
  padding-right: 20px;
  color: var(--color-orange);
}

.header__overlay {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.5);
  transition: transform var(--transition-duration) var(--transition-timing-function);
}
.header__overlay.open {
  display: block;
}

.header-main-container .sub-menu .menu-item {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}
.header-main-container .sub-menu li {
  padding: 10px 12px;
  font-size: 14px;
  font-family: var(--Quicksand-font);
  text-align-last: left;
}
.header-main-container .menu-item-has-children:hover {
  display: block;
}
.header-main-container li:hover .sub-menu {
  display: block;
}
.header-main-container li .sub-menu {
  display: none;
  position: absolute;
  margin-top: 10px !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  z-index: 10;
  background-color: var(--color-light-orange);
}
.header-main-container li .sub-menu li a:before {
  content: "›";
  font-family: "Courier New", Courier, monospace;
  display: inline-block;
  padding-right: 8px;
  font-size: 20px;
  line-height: 10px;
  opacity: 0.9;
}
.header-main-container .sub-menu li {
  width: 230px;
}
.header-main-container .sub-menu li a {
  padding: 12px 30px 12px 0px;
}
.header-main-container .sub-menu li a:hover:before {
  transform: translate(5px, 0);
  transition: 0.5s;
}
.header-main-container .menu-item-has-children {
  overflow: visible;
  height: 25px;
  text-align: left;
}
.header-main-container .menu-item-has-children a {
  padding: 2.5em 0;
}
.header-main-container .menu-item-has-children a:first-child:after {
  content: "›";
  transform: rotate(90deg);
  font-family: "Courier New", Courier, monospace;
  vertical-align: 75%;
  display: inline-block;
  font-size: 20px;
  line-height: 10px;
  opacity: 0.7;
  padding: 0 0 0 12px !important;
}
.header-main-container .sub-menu a:first-child:after {
  all: unset;
}

.header__sidebar__menu li.menu-item {
  display: block !important;
  padding-top: 5px;
}
.header__sidebar__menu .sub-menu li.menu-item {
  padding: 9px 0;
}
.header__sidebar__menu .sub-menu li.menu-item a {
  font-size: 30px !important;
}

body {
  background-color: #ffeae3 !important;
}

body.page-template-default .content-area {
  float: unset !important;
  width: 78% !important;
  margin: auto;
  color: var(--color-orange);
}
body.page-template-default .content-area a, body.page-template-default .content-area h1, body.page-template-default .content-area h2 {
  color: var(--color-orange);
}

.woocommerce-message, .woocommerce-info, .woocommerce-error, .woocommerce-noreviews, p.no-comments {
  background-color: var(--color-orange) !important;
}
.woocommerce-message a, .woocommerce-info a, .woocommerce-error a, .woocommerce-noreviews a, p.no-comments a {
  color: white !important;
}

.wc-proceed-to-checkout a {
  color: white !important;
  background-color: var(--color-orange) !important;
}

body.page-cart h1, body.page-cart h2, body.page-cart h3 {
  color: var(--color-orange);
  font-family: var(--Volkorn-font);
}
body.page-cart tr {
  background-color: var(--color-orange) !important;
}
body.page-cart tr th {
  color: white !important;
}
body.page-cart tr .input-text {
  background-color: var(--color-orange);
}
body.page-cart tr .input-text::placeholder {
  color: rgb(231, 231, 231);
}
body.page-cart tr td {
  background-color: var(--color-light-orange) !important;
}
body.page-cart table:not(.has-background) th {
  background-color: unset;
}
body.page-cart table.cart td.actions {
  border-top: unset;
}
body.page-cart input[type=text], body.page-cart input[type=number], body.page-cart input[type=email], body.page-cart input[type=tel], body.page-cart input[type=url], body.page-cart input[type=password], body.page-cart input[type=search], body.page-cart textarea, body.page-cart .input-text {
  color: white !important;
}
body.page-cart button, body.page-cart input[type=button], body.page-cart input[type=reset], body.page-cart input[type=submit], body.page-cart .button, body.page-cart .widget a.button {
  background-color: var(--color-orange);
  color: white;
}

body.page-checkout .woocommerce-checkout-review-order, body.page-checkout .form-row place-order {
  background-color: var(--color-light-orange) !important;
}
body.page-checkout #payment .place-order .button {
  background-color: var(--color-orange) !important;
  color: white;
}
body.page-checkout h1, body.page-checkout h2, body.page-checkout h3 {
  color: var(--color-orange);
  font-family: var(--Volkorn-font);
}
body.page-checkout #payment .payment_methods > li .payment_box, body.page-checkout #payment .place-order {
  background-color: var(--color-light-orange);
}
body.page-checkout th {
  background-color: var(--color-light-orange);
}
body.page-checkout table:not(.has-background) th, body.page-checkout table:not(.has-background) tbody td {
  background-color: unset;
}
body.page-checkout input[type=text], body.page-checkout input[type=number], body.page-checkout input[type=email], body.page-checkout input[type=tel], body.page-checkout input[type=url], body.page-checkout input[type=password], body.page-checkout input[type=search], body.page-checkout textarea, body.page-checkout .input-text {
  background-color: #fcfcfc;
}

/* shop page*/
body.archive img {
  height: 350px;
  object-fit: cover;
  margin-bottom: 15px !important;
}
@media (max-width: 374px) {
  body.archive img {
    height: 360px;
  }
}
@media (min-width: 375px) and (max-width: 484px) {
  body.archive img {
    height: 260px;
  }
}
@media (min-width: 480px) and (max-width: 585px) {
  body.archive img {
    height: 327px;
  }
}
@media (min-width: 900px) and (max-width: 1175px) {
  body.archive img {
    height: 275px;
  }
}
body.archive ul.products li.product .button, body.archive ul.products .wc-block-grid__product .button, body.archive .wc-block-grid__products li.product .button, body.archive .wc-block-grid__products .wc-block-grid__product .button {
  display: none;
}
body.archive ul.products, body.archive .wc-block-grid__products {
  display: flex;
  flex-wrap: wrap;
}
body.archive ul.products li.product.last, body.archive ul.products .wc-block-grid__product.last, body.archive .wc-block-grid__products li.product.last, body.archive .wc-block-grid__products .wc-block-grid__product.last {
  margin-right: 2.347826% !important;
}
body.archive .content-area {
  float: unset !important;
  width: 78%;
  margin: auto;
}
body.archive .woocommerce-products-header__title {
  display: none;
}
body.archive .woocommerce-products-header {
  border-top: 1px solid var(--color-orange);
  border-bottom: 1px solid var(--color-orange);
  padding: 15px 15px 1em 15px;
  font-size: 36px;
  font-family: var(--Volkorn-font);
  color: var(--color-orange);
  text-align: unset;
}
body.archive h1 {
  font-family: var(--Volkorn-font);
}
body.archive h1, body.archive h2, body.archive bdi {
  color: var(--color-orange);
}
body.archive .woocommerce-pagination .page-numbers li .page-numbers.current {
  background-color: var(--color-orange);
}
body.archive .woocommerce-loop-product__title {
  font-size: 17.5px !important;
  font-weight: 600 !important;
  font-family: var(--Quicksand-font);
}
body.archive bdi {
  font-family: var(--Volkorn-font);
  font-weight: 700;
}
body.archive .wc-block-grid__product-onsale, body.archive .onsale, body.archive .woocommerce-pagination .page-numbers li .page-numbers:not(.current) {
  color: var(--color-orange) !important;
}
body.archive .woocommerce-pagination .page-numbers li .page-numbers.current {
  color: white;
}
body.archive li.product {
  width: 22.63913% !important;
  float: left;
  margin-right: 2.347826% !important;
}
@media (max-width: 375px) {
  body.archive li.product {
    width: 100% !important;
  }
}
@media (min-width: 375px) and (max-width: 699px) {
  body.archive li.product {
    width: 46.9% !important;
  }
}
@media (min-width: 700px) and (max-width: 900px) {
  body.archive li.product {
    width: 30.9% !important;
  }
}
body.archive .woocommerce-breadcrumb a, body.archive a.woocommerce-review-link, body.archive .product_meta a, body.archive .woocommerce-breadcrumb {
  color: var(--color-orange) !important;
  font-size: 12px;
  font-family: var(--Quicksand-font) !important;
}
body.archive .term-description {
  color: var(--color-orange);
  padding-top: 20px;
  font-size: 15px;
  font-family: var(--Quicksand-font);
}
body.archive .term-description p {
  margin: 0;
}
body.archive .storefront-breadcrumb {
  margin: 0 0 0;
  font-size: 12px;
  font-family: var(--Quicksand-font) !important;
  box-sizing: border-box;
  width: 100%;
  padding-left: calc(50% - var(--container-width) / 2);
  padding-right: calc(50% - var(--container-width) / 2);
}
body.archive .storefront-breadcrumb .col-full {
  max-width: unset !important;
  padding: unset !important;
}

/* Single Product page */
body.single-product {
  color: var(--color-orange);
}
body.single-product h1, body.single-product h2 {
  color: var(--color-orange) !important;
}
body.single-product h1 {
  font-size: 36px;
  font-family: var(--Volkorn-font);
}
body.single-product bdi {
  font-size: 30px;
  font-family: var(--Volkorn-font);
}
body.single-product button.alt, body.single-product input[type=button].alt, body.single-product input[type=reset].alt, body.single-product input[type=submit].alt, body.single-product .button.alt, body.single-product .widget-area .widget a.button.alt {
  background-color: var(--color-orange);
  text-transform: uppercase;
  font-family: var(--Volkorn-font);
  font-size: 20px;
  line-height: 20px;
  height: 45px;
  color: #FFEAE3;
}
body.single-product .content-area {
  float: unset !important;
  width: 78% !important;
  margin: auto;
}
body.single-product .content-area a {
  color: var(--color-orange);
}
body.single-product .storefront-product-pagination a {
  display: none;
}
body.single-product .related, body.single-product .products {
  display: none;
}
body.single-product .site-main {
  margin-bottom: 0;
}
body.single-product li a {
  color: var(--color-orange) !important;
}
body.single-product form {
  border-top: 1px solid var(--color-orange);
}
body.single-product .product_meta {
  border-top: 1px solid var(--color-orange) !important;
}
body.single-product table:not(.has-background) th {
  background-color: var(--color-orange) !important;
  color: white;
}
body.single-product p.stars.selected a.active:before, body.single-product p.stars:hover a:before, body.single-product p.stars.selected a:not(.active):before, body.single-product p.stars.selected a.active:before {
  color: var(--color-orange);
}
body.single-product .woocommerce-breadcrumb a {
  color: var(--color-orange) !important;
  font-size: 12px;
  font-family: var(--Quicksand-font);
}
body.single-product .woocommerce-breadcrumb {
  font-size: 12px;
  font-family: var(--Quicksand-font);
}

body.home {
  background-color: var(--color-light-orange);
  font-style: var(--Quicksand-font) !important;
}
@media (max-width: 600px) {
  body.home li.splide__slide {
    height: 380px !important;
    margin-bottom: 20px;
  }
}
body.home section.hero {
  text-align: center;
  color: white;
}
body.home section.hero .image-hero {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  max-width: 100%;
  height: 780px;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  body.home section.hero .image-hero {
    background-repeat: no-repeat;
    background-position: center;
    height: 360px;
    background-size: cover;
  }
}
@media (min-width: 601px) and (max-width: 742px) {
  body.home section.hero .image-hero {
    height: 470px;
  }
}
@media (min-width: 743px) and (max-width: 900px) {
  body.home section.hero .image-hero {
    height: 530px;
  }
}
body.home .container_img_presentation {
  display: flex;
  gap: 20px;
  margin-bottom: 45px;
}
@media (max-width: 770px) {
  body.home .container_img_presentation {
    flex-direction: column;
  }
}
body.home .img_presentation {
  height: 437px;
  width: 50%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 770px) {
  body.home .img_presentation {
    width: 100%;
    max-height: 360px;
  }
}
@media (min-width: 742px) and (max-width: 900px) {
  body.home .img_presentation {
    max-height: 390px;
  }
}
body.home .heading_image {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 437px;
}
@media (max-width: 770px) {
  body.home .heading_image {
    min-height: 360px;
  }
}
body.home .heading_image h2 {
  font-size: 27px;
  font-family: var(--Quicksand-font) !important;
  color: white;
  font-weight: 600;
}
body.home .articles h2 {
  font-family: var(--Quicksand-font);
  text-align: center;
  color: var(--color-orange);
  font-weight: 500;
  margin-bottom: 45px;
}
body.home .articles ul.products::before {
  all: unset !important;
}
body.home .articles a {
  color: white !important;
}
body.home .display-posts-listing {
  display: flex;
  gap: 50px;
}
body.home .listing-item {
  max-width: 350px;
  list-style: none;
}
body.home .custom-buttons {
  border-radius: 10px !important;
  padding: 12px 9px !important;
  background-color: var(--color-orange) !important;
  color: white !important;
  font-size: 15px !important;
  font-family: var(--Quicksand-font) !important;
}
body.home .custom-buttons a {
  color: white;
  font-weight: 400;
  padding: 12px 15px;
}
body.home .products {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
body.home .products li {
  width: 23.5% !important;
}
@media (max-width: 374px) {
  body.home .products li {
    width: 100% !important;
  }
}
@media (min-width: 375px) and (max-width: 449px) {
  body.home .products li {
    width: 47.1% !important;
  }
}
@media (min-width: 450px) and (max-width: 759px) {
  body.home .products li {
    width: 47.5% !important;
  }
}
@media (min-width: 760px) and (max-width: 799px) {
  body.home .products li {
    width: 31.2% !important;
  }
}
@media (min-width: 800px) and (max-width: 965px) {
  body.home .products li {
    width: 23% !important;
  }
}
body.home .products img {
  min-height: 425px;
  object-fit: cover;
}
@media (max-width: 374px) {
  body.home .products img {
    min-height: 370px;
  }
}
@media (min-width: 375px) and (max-width: 499px) {
  body.home .products img {
    min-height: 280px;
  }
}
@media (min-width: 500px) and (max-width: 569px) {
  body.home .products img {
    min-height: 350px;
  }
}
@media (min-width: 570px) and (max-width: 643px) {
  body.home .products img {
    min-height: 380px;
  }
}
@media (min-width: 644px) and (max-width: 759px) {
  body.home .products img {
    min-height: 427px;
  }
}
@media (min-width: 760px) and (max-width: 799px) {
  body.home .products img {
    min-height: 350px;
  }
}
@media (min-width: 800px) and (max-width: 884px) {
  body.home .products img {
    min-height: 280px;
  }
}
@media (min-width: 885px) and (max-width: 964px) {
  body.home .products img {
    min-height: 315px;
  }
}
@media (min-width: 965px) and (max-width: 1100px) {
  body.home .products img {
    min-height: 345px;
  }
}
@media (max-width: 375px) {
  body.home .container {
    padding-left: calc(50% - var(--container-width) / 2);
    padding-right: calc(50% - var(--container-width) / 2);
  }
}
@media (min-width: 376px) and (max-width: 475px) {
  body.home .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 374px) {
  body.home ul.products li.product, body.home ul.products .wc-block-grid__product, body.home .wc-block-grid__products li.product, body.home .wc-block-grid__products .wc-block-grid__product {
    margin-bottom: 0;
  }
}
@media (min-width: 375px) and (max-width: 630px) {
  body.home ul.products li.product, body.home ul.products .wc-block-grid__product, body.home .wc-block-grid__products li.product, body.home .wc-block-grid__products .wc-block-grid__product {
    margin-bottom: 1.235em;
  }
}
@media (min-width: 631px) and (max-width: 900px) {
  body.home ul.products li.product, body.home ul.products .wc-block-grid__product, body.home .wc-block-grid__products li.product, body.home .wc-block-grid__products .wc-block-grid__product {
    margin-bottom: 2.235801em;
  }
}
body.home .button {
  display: none;
}
body.home .woocommerce-loop-product__title {
  font-size: 17.5px !important;
  font-weight: 600 !important;
  font-family: var(--Quicksand-font);
}
body.home bdi {
  font-size: 15px;
  font-family: var(--Volkorn-font);
  font-weight: 700;
  color: var(--color-orange);
}
body.home .onsale {
  color: var(--color-orange);
}

.splide__pagination__page {
  opacity: 1 !important;
}
.splide__pagination__page .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp {
  padding: unset;
}

ul.splide__pagination {
  display: none;
}

.splide__arrow {
  background: none !important;
}
.splide__arrow svg {
  fill: #f9592d !important;
  height: 2.2em !important;
  width: 2.2em !important;
}

.splide__pagination__page {
  width: auto;
  height: auto;
  border: none;
  padding-left: 5px;
  padding-right: 5px;
  padding-top: 5px;
  padding-bottom: 5px;
  transition: color var(--transition-duration) var(--transition-timing-function);
}
@media (max-width: 600px) {
  .splide__pagination__page {
    padding-left: 3px;
    padding-right: 3px;
    padding-top: 3px;
    padding-bottom: 3px;
  }
}

section.insta {
  position: relative;
}
section.insta .sb_instagram_header {
  display: none;
}
section.insta #sbi_load {
  display: none;
}
section.insta a.cta {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  background-color: var(--color-orange);
  color: var(--color-light-orange);
  text-align: center;
  font-size: 20px;
  padding: 4px 32px;
  border-radius: 80px;
  font-family: var(--Montserrat-font);
  display: inline-block;
  width: max-content;
  z-index: 2;
}

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