.button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 16px;
  padding: 12px 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  text-decoration: none;
  cursor: pointer;
  border-radius: 8px;
  transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 0.4s;
  background-color: var(--black);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  width: auto;
}
.button svg {
  transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 0.5s;
}
.button:hover {
  background-color: var(--red);
}
.button:hover svg {
  transform: rotate(34deg);
}
.button--red {
  background-color: var(--red);
}
.button--red:hover {
  background-color: var(--black);
}
@media (max-width: 640px) {
  .button {
    width: 100%;
  }
}
.button--small {
  padding: 6px 16px;
  font-size: 12px;
  line-height: 20px;
  font-weight: 700;
  border-radius: 48px;
}
.button--dark {
  background-color: var(--blue-dark);
  color: var(--white);
  border: 1px solid var(--blue-dark);
}
.button--dark:hover {
  background-color: var(--white);
  color: var(--blue-dark);
}
.button--white {
  background-color: var(--white);
  color: var(--primary);
}
.button--white:hover {
  background-color: var(--primary-hover);
}
.button--white:hover svg * {
  fill: var(--white);
}
.button--primary {
  background-color: var(--primary);
  color: var(--white);
}
.button--primary:hover {
  background-color: var(--primary-hover);
}
.button--outline {
  background-color: var(--white);
  color: var(--primary);
  border: 1px solid var(--primary);
}
.button--outline svg * {
  fill: var(--primary);
}
.button--outline:hover {
  border: 1px solid var(--primary);
  background-color: #B6E2E9;
}

.slide-up {
  animation: slide-up 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.h-100 {
  font-size: 64px;
  font-weight: 700;
  line-height: 68px;
}

.h-200 {
  font-size: 48px;
  font-weight: 700;
  line-height: 68px;
}
@media (max-width: 640px) {
  .h-200 {
    font-size: 36px;
    font-weight: 700;
    line-height: 46px;
  }
}

.h-300 {
  font-size: 36px;
  font-weight: 700;
  line-height: 46px;
}
@media (max-width: 640px) {
  .h-300 {
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
  }
}

.h-400 {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
}

.h-500 {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

.h-600 {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}

.t-128 {
  font-size: 128px;
  font-weight: 700;
  line-height: 144px;
}

.t-64 {
  font-size: 64px;
  font-weight: 700;
  line-height: 72px;
}
@media (max-width: 640px) {
  .t-64 {
    font-size: 42px;
    font-weight: 700;
    line-height: 54px;
  }
}

:root {
  --max-width:1440px;
  --max-width-small:calc(var(--max-width) * 0.7);
  --light-blue:#D1E7E5;
  --blue:#233988;
  --pink:#FAD0C6;
  --black:#233988;
  --green:#55BBAB;
  --yellow:#FFF268;
  --shadow: 0px 7px 7px 7px #46454510;
  --primary-color: #233988 !important;
  --fs-color-primary: #233988!important;
  --fs-color-secondary: #FFF268!important;
  --fs-color-success: #7a9c59!important;
  --fs-color-alert: #a64253!important;
  --fs-experimental-link-color: #010511!important;
  --fs-experimental-link-color-hover: #233988!important;
}
@media (max-width: 834px) {
  :root {
    --max-width: 100%;
  }
}

@font-face {
  font-family: "Acumin";
  src: url("fonts/Acumin_Pro_Light.otf");
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "Acumin";
  src: url("fonts/Acumin_Pro_Light.otf");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Acumin";
  src: url("fonts/Acumin_Pro_Medium.otf");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Acumin";
  src: url("fonts/Acumin_Pro_Medium.otf");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Bookman";
  src: url("fonts/BookmanJFPro_Regular.otf");
  font-weight: 400;
  font-display: swap;
}
body.toucan-theme {
  font-family: "Acumin";
  color: var(--black);
}
body.toucan-theme .amount {
  color: var(--blue);
}
body.toucan-theme h1,
body.toucan-theme h2,
body.toucan-theme h3,
body.toucan-theme h4 {
  font-family: "Bookman";
  font-weight: normal;
  color: var(--blue);
}
body.toucan-theme h1 {
  font-size: 42px;
}
body.toucan-theme h2 {
  font-size: 24px;
  font-family: "Acumin";
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.4px;
}
body.toucan-theme h3 {
  font-size: 24px;
  font-family: "Acumin";
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.4px;
}
body.toucan-theme .text * {
  color: var(--blue) !important;
}
body.toucan-theme .text h2 {
  text-transform: none;
  font-weight: normal;
}
body.toucan-theme .text h2 strong {
  font-weight: normal;
}

html {
  scroll-behavior: smooth;
}
html.lock {
  overflow: hidden !important;
}

.toucan-theme {
  scroll-behavior: smooth;
}
@media (max-width: 640px) {
  .toucan-theme .navlinks {
    display: flex;
    flex-flow: column;
    gap: 24px;
  }
}
.toucan-theme #cart-popup .heading-font {
  color: var(--black);
}
.toucan-theme .mfp-close {
  stroke: var(--black);
  opacity: 1;
}
.toucan-theme .mfp-close svg {
  filter: invert(1);
}
.toucan-theme .mfp-ready .mfp-close {
  stroke: white;
  opacity: 1;
}
.toucan-theme .mfp-ready .mfp-close svg {
  stroke: white;
  filter: invert(0);
}
.toucan-theme .wpcf7-form label {
  color: var(--black) !important;
}
.toucan-theme * {
  color: var(--black);
}
.toucan-theme *.indisponible, .toucan-theme *.indisponible * {
  color: #E30000;
}
.toucan-theme .is-divider {
  display: none;
}
.toucan-theme .product-lightbox-inner .h1 {
  font-size: 28px;
  font-family: "Bookman";
  font-weight: normal;
  color: var(--blue);
}
.toucan-theme .product-lightbox-inner .price .amount {
  color: var(--black);
}
.toucan-theme .container {
  padding-left: 24px;
  padding-right: 24px;
}
@media screen and (min-width: 1280px) {
  .toucan-theme .container {
    padding-left: 72px;
    padding-right: 72px;
  }
}
@media screen and (min-width: 1280px) {
  .toucan-theme .container.page-title-inner {
    padding-left: 48px;
    padding-right: 48px;
  }
}
@media screen and (min-width: 1280px) {
  .toucan-theme .container--big {
    padding-left: 48px;
    padding-right: 48px;
  }
}
.toucan-theme .container,
.toucan-theme .row {
  max-width: var(--max-width);
}
.toucan-theme .container--small,
.toucan-theme .row--small {
  max-width: var(--max-width-small);
}
@media (max-width: 640px) {
  .toucan-theme .container--small,
  .toucan-theme .row--small {
    max-width: 100%;
  }
}
.toucan-theme .term-description {
  padding: 48px 0;
}
.toucan-theme .term-description h1,
.toucan-theme .term-description h2,
.toucan-theme .term-description h3,
.toucan-theme .term-description h4 {
  color: var(--blue);
  font-size: 24px;
  line-height: 120%;
  font-weight: bold;
}
.toucan-theme .term-description strong {
  color: var(--blue);
}
.toucan-theme .term-description ul,
.toucan-theme .term-description ol {
  padding-left: 12px;
}
.toucan-theme .col,
.toucan-theme .columns,
.toucan-theme .gallery-item {
  padding-left: 24px;
  padding-right: 24px;
}
@media screen and (min-width: 1280px) {
  .toucan-theme .col,
  .toucan-theme .columns,
  .toucan-theme .gallery-item {
    padding-left: 48px;
    padding-right: 48px;
  }
}
.toucan-theme .wave {
  margin-top: -2px;
  --size: 28px;
  --m: 1.4;
  height: 53px;
  --p: calc(var(--m) * var(--size));
  --R: calc(var(--size) * sqrt(var(--m) * var(--m) + 1));
  transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 0.5s;
  background-repeat: repeat-x;
  background-image: url("data:image/svg+xml,%3Csvg width='1128' height='51' viewBox='0 0 1128 51' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1128 -15.0001L1128 43.5378C1109.24 33.5883 1087.9 33.5883 1069.15 43.5378C1050.39 53.4874 1031.63 53.4874 1012.88 43.5378C994.119 33.5883 975.362 33.5883 956.605 43.5378C937.848 53.4874 919.091 53.4874 900.334 43.5379C881.577 33.5883 862.82 33.5883 844.063 43.5379C825.306 53.4874 806.549 53.4874 787.792 43.5379C769.035 33.5883 750.278 33.5883 731.521 43.5379C712.764 53.4874 694.007 53.4874 675.25 43.5379C656.494 33.5883 637.737 33.5883 618.98 43.5379C600.223 53.4874 581.466 53.4874 562.709 43.5379C543.952 33.5883 525.195 33.5883 506.438 43.5379C487.681 53.4874 468.924 53.4874 450.167 43.5379C431.41 33.5883 412.653 33.5883 393.896 43.5379C375.139 53.4875 356.382 53.4875 337.625 43.5379C318.868 33.5883 300.111 33.5884 281.354 43.5379C262.597 53.4875 243.84 53.4875 225.083 43.5379C206.326 33.5884 187.569 33.5884 168.812 43.5379C150.056 53.4875 131.299 53.4875 112.542 43.5379C93.7847 33.5884 75.0278 33.5884 56.2708 43.5379C37.5139 53.4875 18.7569 53.4875 -2.51889e-05 43.5379L-3.03064e-05 -15L1128 -15.0001Z' fill='%23223B85'/%3E%3C/svg%3E%0A");
}
.toucan-theme .wave--green {
  background: var(--green);
  --size: 38px;
  --m: 1.4;
}
.toucan-theme .wave--search {
  height: 64px;
  margin-top: 0;
}
.toucan-theme .wave--pink {
  margin-top: -25px;
  height: 53px;
  background-image: url("data:image/svg+xml,%3Csvg width='1128' height='51' viewBox='0 0 1128 51' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1128 -15.0001L1128 43.5378C1109.24 33.5883 1087.9 33.5883 1069.15 43.5378C1050.39 53.4874 1031.63 53.4874 1012.88 43.5378C994.119 33.5883 975.362 33.5883 956.605 43.5378C937.848 53.4874 919.091 53.4874 900.334 43.5379C881.577 33.5883 862.82 33.5883 844.063 43.5379C825.306 53.4874 806.549 53.4874 787.792 43.5379C769.035 33.5883 750.278 33.5883 731.521 43.5379C712.764 53.4874 694.007 53.4874 675.25 43.5379C656.494 33.5883 637.737 33.5883 618.98 43.5379C600.223 53.4874 581.466 53.4874 562.709 43.5379C543.952 33.5883 525.195 33.5883 506.438 43.5379C487.681 53.4874 468.924 53.4874 450.167 43.5379C431.41 33.5883 412.653 33.5883 393.896 43.5379C375.139 53.4875 356.382 53.4875 337.625 43.5379C318.868 33.5883 300.111 33.5884 281.354 43.5379C262.597 53.4875 243.84 53.4875 225.083 43.5379C206.326 33.5884 187.569 33.5884 168.812 43.5379C150.056 53.4875 131.299 53.4875 112.542 43.5379C93.7847 33.5884 75.0278 33.5884 56.2708 43.5379C37.5139 53.4875 18.7569 53.4875 -2.51889e-05 43.5379L-3.03064e-05 -15L1128 -15.0001Z' fill='%23FAD0C6'/%3E%3C/svg%3E%0A");
}
.toucan-theme .breadcrumbs {
  color: var(--blue);
}
.toucan-theme .breadcrumbs a {
  color: var(--black);
}
.toucan-theme .button.single_add_to_cart_button,
.toucan-theme .add_to_cart_button {
  background-color: var(--blue) !important;
  border: 1px solid var(--blue);
  font-weight: normal;
  transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 0.5s;
  padding-top: 2px;
  color: white;
  border-radius: 24px;
}
.toucan-theme .button.single_add_to_cart_button:hover,
.toucan-theme .add_to_cart_button:hover {
  background-color: white !important;
  color: var(--blue);
  box-shadow: none;
}
.toucan-theme .cart .button.single_add_to_cart_button,
.toucan-theme .cart .add_to_cart_button {
  background-color: var(--blue) !important;
  border: 1px solid var(--blue);
  font-weight: normal;
  transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 0.5s;
  padding-top: 0;
  color: white;
  border-radius: 24px;
}
.toucan-theme .cart .button.single_add_to_cart_button:hover,
.toucan-theme .cart .add_to_cart_button:hover {
  background-color: white !important;
  color: var(--blue);
  box-shadow: none;
}
.toucan-theme .page-numbers {
  padding: 24px 0;
}
.toucan-theme .page-numbers .page-number {
  color: var(--blue);
  font-weight: bold;
  padding-top: 2px;
}
.toucan-theme .page-numbers .page-number.current, .toucan-theme .page-numbers .page-number:hover {
  background-color: var(--yellow);
  color: var(--blue);
  border-color: var(--yellow);
}
.toucan-theme .woocommerce-mini-cart__buttons .wc-forward,
.toucan-theme .woocommerce-mini-cart__buttons .wc-backward,
.toucan-theme .return-to-shop .wc-forward,
.toucan-theme .return-to-shop .wc-backward {
  background-color: var(--blue);
  border: 1px solid var(--blue);
  transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 0.5s;
  line-height: 100%;
  padding: 14px 18px 12px 18px;
  font-weight: normal;
  min-height: unset;
  color: white;
  border-radius: 24px;
}
.toucan-theme .woocommerce-mini-cart__buttons .wc-forward.checkout,
.toucan-theme .woocommerce-mini-cart__buttons .wc-backward.checkout,
.toucan-theme .return-to-shop .wc-forward.checkout,
.toucan-theme .return-to-shop .wc-backward.checkout {
  background-color: var(--yellow) !important;
  border: 1px solid var(--yellow);
  color: var(--blue);
}
.toucan-theme .woocommerce-mini-cart__buttons .wc-forward:hover,
.toucan-theme .woocommerce-mini-cart__buttons .wc-backward:hover,
.toucan-theme .return-to-shop .wc-forward:hover,
.toucan-theme .return-to-shop .wc-backward:hover {
  background-color: white !important;
  color: var(--blue);
  box-shadow: none;
  border: 1px solid var(--blue);
}
.toucan-theme .nl-form--last {
  background-color: var(--blue);
}
.toucan-theme .nl-form__container {
  padding: 72px 0 48px 0;
  background-color: var(--pink);
}
.toucan-theme .nl-form__container .container {
  display: flex;
  flex-flow: column;
  align-items: center;
  position: relative;
}
.toucan-theme .nl-form__container .container .star {
  position: absolute;
  left: 0;
  top: 48px;
}
.toucan-theme .nl-form__container .container .star--group {
  left: unset;
  top: unset;
  right: 0;
  bottom: 48px;
}
@media (max-width: 640px) {
  .toucan-theme .nl-form__container .container .star {
    display: none;
  }
}
.toucan-theme .nl-form__container h2,
.toucan-theme .nl-form__container p {
  display: flex;
  text-align: center;
  width: auto;
  color: var(--blue);
}
.toucan-theme .nl-form__container form .form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.toucan-theme .nl-form__container form .form-row input {
  height: 100%;
  font-size: 14px;
  padding: 18px 24px;
  background-color: white;
  box-shadow: none;
  border: none;
}
.toucan-theme .nl-form__container form .form-row .tnp-field-button {
  margin-bottom: 0;
  min-height: 100%;
  height: 100%;
}
.toucan-theme .nl-form__container form .form-row .tnp-field-button input {
  min-height: 100%;
  height: 100%;
  line-height: 100%;
  font-weight: normal;
  background-color: var(--blue);
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border: 1px solid var(--blue);
}
.toucan-theme .nl-form__container form .form-row .tnp-field-button input:hover {
  background-color: var(--light-blue);
  color: var(--blue);
  border: 1px solid var(--light-blue);
}
.toucan-theme .nl-form__container form .form-row label {
  overflow: hidden;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  height: 100%;
  background-color: white;
  width: 100%;
  margin-bottom: 0;
}
.toucan-theme .nl-form__container form [type=checkbox] {
  height: 18px;
  width: 18px;
  border: 1px solid white;
  max-width: 18px;
}
.toucan-theme.page-template-page-gutemberg #content {
  padding: 0;
}
.toucan-theme.page-template-page-gutemberg .wp-block-columns {
  margin: 0 auto;
}
.toucan-theme.page-template-page-gutemberg .wp-block-columns.has-background {
  max-width: 100%;
  padding-top: 48px;
  padding-bottom: 48px;
}
.toucan-theme.page-template-page-gutemberg .wp-block-columns.has-background .wp-block-column {
  max-width: var(--max-width-small);
  padding-left: 24px;
  padding-right: 24px;
  margin: 0 auto;
}
@media screen and (min-width: 1280px) {
  .toucan-theme.page-template-page-gutemberg .wp-block-columns.has-background .wp-block-column {
    padding-left: 48px;
    padding-right: 48px;
  }
}
.toucan-theme.page-template-page-gutemberg .wp-block-columns.has-background.wp-container-core-columns-is-layout-1 .wp-block-column {
  max-width: 100%;
}
.toucan-theme.page-template-page-gutemberg .alignwide.has-background {
  max-width: 100%;
}
.toucan-theme.page-template-page-gutemberg .alignwide.has-background .wp-block-column {
  max-width: var(--max-width);
  padding-left: 24px;
  padding-right: 24px;
}
@media screen and (min-width: 1280px) {
  .toucan-theme.page-template-page-gutemberg .alignwide.has-background .wp-block-column {
    padding-left: 48px;
    padding-right: 48px;
  }
}

.toucan-theme #header {
  transition: transform 0.4s ease-in-out;
  transform: translateY(0);
}
.toucan-theme.scrolled-down #header {
  transform: translateY(-100%);
}
.toucan-theme.scrolled-down #header #logo a img {
  max-height: 90px;
}
@media (max-width: 834px) {
  .toucan-theme.scrolled-down #header #logo a img {
    max-height: 65px;
  }
}
.toucan-theme #top-bar {
  background-color: var(--yellow) !important;
}
.toucan-theme #top-bar .header-divider {
  border: none;
  display: none;
}
.toucan-theme #top-bar .navlinks {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
.toucan-theme #top-bar .navlinks a {
  font-size: 14px !important;
  color: var(--blue) !important;
}
.toucan-theme #top-bar p {
  color: var(--blue) !important;
  font-size: 14px !important;
  font-weight: normal !important;
}
.toucan-theme #header {
  position: fixed;
  width: 100%;
}
.toucan-theme #header .mobile-nav > .search-form,
.toucan-theme #header .sidebar-menu .search-form {
  width: unset;
}
.toucan-theme #header .icon-heart::before {
  display: none;
}
.toucan-theme #header .header-search-form-wrapper {
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.toucan-theme #header .header-cart-link,
.toucan-theme #header .wishlist-link {
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.toucan-theme #header .header-cart-link i,
.toucan-theme #header .wishlist-link i {
  display: flex;
  align-items: center;
  justify-content: center;
}
.toucan-theme #header .header-cart-link i:after,
.toucan-theme #header .wishlist-link i:after {
  background-color: var(--yellow) !important;
  color: var(--blue);
  bottom: -4px;
  top: unset;
  font-weight: normal;
  opacity: 1;
  box-shadow: none;
}
.toucan-theme #header + * {
  padding-top: 220px;
}
@media (max-width: 834px) {
  .toucan-theme #header + * {
    padding-top: 180px;
  }
}
.toucan-theme #header #logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.toucan-theme #header #logo a {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.toucan-theme #header #logo a img {
  max-height: 190px;
  height: 100%;
}
@media (max-width: 834px) {
  .toucan-theme #header #logo a img {
    max-height: 100px;
  }
}
.toucan-theme #header .wave {
  --size: 28px;
  --m: 1.4;
  margin-top: -33px;
  height: 53px;
}
@media (max-width: 834px) {
  .toucan-theme #header .wave {
    --size: 18px;
    --m: 1.2;
  }
}
.toucan-theme #header #logo a img {
  max-height: 90px;
}
@media (max-width: 834px) {
  .toucan-theme #header #logo a img {
    max-height: 65px;
  }
}
.toucan-theme .mobile-sidebar a {
  color: var(--blue);
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  text-transform: uppercase;
  font-family: "Acumin";
}
.toucan-theme .mobile-sidebar i {
  color: var(--blue);
  opacity: 1;
}
.toucan-theme .mobile-sidebar ul.sub-menu li {
  padding: 6px 0;
}
.toucan-theme .mobile-sidebar ul.sub-menu li a {
  color: var(--blue);
  text-transform: none;
}
.toucan-theme .search-container {
  display: none;
}
.toucan-theme .search-container input {
  padding: 12px 24px;
}
.toucan-theme .search-container.show {
  display: flex;
  flex-flow: column;
  position: fixed;
  z-index: 9999;
  width: 100%;
}
.toucan-theme .search-container.show .search {
  padding: 50px 0;
  background-color: var(--blue);
}
@media (max-width: 834px) {
  .toucan-theme .search-container.show .search {
    padding: 33px 0;
  }
}
.toucan-theme .search-container.show .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.toucan-theme .search-container.show .container .searchform-wrapper {
  max-width: 40vw;
}
@media (max-width: 834px) {
  .toucan-theme .search-container.show .container .searchform-wrapper {
    max-width: 80vw;
  }
}
.toucan-theme .search-overlay.show {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9998;
  background-color: rgba(0, 0, 0, 0.8);
}
.toucan-theme .toggle-search {
  cursor: pointer;
  display: flex;
  align-items: center;
}
.toucan-theme #masthead {
  background-color: var(--blue);
  height: auto;
  padding: 24px 0;
}
.toucan-theme #masthead .header-inner {
  display: flex;
  align-items: center;
}
@media (max-width: 834px) {
  .toucan-theme #masthead .header-inner {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    padding-left: 12px;
    padding-right: 12px;
  }
  .toucan-theme #masthead .header-inner:after {
    display: none;
  }
  .toucan-theme #masthead .header-inner #logo {
    grid-column: 2;
  }
  .toucan-theme #masthead .header-inner .icon-menu {
    color: white;
  }
  .toucan-theme #masthead .header-inner #logo {
    width: auto;
  }
  .toucan-theme #masthead .header-inner .flex-right li {
    margin: 5px;
  }
  .toucan-theme #masthead .header-inner .flex-right li.header-search-lightbox {
    display: none;
  }
}
@media (max-width: 834px) and (max-width: 640px) {
  .toucan-theme #masthead .header-inner .flex-right li {
    margin: 5px 10px;
  }
}
@media (max-width: 834px) {
  .toucan-theme #masthead .header-inner .flex-right svg {
    max-width: 18px;
  }
}
@media (max-width: 640px) {
  .toucan-theme #masthead .header-inner {
    grid-template-columns: 1.5fr 2.5fr 1fr;
  }
}
.toucan-theme #masthead ul.header-nav.nav-left {
  margin-top: 0;
  display: flex;
  flex-flow: row;
  gap: 24px;
  align-items: center;
}
.toucan-theme #masthead ul.header-nav.nav-left li a {
  position: relative;
  color: white;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  text-transform: uppercase;
  font-family: "Acumin";
}
.toucan-theme #masthead ul.header-nav.nav-left li a:after {
  position: absolute;
  bottom: 0;
  content: "";
  display: flex;
  width: 0;
  height: 1px;
  background-color: transparent;
  transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 0.5s;
}
.toucan-theme #masthead ul.header-nav.nav-left li a:hover:after {
  width: 100%;
  height: 1px;
  background-color: white;
}
.toucan-theme #masthead ul.header-nav.nav-left li a[aria-haspopup] {
  display: flex;
  align-items: center;
}
.toucan-theme #masthead ul.header-nav.nav-left li a[aria-haspopup]:after {
  content: none;
}
.toucan-theme #masthead ul.header-nav.nav-left li a a {
  padding-top: 14px;
}
.toucan-theme #masthead ul.header-nav.nav-right {
  margin-top: 0;
  display: flex;
  flex-flow: row;
  gap: 16px;
  align-items: center;
}
.toucan-theme #masthead ul.header-nav.nav-right li.menu-item a {
  padding-top: 14px;
  position: relative;
  color: white;
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  line-height: 120%;
  font-family: "Acumin";
}
.toucan-theme #masthead ul.header-nav.nav-right li.menu-item a:after {
  position: absolute;
  bottom: 0;
  content: "";
  display: flex;
  width: 0;
  height: 1px;
  background-color: transparent;
  transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 0.5s;
}
.toucan-theme #masthead ul.header-nav.nav-right li.menu-item a:hover:after {
  width: 100%;
  height: 1px;
  background-color: white;
}
.toucan-theme #masthead ul.header-nav.nav-right li.menu-item a[aria-haspopup] {
  display: flex;
  align-items: center;
}
.toucan-theme #masthead ul.header-nav.nav-right li.menu-item a[aria-haspopup]:after {
  content: none;
}
.toucan-theme #masthead ul.header-nav > li {
  margin: 0;
}
.toucan-theme #masthead ul.header-nav > li.header-wishlist-icon {
  margin-left: 24px;
}
.toucan-theme #masthead ul.header-nav > li .header-search-form-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.toucan-theme #masthead ul.header-nav > li .sub-menu {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  padding: 12px;
}
.toucan-theme #masthead ul.header-nav > li .sub-menu li a {
  position: relative;
  border-bottom: unset;
  color: var(--black);
  font-weight: 400;
  font-size: 16px;
  text-transform: none;
  line-height: 100%;
  letter-spacing: unset;
  font-family: "Acumin";
}
.toucan-theme #masthead ul.header-nav > li .sub-menu li a:after {
  position: absolute;
  bottom: 0;
  content: "";
  display: flex;
  width: 0;
  height: 1px;
  background-color: transparent;
  border-bottom: unset;
  transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 0.5s;
}
.toucan-theme #masthead ul.header-nav > li .sub-menu li a:hover:after {
  width: 100%;
  height: 1px;
  background-color: var(--blue);
}
.toucan-theme #masthead ul.header-nav > li .sub-menu li a[aria-haspopup] {
  display: flex;
  align-items: center;
}
.toucan-theme #masthead ul.header-nav > li .sub-menu li a[aria-haspopup]:after {
  content: none;
}
.toucan-theme #masthead ul.header-nav > li .sub-menu li a:hover {
  color: var(--blue);
}
.toucan-theme #masthead ul.header-nav li.current-dropdown > .nav-dropdown {
  left: 0;
}
.toucan-theme #masthead ul.header-nav li.current-dropdown > .nav-dropdown:after {
  content: none;
}
.toucan-theme #masthead ul.header-nav li.current-dropdown::before {
  border: none;
}
.toucan-theme #masthead ul.header-nav li.current-dropdown::after {
  border-width: 12px;
  border-radius: 4px;
}
.toucan-theme #masthead ul.header-nav .icon-angle-down {
  opacity: 1;
  margin-left: 6px;
  margin-bottom: 6px;
}
.toucan-theme #masthead ul.header-nav .icon-angle-down:before {
  content: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.6001 1.06L6.6001 7.06L0.594123 1.06' stroke='%23ffffff' stroke-width='1.44' stroke-miterlimit='10'/%3E%3C/svg%3E%0A");
}
.toucan-theme #masthead ul.header-nav i {
  line-height: 0;
}
.toucan-theme #masthead ul.header-nav .search-form {
  width: auto;
}
.toucan-theme #masthead .nav-dropdown {
  box-shadow: var(--shadow);
  border-radius: 6px;
  border: none;
  padding: 0;
  color: var(--black);
}
.toucan-theme #masthead .account-item ul.nav-dropdown {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  padding: 12px;
}
.toucan-theme #masthead .account-item ul.nav-dropdown li a {
  position: relative;
  border-bottom: unset;
  color: var(--black);
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  font-family: "Acumin";
}
.toucan-theme #masthead .account-item ul.nav-dropdown li a:after {
  position: absolute;
  bottom: 0;
  content: "";
  display: flex;
  width: 0;
  height: 1px;
  background-color: transparent;
  border-bottom: unset;
  transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 0.5s;
}
.toucan-theme #masthead .account-item ul.nav-dropdown li a:hover:after {
  width: 100%;
  height: 1px;
  background-color: var(--blue);
}
.toucan-theme #masthead .account-item ul.nav-dropdown li a[aria-haspopup] {
  display: flex;
  align-items: center;
}
.toucan-theme #masthead .account-item ul.nav-dropdown li a[aria-haspopup]:after {
  content: none;
}
.toucan-theme #masthead .account-item ul.nav-dropdown li a:hover {
  color: var(--blue);
}
.toucan-theme #masthead .widget_shopping_cart {
  padding: 24px;
  box-shadow: var(--shadow);
  border-radius: 6px;
  border: none;
  align-items: flex-start;
  justify-content: flex-start;
  flex-flow: column;
  gap: 12px;
  padding: 12px;
}

#footer {
  padding: 48px 0;
  background-color: var(--blue);
}
#footer .trustpilot-widget {
  margin-bottom: 48px;
}
@media (max-width: 640px) {
  #footer .footer {
    padding-top: 0;
  }
}
#footer .copyright-footer {
  display: flex;
  align-items: center;
  justify-content: center;
}
#footer .absolute-footer {
  background-color: var(--blue);
  margin-bottom: 0;
}
#footer .absolute-footer .copyright-footer {
  color: white;
  font-weight: normal;
  text-transform: none;
  font-size: 14px;
  font-family: "Acumin";
}
#footer .absolute-footer .copyright-footer strong {
  color: white;
  font-weight: normal;
}
#footer .absolute-footer ul {
  opacity: 1;
}
#footer .absolute-footer li a {
  opacity: 1;
  color: white;
  font-size: 14px;
  font-weight: normal;
  text-transform: none;
  font-family: "Acumin";
}
#footer .footer {
  border: none;
  background-color: var(--blue);
}
#footer .footer .widget_media_image img {
  max-width: 150px;
  max-height: 90px;
  width: auto;
}
#footer .footer .row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
}
@media (max-width: 834px) {
  #footer .footer .row {
    display: flex;
    flex-flow: column;
  }
  #footer .footer .row .widget_media_image {
    order: 1;
  }
  #footer .footer .row #nav_menu-6 {
    order: 2;
  }
  #footer .footer .row #nav_menu-5 {
    order: 3;
  }
  #footer .footer .row #text-11, #footer .footer .row #text-13 {
    order: 4;
  }
  #footer .footer .row #custom_html-5 {
    order: 5;
  }
  #footer .footer .row #text-7 {
    order: 6;
  }
}
#footer .footer .row a {
  color: white;
  font-weight: normal;
}
#footer .footer .row a img {
  margin-bottom: 72px;
}
@media (max-width: 640px) {
  #footer .footer .row a img {
    margin-bottom: 12px;
  }
}
#footer .footer .row .col {
  max-width: unset;
}
#footer .footer .row p {
  color: white;
  padding: 0;
  margin: 0;
}
#footer .footer .row ul {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  padding: 0;
  color: white;
  width: 100%;
}
#footer .footer .row ul.menu li + li {
  border: none;
}
#footer .footer .row ul li {
  padding: 0;
  margin: 0;
  color: white;
  width: 100%;
}
#footer .footer .row ul li a {
  color: white;
  opacity: 0.8;
  padding: 0;
}
#footer .footer .row ul li a:hover {
  opacity: 1;
}
#footer .footer .row .horaires-custom {
  margin-top: -68px;
}
@media (max-width: 834px) {
  #footer .footer .row .horaires-custom {
    margin-top: 0;
  }
}
#footer .footer .row .horaires-custom hr {
  background-color: white;
  opacity: 0.4;
  border: 1px solid white;
}
#footer .footer .row .horaires-custom .social-icons {
  display: flex;
  gap: 12px;
}
#footer .footer .row .horaires-custom .social-icons i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4em;
  padding-top: 2px;
}
#footer .footer .row .horaires-custom a {
  margin: 0;
  padding-left: 0;
  background-color: var(--yellow) !important;
  border: none !important;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  max-width: 50px;
  min-width: 50px;
  max-height: 50px;
  min-height: 50px;
  height: 100%;
}
#footer .footer .row .horaires-custom a i {
  color: var(--blue) !important;
}
#footer .footer .row .widget-title {
  font-size: 18px;
  color: white;
  font-weight: normal;
  font-family: "Acumin";
  letter-spacing: 0.4px;
}
#footer .is-divider {
  display: none;
}

#top-link {
  background-color: var(--yellow);
  border-color: var(--blue);
}
#top-link i {
  color: var(--blue);
}
#top-link:hover {
  background-color: white;
}

.toucan-theme .yith-wcbm-badge__wrap * {
  color: white;
}
.toucan-theme .yith-wcbm-badge {
  border-radius: 0 !important;
  width: auto !important;
  height: auto !important;
  text-transform: uppercase;
  padding: 12px !important;
}
@media (max-width: 640px) {
  .toucan-theme .yith-wcbm-badge {
    padding: 8px;
  }
}
.toucan-theme .yith-wcbm-badge * {
  color: white;
  font-size: 12px !important;
}
.toucan-theme .tabs li * {
  color: var(--black);
}
.toucan-theme .related h3 {
  font-family: "Acumin";
  letter-spacing: 0;
}
.toucan-theme .wishlist_table .add_to_cart {
  padding: 12px 16px 10px 16px;
}
.toucan-theme .wishlist-fragment + .text * {
  color: var(--black) !important;
}
.toucan-theme .woocommerce-form-login__submit,
.toucan-theme .woocommerce-form-register__submit {
  background-color: var(--blue);
  border: 1px solid var(--blue);
  transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 0.5s;
  color: white;
  border-radius: 24px;
  font-size: 12px;
  font-weight: normal;
  line-height: 100%;
  padding: 12px 16px 10px 16px;
}
.toucan-theme .woocommerce-form-login__submit:hover,
.toucan-theme .woocommerce-form-register__submit:hover {
  background-color: white;
  color: var(--blue);
  box-shadow: none;
}
.toucan-theme .account-login-inner h3, .toucan-theme .account-register-inner h3 {
  font-family: "Acumin";
  letter-spacing: 0;
}
.toucan-theme .social-icons {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.toucan-theme .button.icon.circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  min-width: 48px;
  min-height: 48px;
  height: 48px;
  width: 48px;
}
.toucan-theme .button.icon.circle i {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 2px;
}
.toucan-theme .wishlist-icon:hover .wishlist-popup * {
  color: white !important;
}
.toucan-theme .product-images .wishlist-button {
  margin: 0;
  border: none;
}
.toucan-theme .product-images .wishlist-button svg {
  transform: none;
}
.toucan-theme .product-images .wishlist-button svg * {
  line-height: 0;
  fill: white;
}
.toucan-theme .product-images .wishlist-button:hover, .toucan-theme .product-images .wishlist-button.wishlist-added {
  background: transparent;
}
.toucan-theme .product-images .wishlist-button:hover *, .toucan-theme .product-images .wishlist-button.wishlist-added * {
  fill: var(--yellow);
}
.toucan-theme .mobile-sidebar .social-icons {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.toucan-theme .mobile-sidebar .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  min-width: 48px;
  min-height: 48px;
  height: 48px;
  width: 48px;
  border-radius: 48px;
}

.toucan-theme .shop-container .products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.toucan-theme .shop-container .products .product {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}
@media (max-width: 640px) {
  .toucan-theme .shop-container .products {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
    width: 100%;
    gap: 12px;
  }
}
.toucan-theme .shop-container .products:after {
  display: none;
}
.toucan-theme .category-page-row {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 3fr;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: 48px;
  padding-right: 48px;
}
@media (max-width: 640px) {
  .toucan-theme .category-page-row {
    grid-template-columns: 1fr;
    padding-left: 24px;
    padding-right: 24px;
  }
}
.toucan-theme .category-page-row:after {
  display: none;
}
.toucan-theme #shop-sidebar .product-categories {
  padding-top: 0;
}
.toucan-theme #shop-sidebar .widget-title {
  display: flex;
  color: var(--blue);
  font-family: "Acumin";
  font-weight: normal;
  font-size: 16px;
  margin-bottom: 12px;
}
.toucan-theme #shop-sidebar button {
  background-color: var(--blue);
  border: 1px solid var(--blue);
  transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 0.5s;
  color: white;
  border-radius: 24px;
  font-size: 12px;
  font-weight: normal;
  line-height: 100%;
  padding: 12px 16px 10px 16px;
}
.toucan-theme #shop-sidebar button:hover {
  background-color: white;
  color: var(--blue);
  box-shadow: none;
}
.toucan-theme #shop-sidebar button.toggle {
  background-color: transparent;
  color: var(--blue);
  border: none;
  opacity: 1;
}
.toucan-theme #shop-sidebar button.woocommerce-widget-layered-nav-dropdown__submit {
  margin-top: 12px;
}
.toucan-theme #shop-sidebar .is-divider {
  display: none;
}
.toucan-theme #shop-sidebar .amount {
  color: var(--blue);
  font-weight: 500;
  font-family: "Acumin";
}
.toucan-theme #shop-sidebar .select2-container .select2-selection--multiple {
  min-height: auto;
  padding: 0;
  padding-left: 12px;
}
.toucan-theme #shop-sidebar .select2-selection__choice {
  background-color: var(--yellow);
  color: var(--blue);
}
.toucan-theme #shop-sidebar .select2-selection__rendered {
  padding: 0;
}
.toucan-theme #shop-sidebar .price_slider .ui-slider-range,
.toucan-theme #shop-sidebar .price_slider .ui-slider-handle {
  background-color: var(--blue);
}
.toucan-theme #shop-sidebar .cat-item.current-cat > a {
  color: var(--blue);
}
.toucan-theme .product-small {
  height: 100%;
  display: flex;
  flex-flow: column;
  position: relative;
  margin: unset;
}
.toucan-theme .product-small .yith-wcbm-badge {
  border-radius: 0 !important;
  width: auto !important;
  height: auto !important;
  text-transform: uppercase;
  padding: 12px;
}
@media (max-width: 640px) {
  .toucan-theme .product-small .yith-wcbm-badge {
    padding: 8px;
  }
}
.toucan-theme .product-small .yith-wcbm-badge * {
  color: white;
  font-size: 12px !important;
}
.toucan-theme .product-small .box-image {
  overflow: unset;
}
.toucan-theme .product-small .wishlist-item {
  top: -12px;
  right: -12px;
  z-index: 2;
  margin: 0;
  padding: 0;
}
@media (max-width: 640px) {
  .toucan-theme .product-small .wishlist-item {
    top: 0;
    right: 0;
  }
}
.toucan-theme .product-small .wishlist-item .wishlist-button {
  margin: 0;
  border: none;
}
.toucan-theme .product-small .wishlist-item .wishlist-button svg {
  transform: none;
}
.toucan-theme .product-small .wishlist-item .wishlist-button svg * {
  line-height: 0;
  fill: white;
}
.toucan-theme .product-small .wishlist-item .wishlist-button:hover, .toucan-theme .product-small .wishlist-item .wishlist-button.wishlist-added {
  background: transparent;
}
.toucan-theme .product-small .wishlist-item .wishlist-button:hover *, .toucan-theme .product-small .wishlist-item .wishlist-button.wishlist-added * {
  fill: var(--yellow);
}
.toucan-theme .product-small .grid-tools a {
  background-color: var(--yellow);
  color: var(--blue);
}
.toucan-theme .product-small.col {
  max-width: unset;
}
.toucan-theme .product-small .col-inner {
  height: 100%;
  box-shadow: var(--shadow);
  border-radius: 6px;
  box-sizing: border-box;
  padding: 24px;
}
@media (max-width: 640px) {
  .toucan-theme .product-small .col-inner {
    padding: 0;
  }
}
.toucan-theme .product-small .col-inner:hover {
  box-shadow: var(--shadow);
}
.toucan-theme .product-small .box-image {
  padding-top: 0;
  margin: 0;
  min-height: 240px;
  height: 100%;
}
@media (max-width: 640px) {
  .toucan-theme .product-small .box-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: unset;
    min-height: 150px;
  }
}
.toucan-theme .product-small .box-image picture {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 240px;
  height: 100%;
}
.toucan-theme .product-small .box-image picture img {
  max-height: 240px;
  position: relative;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.toucan-theme .product-small .title-wrapper {
  overflow: hidden;
  max-width: 100%;
}
.toucan-theme .product-small .category.no-text-overflow {
  overflow: unset;
  white-space: unset;
  color: var(--blue) !important;
}
@media (max-width: 640px) {
  .toucan-theme .product-small .category.no-text-overflow {
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-height: 3.6em;
  }
}
.toucan-theme .product-small .box-text {
  display: grid;
  grid-auto-rows: auto;
  padding: 0;
  margin-top: 12px;
  height: 100%;
  grid-template-rows: 2fr auto auto;
}
@media (max-width: 640px) {
  .toucan-theme .product-small .box-text {
    height: 100% !important;
    margin-top: 0;
    padding: 12px;
  }
}
.toucan-theme .product-small .product-title {
  font-size: 18px;
  height: auto !important;
}
.toucan-theme .product-small .product-title * {
  color: var(--blue);
}
@media (max-width: 640px) {
  .toucan-theme .product-small .product-title * {
    font-size: 14px;
  }
}
.toucan-theme .product-small .price-wrapper {
  height: auto !important;
}
.toucan-theme .product-small .price-wrapper * {
  color: var(--blue);
  font-weight: 500;
  font-size: 18px;
  font-weight: bold;
  font-family: "Acumin";
}
@media (max-width: 640px) {
  .toucan-theme .product-small .price-wrapper * {
    font-size: 14px;
  }
}
.toucan-theme .product-small .add-to-cart-button {
  margin: 0;
  justify-self: center;
  align-self: flex-end;
}
.toucan-theme .product-small .add_to_cart_button {
  display: flex;
  padding: 0;
  margin: 0;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}
@media (max-width: 640px) {
  .toucan-theme .product-small .add_to_cart_button {
    justify-content: center;
    text-decoration: underline;
  }
  .toucan-theme .product-small .add_to_cart_button svg {
    display: none;
  }
}
.toucan-theme .product-small .add_to_cart_button:hover .add {
  color: var(--blue);
  text-decoration: underline;
}
.toucan-theme .product-small .add_to_cart_button .add {
  color: var(--blue);
  padding-top: 6px;
  font-weight: normal;
}
.toucan-theme .product-small .add_to_cart_button:before {
  content: none;
}
.toucan-theme .product-small .add_to_cart_button:hover svg {
  transform: none;
}
.toucan-theme .product-small .add_to_cart_button svg:hover .filled {
  fill: var(--yellow);
}
.toucan-theme .product-small .add_to_cart_button .filled {
  fill: transparent;
}
.toucan-theme .product-small .add_to_cart_button + .added_to_cart {
  display: none;
}
.toucan-theme .product-small .add_to_cart_button.added {
  display: flex;
}
.toucan-theme .product-small .add_to_cart_button.added .filled {
  fill: var(--yellow);
}
.toucan-theme .product-small .add_to_cart_button.added + .added_to_cart {
  display: none;
}
.toucan-theme .section-title-bold-center span,
.toucan-theme .section-title-center span {
  text-transform: none !important;
}
.toucan-theme .archive-category-header {
  background-color: #009bb0;
}
.toucan-theme .archive-category-header .container {
  padding-top: 48px;
  padding-bottom: 48px;
  display: grid;
  align-items: center;
  grid-template-columns: 1.5fr 1.2fr;
  gap: 48px;
}
@media (max-width: 640px) {
  .toucan-theme .archive-category-header .container {
    grid-template-columns: 1fr;
    padding-top: 24px;
    padding-bottom: 24px;
    gap: 12px;
  }
}
.toucan-theme .archive-category-header .container h1 {
  font-family: "Acumin";
  margin-bottom: 0;
  font-size: 24px;
  text-transform: uppercase;
}
.toucan-theme .archive-category-header .container h1,
.toucan-theme .archive-category-header .container p {
  color: white;
}
.toucan-theme .archive-category-header .container h2 {
  font-size: 48px;
  line-height: 120%;
  font-family: "Bookman";
  font-weight: normal;
  text-transform: none;
}
@media (max-width: 640px) {
  .toucan-theme .archive-category-header .container h2 {
    font-size: 42px;
  }
}
.toucan-theme .archive-category-header .container picture {
  max-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
@media (max-width: 640px) {
  .toucan-theme .archive-category-header .container picture {
    max-height: 350px;
  }
}
.toucan-theme .archive-category-header .container picture img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
}
.toucan-theme .archive-category-header__infos * {
  color: white;
}
@media (max-width: 640px) {
  .toucan-theme .sticky-add-to-cart-wrapper .cart {
    flex-wrap: nowrap;
  }
  .toucan-theme .sticky-add-to-cart-wrapper .cart [type=submit] {
    width: auto !important;
  }
}
.toucan-theme .related {
  padding: 48px 0;
}
.toucan-theme .related h3 {
  margin-left: 0;
}
.toucan-theme .related .slider {
  min-height: 450px;
}
.toucan-theme .related .slider.row {
  width: 100%;
  max-width: 100%;
}
.toucan-theme .related .slider .product-small.col {
  max-width: 25%;
}
.toucan-theme .related .slider .flickity-viewport {
  min-height: 450px;
}
@media screen and (max-width: 800px) {
  .toucan-theme .related .small-columns-2 .flickity-slider > .col,
  .toucan-theme .related .small-columns-2 > .col {
    max-width: 50% !important;
  }
}

.toucan-theme .blog-wrapper {
  background-color: white;
  position: relative;
}
.toucan-theme .blog-wrapper h1 {
  font-size: 48px;
  margin-bottom: 48px;
  text-align: center;
}
.toucan-theme .blog-wrapper h1.entry-title {
  font-size: 32px;
}
.toucan-theme .blog-wrapper > .container {
  position: relative;
}
.toucan-theme .blog-wrapper .star {
  position: absolute;
  z-index: 0;
}
.toucan-theme .blog-wrapper .star--left {
  left: 0;
}
@media (max-width: 640px) {
  .toucan-theme .blog-wrapper .star--left {
    left: -48px;
  }
}
.toucan-theme .blog-wrapper .star--right {
  right: 0;
}
@media (max-width: 640px) {
  .toucan-theme .blog-wrapper .star--right {
    right: -48px;
  }
}
@media (max-width: 640px) {
  .toucan-theme .blog-wrapper .star {
    transform: scale(0.5);
  }
}
.toucan-theme .blog-wrapper .categories-list {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  gap: 32px;
}
.toucan-theme .blog-wrapper .categories-list a {
  color: var(--blue);
}
@media (max-width: 834px) {
  .toucan-theme .blog-wrapper .categories-list {
    flex-flow: row wrap;
  }
}
@media (max-width: 640px) {
  .toucan-theme .blog-wrapper .categories-list {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.toucan-theme .blog-wrapper .categories-list li {
  cursor: pointer;
  color: var(--blue);
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  font-family: "Acumin";
  position: relative;
  text-transform: uppercase;
}
@media (max-width: 640px) {
  .toucan-theme .blog-wrapper .categories-list li {
    font-size: 16px;
  }
}
.toucan-theme .blog-wrapper .categories-list li:after {
  position: absolute;
  bottom: 0;
  content: "";
  display: flex;
  width: 0;
  height: 1px;
  background-color: transparent;
  transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 0.5s;
}
.toucan-theme .blog-wrapper .categories-list li.active:after, .toucan-theme .blog-wrapper .categories-list li:hover:after {
  background-color: var(--blue);
  width: 100%;
}
.toucan-theme .blog-wrapper .container {
  width: 100%;
  grid-column: span 3;
}
@media (max-width: 834px) {
  .toucan-theme .blog-wrapper .container {
    grid-column: unset;
  }
}
.toucan-theme .blog-wrapper #post-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 834px) {
  .toucan-theme .blog-wrapper #post-list {
    grid-template-columns: 1fr;
  }
}
.toucan-theme .blog-wrapper #post-list .first {
  grid-column: span 3;
}
@media (max-width: 834px) {
  .toucan-theme .blog-wrapper #post-list .first {
    grid-column: unset;
  }
}
.toucan-theme .blog-wrapper #post-list .post {
  box-shadow: var(--shadow);
  border-radius: 6px;
  background-color: white;
}
.toucan-theme .blog-wrapper #post-list .post a:hover {
  box-shadow: none;
}
.toucan-theme .blog-wrapper #post-list .post a:hover picture img {
  transform: scale(1.1);
}
.toucan-theme .blog-wrapper #post-list .post.first a {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
@media (max-width: 834px) {
  .toucan-theme .blog-wrapper #post-list .post.first a {
    grid-template-columns: 1fr;
  }
}
.toucan-theme .blog-wrapper #post-list .post.first a .post-content .title * {
  font-size: 24px;
  font-weight: normal;
}
@media (max-width: 834px) {
  .toucan-theme .blog-wrapper #post-list .post.first a .post-content .title * {
    font-size: 18px;
  }
}
.toucan-theme .blog-wrapper #post-list .post .post-content {
  padding: 24px;
  display: flex;
  flex-flow: column;
  gap: 12px;
}
.toucan-theme .blog-wrapper #post-list .post .post-content .readmore {
  color: var(--blue);
  font-style: italic;
}
.toucan-theme .blog-wrapper #post-list .post .post-content .readmore:hover {
  text-decoration: underline;
}
.toucan-theme .blog-wrapper #post-list .post .post-content .title * {
  margin-bottom: 0;
  color: var(--blue);
  font-family: "Bookman";
  font-size: 18px;
  font-weight: normal;
}
.toucan-theme .blog-wrapper #post-list .post .post-content .content p {
  margin: 0;
}
.toucan-theme .blog-wrapper #post-list .post .post-content .content * {
  color: var(--black);
}
.toucan-theme .blog-wrapper #post-list .post picture {
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.toucan-theme .blog-wrapper #post-list .post picture img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  aspect-ratio: 16/9;
  transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 0.5s;
}
.toucan-theme .blog-wrapper #post-list .post picture .tag {
  z-index: 1;
  position: absolute;
  padding: 10px 12px 8px 12px;
  font-size: 14px;
  color: var(--blue);
  text-transform: uppercase;
  font-weight: 400;
  line-height: 120%;
  font-family: "Acumin";
  top: 12px;
  left: 12px;
  background-color: var(--yellow);
}

.reassurance-list {
  padding: 96px 0;
}
@media (max-width: 834px) {
  .reassurance-list {
    padding: 48px 0 24px 0;
  }
}
.reassurance-list .container {
  display: flex;
  gap: 72px;
  align-items: flex-start;
  flex-flow: row;
  max-width: calc(var(--site-width) * 0.9);
  width: 100%;
  padding-left: var(--global-padding);
  padding-right: var(--global-padding);
  margin: 0 auto;
  justify-content: center;
}
@media (max-width: 834px) {
  .reassurance-list .container {
    max-width: calc(var(--site-width) - var(--global-padding) * 2);
  }
}
@media (max-width: 640px) {
  .reassurance-list .container {
    padding-left: 0;
    padding-right: 0;
  }
}
.reassurance-list .container:after {
  content: "";
  display: none;
}
@media (max-width: 834px) {
  .reassurance-list .container {
    overflow-x: scroll;
    display: flex;
    flex-flow: row;
    padding: 24px;
    margin-top: -24px;
    gap: 24px;
    justify-content: flex-start;
    max-width: unset;
  }
}
.reassurance-list__item {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
}
@media (max-width: 834px) {
  .reassurance-list__item {
    width: 350px;
    min-width: 50%;
  }
}
.reassurance-list__item picture {
  max-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reassurance-list__item picture img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
  max-height: 150px;
}
@media (max-width: 640px) {
  .reassurance-list__item picture {
    max-height: 120px;
  }
  .reassurance-list__item picture img {
    -o-object-fit: contain;
       object-fit: contain;
    height: 100%;
    max-height: 120px;
    max-height: 120px;
  }
}
.reassurance-list__item a {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  height: 100%;
}
.reassurance-list__item a:hover {
  text-decoration: underline;
}
.reassurance-list__item .title {
  color: var(--blue);
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  margin-top: 12px;
}

.bandeau-commande {
  background-color: var(--light-blue);
  padding: 72px 0;
}
.bandeau-commande .container {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 72px;
  align-items: center;
}
@media (max-width: 834px) {
  .bandeau-commande .container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.bandeau-commande .container:after {
  display: none;
}
.bandeau-commande .title * {
  font-family: "Acumin";
  font-size: 24px;
  color: var(--blue);
  text-transform: none;
}
.bandeau-commande .title * strong {
  font-weight: bold;
}
@media (max-width: 640px) {
  .bandeau-commande .title * br {
    display: none;
  }
}
.bandeau-commande .content * {
  color: var(--blue);
  margin: 0;
}
@media (max-width: 640px) {
  .bandeau-commande .content * {
    font-size: 18px;
  }
}
.bandeau-commande .content a {
  text-decoration: underline;
}

.toucan-theme .ti-widget.ti-goog .ti-controls .ti-next::before,
.toucan-theme .ti-widget.ti-goog .ti-controls .ti-prev::before,
.toucan-theme .ti-widget.ti-goog .ti-controls .ti-next::after,
.toucan-theme .ti-widget.ti-goog .ti-controls .ti-prev::after {
  background: var(--blue);
}
.toucan-theme .ti-widget.ti-goog .ti-rating-text,
.toucan-theme .ti-widget.ti-goog .ti-rating-text strong:not(.ti-rating-large),
.toucan-theme .ti-widget.ti-goog .ti-rating-text strong a,
.toucan-theme .ti-widget.ti-goog .ti-rating-text strong span,
.toucan-theme .ti-widget.ti-goog .ti-rating-text span strong,
.toucan-theme .ti-widget.ti-goog .ti-rating-text span,
.toucan-theme .ti-widget.ti-goog .ti-footer,
.toucan-theme .ti-widget.ti-goog .ti-footer strong:not(.ti-rating-large),
.toucan-theme .ti-widget.ti-goog .ti-footer span,
.toucan-theme .ti-widget.ti-goog .ti-footer strong a {
  color: var(--black);
}
.toucan-theme .ti-widget.ti-goog .ti-review-item > .ti-inner,
.toucan-theme .ti-widget.ti-goog .ti-load-more-reviews-container .ti-load-more-reviews-button {
  box-shadow: none;
}

.emphase-agenda {
  padding: 48px 0;
}
@media (max-width: 640px) {
  .emphase-agenda {
    padding: 0;
  }
}
.emphase-agenda .container {
  box-sizing: content-box;
}
@media (max-width: 640px) {
  .emphase-agenda .container {
    background-color: var(--blue);
  }
}
@media screen and (max-width: 1024px) {
  .emphase-agenda .container {
    padding-left: 0;
    padding-right: 0;
  }
}
.emphase-agenda .container:after {
  content: none;
  display: none;
}
.emphase-agenda__block {
  background-color: var(--green);
  display: grid;
  grid-template-columns: 1fr 2fr;
  padding: 48px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  align-items: center;
  gap: 72px;
}
@media (max-width: 640px) {
  .emphase-agenda__block {
    grid-template-columns: 1fr;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
}
.emphase-agenda__block + .wave {
  margin-top: -14px;
}
.emphase-agenda__block picture {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 280px;
}
.emphase-agenda__block__content p {
  margin: 0;
}
.emphase-agenda__block__content .chapeau {
  color: var(--blue);
  font-size: 24px;
  font-family: "Acumin";
}
.emphase-agenda__block__content .chapeau * {
  font-family: "Acumin";
  margin-bottom: 0;
  text-transform: uppercase;
}
.emphase-agenda__block__content .title {
  color: white;
  font-size: 32px;
  font-family: "Bookman";
}
.emphase-agenda__block__content .content {
  margin-top: 18px;
  color: white;
  font-size: 18px;
  line-height: 140%;
}

/* HTML: <div class="wavy-box"></div> */
.wavy-box {
  --s: 24px;
  /* control the size of the wave */
  padding: calc(var(--s) * 2);
  /* preferred  width */
  --c: var(--green);
  box-sizing: border-box;
  overflow: hidden;
  border-radius: calc(1.5 * var(--s));
  --R: calc(var(--s) / sqrt(2)) at;
  --g: radial-gradient(var(--R) 50%, var(--c) calc(100% - 1px), #0000) 0 0 /
    calc(2 * var(--s)) calc(2 * var(--s));
  --_c: #0000 100%, var(--c) calc(100% + 1px);
  --_b: calc(2 * var(--s)) calc(51% - var(--s) / 2) repeat-x;
  background: var(--g), radial-gradient(var(--R) 50% calc(100% + var(--s) / 2), var(--_c)) var(--s) calc(100% - var(--s) / 2)/var(--_b), radial-gradient(var(--R) 50% calc(var(--s) / -2), var(--_c)) var(--s) calc(var(--s) / 2)/var(--_b);
  --_m: var(--s) / calc(51% - var(--s) / 2) calc(2 * var(--s)) repeat-y;
  -webkit-mask: var(--g), radial-gradient(var(--R) calc(100% + var(--s) / 2) 50%, var(--_c)) calc(100% - var(--s) / 2) var(--_m), radial-gradient(var(--R) calc(var(--s) / -2) 50%, var(--_c)) calc(var(--s) / 2) var(--_m);
          mask: var(--g), radial-gradient(var(--R) calc(100% + var(--s) / 2) 50%, var(--_c)) calc(100% - var(--s) / 2) var(--_m), radial-gradient(var(--R) calc(var(--s) / -2) 50%, var(--_c)) calc(var(--s) / 2) var(--_m);
}

/* if round() is not supported we work with an increment method */
@supports not (opacity: round(1, 1)) {
  .wavy-box {
    --n: 5;
    width: calc(var(--n) * 2 * var(--s));
  }
}
.emphase-colonnes {
  background-color: var(--blue);
}
.emphase-colonnes .container {
  padding-left: 0;
  padding-right: 0;
}
.emphase-colonnes__block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 72px;
}
@media (max-width: 834px) {
  .emphase-colonnes__block {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.emphase-colonnes__block picture {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.emphase-colonnes__block picture img {
  height: 100%;
  aspect-ratio: 16/10;
  -o-object-fit: cover;
     object-fit: cover;
}
.emphase-colonnes__block__content {
  padding: 48px;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  gap: 32px;
}
@media (max-width: 640px) {
  .emphase-colonnes__block__content {
    padding: 48px 24px;
  }
}
.emphase-colonnes__block__content p {
  margin: 0;
  color: white;
}
.emphase-colonnes__block__content .title * {
  margin: 0;
  color: white;
  font-size: 48px;
  font-weight: normal;
  text-transform: none;
  font-family: "Bookman";
}
.emphase-colonnes__block__content .content {
  margin: 0;
  color: white;
}

.hero-slider {
  margin-top: -350px;
}
.hero-slider__container {
  background-color: var(--light-blue);
}
@media (max-width: 834px) {
  .hero-slider__container {
    margin-top: -450px;
  }
}
.hero-slider .swiper-wrapper {
  height: 100%;
}
.hero-slider .swiper-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 24px;
  margin-top: -96px;
  margin-bottom: 24px;
}
.hero-slider .swiper-nav .swiper-pagination {
  position: relative;
  bottom: unset;
  top: unset;
  left: unset;
}
.hero-slider .swiper-nav .swiper-pagination-bullet {
  height: 12px;
  width: 12px;
  background-color: white;
  opacity: 1;
}
.hero-slider .swiper-nav .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--blue);
}
.hero-slider .swiper-slide {
  display: grid;
  align-items: center;
  position: relative;
  height: auto;
  min-height: calc(70vh + 290px);
  padding: 290px 0 0 0;
}
@media (max-width: 834px) {
  .hero-slider .swiper-slide {
    display: flex;
    flex-flow: column-reverse;
    justify-content: center;
    min-height: calc(80vh + 290px);
  }
}
.hero-slider .swiper-slide .container {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  position: relative;
  z-index: 1;
}
@media (max-width: 834px) {
  .hero-slider .swiper-slide .container {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }
}
.hero-slider .swiper-slide picture {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.hero-slider .swiper-slide picture:after {
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.15);
}
.hero-slider .swiper-slide picture img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.hero-slider .swiper-slide .uptitle * {
  color: white;
  font-family: "Acumin";
  margin-bottom: 12px;
  font-size: 24px;
  text-transform: uppercase;
}
.hero-slider .swiper-slide .content * {
  color: white;
}
.hero-slider .swiper-slide .title * {
  color: white;
  font-size: 52px;
  line-height: 120%;
  font-family: "Bookman";
  font-weight: normal;
  text-transform: none;
}
@media (max-width: 640px) {
  .hero-slider .swiper-slide .title * {
    margin-top: 24px;
    font-size: 38px;
  }
  .hero-slider .swiper-slide .title * br {
    display: none;
  }
}
.hero-slider .swiper-slide .content {
  margin-top: 18px;
  margin-bottom: 18px;
  color: white;
  font-size: 18px;
}
.logo-slider {
  padding: 48px 0 72px 0;
}
.logo-slider .slider-title {
  padding: 24px 0;
}
.logo-slider .slider-title * {
  font-size: 24px;
  text-align: center;
}
.logo-slider .swiper-slide {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-slider .swiper-slide img {
  max-height: 18vh;
}

.product-categories {
  padding: 48px 0 72px 0;
}
@media (max-width: 640px) {
  .product-categories .container {
    padding-left: 0;
    padding-right: 0;
  }
}
.product-categories__title {
  margin-bottom: 48px;
}
.product-categories__title * {
  font-size: 24px;
  color: var(--blue);
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
  margin-bottom: 0;
}
.product-categories .categories__grid {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(6, 1fr);
  list-style: none;
  gap: 12px;
}
@media (max-width: 834px) {
  .product-categories .categories__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .product-categories .categories__grid {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.product-categories .categories__grid li {
  cursor: pointer;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  font-family: "Acumin";
  position: relative;
  text-transform: uppercase;
  background-color: var(--light-blue);
  overflow: hidden;
  margin-bottom: 0;
}
.product-categories .categories__grid li a {
  background-color: var(--light-blue);
  height: 100%;
  width: 100%;
}
.product-categories .categories__grid li a p {
  text-align: center;
  color: var(--blue);
  padding: 0 8px 8px 8px;
  margin-bottom: 8px;
  font-weight: 500;
}
.product-categories .categories__grid li a .content {
  background-color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-top: 12px;
  position: relative;
}
.product-categories .categories__grid li a .content picture {
  max-width: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-categories .categories__grid li a .content picture img {
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 4/3;
  max-width: 90%;
  height: auto;
}
.product-categories .categories__grid li a .content + .wave {
  transform: translateY(-8px);
  background-image: url("data:image/svg+xml,%3Csvg width='338' height='20' viewBox='0 0 338 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-1.53305e-06 20L0 2.26126C5.62044 5.27627 12.0147 5.27627 17.6351 2.26126C23.2556 -0.753753 28.876 -0.753753 34.4964 2.26126C40.1169 5.27627 45.7373 5.27627 51.3578 2.26126C56.9782 -0.753753 62.5986 -0.753753 68.2191 2.26126C73.8395 5.27627 79.4599 5.27627 85.0804 2.26126C90.7008 -0.753753 96.3212 -0.753753 101.942 2.26126C107.562 5.27627 113.183 5.27627 118.803 2.26126C124.423 -0.753753 130.044 -0.753753 135.664 2.26126C141.285 5.27627 146.905 5.27627 152.526 2.26126C158.146 -0.753753 163.766 -0.753753 169.387 2.26126C175.007 5.27627 180.628 5.27627 186.248 2.26126C191.869 -0.753753 197.489 -0.753753 203.11 2.26126C208.73 5.27627 214.35 5.27627 219.971 2.26126C225.591 -0.753753 231.212 -0.753753 236.832 2.26126C242.453 5.27627 248.073 5.27627 253.693 2.26126C259.314 -0.753753 264.934 -0.753753 270.555 2.26126C276.175 5.27627 281.796 5.27627 287.416 2.26126C293.037 -0.753753 298.657 -0.753753 304.277 2.26126C309.898 5.27627 315.518 5.27627 321.139 2.26126C326.759 -0.753753 332.38 -0.753753 338 2.26126V20H-1.53305e-06Z' fill='%23D1E7E5'/%3E%3C/svg%3E%0A");
  --m: 1.4;
  --size: 14px;
  height: 20px;
  z-index: 1;
}
.product-categories .categories__grid li a:hover p {
  text-decoration: underline;
}
.product-categories .categories__grid li a:hover .content + .wave {
  transform: translateY(-10px);
}
@media (max-width: 640px) {
  .product-categories .categories__grid li {
    font-size: 16px;
  }
}

.product-list {
  padding: 48px 0;
}
@media (max-width: 640px) {
  .product-list .container {
    padding-left: 0;
    padding-right: 0;
  }
}
.product-list__title {
  margin-bottom: 48px;
}
.product-list__title * {
  font-size: 24px;
  color: var(--blue);
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
  margin-bottom: 0;
  letter-spacing: 0.4px;
}
.product-list__wrapper {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}
.product-list__wrapper.hide {
  display: none;
}
.product-list__wrapper .products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  gap: 24px;
  margin-bottom: 48px;
}
@media (max-width: 640px) {
  .product-list__wrapper .products {
    overflow-y: scroll;
    display: flex;
    flex-flow: row;
    padding: 24px;
    margin-top: -24px;
    margin-left: -48px;
    margin-right: -48px;
  }
  .product-list__wrapper .products .product {
    min-width: calc(100% - 72px);
    height: auto;
  }
}
@media (max-width: 640px) and (max-width: 640px) {
  .product-list__wrapper .products .product .box-text {
    height: auto !important;
  }
}
@media (max-width: 640px) {
  .product-list__wrapper .products .product .box-text .add-to-cart-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
}
.product-list__wrapper .products .product-small {
  padding: 0;
}
@media (max-width: 640px) {
  .product-list__wrapper .button {
    margin-left: 24px;
    margin-right: 24px;
    max-width: calc(100% - 48px);
  }
}

.toucan-theme .wp-block-button {
  background-color: var(--blue);
  border: 1px solid var(--blue);
  color: white;
  text-transform: uppercase;
  font-weight: normal;
  font-family: "Acumin";
  line-height: 100%;
  transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 0.5s;
  padding-top: 2px;
  border-radius: 24px;
}
.toucan-theme .wp-block-button__link {
  background-color: transparent;
}
.toucan-theme .wp-block-button:hover {
  background-color: white;
  color: var(--blue);
}
.toucan-theme .button--secondary {
  background-color: var(--yellow);
  border: 1px solid var(--yellow);
  color: var(--blue);
  text-transform: uppercase;
  font-weight: 500;
  font-family: "Acumin";
  line-height: 100%;
  transition: all cubic-bezier(0.075, 0.82, 0.165, 1) 0.5s;
  padding: 16px 18px 14px 18px;
  margin: 0;
  border-radius: 24px;
  box-shadow: none;
}
.toucan-theme .button--secondary__link {
  background-color: transparent;
}
.toucan-theme .button--secondary:hover {
  box-shadow: none;
  opacity: 1;
  background-color: white;
  color: var(--blue);
  border: 1px solid var(--blue);
}
